@charset "UTF-8";

/* =========================
  reserve form section
========================= */

.reserve-form-section{
  padding:110px 0 130px;
  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;
  color:#fff;
}

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

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

.reserve-form-section .reserve-lead{
  margin:0 0 38px;
  text-align:center;
  line-height:2;
}

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

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

@media (max-width:768px){

  .reserve-form-section{
    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-form-wrap{
    padding:28px 18px;
    border-radius:20px;
  }

  .reserve-form-section .reserve-lead{
    text-align:left;
  }

}


/*
ついか
*/

.reserve-form-section .reserve-form{
  width:100%;
}

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

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

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

.reserve-form-section .reserve-form-fields textarea{
  resize:vertical;
  min-height:140px;
}

.reserve-form-section .form-badge{
  display:inline-block;
  margin-left:8px;
  padding:2px 8px;
  border-radius:999px;
  font-size:12px;
  font-style:normal;
  line-height:1.5;
}

.reserve-form-section .form-badge.req{
  background:#8a6847;
  color:#fff;
}

.reserve-form-section .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:inherit;
  font-weight:700;
  cursor:pointer;
}

/*
追加２
*/

.reserve-form-section .reserve-calendar{
  margin:0 0 34px;
  padding:0;
  border:0;
}

.reserve-form-section .reserve-calendar legend{
  margin:0 0 12px;
  font-size:22px;
  font-weight:700;
  color:#2d241d;
}

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

.reserve-form-section .reserve-table-block{
  margin-bottom:18px;
}

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

.reserve-form-section .reserve-table-scroll{
  width:100%;
  max-width:100%;
  overflow-x:auto;
  overflow-y:hidden;
  -webkit-overflow-scrolling:touch;
}

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

.reserve-form-section .reserve-table th{
  padding:10px 8px;
  border-radius:10px;
  background:#f8f4ee;
  color:#2d241d;
  text-align:center;
  white-space:nowrap;
  font-size:14px;
}

.reserve-form-section .reserve-table td{
  height:56px;
  text-align:center;
  vertical-align:middle;
}

.reserve-form-section .reserve-radio{
  position:absolute;
  opacity:0;
  pointer-events:none;
}

.reserve-form-section .reserve-slot{
  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;
}

.reserve-form-section .reserve-slot:hover{
  background:#f8f4ee;
}

.reserve-form-section .reserve-radio:checked + .reserve-slot{
  background:#8a6847;
  border-color:#8a6847;
  color:#fff;
}

.reserve-form-section .is-closed,
.reserve-form-section .is-full{
  border-radius:10px;
  background:#eee;
  color:#aaa;
  font-weight:700;
}

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

@media (max-width:768px){
  .reserve-form-section .reserve-table{
    min-width:680px;
    border-spacing:5px;
  }

  .reserve-form-section .reserve-calendar legend{
    font-size:20px;
  }

  .reserve-form-section .reserve-table th{
    font-size:13px;
  }

  .reserve-form-section .reserve-slot{
    min-height:46px;
    font-size:13px;
  }
}
/*
追加３
*/
/* =========================
  calendar overflow fix
========================= */

.reserve-form-section .reserve-form-wrap,
.reserve-form-section .reserve-form,
.reserve-form-section .reserve-calendar,
.reserve-form-section .reserve-table-block{
  width:100%;
  max-width:100%;
  min-width:0;
  box-sizing:border-box;
}

.reserve-form-section .reserve-calendar{
  overflow:hidden;
}

.reserve-form-section .reserve-table-scroll{
  display:block;
  width:100%;
  max-width:100%;
  min-width:0;
  overflow-x:auto;
  overflow-y:hidden;
  -webkit-overflow-scrolling:touch;
  box-sizing:border-box;
}

.reserve-form-section .reserve-table{
  width:100%;
/*
  width:760px;
*/
  min-width:760px;
  max-width:none;
}

@media (max-width:768px){
  .reserve-form-section .reserve-table{
    width:560px !important;
    min-width:560px !important;
    max-width:none !important;
  }
}
/* =========================
  page width lock
========================= */

html,
body{
  width:100%;
  max-width:100%;
  overflow-x:hidden;
}

.site-header,
.site-footer,
.fixed-cta{
  width:100%;
  max-width:100%;
  overflow:hidden;
  box-sizing:border-box;
}

.header-inner,
.footer-inner{
  width:min(1100px,90%);
  max-width:100%;
  box-sizing:border-box;
}

@media (max-width:768px){

  .fixed-cta{
    left:0;
    right:0;
    bottom:0;
    width:100vw;
    max-width:100vw;
  }

  .fixed-cta a{
    min-width:0;
  }

}
/* =========================
  header width fix
========================= */

.site-header{
  left:0;
  right:0;
  width:100%;
  max-width:100%;
  overflow:hidden;
}

.header-inner{
  width:min(1200px,94%);
  max-width:100%;
  min-width:0;
  box-sizing:border-box;
}

.site-logo{
  flex:0 0 auto;
}

.header-nav{
  min-width:0;
}

@media (max-width:768px){

  .site-header{
    width:100vw;
    max-width:100vw;
  }

  .header-inner{
    width:94%;
    max-width:94%;
    margin:0 auto;
  }

  .site-logo img{
    max-width:160px;
  }

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

  .header-nav .nav-reserve{
    white-space:nowrap;
  }

}
/* =========================
  final horizontal scroll lock
========================= */

html,
body{
  width:100%;
  max-width:100%;
  overflow-x:hidden !important;
}

body{
  position:relative;
}

main,
.site-header,
.site-footer,
.fixed-cta,
.reserve-form-section{
  max-width:100vw;
  overflow-x:hidden;
}

.reserve-form-section *,
.site-header *,
.site-footer *,
.fixed-cta *{
  max-width:100%;
  box-sizing:border-box;
}

/* カレンダーだけは横スクロールを許可 */
.reserve-form-section .reserve-table-scroll{
  overflow-x:auto !important;
  max-width:100%;
}

/* テーブルは横スクロール用に幅を持たせる */
.reserve-form-section .reserve-table{
  max-width:none !important;
}