@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;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    url("images/hero-pc.jpg") center 42% / cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1100px, 90%);
  margin: 0 auto;
  padding-top: 74px;
  color: #fff;
}

.hero-label {
  display: inline-block;
  margin: 0 0 24px;
  padding: 7px 18px;
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  font-size: 14px;
  font-weight: 700;
  backdrop-filter: blur(6px);
}

.hero h1 {
  margin: 0 0 24px;
  font-size: clamp(36px, 5.3vw, 66px);
  line-height: 1.35;
  letter-spacing: .04em;
}

.hero-lead {
  margin: 0 0 28px;
  font-size: 18px;
}

.hero h1,
.hero-lead,
.hero-label {
  text-shadow:
    0 2px 12px rgba(0,0,0,0.28);
}

.hero-info {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-info span {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255,255,255,0.92);
  color: #4b3726;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

/* =========================
  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;
  }

  .hero{
    min-height:92vh;
    align-items:flex-start;
  }

  .hero-bg{
    background:
      url("images/hero-sp.jpg") 58% center / cover no-repeat;
  }

  .hero-content{
    padding-top:110px;
  }

  .hero-label{
    font-size:12px;
  }

  .hero h1{
    font-size:34px;
  }

  .hero-lead{
    font-size:15px;
  }

  .hero-info span{
    font-size:12px;
    padding:7px 12px;
  }

  .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;
  }

  .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%;
  }

}
