@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  letter-spacing: 0.08em;
  line-height: 28px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  background-color: #ffffff;
  color: #333333;
}

.page_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 100%;
  max-width: 100vw;
  background-color: #ffffff;
}

:root {
  --swiper-pagination-color: #C8B296;
}

.section_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 0 80px;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .section_content {
    padding: 0 20px;
  }
}
.section_title {
  font-family: "Pinyon Script", cursive;
  font-weight: 400;
  color: #8f7049;
  font-size: 36px;
  letter-spacing: 2.88px;
  line-height: 36px;
  text-align: center;
  white-space: nowrap;
  margin-top: -1px;
}
.section_subtitle {
  font-weight: 400;
  color: #8f7049;
  font-size: 16px;
  line-height: 28px;
  text-align: center;
  white-space: nowrap;
}
.section_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.nav_section {
  display: block;
  position: fixed;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 200px;
  padding: 40px 16px 24px;
  background-color: transparent;
}
@media screen and (max-width: 480px) {
  .nav_section {
    width: 100%;
    height: 80px;
    padding: 0;
    background-color: #fff;
    z-index: 10;
  }
}
.nav_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
}
@media screen and (max-width: 480px) {
  .nav_content {
    display: none;
  }
}
.nav_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 0 24px;
  width: 100%;
  border-bottom: 1px solid #bbbbbb;
}
.nav_title {
  font-family: "Zen Old Mincho", serif;
  font-weight: bold;
  font-size: 24px;
  letter-spacing: 0.08em;
  line-height: 24px;
  text-align: center;
  white-space: nowrap;
}
.nav_title p:nth-child(2) {
  font-size: 20px;
}
.nav_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  width: 100%;
}
.nav_items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  width: 100%;
}
.nav_link {
  font-family: "Zen Old Mincho", serif;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 1.28px;
  line-height: 28px;
  text-decoration: none;
  white-space: nowrap;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.nav_link:hover {
  opacity: 0.7;
}

@media screen and (max-width: 480px) {
  .nav_menu.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 32px;
    -webkit-transition: right 0.4s ease;
    transition: right 0.4s ease;
    z-index: 1000;
  }
}
/* ナビゲーションリンクのアクティブ状態のスタイル */
.nav_link.active {
  color: #8f7049;
  font-weight: 700;
}

/* ホバー時のスタイルも調整 */
.nav_link {
  color: #333333;
  -webkit-transition: color 0.3s, opacity 0.3s;
  transition: color 0.3s, opacity 0.3s;
}

.nav_link:hover {
  color: #8f7049;
  opacity: 1;
}

.btn-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 8px 16px;
  background-color: #8f7049;
  width: 100%;
  font-family: "Zen Old Mincho", serif;
  font-weight: bold;
  color: #ffffff;
  font-size: 16px;
  letter-spacing: 1.28px;
  line-height: 28px;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  border: none;
  cursor: pointer;
}
@media screen and (max-width: 480px) {
  .btn-contact {
    width: 292px;
    margin: 0 auto;
  }
}
.btn-contact:hover {
  background-color: #8f7049;
}

.sns_icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
}
@media screen and (max-width: 480px) {
  .sns_icons {
    margin-bottom: 24px;
  }
}
.sns_list {
  width: 40px;
  height: auto;
}

