@charset "UTF-8";

/* =========================
  base
========================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    "Noto Sans JP",
    "Yu Gothic",
    "YuGothic",
    sans-serif;
  color: #333;
  line-height: 1.8;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.inner {
  width: min(1100px, 90%);
  margin: 0 auto;
}

/* =========================
  header
========================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.header-inner {
  width: min(1200px, 94%);
  height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo img{
  height: 42px;
  width: auto;
  display: block;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
}

.header-nav a {
  transition: .25s ease;
}

.header-nav a:hover {
  opacity: .7;
}

.header-nav .nav-reserve {
  background: #8a6847;
  color: #fff;
  padding: 10px 22px;
  border-radius: 999px;
}

/*========================================
Hero（使っている）
========================================*/

.hero{
    position:relative;
    overflow:hidden;
}

.hero picture,
.hero img{
    display:block;
    width:100%;
}

.hero img{
    height:auto;
}

/* PC */
@media (min-width:769px){

    .hero{
        max-width:1400px;
        margin-left:auto;
        margin-right: auto;
        margin-top:75px;
        
    }

}

/* SP */
@media (max-width:768px){

    .hero{
        margin-top:75px;
    }

}

/*========================================
Title（使っている）
========================================*/

.lp-title{
    padding:90px 20px 70px;
    background:#fff;
    text-align:center;
}

.lp-title .container{
    max-width:900px;
    margin:0 auto;
}

.lp-title__sub{
    display:inline-block;
    margin-bottom:22px;
    padding-bottom:10px;
    font-size:15px;
    font-weight:600;
    letter-spacing:.18em;
    color:#9c7d52;
    text-transform:uppercase;
    border-bottom:2px solid #d8c29a;
}

.lp-title__main{
    font-size:48px;
    font-weight:700;
    line-height:1.5;
    letter-spacing:.08em;
    color:#333;
}

/*--------------------------
Tablet（使っている）
--------------------------*/

@media (max-width:1024px){

.lp-title{
    padding:80px 20px 60px;
}

.lp-title__main{
    font-size:40px;
}

}

/*--------------------------
SP（使っている）
--------------------------*/

@media (max-width:768px){

.lp-title{
    padding:60px 20px 50px;
}

.lp-title__sub{
    font-size:13px;
    margin-bottom:18px;
}

.lp-title__main{
    font-size:30px;
    line-height:1.6;
}

}
/*========================================
Event（使っている）
========================================*/

.event{
    padding:90px 20px;
    background:#f8f6f2;
}

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

.event__title{
    font-size:36px;
    text-align:center;
    margin-bottom:50px;
    color:#333;
}

