@charset "UTF-8";
/* 入力部品 ------------------ */
form input:focus,
form select:focus,
form textarea:focus {
  outline: none;
}
form input:focus::-moz-placeholder,
form textarea:focus::-moz-placeholder {
  color: transparent;
}
form input:focus::-moz-placeholder, form textarea:focus::-moz-placeholder {
  color: transparent;
}
form input:focus::placeholder,
form textarea:focus::placeholder {
  color: transparent;
}
form input[type=text], form input[type=tel], form input[type=email] {
  width: 100%;
  padding: 0.8em 1em;
  font-size: 1rem;
  background: #fff;
  border: 1px solid #bbbbbb;
  border-radius: 6px;
}
@media screen and (max-width: 767px) {
  form input[type=text], form input[type=tel], form input[type=email] {
    width: 100%;
  }
}
form textarea {
  width: 100%;
  height: 15em;
  padding: 0.8em 1em;
  font-size: 1rem;
  background: #fff;
  border: 1px solid #bbbbbb;
  border-radius: 6px;
}

/* select */
.select-box {
  position: relative;
  display: inline-block;
}

.select-box::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  right: 1em;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  border-bottom: 1px solid #bbbbbb;
  border-right: 1px solid #bbbbbb;
  z-index: 1;
}

.select-box select {
  padding: 1em;
  padding-right: 2.5em;
  font-size: 1rem;
  background: #fff;
  border: 1px solid #bbbbbb;
  border-radius: 6px;
}

/* checkbox */
.checkbox {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
}

.checkbox input[type=checkbox] {
  outline: none;
}

.checkbox label {
  position: relative;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
}

.checkbox label::before,
.checkbox label::after {
  content: "";
  display: inline-block;
}

.checkbox label::before {
  width: 1.5em;
  height: 1.5em;
  margin-right: 0.5em;
  border: 1px solid #bbbbbb;
}

.checkbox label::after {
  position: absolute;
  top: 50%;
  left: calc(0.25em + 1px);
  width: 1em;
  height: 1em;
  background-color: #c0af8a;
  transform: translateY(-50%);
  opacity: 0;
}

.checkbox input:checked + label::after {
  opacity: 1;
}

/* radio */
.radio {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
}
.radio + .radio {
  margin-top: 0;
  margin-left: 1em;
}

.radio input[type=radio] {
  outline: none;
}

.radio label {
  position: relative;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
}

.radio label::before,
.radio label::after {
  content: "";
  display: inline-block;
}

.radio label::before {
  width: 1.5em;
  height: 1.5em;
  margin-right: 0.5em;
  border: 1px solid #bbbbbb;
  border-radius: 100%;
  background: #fff;
}

.radio label::after {
  position: absolute;
  top: 50%;
  left: calc(0.25em + 1px);
  width: 1em;
  height: 1em;
  background-color: #c0af8a;
  border-radius: 100%;
  transform: translateY(-50%);
  opacity: 0;
}

.radio input:checked + label::after {
  opacity: 1;
}

/* 個別設定 */
form input#name,
form input#furigana,
form input#furigana2,
form input#tel {
  width: 50%;
}
@media screen and (max-width: 767px) {
  form input#name,
  form input#furigana,
  form input#furigana2,
  form input#tel {
    width: 100%;
  }
}
form input#postalcode {
  width: 20%;
  margin-left: 0.5em;
}
@media screen and (max-width: 767px) {
  form input#postalcode {
    width: 40%;
  }
}
form input#address {
  margin-top: 15px;
}
form input#email {
  width: 65%;
}
@media screen and (max-width: 767px) {
  form input#email {
    width: 100%;
  }
}
form input#age,
form input#number {
  width: 15%;
  margin-right: 0.5em;
}
@media screen and (max-width: 767px) {
  form input#age,
  form input#number {
    width: 25%;
  }
}

/* ステップバー ----------------------------*/
.step {
  display: flex;
  align-items: center;
  justify-content: center;
  counter-reset: number 0;
  margin: 0 auto 60px;
}
@media screen and (max-width: 767px) {
  .step {
    margin-bottom: 30px;
  }
}
.step-item {
  display: flex;
  align-items: center;
  justify-content: center;
  counter-increment: number 1;
}
.step-item.is-complete {
  color: #c0af8a;
}
.step-item.is-complete::before {
  background: #c0af8a !important;
}
.step-item span {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2em;
}
.step-item span::before {
  display: inline-block;
  content: counter(number, decimal-leading-zero);
  margin-right: 0.2em;
}
@media screen and (max-width: 767px) {
  .step-item span::before {
    display: block;
    text-align: center;
  }
}
.step-item:not(:first-child)::before {
  content: "";
  display: inline-block;
  width: 90px;
  height: 1px;
  margin: 1em;
  background: #bbbbbb;
}
@media screen and (max-width: 767px) {
  .step-item:not(:first-child)::before {
    width: 40px;
  }
}

