@charset "UTF-8";
/*================================
Sass設定
=================================*/
/*================================
基本設定
=================================*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: 'Lato',"游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", 'Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3', 'Gill Sans', sans-serif;
  font-size: 17px;
  color: #3e3e3e;
  letter-spacing: .075em;
}

a {
  color: #333;
}

a:hover {
  cursor: pointer;
}

@media (min-width: 1200px) {
  a:hover {
    opacity: 0.7;
  }
}

img {
  max-width: 100%;
  height: auto;
  border: none;
}

/*================================
FLOCSS layout
=================================*/
.l-main {
  padding-top: 54px;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .l-main {
    padding-top: 54px;
  }
}

/* _container
---------------------------------*/
.l-container {
  max-width: 1200px;
  width: 100%;
  height: inherit;
  padding: 0 40px;
  margin: 120px auto 0;
}

@media (max-width: 767px) {
  .l-container {
    max-width: 100%;
    padding: 0 16px;
    margin: 80px auto 0;
  }
}

/* _row
---------------------------------*/
.l-row {
  display: flex;
  flex-wrap: wrap;
  height: inherit;
}

@media (max-width: 767px) {
  .l-row {
    display: block;
  }
}

.l-row--middle {
  align-items: center;
}

.l-row--reverse {
  flex-direction: row-reverse;
}

.l-row__col06 {
  width: 50%;
}

@media (max-width: 767px) {
  .l-row__col06 {
    width: 100%;
  }
}

/* _section
---------------------------------*/
.l-section__top {
  max-width: 1200px;
  width: 100%;
  height: inherit;
  padding: 0 40px;
  margin: 120px auto 0;
}

@media (max-width: 767px) {
  .l-section__top {
    max-width: 100%;
    padding: 0 16px;
    margin: 80px auto 0;
  }
}

/*================================
FLOCSS component
=================================*/
/* _btn
---------------------------------*/
.c-btn {
  display: inline-block;
  text-align: center;
  color: #757c95;
  font-family: "Lato", sans-serif;
  font-size: 1em;
  font-weight: 700;
  vertical-align: middle;
  background-color: #fff;
  border: 1px solid #757c95;
  margin: auto;
  box-shadow: 2px 2px 4px transparent;
  letter-spacing: 0.2em;
  transition: background-color .2s, color .2s;
}

.c-btn a {
  display: block;
  color: #757c95;
  font-size: 20px;
  font-weight: 700;
  font-style: italic;
  padding: 1em 2em;
  letter-spacing: .1em;
  position: relative;
}

@media (max-width: 767px) {
  .c-btn a {
    font-size: 18px;
    padding: .5em 1em;
  }
}

.c-btn:hover {
  cursor: pointer;
}

@media (min-width: 1200px) {
  .p-btn__link:hover {
    background: #C6B8A9;
  }
}

.p-btn__link a {
  position: relative;
  transition: all .2s linear;
}

.p-btn__link a::before, .p-btn__link a::after {
  content: '';
  position: absolute;
  background: #757c95;
  height: 1px;
  transition: all .3s;
}

.p-btn__link a::before {
  top: 50%;
  right: -26px;
  width: 40px;
  height: 1px;
}

@media (max-width: 767px) {
  .p-btn__link a::before {
    right: -32px;
  }
}

.p-btn__link a::after {
  right: -20px;
  width: 1px;
  height: 12px;
  transform: skewX(45deg);
}

@media (max-width: 767px) {
  .p-btn__link a::after {
    right: -27px;
  }
}

@media (min-width: 1200px) {
  .p-btn__link a:hover {
    color: #fff;
    opacity: 1;
  }
}

.p-btn__link a:hover::before {
  right: -45px;
}

.p-btn__link a:hover::after {
  right: -40px;
}

/* _card
---------------------------------*/
/* _navigation
---------------------------------*/
.c-navigation {
  display: flex;
}

.c-navigation a {
  text-decoration: none;
  display: block;
}

.c-navigation > li {
  text-align: center;
  z-index: 33;
}

@media (min-width: 1200px) {
  .c-navigation > li + .c-navigation > li {
    margin-left: 40px;
  }
}

@media (max-width: 767px) {
  .c-navigation > li + .c-navigation > li {
    margin-top: 20px;
  }
}

/* _heading
---------------------------------*/
.c-heading {
  font-family: "Lato", sans-serif;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: .1em;
}

