@charset "UTF-8";
.body-no-scroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
}
.popup strong {
  font-weight: bold;
}
.popup a,
.popup label {
  display: block;
  color: #444;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  letter-spacing: 0.12em;
}

.popup .f_note {
  margin: 0 0 40px;
  font-size: 12px;
  line-height: 18px;
}

.popup .f_note ul {
  list-style: none;
  margin-top: 5px;
}
.popup .f_note ul > li {
  text-indent: -15px;
  padding-left: 15px;
}

.popup .f_note ul > li + li {
  margin-top: 5px;
}

.inputText {
  position: relative;
  display: inline-block;
}
.inputText input,
.inputText select,
.inputText textarea {
  position: relative;
  z-index: 1;
  outline: none;
  box-sizing: border-box;
  background: transparent;
}
.inputText input::-ms-clear,
.inputText select::-ms-clear,
.inputText textarea::-ms-clear {
  visibility: hidden;
}
.inputText img {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: auto;
}

.inputText1 {
  width: 100%;
  display: flex;
  align-items: center;
}
.inputText1 input,
.inputText1 select,
.inputText1 textarea {
  width: 100%;
  height: 50px;
  padding: 0 14px;
  border-radius: 4px;
  font-family: "Hiragino Kaku Gothic ProN", "游ゴシック", sans-serif;
  color: #675454;
  font-size: 16px;
  letter-spacing: 0.02em;
  background: #eeeee6;
  border: 1px solid #eeeee6;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.inputText1 input.valid,
.inputText1 select.valid,
.inputText1 textarea.valid {
  background: transparent;
  color: #675454;
  border-color: #afafaf;
}
.inputText1 input {
  color: #675454;
}
.inputText1 input::-ms-clear {
  visibility: hidden;
}
.inputText1 input::-moz-placeholder {
  color: #afafaf;
}
.inputText1 input:-ms-input-placeholder {
  color: #afafaf;
}
.inputText1 input::placeholder {
  color: #afafaf;
}
.inputText1 select {
  color: #675454;
}
.inputText1 select option {
  color: #675454;
}
.inputText1 textarea {
  height: auto;
  border-radius: 6px;
  border: 1px solid #e9efe4;
  padding: 7px 12px;
  font-size: 15px;
  line-height: 25px;
}
.inputText1 textarea:focus {
  border: 1px solid #363025;
}

.checkBoxGrp {
  margin-top: 13px;
  margin-bottom: -7px;
}

.inputCheck {
  position: relative;
}
.inputCheck input {
  display: none;
}
.inputCheck label {
  display: inline-block;
  vertical-align: top;
  position: relative;
  white-space: nowrap;
}
.inputCheck label::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto 0;
}
.inputCheck label::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
}

.inputCheck1 {
  font-size: 12px;
  line-height: 14px;
}
.inputCheck1 label {
  padding-left: 20px;
  letter-spacing: 0.05em;
}
.inputCheck1 label::before {
  width: 14px;
  height: 14px;
  border: 1px solid #afafaf;
  border-radius: 2px;
}
.inputCheck1 label::after {
  width: 10px;
  height: 8px;
  background: url(../img/check1.svg) center center/contain no-repeat;
  left: 2px;
}
.inputCheck1 input:checked + label::before {
  background-color: #1589b4;
  border-color: #1589b4;
}
.inputCheck1 input:checked + label::after {
  background-image: url(../img/check2.svg);
}

.inputCheck2,
.inputCheck3 {
  line-height: 34px;
}
.inputCheck2 label,
.inputCheck3 label {
  padding-left: 26px;
  font-size: 16px;
}
.inputCheck2 label::before,
.inputCheck3 label::before {
  width: 20px;
  height: 20px;
  border: 1px solid #afafaf;
  border-radius: 2px;
}

.inputCheck2 label::after {
  width: 10px;
  height: 8px;
  background: url(../img/check1.svg) center center/contain no-repeat;
  left: 5px;
}
.inputCheck2 input:checked + label::before {
  background-color: #6f93bf;
  border-color: #6f93bf;
}
.inputCheck2 input:checked + label::after {
  background-image: url(../img/check2.svg);
}

.inputCheck3 {
  display: inline-block;
  vertical-align: top;
  margin-right: 2px;
}
.inputCheck3 label::before {
  border-radius: 50%;
}
.inputCheck3 label::after {
  width: 10px;
  height: 10px;
  background-color: #dddddd;
  border-radius: 50%;
  left: 5px;
}
.inputCheck3 input:checked + label::after {
  background-color: #6f93bf;
}

.popup_open {
  display: none;
}
.popup_open:checked + .popup {
  opacity: 1;
  pointer-events: auto;
}

.popup label:hover {
  opacity: 0.6;
}

