@charset "UTF-8";
/* 共通項目 CSS Document */

body {
    margin: 0;
    padding: 0;
    color: #2f2f2f;
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", Meiryo, メイリオ, "ＭＳ ゴシック", sans-serif;
    font-size: 16px;
    line-height: 130%;
    -webkit-text-size-adjust: 100%;
}
.wrapper {
    padding: 0 0 40px 0;
}
/*  ページタイトル */
h1 {
    position: relative;
    margin: 0 auto;
    min-height: 45px;
    box-sizing: border-box;
    color: #ffffff;
    font-size: 1.1rem;
    text-align: left;
    line-height: 1.5;
    background: #232531;
    padding: 15px 30px;
}
h2 {
  position: relative;
  margin: 0 auto;
  min-height: 45px;
  box-sizing: border-box;
  color: #ffffff;
  font-size: 1.1rem;
  text-align: left;
  line-height: 1.5;
  background: #5A5B64;
  padding: 15px 30px;
}
/* h1 span {
    white-space: pre-line;
} */
/*  コンテンツ */
.section-contents {
    display:flex;
    /* width: 90%; */
}
.section-main {
    padding: 23px 0 30px 0;
    width: 100%;
}
.section-main-noline {
  padding: 20px;
  width: 100%;
}
.left-line {
  margin: 0 15px;
  border-left: 1px solid #2325314D;
}
.left-transparent-line {
  margin: 0 15px;
  border-left: 1px solid transparent;
}
.sub-section-label {
    font-size: 15px;
    font-weight: bold;
}
.input-box {
    display: flex;
    align-items: center;
    border: 1px solid #2325314D;
    border-radius: 2px;
    min-height: 46px;
    padding: 0 0 0 10px;
    font-size: 15px;
    margin: 5px 0;
    background-color: #FFFFFF;
}
.area-wrap {
  width: 95%;
}
.wrap {
    margin-bottom: 20px;
}
.select-button {
  width: 73px;
  height: 42px;
  background-color: #7B6937;
  font-weight: bold;
  color: #fff;
  margin-right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
}
.cancel {
  color: #E25454;
  border: 1px solid #E25454;
}


/* 折りたたみ */
.hidebutton {
  display: none;
}
.grad-wrap {
  position: relative;
}
.grad-btn {
  z-index: 2;
  position: absolute;
  right: 0;
  left: 0;
  width: 204px;
  height: 39px;
  margin: auto;
  background: #ffffff;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 0 3px rgb(0 0 0 / 30%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.grad-item {
  position: relative;
  overflow: hidden;
  height: 113px; /*隠した状態の高さ*/
}
.grad-item::before {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px; /*グラデーションで隠す高さ*/
  content: "";
}
.grad-trigger {
  display: none; 
}
.grad-trigger:checked ~ .grad-item {
  height: auto; /*チェックされていたら、高さを戻す*/
}
.grad-trigger:checked ~ .grad-item::before {
  display: none; /*チェックされていたら、grad-itemのbeforeを非表示にする*/
}
/*折りたたみ グラデーション*/
.grad-item::before {
    background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 50%, rgba(255,255,255,0.9) 50%, #fff 100%);
    background: linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 50%, rgba(255,255,255,0.9) 50%, #fff 100%);
}

/* お店からのお願いチェック */
.caution-check-label {
  display: flex;
  padding: 8px 0;
  width: 280px;
  font-size: 15px;
  text-align: left;
  border-radius: 6px;
}
.caution-check-label span{
  display: inline-block;
  width: auto;
  height: 100%;
  margin: 0;
  padding: 2px 0 2px 30px;
  background: url(../../../../static/images/booking/check_off.png) left center / 22px no-repeat;
}
.caution-check:checked ~ .caution-check-label span {
  background: url(../../../../static/images/booking/check_on.png) left center / 22px no-repeat;
}
.caution-check-label a{
  color: #007aff;
  cursor: pointer;
}
.grad-trigger:checked ~ .caution-check-label {
  margin: 60px 0 10px;
}

