@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=Noto+Sans+JP:500,700&display=swap&subset=japanese);

* {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
}

*,
::after,
::before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  background-color: #ccc;
  line-height: 1;
}

html * {
  max-width: 600px;
}

body {
  background-color: #f2f9ff;
  background-color: #fff;
  margin: 0 auto;
  width: 100%;
  max-width: 600px;
  min-height: 100vh;
  color: #4D4848;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

header .header_copy {
  background: #007aff;
  color: #fff;
  height: 6.2vw;
  width: 100%;
  text-align: left;
  font-weight: 700;
  font-size: 3vw;
  margin: 0 auto;
  padding: 0 10px;
  line-height: 2;
}

@media (min-width: 601px) {
  header .header_copy {
    height: 40px;
    font-size: 18px;
  }
}

header .header_band {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 8px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-shadow: 0 5px 4px -3px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 4px -3px rgba(0, 0, 0, 0.1);
}

header .header_band p.header_logo {
  width: 50%;
  text-align: left;
  line-height: 1;
  padding: 3px 0;
  display: block;
}

header .header_band p.header_logo img {
  width: 70%;
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
  margin-left: 3%;
  padding: 4px;
}

header .header_band .header_descriptionWrap {
  margin-left: 10px;
  width: calc(50% - 10px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  font-size: 10px;
  color: #777777;
  font-weight: 300;
}

main {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

main .whiteSpace {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background-color: #fff;
  min-height: 40px;
}

h3.formHead {
  text-align: left;
  margin: 20px 0;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 700;
  color: #707070;
  margin: 0 auto 2px;
  padding: 5px 0;
}

h3.formHead:before {
  content: "■";
  color: #6f9ce3;
  font-size: 16px;
  margin-right: 2px;
}

.arrow {
  width: 15px;
  height: 15px;
}

.hands {
  width: 42px;
  height: 42px;
  position: absolute;
  right: 0;
  top: 250px;
  background-size: contain;
  z-index: 200;
  pointer-events: none;
  transition: 0.5s ease-out;
  -webkit-transition: 0.5s ease-out;
  -moz-transition: 0.5s ease-out;
  animation: rabbit 2.5s linear 0s infinite;
  -webkit-animation: rabbit 2.5s linear 0s infinite;
}

@-webkit-keyframes rabbit {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  50% {
    -webkit-transform: translate(-15px, 0);
    transform: translate(-15px, 0);
  }

  75% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@keyframes rabbit {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  50% {
    -webkit-transform: translate(-15px, 0);
    transform: translate(-15px, 0);
  }

  75% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

h4.microcopy {
  text-align: center;
  font-size: 10px;
  color: #555;
}

.fa-solid,
.fas {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.ui-helper-hidden-accessible {
  display: none;
}

section {
  display: none;
  margin: 0 3%;
}

section .wrapper {
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
  padding-top: 5px;
  padding-bottom: 25px;
  display: grid;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  /* mmirgin-bottom: 30px; */
}

section .wrapper .content {
  min-width: 320px;
}

section .wrapper .innerWrapper {
  margin: auto;
  width: 96%;
  min-width: 320px;
  padding: 20px 10px;
  border-radius: 5px;
  border: solid 1px #373948;
  -webkit-box-shadow: 2px 2px 10px -3px rgba(0, 0, 0, 0.6);
  box-shadow: 2px 2px 10px -3px rgba(0, 0, 0, 0.6);
}

section .wrapper .key {
  font-size: 70%;
  text-align: center;
  margin: auto auto 10px auto;
}

section .wrapper .key.key>img {
  width: 14px;
  vertical-align: middle;
  margin: -2px 5px auto auto;
}

section .wrapper .formH4 {
  font-size: 90%;
  text-align: left;
  color: #383948;
  margin: auto auto 10px auto;
  margin-bottom: 10px;
  text-align: center;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 700;
  color: #707070;
  margin: 0 auto 10px;
  padding: 5px 10px;
  width: 100%;
}

section .wrapper .tellMailWrap .formSubHead {
  margin-bottom: 25px;
}

section .wrapper .formSubHead {
  font-size: 85%;
  text-align: left;
  color: #383948;
  margin: auto auto 10px auto;
}

section .wrapper .formSubHead>img {
  width: 14px;
  vertical-align: middle;
  margin: -2px 5px auto auto;
}

section .wrapper .hissu {
  color: #FFFFFF;
  background-color: #f45775;
  font-size: 50%;
  padding: 0 4px;
  margin: auto auto auto 2px;
}

section .wrapper .formUnit {
  padding-bottom: 20px;
}

section .wrapper input[type=tel],
section .wrapper input[type=text],
section .wrapper input[type=email] {
  outline: none;
  width: 100%;
  font-weight: 800;
  color: #4D4848;
  position: relative;
  z-index: 1;
  height: 56px;
  padding: 0 14px;
  font-size: 20px;
  color: #000;
  text-align: left;
  background-color: #ffffc7;
  border: 1px solid #5391df;
  border-radius: 6px;
}

section .wrapper input[type=tel]::-webkit-input-placeholder,
section .wrapper input[type=text]::-webkit-input-placeholder,
section .wrapper input[type=email]::-webkit-input-placeholder {
  color: #999999;
  font-size: 14px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  top: 10px;
}

section .wrapper input[type=tel]::-moz-placeholder,
section .wrapper input[type=text]::-moz-placeholder,
section .wrapper input[type=email]::-moz-placeholder {
  color: #999999;
  font-size: 14px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  top: 10px;
}

section .wrapper input[type=tel]:-ms-input-placeholder,
section .wrapper input[type=text]:-ms-input-placeholder,
section .wrapper input[type=email]:-ms-input-placeholder {
  color: #999999;
  font-size: 14px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  top: 10px;
}

section .wrapper input[type=tel]::-ms-input-placeholder,
section .wrapper input[type=text]::-ms-input-placeholder,
section .wrapper input[type=email]::-ms-input-placeholder {
  color: #999999;
  font-size: 14px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  top: 10px;
}

section .wrapper input[type=tel]::placeholder,
section .wrapper input[type=text]::placeholder,
section .wrapper input[type=email]::placeholder {
  color: #999999;
  font-size: 14px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  top: 10px;
}

section .wrapper input[type=tel]:focus,
section .wrapper input[type=tel].valid,
section .wrapper input[type=text]:focus,
section .wrapper input[type=text].valid,
section .wrapper input[type=email]:focus,
section .wrapper input[type=email].valid {
  border: 1px solid #ccc;
  background-color: #fff;
}

section .wrapper input[type=tel]#birthyear,
section .wrapper input[type=text]#birthyear,
section .wrapper input[type=email]#birthyear {
  padding-left: 65px;
}

section .wrapper input[type=tel]#postal,
section .wrapper input[type=text]#postal,
section .wrapper input[type=email]#postal {
  background: #ffffc7 url(/images/high_class/lp02/ico_zip.png) center left 4px no-repeat;
  background-size: 30px;
  padding-left: 40px;
}

section .wrapper input[type=tel]#postal:focus,
section .wrapper input[type=tel]#postal.valid,
section .wrapper input[type=text]#postal:focus,
section .wrapper input[type=text]#postal.valid,
section .wrapper input[type=email]#postal:focus,
section .wrapper input[type=email]#postal.valid {
  background: #fff url(/images/high_class/lp02/ico_zip.png) center left 4px no-repeat;
  border: 1px solid #ccc;
}

section .wrapper input:-webkit-autofill,
section .wrapper input.valid:-webkit-autofill {
  -webkit-transition: background-color 10000s ease-in-out 0s;
  transition: background-color 10000s ease-in-out 0s;
  -webkit-box-shadow: 0 0 0px 999px #fff inset;
  box-shadow: 0 0 0px 999px #fff inset;
}

section .wrapper input:autofill,
section .wrapper input.valid:autofill,
section .wrapper input:-webkit-autofill,
section .wrapper input.valid:-webkit-autofill {
  -webkit-transition: background-color 10000s ease-in-out 0s;
  transition: background-color 10000s ease-in-out 0s;
  -webkit-box-shadow: 0 0 0px 999px #fff inset;
  box-shadow: 0 0 0px 999px #fff inset;
}

section .wrapper input::-webkit-input-placeholder {
  color: #E3E3E3;
}

section .wrapper input::-moz-placeholder {
  color: #E3E3E3;
}

section .wrapper input:-ms-input-placeholder {
  color: #E3E3E3;
}

section .wrapper input::-ms-input-placeholder {
  color: #E3E3E3;
}

section .wrapper input::placeholder {
  color: #E3E3E3;
}

section .wrapper .inputText {
  position: relative;
}

section .wrapper .inputText .tel-count,
section .wrapper .inputText .zip-count {
  position: absolute;
  top: -18px;
  right: 0;
  background: #f8f8f8;
  border-radius: 100px;
  padding: 0px 8px 4px;
  transition: 0.3s ease-out;
  -webkit-transition: 0.3s ease-out;
  -moz-transition: 0.3s ease-out;
  font-size: 12px;
  width: auto;
  white-space: nowrap;
}

section .wrapper .inputText.birthyear {
  position: relative;
}

section .wrapper .inputText.birthyear .ad {
  position: absolute;
  top: 50%;
  left: 15px;
  z-index: 2;
  font-size: 20px;
  font-weight: bold;
  translate: 0 -50%;
}

section .wrapper .inputText.birthyear::after {
  content: "年";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  margin-top: auto;
  color: #4D4848;
  font-size: 15px;
  line-height: 56px;
  z-index: 1;
}

section .wrapper .toggle-outer {
  text-align: center;
  font-size: 14px;
  margin: 0 auto;
  font-weight: bold;
  color: #555;
}

section .wrapper .toggle-outer label {
  display: block;
  background: #f8f8f8;
  border-radius: 50px;
  padding: 0.3em 36px 0.4em 1.6em;
  color: #555;
}

section .wrapper #toggle1:checked~.addTxt {
  display: none;
}

section .wrapper .addTxt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #fff;
  max-width: 300px;
  margin: 10px auto 20px;
  font-size: 12px;
  line-height: 1.5;
}

section .wrapper .addTxt>img {
  width: 20%;
}

section .wrapper .addTxt p {
  width: 80%;
  margin-left: 10px;
  position: relative;
  display: inline-block;
  padding: 7px 10px;
  max-width: 100%;
  background: #F1F6F9;
  border-radius: 6px;
  color: #545454;
  text-align: left;
}

section .wrapper .addTxt p:after {
  content: "";
  position: absolute;
  top: 50%;
  left: -20px;
  margin-top: -10px;
  border: 10px solid transparent;
  border-right: 15px solid #e2f3f5;
}

section .wrapper .addTxt p span.pink {
  color: #ff348e;
  font-size: 14px;
}

section .wrapper #toggle1:checked~.toggle-inner {
  display: block;
}

