@charset "UTF-8";
.page {
  margin-top: 100px;
  margin-bottom: 100px;
}

.page-body {
  padding-top: 70px;
  padding-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .page-body {
    padding-top: 45px;
    padding-bottom: 45px;
  }
}

.single-works {
  margin-top: 150px;
  margin-bottom: 150px;
}
@media screen and (max-width: 767px) {
  .single-works {
    margin-top: 100px;
    margin-bottom: 80px;
  }
}

.page-contents-inner {
  max-width: 1094px;
  margin-left: auto;
  margin-right: auto;
}

.single-works__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 45px;
}
@media screen and (max-width: 767px) {
  .single-works__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.single-works__image {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .single-works__image {
    width: 100%;
  }
}

.single-works__text {
  width: 50%; /* Safari対応 */
  position: sticky;
  top: 150px; /* ビューポートの上端からの距離 */
  height: calc(100vh - 350px); /* ビューポートの高さからヘッダーなどの高さを引いた値 */
  overflow-y: auto; /* コンテンツが縦に長い場合にスクロールバーを表示 */
}
@media screen and (max-width: 767px) {
  .single-works__text {
    position: relative; /* モバイルビューでは固定表示を解除 */
    top: auto;
    height: auto;
    overflow-y: visible;
    width: 100%;
  }
}

.single-works__title {
  font-size: 20px;
  font-weight: bold;
}

.single-works__description {
  margin-top: 20px;
}

.single-works__table {
  margin-top: 47px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .single-works__table {
    position: relative; /* モバイルビューでは固定表示を解除 */
    top: auto;
    height: auto;
    overflow-y: visible;
  }
}
.single-works__table table a {
  text-decoration: underline;
}
.single-works__table table th {
  width: 100px;
  text-align: left;
}
.single-works__table table td {
  width: calc(100% - 100px);
  line-height: 2;
  word-break: break-all; /* 単語を途中で区切って折り返す */
  word-wrap: break-word; /* 古いブラウザのサポート */
}

.single-works__button {
  margin-top: 150px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .single-works__button {
    margin-top: 80px;
  }
}

.archive-works__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 20px;
}
@media screen and (max-width: 767px) {
  .archive-works__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }
}

.archive-works-card__title {
  margin-top: 5px;
  text-align: center;
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  .archive-works-card__title {
    font-size: 10px;
  }
}

/******************************/
/** お問い合わせページ **/
/******************************/
/* フォーム全体 */
#cf7-area {
  width: 100%;
}

.cf7-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}
.cf7-item.cf7-item + .cf7-item.cf7-item {
  margin-top: 15px;
}

/* 各項目共通 */
#cf7-area input[type=text],
#cf7-area input[type=email],
#cf7-area input[type=tel],
#cf7-area textarea {
  width: 100%;
  padding: 10px;
}

#cf7-area input[type=text]:focus,
#cf7-area input[type=email]:focus,
#cf7-area input[type=tel]:focus,
#cf7-area textarea:focus {
  background: #fff;
  outline: 0;
}

#cf7-area input[type=checkbox],
#cf7-area input[type=radio] {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
}

#cf7-area textarea {
  height: 200px;
}

.cf7-submit {
  width: auto;
  margin: 0 auto;
  margin-top: 40px;
  text-align: center;
}

.cf7-submit input[type=submit] {
  background-color: #726b5a;
  color: #fff;
  font-size: 16px;
  padding: 10px 20px;
  border: none;
  display: block; /* 追加 */
  margin: 0 auto; /* 追加 */
}

.cf7-submit input[type=submit]:hover {
  opacity: 0.7;
  color: #fff;
}

/* 必須ラベル */
.cf7-req {
  font-size: 0.7em;
  padding: 2px 4px;
  background: #8B7B5A;
  color: #ffffff;
  margin-left: 10px;
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .cf7-q {
    margin: 0;
  }
  #cf7-area input[type=text],
  #cf7-area input[type=email],
  #cf7-area input[type=tel],
  #cf7-area textarea {
    margin-left: 0;
  }
  .cf7-submit input[type=submit] {
    width: auto;
    padding: 10px 20px;
    margin: 0 auto;
  }
  .cf7-submit nput[type=submit]:hover {
    opacity: 0.7;
  }
}
.sankou__section {
  padding-top: 50px;
  padding-bottom: 50px;
}

.sankou__section-wrap {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.sankou__section-h2 {
  font-size: 25px;
  font-weight: bold;
  border-left: 5px solid #333;
  padding-left: 20px;
}

.sankou__section-box {
  margin-top: 50px;
  border: 1px solid #333;
  padding-top: 50px;
  padding-bottom: 50px;
  height: 600px;
  overflow: scroll;
}
.sankou__section-box.--padding-none {
  padding-top: 0;
  padding-bottom: 0;
}
.sankou__section-box.--relative {
  position: relative;
}

.box {
  width: 100px;
  aspect-ratio: 1;
  background-color: #000;
}

.loader {
  background-color: #cecece;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 1;
}

.loader__dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  width: 150px;
}

