@charset "UTF-8";
@import "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css";
@import url('https://fonts.googleapis.com/css2?family=Secular+One&display=swap');

/* -------------------------------------------------------
// # Reset
// ------------------------------------------------------*/
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,button,textarea,select,p,blockquote,th,td{margin:0;padding:0}
table{border-collapse:collapse;border-spacing:0}
fieldset,img{border:0}
address,button,caption,cite,code,dfn,em,input,optgroup,option,select,strong,textarea,th,var{font:inherit}
del,ins{text-decoration:none}
caption,th{text-align:left}
h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}
li { list-style: none; }
q:before,q:after{content:''}
abbr,acronym{border:0;font-variant:normal}
sup{vertical-align:baseline}
sub{vertical-align:baseline}
figure{margin-inline-start: 0;margin-inline-end: 0;}

/* -------------------------------------------------------
// # Color
// ------------------------------------------------------*/
:root {
  --color-main: #014642;
  --color-text: #000000;
  --color-strong: #bb0000;
  --color-active: #fffacd;
  --color-orange: #fe7011;
  --color-saturday: #0439be;
  --color-link: #0000ff;
  --color-border: #777777;
  --color-gray: #999999;
}

/* -------------------------------------------------------
// # typography
// ------------------------------------------------------*/
html {
  font-family: Arial, Helvetica, "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  font-feature-settings: "palt" 1;
  color: var(--color-text);
}
h2 i,
.calendar-item li:not(.frontrow) > * {
  font-family: "Secular One", sans-serif;
  font-weight: 900;
}

/* -------------------------------------------------------
// # Skeltone
// ------------------------------------------------------*/
@media (min-width: 600px) {
  #app {
    padding: 20px 20px 50px;
  }
}
@media (max-width: 599px) {
  #app {
    padding: 5px 5px 10px;
  }
}
html {
  background-color: #eee;
}
#app {
  max-width: 800px;
  min-height: 100vh;
  box-sizing: border-box;
  margin: 0 auto;
  background-color: #fff;
  position: relative;
}
section {
  margin-bottom: 50px;
}

/* -------------------------------------------------------
// # Common elms
// ------------------------------------------------------*/
picture {
  display: block;
}
picture img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

/* -------------------------------------------------------
// # processing表示
// ------------------------------------------------------*/
body.processing {
  overflow: hidden;
}
body.processing::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 10000;
  background-image: url(./loading_spinner.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50px;
}

/* -------------------------------------------------------
// # Form elms
// ------------------------------------------------------*/
input,
select,
textarea {
  font-size: 16px;
}
textarea {
  resize: none;
  field-sizing: content;
}
.form-elm dl {
  display: grid;
  grid-template-columns: 100px 1fr;
  grid-gap: 2px;
  margin-bottom: 5px;
  background-color: #444;
  border: 2px solid #000;
}
.form-elm dl > * {
  background-color: #fff;
}
.form-elm dt {
  padding: 5px;
  font-size: 12px;
  line-height: 1.2;
  font-weight: bold;
  background-color: #000;
  color: #fff;
}
.form-elm dt em {
  display: block;
  font-size: 10px;
  color: var(--color-gray);
}
.form-elm dd {
  position: relative;
}
.form-elm dd::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 14px;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 30px;
  display: grid;
  align-items: center;
  justify-items: center;
}
.form-elm dd input,
.form-elm dd select,
.form-elm dd textarea {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  box-sizing: border-box;
  padding: 4px;
  border: none;
  border-radius: 0;
}
.form-elm dd input:focus,
.form-elm dd select:focus,
.form-elm dd textarea:focus {
  outline: none;
}
.form-elm dd.error {
  color: var(--color-strong);
}
.form-elm dd.error input[type=email] {
  background-color: rgb(244, 218, 218)!important;
  color: var(--color-strong)!important;
}
.form-elm dd.error::after {
  content: "\f06a";
}
.form-elm dd.valid::after {
  content: "\f00c";
  color: #21b907;
}
button {
  font-size: 14px;
  font-weight: bold;
  width: 100%;
  padding: 15px;
  border: 1px solid #000;
  background-color: #fff;
  cursor: pointer;
}
button:disabled {
  background-color: #ddd;
  cursor: not-allowed;
}
.chk input[type="checkbox"] {
  display: none;
}
.chk span {
  display: block;
  width: 30px;
  height: 30px;
  box-sizing: border-box;
  background-color: #fff;
  border: 3px solid var(--color-border);
  position: relative;
}
.chk span::before {
  position: absolute;
  width: 22px;
  height: 13px;
  top: 6px;
  left: -7px;
  right: 0;
  bottom: 0;
  border-left: 7px solid var(--color-link);
  border-bottom: 7px solid var(--color-link);
  transform: rotate(-54deg);
  transform-origin: 6px -1px;
  z-index: 10;
}
.chk.disabled > span {
  background-color: #bbb;
}
input[type="checkbox"]:checked ~ span::before {
  content: "";
}
.chk.small span {
  width: 20px;
  height: 20px;
  border-width: 2px;
}
.chk.small span::before {
  width: 16px;
  height: 9px;
  top: 3px;
  left: -7px;
  transform-origin: 6px -1px;
  border-width: 5px;
}