section .wrapper .toggle-inner {
  display: none;
}

section .wrapper .toggle-inner .formUnit {
  margin-bottom: 2px;
}

section .wrapper .toggle-inner .formUnit select {
  width: 100%;
  height: 56px;
  padding: 0 14px;
  font-size: 20px;
  color: #4D4848;
  background: #FFF;
  border: none;
  margin: 14px auto 0;
  border-bottom: 1px solid #ccc;
  position: relative;
  z-index: 1;
  outline: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-align: left;
}

.error {
  display: block;
  width: 100%;
  margin: 5px auto 0;
  clear: both;
  background: #FFF;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 3px;
  padding: 1px 5px;
  color: red;
  font-size: 13px;
  line-height: 1.5;
  display: block;
  text-align: center;
  border: solid 1px;
}

#name-error,
#birthday-error,
#tel-error,
#email-error {
  color: red;
}

.msgIcon {
  width: 50px;
}

.btnArea {
  padding: 20px 0px 40px;
  width: 100%;
  text-align: center;
  margin: 0 auto;
  max-width: 320px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.btnArea span {
  font-size: 12px;
  text-decoration: underline;
}

.btnArea.btnSubmit {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.btnArea.btnSubmit #btnForm {
  z-index: 101;
  width: 80%;
}

.btnArea.btnSubmit #btnForm img {
  width: 100%;
}