.p-heading__article--top {
  font-style: italic;
}

.p-heading__article--main {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 28px;
  letter-spacing: .15em;
  position: relative;
  display: inline-block;
}

.p-heading__article--main::after {
  position: absolute;
  bottom: 14px;
  right: -120px;
  font-size: 32px;
  font-family: 'Nothing You Could Do';
  color: #fff;
  display: block;
  transform: rotate(8deg);
}

@media (max-width: 767px) {
  .p-heading__article--main::after {
    color: #C6B8A9;
    font-size: 28px;
    right: -88px;
  }
}

.--incharge::after {
  content: "In Charge";
}

.--period::after {
  content: "Period";
}

.--tool::after {
  content: "Tools Used";
}

.--point::after {
  content: "Strength";
}

.--url::after {
  content: "URL";
  right: -40px;
}

/*================================
FLOCSS utility
=================================*/
/* _hidden
---------------------------------*/
@media (min-width: 1200px) {
  .u-hidden-pc {
    display: none;
  }
}

@media (max-width: 767px) {
  .u-hidden-sp {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .u-hidden-tab {
    display: none;
  }
}

.u-appear-sp {
  display: none;
}

@media (max-width: 767px) {
  .u-appear-sp {
    display: block;
  }
}

.u-visually--hidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  margin: -1px;
}

/* _space
---------------------------------*/
.u-mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.u-my-auto {
  margin-top: auto;
  margin-bottom: auto;
}

.u-mt-auto {
  margin-top: auto;
}

.u-ml-auto {
  margin-left: auto;
}

.u-mr-auto {
  margin-right: auto;
}

.u-mb-auto {
  margin-bottom: auto;
}

/* _text-align
---------------------------------*/
.u-text-left {
  text-align: left;
}

.u-text-center {
  text-align: center;
}

.u-text-right {
  text-align: right;
}