.event__box{
    background:#fff;
    border-radius:16px;
    padding:50px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.event__list{
    margin-bottom:40px;
}

.event__item{
    display:flex;
    border-bottom:1px solid #e8e8e8;
    padding:22px 0;
}

.event__item:first-child{
    padding-top:0;
}

.event__item dt{
    width:140px;
    flex-shrink:0;
    font-weight:700;
    color:#9c7d52;
}

.event__item dd{
    flex:1;
    color:#333;
    line-height:1.8;
}

.event__button{
    display:block;
    max-width:360px;
    margin:0 auto;
    padding:20px;
    border-radius:999px;
    background:#8a6a43;
    color:#fff;
    text-align:center;
    font-size:18px;
    font-weight:700;
    text-decoration:none;
    transition:.3s;
}

.event__button:hover{
    opacity:.85;
}

/*==========================
SP（使っている）
==========================*/

@media(max-width:768px){

.event{
    padding:60px 20px;
}

.event__title{
    font-size:28px;
    margin-bottom:35px;
}

.event__box{
    padding:30px 25px;
}

.event__item{
    display:block;
}

.event__item dt{
    width:auto;
    margin-bottom:8px;
}

.event__button{
    max-width:100%;
}

}
/*========================================
Highlight（使っている）
========================================*/

.highlight{

    padding:100px 20px;
    background:#ffffff;

}

.highlight .container{

    max-width:1100px;
    margin:0 auto;

}

.highlight__grid{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:50px;
    margin-top:60px;

}
.section-heading{
    margin-bottom:60px;
    text-align:center;
}

.section-heading__en{
    margin-bottom:14px;
    color:#9c7d52;
    font-size:42px;
    font-weight:500;
    letter-spacing:.2em;
    text-transform:uppercase;
}

.section-heading__jp{
    color:#333;
    font-size:24px;
    font-weight:700;
    line-height:1.4;
}

@media(max-width:768px){

.section-heading{
    margin-bottom:40px;
}

.section-heading__en{
    margin-bottom:10px;
    font-size:30px;
}

.section-heading__jp{
    font-size:14px;
}

}

/*--------------------------
Card（使っている）
--------------------------*/

.highlight__card{

    background:#fff;

}

/*--------------------------
Title（使っている）
--------------------------*/

.highlight__head{

    background:#595550;
    color:#fff;
    padding:18px 25px;
    min-height:90px;

    display:flex;
    align-items:center;
    justify-content:center;

}

.highlight__head h3{
    color:#fff;
    font-family:"Yu Mincho","Hiragino Mincho ProN","YuMincho","游明朝体",serif;
    font-size:34px;
    font-weight:700;
    line-height:1.6;
    letter-spacing:.08em;
    text-align:center;
}

/*--------------------------
Image（使っている）
--------------------------*/

.highlight__image{

    overflow:hidden;

}

.highlight__image img{

    width:100%;
    display:block;

}

/*--------------------------
Text（使っている）
--------------------------*/

.highlight__body{

    padding:28px 10px 0;

}

.highlight__body p{

    font-size:16px;
    line-height:2;
    color:#555;

}

/*========================================
Tablet（使っている）
========================================*/

@media(max-width:1024px){

.highlight__grid{

    gap:35px;

}

.highlight__head{

    min-height:80px;

}

.highlight__head h3{
    font-size:26px;
    line-height:1.5;
}

}

/*========================================
SP（使っている）
========================================*/

@media(max-width:768px){

.highlight{

    padding:70px 20px;

}

.highlight__grid{

    grid-template-columns:1fr;
    gap:50px;

}

.highlight__head{

    min-height:auto;
    padding:16px 18px;

}

.highlight__head h3{

    font-size:22px;

}

.highlight__body{

    padding:22px 5px 0;

}

.highlight__body p{

    font-size:15px;
    line-height:1.9;

}

}

/*========================================
Recommend（使っている）
========================================*/

.recommend{
    padding:90px 20px;
    background:#fff;
}

.recommend .container{
    max-width:760px;
    margin:0 auto;
}

.recommend__title{
    text-align:center;
    font-size:30px;
    color:#444;
    margin-bottom:45px;
    padding-bottom:15px;
    border-bottom:2px solid #d7d2cb;
}

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

.recommend__list li{
    position:relative;
    padding:18px 0 18px 42px;
    border-bottom:1px solid #ececec;
    font-size:18px;
    line-height:1.8;
}

.recommend__list li::before{
    content:"✔";
    position:absolute;
    left:0;
    top:18px;
    width:24px;
    height:24px;
    border-radius:50%;
    background:#6fa06d;
    color:#fff;
    font-size:13px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.recommend__cta{
    text-align:center;
    margin-top:50px;
}

.recommend__button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:320px;
    padding:18px 40px;
    background:#8c7554;
    color:#fff;
    font-size:18px;
    font-weight:700;
    text-decoration:none;
    border-radius:999px;
    transition:.3s;
}

.recommend__button::after{
    content:"›";
    margin-left:12px;
    font-size:22px;
    line-height:1;
}

.recommend__button:hover{
    background:#786244;
}


@media(max-width:768px){

.recommend{
    padding:70px 20px;
}

.recommend__title{
    font-size:24px;
    margin-bottom:35px;
}

.recommend__list li{
    font-size:16px;
    padding:16px 0 16px 38px;
}

.recommend__list li::before{
    top:16px;
}
.recommend__button{
    width:100%;
    min-width:auto;
    padding:16px 20px;
    font-size:17px;
}

}
/*========================================
Point（使っている）
========================================*/

.point{
    padding:100px 20px;
    background:#f8f6f2;
}

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

.point__item{
    margin-top:80px;
}

.point__number{
    display:block;
    padding-bottom:10px;
    margin-bottom:25px;
    border-bottom:1px solid #bfbfbf;
    font-size:15px;
    font-weight:700;
    color:#777;
    letter-spacing:.08em;
}

.point__title{
    margin-bottom:20px;
    color:#333;
    font-family:"Yu Mincho","Hiragino Mincho ProN","YuMincho","游明朝体",serif;
    font-size:42px;
    font-weight:700;
    line-height:1.5;
    letter-spacing:.08em;
}

.point__text{
    margin-bottom:35px;
    font-size:16px;
    line-height:2;
    color:#555;
}

.point__image img{
    width:100%;
    display:block;
}

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

@media(max-width:768px){

.point{
    padding:70px 20px;
}

.point__item{
    margin-top:60px;
}

.point__number{
    margin-bottom:20px;
}

.point__title{
    font-size:24px;
    line-height:1.5;
}

.point__text{
    margin-bottom:25px;
    font-size:15px;
    line-height:1.9;
}

}
/*========================================
Gallery（使っている）
========================================*/

.gallery{
    padding:100px 20px;
    background:#fff;
}

.gallery .container{
    max-width:1000px;
    margin:0 auto;
}

.gallery .section-title{
    text-align:center;
    font-size:42px;
    font-weight:300;
    letter-spacing:.08em;
    color:#444;
}

.gallery .section-subtitle{
    margin:12px 0 45px;
    text-align:center;
    font-size:15px;
    color:#777;
}

/*=========================
Slider（使っている）
=========================*/

.gallery__wrapper{
    position:relative;
}

.gallery__viewport{
    overflow:hidden;
    width:100%;
}

.gallery__track{
    display:flex;
    transition:transform .45s ease;
    will-change:transform;
}

.gallery__slide{
    flex:0 0 100%;
    user-select:none;
}

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

.gallery__dots{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
    margin-top:30px;
}

.gallery__dot{
    width:12px;
    height:12px;
    padding:0;
    margin:0;
    border:2px solid #555;
    border-radius:50%;
    background:#fff;
    appearance:none;
    -webkit-appearance:none;
    cursor:pointer;
    transition:.3s;
    flex:0 0 12px;
}

.gallery__dot.active{
    background:#8c7554;
    border-color:#8c7554;
}


.gallery__dot:hover{
    border-color:#8c7554;
}

@media(max-width:768px){

.gallery__dots{
    gap:10px;
    margin-top:24px;
}

.gallery__dot{
    width:10px;
    height:10px;
    min-width:10px;
    min-height:10px;
}


}



/*=========================
Button（使っている）
=========================*/

.gallery__prev,
.gallery__next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:54px;
    height:54px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.92);
    box-shadow:0 8px 20px rgba(0,0,0,.18);
    color:#555;
    font-size:24px;
    cursor:pointer;
    transition:.25s;
    z-index:20;
}