.loader__dot {
  width: 30px;
  aspect-ratio: 1;
  background-color: #000;
}

.sankou-fv {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background-color: #000;
}

.sankou-fv__title {
  color: #fff;
  font-size: 60px;
  opacity: 0;
}

.page-teian {
  height: 100vh;
  padding-top: 100px;
}

#app {
  padding: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #000;
}
#app h2 {
  font-size: 20px;
  font-weight: bold;
}

.hidden {
  display: none;
}

button {
  margin-top: 30px;
}

.step1-button {
  display: block;
  width: 200px;
  margin-left: auto;
  margin-right: auto;
}

#mbti-form {
  margin-top: 30px;
}
#mbti-form label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

#questions {
  text-align: center;
}
#questions p {
  margin-top: 30px;
}

#result h2 {
  margin-top: 30px;
  text-align: center;
}
#result h3 {
  margin-top: 30px;
  font-weight: bold;
}

.result-type {
  margin-top: 30px;
}

.result-button {
  text-align: center;
}

.page-teian2 {
  height: auto;
  padding-bottom: 100px;
}
.page-teian2 #app {
  border: none;
}

#reviews {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.reviews-section__head h2 {
  font-size: 20px;
  font-weight: bold;
}

.reviews-section__body {
  margin-top: 30px;
}

.review-form-section {
  margin-top: 100px;
}
.review-form-section h2 {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
.review-form-section p {
  margin-top: 20px;
  text-align: center;
}

.review-form-section__body {
  margin-top: 30px;
}

.wpcr3_respond_2 {
  display: block;
}

.wpcr3_show_btn,
.wpcr3_cancel_btn {
  display: none;
}

.wpcr3_div_2 {
  width: 100% !important;
}

table.wpcr3_table_2 tr {
  margin-bottom: 20px !important;
  display: block;
}

.wpcr3_table_2 td {
  display: block !important;
  font-size: 16px;
  font-weight: 500;
  color: #313131;
}

.wpcr3_respond_2 input[type=text] {
  min-width: auto !important;
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 2px solid #dcdcdc !important;
}

.wpcr3_respond_2 textarea {
  min-width: auto !important;
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 2px solid #dcdcdc !important;
}

.wpcr3_review {
  border: 2px solid #dcdcdc;
  padding: 20px;
  margin-bottom: 20px;
}

div.wpcr3_dotline {
  display: none !important;
  border-bottom: 1px dotted #ccc !important;
  margin-bottom: 10px !important;
  clear: both !important;
}

div.wpcr3_review div.wpcr3_review_datePublished {
  display: block !important;
  font-size: 12px;
  font-style: normal;
  text-align: right !important;
  color: #313131 !important;
}

div.wpcr3_review div.wpcr3_review_author {
  display: block !important;
  font-size: 12px;
  font-style: normal;
  text-align: right !important;
  color: #313131 !important;
}

div.wpcr3_review div.wpcr3_review_title {
  margin-top: 10px !important;
  font-size: 16px !important;
  font-weight: bold !important;
  display: block !important;
  padding-bottom: 10px !important;
  border-bottom: 2px solid #dcdcdc !important;
}

.wpcr3_content {
  margin-top: 10px !important;
  font-size: 16px !important;
  font-weight: normal;
  display: block !important;
  padding-bottom: 0px !important;
  color: #313131 !important;
}

.wpcr3_content.wpcr3_admin_response {
  margin-top: 30px !important;
  border: 2px solid #bdeaff;
  padding: 10px !important;
  margin-left: 10px !important;
  color: #313131 !important;
}

.wpcr3_pagination {
  margin-top: 50px !important;
  clear: both;
  padding: 0;
  position: relative;
  font-size: 11px;
  line-height: 13px;
  text-align: center !important;
}

.wpcr3_pagination .wpcr3_a,
.wpcr3_pagination .wpcr3_pagination_page {
  display: block !important; /* 要素をインラインブロックにして横並びに */
  margin: 0 4px !important; /* 要素間のスペースを調整 */
}

.wpcr3_pagination .wpcr3_current {
  font-weight: bold;
}

.wpcr3_item_name {
  display: none !important;
}

div.wpcr3_aggregateRating {
  display: none !important;
}

.wpcr3_leave_text {
  display: none !important;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  background: #EBE7DF;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

.main.--sankou {
  background: #fff;
  margin-top: 100px;
}

.sp-only {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp-only {
    display: block;
  }
}

.pc-only {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc-only {
    display: none;
  }
}

.section {
  padding-top: 70px;
  padding-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .section {
    padding-top: 45px;
    padding-bottom: 45px;
  }
}

.inner {
  padding-left: 35px;
  padding-right: 35px;
}
@media screen and (max-width: 767px) {
  .inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.contents-inner {
  max-width: 828px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 65px;
}
@media screen and (max-width: 767px) {
  .contents-inner {
    margin-top: 45px;
  }
}

.section-title {
  letter-spacing: 0.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0px;
  text-align: center;
}
.section-title--en {
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  font-size: 45px;
}
@media screen and (max-width: 767px) {
  .section-title--en {
    font-size: 30px;
  }
}
.section-title--ja {
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 767px) {
  .section-title--ja {
    font-size: 14px;
  }
}
.section-title--about {
  text-align: left;
}

.button {
  padding: 15px 40px;
  border: none;
  background: #8B7B5A;
  color: #F6F7F7;
  text-align: center;
  font-weight: bold;
  line-height: 170%;
  letter-spacing: 3px;
}

.button-type-2 {
  padding: 15px 40px;
  color: #8B7B5A;
  border: 1px solid #8B7B5A;
}

a {
  cursor: pointer;
}
a:hover {
  opacity: 0.7;
}

button {
  cursor: pointer;
}

.header {
  font-family: "Noto Serif JP", serif;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 999;
  padding-top: 25px;
  padding-bottom: 25px;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
}

.header__logo {
  font-size: 32px;
}
@media screen and (max-width: 767px) {
  .header__logo {
    font-size: 23px;
  }
}
@media screen and (max-width: 767px) {
  .header__nav {
    display: none;
  }
}

.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 45px;
}

.header__nav-item a {
  display: block;
  font-size: 20px;
  color: #333;
}

.drawer-icon {
  display: none;
  width: 30px;
  height: 20px;
  background: none;
  border: none;
  position: relative;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .drawer-icon {
    display: block;
  }
}
.drawer-icon.is-checked .drawer-icon__bar {
  background: #8B7B5A;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  top: 10px;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
  top: 10px;
}

.drawer-icon__bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: #8B7B5A;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.drawer-icon__bar:nth-of-type(2) {
  top: 10px;
}
.drawer-icon__bar:nth-of-type(3) {
  top: 20px;
}

.drawer-content {
  position: fixed;
  top: 0;
  right: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  background: #EBE7DF;
  opacity: 0.9;
  width: 100%;
  height: 100%;
  padding-top: 130px;
  padding-bottom: 348px;
  z-index: 99;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.drawer-content.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.drawer-content__logo {
  max-width: 180px;
  margin-left: auto;
  margin-right: auto;
}

.drawer-content__nav {
  text-align: center;
  font-size: 20px;
  font-family: "Libre Baskerville", serif;
}

.drawer-content__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}

.drawer-content__nav-item a {
  display: block;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  color: #333;
  font-family: "Noto Serif JP", serif;
}

.fv {
  margin-top: 100px;
}

.fv__inner {
  position: relative;
  height: 425px;
}

.fv__image {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 200px;
}

.works__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 20px;
}
@media screen and (max-width: 767px) {
  .works__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }
}