/*================================
各ページ共通クラス
=================================*/
.p-body__bg1 {
  background: linear-gradient(90deg, #F7F3F3 0%, #F7F3F3 50%, #E7DADA 50%, #E7DADA 100%);
  width: 100%;
}

.p-body__bg2 {
  background: linear-gradient(90deg, #F3F3F3 0%, #F3F3F3 50%, #DED6CE 50%, #DED6CE 100%);
  width: 100%;
}

/*
.p-body__bg3 {
	background: linear-gradient(90deg, #F7F6F3 0%, #F7F6F3 50%, #D5D2C3 50%, #D5D2C3 100%);
	width: 100%;
}

*/
/*================================
header
=================================*/
.l-header {
  width: 100%;
  height: 54px;
  z-index: 20;
}

@media (max-width: 767px) {
  .l-header {
    height: 54px;
  }
}

.p-header {
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  border-bottom: 1px solid #333;
}

.add-scrolled .p-header {
  background: rgba(255, 255, 255, 0.6);
}

@media (min-width: 768px) {
  .p-header {
    transition: .2s;
  }
}

@media (max-width: 767px) {
  .p-header {
    background: rgba(255, 255, 255, 0.6);
  }
}

.p-header__content {
  max-width: 1200px;
  display: flex;
  align-items: center;
  margin: auto;
  padding: 0 40px;
}

@media (max-width: 767px) {
  .p-header__content {
    padding: 0 16px;
  }
}

.p-site__title, .p-site__title a {
  font-family: "Lato", sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 2;
}

/* ハンバーガーボタン
---------------------------------*/
.header-burger {
  appearance: none;
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

@media (max-width: 767px) {
  .header-burger {
    display: block;
    height: 26px;
    left: -40px;
    position: absolute;
    top: 12px;
    transition: right 0.3s linear;
    width: 26px;
  }
}

@media (max-width: 767px) {
  .header-burgerInline {
    background-color: #3e3e3e;
    border-radius: 4px;
    display: block;
    height: 3px;
    left: 0;
    position: absolute;
    transition: 0.3s;
    width: 26px;
  }
  .header-burgerInline:nth-child(1) {
    top: 2px;
  }
  .header-burgerInline:nth-child(2) {
    top: 10px;
  }
  .header-burgerInline:nth-child(3) {
    top: 18px;
  }
}

@media (max-width: 767px) {
  .add-active .header-burgerInline:nth-child(1) {
    top: 10px;
    transform: rotate(-45deg);
  }
  .add-active .header-burgerInline:nth-child(2) {
    left: 100%;
    opacity: 0;
  }
  .add-active .header-burgerInline:nth-child(3) {
    top: 10px;
    transform: rotate(45deg);
  }
}

.header-burgerMenu {
  display: none;
}

@media (max-width: 767px) {
  .header-burgerMenu {
    position: absolute;
    display: block;
    color: #3e3e3e;
    left: -2px;
    bottom: -10px;
    font-size: 10px;
  }
}

.p-header__nav--wrap {
  display: flex;
  margin-left: auto;
}

@media (min-width: 768px) {
  .p-header__nav--wrap {
    height: 100%;
  }
}

@media (max-width: 767px) {
  .p-header__nav--wrap {
    background: #E7DADA;
    bottom: 0;
    position: fixed;
    right: -300px;
    text-align: center;
    top: 0;
    transition: right 0.3s linear;
    width: 300px;
  }
}

@media (max-width: 767px) {
  .add-active .p-header__nav--wrap {
    right: 0;
  }
}

.p-header__nav li + li {
  margin-left: 40px;
}

.p-header__nav a {
  color: #3e3e3e;
  font-family: "Lato", sans-serif;
  font-size: 22px;
  letter-spacing: .025em;
  padding: 0.75em 0;
}

@media (max-width: 767px) {
  .p-header__nav a {
    padding: 0.6em 0 0.75em 1em;
  }
}

@media (max-width: 767px) {
  .p-header__nav {
    display: block;
    width: 100%;
  }
  .p-header__nav li {
    text-align: left;
  }
  .p-header__nav li + li {
    margin-left: 0px;
  }
}

.header-overlay {
  background: rgba(0, 0, 0, 0.7);
  bottom: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  transition: .3s;
  visibility: hidden;
  width: 100%;
  z-index: -1;
}

.add-active .header-overlay {
  opacity: .7;
  visibility: visible;
}

body.add-open {
  overflow-y: hidden;
}

/*================================
footer
=================================*/
.l-footer {
  width: 100%;
  height: 200px;
  margin-top: 80px;
  z-index: 10;
}

@media (max-width: 767px) {
  .l-footer {
    margin-top: 64px;
    height: 280px;
  }
}

.p-footer__content {
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin: auto;
  padding-bottom: 3rem;
}

.p-footer__content a {
  color: #333;
}

@media (max-width: 767px) {
  .p-footer__content {
    display: block;
    padding-top: 4rem;
    padding-bottom: 0;
  }
}

.p-footer__sns {
  display: flex;
  flex-direction: column;
}

@media (max-width: 767px) {
  .p-footer__sns {
    flex-direction: row;
    justify-content: center;
  }
}

.p-footer__sns > li > a {
  font-size: 24px;
  display: block;
  padding: 0.5em 0.5em 0 0;
}

@media (max-width: 767px) {
  .p-footer__sns > li > a {
    padding: 0.5em;
  }
}

@media (min-width: 1200px) {
  .p-footer__sns > li > a {
    transition: opacity .4s;
  }
}

.p-footer__nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .p-footer__nav {
    margin-top: 24px;
  }
}

.p-footer__nav a {
  display: block;
  font-size: 20px;
  font-weight: bold;
  position: relative;
  letter-spacing: .1em;
}

@media (max-width: 767px) {
  .p-footer__nav a {
    font-size: 18px;
  }
}

.p-footer__nav li + li {
  margin-left: 24px;
}

.p-footer__logo {
  text-align: right;
}

@media (max-width: 767px) {
  .p-footer__logo {
    text-align: left;
    margin-top: 36px;
  }
}

.p-footer__title a {
  font-family: "Lato", sans-serif;
  font-size: 32px;
  font-weight: bold;
}

@media (max-width: 767px) {
  .p-footer__title a {
    font-size: 24px;
  }
}

.p-footer__copy {
  font-size: 12px;
  font-family: "Lato", sans-serif;
}

@media (max-width: 767px) {
  .p-footer__copy {
    font-size: 10px;
  }
}

.p-page__top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 30;
}

/*================================
top
=================================*/
.p-main__top {
  padding-top: 0;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .p-main__top {
    padding-top: 0;
  }
}

/*================================
main-visual
=================================*/
.c-main-visual {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  padding-top: 54px;
  box-sizing: content-box;
}

@media (max-width: 767px) {
  .c-main-visual {
    padding-top: 54px;
    width: 100%;
    padding: 0;
  }
}

.c-main-visual_img {
  padding-top: 55%;
  background: url(../img/top@2x.jpg) top right/82.5% no-repeat;
  filter: grayscale(80%);
}

@media (max-width: 767px) {
  .c-main-visual_img {
    padding-top: 100%;
    background: url(../img/top@2x.jpg) center center/cover;
  }
}

.c-main-visual__content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  opacity: .9;
  padding: 72px 40px 70px 40px;
  margin-left: auto;
  max-width: 640px;
}