.gallery__prev:hover,
.gallery__next:hover{
    background:#fff;
    transform:translateY(-50%) scale(1.08);
}

.gallery__prev{
    left:18px;
}

.gallery__next{
    right:18px;
}

/*=========================
Tablet（使っている）
=========================*/

@media(max-width:1024px){

.gallery{
    padding:80px 20px;
}

.gallery .section-title{
    font-size:36px;
}

.gallery__prev,
.gallery__next{
    width:48px;
    height:48px;
}

}

/*=========================
SP（使っている）
=========================*/

@media(max-width:768px){

.gallery{
    padding:70px 20px;
}

.gallery .section-title{
    font-size:30px;
}

.gallery .section-subtitle{
    margin-bottom:30px;
    font-size:14px;
}

.gallery__prev,
.gallery__next{
    width:42px;
    height:42px;
    font-size:18px;
}

.gallery__prev{
    left:8px;
}

.gallery__next{
    right:8px;
}

}

/*========================================
Event Intro
========================================*/
.event-intro{
    padding:90px 20px;
    background:#f8f6f2;
}
.event-intro .container{
    max-width:900px;
    margin:0 auto;
}
.event-intro__heading{
    margin-bottom:60px;
    text-align:center;
}
.event-intro__sub{
    display:inline-block;
    margin:0 0 22px;
    padding-bottom:10px;
    border-bottom:2px solid #d8c29a;
    color:#9c7d52;
    font-size:15px;
    font-weight:600;
    letter-spacing:.18em;
}
.event-intro__title{
    margin:0;
    color:#333;
    font-family:"Yu Mincho","Hiragino Mincho ProN","YuMincho","游明朝体",serif;
    font-size:48px;
    font-weight:700;
    line-height:1.5;
    letter-spacing:.08em;
}
.event-intro__info{
    padding:50px;
    background:#fff;
    border-radius:16px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}
.event-intro__info-title{
    margin:0 0 35px;
    color:#333;
    font-size:30px;
    text-align:center;
}
.event-intro__list{
    margin:0 0 40px;
}
.event-intro__item{
    display:flex;
    padding:22px 0;
    border-bottom:1px solid #e8e8e8;
}
.event-intro__item:first-child{
    padding-top:0;
}
.event-intro__item dt{
    width:140px;
    flex-shrink:0;
    color:#9c7d52;
    font-weight:700;
}
.event-intro__item dd{
    flex:1;
    margin:0;
    color:#333;
    line-height:1.8;
}
.event-intro__cta{
    text-align:center;
}
.event-intro__button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:360px;
    padding:18px 40px;
    border-radius:999px;
    background:#8a6a43;
    color:#fff;
    font-family:"Yu Mincho","Hiragino Mincho ProN","YuMincho","游明朝体",serif;
    font-size:20px;
    font-weight:700;
    letter-spacing:.08em;
    text-decoration:none;
    transition:.3s;
}

.event-intro__button::after{
    content:"›";
    margin-left:12px;
    font-size:22px;
    line-height:1;
    font-family:sans-serif;
}