.btnArea .btnBack {
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.pf-footer--simple {
  position: relative;
  bottom: 0;
  margin-top: auto;
}

.pf-footer--simple .update_datetime {
  background-color: #e4f4ff;
  color: #006be0;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.5;
  text-align: right;
  padding: 3px;
}

.pf-footer--simple .pf-footer_copyright {
  background-color: #f7f7f7;
  padding: 10px 0px 8px;
  text-align: center;
  padding: 10px;
  border-top: 1px solid #8D8D8D;
  text-align: center;
  font-size: 10px;
  line-height: 1;
  background: #34414e;
  color: white;
}

.pf-footer--simple .pf-footer_copyright .pf-footer_copyright_txt {
  font-size: 8px;
}

#overlay {
  display: none;
  position: fixed;
  z-index: 60;
  height: 100%;
  width: 100%;
  background: #000;
  opacity: 0.5;
  inset: 0;
  margin: auto;
}

#overlay.overlay-on {
  display: block;
}

/**** send ****/
.body_lp02 {
  color: #292929;
  font-family: sans-serif;
  font-weight: 300;
  line-height: 1.5;
  background-color: white;
}

.lead_wrap_lp02 {
  display: flex;
  align-items: center;
  background-color: white;
  justify-content: space-between;
  margin: auto;
  padding: 20px 20px 0;
  width: 100%;
}

