@charset "UTF-8";
/* =========================================
   Base / Utilities
========================================= */
body {
  margin: 0;
  font-family: 'Noto Sans JP', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
  color: #2b2b2b;
}

/* Utility (keep) */
@media screen and (min-width: 1001px) {
  .is_pc {
    display: none !important;
  }
}

@media screen and (max-width: 1000px) {
  .is_sp {
    display: none !important;
  }
}

/* =========================================
   Header (site-header / global-nav / phone / mobile-menu)
========================================= */
.site-header {
  position: relative;
  z-index: 10;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #e6e6e6;
}

.site-header__container {
  max-width: 100%;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-header__brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
  color: inherit;
}

.site-header__brand-title img {
  width: 180px;
  max-width: 100%;
  display: flex;
}

/* Global Nav */
.global-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex: 1;
}

.global-nav__item {
  position: relative;
  font-size: 15px;
  white-space: nowrap;
  color: inherit;
  text-decoration: none;
  padding-left: 0;
}

.global-nav__item:hover {
  color: #126668;
}

.global-nav__item + .global-nav__item {
  padding-left: 22px;
}

.global-nav__item + .global-nav__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 22px;
  background: #DBDBDB;
}

/* Phone */
.phone {
  display: flex;
  align-items: center;
  gap: 16px;
}

.phone__note {
  font-size: 14px;
  color: #555;
  line-height: 1.4;
}

.phone__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #187678;
  color: #ffffff;
  padding: 16px 23px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
}

@media (min-width: 1201px) {
  .phone__cta {
    pointer-events: none;
  }
}

.phone__cta:hover {
  background-color: #126668;
}

.phone__icon {
  width: 20px;
  height: 20px;
  position: relative;
  display: inline-block;
}

.phone__icon::before {
  content: "";
  position: absolute;
  inset: 0;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23000"><path d="M6.62 10.79a15.053 15.053 0 006.59 6.59l2.2-2.2a1 1 0 011.01-.24 11.72 11.72 0 003.68.59 1 1 0 011 1V20a1 1 0 01-1 1C10.4 21 3 13.6 3 4a1 1 0 011-1h3.47a1 1 0 011 1c0 1.27.2 2.49.59 3.68a1 1 0 01-.24 1.01l-2.2 2.1z"/></svg>') center/contain no-repeat;
  background: #ffffff;
}

.phone__number {
  font-weight: 500;
  letter-spacing: .02em;
  font-size: 20px;
}

/* Header Responsive */
@media (min-width: 1201px) {
  .global-nav {
    display: flex;
  }
  .phone {
    display: flex;
  }
}

@media (max-width: 1200px) {
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  }
  .site-header__container {
    gap: 16px;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .global-nav {
    display: none;
  }
  .phone {
    display: none;
  }
  .site-header__brand-title {
    font-size: 22px;
  }
}

/* 共通: ハンバーガー制御用チェックボックス */
.nav-toggle {
  display: none;
}

/* ハンバーガーボタン */
.nav-toggle-label {
  display: inline-block;
  cursor: pointer;
  width: 30px;
  height: 22px;
  position: relative;
  z-index: 1001;
  /* メニューより上に出す */
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 3px;
  background: #333;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.nav-toggle-label span {
  top: 50%;
  transform: translateY(-50%);
}

.nav-toggle-label span::before {
  content: "";
  top: -8px;
}

.nav-toggle-label span::after {
  content: "";
  top: 8px;
}

/* ▼ 開いたとき */
.nav-toggle:checked + .nav-toggle-label span {
  background: transparent;
}

.nav-toggle:checked + .nav-toggle-label span::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle:checked + .nav-toggle-label span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* モバイルナビ */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  border-top: 1px solid #e6e6e6;
  padding: 30px 0;
  transition: all 0.3s ease;
}

.nav-toggle:checked ~ .mobile-nav {
  display: flex;
}

.mobile-nav a {
  color: #333;
  text-decoration: none;
  font-size: 16px;
}

/* ▼ レスポンシブ設定 */
/* PC / TAB (861px〜) → ハンバーガー隠す */
@media (min-width: 1201px) {
  .nav-toggle,
  .nav-toggle-label,
  .mobile-nav {
    display: none !important;
  }
}

/* SP (〜860px) → ハンバーガー表示 */
@media (max-width: 1200px) {
  .nav-toggle-label {
    display: inline-block;
  }
  /* Phone */
  .phones {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 22px;
  }
  .phone__notes {
    font-size: 14px;
    color: #555;
    line-height: 1.4;
    width: 100%;
  }
  .phone__ctas {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #187678;
    color: #ffffff;
    padding: 16px 23px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
  }
  .phone__ctas:hover {
    background-color: #126668;
  }
  .phone__icons {
    width: 20px;
    height: 20px;
    position: relative;
    display: inline-block;
  }
  .phone__icons::before {
    content: "";
    position: absolute;
    inset: 0;
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23000"><path d="M6.62 10.79a15.053 15.053 0 006.59 6.59l2.2-2.2a1 1 0 011.01-.24 11.72 11.72 0 003.68.59 1 1 0 011 1V20a1 1 0 01-1 1C10.4 21 3 13.6 3 4a1 1 0 011-1h3.47a1 1 0 011 1c0 1.27.2 2.49.59 3.68a1 1 0 01-.24 1.01l-2.2 2.1z"/></svg>') center/contain no-repeat;
    background: #ffffff;
  }
  .phone__numbers {
    letter-spacing: .02em;
    font-size: 20px;
    color: #fff;
    font-weight: 500;
  }
  .nav-toggle:checked ~ .mobile-nav {
    width: 100%;
  }
}

.top {
  position: relative;
}

.top .top__box {
  position: absolute;
  top: 25%;
  bottom: 50%;
  margin: auto;
  text-align: center;
  left: 0;
  right: 0;
}

.top .top__box .top__subttl {
  font-size: 21px;
  color: #fff;
  font-family: "Zen Old Mincho", serif;
}

.top .top__box .top__ttl {
  color: #fff;
  font-size: 42px;
  line-height: 65px;
  font-family: "Zen Old Mincho", serif;
  margin-top: 30px;
}

.top .top__box .top__btn a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #187678;
  color: #ffffff;
  padding: 16px 23px 16px 44px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 400;
  margin-top: 35px;
  font-size: 18px;
  position: relative;
}

.top .top__box .top__btn a:hover {
  background: #126668;
}

.top .top__box .top__btn a:before {
  content: "";
  position: absolute;
  inset: 0;
  width: 18px;
  height: 18px;
  background-image: url(../img/tel-icon.webp);
  background-repeat: no-repeat;
  background-size: contain;
  top: 0;
  left: 13px;
  bottom: 0;
  margin: auto;
  right: auto;
}

.top__figure {
  min-width: 100%;
  margin: 0;
}

.top__figure img {
  width: 100%;
}

@media (max-width: 1200px) {
  .top {
    margin-top: 70px;
  }
}

@media (max-width: 860px) {
  .top .top__box {
    top: 16%;
  }
  .top .top__box .top__ttl {
    font-size: 25px;
    line-height: 45px;
    margin-top: 15px;
  }
  .top .top__box .top__subttl {
    font-size: 16px;
    line-height: 26px;
  }
  .top__figure img {
    height: 550px;
    object-fit: cover;
  }
  .top .top__box .top__btn a {
    width: 65%;
    justify-content: center;
  }
  .top .top__box .top__btn a:before {
    left: 37px;
  }
}

@media (min-width: 1201px) {
  .top__btn a {
    pointer-events: none;
  }
}

/* =========================================
   Concept
========================================= */
#concept {
  padding: 120px 0 30px;
  border-radius: 100px;
  position: relative;
  top: -89px;
  background: #fff;
  filter: drop-shadow(0px 2px 30px rgba(93, 60, 53, 0.1));
  /* Concept: TAB */
  /* Concept: SP */
}

#concept .concept__title {
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 38px;
  letter-spacing: 4px;
}

#concept .concept__wrap {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 28px;
  padding: 60px 0;
}

#concept .concept__bg-title {
  position: absolute;
  top: -200px;
  left: 0;
  right: 0;
  margin: auto;
  font-size: 152px;
  font-weight: 300;
  letter-spacing: .06em;
  color: rgba(225, 142, 126, 0.1);
  font-family: "Merriweather", serif;
  user-select: none;
  pointer-events: none;
  text-align: center;
}

#concept .concept__body {
  display: flex;
  align-items: flex-start;
  gap: 85px;
}

#concept .concept__media {
  position: relative;
  flex: 0 0 360px;
}

#concept .concept__figure {
  max-width: 100%;
  width: 100%;
  margin: 0;
}

#concept .concept__figure img {
  width: 100%;
  display: block;
  border-radius: 20px;
}

#concept .concept__figure--main {
  border-radius: 20px;
}

#concept .concept__figure--sub {
  position: absolute;
  left: 160px;
  bottom: -28px;
  width: 210px;
}

#concept .concept__figure--sub img {
  border-radius: 16px;
}

#concept .concept__content {
  flex: 1 1 auto;
}

#concept .concept__text {
  color: #362E26;
  font-size: 16px;
  font-weight: 300;
}

#concept .concept__text p {
  color: #362E26;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 38px !important;
}

@media (min-width: 861px) and (max-width: 1024px) {
  #concept .concept__wrap {
    padding: 64px 40px;
  }
  #concept .concept__body {
    gap: 36px;
  }
  #concept .concept__media {
    flex: 0 0 300px;
  }
  #concept .concept__figure--sub {
    left: 120px;
    bottom: -20px;
    width: 190px;
  }
}

@media (max-width: 860px) {
  #concept {
    padding: 50px 0 35px;
    border-radius: 30px;
  }
  #concept .concept__title {
    font-size: 24px;
    line-height: 41px;
  }
  #concept .concept__wrap {
    padding: 0;
    border-radius: 18px;
  }
  #concept .concept__bg-title {
    font-size: 68px;
    left: 0;
    top: -151px;
    right: 0;
    margin: auto;
  }
  #concept .concept__body {
    flex-direction: column;
    gap: 20px;
    width: 90%;
    margin: 30px auto 0;
  }
  #concept .concept__media {
    flex: 0 0 auto;
  }
  #concept .concept__figure--sub {
    position: relative;
    left: auto;
    bottom: auto;
    width: 65%;
    margin: -22% 0 0 auto;
  }
  #concept .concept__content .concept__title {
    text-align: left;
  }
  #concept .concept__content .concept__text p {
    font-size: 15px;
    line-height: 34px !important;
  }
}

/* =========================================
   Support
========================================= */
.support {
  padding: 80px 20px 150px;
  background: #F9F7F1;
}

.support__wrap {
  max-width: 1100px;
  margin: 0 auto;
}

