@charset "utf-8";
/*--------------------------------
　メインコンテンツ
---------------------------------*/
body,
#wrapper {
  background: none;
}

#column-main {
  margin: 0 auto;
  /*width: 780px;*/
  width: 1000px;
  /* border: 1px solid #ddd; */
}

#contents h1 {
  font-size: 21px;
  font-weight: bold;
  color: #1A4899;
  background: #EDEDED;
  margin-bottom: 30px;
  padding-left: 30px;
  position: relative;
  line-height: 160px;
  height: 120px;
  width: 100%;
}

#contents h1::before {
  font-size: 16px;
  font-weight: normal;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  line-height: 40px;
  height: 40px;
  width: 150px;
  color: white;
  background: #0093ee;
  content: "ネット予約";
}

#contents h2 {
  font-size: 21px;
  font-weight: bold;
  margin-top: 50px;
  margin-bottom: 15px;
/*   padding: 0.5rem 0 0.5rem 0.5rem; */
/*   border-left: 5px solid #0093ee; */
  position: relative;
}

#contents h2::before {
  position: absolute;
  bottom: -5px;
  left: 0;
  content: "";
  width: 90px;
  border-top: 2px solid #0193EE;
}

#reserve-flow {
  font-size: 21px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 50px;
  margin-bottom: 50px;
  border-top: 2px solid #a9a9a9;
  counter-reset: number 0; /* 名前は任意、0でリセット。*/
}

#reserve-flow li {
  width: 250px;
  text-align: center;
}

#reserve-flow li:before {
  position: relative;
  top: -20px;
  display: inline-block;
  line-height: 40px;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  color: white;
  background: #0093ee;
  counter-increment: number 1;      /* number カウンタを増加 */
  content: counter(number) "\A";      /* 改行コード付き */
}

.area-footer {
  margin-top: 20px;
  text-align: right;
}

.area-return {
  text-decoration: underline;
  font-size: 13px;
}

.submit-button {
  color: #fff;
  background: #0093EE;
  font-size: 16px;
  padding: 15px 0;
  margin: 20px auto;
  width: 500px;
  max-width: 500px;
  text-align: center;
  display: block;
  border-radius: 4px;
  cursor: pointer;
}

.submit-button:hover {
  text-decoration: none;
  color: #fff;
}

.reserve-tel-link {
  display: block;
  border: 2px solid #a9a9a9;
  padding: 30px;
  margin: 10px auto;
  width: 500px;
  max-width: 500px;
  text-align: center;
  background: #fff;
}

.reserve-tel-link:hover {
  color: inherit;
}

.reserve-tel-link img {
  width: 50px;
  height: 50px;
  margin: auto 20px auto 0px;
}

.reserve-tel-link-comment {
  display: block;
}

.reserve-tel-link-comment span {
  color: orange;
  font-size: 21px;
  font-weight: bold;
}

.reserve-tel-link-number {
  display: block;
  font-size: 40px;
  line-height: 40px;
  font-weight: bold;
  margin-top: 10px;
}

.reserve-tel-link-number::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  background-image: url(../images/phone.png);
  background-position: center;
  background-size: contain;
  position: relative;
  top: 5px;
}
/*--------------------------------
　①メニュー選択
---------------------------------*/
#reserve-menu-list h3 {
  font-weight: bold;
  color: #1A4899;
  font-size: 18px;
}

#reserve-menu-list li {
  margin-bottom: 20px;
  padding: 20px 10px;
  border: 2px solid #a9a9a9;
  cursor: pointer;
}

.reserve-menu-header label {
  padding-left: 10px;
  cursor: pointer;
}

.reserve-menu-header input {
  margin-right: 10px;
}

.reserve-menu-header-info {
  text-align: right;
  padding-right: 30px;
}

.reserve-menu-treatment-time {
  font-size: 18px;
  font-weight: bold;
}

.reserve-menu-amount {
  font-size: 18px;
  font-weight: bold;
  color: red;
}

.reserve-menu-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.reserve-menu-img img {
  width: 160px;
  height: 160px;
  object-fit: cover;
}

.reserve-menu-img {
  width: 160px;
  height: 160px;
  margin-left: 50px;
}

.reserve-menu-contents {
  width: 700px;
  margin-left: 30px;
  margin-top: 5px;
}

.reserve-menu-title {
  margin-right: 10px;
  white-space: normal;
  word-wrap: break-word;
}

.reserve-menu-comment {
  font-size: 14px;
  white-space: pre-line;
}