.event-intro__button:hover{
    opacity:.85;
}
.event-intro__button::after{
    content:"›";
    margin-left:12px;
    font-size:22px;
    line-height:1;
}
.event-intro__button:hover{
    opacity:.85;
}
@media(max-width:768px){
.event-intro{
    padding:60px 20px;
}
.event-intro__heading{
    margin-bottom:40px;
}
.event-intro__sub{
    margin-bottom:18px;
    font-size:13px;
}
.event-intro__title{
    font-size:30px;
    line-height:1.6;
}
.event-intro__info{
    padding:30px 25px;
}
.event-intro__info-title{
    margin-bottom:25px;
    font-size:26px;
}
.event-intro__item{
    display:block;
    padding:18px 0;
}
.event-intro__item dt{
    width:auto;
    margin-bottom:6px;
}
.event-intro__button{
    width:100%;
    min-width:auto;
    padding:16px 20px;
    font-size:18px;
}
}












/* =========================
  button
========================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1.4;
  transition: .25s ease;
}

.btn:hover {
  opacity: .86;
  transform: translateY(-2px);
}

.btn-main {
  background: #8a6847;
  color: #fff;
}

.btn-sub {
  background: #fff;
  color: #4b3726;
}

.btn-tel {
  background: #333;
  color: #fff;
}

/* =========================
  section common
========================= */

.section {
  padding: 100px 0;
}

.section-en {
  margin: 0 0 8px;
  color: #8a6847;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
  text-align: center;
}

.section h2 {
  margin: 0 0 34px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.45;
  text-align: center;
  color: #2d241d;
}

.lead {
  max-width: 820px;
  margin: 0 auto 56px;
  text-align: center;
  font-size: 17px;
}

/* =========================
  concept
========================= */

.concept {
  background: #f8f4ee;
}

.concept-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 26px;
}

.concept-card {
  background: #fff;
  border-radius: 20px;
  padding: 34px 28px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.08);
}

.concept-card h3 {
  margin: 0 0 12px;
  font-size: 21px;
  color: #2d241d;
}

.concept-card p {
  margin: 0;
}

/* =========================
  exterior
========================= */

.exterior-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.exterior-photo {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0,0,0,0.08);
}

.exterior-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.exterior-text h3 {
  margin: 0 0 18px;
  font-size: 28px;
  line-height: 1.5;
  color: #2d241d;
}

.exterior-text p {
  margin: 0 0 24px;
}

.exterior-text ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.exterior-text li {
  position: relative;
  padding: 10px 0 10px 28px;
  border-bottom: 1px solid #ddd;
  font-weight: 700;
}

.exterior-text li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #8a6847;
}

/* =========================
  air
========================= */

.air{
  background:#fff;
}

.air .inner{
  text-align:center;
}

.air h2{
  margin-bottom:24px;
}

.air .lead{
  max-width:820px;
  margin:0 auto 32px;
}

/* =========================
  award
========================= */

.air-award{
  max-width:620px;
  margin:0 auto 46px;
  padding:22px 28px;
  border:2px solid #c8a46a;
  border-radius:18px;
  background:#fffaf2;
  color:#4b3726;
  box-shadow:0 14px 34px rgba(0,0,0,0.08);
  text-align:center;
}

.air-award-label{
  display:inline-block;
  margin-bottom:10px;
  padding:6px 18px;
  border-radius:999px;
  background:#8a6847;
  color:#fff;
  font-size:15px;
  font-weight:700;
  letter-spacing:.08em;
}

.air-award-text{
  display:block;
  font-size:17px;
  font-weight:700;
  line-height:1.8;
}

/* =========================
  air grid
========================= */

.air-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  margin-top:48px;
}

/* =========================
  air card
========================= */

.air-card{
  overflow:hidden;
  padding:0;
  border-radius:20px;
  background:#f8f4ee;
  box-shadow:0 14px 34px rgba(0,0,0,0.06);
  transition:.3s ease;
}

.air-card:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 40px rgba(0,0,0,0.08);
}

/* =========================
  air photo
========================= */

.air-photo{
  overflow:hidden;
}

.air-photo img{
  width:100%;
  aspect-ratio:16 / 10;
  object-fit:cover;
  display:block;
  transition:0.6s ease;
}

.air-card:hover .air-photo img{
  transform:scale(1.04);
}

/* =========================
  air body
========================= */

.air-body{
  padding:24px 24px 30px;
  text-align:left;
}

.air-body h3{
  margin:0 0 10px;
  font-size:21px;
  line-height:1.5;
  color:#2d241d;
}

.air-body p{
  margin:0;
  line-height:1.9;
}

/* =========================
  air link
========================= */

.air-link{
  margin-top:42px;
  text-align:center;
}

.air-link a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:280px;
  padding:16px 28px;
  border-radius:999px;
  background:#8a6847;
  color:#fff;
  font-weight:700;
  transition:.3s ease;
  box-shadow:0 10px 24px rgba(0,0,0,0.12);
}

.air-link a:hover{
  opacity:.85;
  transform:translateY(-2px);
}

/* =========================
  point
========================= */

.point {
  background: #f8f4ee;
}

.point-list {
  display: grid;
  gap: 22px;
}

.point-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  padding: 32px;
  border: 1px solid #e5d9cc;
  border-radius: 20px;
  background: #fff;
}