/* -------------------------------------------------------
// # sleeve button
// ------------------------------------------------------*/
.sleeve {
  padding: 30px 0;
}
.sleeve button:not(:disabled) {
  background-color: var(--color-main);
  color: #fff;
}
.sleeve.col2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 5px;
}
.sleeve.col2 button.back {
  background-color: #000;
  border-color: #000;
}

/* -------------------------------------------------------
// # header
// ------------------------------------------------------*/
header::before {
  content: '';
  display: block;
  height: 35px;
  background: url(https://www.tokusawaen.com/wp-content/uploads/2022/01/HeaderLogo.png) no-repeat center center;
  background-size: contain;
  position: relative;
  top: -2px;
}
header h1 {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
}
header h1 span {
  display: block;
  font-size: 10px;
  font-weight: normal;
}
header ul {
  display: flex;
  justify-content: center;
  padding: 10px 0 20px;
  position: absolute;
  top: 0;
  right: 0;
}
header li {
  font-size: 12px;
  margin: 0 5px;
}
header a,
header a:visited {
  color: var(--color-text);
  position: relative;
}

/* -------------------------------------------------------
// # main
// ------------------------------------------------------*/
main {
  padding-top: 20px;
  padding-bottom: 50px;
}
/* -------------------------------------------------------
// # footer
// ------------------------------------------------------*/
@media (min-width: 600px) {
  footer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    box-sizing: border-box;
  }
}
@media (max-width: 599px) {}
footer {
  text-align: right;
  padding: 10px;
  font-size: 12px;
  font-weight: bold;
}
/* -------------------------------------------------------
// # dialogue
// ------------------------------------------------------*/
.heading {
  margin-bottom: 20px;
}
.heading h2 {
  font-size: 16px;
  line-height: 1.2;
  font-weight: bold;
  margin-bottom: 10px;
}
.heading h2 i {
  font-style: normal;
  font-size: 30px;
  margin-right: 5px;
}
.heading h2 em {
  display: block;
  font-size: 12px;
}
.message {
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 1.5em;
}
.message p {
  margin-bottom: 0.5em;
}
.message p i,
.message p em {
  display: block;
  font-style: normal;
  font-size: 12px;
  line-height: 1.1;
  font-weight: normal;
}

/* -------------------------------------------------------
// # 予約カテゴリー
// ------------------------------------------------------*/
.yoyaku-category {
  border: 1px solid var(--color-border);
  background-color: var(--color-border);
  display: grid;
  grid-gap: 1px;
}
.yoyaku-category li a {
  display: grid;
  grid-gap: 1px;
  grid-template-columns: 100px 1fr;
}
.yoyaku-category li a > * {
  background-color: #fff;
}
.yoyaku-category li picture img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.yoyaku-category li picture + div {
  display: grid;
  align-items: center;
  padding: 20px;
}

/* -------------------------------------------------------
// # カレンダーリスト
// ------------------------------------------------------*/
@media (min-width: 600px) {
  .calendar-list {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px; }
}
@media (max-width: 599px) {
  .calendar-list {
    grid-gap: 20px;
  }
}
.calendar-list {
  display: grid;
}