.support__eyebrow {
  margin: 0 0 8px 0;
  font-size: 18px;
  color: #187678;
  letter-spacing: .08em;
  text-align: center;
  font-family: "Merriweather", serif;
}

.support__title {
  margin: 0 0 70px 0;
  font-size: 32px;
  text-align: center;
  letter-spacing: .08em;
  color: #362E26;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
}

.support__divider {
  margin: 90px 0;
  height: 1px;
  border: none;
  background: #f0e6df;
}

.support__block {
  display: flex;
  align-items: center;
  gap: 48px;
}

.support__block--even {
  flex-direction: row;
}

.support__content {
  flex: 1 1 50%;
}

.support__content--1 .support__heading::before,
.support__content--2 .support__heading::before,
.support__content--3 .support__heading::before,
.support__content--4 .support__heading::before,
.support__content--5 .support__heading::before {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  width: 105px;
  height: 105px;
  position: absolute;
  left: 0;
}

.support__content--1 .support__heading::before {
  background-image: url(../img/support_icon1.webp);
  top: -10px;
}

.support__content--2 .support__heading::before {
  background-image: url(../img/support_icon2.webp);
  top: -10px;
}

.support__content--3 .support__heading::before {
  background-image: url(../img/support_icon3.webp);
  top: -10px;
}

.support__content--4 .support__heading::before {
  background-image: url(../img/support_icon4.webp);
  top: -30px;
}

.support__content--5 .support__heading::before {
  background-image: url(../img/support_icon5.webp);
  top: -30px;
}

.support__content--4 .support__text,
.support__content--5 .support__text {
  margin-top: 51px;
}

.support__heading {
  margin: 10px 0 14px 0;
  font-size: clamp(20px, 2vw, 32px);
  line-height: 1.6;
  letter-spacing: .06em;
  color: #2b2b2b;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  padding-left: 120px;
  position: relative;
}

.support__text {
  margin: 0;
  color: #6d6d6d;
  line-height: 2;
  margin-top: 28px;
}

.support__media {
  display: flex;
  align-items: stretch;
  gap: 14px;
  flex: 1 1 50%;
}

.support__media figure {
  max-width: 100%;
  width: 100%;
  margin: 0;
}

.support__media img {
  width: 100%;
  display: block;
  border-radius: 16px;
}

@media (min-width: 861px) {
  .support {
    padding: 150px 20px 150px;
    background: #F9F7F1;
    margin-top: -74px;
  }
}

/* Support: TAB */
@media (min-width: 861px) and (max-width: 1024px) {
  .support__block {
    gap: 32px;
  }
}

/* Support: SP */
@media (max-width: 860px) {
  .support {
    padding: 70px 0 50px;
  }
  .support__title {
    font-size: 24px;
    line-height: 41px;
    margin-bottom: 35px;
  }
  .support__wrap {
    width: 85%;
  }
  .support__eyebrow {
    font-size: 15px;
  }
  .support__block,
  .support__block--even {
    flex-direction: column;
    gap: 25px;
  }
  .support__block--odd {
    flex-direction: column-reverse;
  }
  .support__media {
    width: 100%;
  }
  .support__media figure {
    width: 100%;
  }
  .support__heading {
    font-size: 20px;
    padding-left: 79px;
  }
  .support__heading::before {
    width: 70px !important;
    height: 70px !important;
    top: auto !important;
  }
  .support__content--4 .support__text,
  .support__content--5 .support__text {
    margin-top: 25px;
  }
  .support__text {
    font-size: 15px;
    margin-top: 25px;
  }
  .support__divider {
    margin: 41px 0;
  }
}

/* =========================================
   Plan
========================================= */
.plan {
  padding: 0 0 50px;
  background: #fff;
  z-index: 1;
  position: relative;
}

.plan::before {
  content: "";
  position: absolute;
  top: -64px;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  /* 両端をはみ出させて滑らかに */
  height: 75px;
  /* アーチの高さを直接指定 */
  background: #fff;
  /* アーチ部分の色（白） */
  border-top-left-radius: 50% 100%;
  border-top-right-radius: 50% 100%;
  /* 楕円上Rで“逆アーチ” */
  pointer-events: none;
}

.plan::after {
  content: "";
  position: absolute;
  bottom: -73px;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  /* 両端をはみ出させて滑らかに */
  height: 75px;
  /* アーチの高さを直接指定 */
  background: #fff;
  /* アーチ部分の色（白） */
  border-top-left-radius: 50% 100%;
  border-top-right-radius: 50% 100%;
  /* 楕円上Rで“逆アーチ” */
  pointer-events: none;
  transform: rotate(180deg);
}

.plan__wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 30px;
}

.plan__eyebrow {
  margin: 0 0 6px 0;
  text-align: center;
  font-size: 18px;
  letter-spacing: .08em;
  color: #187678;
  font-family: "Zen Old Mincho", serif;
}

.plan__title {
  margin: 0 0 50px 0;
  text-align: center;
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: .06em;
  color: #362E26;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
}

.plan__cards {
  display: flex;
  align-items: stretch;
  gap: 28px;
}

/* Cards */
.plan-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0px 2px 30px rgba(93, 60, 53, 0.1);
  overflow: hidden;
}

.plan-card__head {
  position: relative;
  padding: 0 0 0 0;
  background: #EEF8F7;
}

.plan-card__title {
  margin: 0;
  padding: 16px 22px;
  border-radius: 10px 10px 0 0;
  color: #ffffff;
  font-weight: 500;
  letter-spacing: .06em;
  text-align: center;
  font-size: 24px;
}

.plan-card__subtitle {
  margin: 0;
  padding: 10px 18px 10px 18px;
  text-align: center;
  color: #187678;
  font-size: 18px;
}

.plan-card__figure {
  max-width: 100%;
  width: 100%;
  margin: 0;
}

.plan-card__figure img {
  width: 100%;
  display: block;
}

.plan-card__body {
  padding: 26px 28px 34px 28px;
  text-align: center;
}

.plan-card__text {
  margin: 0 0 22px 0;
  color: #6b6b6b;
  line-height: 2;
  text-align: center;
}

.plan-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 100%;
  width: 380px;
  padding: 30px 0;
  border-radius: 4px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  letter-spacing: .04em;
  font-size: 18px;
  margin-top: 15px;
}

.plan-card__btn i {
  width: 14px;
  height: 14px;
  position: relative;
}

.plan-card__btn i::before {
  content: "";
  position: absolute;
  inset: 0;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23000"><path d="M9 6l6 6-6 6"/></svg>') center/contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23000"><path d="M9 6l6 6-6 6"/></svg>') center/contain no-repeat;
  background: #ffffff;
  width: 25px;
  height: 25px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.plan-card__btn1 {
  margin-top: 47px !important;
}

.plan-card__btn1:hover {
  background: #D07C6C !important;
}

.plan-card__btn2:hover {
  background: #C7833F !important;
}

.plan-card--hall {
  flex: 1 1 50%;
}

.plan-card--hall .plan-card__subtitle {
  margin: 0;
  padding: 10px 18px 10px 18px;
  text-align: center;
  color: #187678;
  font-size: 18px;
}

.plan-card--hall .plan-card__title {
  background: #187678;
}

.plan-card--hall .plan-card__btn {
  background: #187678;
}

.plan-card--hall .plan-card__btn1:hover {
  background: #126668 !important;
}

.plan-card--home {
  flex: 1 1 50%;
}

.plan-card--home .plan-card__subtitle {
  margin: 0;
  padding: 10px 18px 10px 18px;
  text-align: center;
  color: #d79447;
  font-size: 18px;
  background: #F6EEE0;
}

.plan-card--home .plan-card__title {
  background: #d79447;
}

.plan-card--home .plan-card__btn {
  background: #d79447;
}

/* Plan: TAB */
@media (min-width: 861px) and (max-width: 1024px) {
  .plan__cards {
    gap: 20px;
  }
  .plan-card__body {
    padding: 22px 22px 30px 22px;
  }
}

/* Plan: SP */
@media (max-width: 860px) {
  .plan {
    padding: 0 0 25px;
  }
  .plan::after {
    bottom: -32px;
    height: 35px;
  }
  .plan::before {
    display: none;
  }
  .plan__title {
    margin-bottom: 30px;
  }
  .plan__wrap {
    margin-top: 0;
    padding-top: 50px;
  }
  .plan-card--hall,
  .plan-card--home {
    width: 90%;
    margin: auto;
  }
  .plan__cards {
    flex-direction: column;
    gap: 40px;
  }
  .plan-card__title {
    font-size: 17px !important;
  }
  .plan-card__subtitle {
    font-size: 16px !important;
  }
  .plan-card__text {
    text-align: left;
  }
  .plan-card .plan-card__body .plan-card__btn {
    font-size: 17px;
    padding: 15px 0;
  }
  .plan-card .plan-card__body .plan-card__btn1 {
    margin-top: 0 !important;
  }
}

/* =========================================
   Hall
========================================= */
/* 右カラム：画像 */
.timeline-media {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.timeline-media .main-image {
  width: 100%;
  border-radius: 8px;
}

.timeline-media .thumbnails {
  margin-top: 16px;
  display: flex;
  gap: 12px;
}

.timeline-media .thumbnails .thumb {
  width: 100%;
  border-radius: 4px;
}

.pum-theme-801 .pum-content + .pum-close, .pum-theme-default-theme .pum-content + .pum-close {
  background: none;
  color: #000;
  border: none;
  filter: none;
  box-shadow: none;
  font-size: 16px;
  font-weight: 600;
}

/* 全体レイアウト */
.timeline-media {
  flex: 0 0 43%;
  margin: 0 auto;
  text-align: center;
}

/* メイン画像 */
.timeline-media .main-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* サムネイル群 */
.timeline-media .thumbnails {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  padding: 0 100px;
}

.timeline-media .thumbnails .thumb {
  cursor: pointer;
  border-radius: 4px;
  overflow: hidden;
  transition: border-color .3s;
}

.timeline-media .thumbnails .thumb img {
  display: block;
  width: 100%;
}

.hall {
  position: relative;
  background-image: url("../img/bg-access.webp");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px 0 0;
}

/* ===== セクション見出し ===== */
.hall-plans__section {
  margin-top: 36px;
}

.hall-plans__title {
  margin: 0 0 18px 0;
  text-align: center;
  font-size: 28px;
  color: #187678;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  letter-spacing: .06em;
}

.hall-plans__title-sub {
  font-size: 21px;
  color: #187678;
  margin-left: 6px;
  letter-spacing: 0;
}

/* ===== カードリスト ===== */
.hall-plans__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  justify-content: flex-start;
}

.hall-plans__card {
  width: 30%;
  border-radius: 12px;
  padding: 14px 14px 18px 14px;
}

.hall-plans__media {
  margin: 0 0 10px 0;
  border-radius: 10px;
  overflow: hidden;
}

.hall-plans__media img {
  width: 100%;
  height: 230px;
  object-fit: contain;
}

.hall-plans__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.hall-plans__meta {
  margin: 0;
}

.hall-plans__name {
  margin: 4px 0 0 0;
  font-size: 16px;
  color: #187678;
  font-weight: 500;
  text-align: left;
}

.hall-plans__name span {
  font-size: 14px;
}

.hall-plans__note {
  margin: 2px 0 6px 0;
  font-size: 12px;
  color: #6b6b6b;
  text-align: left;
}

.hall-plans__price {
  margin: 2px 0 0 0;
  display: flex;
  align-items: baseline;
  gap: 6px;
  color: #1a6c6a;
}

.hall-plans__price-strong {
  font-size: clamp(28px, 4.2vw, 34px);
  font-weight: 700;
  letter-spacing: .02em;
}

.hall-plans__yen {
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 600;
}

.hall-plans__tax {
  font-size: 12px;
  font-weight: 600;
  color: #1a6c6a;
}

.hall-plans__tilde {
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 700;
  margin-left: 2px;
}

/* ===== レスポンシブ ===== */
@media (min-width: 861px) and (max-width: 1120px) {
  .hall-plans__card {
    width: calc((100% - 18px * 1) / 2);
  }
}

@media (max-width: 860px) {
  .hall-plans__section {
    margin-top: 28px;
  }
  .hall-plans__title {
    font-size: 22px !important;
  }
  .hall-plans__cards {
    gap: 12px;
  }
  .hall-plans__card {
    width: 100%;
    border-radius: 10px;
    padding: 12px;
  }
  .hall-plans__price-strong {
    font-size: 26px;
  }
}

.hall__wrap {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.hall__copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 620px;
}

.hall__eyebrow {
  margin: 0;
  font-size: 18px;
  letter-spacing: .06em;
  color: #187678;
  font-family: "Merriweather", serif;
  font-weight: 500;
}

.hall__title {
  margin: 0;
  font-size: clamp(26px, 3vw, 32px);
  letter-spacing: .08em;
  color: #362E26;
  line-height: 1.6;
  font-weight: 500;
  font-family: "Zen Old Mincho", serif;
}

.hall__badges {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 35px 0 0 0;
  padding: 0;
  list-style: none;
}

.hall__badge {
  width: 124px;
  height: 124px;
  border-radius: 100%;
  background: #187678;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 2px 30px rgba(93, 60, 53, 0.1);
}

.hall__badge span {
  color: #ffffff;
  font-weight: 500;
  text-align: center;
  letter-spacing: .04em;
}

.hall__cta {
  margin-top: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 0;
  border-radius: 0px;
  text-decoration: none;
  color: #187678;
  background: transparent;
  border: 1px solid #187678;
  box-shadow: 0px 2px 30px rgba(93, 60, 53, 0.1);
  font-size: 18px;
  width: 400px;
  max-width: 100%;
  letter-spacing: 1px;
}

.hall__cta:hover {
  background-color: #fff;
}

.hall__cta i {
  width: 14px;
  height: 14px;
  position: relative;
}

.hall__cta i::before {
  content: "";
  position: absolute;
  inset: 0;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23000"><path d="M9 6l6 6-6 6"/></svg>') center/contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23000"><path d="M9 6l6 6-6 6"/></svg>') center/contain no-repeat;
  background: #187678;
  width: 35px;
  height: 35px;
  top: 0;
  bottom: 0;
  margin: auto;
}

/* 右ビジュアル(必要なら) */
.hall__visual {
  position: relative;
  margin: 0;
  max-width: 58%;
  width: 58%;
  min-height: 360px;
}

.hall__visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center right;
  filter: brightness(1.03);
  -webkit-mask-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.75) 16%, white 28%);
  mask-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.75) 16%, white 28%);
}