.point-item span {
  color: #8a6847;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}

.point-item h3 {
  margin: 0 0 8px;
  font-size: 22px;
  color: #2d241d;
}

.point-item p {
  margin: 0;
}

/* =========================
  location
========================= */

.location-intro{
  max-width:820px;
  margin:0 auto 46px;
  text-align:center;
}

.location-intro h3{
  margin:0 0 12px;
  font-size:26px;
  color:#2d241d;
}

.location-intro p{
  margin:0;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
}

.location-card{
  overflow:hidden;
  border-radius:18px;
  background:#fff;
  border:1px solid #e5d9cc;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
  padding:0;
  text-align:left;
  transition:.3s ease;
}

.location-card:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 40px rgba(0,0,0,0.08);
}

.location-photo{
  overflow:hidden;
}

.location-photo img{
  width:100%;
  aspect-ratio:4 / 3;
  object-fit:cover;
  display:block;
}

.location-body{
  padding:18px 18px 22px;
}

.location-body h3{
  margin:0 0 4px;
  font-size:18px;
  color:#2d241d;
}

.location-body p{
  margin:0;
  color:#8a6847;
  font-weight:700;
}

/* =========================
  access
========================= */

.location-access{
  margin-top:70px;
}

.location-access-head{
  margin-bottom:28px;
  text-align:center;
}

.location-access-en{
  margin:0 0 8px;
  color:#8a6847;
  font-size:13px;
  font-weight:700;
  letter-spacing:.18em;
}

.location-access-head h3{
  margin:0 0 14px;
  font-size:34px;
  color:#2d241d;
}

.location-access-head p{
  margin:0;
}

.location-map{
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 14px 34px rgba(0,0,0,0.08);
}

.location-access-buttons{
  margin-top:24px;
  text-align:center;
}

.location-map-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:280px;
  padding:16px 28px;
  border-radius:999px;
  background:#8a6847;
  color:#fff;
  font-weight:700;
  transition:.3s ease;
  box-shadow:0 10px 24px rgba(0,0,0,0.12);
}

.location-map-btn:hover{
  opacity:.85;
  transform:translateY(-2px);
}

.location-note{
  margin:28px 0 0;
  text-align:center;
  font-weight:700;
  color:#4b3726;
}

/* =========================
  recommend
========================= */

.recommend {
  background: #f8f4ee;
}

.recommend-box {
  max-width: 820px;
  margin: 0 auto;
  padding: 42px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.08);
}

.recommend-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.recommend-box li {
  position: relative;
  padding: 14px 0 14px 34px;
  border-bottom: 1px solid #eee;
  font-weight: 700;
}

.recommend-box li:last-child {
  border-bottom: none;
}

.recommend-box li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 14px;
  color: #8a6847;
}

/* =========================
  reserve
========================= */

.reserve {
  padding: 110px 0 130px;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(
      rgba(20,15,10,0.48),
      rgba(20,15,10,0.48)
    ),
    url("images/hero-pc.jpg") center center / cover no-repeat;
}

.reserve .section-en {
  color: #fff;
}

.reserve h2 {
  margin: 0 0 20px;
  font-size: clamp(30px, 4.5vw, 48px);
  line-height: 1.45;
}

.reserve p {
  margin: 0 0 36px;
}

.reserve-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* =========================
  footer
========================= */

.site-footer{
  padding:50px 0 80px;
  background:#2d241d;
  color:#fff;
}

.footer-inner{
  width:min(1100px,90%);
  margin:0 auto;
}

.footer-company{
  margin-bottom:24px;
}

.footer-logo{
  margin:0 0 12px;
  font-size:22px;
  font-weight:700;
  letter-spacing:.08em;
}

.footer-address{
  margin:0;
  line-height:1.9;
  opacity:.8;
}

.footer-copy{
  padding-top:24px;
  border-top:1px solid rgba(255,255,255,.15);
  font-size:13px;
  opacity:.6;
}
.footer-site-link{
  margin-top:20px;
}

.footer-site-link a{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:#fff;
  font-weight:700;
  opacity:.85;
  transition:.3s ease;
}

.footer-site-link a:hover{
  opacity:1;
}
.footer-site-link a::after{
  content:"→";
}

/* =========================
  fixed cta
========================= */

.fixed-cta {
  display: none;
}

/* =========================
  responsive
========================= */