/* -------------------------------------------------------
// # カレンダーアイテム
// ------------------------------------------------------*/
.calendar-item h3 {
  font-weight: bold;
}
.calendar-item li {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-gap: 1px;
  background-color: var(--color-border);
  border: 1px solid var(--color-border);
}
.calendar-item li.frontrow > * {
  font-size: 10px;
  font-weight: bold;
  background-color: #000;
  color: #fff;
  padding: 0 3px;
}
.calendar-item li:not(.frontrow) {
  grid-template-rows: repeat(6, 35px);
}
.calendar-item li:not(.frontrow) > * {
  background-color: #fff;
  padding: 5px 0 0 5px;
}
.calendar-item .sunday,
.calendar-item .holiday {
  color: var(--color-strong);
}
.calendar-item .saturday {
  color: var(--color-saturday);
}
.calendar-item li span {
  position: relative;
}
.calendar-item li span.today {
  background-color: #fbebaf;
  text-decoration: underline;
}
.calendar-item li span.extra {
  background-color: #fbe2e2;
}
.calendar-item li span.disabled {
  background-color: #ddd;
}
.calendar-item li span.inRange {
  background-color: #00ffd5;
}
.calendar-item li span:not(.disabled).fewleft::after {
  content: '▲';
}
.calendar-item li span:not(.disabled).soldout::after {
  content: '\f00d';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}
.calendar-item li span:not(.disabled).fewleft::after,
.calendar-item li span:not(.disabled).soldout::after {
  font-size: 10px;
  position: absolute;
  right: 2px;
  bottom: 0px;
}

/* -------------------------------------------------------
// # 予約カレンダー / レンタルテント
// ------------------------------------------------------*/
.yoyaku-calendar.rentaltent {
  margin-bottom: 25px;
}
.rentaltent .calendar-item li span.selected {
  background-color: #00ffd5;
}
.rentaltent .calendar-item li span.closed,
.rentaltent .calendar-item li span.soldout {
  background-color: #ddd;
}
.accommo-dates {
  border: 2px solid var(--color-border);
  margin-bottom: 15px;
}
.accommo-dates h2 {
  font-size: 14px;
  font-weight: bold;
  background-color: #000;
  color: #fff;
  padding: 5px;
}
.accommo-dates ul {
  padding: 10px 5px 10px 20px;
  min-height: 80px;
}
.accommo-dates li {
  list-style-type: square;
}

/* -------------------------------------------------------
// # 料金サブトータル
// ------------------------------------------------------*/
.fee-sub-total {
  border: 2px solid var(--color-border);
  margin-bottom: 15px;
}
.fee-sub-total h2 {
  font-size: 14px;
  font-weight: bold;
  background-color: #000;
  color: #fff;
  padding: 5px;
}
.fee-sub-total ul {
  padding: 5px;
  font-size: 14px;
}
.fee-sub-total li {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 2px;
}
.fee-sub-total li .fee {
  text-align: right;
}
.fee-sub-total li span {
  font-size: 12px;
  font-weight: bold;
  display: block;
}
.fee-sub-total li i {
  font-style: normal;
}
.yoyaku-option .fee-sub-total ul {
  padding: 0
}
.yoyaku-option .fee-sub-total > div {
  padding: 5px;
}
.fee-sub-total .days-count {
  font-size: 14px;
  font-weight: bold;
}
.fee-sub-total li.total {
  border-top: 1px solid var(--color-border);
  padding: 5px 0;
}

/* -------------------------------------------------------
// # 前月・次月
// ------------------------------------------------------*/
.month-shift {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 5px;
  margin-bottom: 15px;
}
.month-shift button {
  border: 1px solid #000;
  background-color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.month-shift button.inactive {
  background-color: var(--color-gray);
}
.month-shift button i {
  margin: 0 5px;
}
.month-shift button:hover {
  cursor: pointer;
}

/* -------------------------------------------------------
// # 凡例
// ------------------------------------------------------*/
.legend dl {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 10px;
  font-weight: bold;
}
.legend dl > * {
  margin-right: 3px;
}
.legend dt {
  border: 1px solid var(--color-border);
  background-color: #fff;
  width: 15px;
  height: 12px;
}
.legend dt.extra {
  background-color: #fbe2e2;
}
.legend dd {
  margin-right: 8px;
}
.legend dt.fewleft,
.legend dt.soldout {
  text-align: center;
  border: none;
  width: auto;
}
.legend dt.soldout::before {
  content: '\f00d';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}
.legend dt.fewleft::before {
  content: '▲';
}
.legend dt.soldout::before,
.legend dt.fewleft::before {
  font-size: 14px;
  font-weight: bold;
  position: relative;
  top: -4px;
}

/* -------------------------------------------------------
// # procedure
// ------------------------------------------------------*/
@media (min-width: 600px) {
  #procedure {
    border: 1px solid var(--color-main);
  }
}
@media (max-width: 599px) {
  #procedure {
    position: sticky;
    top: 0;
    margin-left: -5px;
    margin-right: -5px;
    border-top: 1px solid var(--color-main);
    border-bottom: 1px solid var(--color-main);
    z-index: 100;
  }
}
#procedure {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-bottom: 15px;
  background-color: #fff;
}
#procedure li {
  font-size: 10px;
  padding: 2px 2px 2px 5px;
  font-weight: bold;
  position: relative;
}
#procedure li:not(:last-child).current {
  clip-path: polygon(0% 0%, 90% 0%, 100% 100%, 0% 100%);
  left: -1px;
}
#procedure li.current,
#procedure li.done {
  background-color: var(--color-main);
  color: #fff;
}

