@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@200;300;400;500;600;700;800;900&family=Noto+Serif+JP:wght@200;300;400;500;700&display=swap");
/* ===============================================
# レイアウト
=============================================== */
body {
  background-color: #fff;
}

/* ===============================================
# リセット
=============================================== */
button {
  position: relative;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

p {
  margin: 0;
}

/* ===============================================
# ヘッダー
=============================================== */
header {
  background-color: #fff;
  text-align: center;
}

.headerImg {
  width: 200px;
  margin-right: 60%;
  padding: 15px 0;
}
@media only screen and (max-width: 859px) {
  .headerImg {
    width: 120px;
    margin-right: 0;
  }
}

.headerShop {
  background-color: #3e8fd8;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  padding: 20px 0;
}

/* ===============================================
# ステップ図
=============================================== */
.progressbar {
  max-width: 900px;
  position: relative;
  display: flex;
  justify-content: space-between;
  margin: 30px auto;
  padding: 0;
}
.progressbar li {
  position: relative;
  list-style-type: none;
  text-align: center;
  text-transform: uppercase;
  width: 33.3333333333%;
  color: #999999;
  font-size: 18px;
  font-weight: bold;
  counter-increment: steps;
}
.progressbar li:before {
  content: counter(steps);
  background-color: #f5f5f5;
  display: block;
  width: 30px;
  height: 30px;
  margin: 0px auto 10px;
  line-height: 30px;
  font-size: 20px;
  text-align: center;
  border-radius: 50%;
}
.progressbar li:after {
  content: "";
  position: absolute;
  background-color: #f5f5f5;
  width: 100%;
  height: 2px;
  top: 15px;
  left: -50%;
  z-index: -1;
}
.progressbar li:first-child:after {
  content: none;
}
.progressbar li.active,
.progressbar li.complete {
  color: #275394;
}
.progressbar li.active:before,
.progressbar li.complete:before {
  background-color: #275394;
  color: #fff;
}

/* ===============================================
# ステップ図(スタイル違い)
=============================================== */
.stepheader {
  padding: 2% 10%;
}
.stepheader img {
  width: 100%;
}
.stepbar {
  max-width: 900px;
  position: relative;
  display: flex;
  justify-content: space-between;
  margin: 30px auto;
  padding: 0;
  list-style: none;
}
.stepbar li {
  color: #999;
  background-color: #f5f5f5;
  border-radius: 10px;
  width: 35%;
  height: 40px;
  padding-top: 5px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
.stepbar li.active,
.stepbar li.complete {
  color: #fff;
  background-color: #275394;
}
.stepbar .arrowNext {
  display: block;
  width: 60px;
  height: 36px;
  position: relative;
}
.stepbar .arrowNext::before,
.stepbar .arrowNext::after {
  content: "";
  display: block;
  width: 30px;
  height: 6px;
  background: #275394;
  position: absolute;
  top: calc(60% - 5px);
  right: 20%;
  border-radius: 100px;
  transform: rotate(20deg);
  transform-origin: 100% 50%;
}
.stepbar .arrowNext::after {
  transform: rotate(-20deg);
}
@media only screen and (max-width: 1200px) {
  .stepheader {
    padding: 2% 2%;
  }
  .stepbar {
    margin: 30px 5%;
  }
}
@media only screen and (max-width: 859px) {
  .stepbar {
    margin: 10px;
  }
  .stepbar li {
    width: 50%;
    height: 30px;
    font-size: 14px;
  }
  .stepbar .arrowNext {
    height: 28px;
  }
  .stepbar .arrowNext::before,
  .stepbar .arrowNext::after {
    width: 18px;
    height: 4px;
    right: 24%;
  }
}

/* ===============================================
# レイアウト
=============================================== */
@media only screen and (max-width: 859px) {
  section {
    padding: 15px;
  }
}

/* ===============================================
# プレビュー
=============================================== */
.view_title {
  background-color: #3e8fd8;
  color: #fff;
  width: 200px;
  text-align: center;
  padding: 5px 0;
  margin: 20px 0 0;
}

.view_box {
  background-color: #fff;
  border: 2px solid #3e8fd8;
  padding: 15px;
}

.display-value {
  color: #3e8fd8;
  font-size: 20px;
  font-weight: bold;
}

/* ===============================================
# タイトル
=============================================== */
.h4headExp {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}
@media only screen and (max-width: 859px) {
  .h4headExp {
    font-size: 26px;
  }
}

.h5headExp {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
}
@media only screen and (max-width: 859px) {
  .h5headExp {
    font-size: 18px;
  }
}

.headExp {
  color: #185299;
  font-weight: bold;
  text-align: center;
}

/* ===============================================
# ご希望日時選択
=============================================== */
/* ヘッダーは最初は隠す(フェードインさせる) */
#headerArea {
  display: none;
  max-width: 900px;
  margin: 0 auto;
}

.areaTt {
  max-width: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 15px;
  margin: 0 auto 30px;
}

.areaTt_net {
  max-width: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 15px;
  margin: 0 auto 30px;
}

#areaTtRight,
#areaTtRight2 {
  position: relative;
  width: 100%;
  font-size: 16px;
  text-align: center;
  padding: 15px 0;
  border: 1px solid #ddd;
  border-radius: 40px;
  cursor: pointer;
  pointer-events: none;
}
#areaTtRight.active,
#areaTtRight2.active {
  background-color: #3e8fd8;
  color: #fff;
  border: 0;
  pointer-events: auto;
}
#areaTtRight:hover,
#areaTtRight2:hover {
  opacity: 0.8;
}
#areaTtRight::before,
#areaTtRight2::before {
  font-family: "Material Icons";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