@media (max-width:768px){

  body{
    padding-bottom:58px;
  }

  .header-inner{
    height:62px;
  }

  .site-logo img{
    height:34px;
  }

  .header-nav{
    gap:0;
  }

  .header-nav a:not(.nav-reserve){
    display:none;
  }

  .header-nav .nav-reserve{
    padding:8px 16px;
    font-size:13px;
  }


  .section{
    padding:72px 0;
  }

  .section h2,
  .section-en{
    text-align:left;
  }

  .lead{
    text-align:left;
    font-size:15px;
    margin-bottom:36px;
  }

  .concept-grid,
  .exterior-layout,
  .air-grid,
  .location-grid{
    grid-template-columns:1fr;
  }

  .exterior-layout{
    gap:28px;
  }

  .exterior-text h3{
    font-size:22px;
  }

  .air .inner{
    text-align:left;
  }

  .air-award{
    padding:20px 18px;
    margin-bottom:34px;
    text-align:left;
  }

  .air-award-label{
    font-size:14px;
  }

  .air-award-text{
    font-size:15px;
    line-height:1.7;
  }

  .air-grid{
    gap:18px;
    margin-top:34px;
  }

  .air-photo img{
    aspect-ratio:4 / 3;
  }

  .air-body{
    padding:20px 18px 24px;
  }

  .air-body h3{
    font-size:19px;
  }

  .air-link{
    margin-top:32px;
  }

  .air-link a{
    width:100%;
    min-width:auto;
  }

  .point-item{
    grid-template-columns:1fr;
    gap:12px;
    padding:24px;
  }

  .point-item span{
    font-size:30px;
  }

  .location-intro{
    text-align:left;
    margin-bottom:34px;
  }

  .location-intro h3{
    font-size:22px;
  }

  .location-grid{
    gap:14px;
  }

  .location-body{
    padding:16px 16px 20px;
  }

  .location-access{
    margin-top:48px;
  }

  .location-access-head{
    text-align:left;
  }

  .location-access-head h3{
    font-size:26px;
  }

  .location-map iframe{
    height:320px;
  }

  .location-map-btn{
    width:100%;
    min-width:auto;
  }

  .location-note{
    text-align:left;
  }

  .recommend-box{
    padding:26px 22px;
  }

  .reserve{
    padding:80px 0 100px;
    background:
      linear-gradient(
        rgba(20,15,10,0.45),
        rgba(20,15,10,0.45)
      ),
      url("images/hero-sp.jpg") center center / cover no-repeat;
  }

  .reserve-buttons{
    flex-direction:column;
  }

  .fixed-cta{
    position:fixed;
    left:0;
    bottom:0;
    z-index:200;
    display:grid;
    grid-template-columns:1fr 1fr;
    width:100%;
  }

  .fixed-cta a{
    display:flex;
    align-items:center;
    justify-content:center;
    height:58px;
    color:#fff;
    font-weight:700;
    background: #8a6847;
  }

  .fixed-cta a:first-child{
    background:#333;
  }

  .fixed-cta a:last-child{
    background:#8a6847;
  }

}
.price{
  background:#f8f4ee;
}

.price-box{
  max-width:820px;
  margin:0 auto;
  padding:42px;
  border-radius:24px;
  background:#fff;
  box-shadow:0 14px 34px rgba(0,0,0,0.08);
  text-align:center;
}

.price-label{
  margin:0 0 8px;
  color:#8a6847;
  font-weight:700;
}

.price-main{
  margin:0 0 26px;
  font-size:30px;
  font-weight:700;
  color:#2d241d;
}

.price-main span{
  font-size:64px;
  line-height:1;
}

.loan-box{
  margin:0 0 34px;
  padding:32px;
  border-radius:22px;
  background:
    linear-gradient(
      135deg,
      #8a6847 0%,
      #6f5238 100%
    );
  color:#fff;
  box-shadow:0 18px 40px rgba(0,0,0,0.12);
}

.loan-title{
  margin:0 0 12px;
  font-weight:700;
  opacity:.8;
}

.loan-price{
  margin:0;
  font-size:42px;
  font-weight:700;
  line-height:1.2;
    letter-spacing:.03em;
}

.loan-bonus{
  margin:10px 0 12px;
  font-size:16px;
  font-weight:700;
  opacity:.9;
}
.loan-note{
  margin:0;
  font-size:12px;
  opacity:.7;
}

.price-equipment{
  margin:0 0 34px;
  padding:28px;
  border-radius:18px;
  background:#f8f4ee;
  text-align:left;
}

.price-equipment h3{
  margin:0 0 16px;
  font-size:20px;
  color:#2d241d;
}

.price-equipment ul{
  margin:0;
  padding:0;
  list-style:none;
}

.price-equipment li{
  position:relative;
  padding:10px 0 10px 28px;
  border-bottom:1px solid #ddd;
  font-weight:700;
}

.price-equipment li:last-child{
  border-bottom:none;
}

.price-equipment li::before{
  content:"✓";
  position:absolute;
  left:0;
  color:#8a6847;
}

.price-equipment span{
  display:block;
  margin-top:4px;
  font-size:12px;
  color:#666;
  font-weight:400;
}

.price-spec{
  margin:0 0 34px;
  border-top:1px solid #e5d9cc;
}

.price-spec div{
  display:grid;
  grid-template-columns:160px 1fr;
  padding:14px 0;
  border-bottom:1px solid #e5d9cc;
  text-align:left;
}