/* Hall: TAB */
@media (min-width: 861px) and (max-width: 1024px) {
  .hall__wrap {
    padding: 80px 20px;
    gap: 20px;
  }
  .hall__visual {
    max-width: 55%;
    width: 55%;
    min-height: 320px;
  }
  .hall__badges .hall__badge {
    width: 112px;
    height: 112px;
  }
  .hall__cta {
    height: 58px;
    padding: 0 24px;
  }
}

/* Hall: SP */
@media (max-width: 860px) {
  .hall {
    background-position: left;
    background-image: url("../img/bg-access-sp.webp");
  }
  .hall__eyebrow {
    font-size: 14px;
  }
  .hall__wrap {
    padding: 30px 0 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    width: 87%;
  }
  .hall__copy {
    max-width: none;
  }
  .hall__visual {
    order: -1;
    max-width: 100%;
    width: 100%;
    min-height: 260px;
  }
  .hall__visual img {
    -webkit-mask-image: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.75) 22%, white 42%);
    mask-image: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.75) 22%, white 42%);
    object-position: center;
  }
  .hall__badges {
    flex-wrap: wrap;
    gap: 12px 14px;
    justify-content: flex-start;
    margin-top: 20px;
  }
  .hall__badge {
    width: 130px;
    height: 130px;
  }
  .hall__cta {
    width: 100%;
    margin-top: 30px;
    margin-bottom: 50px;
  }
}

/* =========================================
   Offer
========================================= */
.offer {
  padding: 80px 0;
}

.offer__wrap {
  max-width: 900px;
  margin: 0 auto;
}

.offer__card {
  display: flex;
  align-items: center;
  gap: 35px;
  padding: 28px;
  background: #F6F5F4;
  border-radius: 12px;
}

.offer__thumb {
  margin: 0;
  max-width: 400px;
  width: 100%;
  border-radius: 14px;
}

.offer__thumb img {
  width: 100%;
  display: block;
  border-radius: 10px;
}

.offer__content {
  flex: 1 1 auto;
}

.offer__eyebrow {
  margin: 0 0 8px 0;
  font-size: 18px;
  color: #2b2b2b;
  letter-spacing: .06em;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
}

.offer__title {
  margin: 0 0 40px 0;
  font-size: clamp(22px, 2.4vw, 28px);
  letter-spacing: .06em;
  color: #2b2b2b;
  line-height: 1.7;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
}

.offer__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  text-decoration: none;
  color: #187678;
  font-weight: 400;
  width: 220px;
  justify-content: space-between;
  font-size: 18px;
}

.offer__link:hover i {
  transition: transform 0.3s ease-in-out;
  transform: translateX(5px);
}

.offer__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 32px;
  bottom: 0;
  height: 1px;
  background: #187678;
  width: 100%;
}

.offer__link i {
  width: 24px;
  height: 24px;
  position: relative;
}

.offer__link i::before {
  content: "";
  position: absolute;
  inset: 0;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23000"><path d="M9 6l6 6-6 6"/></svg>') center/contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23000"><path d="M9 6l6 6-6 6"/></svg>') center/contain no-repeat;
  background: #187678;
}

/* Offer: TAB */
@media (min-width: 861px) and (max-width: 1024px) {
  .offer__card {
    gap: 28px;
    padding: 24px;
  }
  .offer__thumb {
    width: 50%;
    padding: 12px;
  }
}

/* Offer: SP */
@media (max-width: 860px) {
  .offer {
    padding: 50px 0;
    width: 90%;
    margin: auto;
  }
  .offer__link {
    font-size: 15px;
  }
  .offer__card {
    flex-direction: column;
    gap: 10px;
    padding: 12px 12px 30px;
    border-radius: 14px;
  }
  .offer__thumb {
    width: 100%;
    max-width: 100%;
    padding: 10px;
  }
  .offer__title {
    margin-bottom: 16px;
    font-size: 23px;
    line-height: 1.6;
  }
  .offer__link {
    width: fit-content;
  }
  .offer__eyebrow {
    font-size: 16px;
  }
}

/* =========================================
   Contact
========================================= */
.contact {
  position: relative;
  background: #176e70;
  color: #ffffff;
}

.contact__wrap {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 130px 20px 150px 20px;
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.contact__watermark {
  position: absolute;
  left: 20px;
  top: 60px;
  font-size: 164px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.08);
  pointer-events: none;
  user-select: none;
  font-family: "Merriweather", serif;
  font-weight: 400;
  letter-spacing: 7px;
}

.contact__copy {
  flex: 0 1 340px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.contact__eyebrow {
  margin: 0;
  font-size: 18px;
  letter-spacing: .06em;
  color: #fff;
  font-family: "Merriweather", serif;
}

.contact__title {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 32px);
  letter-spacing: .08em;
  font-weight: 500;
  color: #ffffff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
  font-family: "Zen Old Mincho", serif;
}

.contact__note {
  margin: 43px 0 0 0;
  font-size: 18px;
  line-height: 2;
  color: #eaf6f6;
}

.contact__call {
  flex: 1 1 auto;
  align-self: flex-end;
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding: 15px 28px 15px 42px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  text-decoration: none;
  color: #ffffff;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.12);
  font-family: "Zen Old Mincho", serif;
}

@media (min-width: 1201px) {
  .contact__call {
    pointer-events: none;
  }
}

.contact__call:hover {
  opacity: .8;
}

.contact__call-icon {
  width: 28px;
  height: 28px;
  position: relative;
}

.contact__call-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23000"><path d="M6.62 10.79a15.053 15.053 0 006.59 6.59l2.2-2.2a1 1 0 011.01-.24 11.72 11.72 0 003.68.59 1 1 0 011 1V20a1 1 0 01-1 1C10.4 21 3 13.6 3 4a1 1 0 011-1h3.47a1 1 0 011 1c0 1.27.2 2.49.59 3.68a1 1 0 01-.24 1.01l-2.2 2.1z"/></svg>') center/contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23000"><path d="M6.62 10.79a15.053 15.053 0 006.59 6.59l2.2-2.2a1 1 0 011.01-.24 11.72 11.72 0 003.68.59 1 1 0 011 1V20a1 1 0 01-1 1C10.4 21 3 13.6 3 4a1 1 0 011-1h3.47a1 1 0 011 1c0 1.27.2 2.49.59 3.68a1 1 0 01-.24 1.01l-2.2 2.1z"/></svg>') center/contain no-repeat;
  background: #ffffff;
  width: 35px;
  height: 35px;
}