.picture_stayle_lp02 {
  width: 20%;
}

.img_stayle_lp02 {
  vertical-align: middle;
  width: 100%;
}

.lead_txt_lp02 {
  letter-spacing: -0.03em;
  font-size: 13px;
  width: 78%;
}

.lead_txt_lp02 strong {
  font-size: 1.14em;
  font-weight: bold;
}

.lead_txt_lp02 a {
  color: #1b2021;
  text-decoration: none;
}

.contact_wrap_lp02 {
  background: #effbff;
  margin-bottom: 0;
}

.pf-sec_inner_lp02 {
  margin: auto;
  width: 100%;
  padding: 25px 20px;
}

.contact_txt_lp02 {
  background: #fff;
  margin-bottom: 10px;
  padding: 20px;
  position: relative;
}

.contact_txt_lp02 p {
  font-size: 14px;
  padding-right: 34%;
}

.contact_lead_lp02 {
  font-size: 16px;
  font-weight: bold;
}

.hours_lp02 {
  border-top: 2px dotted #238fe8;
  font-weight: normal;
  margin-top: 10px;
  padding-top: 15px;
  font-size: 14px;
  padding-right: 34%;
}

.contact_txt_lp02 .hours_lp02 span {
  background: #666666;
  color: #fff;
  font-size: 12px;
  margin-right: 0.6em;
  padding: 0.4em 0.6em;
}

.figure_stayle_lp02 {
  bottom: 0;
  max-width: 120px;
  position: absolute;
  right: 0;
  width: 41%;
  display: block;
}