@media (min-width: 768px) {
  .c-main-visual__content {
    max-width: 720px;
    padding: 64px 36px;
  }
}

@media (max-width: 767px) {
  .c-main-visual__content {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    max-width: 100%;
    margin: 16px;
    opacity: 1;
  }
}

.c-main-visual__title {
  font-size: 30px;
  font-weight: bold;
  position: relative;
  display: inline-block;
}

@media (min-width: 768px) {
  .c-main-visual__title {
    font-size: 28px;
  }
}

.c-main-visual__title::after {
  position: absolute;
  content: "Web plus Alpha";
  bottom: 14px;
  right: -240px;
  font-size: 40px;
  font-family: 'Nothing You Could Do';
  color: #BE9D9D;
  display: block;
  transform: rotate(4deg);
  opacity: .7;
}

@media (max-width: 767px) {
  .c-main-visual__title::after {
    font-size: 26px;
    bottom: -28px;
    right: -20px;
    transform: rotate(0);
  }
}

.c-main-visual__lead {
  margin-top: 54px;
  letter-spacing: 0.05em;
  line-height: 2;
}

@media (min-width: 768px) {
  .c-main-visual__lead {
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .c-main-visual__lead {
    margin-top: 48px;
  }
}

/*================================
service
=================================*/
.p-service__read {
  margin-top: 40px;
}

.p-service__read span {
  font-size: 12px;
}

.p-service__read span a {
  text-decoration: underline;
  margin: 0 2px;
}

@media (min-width: 1200px) {
  .p-service__read span a:hover {
    color: #BE9D9D;
  }
}

.p-service__fee {
  margin-top: 40px;
  font-size: 24px;
  font-weight: 700;
  color: #BE9D9D;
  font-family: "Lato", "游ゴシック", sans-serif;
  letter-spacing: .1em;
}

.p-service__content {
  margin: 80px auto 0;
  max-width: 960px;
  text-align: center;
}

.p-service__inner {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .p-service__inner {
    display: block;
  }
}

.p-service__list {
  background-color: #fff;
  flex: 0 0 30%;
  min-width: 0;
  word-wrap: break-word;
  box-shadow: 3px 3px 15px rgba(96, 96, 96, 0.16);
  padding: 2em 2.5em;
}

@media (max-width: 767px) {
  .p-service__list {
    max-width: 420px;
    margin: auto;
  }
  .p-service__list + .p-service__list {
    margin-top: 2em;
  }
}

.p-service__title {
  font-weight: 700;
  margin-top: 1em;
  font-family: "Lato", "游ゴシック", sans-serif;
  font-size: 18px;
  letter-spacing: .2em;
}

.p-service__excerpt {
  margin-top: 1.5em;
  font-size: 16px;
  text-align: left;
}

/*================================
works
=================================*/
/* グリッドデザイン
---------------------------------*/
.p-works__wrap {
  margin: 40px auto 0;
  text-align: center;
}

.p-works__content--grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  grid-template-rows: auto;
  justify-items: center;
  align-items: center;
}

@media (max-width: 767px) {
  .p-works__content--grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
}

.p-works__grid {
  background: #ddd;
  border-radius: 20px;
  overflow: hidden;
  height: auto;
}

.p-works__grid a {
  display: block;
  position: relative;
}

@media (min-width: 1200px) {
  .p-works__grid a:hover {
    opacity: 1;
  }
  .p-works__grid a:hover .p-grid__caption {
    opacity: 1;
  }
}

.p-works__grid img {
  vertical-align: bottom;
}

.p-grid__caption {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(99, 113, 126, 0.7);
  transition: opacity 0.2s ease;
  padding-top: calc(50% - 1em);
  color: #fff;
  opacity: 0;
  font-size: 20px;
  text-align: center;
}