/* レイアウト ---------------------------- */
.formBox {
  width: 100%;
  margin: 0 auto;
  text-align: left;
}

.formBox:not(:last-child) {
  margin-bottom: 50px;
}

table.formTable {
  margin: 30px auto 60px;
  border: none;
}
@media screen and (max-width: 767px) {
  table.formTable {
    display: block;
    width: 100%;
  }
}
table.formTable tr:last-child th,
table.formTable tr:last-child td {
  border-bottom: 1px solid #bbbbbb;
}
@media screen and (max-width: 767px) {
  table.formTable tr:last-child th {
    border-bottom: 0;
  }
}
table.formTable tr:last-child td::after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 44px;
  height: 3px;
  background: #c0af8a;
}
table.formTable th {
  position: relative;
  width: 150px;
  padding: 1.5em 0;
  vertical-align: top;
  text-align: left;
  background: transparent;
  border: none;
  border-top: 1px solid #bbbbbb;
}
@media screen and (max-width: 767px) {
  table.formTable th {
    padding: 1em 0;
    padding-bottom: 0;
  }
}
table.formTable th::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 44px;
  height: 3px;
  background: #c0af8a;
}
table.formTable td {
  text-align: left;
  background: transparent;
  border: none;
  border-top: 1px solid #bbbbbb;
}
@media screen and (max-width: 767px) {
  table.formTable td {
    padding: 1em 0;
    border-top: none;
  }
}
@media screen and (max-width: 767px) {
  table.formTable tbody,
  table.formTable tr,
  table.formTable th,
  table.formTable td {
    display: block;
    width: 100%;
  }
}

.note {
  font-size: 0.8125rem;
  line-height: 1.2em;
}
@media screen and (max-width: 767px) {
  .note {
    font-size: 0.75rem;
  }
}

.btn-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.btn-wrap .btn {
  margin: 0 10px;
  padding: 1em 2em;
  font-family: "Zen Old Mincho", "Noto Serif JP", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", serif;
  font-size: 1rem;
  color: #fff;
  background: #c0af8a;
  border: 1px solid #bbbbbb;
  border-radius: 6px;
}

/* 横並び */
.flex-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.flex-box .date-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.flex-box .date-box span {
  display: inline-block;
  margin: 0 0.5em;
}
.flex-box .tel-box,
.flex-box .zip-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.flex-box .tel-box input,
.flex-box .zip-box input {
  width: 6em !important;
}
.flex-box .tel-box span,
.flex-box .zip-box span {
  display: inline-block;
  margin: 0 0.5em;
}
.flex-box .postalcode-box {
  display: inline-block;
}

/* 必須項目表示 ---------------------------- */
.is-required {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
}

.is-required:after {
  display: inline-block;
  content: "※";
  margin-left: 0.5em;
  font-size: 1rem;
  font-weight: 500;
  color: #ff0000;
}

/* エラーメッセージ ---------------------------- */
.errorBox {
  display: none;
  margin-top: 0.5em !important;
  font-size: 1rem;
  color: #c74e4e;
  vertical-align: middle;
}

.errorBox::before {
  content: "";
  display: inline-block;
  width: 0.8em;
  height: 0.8em;
  margin-right: 0.5em;
  background: #c74e4e;
  border-radius: 100%;
  vertical-align: middle;
  animation: flash 1s linear infinite;
}

.errorBox + .errorBox {
  margin-top: 0;
}

@keyframes flash {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* 追加CSS */
.block-white {
  margin: 20px auto;
}

.note-list {
  margin: 0 auto;
  list-style: disc;
  list-style-position: inside;
}
.note-list > li:last-child {
  margin-bottom: 0;
}

.notice {
  margin: 20px auto;
  padding: 30px;
  border: 2px solid #ff0000;
}
.notice :is(h1, h2, h3, h4, h5, h6) {
  margin: 0 auto 0.5em;
  font-size: 1.25rem;
}
.notice dl {
  margin-top: 20px;
}
.notice dl dt {
  padding-left: 0.5em;
  font-weight: 700;
  line-height: 1.2em;
  border-left: 3px solid #c0af8a;
}
.notice dl dd {
  margin-top: 0.2em;
}
.notice dl dd:not(:last-of-type) {
  margin-bottom: 1em;
}

#page-calender .title-page {
  text-align: center;
}
#page-calender #total_price {
  display: inline-block;
  font-size: 1rem;
  line-height: 1.5em;
}