#reserve-menu-list li:has(input[type="radio"]:checked) {
  border-color: #0093ee;
  /*
  background: #D7EFFB;
  */
  background: aliceblue;
}

/*--------------------------------
　②予約日時選択
---------------------------------*/
#reserve-calendar {
  width: 100%;
  border: 2px solid #a9a9a9;
}

#reserve-calendar th,
#reserve-calendar td {
  text-align: center;
  font-size: 18px;
  height: 50px;
  vertical-align: middle;
  border: 1px solid #a9a9a9;
}

#reserve-calendar td {
  background: #d3d3d3;
}

#reserve-calendar th {
  background: #EDEDED;
}

#reserve-calendar th.reserve-calendar-prev,
#reserve-calendar th.reserve-calendar-next {
  width: 100px;
}

#reserve-calendar th a {
  position: relative;
  display: inline-block;
  height: 50px;
  width: 100%;
  line-height: 50px;
}

#reserve-calendar th.reserve-calendar-prev a::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-right: 15px solid #595757;
  border-bottom: 7px solid transparent;
  left: 15px;
  top: 17px;
}

#reserve-calendar th.reserve-calendar-next a::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-left: 15px solid #595757;
  border-bottom: 7px solid transparent;
  right: 15px;
  top: 17px;
}

#reserve-calendar tr.reserve-calendar-header th {
  background: #fff;
  padding: 10px 0;
}

#reserve-calendar tr.reserve-calendar-header-day th {
  position: sticky;
  top: 0;
  z-index: 10;
}

#reserve-calendar td:has(input[type="radio"]) {
  background: #fff;
  color: red;
  cursor: pointer;
}

#reserve-calendar td:has(input[type="radio"]:checked) {
  background: #ffe4e1;
}

.reserve-calendar-area-footer {
  text-align: center;
  margin-top: 30px;
}

/*--------------------------------
　③ご予約者情報入力
---------------------------------*/
.reserve-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  border: 2px solid #a9a9a9;
}

.reserve-info .required:before {
  font-size: 12px;
  color: red;
  content: "* ";
}

.reserve-info dt {
  font-weight: bold;
  background: aliceblue;
}

.reserve-info dd ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.reserve-info dd li:nth-child(n+2) {
  margin-left: 20px;
}

.reserve-info dd label {
  font-weight: bold;
}

.reserve-info dd label:nth-child(n+2) {
  margin-left: 20px;
}

.reserve-info dd p > label {
  margin-right: 5px;
}

.reserve-info dd textarea {
  width: 100%;
}

#reserveNo {
  text-align: left;
}

/*--------------------------------
　④予約確定
---------------------------------*/
.reserve-display {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  border: 2px solid #a9a9a9;
  margin-bottom: 50px;
}

.reserve-display dt {
  width: 230px;
  padding: 20px;
  font-weight: bold;
  text-align: right;
}

.reserve-display dd {
  position: relative;
  width: calc(100% - 230px);
  padding: 20px;
}

.reserve-display dd a {
  position: absolute;
  bottom: 5px;
}

.reserve-display dd:has(a) {
  padding-bottom: 30px;
}

.reserve-display dd pre {
  font-family: inherit;
  display: inline;
}

.reserve-display dd textarea {
  width: 100%;
}

.reserve-display .no-input {
  color: red;
}

.reserve-display-area-footer {
  margin-top: 80px;
}

/*--------------------------------
　⑤予約完了
---------------------------------*/
.reserve-ending {
  width: 100%;
}

.reserve-ending dt {
  font-size: 21px;
  font-weight: bold;
  line-height: 21px;
/*   height: 21px; */
  color: white;
  background: #0093ee;
  padding: 15px;
  text-align: center;
}

.reserve-ending dt::before {
  content: "";
  display: inline-block;
  width: 21px;
  height: 10px;
  border-left: 4px solid white;
  border-bottom: 4px solid white;
  transform: rotate(-45deg);
  position: relative;
  left: -5px;
  top: -5px;
}

.reserve-ending dd {
  background: #EDEDED;
  text-align: center;
  display: flex;
}

.reserve-ending dd p {
  margin: 10px 0;
}

.reserve-ending .reserve-no {
  font-size: 21px;
  font-weight: bold;
  line-height: 21px;
}

.reserve-ending .reserve-no span:nth-child(n+2) {
  margin-left: 20px;
  color: #1A4899;
}

.reserve-ending-message3 {
  font-size: 14px;
}