/* -------------------------------------------------------
// # ご利用日表示
// ------------------------------------------------------*/
.yoyaku-date > div {
  padding-top: 21px;
}
.yoyaku-date h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 8px;
}
.yoyaku-date h4 em {
  margin-left: 10px;
  font-size: 12px;
}
.yoyaku-date h4::before {
  content: '\f0c8';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  margin-right: 2px;
}
.yoyaku-date dl {
  display: grid;
  grid-template-columns: 110px 1fr;
  grid-template-rows: 38px;
  border: 2px solid #000;
  margin-bottom: 6px;
}
.yoyaku-date dt,
.yoyaku-date dd {
  font-weight: bold;
  padding: 5px;
  display: grid;
  align-items: center;
}
.yoyaku-date dt {
  background-color: #000;
  color: #fff;
  font-size: 12px;
  line-height: 1.1;
}
.yoyaku-date dt em {
  display: block;
  font-size: 10px;
  color: var(--color-gray);
}

/* -------------------------------------------------------
// # テント・人数選択
// ------------------------------------------------------*/
ul.tent-select {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 15px;
  margin-bottom: 15px;
}
ul.tent-select li .pane {
  margin-bottom: 10px;
}
ul.tent-select li:not(.active) picture img {
  opacity: 0.5;
}
ul.tent-select .pane {
  position: relative;
}
ul.tent-select h3 {
  font-size: 14px;
  font-weight: bold;
  position: absolute;
  top: 4px;
  left: 39px;
}
ul.tent-select .chk span {
  position: absolute;
  top: 0;
  left: 0;
}
ul.tent-select .info {
  font-weight: bold;
  font-size: 10px;
  line-height: 1.2;
  text-align: center;
}
ul.tent-select .form-elm dl,
dl.fee-table {
  grid-template-columns: 50px 1fr;
}
ul.tent-select .form-elm select {
  text-align: center;
}

ul.tent-select .fee dd {
  display: grid;
  align-items: center;
  justify-items: center;
}

/* -------------------------------------------------------
// # ユーザー人数
// ------------------------------------------------------*/
.user-total {}
.user-total dl {
  display: grid;
  grid-template-columns: 100px 1fr;
  grid-gap: 2px;
  margin-bottom: 5px;
  background-color: #444;
  border: 2px solid #000;
}
.user-total dt {
  padding: 5px;
  font-size: 12px;
  line-height: 1.2;
  font-weight: bold;
  background-color: #000;
  color: #fff;
}
.user-total dt em {
  display: block;
  font-size: 10px;
  color: var(--color-gray);
  line-height: 1;
}
.user-total dd {
  background-color: #fff;
  padding: 5px;
  display: flex;
  align-items: center;
}
.user-total dd span {
  margin: 0 10px;
}

/* -------------------------------------------------------
// # テント数選択
// ------------------------------------------------------*/
.tent-num-select {
  display: grid;
  grid-template-columns: 100px 1fr;
  grid-gap: 2px;
  margin-bottom: 15px;
  background-color: #444;
  border: 2px solid #000;
}
.tent-num-select > * {
  background-color: #fff;
}
.tent-num-select dt {
  padding: 5px;
  font-size: 12px;
  line-height: 1.2;
  font-weight: bold;
  background-color: #000;
  color: #fff;
}
.tent-num-select dt em {
  display: block;
  font-size: 10px;
  color: var(--color-gray);
}
.tent-num-select dd {
  position: relative;
}
.tent-num-select dd select {
  /* position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0; */
  width: 100%;
  box-sizing: border-box;
  padding: 4px;
  border: none;
  text-align: center;
  font-size: 25px;
  font-weight: bold;
}