#areaTtRight::before,
#areaTtRight2::before {
  content: "\e5cb";
  left: 15px;
}

#areaTtleft,
#areaTtleft2 {
  position: relative;
  width: 100%;
  font-size: 16px;
  text-align: center;
  padding: 15px 0;
  border: 1px solid #ddd;
  border-radius: 40px;
  cursor: pointer;
  pointer-events: none;
}
#areaTtleft.active,
#areaTtleft2.active {
  background-color: #3e8fd8;
  color: #fff;
  border: 0;
  pointer-events: auto;
}
#areaTtleft:hover,
#areaTtleft2:hover {
  opacity: 0.8;
}
#areaTtleft::before,
#areaTtleft2::before {
  font-family: "Material Icons";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
#areaTtleft::before,
#areaTtleft2::before {
  content: "\e5cc";
  right: 15px;
}

.headTimeTable {
  background-color: #ecf4fb;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  margin-bottom: 30px;
  border-radius: 20px;
}
@media only screen and (max-width: 859px) {
  .headTimeTable {
    align-items: flex-start;
  }
}
@media only screen and (max-width: 859px) {
  .headTimeTable .headTimeTable_item {
    width: 33.3333333333%;
    font-size: 12px;
    text-align: center;
  }
}
.headTimeTable .headTimeTable_item:not(:last-of-type) {
  margin-right: 40px;
}
@media only screen and (max-width: 859px) {
  .headTimeTable .headTimeTable_item:not(:last-of-type) {
    margin-right: 0;
  }
}
.headTimeTable .headTimeTable_item img {
  margin-right: 5px;
  vertical-align: text-top;
}

.spanTimeTable {
  font-size: 20px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 30px;
}
@media only screen and (max-width: 859px) {
  .spanTimeTable {
    margin-bottom: 15px;
  }
}

#areaTimeTable {
  width: 100%;
  margin-bottom: 30px;
}

#dateTable {
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
  animation: fadeIn 2s ease 0s 1 normal;
  border-collapse: collapse;
}
#dateTable tr:nth-child(odd) td:not(.bgSaturdayColorTd, .bgSundayColorTd) {
  background: #fff;
}
#dateTable th {
  background-color: #275394;
  color: #fff;
  text-align: center;
}
#dateTable td {
  text-align: center;
}
#dateTable td:not(.bgSaturdayColorTd, .bgSundayColorTd) {
  background: #eee;
}

/* ===============================================
# モーダルエリア
=============================================== */
.modalArea {
  position: fixed;
  background-color: rgba(30, 30, 30, 0.7);
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 0;
  z-index: 1;
}

.modalWindow {
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 500px;
  width: 50%;
  text-align: center;
  border-radius: 20px;
  padding: 40px;
}
@media only screen and (max-width: 859px) {
  .modalWindow {
    width: 80%;
    padding: 20px;
  }
}
.modalWindow p:nth-of-type(2) {
  font-size: 24px;
  margin: 0;
  font-weight: bold;
}
.modalWindow p:nth-of-type(3) {
  font-size: 24px;
  font-weight: bold;
}
.modalWindow .modal_btn_area {
  margin: 15px 0;
}
.modalWindow button::before {
  content: "\e5cc";
  font-family: "Material Icons";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}