.hamburger_nav {
  display: none;
}
@media screen and (max-width: 480px) {
  .hamburger_nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 18px 20px;
  }
}
.hamburger_toggle {
  display: none;
}
@media screen and (max-width: 480px) {
  .hamburger_toggle {
    position: fixed;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1000;
  }
}
.hamburger_line {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 28px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
  position: fixed;
  top: 40px;
  right: 20px;
}
@media screen and (max-width: 480px) {
  .hamburger_line {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.hamburger_mask {
  display: none;
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: transform 0.5s ease, opacity 0.5s ease;
  transition: transform 0.5s ease, opacity 0.5s ease, -webkit-transform 0.5s ease;
}
@media screen and (max-width: 480px) {
  .hamburger_mask {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: #fff;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: fixed;
    padding: 30px 16px 24px;
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 24px;
    z-index: 999;
    /* アニメーション初期状態 */
    opacity: 0;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    pointer-events: none;
    -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
    transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
    transition: transform 0.5s ease, opacity 0.5s ease;
    transition: transform 0.5s ease, opacity 0.5s ease, -webkit-transform 0.5s ease;
  }
}
.hamburger_mask.active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  pointer-events: auto;
}
.hamburger_line {
  width: 35px;
  height: 1px;
  top: 28px;
  background-color: #333333;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.hamburger_line:nth-child(2) {
  top: 40px;
}
.hamburger_line:nth-child(3) {
  top: 52px;
}
.hamburger_title {
  font-family: "Zen Old Mincho", serif;
  font-weight: bold;
  font-size: 24px;
  letter-spacing: 0.08em;
  line-height: 20px;
  text-align: center;
  white-space: nowrap;
  z-index: 20;
}
.hamburger_title p:nth-child(2) {
  font-size: 20px;
}
.hamburger_title::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #333333;
  margin-top: 8px;
}
.hamburger_title_sp {
  font-family: "Zen Old Mincho", serif;
  font-weight: bold;
  font-size: 24px;
  letter-spacing: 0.08em;
  line-height: 20px;
  text-align: center;
  white-space: nowrap;
}
.hamburger_title_sp p:nth-child(2) {
  font-size: 20px;
}

/* ハンバーガーメニューがアクティブな時 */
.active .hamburger_line:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(9px, 8px);
          transform: rotate(45deg) translate(9px, 8px);
}

.active .hamburger_line:nth-child(2) {
  opacity: 0;
}

.active .hamburger_line:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(9px, -8px);
          transform: rotate(-45deg) translate(9px, -8px);
}

.hamburger_nav.active .hamburger_title_sp {
  display: none;
}

/* メニューが開いている時のbodyスクロール制御 */
body.menu-open {
  overflow: hidden;
}

.content_section {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  margin-left: 200px;
  overflow-x: hidden;
}
@media screen and (max-width: 480px) {
  .content_section {
    margin-left: 0;
  }
}
.content_movie {
  position: relative;
  width: 100%;
  height: 100vh;
}
.content_movie video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.pickup_section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  padding: 80px 0;
  width: 100%;
  background-color: #f6f6f6;
}
.pickup_cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.pickup_card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 310px;
  gap: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.card_image {
  overflow: hidden;
  margin-bottom: 16px;
}
.card_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 16px;
}
.card_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  width: 100%;
  margin-bottom: 80px;
}
.card_title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  color: #8f7049;
  font-size: 18px;
  letter-spacing: 1.8px;
}
.card_description {
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1.6px;
  width: 100%;
}

.swiper {
  width: 100%;
  height: 100%;
  max-width: 1010px;
  margin: 0 auto;
}
.swiper-wrapper {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.swiper-pagination {
  position: relative;
  text-align: center;
}

.section_content.no-wrapper {
  padding: 0;
}

.plan_section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  padding: 80px 0;
  margin: 0 auto;
  width: 100%;
  background-color: #ffffff;
}
@media screen and (max-width: 480px) {
  .plan_section {
    padding: 64px 0px;
  }
}
.plan_intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  padding: 40px 80px;
  width: 100%;
}
@media screen and (max-width: 480px) {
  .plan_intro {
    padding: 40px 20px;
  }
}
.plan_intro_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.plan_intro_decoration {
  width: 1px;
  height: 50px;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: black;
}
.plan_intro_title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 1.92px;
  line-height: 42px;
  text-align: center;
}
.plan_intro_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
}
.plan_intro_description {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1.28px;
  line-height: 28px;
  text-align: center;
}

.tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  width: 100%;
}
@media screen and (max-width: 480px) {
  .tab {
    width: 100%;
  }
}
.tab_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 40px;
  width: 100%;
  max-width: 920px;
  height: auto;
  background-color: transparent;
  padding: 0;
}
@media screen and (max-width: 480px) {
  .tab_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px;
    width: 100%;
  }
}
.tab_trigger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  padding: 8px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border: none;
  border-bottom: 1px solid #bbbbbb;
  background-color: transparent;
  border-radius: 0;
  height: auto;
  cursor: pointer;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1.44px;
  line-height: 28px;
  white-space: nowrap;
  color: #bbbbbb;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 480px) {
  .tab_trigger {
    text-align: center;
    font-size: 14px;
  }
}
.tab_trigger br {
  display: none;
}
@media screen and (max-width: 480px) {
  .tab_trigger br {
    display: inline;
  }
}
.tab_content {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  width: 100%;
  margin-top: 0;
}
@media screen and (max-width: 480px) {
  .tab_content {
    width: 100%;
  }
}
.tab_image_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
}
.tab_image {
  width: 640px;
  height: 426px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 480px) {
  .tab_image {
    width: 100%;
    height: auto;
  }
}
.tab_details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 640px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 480px) {
  .tab_details {
    width: 100%;
  }
}
.tab_details_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  padding: 0 0 8px;
  width: 100%;
  border-bottom: 1px solid #a88657;
}
.tab_details_title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-top: -1px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  color: #a88657;
  font-size: 20px;
  letter-spacing: 1.6px;
  line-height: 35px;
  text-align: center;
}
.tab_details_title br {
  display: none;
}
@media screen and (max-width: 480px) {
  .tab_details_title br {
    display: inline;
  }
}
.tab_details_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  width: 100%;
}
.tab_details_text {
  margin-top: -1px;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1.28px;
  line-height: 28px;
}

.tab_trigger.active {
  border-bottom-color: #baa281;
  color: #baa281;
}

.tab_content.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.btn_details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 360px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  background-color: #a88657;
  border: none;
  cursor: pointer;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  color: #ffffff;
  font-size: 20px;
  letter-spacing: 1.6px;
  line-height: 30px;
  white-space: nowrap;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media screen and (max-width: 480px) {
  .btn_details {
    font-size: 18px;
  }
}

.btn-details:hover {
  background-color: #8f7049;
}

.feature_section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  padding: 80px 0;
  width: 100%;
  background-color: #f6f6f6;
}
@media screen and (max-width: 480px) {
  .feature_section {
    padding: 64px 0px;
  }
}
.feature_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: 160px;
  width: 100%;
  max-width: 920px;
}
@media screen and (max-width: 480px) {
  .feature_list {
    gap: 40px;
  }
}
.feature_item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 40px;
  width: 100%;
}
@media screen and (max-width: 480px) {
  .feature_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: 0;
  }
}
.feature_image img {
  width: 500px;
  height: 350px;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 480px) {
  .feature_image img {
    width: 100%;
    height: auto;
  }
}
.feature_card {
  position: absolute;
  width: 500px;
  height: 280px;
  background-color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  padding: 24px 16px;
}
@media screen and (max-width: 480px) {
  .feature_card {
    position: static;
    width: 100%;
    height: auto;
  }
}
.feature_card_right {
  top: 133px;
  left: 420px;
}
@media screen and (max-width: 480px) {
  .feature_card_right {
    position: static;
  }
}
.feature_card_left {
  top: 133px;
  right: 420px;
}
@media screen and (max-width: 480px) {
  .feature_card_left {
    position: static;
  }
}
.feature_card_title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  color: #a88657;
  font-size: 20px;
  letter-spacing: 1.6px;
  line-height: 35px;
  text-align: center;
  white-space: nowrap;
}
.feature_card_description {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1.28px;
  line-height: 28px;
  white-space: pre-line;
}

.feature_item.reverse {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.gallery_section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  padding: 80px 0;
  margin: 0 auto;
  width: 100%;
  background-color: #ffffff;
}
.gallery_grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  max-width: 920px;
}
@media screen and (max-width: 480px) {
  .gallery_grid {
    max-height: 440px;
  }
}
.gallery_grid_top {
  height: 153px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
.gallery_grid_center {
  height: 282px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
.gallery_grid_bottom {
  height: 153px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
.gallery_grid_item {
  position: relative;
  height: 100%;
  overflow: hidden;
  cursor: pointer;
  background-color: #fff;
}
.gallery_grid_item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery_grid_item::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  border: 8px solid #fff;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  pointer-events: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.gallery_grid_item:hover::after {
  opacity: 0.6;
}
.gallery_modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.gallery_modal.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.gallery_modal_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  cursor: pointer;
  -webkit-animation: fadeIn 0.3s ease;
          animation: fadeIn 0.3s ease;
}
.gallery_modal_content {
  position: relative;
  max-width: 90%;
  max-height: 90vh;
  z-index: 10000;
  -webkit-animation: scaleIn 0.3s ease;
          animation: scaleIn 0.3s ease;
}
.gallery_modal_content img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  border: 8px solid #fff;
  -webkit-box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
          box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}