/*--------------------------------
　レスポンシブ対応 スマホ用
---------------------------------*/
@media screen and (max-width:480px) {
  /* JavaScriptからのレスポンシブ判別用 */
  #screenType {
    z-index: 1;
  }

  #header-inner {
    width: 100%;
  }

  #column-main {
    width: 100%;
    margin: 0;
    padding: 5px;
  }

  #contents h1 {
    font-size: 18px;
    padding-left: 10px;
    line-height: 110px;
    height: 80px;
  }

  #contents h1::before {
    font-size: 14px;
    text-align: left;
    line-height: 30px;
    height: 30px;
    width: 100px;
    padding-left: 10px;
  }

  #contents h2 {
    font-size: 18px;
  }

  #reserve-flow {
    display: none;
  }

  .reserve-tel-link {
    width: 100%;
  }

  .reserve-tel-link-comment span {
    font-size: inherit;
  }

  .reserve-tel-link-number {
    font-size: 30px;
    line-height: 30px;
  }

  .reserve-tel-link-number::before {
    width: 30px;
    height: 30px;
  }

  .submit-button {
    width: 100%;
  }

  /*--------------------------------
  　①メニュー選択
  ---------------------------------*/
  .reserve-menu-contents {
    width: 100%;
    margin-left: 0;
    margin-top: 5px;
  }

  .reserve-menu-img img {
    width: 80px;
    height: 80px;
    object-fit: cover;
  }

  .reserve-menu-img {
    width: 80px;
    height: 80px;
  }

  .reserve-menu-info {
    display: block;
  }

  /*--------------------------------
  　③ご予約者情報入力
  ---------------------------------*/
  .reserve-info dt {
    width: 100%;
    padding: 20px;
    text-align: left;
  }

  .reserve-info dt:nth-of-type(n+2) {
    border-top: 1px solid #a9a9a9;
  }

  .reserve-info dd {
    width: 100%;
    padding: 20px;
    border-top: 1px solid #a9a9a9;
  }

  .reserve-info input[type='text'] {
    width: 100%;
  }

  /*--------------------------------
  　④予約確定
  ---------------------------------*/
  .reserve-display dt {
    width: 100%;
    text-align: left;
    background: aliceblue;
  }

  .reserve-display dt:nth-of-type(n+2) {
    border-top: 1px solid #a9a9a9;
  }

  .reserve-display dd {
    width: 100%;
    border-top: 1px solid #a9a9a9;
  }

  .reserve-display dd a {
    right: 20px;
  }

  /*--------------------------------
  　⑤予約完了
  ---------------------------------*/
  .reserve-ending dd {
    padding: 30px 10px;
  }

  .reserve-ending img {
    width: 68px;
    height: 116px;
    position: relative;
    left: 5px;
  }

  .reserve-ending .reserve-no {
    margin: 30px 0;
  }

}
/*--------------------------------
　レスポンシブ対応 PC・タブレット用
---------------------------------*/
@media screen and (min-width:480px) {
  /* JavaScriptからのレスポンシブ判別用 */
  #screenType {
    z-index: 0;
  }

  /*--------------------------------
  　③ご予約者情報入力
  ---------------------------------*/
  .reserve-info dt {
    width: 230px;
    padding: 20px;
    text-align: right;
  }

  .reserve-info dd {
    width: calc(100% - 230px);
    padding: 20px 40px;
    border-left: 1px solid #a9a9a9;
  }

  .reserve-info dt:nth-of-type(n+2),
  .reserve-info dd:nth-of-type(n+2) {
    border-top: 1px solid #a9a9a9;
  }

  #reserveSurName1, #reserveName1,
  #reserveSurName2, #reserveName2 {
    width: 200px;
  }

  #reserveMailAddress,
  #reserveTelephoneNumber {
    width: 500px;
  }

  #reserveNo {
    width: 500px;
  }

  /*--------------------------------
  　④予約確定
  ---------------------------------*/
  .reserve-display dt {
    width: 230px;
    text-align: right;
  }

  .reserve-display dd {
    width: calc(100% - 230px);
    padding-left: 0;
  }

  .reserve-display dd a {
    right: 40px;
  }

  /*--------------------------------
  　⑤予約完了
  ---------------------------------*/
  .reserve-ending dd {
    padding: 50px 10px;
  }

  .reserve-ending img {
    width: 89px;
    height: 154px;
    margin: 0 40px;
    position: relative;
    left: 130px;
  }

  .reserve-ending .reserve-no {
    margin: 50px 0;
  }

}