.modalWindow button:hover {
  opacity: 0.8;
}
.modalWindow #btnNext,
.modalWindow #btnConf,
.modalWindow #btnEdit {
  background-color: #3e8fd8;
  color: #fff;
  width: 100%;
  font-size: 16px;
  line-height: 2.5em;
  border-radius: 20px;
}
.modalWindow .backSelect {
  width: 100%;
  font-size: 16px;
  text-align: center;
  line-height: 2.5em;
  border: 1px solid #ddd;
  border-radius: 20px;
  cursor: pointer;
}

.dateText {
  font-weight: bold;
}

.btnDate {
  left: 0;
  right: 0;
  margin: auto;
}

.saveArea {
  overflow: hidden;
  height: 0;
  font-size: 0;
}

input[readonly] {
  font-weight: bold;
  background-color: #fff !important;
}

.menuItem {
  background-color: #fff;
  border: 2px solid #dedede;
  padding: 10px;
  margin-bottom: 20px;
  min-height: 150px;
  width: 100%;
}
@media only screen and (max-width: 859px) {
  .menuItem {
    padding: 0px;
    margin: 0;
    min-height: 20%;
    text-align: center;
  }
}

.menuImage {
  width: 120px;
  height: 140px;
  float: left;
  margin-top: 6px;
  margin-left: 10px;
}
@media only screen and (max-width: 859px) {
  .menuImage {
    width: 100%;
    height: auto;
    float: none;
    margin: 0;
    margin-top: 10%;
    text-align: center;
  }
}
.menuImage img {
  width: 114px;
  height: 114px;
}
@media only screen and (max-width: 859px) {
  .menuImage img {
    width: 60%;
    height: auto;
  }
}

.menuCenter {
  float: left;
  width: 70%;
  margin-top: 16px;
  margin-left: 14px;
}
@media only screen and (max-width: 859px) {
  .menuCenter {
    float: none;
    width: 94%;
    margin-right: 3%;
    margin-left: 3%;
    text-align: left;
  }
}

.menuTitle {
  width: 100%;
  height: 40px;
  float: left;
  font-size: 17px;
  font-weight: bold;
  color: #1a5ca3;
  padding-top: 8px;
}
@media only screen and (max-width: 859px) {
  .menuTitle {
    width: 100%;
    height: 40px;
    float: none;
    font-size: 17px;
    font-weight: bold;
    color: #1a5ca3;
    padding-top: 8px;
    text-align: center;
  }
}

.menuMessage {
  float: left;
  width: 100%;
  padding-left: 20px;
}

.menuTime {
  background-color: #1a5ca3;
  width: 90px;
  height: 30px;
  line-height: 30px;
  color: #fff;
  float: left;
  text-align: center;
  margin-right: 20px;
  margin-left: 20px;
}

.menuTime2 {
  float: left;
  width: 100px;
  height: 30px;
  line-height: 30px;
}

.menuButton {
  background-color: #ff9900;
  width: 100px;
  float: right;
  margin: 0px;
  text-align: center;
  line-height: 130px;
  color: #fff;
  font-size: 20px;
  border-radius: 10px;
  height: 90%;
}
@media only screen and (max-width: 859px) {
  .menuButton {
    width: 90%;
    float: left;
    margin: 0px;
    text-align: center;
    line-height: 20%;
    color: #fff;
    font-size: 1.4rem;
    background-color: #ff9900;
    border-radius: 10px;
    height: auto;
    line-height: 4.5rem;
    margin-left: 5%;
    margin-right: 5%;
    margin-bottom: 5%;
  }
}
.menuButton:hover {
  cursor: pointer;
}

.bgSundayColor {
  background-color: #eea1b5;
  border: 1px solid #ddd;
}

.bgSaturdayColor {
  background-color: #84b3d6;
  border: 1px solid #ddd;
}

.bgSundayColorTd {
  background-color: #f9dce3;
  border: 1px solid #ddd;
}

.bgSaturdayColorTd {
  background-color: #d4e5ef;
  border: 1px solid #ddd;
}

.bgFFFColor,
.bgFFFColorTd {
  background-color: #fff;
  border: 1px solid #ddd;
}

.bgSundayColorTdH {
  background-color: #f9dce3;
  cursor: pointer;
  border: 1px solid #ddd;
}

.bgSaturdayColorTdH {
  background-color: #d4e5ef;
  border: 1px solid #ddd;
  cursor: pointer;
}