.contact__call-number {
  font-size: clamp(24px, 3.2vw, 48px);
  font-weight: 500;
  letter-spacing: 2px;
  white-space: nowrap;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.contact__call-pill {
  margin-left: 10px;
  padding: 9px 34px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  font-size: 18px;
  letter-spacing: .06em;
  white-space: nowrap;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

/* Contact: TAB */
@media (min-width: 861px) and (max-width: 1024px) {
  .contact__wrap {
    padding: 80px 20px 100px 20px;
    gap: 28px;
  }
  .contact__call {
    min-height: 88px;
    gap: 18px;
  }
  .contact__call-number {
    letter-spacing: .1em;
  }
}

/* Contact: SP */
@media (max-width: 860px) {
  .contact__eyebrow {
    font-size: 14px;
  }
  .contact__wrap {
    padding: 56px 0 100px 0;
    flex-direction: column;
    gap: 22px;
    width: 86%;
  }
  .contact__copy {
    flex: 1 1 auto;
    gap: 12px;
  }
  .contact__note {
    font-size: 16px;
    line-height: 1.9;
    margin-top: 10px;
  }
  .contact__call {
    width: 280px;
    justify-content: flex-start;
    padding: 15px 14px 15px 16px;
    margin: 0 auto 0 0;
    flex-flow: wrap;
    gap: 15px;
  }
  .contact__call-icon::before {
    width: 29px;
    height: 29px;
  }
  .contact__call-icon {
    width: 22px;
    height: 22px;
  }
  .contact__call-number {
    font-size: 24px;
    letter-spacing: .08em;
  }
  .contact__call-pill {
    padding: 8px 12px;
    font-size: 12px;
  }
  .contact__watermark {
    font-size: 76px;
    left: 12px;
    top: 36px;
  }
}

/* =========================================
   Footer
========================================= */
.site-footer {
  background: #ffffff;
  border-radius: 50px 50px 0 0;
  margin-top: -45px;
  z-index: 1;
  position: relative;
}

.site-footer__wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 0 36px 0;
  display: flex;
  align-items: flex-start;
  gap: 64px;
}

/* Footer Brand */
.footer-brand {
  flex: 0 0 420px;
}

.footer-brand__title img {
  width: 280px;
}

.footer-brand__addr {
  margin: 0 0 18px 0;
  font-style: normal;
  color: #362E26;
  line-height: 1.6;
}

.footer-brand__note {
  margin: 50px 0 0 0;
  color: #000;
  font-size: 14px;
}

.footer-brand__call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 23px;
  width: 330px;
  border-radius: 4px;
  background: #176e70;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: .04em;
  font-size: 23px;
  box-shadow: 0 2px 30px rgba(93, 60, 53, 0.1);
  padding: 15px 0;
  margin-top: 15px;
}

@media (min-width: 1201px) {
  .footer-brand__call {
    pointer-events: none;
  }
}

.footer-brand__call:hover {
  background: #126668;
}

.footer-brand__call i {
  position: relative;
}

.footer-brand__call i::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 24px;
  height: 25px;
  background-image: url("../img/tel-icon.webp");
  background-repeat: no-repeat;
  background-size: contain;
  top: -11px;
  left: -16px;
}

/* Footer Sitemap */
.footer-sitemap {
  display: flex;
  align-items: flex-start;
  gap: 29px 50px;
  flex-wrap: wrap;
  flex: 1 1 auto;
}

.footer-sitemap__col {
  min-width: 220px;
}

.footer-sitemap__head {
  margin: 0 0 16px 0;
  font-size: 18px;
  font-weight: 500;
  color: #2b2b2b;
  position: relative;
  padding-left: 14px;
}

.footer-sitemap__head span {
  position: relative;
}

.footer-sitemap__head::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 4px;
  height: 20px;
  border-radius: 2px;
  background: #187678;
}

.footer-sitemap__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-sitemap__list li {
  margin: 0 0 12px 0;
  font-size: 16px;
  color: #362E26;
}

.footer-sitemap__list a {
  color: #333333;
  text-decoration: none;
  padding-left: 15px;
}

.footer-sitemap__list a:hover {
  text-decoration: underline;
}

/* Footer copy */
.site-footer__copy {
  text-align: center;
  padding: 10px 0;
  color: #fff;
  font-size: 14px;
  background: #187678;
}

/* Footer: TAB */
@media (min-width: 861px) and (max-width: 1024px) {
  .site-footer__wrap {
    gap: 40px;
  }
  .footer-sitemap {
    gap: 40px;
  }
  .footer-brand__call {
    width: 300px;
    height: 60px;
  }
}

/* Footer: SP */
@media (max-width: 860px) {
  .footer-brand__note {
    margin: 35px 0 0 0;
  }
  .site-footer {
    border-top-left-radius: 22px;
    border-top-right-radius: 22px;
  }
  .footer-brand__title img {
    width: 200px;
  }
  .site-footer__wrap {
    padding: 40px 0;
    width: 86%;
    flex-direction: column;
    gap: 40px;
  }
  .footer-brand {
    flex: 1 1 auto;
  }
  .footer-brand__call {
    width: 100%;
    max-width: 420px;
  }
  .footer-sitemap {
    flex-wrap: wrap;
    gap: 22px 28px;
  }
  .footer-sitemap__list li {
    font-size: 14.5px;
    margin: 0 0 9px 0;
  }
  .footer-sitemap__col {
    min-width: 47%;
  }
}

/* =========================================
   Header small tweaks (再掲)
========================================= */
@media (min-width: 861px) and (max-width: 1024px) {
  .global-nav__item {
    font-size: 16px;
  }
  .phone__cta {
    padding: 12px 16px;
  }
}

/*下層ページ introduction.html*/
/* ===== Page Header ===== */
.page-header {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.page-header__breadcrumb {
  max-width: 1100px;
  margin: 0 auto;
  padding: 25px 20px 0 20px;
  font-size: 14px;
  color: #176e70;
  display: flex;
  gap: 6px;
}

.page-header__breadcrumb-link {
  color: #999999;
  text-decoration: none;
}

.page-header__breadcrumb-link:hover {
  text-decoration: underline;
}

.page-header__breadcrumb-sep {
  color: #cccccc;
}

.page-header__breadcrumb-current {
  color: #176e70;
}

.page-header__heading {
  max-width: 1100px;
  margin: 0 auto;
  padding: 74px 20px 40px 20px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  color: #362E26;
}

.page-header__eyebrow {
  margin: 0 0 6px 0;
  font-size: 16px;
  color: #176e70;
  letter-spacing: .06em;
  font-family: "Merriweather", serif;
}

.page-header__title {
  margin: 0;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.6;
  color: #362E26;
  font-weight: 500;
}

.page-header__visual {
  margin: 0;
  width: 100%;
  height: 380px;
  overflow: hidden;
}

.page-header__visual-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

@media (min-width: 861px) and (max-width: 1024px) {
  .page-header__visual {
    height: 300px;
  }
  .page-header {
    padding-top: 90px;
  }
}

@media (max-width: 860px) {
  .page-header {
    padding-top: 90px;
  }
  .page-header__heading {
    padding: 50px 16px 28px 16px;
  }
  .page-header__eyebrow {
    font-size: 14px;
  }
  .page-header__title {
    font-size: 24px;
  }
  .page-header__visual {
    height: 240px;
  }
}

/* ===== Concept ===== */
.concept {
  position: relative;
  background: #ffffff;
  overflow: hidden;
  padding: 150px 0 0 0;
  border-radius: 100px;
  margin-top: -89px;
  filter: drop-shadow(0px 2px 30px rgba(93, 60, 53, 0.1));
}

.concept:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 720px;
  height: 220px;
  z-index: 11;
  background-image: url("../img/bg-concept-before.webp");
  background-repeat: no-repeat;
  background-size: cover;
  border-top-left-radius: 48px;
}

.concept:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 720px;
  height: 220px;
  z-index: 11;
  background-image: url("../img/bg-concept-after.webp");
  background-repeat: no-repeat;
  background-size: cover;
  border-top-left-radius: 48px;
}

.concept .concept__wrap {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 20px 150px 20px;
}

.concept .concept__heading {
  position: relative;
  margin-bottom: 24px;
}

.concept .concept__eyebrow {
  position: absolute;
  left: 0;
  top: -96px;
  margin: 0;
  font-size: clamp(80px, 22vw, 154px);
  line-height: 1;
  color: rgba(23, 110, 112, 0.08);
  letter-spacing: 12px;
  pointer-events: none;
  user-select: none;
  font-family: "Merriweather", serif;
  font-weight: 300;
}

.concept .concept__title {
  margin: 0 0 20px 0;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.8;
  letter-spacing: .08em;
  color: #362E26;
  text-align: left;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  text-align: left;
}

.concept .concept__body {
  display: flex;
  align-items: flex-start;
  gap: 90px;
}

.concept .concept__media {
  position: relative;
  flex: 0 0 420px;
}

.concept .concept__photo {
  max-width: 100%;
  width: 100%;
  margin: 0;
}

.concept .concept__photo-img {
  width: 100%;
  display: block;
  border-radius: 18px;
}

.concept .concept__photo--main {
  border-radius: 22px;
  margin-top: 75px;
}

.concept .concept__content {
  flex: 1 1 auto;
  color: #362E26;
  line-height: 41px;
  padding-top: 100px;
  font-size: 16px;
  font-weight: 400;
}

.concept .concept__content p {
  margin: 0 0 16px 0;
}

@media (min-width: 861px) and (max-width: 1024px) {
  .concept .concept__wrap {
    padding: 64px 20px 84px 20px;
  }
  .concept .concept__body {
    gap: 36px;
  }
  .concept .concept__media {
    flex: 0 0 360px;
  }
}

@media (max-width: 860px) {
  .concept {
    padding: 50px 0 0;
    border-radius: 30px;
  }
  .concept:before {
    width: 205px;
    height: 153px;
    border-top-left-radius: 30px;
    background-position: right;
  }
  .concept:after {
    width: 205px;
    height: 153px;
    border-top-left-radius: 30px;
    background-position: right;
  }
  .concept .concept__wrap {
    padding: 30px 16px 64px 16px;
  }
  .concept .concept__eyebrow {
    font-size: 71px;
    top: -34px;
    letter-spacing: 4px;
  }
  .concept .concept__title {
    font-size: 24px;
    line-height: 1.7;
  }
  .concept .concept__body {
    flex-direction: column;
    gap: 18px;
  }
  .concept .concept__content {
    line-height: 2;
    padding-top: 0;
    font-size: 15px;
  }
  .concept .concept__photo--main {
    margin-top: 40px;
  }
}

/* ===== Intro ===== */
.intro {
  background: #faf6ef;
  padding: 180px 20px 180px;
  margin-top: -90px;
}

.intro__wrap {
  max-width: 1100px;
  margin: 0 auto;
}

.intro__head {
  margin: 0 0 24px 0;
}

.intro__eyebrow {
  margin: 0 0 6px 0;
  font-size: 18px;
  letter-spacing: .08em;
  color: #187678;
  text-align: center;
  font-family: "Merriweather", serif;
}

.intro__title {
  margin: 0 0 12px 0;
  font-size: clamp(22px, 2.4vw, 32px);
  letter-spacing: .08em;
  color: #362E26;
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
}