.telbtn_lp02 {
  background: linear-gradient(#238fe8, #1976c3);
  font-size: 16px;
  padding: 10px;
  width: 100%;
}

.telbtn_lp02::before {
  background: url(/images/high_class/ic_tel.svg) no-repeat center/100%;
  height: 31px;
  width: 23px;
  content: "";
  display: block;
  margin-right: 10px;
}

.mailbtn_lp02 {
  background: linear-gradient(#7eba3d, #60ab0f);
  font-size: 18px;
  margin-top: 10px;
  width: 100%;
}

.mailbtn_lp02::before {
  background: url(/images/high_class/ic_mail.svg) no-repeat center/100%;
  height: 18px;
  width: 32px;
  content: "";
  display: block;
  margin-right: 10px;
}

.btn_lp02 {
  -webkit-box-align: center;
  -webkit-box-pack: center;
  align-items: center;
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-weight: 600;
  position: relative;
  text-align: center;
  user-select: none;
  text-decoration: none;
  justify-content: center;
  height: 51px;
}

.main_lp02 {
  margin-bottom: 50px;
}

.entry-button .pf-button--001 {
  font-size: 16px;
  font-family: "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.pf-button--001.pf-button--s-lg {
  font-size: 16px;
}

.pf-button--back-t {
  color: black;
  border: none;
}

.pf-button--001 {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  border: solid 1px #238fe8;
  border-radius: 6px;
  color: #238fe8;
  cursor: pointer;
  display: inline-block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 600;
  justify-content: center;
  position: relative;
  text-align: center;
  user-select: none;
  width: 100%;
}

.button-left {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  .pf-button--001.pf-button--s-lg {
    font-size: 18px;
    line-height: 1.333em;
    padding: 14px;
  }
}

.pf-button--oubo-t {
  background-color: lightgray;
  color: white;
  border-color: lightgray;
  pointer-events: none;
  text-align: center;
  position: static;
}

@media screen and (min-width: 768px) {
  .pf-button--001 {
    font-size: 14px;
    line-height: 1.429;
    padding: 9px;
  }
}

.button-right-next {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  .uni-form-entry .pf-button--001.pf-button--s-lg {
    margin: 0 auto;
    width: 400px;
  }
}

.pf-button--001.pf-button--c-secondary {
  background-color: #ef3e37;
  border-color: #ef3e37;
  color: #fff;
}

.pf-tag {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  border: solid 1px #238fe8;
  border-radius: 4px;
  color: #238fe8;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  font-size: 12px !important;
  padding: 3px 0.455em 2px;
}

.pf-tag--c-secondary {
  background-color: #ef3e37;
  border-color: #ef3e37;
  color: #fff;
  font-size: 12px !important;
  padding: 3px 0.455em 2px;
}

.btnArea {
  display: flex;
  /* justify-content: space-between; */
  align-items: center;
}

.button-left,
.button-right-next {
  flex: 1;
}

.button-left {
  display: flex;
  justify-content: flex-start;
}

.button-right-next {
  display: flex;
  justify-content: flex-end;
}

.bottom_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute; /* 親要素(main)を基点にする */
  bottom: 65px; /* 親要素(main)の下から65px */
  width: 100%;
  text-align: center;
}

.bottom_img img {
  width: 55px;
  height: 55px;
}

.bottom_text {
  margin-top: 5px; /* 画像の高さ + 余白 */
  font-size: 12px;
  font-weight: bold;
  line-height: 1.5;
}

@media screen and (min-width: 768px) {
  .bottom_content {
    flex-direction: row;
    text-align: left;
    justify-content: center;
    gap: 10px;
  }

  .bottom_img img {
    width: 65px;
    height: 65px;
  }

  .bottom_text {
    margin-top: -3px !important;
  }
}


/* 
.select{
  position: relative;
}

.select::after {
    border-bottom: 1px solid #238fe8;
    border-left: 1px solid #238fe8;
    content: "";
    height: 12px;
    pointer-events: none;
    position: absolute;
    right: 14px;
    top: 36%;
    transform: rotate(-45deg);
    width: 12px;
    z-index: 1;
} */