.p-caption--wide {
  padding-top: calc(34% - 1em);
}

.p-works__more .p-btn__link:hover {
  background-color: #E7DADA;
}

/*================================
gallery
=================================*/
.p-gallery {
  display: none;
}

/*================================
contact
=================================*/
.c-text--full, .c-textarea--full, .c-select--full {
  appearance: none;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 1em;
}

.c-text--full:hover, .c-textarea--full:hover, .c-select--full:hover {
  cursor: pointer;
}

.c-text--full {
  border-bottom: 1px solid #ccc;
  width: 100%;
  padding: .5em 1em;
}

@media (min-width: 1200px) {
  .c-text--full:hover {
    box-shadow: 0px 10px 10px -10px rgba(99, 113, 126, 0.4);
  }
}

@media (max-width: 767px) {
  .c-text--full {
    padding: .5em 0;
  }
}

.c-textarea--full {
  width: 100%;
  height: 200px;
  border: 1px solid #ccc;
  margin-top: 10px;
  padding: 1em;
}

@media (min-width: 1200px) {
  .c-textarea--full:hover {
    border: 1px solid #fff;
    box-shadow: 0 0 8px rgba(99, 113, 126, 0.4);
  }
}

@media (max-width: 767px) {
  .c-textarea--full {
    padding: .5em;
  }
}

.c-select--full {
  border: 1px solid #ccc;
  background: transparent url(../img/) no-repeat center right 12px/17px 14px;
  padding-right: 30px;
}

.c-select--full:hover {
  box-shadow: 0 0 8px rgba(73, 115, 255, 0.5);
  cursor: pointer;
}

@media (max-width: 767px) {
  .c-select--full {
    width: 100%;
    padding: .5em 1em;
  }
}

.c-radio, .c-checkbox {
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.c-radio + span, .c-checkbox + span {
  cursor: pointer;
  display: inline-block;
  padding-left: 1.75em;
  margin-right: 1em;
  position: relative;
}

.c-radio + span::before, .c-radio + span::after, .c-checkbox + span::before, .c-checkbox + span::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  border: 1px solid #757c95;
  border-radius: 50%;
  display: block;
}

.c-radio + span::before, .c-checkbox + span::before {
  background: #fff;
  left: 0;
  width: 22px;
  height: 22px;
}

.c-radio + span::after, .c-checkbox + span::after {
  background-color: #fff;
  border-color: transparent;
  left: 3px;
  padding: 2px;
  transition: all 0.3s ease 0s;
  width: 2px;
  height: 2px;
  opacity: 0;
}

.c-radio:checked + span::after, .c-checkbox:checked + span::after {
  opacity: 1;
}

.c-radio:hover + span::before, .c-checkbox:hover + span::before {
  border: 1px solid #757c95;
  box-shadow: 0 0 6px rgba(73, 115, 255, 0.2);
  cursor: pointer;
}

.c-radio:active + span::before, .c-checkbox:active + span::before {
  border: 1px solid #757c95;
  background-color: #fff;
  cursor: pointer;
}

.c-checkbox + span {
  padding-left: 2em;
}

.c-checkbox + span::before {
  border-radius: 0;
}

.c-checkbox + span::after {
  left: 3px;
  margin-top: -0.1em;
  width: 18px;
  height: 2px;
  transform: translateY(-50%) rotate(-45deg);
  -webkit-transform: translateY(-50%) rotate(-45deg);
  border-bottom: 2px solid #757c95;
  border-left: 2px solid #757c95;
  border-radius: 1px;
  background-color: transparent;
  opacity: 0;
  transition: all 0.3s ease 0s;
}

.c-radio:focus-visible ~ span::before {
  outline: -webkit-focus-ring-color auto 1px;
  border: 1px solid transparent;
}

.c-checkbox:focus-visible ~ span::before {
  outline: -webkit-focus-ring-color auto 1px;
  border: 1px solid transparent;
}

.l-contact {
  padding: 0 40px;
  margin-top: 120px;
}

@media (max-width: 767px) {
  .l-contact {
    padding: 40px 16px;
    margin-top: 80px;
  }
}

.p-contact__wrap {
  max-width: 960px;
  width: 100%;
  background-color: #fff;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
  position: relative;
}

.p-contact__wrap::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 200px calc(46vw - 16px) 0 calc(46vw - 16px);
  border-color: #CEB6B6 transparent transparent transparent;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  background-size: contain;
}