.intro__lead {
  margin: 0;
  color: #000000;
  line-height: 2;
  text-align: center;
  margin-top: 35px;
  margin-bottom: 54px;
}

.intro-row {
  display: flex;
  align-items: center;
  gap: 45px;
  margin: 45px 0 0 0;
}

.intro-row__media {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  width: 50%;
}

.intro-row__img {
  width: 100%;
  display: block;
}

.intro-row__content {
  flex: 1 1 auto;
  width: 50%;
}

.intro-row__title {
  margin: 2px 0 10px 0;
  font-size: 32px;
  color: #362E26;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
}

.intro-row__text {
  margin: 0;
  color: #362E26;
  line-height: 2;
  margin-top: 28px;
}

.intro-features {
  display: flex;
  align-items: stretch;
  gap: 35px;
  margin: 45px 0 0 0;
}

.intro-feature {
  flex: 1 1 50%;
  background: #ffffff;
  border-radius: 12px;
  padding: 50px 38px 50px 136px;
  box-shadow: 0px 2px 30px rgba(93, 60, 53, 0.1);
  position: relative;
}

.intro-feature::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 90px;
  height: 90px;
  background-image: url("../img/drink-icon.webp");
  background-repeat: no-repeat;
  background-size: contain;
}

.intro-feature2::before {
  background-image: url("../img/intro-before2.png");
}

.intro-feature__title {
  margin: 0 0 8px 0;
  font-size: 24px;
  font-weight: 400;
  color: #362E26;
}

.intro-feature__text {
  margin: 14px 0 0;
  color: #362E26;
  font-size: 16px;
  line-height: 1.8;
}

@media (min-width: 861px) and (max-width: 1024px) {
  .intro__wrap {
    max-width: 960px;
  }
  .intro-row__media {
    width: 54%;
  }
}

@media (max-width: 860px) {
  .intro {
    padding: 160px 0 100px;
  }
  .intro__eyebrow {
    font-size: 14px;
  }
  .intro-feature::before {
    width: 50px;
    height: 50px;
  }
  .intro-feature {
    padding: 25px 25px 25px 100px;
  }
  .intro__wrap {
    width: 90%;
    margin: auto;
  }
  .intro__lead {
    font-size: 15px;
  }
  .intro-row {
    flex-direction: column;
    gap: 12px;
    margin-top: 30px;
    padding: 0;
  }
  .intro-row__media {
    width: 100%;
    border-radius: 10px;
  }
  .intro-row__title {
    font-size: 20px;
  }
  .intro-row__text {
    font-size: 15px;
    margin-top: 10px;
  }
  .intro-row__content {
    width: 100%;
  }
  .intro-features {
    flex-direction: column;
    gap: 12px;
    margin-top: 29px;
  }
  .intro-feature__title {
    font-size: 20px;
  }
  .intro-feature__text {
    font-size: 15px;
  }
}

/* ===== Access ===== */
.access {
  background: #ffffff;
  padding: 30px 20px;
  position: relative;
}

.access:before {
  content: "";
  position: absolute;
  top: -64px;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 75px;
  background: #fff;
  border-top-left-radius: 50% 100%;
  border-top-right-radius: 50% 100%;
  pointer-events: none;
}

.access__wrap {
  max-width: 1120px;
  margin: 0 auto;
}

.access__head {
  text-align: center;
  margin-bottom: 40px;
}

.access__eyebrow {
  margin: 0 0 6px 0;
  font-size: 18px;
  color: #187678;
  letter-spacing: .06em;
  font-family: "Merriweather", serif;
}

.access__title {
  margin: 0;
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: .08em;
  color: #362E26;
  font-family: "Zen Old Mincho", serif;
}

.access__info {
  display: flex;
  gap: 32px;
  margin-bottom: 48px;
}

.access__map {
  flex: 0 0 50%;
  overflow: hidden;
  border-radius: 12px;
}

.access__map-iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 12px;
}

.access__details {
  flex: 1 1 auto;
  font-size: 15px;
  color: #333333;
  border-bottom: 1px solid #408081;
}

.access__row {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #408081;
  padding-bottom: 28px;
  padding-top: 28px;
  margin: 0;
}

.access__dt {
  font-weight: 500;
  color: #362E26;
  font-size: 16px;
  width: 70px;
  margin: 0;
}

.access__dd {
  color: #362E26;
  font-size: 16px;
  margin: 0;
  pointer-events: none;
}

.access__tel {
  color: #362E26;
  text-decoration: none;
}

.access__train {
  display: block;
  border-bottom: 0;
  padding: 28px 0 0 0;
}

.access__bycar {
  margin-top: 20px;
  margin-bottom: 20px;
}

.access__sub {
  font-size: 16px;
  margin: 0 0 6px 0;
  font-weight: 500;
  color: #187678;
}

.access__text {
  margin: 0;
  line-height: 1.8;
  color: #555555;
}

.access__list {
  margin: 0;
  padding-left: 20px;
  list-style: disc;
  line-height: 1.8;
  color: #555555;
}

.access__item {
  margin: 0;
}

.access__diagram {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 30px rgba(93, 60, 53, 0.1);
}

.access__diagram-img {
  display: block;
  width: 100%;
  height: auto;
}

@media (min-width: 861px) and (max-width: 1024px) {
  .access__info {
    gap: 20px;
  }
  .access__map {
    flex: 0 0 50%;
  }
}

@media (max-width: 860px) {
  .access {
    padding: 30px 0;
  }
  .access:before {
    top: -35px !important;
    height: 45px !important;
  }
  .access__dt {
    width: 100px;
  }
  .access__row {
    padding: 15px 0;
  }
  .access__info {
    flex-direction: column;
    gap: 20px;
    width: 90%;
    margin: auto;
  }
  .access__map {
    flex: 0 0 auto;
    height: 300px;
  }
}

/* ===== Member ===== */
.member {
  position: relative;
  padding: 210px 20px 100px 20px;
  background: #F6F5F4;
}

.member::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 820px;
  background-image: url("../img/bg-member.webp");
  background-repeat: no-repeat;
  background-size: cover;
}

.member::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100px;
  background-image: url("../img/bg-member-circle.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.member__wrap {
  position: relative;
  max-width: 1270px;
  margin: 0 auto;
}

.member__bg {
  position: absolute;
  inset: 0;
  margin: 0;
  pointer-events: none;
  user-select: none;
  overflow: hidden;
  border-top-left-radius: 42px;
  border-top-right-radius: 42px;
}

.member__bg-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: blur(0.4px) brightness(1.02);
  opacity: 0.65;
}

.member__panel {
  position: relative;
  z-index: 1;
  background: #3A6183;
  border-radius: 24px;
  padding: 100px 85px;
  box-shadow: 0px 2px 30px rgba(93, 60, 53, 0.1);
  color: #ffffff;
}

.member__head {
  text-align: center;
  margin: 0 0 26px 0;
}

.member__eyebrow {
  margin: 0 0 8px 0;
  font-size: 18px;
  letter-spacing: .08em;
  color: #ffffff;
  font-family: "Merriweather", serif;
  font-weight: 400;
}

.member__title {
  margin: 0 0 10px 0;
  font-size: clamp(22px, 2.6vw, 32px);
  letter-spacing: .08em;
  line-height: 1.8;
  color: #ffffff;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
}

.member__lead {
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  line-height: 1.9;
  margin: 40px 0 35px 0;
}

.member__cards {
  display: flex;
  align-items: stretch;
  gap: 18px;
  margin: 24px 0 18px 0;
}

.member-card {
  flex: 1 1 0;
  background: #ffffff;
  border-radius: 12px;
  padding: 40px 24px;
  color: #2b2b2b;
  box-shadow: 0px 2px 30px rgba(93, 60, 53, 0.1);
}

.member-card__figure {
  margin: 0;
  text-align: center;
}

.member-card__img {
  width: 100px;
}

.member-card__title {
  margin: 20px 0 8px 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.7;
  color: #2b2b2b;
  text-align: center;
}

.member-card__text {
  margin: 0;
  color: #362E26;
  line-height: 1.9;
  text-align: left;
  font-size: 16px;
  margin-top: 30px;
}

.member-card__text span {
  display: inline-block;
  font-size: 17px;
  margin-top: 10px;
}

.member-card__tags {
  margin: 30px 0 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.member-card__tag {
  display: flex;
  align-items: center;
  gap: 10px;
}

.member-card__tag-label {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 2px;
  background: #187678;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  white-space: nowrap;
}

.member-card__tag-em {
  font-style: normal;
  color: #362E26;
  font-weight: 400;
}

.member__note {
  margin: 52px 0 29px 0;
  text-align: center;
  color: #ffffff;
  font-size: 17px;
  line-height: 1.9;
  font-weight: 400;
}

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

.member-contact__eyebrow {
  margin: 0;
  color: #ffffff;
  font-size: 18px;
  letter-spacing: .08em;
  font-family: "Merriweather", serif;
  font-weight: 400;
}

.member-contact__title {
  margin: 6px 0 16px 0;
  font-size: 32px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  color: #ffffff;
}

.member-contact__row {
  display: flex;
  justify-content: center;
  gap: 26px;
  margin-top: 25px;
}

.member-pill {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 28px 18px;
  border: 1px solid #ffffff;
  border-radius: 10px;
  text-decoration: none;
  color: #ffffff;
  background: transparent;
  width: 430px;
  max-width: 100%;
}

@media (min-width: 1201px) {
  .member-pill {
    pointer-events: none;
  }
}

.member-pill-fax {
  pointer-events: none;
}

.member-pill:hover {
  opacity: .7;
}

.member-pill__label {
  padding: 6px 10px;
  font-weight: 400;
  font-size: 22px;
  font-family: "Zen Old Mincho", serif;
  letter-spacing: .06em;
}

.member-pill__icon {
  width: 24px;
  height: 25px;
  position: relative;
}

.member-pill__icon::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 24px;
  height: 25px;
  background-image: url("../img/tel-icon.webp");
  background-repeat: no-repeat;
  background-size: contain;
  top: 3px;
}

.member-pill__icon--fax::before {
  background-image: url("../img/fax-icon.webp");
  background-repeat: no-repeat;
  background-size: contain;
}

.member-pill__text {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  letter-spacing: .06em;
  font-size: 34px;
}

@media (min-width: 861px) and (max-width: 1024px) {
  .member__panel {
    padding: 36px 24px 30px 24px;
  }
  .member__cards {
    gap: 14px;
  }
}