.price-spec dt{
  color:#8a6847;
  font-weight:700;
}

.price-spec dd{
  margin:0;
}

@media (max-width:768px){

  .price-box{
    padding:28px 22px;
  }

  .price-main{
    font-size:24px;
  }

  .price-main span{
    font-size:48px;
  }

  .loan-box{
    padding:22px 18px;
  }

  .loan-price{
    font-size:30px;
  }

  .price-equipment{
    padding:22px 18px;
  }

  .price-spec div{
    grid-template-columns:1fr;
    gap:4px;
  }

}
/* =========================
  lifestyle
========================= */

.lifestyle{
  background:#f8f4ee;
}

.lifestyle .lead{
  margin-bottom:48px;
}

.lifestyle-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.lifestyle-card{
  padding:34px 28px;
  border-radius:22px;
  background:#fff;
  box-shadow:0 14px 34px rgba(0,0,0,0.06);
  transition:.3s ease;
}

.lifestyle-card:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 40px rgba(0,0,0,0.08);
}

.lifestyle-card h3{
  margin:0 0 14px;
  font-size:22px;
  line-height:1.5;
  color:#2d241d;
}

.lifestyle-card p{
  margin:0;
  line-height:1.9;
}

/* =========================
  spec
========================= */

.spec{
  background:#fff;
}

.spec .lead{
  margin-bottom:48px;
}

.spec-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}

.spec-card{
  padding:34px 26px;
  border-radius:22px;
  background:#f8f4ee;
  text-align:center;
  box-shadow:0 14px 34px rgba(0,0,0,0.05);
  transition:.3s ease;
}

.spec-card:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 40px rgba(0,0,0,0.08);
}

.spec-card span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:88px;
  height:34px;
  margin-bottom:18px;
  padding:0 18px;
  border-radius:999px;
  background:#8a6847;
  color:#fff;
  font-size:13px;
  font-weight:700;
  letter-spacing:.08em;
}

.spec-card h3{
  margin:0 0 12px;
  font-size:22px;
  color:#2d241d;
}

.spec-card p{
  margin:0;
  line-height:1.8;
}

/* =========================
  responsive
========================= */

@media (max-width:768px){

  .lifestyle .lead,
  .spec .lead{
    margin-bottom:34px;
  }

  .lifestyle-grid,
  .spec-grid{
    grid-template-columns:1fr;
    gap:18px;
  }

  .lifestyle-card{
    padding:26px 22px;
  }

  .lifestyle-card h3{
    font-size:20px;
  }

  .spec-card{
    padding:28px 22px;
    text-align:left;
  }

  .spec-card span{
    margin-bottom:14px;
  }

  .spec-card h3{
    font-size:20px;
  }

}
/* =========================
  energy
========================= */

.energy{
  background:#f8f4ee;
}

.energy .lead{
  margin-bottom:46px;
}

.energy-box{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:34px;
  align-items:stretch;
}

.energy-text{
  padding:40px;
  border-radius:24px;
  background:#fff;
  box-shadow:0 14px 34px rgba(0,0,0,0.06);
}

.energy-text h3{
  margin:0 0 18px;
  font-size:32px;
  line-height:1.5;
  color:#2d241d;
}

.energy-text p{
  margin:0 0 18px;
}

.energy-text p:last-child{
  margin-bottom:0;
}

.energy-point{
  display:grid;
  gap:18px;
}

.energy-mini-card{
  padding:28px 24px;
  border-radius:22px;
  background:#fff;
  box-shadow:0 14px 34px rgba(0,0,0,0.05);
}

.energy-mini-card strong{
  display:block;
  margin-bottom:10px;
  color:#8a6847;
  font-size:26px;
  line-height:1;
}

.energy-mini-card span{
  line-height:1.8;
}

/* =========================
  responsive
========================= */

@media (max-width:768px){

  .energy .lead{
    margin-bottom:34px;
  }

  .energy-box{
    grid-template-columns:1fr;
    gap:20px;
  }

  .energy-text{
    padding:28px 22px;
  }

  .energy-text h3{
    font-size:24px;
  }

  .energy-mini-card{
    padding:24px 20px;
  }

  .energy-mini-card strong{
    font-size:22px;
  }

}

/* =========================
  reserve form calendar
========================= */

.reserve-form-section{
  background:#2d241d;
}

.reserve-form-section .section-en,
.reserve-form-section h2,
.reserve-form-section .reserve-lead{
  color:#fff;
}

.reserve-lead{
  margin:0 0 38px;
}

.reserve-form-wrap{
  max-width:980px;
  margin:0 auto;
  padding:42px;
  border-radius:24px;
  background:#fff;
  color:#333;
  text-align:left;
  box-shadow:0 18px 44px rgba(0,0,0,.18);
}

.reserve-form-note{
  margin:0 0 26px;
  text-align:center;
  font-weight:700;
}

.reserve-form-note a{
  color:#8a6847;
  text-decoration:underline;
}