/* 同意ボタン */
.confirm {
  border-top: solid 1px gray;
}
.confirm-button {
  width: 300px;
  background-color: #7B6937;
  color: #FFFFFF;
}
.disabled-button {
  background-color: #F0F0F0;
  color: #BFBFBF;
}

/* メッセージ */
.messages {
  box-sizing: border-box;
  margin-bottom: 10px;
  padding: 10px;
  width: 100%;
  color: #2C2111;
  font-size: 1.1rem;
  font-weight: bold;
  text-align: center;
}
.messages {
  line-height: 140%;
}
.messages p {
  margin: 0;
  padding-top: 5px;
  font-size: 0.8rem;
  line-height: 130%;
  font-weight: normal;
}
.infomation {
  background: #E4E5EA;
}
.infomation div {
  color: #5D6283;
}
.notice {
  background: #F8EAE9;
}
.notice div {
  color: #E25454;
}

/* エラーメッセージ */
.errormessage-box {
  background-color: #FCEEED;
  color: #E25454;
  font-size: 14px;
  margin: 30px;
  padding: 10px;
}
.errormessage-box span {
  display: flex;
}

/* 他 */
.flex-center {
  display: flex;
  justify-content: center;
}
.flex-wrap {
  display: flex;
  flex-wrap: wrap;
}
.flex-column {
  display: flex;
  flex-direction: column;
  align-items:center;
}
.jump {
  display: flex;
  justify-content: flex-end;
  color:inherit;
}
.jump span {
  text-decoration: none;
}
.contents-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}
.max {
  width: 100%;
}
/* 要素を非表示 */
.hide {
  display: none !important;
}
.visibility-hide {
  visibility:hidden !important;
}

.input-main input, select{
  background-color: #fff!important;
}
.input-text-area{
  background-color: #fff!important;
}

.more-btn {
  width: 160px;
  height: 36px;
  margin: 0 10px 0 auto;
  background: #ffffff;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 0 3px rgb(0 0 0 / 30%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.more-btn p {
  margin: 5px 0 5px 0;
  font-size: 0.8rem;
}

.seat-ok {
  position: relative;
  width: 95%;
  text-align: center;
  color: #5D6283;
  line-height: 150%;
  background: #E4E5EA;
  font-size: 14px;
  font-weight: bold;
  padding: 15px 10px;
  border-radius: 6px;
  margin: 10px 0 30px;
}
.seat-ok:before,
.seat-ok:after {
  content: "";
  position: absolute;
  display: block;
  right: 50%;
  width: 0;
  border: 10px solid transparent;
  border-top-width: 0;
}
.seat-ok:before {
  top: -9px;
  border-bottom-color: #E4E5EA;
  z-index: 1;
}
.seat-ok:after {
  top: -12px;
}
.seat-ok-main {
  display: inline;
}
.bold {
  font-weight: bold;
}
.notice-message p{
  display:inline
}
.notice-message {
  font-size: 14px;
  margin: 10px 0;
}
.note {
  width: 100%;
  height: 120px;
}
.note-text {
  font-size: 12px;
  color: #B0B0AE;
}
.sub-wrap {
  margin: 10px;
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}
.select-type {
  display: flex;
  flex-wrap: wrap;
  margin: 10px 0 0 0;
}
.select-type li {
  margin: 0 1% 5px 0;
  padding: 0;
  width: 32%;
}
.radio-type {
  display: none;
}
.radio-type:checked + label {
  color: #FFF;
  background-color: #EB874D;
  border: none;
}
.input-type-button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  height: 44px;
  font-size: 0.9rem;
  text-align: center;
  line-height: 44px;
  color: #9E9D9B;
  background-color: #FFF;
  border: 1px solid #2325314D;
  border-radius: 6px;
  cursor: pointer;
}
.modal-title-bottom {
  margin-bottom: 40px;
}
.text-small {
  font-size: 0.8rem;
}
/* PC・タブレット設定 */
@media screen
and (min-width:768px){
  h1 {
    padding-left: 50px;
  }
  h2 {
    padding-left: 50px;
  }
  .wrapper > div {
    padding-left: 50px;
    padding-right: 50px;
  }
  .section-main-noline {
    padding: 80px;
  }
  .area-wrap {
    width: 100%;
  }
}