.popup {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 299;
  display: none;
  /* opacity: 0;
  pointer-events: none; */
  /* transition: opacity 0.5s; */
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium",
    "游ゴシック", "Yu Gothic", sans-serif;
  letter-spacing: 0.14em;
  line-height: 1;
}
.popup .bg {
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(103, 84, 84, 0.8);
  position: absolute;
  top: 0;
  left: 0;
}

#reserv_popup .popup_body {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  position: relative;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 91.4666666667%;
  height: calc(100% - 40px);
  max-width: 450px;
  padding: 50px 0 16px;
}
#reserv_popup .popup_body > .wrapper {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  padding: 12px 20px 40px;
  background-color: #fff;
  border-radius: 6px;
  position: relative;
}
#reserv_popup .popup_close1 {
  height: 30px;
  display: flex;
  align-items: center;
  font-family: "Quicksand", sans-serif;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
}
#reserv_popup .popup_close1:hover {
  opacity: 0.6;
}
#reserv_popup .popup_close1 svg {
  width: 10px;
  height: 10px;
  fill: currentColor;
  margin-right: 6px;
}
#reserv_popup .popup_close2 {
  height: 22px;
  padding: 0 10px;
  background-color: #fff;
  border-radius: 11px;
  box-shadow: 0 1px 2px rgba(103, 84, 84, 0.3);
  display: flex;
  align-items: center;
  color: #6f93bf;
  font-family: "Quicksand", sans-serif;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  position: absolute;
  right: max(6px, 50% - 219px);
  bottom: 8px;
  z-index: 2;
}
#reserv_popup .popup_close2:hover {
  opacity: 0.6;
}
#reserv_popup .popup_close2 svg {
  width: 10px;
  height: 10px;
  fill: currentColor;
  margin-right: 6px;
}
#reserv_popup .ttl {
  text-align: center;
  color: #6f93bf;
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 32px;
  margin: 0 -0.1em 32px 0;
}
#reserv_popup .txt1 {
  margin: 0 -0.1em 0 0;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.05em;
}
#reserv_popup .txt1 + .txt1 {
  margin-top: 20px;
}
#reserv_popup .txt1 .link1 {
  text-decoration: underline;
}
#reserv_popup .formBox {
  margin: 30px 0 40px;
}
#reserv_popup .formBox .formUnit:not(:first-child) {
  margin-top: 36px;
}
#reserv_popup .formBox .formUnit .formUnitGroupHead {
  font-size: 18px;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
#reserv_popup .formBox .formUnit .formUnitHead {
  display: flex;
  align-items: center;
}
#reserv_popup .formBox .formUnit .formUnitHead .item {
  font-size: 16px;
  letter-spacing: 0.06em;
  line-height: 20px;
  margin: -2px 0;
}
#reserv_popup .formBox .formUnit .formUnitHead .required,
#reserv_popup .formBox .formUnit .formUnitHead .optional {
  margin-left: 10px;
  font-size: 11px;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
#reserv_popup .formBox .formUnit .formUnitHead .required {
  color: #6f93bf;
  font-weight: 700;
}
#reserv_popup .formBox .formUnit .formUnitHead .optional {
  color: #888;
}
#reserv_popup .formBox .formUnit .formUnitBody {
  margin-top: 12px;
}
#reserv_popup .formBox .calendar img {
  left: 15px;
  pointer-events: none;
}
#reserv_popup .formBox .calendar input {
  padding-left: 50px;
}
#reserv_popup .formBox .calendar input::-moz-placeholder {
  color: #675454;
}
#reserv_popup .formBox .calendar input:-ms-input-placeholder {
  color: #675454;
}
#reserv_popup .formBox .calendar input::placeholder {
  color: #675454;
}
#reserv_popup .formBox .time {
  margin-top: 8px;
}
#reserv_popup .formBox .time img {
  left: 15px;
  pointer-events: none;
}
#reserv_popup .formBox .time select {
  padding-left: 50px;
}
#reserv_popup .note {
  margin: -3px 0 17px;
  font-size: 12px;
  line-height: 18px;
}
#reserv_popup .checkBoxGrp + .note {
  margin-top: 15px;
}
#reserv_popup .checkBoxGrp.flexwrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0 20px;
}
#reserv_popup .privacyBox {
  text-align: center;
  color: #757c84;
}
#reserv_popup .privacyBox a {
  text-decoration: underline;
  display: inline;
}
#reserv_popup #btnReserv {
  width: 260px;
  height: 70px;
  margin: 10px auto 0;
  background-color: #fff;
  border: 1px solid currentColor;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6f93bf;
  font-size: 18px;
  letter-spacing: 0.06em;
  cursor: pointer;
}
#reserv_popup #btnReserv .icon {
  display: block;
  width: 30px;
  height: 30px;
  margin-right: 12px;
  position: relative;
}
#reserv_popup #btnReserv .icon::before,
#reserv_popup #btnReserv .icon::after {
  content: "";
  display: block;
  border: 1px solid currentColor;
  border-radius: 50%;
  position: absolute;
}
#reserv_popup #btnReserv .icon::before {
  width: 24px;
  height: 24px;
  top: 0;
  left: 0;
}
#reserv_popup #btnReserv .icon::after {
  width: 17px;
  height: 17px;
  right: 0;
  bottom: 0;
}
#reserv_popup label.error {
  display: block;
  vertical-align: top;
  color: #f00;
  font-size: 12px;
  letter-spacing: 0.05em;
  margin-top: 8px;
}