.works-card__title {
  margin-top: 5px;
  text-align: center;
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  .works-card__title {
    font-size: 10px;
  }
}

.works-card__image {
  aspect-ratio: 1/1;
}
.works-card__image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.works__button {
  margin-top: 70px;
  text-align: center;
}

.service__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .service__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.service__item {
  position: relative;
  width: 50%;
}
@media screen and (max-width: 767px) {
  .service__item {
    width: 100%;
  }
}

.service__text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
  font-weight: bold;
}

.about__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 828px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .about__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.about__left {
  width: 292px;
}

.about__right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .about__right {
    margin-top: 45px;
  }
}

.about__right-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-top: 17px;
}
@media screen and (max-width: 767px) {
  .about__right-meta {
    margin-top: 0;
  }
}

.about__name {
  font-weight: bold;
}

.about__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.about__sns-item {
  display: block;
  width: 20px;
  height: auto;
}

.about__text {
  margin-top: 17px;
}

.contact__container {
  background: #fff;
  padding: 45px;
  max-width: 828px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .contact__container {
    padding: 25px;
  }
}

.contact__box {
  border-radius: 30px;
  background: #FFF;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 60px;
  padding-bottom: 60px;
}

.contact__contents {
  max-width: 573px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
}

.contact__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
}

.contact__form {
  margin-top: 40px;
  max-width: 612px;
  margin-left: auto;
  margin-right: auto;
}

.contact__fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .contact__fields {
    gap: 20px;
  }
}

.contact__privacy {
  margin-top: 30px;
  text-align: center;
}

.contact__button {
  margin-top: 100px;
  text-align: center;
}

.footer {
  padding-top: 37px;
  padding-bottom: 37px;
  background: #8B7B5A;
}

.footer__copy {
  text-align: center;
  font-size: 14px;
  color: #fff;
}