.tent-rental-fee {
  display: grid;
  grid-template-columns: 100px 1fr;
  grid-gap: 2px;
  margin-bottom: 15px;
  background-color: #444;
  border: 2px solid #000;
}
.tent-rental-fee > * {
  padding: 5px;
}
.tent-rental-fee dt {
  font-size: 12px;
  line-height: 1.2;
  font-weight: bold;
  background-color: #000;
  color: #fff;
}
.tent-rental-fee dt em {
  display: block;
  font-size: 10px;
  color: var(--color-gray);
}
.tent-rental-fee dd {
  background-color: #fff;
  display: grid;
  align-items: center;
  justify-items: center;
}
.tent-rental-fee dd span {
  font-weight: bold;
}
.tent-rental-fee dd span i {
  font-size: 12px;
  margin-left: 2px;
}

/* -------------------------------------------------------
// # ギアセレクト
// ------------------------------------------------------*/
.gear-select {
  margin-bottom: 15px;
}
.gear-select ul {
  border: 2px solid var(--color-border);
  display: grid;
  background-color: var(--color-border);
  grid-gap: 1px;
}
.gear-select li {
  display: grid;
  grid-template-columns: 30px 2fr 1fr 50px;
  grid-gap: 1px;
  background-color: var(--color-border);
}
.gear-select li.frontrow > * {
  background-color: #000;
  color: #fff;
  font-size: 10px;
  line-height: 1.1;
  padding: 3px;
}
.gear-select li:not(.frontrow) > * {
  background-color: #fff;
  padding: 4px;
  position: relative;
}
.gear-select .right,
.gear-select .right * {
  text-align: right;
}
.gear-select .center,
.gear-select .center * {
  text-align: center;
}
.gear-select select {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  border: none;
}
.gear-select select:focus,
.gear-select select:active {
  outline: none;
}

/* -------------------------------------------------------
// # userinfo
// ------------------------------------------------------*/
@media (min-width: 600px) {}
@media (max-width: 599px) {
  .userinfo dl {
    display: block;
  }
  .userinfo dt em {
    display: inline-block;
    margin-left: 5px;
  }
  .userinfo dd {
    min-height: 45px;
  }
}
.userinfo dd textarea {
  position: static;
  width: 100%;
}
.userinfo dd.addr textarea {
  min-height: 3em;
  resize: none;
}
.userinfo dd.memo textarea {
  min-height: 4em;
}

/* -------------------------------------------------------
// # お食事選択
// ------------------------------------------------------*/
@media (min-width: 600px) {
  .dinner-select dt span {
    display: block;
  }
}
@media (max-width: 599px) {
  .dinner dl {
    grid-template-columns: 1fr;
  }
  .dinner-select dt {
    display: grid;
    grid-gap: 2px;
    grid-template-columns: 50px 1fr;
  }
}
.dinner {
  margin-bottom: 10px;
}
.dinner .choices {
  display: grid;
}
.dinner .choices .selected {
  background-color: var(--color-active);
}
.dinner .choices label {
  display: grid;
  grid-template-columns: 30px 1fr;
  grid-gap: 10px;
  padding: 15px;
  align-items: center;
  font-size: 12px;
  font-weight: bold;
}
.dinner dd.allergy p {
  font-size: 10px;
  font-weight: bold;
  padding: 4px;
  margin-bottom: 5px;
}
.dinner dd.allergy textarea {
  position: static;
  width: 100%;
  min-height: 13em;
}