@media (max-width: 860px) {
  .member {
    padding: 45px 0 45px 0;
  }
  .member:after {
    display: none;
  }
  .member__eyebrow {
    font-size: 14px;
  }
  .member__wrap {
    width: 90%;
    margin: 0 auto;
  }
  .member__lead {
    font-size: 15px;
    margin: 25px 0;
  }
  .member__panel {
    padding: 35px 20px 20px 20px;
    border-radius: 18px;
  }
  .member__cards {
    flex-direction: column;
    gap: 22px;
    margin: 18px 0 10px 0;
  }
  .member-contact {
    margin-top: 45px;
  }
  .member-card {
    padding: 14px;
  }
  .member-contact__row {
    flex-direction: column;
    gap: 10px;
  }
  .member-contact__eyebrow {
    font-size: 14px;
  }
  .member-contact__title {
    font-size: 24px;
  }
  .member-pill {
    width: 290px;
    justify-content: flex-start;
    padding: 10px 0px 10px 8px;
    gap: 10px;
  }
  .member-pill__label {
    font-size: 17px;
  }
  .member-pill__icon {
    width: 18px;
    height: 19px;
  }
  .member-pill__icon::before {
    width: 18px;
    height: 19px;
  }
  .member-pill__text {
    font-size: 20px;
  }
  .member-card__title {
    font-size: 17px;
    font-weight: 500;
  }
  .member-card__text {
    font-size: 15px;
    text-align: center;
    margin-top: 15px;
  }
  .member-card__text span {
    font-size: 15px;
  }
  .member-card__tags {
    margin-top: 20px;
  }
  .member__note {
    margin: 41px 0 9px 0;
    font-size: 15px;
  }
}

/* =======================================
   plan-home
======================================= */
.plan-home {
  background: #F9F7F1;
  padding: 0 20px 72px 20px;
}

.plan-home__breadcrumb {
  max-width: 1100px;
  margin: 0 auto 30px auto;
  padding: 25px 20px 0 20px;
  font-size: 14px;
  color: #C97C2E;
  display: flex;
  gap: 6px;
}

.plan-home__breadcrumb-link {
  color: #999;
  text-decoration: none;
}

.plan-home__breadcrumb-link:hover {
  text-decoration: underline;
}

.plan-home__breadcrumb-sep {
  color: #cccccc;
}

.plan-home__wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 40px;
}

.plan-home__visual {
  max-width: 49%;
  width: 49%;
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0px 2px 30px rgba(93, 60, 53, 0.1);
}

.plan-home__visual-img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.plan-home__content {
  flex: 1 1 auto;
}

.plan-home__title {
  margin: 0 0 18px 0;
  display: inline-block;
  padding: 14px 22px;
  border-radius: 12px;
  background: #C97C2E;
  color: #ffffff;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  letter-spacing: .06em;
  width: 90%;
  text-align: center;
  font-family: "Zen Old Mincho", serif;
}

.plan-home__desc {
  margin: 0 0 24px 0;
  color: #333333;
  line-height: 2;
}

.plan-home__desc p {
  margin: 0;
  font-size: 18px;
  margin-top: 11px;
}

.plan-home__price {
  margin: 50px 0 0 0;
  padding: 28px 38px;
  background: #F6EEE0;
  border-radius: 12px;
  width: 90%;
}

.plan-home__price-label {
  margin: 0;
  color: #C97C2E;
  font-weight: 700;
  letter-spacing: .04em;
}

.plan-home__price-value {
  margin: 0 0 10px 0;
  color: #C97C2E;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.plan-home__price-value strong {
  font-size: clamp(36px, 4.5vw, 44px);
  font-weight: 600;
  letter-spacing: 0;
}

.plan-home__price-yen {
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 700;
}

.plan-home__price-tax {
  font-size: 14px;
  font-weight: 700;
}

.plan-home__price-tilde {
  font-style: normal;
  font-weight: 700;
  font-size: clamp(18px, 2vw, 24px);
}

.plan-home__price-notes {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #362E26;
  line-height: 1.9;
}

.plan-home__price-note {
  margin: 0;
}

/* plan-home: TAB */
@media (min-width: 861px) and (max-width: 1024px) {
  .plan-home__wrap {
    gap: 24px;
  }
  .plan-home__visual {
    max-width: 50%;
    width: 50%;
  }
}

/* plan-home: SP */
@media (max-width: 860px) {
  .plan-home__breadcrumb {
    padding: 0;
    width: 90%;
  }
  .plan-home {
    padding: 110px 0 40px;
  }
  .plan-home__wrap {
    flex-direction: column;
    gap: 18px;
    width: 90%;
    margin: auto;
  }
  .plan-home__visual {
    max-width: 100%;
    width: 100%;
  }
  .plan-home__title {
    width: 280px;
    text-align: center;
  }
  .plan-home__price {
    width: 78%;
    margin-top: 35px;
  }
  .plan-home__price-note {
    font-size: 14px;
  }
  .plan-home__desc p {
    font-size: 16px;
  }
  .plan-home__content {
    width: 100%;
  }
}

/* =======================================
   plan-included
======================================= */
.plan-included {
  background: #ffffff;
  padding: 80px 20px 140px 20px;
}

.plan-included__wrap {
  max-width: 1120px;
  margin: 0 auto;
}

.plan-included__title {
  margin: 0 0 24px 0;
  font-size: clamp(22px, 2.6vw, 32px);
  text-align: center;
  letter-spacing: .08em;
  color: #362E26;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  letter-spacing: 1px;
}

.plan-included__items {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  justify-content: flex-start;
  margin-top: 50px;
}

.plan-included__items::after {
  content: "";
  min-width: 350px;
}

.plan-included__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: calc((100% - 64px * 5) / 6);
  min-width: 130px;
  padding: 10px 16px 15px 16px;
  background: #ffffff;
  border: 1px solid #e7e1dc;
  border-radius: 8px;
  box-shadow: 0px 2px 30px rgba(93, 60, 53, 0.06);
}

.plan-included__figure {
  max-width: 100%;
  width: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 96px;
}

.plan-included__img {
  width: 64px;
  object-fit: contain;
  height: 67px;
  max-width: 100%;
  display: block;
}

.plan-included__label {
  margin: 0;
  text-align: center;
  color: #362E26;
  line-height: 1.6;
  font-weight: 500;
  font-size: 16px;
}

.plan-included__label small {
  display: inline-block;
  margin-top: 2px;
  font-weight: 400;
  color: #666666;
  font-size: 12px;
  line-height: 1.4;
}

.plan-included__note {
  margin: 40px 0 0 0;
  text-align: center;
  color: #362E26;
  line-height: 1.9;
}

/* plan-included: TAB */
@media (min-width: 861px) and (max-width: 1024px) {
  .plan-included__items {
    gap: 16px;
  }
  .plan-included__item {
    width: calc((100% - 16px * 4) / 5);
    padding: 24px 14px 20px 14px;
  }
  .plan-included__figure {
    height: 90px;
  }
  .plan-included__img {
    width: 66px;
  }
}

/* plan-included: SP */
@media (max-width: 860px) {
  .plan-included {
    padding: 10px 0 30px;
    margin-bottom: 50px;
    margin-top: 30px;
  }
  .plan-included__items {
    gap: 12px;
    justify-content: stretch;
    margin-top: 25px;
    width: 90%;
    margin: auto;
  }
  .plan-included__item {
    width: 38%;
    min-width: 0;
  }
  .plan-included__figure {
    height: 72px;
  }
  .plan-included__img {
    width: 56px;
  }
  .plan-included__label {
    font-size: 14px;
  }
  .plan-included__note {
    margin-top: 15px;
    font-size: 14px;
  }
}

/* =======================================
   home-features
======================================= */
.home-features {
  position: relative;
  background: #F9F7F1;
  padding: 30px 20px;
  margin-bottom: 65px;
}

.home-features::before {
  content: "";
  position: absolute;
  top: -64px;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 75px;
  background: #F9F7F1;
  border-top-left-radius: 50% 100%;
  border-top-right-radius: 50% 100%;
  pointer-events: none;
}

.home-features::after {
  content: "";
  position: absolute;
  bottom: -64px;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 75px;
  background: #F9F7F1;
  border-top-left-radius: 50% 100%;
  border-top-right-radius: 50% 100%;
  pointer-events: none;
  transform: rotate(180deg);
}

.home-features__wrap {
  max-width: 1100px;
  margin: 0 auto;
}

.home-features__head {
  text-align: center;
}

.home-features__eyebrow {
  margin: 0 0 6px 0;
  font-size: 14px;
  color: #b9986b;
  letter-spacing: .08em;
}

.home-features__figure {
  margin-top: 40px;
}

.home-features__figure-img {
  width: 100%;
}

.home-features__title {
  margin: 0 0 16px 0;
  font-size: clamp(22px, 2.6vw, 32px);
  letter-spacing: .08em;
  color: #362E26;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
}

.home-features__chips {
  margin: 8px 0 28px 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 0;
  justify-content: center;
}

.home-features__chip {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: rgba(251, 242, 215, 0.63);
  font-size: 20px;
  margin: 0 -10px;
}

.home-features__chip-text {
  text-align: center;
  color: #6b5432;
  line-height: 1.6;
  font-weight: 700;
}

.home-features__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 0 22px;
  counter-reset: num;
  margin: 0 0 24px 0;
  padding: 0;
  list-style: none;
}

.home-features__card {
  position: relative;
  flex: 1 1 calc((100% - 22px * 2) / 3);
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.home-features__card--pad-left {
  padding-left: 150px;
}

.home-features__card--pad-right {
  padding-right: 150px;
}

.home-features__num {
  margin: 0;
  font-size: 50px;
  font-weight: 300;
  letter-spacing: .06em;
  color: #c6a26e;
  font-family: "Merriweather", serif;
  position: relative;
  top: 34px;
}

.home-features__media {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 30px rgba(93, 60, 53, 0.1);
}

.home-features__media-img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.home-features__card-title {
  margin: 10px 0 6px 0;
  font-size: 23px;
  color: #362E26;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
}

.home-features__text {
  margin: 0;
  color: #666666;
  line-height: 1.9;
}

.home-features__cta {
  margin-top: 70px;
  display: flex;
  gap: 30px;
  align-items: center;
  background: #ffffff;
  border-radius: 0;
  box-shadow: 0 2px 30px rgba(93, 60, 53, 0.1);
  padding: 0;
}

.home-features__cta-media {
  margin: 0;
  width: 40%;
  overflow: hidden;
}

.home-features__cta-media-img {
  width: 100%;
}

.home-features__cta-body {
  flex: 1 1 auto;
}

.home-features__lead {
  margin: 0 0 12px 0;
  color: #362E26;
  line-height: 1.9;
  font-size: 18px;
}

.home-features__tel {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 10px 10px 18px;
  border-radius: 10px;
  color: #146a6c;
  text-decoration: none;
  border: 1px solid #146a6c;
  background: transparent;
  margin-top: 10px;
  font-size: 30px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
}

.home-features__icon {
  width: 18px;
  height: 18px;
  position: relative;
}

.home-features__icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/tel-green.webp");
  background-repeat: no-repeat;
  background-size: contain;
  width: 24px;
  height: 23px;
}