.hp-wrap{
  position:absolute;
  left:-9999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}

.hp-wrap input{
  pointer-events:none;
}

.cf-badge{
  display:inline-block;
  margin-left:8px;
  padding:2px 8px;
  border-radius:999px;
  font-size:12px;
  line-height:1.5;
  vertical-align:middle;
}

.cf-badge.req{
  background:#8a6847;
  color:#fff;
}

.reservation-weekly{
  margin:0 0 34px;
  padding:0;
  border:0;
}

.reservation-weekly legend{
  margin-bottom:12px;
  font-size:22px;
  font-weight:700;
  color:#2d241d;
}

.week-scroll-note{
  margin:0 0 14px;
  font-size:13px;
  color:#666;
}

.week-table-block{
  margin-bottom:26px;
}

.week-month-label{
  margin:0 0 8px;
  color:#8a6847;
  font-weight:700;
}

.week-table-scroll{
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
}

.week-table{
  min-width:760px;
  width:100%;
  border-collapse:separate;
  border-spacing:6px;
}

.week-date{
  padding:10px 8px;
  border-radius:10px;
  background:#f8f4ee;
  color:#2d241d;
  text-align:center;
  white-space:nowrap;
  font-size:14px;
}

.month-mini{
  display:block;
  font-size:11px;
  color:#8a6847;
}

.week-cell{
  height:56px;
  text-align:center;
  vertical-align:middle;
}

.week-cell.is-holiday,
.week-cell.is-disabled{
  border-radius:10px;
  background:#eee;
  color:#aaa;
  font-weight:700;
}

.week-slot-radio{
  position:absolute;
  opacity:0;
  pointer-events:none;
}

.week-slot-label{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:8px 10px;
  border:1px solid #e5d9cc;
  border-radius:10px;
  background:#fff;
  color:#2d241d;
  font-weight:700;
  cursor:pointer;
  transition:.2s ease;
}

.week-slot-label:hover{
  background:#f8f4ee;
}

.week-slot-radio:checked + .week-slot-label{
  background:#8a6847;
  border-color:#8a6847;
  color:#fff;
}

.week-slot-label.is-disabled{
  cursor:default;
  background:#eee;
  color:#aaa;
}

.week-selected-text{
  margin:14px 0 0;
  padding:14px 18px;
  border-radius:12px;
  background:#f8f4ee;
  color:#2d241d;
  font-weight:700;
}

.datetime-error{
  margin:0 0 12px;
  color:#c00;
  font-weight:700;
}

.reserve-form-fields{
  display:grid;
  gap:18px;
}

.reserve-form-fields label{
  display:block;
  font-weight:700;
  color:#2d241d;
}

.reserve-form-fields input,
.reserve-form-fields textarea{
  width:100%;
  margin-top:8px;
  padding:14px 16px;
  border:1px solid #d8c7b5;
  border-radius:10px;
  font:inherit;
  background:#fff;
}

.reserve-form-fields textarea{
  resize:vertical;
}

.reserve-submit{
  display:flex;
  align-items:center;
  justify-content:center;
  width:min(320px,100%);
  margin:32px auto 0;
  padding:16px 28px;
  border:0;
  border-radius:999px;
  background:#8a6847;
  color:#fff;
  font-weight:700;
  font:inherit;
  cursor:pointer;
  transition:.3s ease;
  box-shadow:0 10px 24px rgba(0,0,0,.12);
}

.reserve-submit:hover{
  opacity:.86;
  transform:translateY(-2px);
}

@media (max-width:768px){

  .reserve-form-wrap{
    padding:28px 18px;
    border-radius:20px;
  }

  .reserve-form-note{
    text-align:left;
  }

  .reservation-weekly legend{
    font-size:20px;
  }

  .week-table{
    min-width:680px;
    border-spacing:5px;
  }

  .week-date{
    font-size:13px;
  }

  .week-slot-label{
    min-height:46px;
    font-size:13px;
  }

  .reserve-submit{
    width:100%;
  }

}

.concept-plan{
  margin: 2.5em auto 3em;
}

.concept-plan picture{
  display: block;
}

.concept-plan img{
  width: 100%;
  max-width: 1000px;
  height: auto;
  display: block;
  margin: 0 auto;

  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.reserve-table {
  table-layout: fixed;
  width: 100%;
}

.reserve-table th,
.reserve-table td {
  width: calc(100% / 7);
}

.reserve-table .is-empty {
  visibility: hidden;
  pointer-events: none;
}

.reserve-table td.is-contact{
  font-size:12px;
  font-weight:700;
  color:#8a6847;
  background:#fff7ec;
  line-height:1.4;
  border-radius: 10px;
}

.week-cell.is-contact{
    background:#fff7ec;
}

.week-slot-label.is-contact{
    display:block;
    color:#8a6847;
    font-weight:bold;
    line-height:1.3;
    font-size:12px;
}