@charset "UTF-8";

/* =========================================================
   model.css
   内覧会情報 archive 静的デザイン版
   外枠・左ナビ・フッターは right-layout 側に任せる
========================================================= */

.model-page{
  width: calc(100vw - 240px);
  margin-left: calc(50% - ((100vw - 240px) / 2));
  margin-right: 0;
  padding: 0;
  color: #211f1d;
  background: #fbfaf7;
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  overflow: hidden;
}

/* right-layout側のタイトル・余白を消す */
.page-model-body .right-layout-title,
.page-model-body .page-standard__title,
.page-model-body .page-title,
.page-model-body .entry-title{
  display: none !important;
}

.page-model-body .right-layout-content,
.page-model-body .page-standard__content{
  padding-top: 0 !important;
}

.model-page *,
.model-page *::before,
.model-page *::after{
  box-sizing: border-box;
}

.model-page img{
  display: block;
  max-width: 100%;
  height: auto;
}

.model-page a{
  color: inherit;
  text-decoration: none;
}

/* =========================================================
   Hero
========================================================= */

.model-hero{
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 560px;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #1c1917;
}

.model-hero__image{
  position: absolute;
  inset: 0;
  z-index: 1;
}

.model-hero__image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  opacity: 0.55;
}

.model-hero__overlay{
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(to bottom, rgba(28,25,23,0.05), rgba(28,25,23,0.45) 48%, rgba(28,25,23,0.95)),
    rgba(0,0,0,0.15);
}

.model-hero__content{
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 980px;
  padding: 0 40px;
  text-align: center;
}

.model-hero__label{
  margin: 0 0 34px;
  color: #c6a543;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.5em;
  text-transform: uppercase;
}

.model-hero__title{
  margin: 0 !important;
  padding: 0 !important;
  color: #fff !important;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  font-size: clamp(32px, 4.2vw, 58px) !important;
  font-weight: 400 !important;
  line-height: 1.45 !important;
  letter-spacing: 0.1em;
  text-align: center !important;
}

.model-hero__title::before,
.model-hero__title::after{
  display: none !important;
}

/* =========================================================
   Intro
========================================================= */

.model-intro{
  width: 100%;
  padding: 96px 40px;
  background: #fff;
}

.model-intro__inner{
  width: 100%;
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
}

.model-intro__inner p{
  margin: 0 0 34px;
  color: #57534e;
  font-size: 17px;
  line-height: 2.25;
  letter-spacing: 0.16em;
}

.model-intro__inner p:last-child{
  margin-bottom: 0;
}

/* =========================================================
   Section Heading
========================================================= */

.model-section-heading{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin: 0 0 64px;
  padding: 0 0 32px;
  border-bottom: 1px solid #dedbd3;
}

.model-section-heading__en{
  margin: 0 0 18px;
  color: #c6a543;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.4em;
  text-transform: uppercase;
}

.model-section-heading__jp{
  margin: 0 !important;
  padding: 0 !important;
  color: #211f1d !important;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  font-size: clamp(26px, 3vw, 40px) !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
  letter-spacing: 0.18em;
  text-align: left !important;
}

.model-section-heading__jp::before,
.model-section-heading__jp::after{
  display: none !important;
}