/* -------------------------------------------------------
// # 内容確認
// ------------------------------------------------------*/
@media (min-width: 600px) {
  .yoyaku-confirm {
    grid-template-columns: 120px 1fr;
  }
}
@media (max-width: 599px) {
  .yoyaku-confirm {
    grid-template-columns: 90px 1fr;
  }
  .yoyaku-confirm dt {
    font-size: 12px;
  }
  .yoyaku-confirm dd {
    min-height: 40px;
  }
}
.yoyaku-confirm {
  display: grid;
  grid-gap: 1px;
  border: 1px solid #000;
  background-color: var(--color-border);
  font-size: 14px;
  margin-bottom: 15px;
}
.yoyaku-confirm > * {
  padding: 4px;
}
.yoyaku-confirm dt {
  background-color: #000;
  color: #fff;
  font-weight: bold;
}
.yoyaku-confirm dd {
  position: relative;
  background-color: #fff;
  display: grid;
  align-items: center;
}
.yoyaku-confirm dd.center {
  justify-items: center;
}
.yoyaku-confirm dt em {
  display: block;
  font-size: 10px;
  color: var(--color-gray);
  line-height: 1;
}
.yoyaku-confirm dd.center > div > * {
  margin: 0 5px;
}
.yoyaku-confirm dd.textarea {
  justify-items: start;
}
.yoyaku-confirm dd ul {
  margin-left: 13px;
}
.yoyaku-confirm dd li {
  list-style: disc;
}
.yoyaku-confirm .gear {
  max-width: 400px;
  margin-right: 10px;
}
.yoyaku-confirm .gear li {
  display: grid;
  grid-template-columns: 2fr 1fr 40px;
  grid-gap: 10px;
}
.yoyaku-confirm .dinner-selection > div span {
  margin-right: 1em;
}
.yoyaku-confirm .total ul {
  margin-left: 0;
}
.yoyaku-confirm .total li {
  list-style: none;
  display: grid;
  grid-template-columns: 100px 1fr 1fr 1fr;
  grid-gap: 2px;
}
.yoyaku-confirm .total > div {
  padding: 5px;
}
.yoyaku-confirm .total .days-count {
  font-size: 14px;
  font-weight: bold;
}
.yoyaku-confirm .total .fee {
  text-align: right;
}
.yoyaku-confirm .total li.total {
  border-top: 1px solid var(--color-border);
  padding: 5px 0;
}
.yoyaku-confirm .total .note {
  font-size: 12px;
  font-weight: normal;
  line-height: 1.2;
  padding-top: 10px;
  text-align: right;
}

/* -------------------------------------------------------
// # ご利用料金
// ------------------------------------------------------*/
.yoyaku-fee {
  display: grid;
  grid-gap: 1px;
  border: 1px solid #000;
  background-color: var(--color-border);
  font-size: 12px;
  line-height: 1.3;
  margin-bottom: 15px;
}
.yoyaku-fee dt {
  background-color: #000;
  color: #fff;
  font-weight: bold;
  padding: 5px;
}
.yoyaku-fee dt em {
  font-size: 10px;
  color: var(--color-gray);
  line-height: 1;
  margin-left: 4px;
}
.yoyaku-fee dd > ul {
  display: grid;
  grid-gap: 1px;
}
.yoyaku-fee dd > ul > li {
  display: grid;
  grid-template-columns: 90px 1fr;
}
.yoyaku-fee dd > ul > li > span {
  padding: 5px;
  font-weight: bold;
  background-color: #000;
  color: #fff;
}
.yoyaku-fee dd > ul > li > ul {
  padding: 5px;
  background-color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 5px;
}
.yoyaku-fee .total > div {
  background-color: #fff;
  display: grid;
  align-items: center;
  justify-items: end;
  padding: 5px;
}

/* -------------------------------------------------------
// # Tnanks
// ------------------------------------------------------*/
.message.thanks {
  font-size: 16px;
  padding: 20px;
}
.message.thanks h1 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}
.message.thanks p {
  font-weight: normal;
}
.message.thanks .back {
  padding-top: 50px;
}
.message.thanks .back a {
  display: block;
  text-decoration: none;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  padding: 20px 10px;
  background-color: var(--color-main);
  color: #fff;
  box-shadow: 3px 3px 0 #333;
}

/* -------------------------------------------------------
// # 予約時注意事項
// ------------------------------------------------------*/
.precautions {
  font-size: 14px;
  padding: 10px;
  border: 2px solid var(--color-border);
}
.precautions h2 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}
.precautions h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px;
}
.precautions h4 {
  font-weight: bold;
  margin-bottom: 5px;
}
.precautions > p {
  margin-bottom: 1em;
}
.precautions > div {
  margin-bottom: 15px;
}
.precautions p {}
.precautions li {
  margin-bottom: 3px;
  font-size: 14px;
}
.precautions dl {
  display: grid;
  grid-template-columns: 100px 1fr;
  grid-gap: 2px;
  margin-bottom: 10px;
}

/* -------------------------------------------------------
// # 
// ------------------------------------------------------*/

/* -------------------------------------------------------
// # 
// ------------------------------------------------------*/

/* -------------------------------------------------------
// # 
// ------------------------------------------------------*/