.bgFFFColorTdH {
  background-color: #fff;
  border: 1px solid #ddd;
  cursor: pointer;
}

.bgSundayColorTdH:hover,
.bgSaturdayColorTdH:hover,
.bgFFFColorTdH:hover {
  background-color: #ffc35f !important;
  border: 1px solid #ddd;
}

.menuButton_free,
.menuButton_1 {
  width: 101px;
  float: right;
  margin: 0px;
  text-align: center;
  height: 130px;
  color: #fff;
  background-image: url(../images/btn.svg);
  border-radius: 10px;
  cursor: pointer;
}
@media only screen and (max-width: 859px) {
  .menuButton_free,
  .menuButton_1 {
    width: 324px;
    float: left;
    margin: 0px;
    text-align: center;
    height: 53px;
    background-image: url(../images/btn_sp.svg);
    margin-left: 5%;
    margin-right: 5%;
    margin-bottom: 5%;
    cursor: pointer;
  }
}

.menuButton_2 {
  width: 101px;
  float: right;
  margin: 0px;
  text-align: center;
  height: 130px;
  color: #fff;
  background-image: url(../images/btn_hogosya.png);
  border-radius: 10px;
  cursor: pointer;
}
@media only screen and (max-width: 859px) {
  .menuButton_2 {
    width: 324px;
    float: left;
    margin: 0px;
    text-align: center;
    height: 53px;
    background-image: url(../images/btn_hogosya_2.png);
    margin-left: 5%;
    margin-right: 5%;
    margin-bottom: 5%;
    cursor: pointer;
  }
}

@media only screen and (max-width: 768px) {
  .col-sm-8 {
    padding-left: 28px;
  }
}
/* ===============================================
# 情報入力
=============================================== */
.form-control {
  height: auto;
  font-size: 16px;
}

.form-select {
  height: auto;
  font-size: 16px;
}

.form_col {
  display: flex;
  gap: 20px;
}

.form-input {
  max-width: 900px;
  background-color: #f0f6ff;
  padding: 2% 10% 5%;
  margin: 0 auto 30px;
  border-radius: 20px;
}

@media only screen and (max-width: 768px) {
  .form-input {
    padding: 20px;
  }
}
.form-title {
  font-size: 16px;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 5px;
}
.form-title span {
  margin-left: 5px;
}
.form-radio {
  font-size: 16px;
  margin-left: 5px;
  margin-top: 15px;
  margin-bottom: 30px;
}

.form-grade {
  max-width: 200px;
}

.form-sample {
  clear: both;
  font-size: 13px;
  color: #9a9a9a;
  line-height: 1.4em;
  padding-top: 6px;
}

#btn_Dummy {
  opacity: 0.7;
  cursor: not-allowed;
  pointer-events: none;
}