#thanks + footer {
  padding: 5rem 6rem;
}

#thanks .ttl {
  text-align: center;
  color: #6f93bf;
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 32px;
  margin: 0 -0.1em 32px 0;
}

#thanks .thanksWrap {
  background-color: #fff;
  border-top: 1px solid #e3e3e3;
  padding: 60px 40px;
}
#thanks .thanksWrap .btn {
  margin-top: 30px;
}
#thanks .thanksWrap .btn > a {
  display: block;
  max-width: 230px;
  margin: 0 auto;
}
#thanks .thanksWrap .btn > a:hover {
  opacity: 0.8;
}
#thanks .thanksWrap .txtBox {
  margin: auto;
}

#thanks .thanksWrap .mainText {
  margin: 30px 0 0;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.05em;
}
#thanks .thanksWrap .mainText .b {
  font-weight: 700;
}
#thanks .thanksWrap .mainText .b2 {
  color: #ff0000;
}
#thanks .thanksWrap .mainText + .mainText {
  margin-top: 20px;
}
#thanks .thanksWrap .btn_line + .mainText {
  margin-top: 20px;
}
#thanks .thanksWrap .btn_line {
  width: 300px;
  height: 70px;
  margin: 20px auto 0;
  padding-left: 0.1em;
  border: 1px solid currentColor;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6f93bf;
  font-size: 17px;
  line-height: 28px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
#thanks .thanksWrap .btn_line svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
  margin-right: 20px;
}
#reserv_popup.thanks .formWrap {
  display: none;
}
#reserv_popup.thanks .thanksWrap {
  display: flex;
}

.mv_top .mv_txt {
  bottom: 25px;
  max-width: 71.6%;
}

.eb_head .head1 {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 23px;
  padding-left: 18px;
  background: url(../img/icon_head1.png) left center/11px 12px no-repeat;
  margin-bottom: 11px;
}
.eb_head .head2 {
  font-size: 12px;
  letter-spacing: 0.05em;
  line-height: 18px;
}

.fee_parts .fee_box {
  padding: 0 10px 20px 15px;
}
.fee_parts .fee_box .fee {
  text-align: left;
  margin-bottom: 10px;
}
.fee_parts .fee_box .fee .fee_head {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 23px;
  padding-left: 18px;
  background: url(../img/icon_head1.png) left center/11px 12px no-repeat;
  margin-bottom: 6px;
}
.fee_parts .fee_box .fee .fee_body {
  display: inline-block;
  font-size: 14px;
  line-height: 24px;
}
.fee_parts .fee_box .fee .fee_body .small {
  letter-spacing: 0;
}
.fee_parts .fee_box .fee .fee_body .large {
  font-size: 19px;
  letter-spacing: 0;
}

.sec-com02 .e-box01 h3 {
  text-align: center;
  border-bottom: solid 1px #d3d3d3;
  box-sizing: border-box;
  margin: 15px 25px 0;
  padding-bottom: 30px;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 14px;
}

.eyebrow.major .fee-area .inner > .fee,
.lip.major .fee-area .inner > .fee,
.hairline.major .fee-area .inner > .fee {
  background-color: #ffffff;
  border-radius: 6px;
  padding: 30px 25px 25px;
}
.eyebrow.major .fee-area .eb,
.lip.major .fee-area .eb,
.hairline.major .fee-area .eb {
  padding-bottom: 18px;
  border-bottom: 1px solid #d6d6d6;
  border-radius: 1px;
  margin-bottom: 29px;
}

.fee-area .impor .txt + .txt,
.fee-area .impor .note + .txt {
  margin-top: 12px;
}

.knowledge .sec01 .box01 .item.white {
  background: #fff;
  margin: 25px 0;
  border-radius: 3px;
}
.knowledge .sec01 .box01 .item.white + .item.white {
  margin-top: 0;
}
.knowledge .sec01 .box01 .item.white .i-inner {
  border: 0;
}
.knowledge .sec01 .box01 .item.white:first-child {
  margin-top: 20px;
}

@media (max-width: 749px) {
  #thanks .thanksWrap {
    background-color: #fff;
    border-top: 1px solid #e3e3e3;
    padding: 40px 20px;
  }
  #thanks .thanksWrap .ttl{
    font-size: 16px;
        line-height: 25px;
  }
  #thanks .thanksWrap .btn > a {
    max-width: 200px;
  }
  #thanks .thanksWrap .mainText {
    margin: 25px 0 0;
    font-size: 12px;
  }
}