.gallery_modal_close {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 10001;
}
@media screen and (max-width: 480px) {
  .gallery_modal_close {
    right: 0px;
  }
}
.gallery_modal_close svg {
  color: #8f7049;
}
.gallery_modal_close:hover {
  background-color: #f0f0f0;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes scaleIn {
  from {
    opacity: 0;
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.cta_sections {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  width: 100%;
}

.contact_cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  padding: 40px 80px;
  background: url("../img/contact.png");
  background-size: cover;
  background-position: center;
  width: 100%;
}
@media screen and (max-width: 480px) {
  .contact_cta {
    padding: 40px 20px;
  }
}
.contact_cta_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  height: 222px;
  width: 100%;
}
@media screen and (max-width: 480px) {
  .contact_cta_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0px 20px;
    height: auto;
    gap: 24px;
  }
}
.contact_cta_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 480px) {
  .contact_cta_text {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
}
.contact_cta_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.contact_cta_title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  color: #ffffff;
  font-size: 24px;
  letter-spacing: 1.92px;
  line-height: 42px;
  margin-top: -1px;
}
.contact_cta_subtitle {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  color: #ffffff;
  font-size: 16px;
  letter-spacing: 1.28px;
  line-height: 28px;
}
.contact_cta_description {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  color: #ffffff;
  font-size: 16px;
  letter-spacing: 1.28px;
  line-height: 28px;
}

.btn_contact_cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 440px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  background-color: #ffffff;
  border: none;
  cursor: pointer;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  color: #333333;
  font-size: 20px;
  letter-spacing: 1.6px;
  line-height: 30px;
  white-space: nowrap;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media screen and (max-width: 480px) {
  .btn_contact_cta {
    max-width: 440px;
  }
}

.btn-contact-cta:hover {
  background-color: #f3f3f3;
}

.social_cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
  width: 100%;
}
@media screen and (max-width: 480px) {
  .social_cta {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
}
.social_cta_item {
  position: relative;
  height: 266px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  cursor: pointer;
  width: 100%;
  align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 480px) {
  .social_cta_item {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    height: 200px;
  }
}
.social_cta_item::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(51, 51, 51, 0.4);
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  /* ← スムーズなフェード */
}
.social_cta_item:hover::after {
  opacity: 0;
}
.social_cta_icon {
  width: 40px;
  height: 40px;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 2;
}
.social_cta_text {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  color: #ffffff;
  font-size: 20px;
  letter-spacing: 1.6px;
  line-height: 30px;
  text-align: center;
  width: 100%;
  z-index: 2;
}

.instagram_cta {
  background: url("../img/instagram.png") no-repeat center center/cover;
}

.facebook_cta {
  background: url("../img/facebook.png") no-repeat center center/cover;
  width: 100%;
}

.footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
  padding: 40px 80px;
  width: 100%;
  background-color: #ffffff;
}
@media screen and (max-width: 480px) {
  .footer {
    padding: 40px 20px;
  }
}
.footer_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 0 24px;
  border-bottom: 1px solid #bbbbbb;
  width: 100%;
}
@media screen and (max-width: 480px) {
  .footer_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
}
.footer_brand {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  color: #333333;
  font-size: 24px;
  letter-spacing: 1.92px;
  line-height: 42px;
  white-space: nowrap;
  margin-top: -1px;
}
.footer_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
}
.footer_link {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  color: #333333;
  font-size: 16px;
  letter-spacing: 1.28px;
  line-height: 28px;
  text-decoration: none;
  white-space: nowrap;
  margin-top: -1px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.footer_copyright {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #333333;
  font-size: 14px;
  letter-spacing: 1.12px;
  line-height: 21px;
  white-space: nowrap;
  margin-top: -1px;
}

.footer_link:hover {
  opacity: 0.7;
}