.btn-Back {
  position: relative;
  width: 100%;
  font-size: 16px;
  text-align: center;
  padding: 15px 0;
  border: 1px solid #ddd;
  border-radius: 40px;
  cursor: pointer;
}
.btn-Back.active {
  background-color: #3e8fd8;
  color: #fff;
  border: 0;
}
.btn-Back:hover {
  opacity: 0.8;
}
.btn-Back::before {
  font-family: "Material Icons";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.col-lg-1,
.col-lg-2 {
  padding-left: 0;
}
@media only screen and (max-width: 859px) {
  .btn-Back {
    font-size: 14px;
  }
}
.btn-Back::before {
  content: "\e5cb";
  left: 15px;
}

.btn-Next {
  position: relative;
  width: 100%;
  font-size: 16px;
  text-align: center;
  padding: 15px 0;
  border: 1px solid #ddd;
  border-radius: 40px;
  cursor: pointer;
}
.btn-Next.active {
  background-color: #3e8fd8;
  color: #fff;
  border: 0;
}
.btn-Next:hover {
  opacity: 0.8;
}
.btn-Next::before {
  font-family: "Material Icons";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 859px) {
  .btn-Next {
    font-size: 14px;
  }
}
.btn-Next::before {
  content: "\e5cc";
  right: 20px;
}
.btn-Next_net {
  width: 180%;
}

.comment {
  background-color: #ececec;
  max-width: 900px;
  font-size: 14px;
  padding: 20px;
  margin: 0 auto 30px;
}
.comment a.PrivacyPolicy {
  color: #3e8fd8;
  text-decoration: underline;
}
.comment a.PrivacyPolicy:hover {
  opacity: 0.8;
}

::-moz-placeholder {
  color: #aaa !important;
}

::placeholder {
  color: #aaa !important;
}
.input-error {
  border: 1px solid red !important;
  background-color: #ffe5e5;
}
.error {
  color: red;
  font-size: 1em;
  margin-top: 5px;
}
.error-message {
  color: red;
  font-size: 1em;
  margin-top: 5px;
  display: none;
}
.error-visible {
  display: block;
}
/* ===============================================
# 内容確認
=============================================== */
.conf-info {
  max-width: 800px;
  margin: 0 auto;
}

.conf-input {
  text-align: center;
  font-weight: bold;
  margin-bottom: 20px;
  border: 1px solid #c9d3db;
  border-radius: 10px;
}

.conf-title {
  position: relative;
  background-color: #c9d3db;
  font-size: 16px;
  line-height: 3em;
  border-radius: 10px 10px 0 0;
}

.btnDateEdit {
  background-color: #fff;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-size: 12px;
  line-height: 2em;
  padding: 0 10px;
  border-radius: 20px;
  cursor: pointer;
}

.conf-text {
  font-size: 16px;
  line-height: 3em;
  min-height: 3em;
  padding: 15px 20px;
}

/* ===============================================
# 完了
=============================================== */
.thanks {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  padding: 0;
  margin-bottom: 30px;
}

.thanks-shop {
  background-color: #ececec;
  text-align: center;
  padding: 30px;
}

.thanks-inquiry .thanks-exp {
  padding-bottom: 15px;
}

.thanks-exp {
  padding-top: 20px;
}
.reserve-info-area {
  border-top: 1px solid gray;
  border-bottom: 1px solid gray;
  margin: 2% 30% 0;
  padding: 10px;
}

.reserve-info {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  padding: 0;
  margin-top: 5px;
  margin-bottom: 5px;
}

.btn-info {
  max-width: 500px;
  margin: auto;
  position: relative;
  width: 100%;
  font-size: 16px;
  text-align: center;
  padding: 15px 0;
  border: 1px solid #ddd;
  border-radius: 40px;
  cursor: pointer;
  line-height: 1em;
}
.btn-info.active {
  background-color: #3e8fd8;
  color: #fff;
  border: 0;
}
.btn-info:hover {
  opacity: 0.8;
}
.btn-info::before {
  font-family: "Material Icons";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 859px) {
  .btn-info {
    font-size: 14px;
  }
  .reserve-info-area {
    margin: 0;
  }
}
.btn-info::before {
  content: "\e5cc";
  right: 15px;
}

/* ===============================================
# フッター
=============================================== */
footer {
  background-color: #ececec;
  color: #000;
  text-align: center;
}

footer .logo img {
  max-width: 300px;
}
#footerShop {
  color: #1560ad;
  font-family: "Noto Sans JP", "ヒラギノ角ゴシック", serif;
  font-weight: 900;
  padding: 30px;
}

.telText {
  font-size: 18px;
}

.tel,
.tel a {
  color: blue;
  text-align: center;
}

.openHour {
  font-size: 20px;
  font-weight: bold;
}

.footerlink {
  background-color: #185299;
  padding: 20px 0;
}
.footerlink ul {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
}
.footerlink ul li {
  color: #fff;
  line-height: 1;
}
.footerlink ul li:first-child {
  border-right: 1px solid #fff;
}
.footerlink ul li a {
  color: #fff;
  text-decoration: none;
}
.footerlink address {
  color: #fff;
  font-style: normal;
  line-height: 2;
  margin-bottom: 0;
}

@media only screen and (min-width: 769px) {
  #footerShop {
    font-size: 38px;
  }
  footer .logo img {
    margin-top: 5px;
  }
}
@media only screen and (max-width: 768px) {
  #footerShop {
    font-size: 8vw;
  }
  footer .logo img {
    margin-top: 2vw;
    max-width: 70%;
  }
}

/* ===============================================
# LINEボタンリンク
=============================================== */
.linelink {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
}
.thanks-link {
  width: 100%;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
  padding-bottom: 20px;
}
.thanks-link a {
  display: inline-block;
}
.thanks-linelink {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
}

/* ===============================================
# PC・SP表示切替
=============================================== */
.dsp-pc {
  display: block;
}

.dsp-sp {
  display: none;
}

@media only screen and (max-width: 768px) {
  .dsp-pc {
    display: none;
  }
  .dsp-sp {
    display: block;
  }
}

/* ===============================================
# CSS Document
=============================================== */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