.home-features__number {
  font-weight: 700;
  letter-spacing: .06em;
}

.home-features__pill {
  margin-left: 6px;
  padding: 6px 10px;
  border-radius: 6px;
  background: #ffffff;
  border: 1px solid #146a6c;
  color: #146a6c;
  font-size: 12px;
  white-space: nowrap;
}

@media (min-width: 1201px) {
  .home-features__tel {
    pointer-events: none;
  }
}

/* home-features: TAB */
@media (min-width: 861px) and (max-width: 1024px) {
  .home-features__chip {
    width: 128px;
    height: 128px;
  }
}

/* home-features: SP */
@media (max-width: 860px) {
  .home-features::before {
    height: 45px !important;
    top: -30px !important;
  }
  .home-features::after {
    height: 45px !important;
    bottom: -30px !important;
  }
  .home-features__card-title {
    font-size: 20px;
  }
  .home-features__chips {
    gap: 12px;
    flex-wrap: wrap;
  }
  .home-features__chip {
    width: 120px;
    height: 120px;
  }
  .home-features__cards {
    gap: 16px;
  }
  .home-features__card {
    flex: 100%;
    min-width: 0;
  }
  .home-features__card--pad-left {
    padding-left: 0;
  }
  .home-features__card--pad-right {
    padding-right: 0;
  }
  .home-features__figure {
    margin: 40px 0 0;
  }
  .home-features__cta {
    flex-direction: column;
    align-items: stretch;
    padding: 15px 15px 20px;
    margin-top: 30px;
  }
  .home-features__cta-media {
    width: 100%;
  }
  .home-features__tel {
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 90%;
    gap: 10px 18px;
  }
  .home-features__lead {
    font-size: 15px;
  }
}

/* =======================================
   flow
======================================= */
.flow {
  padding: 80px 20px;
}

.flow__head {
  text-align: center;
}

.flow__eyebrow {
  margin: 0 0 6px 0;
  color: #b9986b;
  letter-spacing: .08em;
  font-size: 18px;
  font-family: "Merriweather", serif;
}

.flow__figure {
  margin: 40px auto;
  width: 768px;
  max-width: 100%;
}

.flow__figure-img {
  width: 100%;
}

.flow__title {
  margin: 0 0 16px 0;
  font-size: clamp(22px, 2.6vw, 32px);
  letter-spacing: .08em;
  color: #362E26;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
}

@media (max-width: 860px) {
  .flow {
    padding: 30px 0;
    width: 90%;
    margin: auto;
  }
  .flow__eyebrow {
    font-size: 14px;
  }
  .flow__figure {
    margin: 40px auto;
    max-width: 100%;
    width: 100vw;
    overflow-x: auto;
  }
  .flow__figure-img {
    width: 600px;
  }
}

/* ========= Hall Plans ========= */
.hall-plans {
  background: #eef3f1;
  padding: 28px 20px 70px 20px;
}

.hall-plans__wrap {
  max-width: 1100px;
  margin: 0 auto;
}

.hall-plans__breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: #2b7c77;
  margin: 0 0 12px 0;
}

.hall-plans__breadcrumb-link {
  color: #7a8a86;
  text-decoration: none;
}

.hall-plans__breadcrumb-link:hover {
  text-decoration: underline;
}

.hall-plans__breadcrumb-sep {
  color: #b4c3be;
}

.hall-plans__breadcrumb-current {
  color: #2b7c77;
}

.hall-plans__head {
  text-align: center;
  margin: 0 0 24px 0;
}

.hall-plans__badge {
  display: inline-block;
  margin: 50px 0 14px 0;
  padding: 15px 51px;
  border-radius: 12px;
  background: #1e7b79;
  color: #fff;
  font-size: clamp(18px, 2.2vw, 32px);
  letter-spacing: .08em;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.06);
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
}

.hall-plans__lead {
  margin-top: 25px;
  color: #2b2b2b;
  line-height: 1.9;
  font-size: 18px;
}

.hall-plans__plan {
  display: flex;
  align-items: center;
  gap: 45px;
  padding: 45px 0;
  border-top: 0;
}

.hall-plans__media {
  flex: 0 0 43%;
}

.hall-plans__visual {
  max-width: 100%;
  width: 100%;
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.hall-plans__visual-img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.hall-plans__caption {
  padding: 6px 10px;
  font-size: 12px;
  color: #6b6b6b;
}

.hall-plans__thumbs {
  margin: 10px 0 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 10px;
  justify-content: center;
}

.hall-plans__thumb {
  width: 80px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.08);
}

.hall-plans__thumb-img {
  width: 100%;
  display: block;
}

.hall-plans__content {
  flex: 1 1 57%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hall-plans__title {
  margin: 8px 0 0 0;
  font-size: clamp(18px, 2.3vw, 32px);
  color: #187678;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
}

.hall-plans__title-note {
  font-size: 18px;
  color: #187678;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
}

.hall-plans__pricebox {
  padding: 30px 40px;
  background: #DCEDEC;
  border-radius: 12px;
  margin-top: 10px;
}

.hall-plans__pricebox-label {
  margin: 0 0 4px 0;
  color: #1e7b79;
  font-weight: 700;
  letter-spacing: .04em;
}

.hall-plans__pricebox-price {
  margin: 0 0 8px 0;
  color: #1a6c6a;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.hall-plans__pricebox-price strong {
  font-size: clamp(34px, 4.4vw, 44px);
  font-weight: 600;
}

.hall-plans__pricebox-yen {
  font-size: clamp(18px, 2vw, 21px);
  font-weight: 600;
  margin-left: -2px;
}

.hall-plans__pricebox-tax {
  font-size: 13px;
  font-weight: 700;
}

.hall-plans__pricebox-tilde {
  font-style: normal;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
}

.hall-plans__pricebox-note {
  margin: 0;
  font-size: 16px;
  color: #362E26;
  line-height: 1.8;
}

/* Tablet */
@media (min-width: 861px) and (max-width: 1024px) {
  .hall-plans__plan {
    gap: 24px;
  }
  .hall-plans__media {
    flex: 0 0 50%;
  }
  .hall-plans__pricebox {
    max-width: 420px;
  }
}

/* SP */
@media (max-width: 860px) {
  .hall-plans {
    padding: 110px 16px 35px 16px;
  }
  .hall-plans__lead {
    text-align: left;
    font-size: 15px;
  }
  .hall-plans__badge {
    margin-top: 30px;
  }
  .hall-plans__plan {
    flex-direction: column;
    gap: 14px;
    padding: 22px 0;
  }
  .hall-plans__thumb {
    width: 72px;
  }
  .hall-plans__pricebox {
    max-width: 100%;
    padding: 17px 23px;
  }
  .hall-plans__pricebox-note {
    font-size: 12px;
  }
  .hall-plans__title {
    margin-top: 18px;
  }
  .hall-plans__content {
    gap: 11px;
  }
}

/* ========= Included (Family) ========= */
.included-family {
  background: #ffffff;
  padding: 80px 20px 150px 20px;
}

.included-family__wrap {
  max-width: 1120px;
  margin: 0 auto;
}

.included-family__title {
  margin: 0 0 24px 0;
  font-size: clamp(22px, 2.6vw, 32px);
  text-align: center;
  letter-spacing: .08em;
  color: #362E26;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
}

.included-family__title-sub {
  font-size: 24px;
  color: #362E26;
}

.included-family__items {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  justify-content: center;
  margin-top: 50px;
}

.included-family__items::after {
  content: "";
  width: 910px;
}

.included-family__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: calc((100% - 64px * 5) / 6);
  min-width: 130px;
  padding: 10px 16px 20px 16px;
  background: #ffffff;
  border: 1px solid #e7e1dc;
  border-radius: 8px;
  box-shadow: 0px 2px 30px rgba(93, 60, 53, 0.06);
}

.included-family__figure {
  max-width: 100%;
  width: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 96px;
}

.included-family__img {
  width: 64px;
  height: 67px;
  object-fit: contain;
  max-width: 100%;
  display: block;
}

.included-family__label {
  margin: 0;
  text-align: center;
  color: #362E26;
  line-height: 1.6;
  font-weight: 500;
  font-size: 16px;
}

.included-family__label-sub {
  display: inline-block;
  margin-top: 2px;
  font-weight: 400;
  color: #666666;
  font-size: 12px;
  line-height: 1.4;
}

.included-family__note {
  margin: 10px 0 0;
  text-align: center;
  color: #362E26;
  line-height: 1.9;
  font-size: 15px;
}

/* Tablet */
@media (min-width: 861px) and (max-width: 1024px) {
  .included-family__items {
    gap: 16px;
  }
  .included-family__item {
    width: calc((100% - 16px * 4) / 5);
    padding: 24px 14px 20px 14px;
  }
  .included-family__figure {
    height: 90px;
  }
  .included-family__img {
    width: 66px;
  }
}

/* SP */
@media (max-width: 860px) {
  .included-family__title-sub {
    font-size: 18px;
  }
  .included-family {
    padding: 40px 16px 40px 16px;
    margin-bottom: 30px;
  }
  .included-family__note {
    font-size: 14px;
    margin-top: 20px;
  }
  .included-family__items {
    gap: 12px;
    justify-content: stretch;
    margin-top: 35px;
  }
  .included-family__item {
    width: calc((100% - 66px * 1) / 2);
    min-width: 0;
    padding: 18px 12px 16px 12px;
  }
  .included-family__figure {
    height: 72px;
  }
  .included-family__img {
    width: 56px;
  }
  .included-family__label {
    font-size: 14px;
  }
}

/* ========= Features (Family) ========= */
.features-family {
  position: relative;
  background: #F3F7F7;
  padding: 30px 20px;
  position: relative;
  margin-bottom: 60px;
}

.features-family::before {
  content: "";
  position: absolute;
  top: -64px;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 75px;
  background: #F3F7F7;
  border-top-left-radius: 50% 100%;
  border-top-right-radius: 50% 100%;
  pointer-events: none;
}

.features-family::after {
  content: "";
  position: absolute;
  bottom: -64px;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 75px;
  background: #F3F7F7;
  border-top-left-radius: 50% 100%;
  border-top-right-radius: 50% 100%;
  pointer-events: none;
  transform: rotate(180deg);
}

.features-family__wrap {
  max-width: 1100px;
  margin: 0 auto;
}

.features-family__head {
  text-align: center;
}

.features-family__eyebrow {
  margin: 0 0 6px 0;
  font-size: 18px;
  color: #187678;
  letter-spacing: .08em;
  font-family: "Merriweather", serif;
}

.features-family__title {
  margin: 0 0 16px 0;
  font-size: clamp(22px, 2.6vw, 32px);
  letter-spacing: .08em;
  color: #362E26;
  font-family: "Zen Old Mincho", serif;
}