@media (min-width: 1090px) {
  .p-contact__wrap::before {
    border-width: 200px 470px 0 470px;
  }
}

@media (max-width: 767px) {
  .p-contact__wrap::before {
    border-width: 150px calc(50vw - 16px) 0 calc(50vw - 16px);
  }
}

.p-contact__header {
  text-align: center;
  padding: 60px 20px;
  position: relative;
}

@media (max-width: 767px) {
  .p-contact__header {
    padding: 40px 16px;
  }
}

.p-contact__text {
  margin-top: 1.5em;
  font-size: 16px;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .p-contact__text {
    font-size: 14px;
  }
}

.p-form__body {
  background-color: #fff;
  font-size: 16px;
  padding-bottom: 60px;
}

.p-form__content {
  max-width: 720px;
  padding: 60px 40px;
  margin: auto;
}

@media (max-width: 767px) {
  .p-form__content {
    padding: 40px 16px;
  }
}

.p-form__item {
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  .p-form__item {
    display: block;
  }
}

.p-form__item + .p-form__item {
  margin-top: 2em;
}

.p-form__item dt {
  flex: 0 0 140px;
  font-size: 18px;
  font-weight: bold;
}

.p-form__item dd {
  flex: 0 1 100%;
  margin-left: 60px;
}

@media (max-width: 767px) {
  .p-form__item dd {
    margin-left: 0;
    margin-top: 0.5em;
  }
}

.p-form__textarea {
  display: block;
}

.p-form__textarea dd {
  margin-left: 0;
}

.p-contact__checkbox {
  margin-top: 2em;
}

.p-contact__checkbox span a {
  font-weight: bold;
}

.p-contact__submit {
  margin-top: 40px;
}

@media (max-width: 767px) {
  .p-contact__submit {
    text-align: center;
  }
}

.p-btn__submit {
  display: block;
  background-color: #E7DADA;
  color: #5c5c5c;
  font-size: 20px;
  font-weight: 700;
  padding: 1em 3em;
  letter-spacing: .5em;
}

.p-btn__submit:disabled {
  background-color: #fff;
  color: #757c95;
}

.p-btn__submit:disabled:hover {
  cursor: default;
  opacity: 1;
}

.p-btn__submit + .is-active {
  background-color: #BE9D9D;
}

.p-contact__message {
  display: none;
  text-align: center;
  margin-top: 60px;
  font-size: 20px;
}

.p-contact__message.--error {
  color: #BE9D9D;
}

/*================================
個別ページ 共通
=================================*/
.p-article__header {
  margin-top: 48px;
}

.p-article__header img {
  margin-top: 48px;
  border-radius: 5px;
}

.p-article__text {
  margin-top: 36px;
  line-height: 1.6;
}

.p-works__more, .p-article__footer {
  text-align: center;
  margin-top: 64px;
}

.p-article__link {
  display: flex;
  justify-content: center;
}

/* Worksまとめページ
---------------------------------*/
.p-article__all {
  margin-top: 120px;
}

.p-article__all .p-works__content--grid {
  margin-top: 40px;
}

/* Works個別ページ
---------------------------------*/
.p-works__content {
  display: flex;
}

@media (max-width: 767px) {
  .p-works__content {
    display: block;
    margin-top: 64px;
  }
}

.p-works__figure {
  flex: 0 1 50%;
  margin: auto;
}

@media (max-width: 767px) {
  .p-works__figure {
    width: 100%;
    text-align: center;
  }
}

.p-works__figure img {
  width: 560px;
}

.p-works__figure figcaption {
  font-size: 10px;
  margin-top: 5px;
}

@media (max-width: 767px) {
  .p-works__figure figcaption {
    text-align: left;
  }
}

.p-works__explain {
  flex: 0 1 50%;
  padding-left: 40px;
  padding-top: 14px;
}

@media (max-width: 767px) {
  .p-works__explain {
    width: 100%;
    padding-left: 0;
    padding-top: 0;
    margin-top: 64px;
  }
}

.p-works__list + .p-works__list {
  margin-top: 72px;
}

.p-works__list p, .p-works__list a {
  margin-top: 24px;
  line-height: 1.6;
}

.p-works__list a {
  display: block;
  font-size: 20px;
  text-decoration: underline;
}
/*# sourceMappingURL=style.css.map */