.model-section-heading__note{
  margin: 0 0 6px;
  color: #a8a29e;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* =========================================================
   Events
========================================================= */

.model-events{
  width: 100%;
  padding: 112px 40px 128px;
  background: #fbfaf7;
}

.model-events__inner{
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.model-event-list{
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.model-event-card{
  display: grid;
  grid-template-columns: 36% minmax(0, 1fr);
  width: 100%;
  min-height: 310px;
  background: #fff;
  border: 1px solid #eee9df;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.model-event-card:hover{
  border-color: #c6a543;
}

.model-event-card__image{
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 310px;
  overflow: hidden;
  background: #ddd8ce;
}

.model-event-card__image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.model-event-card:hover .model-event-card__image img{
  transform: scale(1.06);
}

.model-event-card__badge{
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 12px;
  color: #fff;
  background: #c6a543;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.model-event-card__body{
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 48px 56px;
}

.model-event-card__tags{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 24px;
}

.model-event-card__tags span{
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 10px;
  color: #c6a543;
  border: 1px solid rgba(198,165,67,0.35);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.model-event-card__date{
  margin: 0 0 12px;
  color: #a8a29e;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.model-event-card__title{
  margin: 0 0 24px !important;
  padding: 0 !important;
  color: #211f1d !important;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  font-size: clamp(20px, 2.1vw, 28px) !important;
  font-weight: 700 !important;
  line-height: 1.6 !important;
  letter-spacing: 0.12em;
  text-align: left !important;
  transition: color 0.25s ease;
}

.model-event-card__title::before,
.model-event-card__title::after{
  display: none !important;
}

.model-event-card:hover .model-event-card__title{
  color: #c6a543 !important;
}

.model-event-card__text{
  margin: 0;
  color: #6b625a;
  font-size: 13px;
  line-height: 2;
  letter-spacing: 0.12em;
}

.model-event-card__more{
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin: 34px 0 0;
  color: #211f1d;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.model-event-card__more-icon{
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.25s ease;
}

.model-event-card:hover .model-event-card__more-icon{
  transform: translateX(8px);
}
/* =========================================================
   Experience
========================================================= */

.model-experience{
  position: relative;
  width: 100%;
  padding: 150px 40px;
  color: #fff;
  background: #1c1917;
  overflow: hidden;
}

.model-experience__bg{
  position: absolute;
  top: 0;
  right: 0;
  width: 52%;
  height: 100%;
  opacity: 0.1;
  pointer-events: none;
}

.model-experience__bg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.model-experience__inner{
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.model-experience__grid{
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44%;
  gap: 90px;
  align-items: center;
}

.model-experience__label{
  margin: 0 0 24px;
  color: #c6a543;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.4em;
  text-transform: uppercase;
}

.model-experience__title{
  margin: 0 0 62px !important;
  padding: 0 !important;
  color: #fff !important;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  font-size: clamp(32px, 4vw, 50px) !important;
  font-weight: 400 !important;
  line-height: 1.55 !important;
  letter-spacing: 0.16em;
  text-align: left !important;
}

.model-experience__title::before,
.model-experience__title::after{
  display: none !important;
}

.model-experience-list{
  display: grid;
  grid-template-columns: 1fr;
  gap: 42px;
}

.model-experience-item{
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 22px;
}

.model-experience-item__num{
  margin: 0;
  color: #c6a543;
  font-size: 34px;
  font-style: italic;
  line-height: 1;
  opacity: 0.55;
}

.model-experience-item h3{
  margin: 0 0 12px !important;
  padding: 0 !important;
  color: #fff !important;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  line-height: 1.6 !important;
  letter-spacing: 0.12em;
  text-align: left !important;
}

.model-experience-item h3::before,
.model-experience-item h3::after{
  display: none !important;
}

.model-experience-item p:not(.model-experience-item__num){
  margin: 0;
  color: #c7c2bc;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.1em;
}

.model-experience__photo{
  position: relative;
}

.model-experience__photo > img{
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: 0 26px 60px rgba(0,0,0,0.35);
}

.model-experience__quote{
  position: absolute;
  left: -50px;
  bottom: -42px;
  width: 300px;
  padding: 45px;
  background: #c6a543;
  box-shadow: 0 20px 35px rgba(0,0,0,0.25);
}

.model-experience__quote p{
  margin: 0;
  color: #211f1d;
  font-size: 14px;
  font-style: italic;
  line-height: 2;
  letter-spacing: 0.12em;
}

/* =========================================================
   FAQ
========================================================= */

.model-faq{
  width: 100%;
  padding: 112px 40px 122px;
  background: #fdfcf9;
}

.model-faq__inner{
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}

.model-faq__title{
  margin: 0 0 64px !important;
  padding: 0 !important;
  color: #211f1d !important;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  font-size: clamp(24px, 2.6vw, 34px) !important;
  font-weight: 400 !important;
  line-height: 1.6 !important;
  letter-spacing: 0.18em;
  text-align: center !important;
}

.model-faq__title::before,
.model-faq__title::after{
  display: none !important;
}

.model-faq-list{
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.model-faq-card{
  padding: 34px 38px;
  background: #fff;
  border: 1px solid #eee9df;
  box-shadow: 0 6px 18px rgba(38,31,24,0.035);
}

.model-faq-card__q,
.model-faq-card__a{
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 14px;
}

.model-faq-card__q{
  margin-bottom: 18px;
}

.model-faq-card__q span{
  color: #c6a543;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

.model-faq-card__a span{
  color: #d8d3cc;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}

.model-faq-card__q p{
  margin: 0;
  color: #211f1d;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: 0.12em;
}

.model-faq-card__a p{
  margin: 0;
  color: #5f5a55;
  font-size: 14px;
  line-height: 2.05;
  letter-spacing: 0.1em;
}

/* =========================================================
   CTA
========================================================= */

.model-cta{
  position: relative;
  width: 100%;
  min-height: 540px;
  padding: 120px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
  background: #1c1917;
}

.model-cta__image{
  position: absolute;
  inset: 0;
  z-index: 1;
}

.model-cta__image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.model-cta__overlay{
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(28,25,23,0.72);
}

.model-cta__content{
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.model-cta h2{
  margin: 0 0 54px !important;
  padding: 0 !important;
  color: #fff !important;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  font-size: clamp(26px, 3.5vw, 42px) !important;
  font-weight: 400 !important;
  line-height: 1.85 !important;
  letter-spacing: 0.16em;
  text-align: center !important;
}

.model-cta h2::before,
.model-cta h2::after{
  display: none !important;
}

.model-cta__buttons{
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.model-cta__buttons a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 250px;
  min-height: 60px;
  padding: 0 36px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.model-cta__buttons a:first-child{
  color: #211f1d;
  background: #fff;
  border: 1px solid #fff;
}

.model-cta__buttons a:first-child:hover{
  color: #fff;
  background: #c6a543;
  border-color: #c6a543;
}

.model-cta__buttons a:last-child{
  color: #fff;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.28);
}

.model-cta__buttons a:last-child:hover{
  background: rgba(255,255,255,0.22);
}

/* =========================================================
   Cocoon / 共通CSS対策
========================================================= */

.right-layout-content .model-page h1,
.right-layout-content .model-page h2,
.right-layout-content .model-page h3{
  border: none;
  background: none;
}

.right-layout-content .model-page h1::before,
.right-layout-content .model-page h1::after,
.right-layout-content .model-page h2::before,
.right-layout-content .model-page h2::after,
.right-layout-content .model-page h3::before,
.right-layout-content .model-page h3::after{
  display: none;
  content: none;
}

/* =========================================================
   Responsive
========================================================= */

@media screen and (max-width: 1180px){

  .model-events,
  .model-experience,
  .model-faq,
  .model-cta{
    padding-left: 32px;
    padding-right: 32px;
  }

  .model-event-card__body{
    padding: 40px;
  }

  .model-experience__grid{
    gap: 62px;
  }

}

@media screen and (max-width: 1024px){
  .model-page{
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }
}

@media screen and (max-width: 900px){

  .model-hero{
    height: 64vh;
    min-height: 500px;
  }

  .model-intro{
    padding: 76px 24px;
  }

  .model-intro__inner p{
    font-size: 15px;
    line-height: 2.15;
  }

  .model-events{
    padding: 84px 24px 96px;
  }

  .model-section-heading{
    display: block;
    margin-bottom: 42px;
  }

  .model-section-heading__note{
    margin-top: 22px;
  }

  .model-event-card{
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .model-event-card__image{
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .model-event-card__body{
    padding: 34px 28px 38px;
  }

  .model-experience{
    padding: 92px 24px 112px;
  }

  .model-experience__grid{
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .model-experience__photo{
    max-width: 520px;
    margin: 0 auto;
  }

  .model-experience__quote{
    left: 20px;
    bottom: -34px;
  }

  .model-faq{
    padding: 84px 24px 92px;
  }

  .model-faq-card{
    padding: 30px 24px;
  }

  .model-cta{
    min-height: 480px;
    padding: 88px 24px;
  }

}

@media screen and (max-width: 640px){

  .model-hero{
    height: 60vh;
    min-height: 440px;
  }

  .model-hero__content{
    padding: 0 22px;
  }

  .model-hero__label{
    margin-bottom: 26px;
    font-size: 10px;
    letter-spacing: 0.36em;
  }

  .model-hero__title{
    font-size: 30px !important;
    line-height: 1.55 !important;
    letter-spacing: 0.08em;
  }

  .model-sp-br{
    display: none;
  }

  .model-intro__inner p br{
    display: none;
  }

  .model-section-heading__jp{
    font-size: 25px !important;
  }

  .model-event-card__title{
    font-size: 20px !important;
  }

  .model-event-card__text{
    font-size: 13px;
  }

  .model-experience__title{
    font-size: 30px !important;
  }

  .model-experience-item{
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 16px;
  }

  .model-experience-item__num{
    font-size: 28px;
  }

  .model-experience-item p:not(.model-experience-item__num){
    font-size: 13px;
  }

  .model-experience-item p br{
    display: none;
  }

  .model-experience__quote{
    position: static;
    width: 100%;
    margin-top: 0;
    padding: 24px;
  }

  .model-faq__title{
    margin-bottom: 42px !important;
  }

  .model-faq-card__q,
  .model-faq-card__a{
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 10px;
  }

  .model-faq-card__q p{
    font-size: 14px;
  }

  .model-faq-card__a p{
    font-size: 13px;
  }

  .model-cta h2{
    font-size: 24px !important;
  }

  .model-cta__buttons{
    display: grid;
    grid-template-columns: 1fr;
  }

  .model-cta__buttons a{
    width: 100%;
    min-width: 0;
  }

}



/* =========================================================
   model single
   内覧会情報 個別ページ デザイン版
========================================================= */

.model-single-page{
  width: calc(100vw - 240px);
  margin-left: calc(50% - ((100vw - 240px) / 2));
  margin-right: 0;
  padding: 0;
  color: #211f1d;
  background: #fff;
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  overflow: hidden;
}

.model-single-page *,
.model-single-page *::before,
.model-single-page *::after{
  box-sizing: border-box;
}

.model-single-page img{
  display: block;
  max-width: 100%;
  height: auto;
}

.model-single-page a{
  color: inherit;
  text-decoration: none;
}

.model-single-body .right-layout-title,
.model-single-body .page-standard__title,
.model-single-body .page-title,
.model-single-body .entry-title{
  display: none !important;
}

.model-single-body .right-layout-content,
.model-single-body .page-standard__content{
  padding-top: 0 !important;
}

/* 見出し共通CSS対策 */
.right-layout-content .model-single-page h1,
.right-layout-content .model-single-page h2,
.right-layout-content .model-single-page h3{
  border: none !important;
  background: none !important;
  box-shadow: none !important;
}

.right-layout-content .model-single-page h1::before,
.right-layout-content .model-single-page h1::after,
.right-layout-content .model-single-page h2::before,
.right-layout-content .model-single-page h2::after,
.right-layout-content .model-single-page h3::before,
.right-layout-content .model-single-page h3::after{
  display: none !important;
  content: none !important;
}

/* Hero */

.model-single-hero{
  position: relative;
  width: 100%;
  height: 50vh;
  min-height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #1c1917;
}

.model-single-hero__image{
  position: absolute;
  inset: 0;
  z-index: 1;
}

.model-single-hero__image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
}

.model-single-hero__overlay{
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(28,25,23,0.38);
}

.model-single-hero__content{
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1180px;
  padding: 0 40px;
  color: #fff;
  text-align: center;
}

.model-single-hero__tags{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 28px;
}

.model-single-hero__tags span{
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 12px;
  color: #fff;
  background: #c6a543;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.model-single-hero__title{
  margin: 0 0 18px !important;
  padding: 0 !important;
  color: #fff !important;
  font-size: clamp(28px, 3.4vw, 48px) !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
  letter-spacing: 0.16em;
  text-align: center !important;
}

.model-single-hero__lead{
  margin: 0;
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.2em;
}

/* Main */

.model-single-main{
  width: 100%;
  padding: 84px 40px 110px;
  background: #fff;
}

.model-single-main__inner{
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.model-single-lead{
  margin: 0 0 88px;
}

.model-single-lead p{
  margin: 0 0 30px;
  color: #5f5a55;
  font-size: 16px;
  line-height: 2.35;
  letter-spacing: 0.12em;
}

/* 本文　*/
.model-single-content-body{
  margin: 60px 0;
}

.model-single-lead p:last-child{
  margin-bottom: 0;
}

.model-single-content-body p{
  margin: 0 0 24px;
}

.model-single-content-body p:last-child{
  margin-bottom: 0;
}


/* Overview */

.model-single-overview{
  display: grid;
  grid-template-columns: 42% minmax(0, 1fr);
  gap: 90px;
  align-items: start;
  margin: 0 0 130px;
}

.model-single-block-label{
  margin: 0 0 18px;
  padding-left: 18px;
  color: #a8a29e;
  border-left: 2px solid #c6a543;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.model-single-flyer__image{
  padding: 16px;
  background: #fbfaf7;
  border: 1px solid #eee9df;
}

.model-single-flyer__image img{
  width: 100%;
  height: auto;
  box-shadow: 0 4px 14px rgba(38,31,24,0.08);
}

.model-single-flyer__caption{
  margin: 14px 0 0;
  color: #aaa39b;
  font-size: 10px;
  line-height: 1.8;
  letter-spacing: 0.12em;
  text-align: center;
}

.model-single-info-card{
  position: sticky;
  top: 120px;
  padding: 48px;
  background: #fff;
  border: 1px solid #eee9df;
  box-shadow: 0 20px 50px rgba(38,31,24,0.06);
}

.model-single-info-card__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  margin: 0 0 40px;
}

.model-single-info-item{
  margin: 0;
}

.model-single-info-item--wide{
  padding-top: 36px;
  border-top: 1px solid #eee9df;
}

.model-single-info-item__label{
  margin: 0 0 12px;
  color: #c6a543;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.model-single-info-item__value{
  margin: 0;
  color: #211f1d;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.12em;
}

.model-single-info-item__value span{
  color: #6f6862;
  font-size: 13px;
  font-weight: 400;
}

.model-single-reserve-button{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: 100%;
  min-height: 66px;
  margin-top: 46px;
  padding: 0 34px;
  color: #fff !important;
  background: #eba896;
  box-shadow: 0 18px 32px rgba(235,168,150,0.28);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.26em;
  transition: background 0.25s ease;
}

.model-single-reserve-button:hover{
  background: #1c1917;
}

.model-single-reserve-button:hover{
  background: #1c1917;
  color: #fff !important;
}

.model-single-reserve-button:hover span,
.model-single-reserve-button:hover svg{
  color: #fff !important;
  stroke: #fff !important;
}

.model-single-button-icon{
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.25s ease;
}

.model-single-reserve-button:hover .model-single-button-icon{
  transform: translateX(8px);
}

/* Section title */

.model-single-section-title{
  margin: 0 !important;
  padding: 0 !important;
  color: #211f1d !important;
  font-size: clamp(25px, 2.8vw, 38px) !important;
  font-weight: 400 !important;
  line-height: 1.7 !important;
  letter-spacing: 0.18em;
  text-align: left !important;
}

/* Points */

.model-single-points{
  margin: 0 0 120px;
}

.model-single-points .model-single-section-title{
  margin-bottom: 48px !important;
}

.model-single-points__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 74px;
}

.model-single-point{
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 0 0 24px;
  border-bottom: 1px solid #eee9df;
}

.model-single-point span{
  color: #c6a543;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
}

.model-single-point p{
  margin: 0;
  color: #4f4a45;
  font-size: 17px;
  line-height: 2;
  letter-spacing: 0.12em;
}

/* Spec */

.model-single-spec{
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
}

.model-single-spec__heading{
  margin: 0 0 46px;
  text-align: center;
}

.model-single-spec__heading .model-single-section-title{
  text-align: center !important;
}

.model-single-spec__heading span{
  display: block;
  width: 48px;
  height: 4px;
  margin: 18px auto 0;
  background: #c6a543;
}

.model-single-spec__table-wrap{
  background: #fff;
  border: 1px solid #eee9df;
}

.model-single-spec__table{
  width: 100%;
  border-collapse: collapse;
}

.model-single-spec__table th,
.model-single-spec__table td{
  padding: 22px 28px;
  border-bottom: 1px solid #eee9df;
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.1em;
  text-align: left;
  vertical-align: middle;
}

.model-single-spec__table tr:last-child th,
.model-single-spec__table tr:last-child td{
  border-bottom: none;
}

.model-single-spec__table th{
  width: 34%;
  color: #6f6862;
  background: #fbfaf7;
  border-right: 1px solid #eee9df;
  font-weight: 700;
  text-align: center;
}

.model-single-spec__table td{
  color: #211f1d;
}

/* Calendar */

.model-single-calendar-section{
  width: 100%;
  padding: 120px 40px 130px;
  background: #f7f6f2;
  border-top: 1px solid #eee9df;
  border-bottom: 1px solid #eee9df;
}

.model-single-calendar-section__inner{
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}

.model-single-calendar-heading{
  margin: 0 0 54px;
  text-align: center;
}

.model-single-calendar-heading p{
  margin: 0 0 14px;
  color: #c6a543;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.4em;
  text-transform: uppercase;
}

.model-single-calendar-heading h2{
  margin: 0 0 16px !important;
  padding: 0 !important;
  color: #211f1d !important;
  font-size: clamp(26px, 3vw, 40px) !important;
  font-weight: 400 !important;
  line-height: 1.6 !important;
  letter-spacing: 0.18em;
  text-align: center !important;
}

.model-single-calendar-heading span{
  color: #6f6862;
  font-size: 13px;
  line-height: 2;
  letter-spacing: 0.12em;
}

.model-single-calendar-box{
  background: #fff;
  border: 1px solid #eee9df;
  box-shadow: 0 28px 58px rgba(38,31,24,0.13);
  overflow: hidden;
}

.model-single-calendar-box__bar{
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  background: #1c1917;
}

.model-single-calendar-box__bar span{
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.model-single-calendar-box__body{
  padding: 46px;
}

.model-single-calendar-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 0 28px;
  padding: 0 0 24px;
  border-bottom: 2px solid #eee9df;
}

.model-single-calendar-head__month{
  display: flex;
  align-items: center;
  gap: 18px;
}

.model-single-calendar-head__month button{
  width: 28px;
  height: 28px;
  padding: 0;
  border: none;
  background: transparent;
  color: #211f1d;
  cursor: pointer;
}

.model-single-calendar-head__month svg{
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.model-single-calendar-head__month p{
  margin: 0;
  color: #211f1d;
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0.08em;
}

.model-single-calendar-head__month span{
  color: #aaa39b;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.model-single-calendar-head__year{
  margin: 0;
  color: #aaa39b;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.model-single-calendar{
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background: #eee9df;
  border: 1px solid #eee9df;
}

.model-single-calendar__week{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  color: #aaa39b;
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.model-single-calendar__week.is-sun{
  color: #b64236;
}

.model-single-calendar__week.is-sat{
  color: #3673b6;
}

.model-single-calendar__day{
  position: relative;
  min-height: 96px;
  padding: 8px;
  border: none;
  background: #fff;
  color: #211f1d;
  cursor: pointer;
  transition: background 0.25s ease;
}

.model-single-calendar__day:hover{
  background: #fbfaf7;
}

.model-single-calendar__day span{
  display: block;
  color: inherit;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1;
}

.model-single-calendar__day em{
  display: block;
  margin-top: 8px;
  color: #b64236;
  font-size: 8px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

.model-single-calendar__day.is-sun-date span{
  color: #b64236;
}

.model-single-calendar__day.is-sat-date span{
  color: #3673b6;
}

.model-single-calendar__day.is-closed{
  color: #7aa6d6;
  background: #eef6ff;
  cursor: not-allowed;
}

.model-single-calendar__day.is-closed em{
  color: #7aa6d6;
}

.model-single-calendar__day.is-event{
  background: #fff1f4;
}

.model-single-calendar__day.is-event:hover{
  background: rgba(198,165,67,0.12);
}

.model-single-calendar-box__note{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 24px 30px;
  background: #fbfaf7;
  border-top: 1px solid #eee9df;
}

.model-single-calendar-box__note p{
  margin: 0 0 6px;
  color: #6f6862;
  font-size: 10px;
  line-height: 1.8;
  letter-spacing: 0.12em;
}

.model-single-calendar-box__note p:last-child{
  margin-bottom: 0;
}

.model-single-calendar-box__note strong{
  color: #211f1d;
}

.model-single-calendar-box__note a{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #211f1d;
  border-bottom: 1px solid #211f1d;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.12em;
  white-space: nowrap;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.model-single-calendar-box__note a:hover{
  color: #c6a543;
  border-color: #c6a543;
}

.model-single-external-icon{
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Contact */

.model-single-contact{
  width: 100%;
  padding: 130px 40px 140px;
  background: #f7f6f2;
  border-top: 1px solid #eee9df;
  text-align: center;
}

.model-single-contact__inner{
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}

.model-single-contact__inner > p{
  margin: 0 0 18px;
  color: #c6a543;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.5em;
  text-transform: uppercase;
}

.model-single-contact h2{
  margin: 0 0 54px !important;
  padding: 0 !important;
  color: #211f1d !important;
  font-size: clamp(26px, 3vw, 40px) !important;
  font-weight: 400 !important;
  line-height: 1.85 !important;
  letter-spacing: 0.18em;
  text-align: center !important;
}

.model-single-contact__buttons{
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin: 0 0 58px;
}

.model-single-contact__buttons a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  min-height: 62px;
  padding: 0 36px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.model-single-contact__buttons a:first-child{
  color: #fff;
  background: #1c1917;
  box-shadow: 0 18px 35px rgba(38,31,24,0.18);
}

.model-single-contact__buttons a:first-child:hover{
  background: #c6a543;
}

.model-single-contact__buttons a:last-child{
  color: #9a938b;
  border: 1px solid #ddd7ce;
}

.model-single-contact__buttons a:last-child:hover{
  color: #211f1d;
  background: #fff;
}

.model-single-contact__links{
  display: flex;
  justify-content: center;
  gap: 34px;
  flex-wrap: wrap;
  padding-top: 42px;
  border-top: 1px solid #ddd7ce;
}

.model-single-contact__links a{
  color: #9a938b;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.model-single-contact__links a:hover{
  color: #c6a543;
}

/* Responsive */

@media screen and (max-width: 1024px){

  .model-single-page{
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }

  .model-single-info-card{
    position: static;
  }

}

@media screen and (max-width: 900px){

  .model-single-hero{
    height: auto;
    min-height: 420px;
    padding: 120px 0 84px;
  }

  .model-single-main{
    padding: 70px 24px 88px;
  }

  .model-single-lead{
    margin-bottom: 64px;
  }

  .model-single-lead p{
    font-size: 14px;
  }

  .model-single-overview{
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 90px;
  }

  .model-single-info-card{
    padding: 34px 28px;
  }

  .model-single-info-card__grid{
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .model-single-points{
    margin-bottom: 86px;
  }

  .model-single-points__grid{
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .model-single-point p{
    font-size: 15px;
  }

  .model-single-calendar-section{
    padding: 84px 24px 92px;
  }

  .model-single-calendar-box__body{
    padding: 28px 20px;
  }

  .model-single-calendar-head{
    display: block;
  }

  .model-single-calendar-head__year{
    margin-top: 18px;
  }

  .model-single-calendar__day{
    min-height: 72px;
    padding: 6px;
  }

  .model-single-calendar__day em{
    font-size: 7px;
  }

  .model-single-calendar-box__note{
    display: block;
  }

  .model-single-calendar-box__note a{
    margin-top: 18px;
    white-space: normal;
  }

  .model-single-contact{
    padding: 92px 24px 104px;
  }

}

@media screen and (max-width: 640px){

  .model-single-hero__content{
    padding: 0 24px;
  }

  .model-single-hero__title{
    font-size: 27px !important;
    letter-spacing: 0.1em;
  }

  .model-single-hero__lead{
    font-size: 12px;
  }

  .model-single-section-title{
    font-size: 24px !important;
  }

  .model-single-info-item__value{
    font-size: 16px;
  }

  .model-single-reserve-button{
    min-height: 58px;
    padding: 0 24px;
    font-size: 12px;
    letter-spacing: 0.16em;
  }

  .model-single-spec__table th,
  .model-single-spec__table td{
    padding: 16px 14px;
    font-size: 12px;
  }

  .model-single-spec__table th{
    width: 38%;
  }

  .model-single-calendar__week{
    min-height: 38px;
  }

  .model-single-calendar__day{
    min-height: 58px;
  }

  .model-single-calendar__day span{
    font-size: 12px;
  }

  .model-single-calendar__day em{
    display: none;
  }

  .model-single-contact__buttons{
    display: grid;
    grid-template-columns: 1fr;
  }

  .model-single-contact__buttons a{
    width: 100%;
    min-width: 0;
  }

}


/* 個別ページ：ヒーロー上の白い余白を強制的に消す */
.page-model-body.model-single-body,
.page-model-body.model-single-body .right-layout,
.page-model-body.model-single-body .right-layout-main,
.page-model-body.model-single-body .right-layout-content,
.page-model-body.model-single-body .page-standard,
.page-model-body.model-single-body .page-standard__inner,
.page-model-body.model-single-body .page-standard__content{
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.page-model-body.model-single-body .model-single-page{
  margin-top: -1px !important;
  padding-top: 0 !important;
}

.page-model-body.model-single-body .model-single-hero{
  margin-top: 0 !important;
}

/* 個別ページ：ヒーロー上の白い余白を消す */
.model-single-page{
  margin-top: -48px !important;
}

/* 基本仕様テーブル調整 */
.model-single-spec{
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.model-single-spec__heading{
  margin: 0 0 38px;
}

.model-single-spec__table-wrap{
  width: 100%;
  background: #fff;
  border: 1px solid #eee9df;
}

.model-single-spec__table{
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.model-single-spec__table th,
.model-single-spec__table td{
  padding: 24px 32px;
  border-bottom: 1px solid #eee9df;
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.08em;
  vertical-align: middle;
}

.model-single-spec__table th{
  width: 32%;
  color: #4f4a45;
  background: #fbfaf7;
  border-right: 1px solid #eee9df;
  font-weight: 700;
  text-align: center;
}

.model-single-spec__table td{
  color: #211f1d;
  background: #fff;
  text-align: left;
}


/* 表の下の余白を詰める */
.model-single-main{
  padding-bottom: 80px;
}

.model-single-calendar-section{
  padding-top: 96px;
}

/* 基本仕様テーブル：最下部セルの線を正常化 */
.model-single-spec__table tr:last-child th,
.model-single-spec__table tr:last-child td{
  border-bottom: 1px solid #eee9df !important;
}

.model-single-spec__table-wrap{
  border-bottom: none !important;
}


/* 予約システムリンク表示 */
.model-single-reserve-link-box{
  padding: 70px 40px;
  text-align: center;
  background: #fff;
}

.model-single-reserve-link-box__text{
  margin: 0 0 36px;
  color: #5f5a55;
  font-size: 14px;
  line-height: 2.2;
  letter-spacing: 0.12em;
}

.model-single-reserve-system-button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 320px;
  min-height: 66px;
  padding: 0 42px;
  color: #fff !important;
  background: #eba896;
  box-shadow: 0 18px 32px rgba(235,168,150,0.28);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  transition: background 0.25s ease;
}

.model-single-reserve-system-button:hover{
  color: #fff !important;
  background: #1c1917;
}

.model-single-reserve-system-button svg{
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.model-single-calendar-box__note--link{
  display: block;
  margin: 48px auto 0;
  max-width: 680px;
  padding: 24px;
  border-top: none;
}


/* 予約iframe */
.model-single-iframe-wrap{
  width: 100%;
  background: #fff;
  padding: 0;
  overflow: hidden;
}

.model-single-reserve-frame{
  width: 100%;
  height: 1100px;
  border: 0;
  display: block;
  background: #fff;
}

@media screen and (max-width: 768px){
  .model-single-reserve-frame{
    height: 1600px;
  }
}