.features-family__figure {
  margin: 40px auto 0;
  width: 90%;
}

.features-family__figure-img {
  width: 100%;
}

.features-family__figure-img--sp {
  display: block;
}

.features-family__figure-img--pc {
  display: none;
}

.features-family__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 0 22px;
  counter-reset: num;
  margin: 40px 0 24px 0;
  padding: 0;
  list-style: none;
}

.features-family__card {
  position: relative;
  flex: 1 1 calc((100% - 22px * 2) / 3);
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.features-family__card--pad-left {
  padding-left: 150px;
}

.features-family__card--pad-right {
  padding-right: 150px;
}

.features-family__num {
  margin: 0;
  font-size: 50px;
  font-weight: 300;
  letter-spacing: .06em;
  color: #187678;
  font-family: "Merriweather", serif;
  position: relative;
  top: 34px;
}

.features-family__media {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 30px rgba(93, 60, 53, 0.1);
}

.features-family__media-img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.features-family__card-title {
  margin: 10px 0 6px 0;
  font-size: 22px;
  color: #362E26;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
}

.features-family__text {
  margin: 0;
  color: #666666;
  line-height: 1.9;
}

/* TAB */
@media (min-width: 861px) and (max-width: 1024px) {
  .features-family__media-img {
    height: 160px;
  }
}

/* SP */
@media (max-width: 860px) {
  .features-family {
    padding: 30px 0 30px;
  }
  .features-family:before {
    height: 40px;
    top: -39px;
  }
  .features-family:after {
    height: 40px;
    bottom: -30px;
  }
  .features-family__eyebrow {
    font-size: 14px;
  }
  .features-family__cards {
    gap: 0;
    width: 90%;
    margin: auto;
  }
  .features-family__card {
    flex: 1 1 100%;
    min-width: 0;
  }
  .features-family__card-title {
    font-size: 19px;
  }
  .features-family__text {
    font-size: 15px;
  }
  .features-family__figure-img--sp {
    display: none;
  }
  .features-family__figure-img--pc {
    display: block;
  }
  .features-family__card--pad-left {
    padding-left: 0;
  }
  .features-family__card--pad-right {
    padding-right: 0;
  }
}

/* ========= Flow (Family) ========= */
.flow-family {
  padding: 80px 20px;
}

.flow-family__head {
  text-align: center;
}

.flow-family__eyebrow {
  margin: 0 0 6px 0;
  font-size: 18px;
  color: #187678;
  letter-spacing: .08em;
  font-family: "Merriweather", serif;
}

.flow-family__title {
  margin: 0 0 16px 0;
  font-size: clamp(22px, 2.6vw, 32px);
  letter-spacing: .08em;
  color: #362E26;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
}

.flow-family__figure {
  margin: 40px auto;
  max-width: 100%;
  text-align: center;
}

.flow-family__img {
  width: 768px;
}

.flow-family__img--sp {
  display: block;
}

.flow-family__img--pc {
  display: none;
}

.flow-family__br--pc {
  display: none;
}

/* SP */
@media (max-width: 860px) {
  .flow-family {
    padding: 20px 30px 30px;
  }
  .flow-family__eyebrow {
    font-size: 14px;
  }
  .flow-family__figure {
    margin: 40px auto;
    max-width: 100%;
    width: 100vw;
    overflow-x: auto;
  }
  .flow-family__img {
    width: 600px;
  }
}

/* PC 表示切替 */
@media (min-width: 861px) {
  .flow-family__img--sp {
    display: none;
  }
  .flow-family__img--pc {
    display: block;
  }
  .flow-family__br--pc {
    display: inline;
  }
}

/* ===== Page Header Offering ===== */
.page-header-offering {
  position: relative;
  overflow: hidden;
  background: #F9F7F1;
}

.page-header-offering__breadcrumb {
  max-width: 1100px;
  margin: 0 auto;
  padding: 25px 20px 0 20px;
  font-size: 14px;
  color: #176e70;
  display: flex;
  gap: 6px;
}

.page-header-offering__breadcrumb-link {
  color: #999999;
  text-decoration: none;
}

.page-header-offering__breadcrumb-link:hover {
  text-decoration: underline;
}

.page-header-offering__breadcrumb-sep {
  color: #cccccc;
}

.page-header-offering__breadcrumb-current {
  color: #176e70;
}

.page-header-offering__heading {
  max-width: 1100px;
  margin: 0 auto;
  padding: 74px 0 40px 0;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  color: #362E26;
}

.page-header-offering__eyebrow {
  margin: 0 0 6px 0;
  font-size: 16px;
  color: #176e70;
  letter-spacing: .06em;
  font-family: "Merriweather", serif;
}

.page-header-offering__title {
  margin: 0;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.6;
  color: #362E26;
  font-weight: 500;
}

.page-header-offering__visual {
  margin: 0;
  width: 100%;
  height: 380px;
  overflow: hidden;
}

.page-header-offering__visual-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

@media (min-width: 861px) and (max-width: 1024px) {
  .page-header-offering__visual {
    height: 300px;
  }
  .page-header-offering {
    padding-top: 80px;
  }
}

@media (max-width: 860px) {
  .page-header-offering {
    padding-top: 80px;
  }
  .page-header-offering__heading {
    padding: 60px 20px 28px 20px;
  }
  .page-header-offering__eyebrow {
    font-size: 14px;
  }
  .page-header-offering__title {
    font-size: 24px;
  }
  .page-header-offering__visual {
    height: 240px;
  }
}

/* ===== Offerings ===== */
.offerings {
  background: #F9F7F1;
  padding: 56px 20px 96px 20px;
}

.offerings__wrap {
  max-width: 980px;
  margin: 0 auto;
}

.offerings__lead {
  text-align: center;
  color: #555555;
}

.offerings__lead-text {
  margin: 0 0 16px 0;
  line-height: 1.9;
  font-size: 17px;
}

.offerings__contact {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 18px;
  margin-top: 25px;
}

.offerings__pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 21px;
  border-radius: 10px;
  border: 1px solid #187678;
  background: transparent;
  color: #146a6c;
  text-decoration: none;
}

.offerings__pill-fax {
  pointer-events: none;
}

.offerings__pill-label {
  border-radius: 6px;
  font-weight: 400;
  letter-spacing: .04em;
  color: #146a6c;
  font-size: 18px;
  font-family: "Zen Old Mincho", serif;
}

.offerings__pill-icon {
  width: 18px;
  height: 18px;
  position: relative;
  top: 3px;
}

.offerings__pill-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/icon-tel-green.webp");
  background-repeat: no-repeat;
  background-size: contain;
}

.offerings__pill-icon--fax::before {
  background-image: url("../img/icon-fax-green.webp");
  background-repeat: no-repeat;
  background-size: contain;
}

.offerings__pill-text {
  font-weight: 500;
  letter-spacing: .06em;
  font-size: 28px;
  font-family: "Zen Old Mincho", serif;
}

.offerings__group {
  margin-top: 50px;
}

.offerings__group-title {
  margin: 0 0 0px 0;
  padding-bottom: 10px;
  text-align: center;
  font-size: 32px;
  letter-spacing: .1em;
  color: #187678;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  position: relative;
}

.offerings__group-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 42%;
  height: 1px;
  background: #187678;
  margin: auto;
}

.offerings__group-title::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 42%;
  height: 1px;
  background: #187678;
  margin: auto;
}

.offerings__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  justify-content: flex-start;
  gap: 18px;
  margin: 0 0 28px 0;
  padding: 0;
  list-style: none;
}

.offerings__card {
  width: 32%;
  margin-top: 26px;
}

.offerings__card-media {
  max-width: 100%;
  width: 100%;
  margin: 0 0 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  overflow: hidden;
}

.offerings__card-media img {
  width: 100%;
  height: 380px;
  object-fit: contain;
}

.offerings__card-img {
  width: 100%;
  display: block;
  object-fit: contain;
}

.offerings__pricebox {
  display: flex;
  align-items: flex-start;
  margin-top: 20px;
}

.offerings__pricebox--center {
  align-items: center;
}

.offerings__name {
  margin: 0;
}

.offerings__name-text {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 17px;
  font-weight: 500;
}

.offerings__prices {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-left: 40px;
}

.offerings__price-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.offerings__price-label {
  display: inline-block;
  min-width: 44px;
  padding: 3px 1px;
  background: #DBE7E8;
  color: #2b2b2b;
  font-weight: 400;
  text-align: center;
  font-size: 16px;
}

.offerings__price-value {
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  letter-spacing: .4px;
}

.offerings__notes {
  margin: 55px 0 0 0;
  color: #000000;
  font-size: 14px;
  line-height: 1.7;
}

/* flower / morikago の間隔強化（元ID #sec-morikago相当） */
.offerings__group-title#offerings__group-title--morikago {
  margin-top: 120px;
}

@media (min-width: 1201px) {
  .offerings__pill {
    pointer-events: none;
  }
}

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .offerings {
    padding: 40px 16px 64px 16px;
  }
  .offerings__group-title::before {
    width: 34%;
  }
  .offerings__group-title::after {
    width: 34%;
  }
  .offerings__cards {
    gap: 20px 12px;
  }
  .offerings__card {
    width: calc((100% - 12px) / 2);
  }
  .offerings__card-media {
    border-radius: 6px;
  }
  .offerings__card-media img {
    height: 220px;
  }
  .offerings__group-title {
    font-size: 26px;
  }
  .offerings__group-title#offerings__group-title--morikago {
    margin-top: 40px;
  }
  .offerings__contact {
    flex-wrap: wrap;
  }
  .offerings__name-text {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .offerings__lead-text {
    font-size: 15px;
  }
  .offerings__pricebox {
    flex-wrap: wrap;
    margin-top: 13px;
  }
  .offerings__prices {
    margin-left: 0;
  }
  .offerings__name {
    width: 100%;
  }
  .offerings__notes {
    margin-top: 40px;
  }
}

.cancel {
  padding: 80px 0;
}

.cancel .cancel__ttl {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
}

.cancel .cancel__txt {
  text-align: center;
  font-size: 18px;
  margin-top: 40px;
}

.cancel .cancel__btn {
  text-align: center;
  color: #fff;
  text-align: center;
  width: 260px;
  margin: 70px auto;
}

.cancel .cancel__btn a {
  background: #187678;
  padding: 20px 60px;
  color: #fff;
  max-width: 100%;
  margin: 50px auto;
  width: 260px;
  text-decoration: none;
}

.cancel .cancel__btn a:hover {
  background-color: #126668;
}

@media (max-width: 860px) {
  .cancel .cancel__ttl {
    font-size: 24px;
  }
  .cancel .cancel__txt {
    width: 90%;
    margin: 40px auto;
    font-size: 15px;
  }
}
