@import url("https://fonts.googleapis.com/css2?family=Alegreya+Sans+SC:ital,wght@0,400;0,500;0,700;0,800;0,900;1,400;1,500;1,700;1,800;1,900&family=Inter:opsz,wght@14..32,100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
*,
*:before,
*:after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  transition: 1s;
  font-size: 16px;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #333333;
  line-height: 1.5;
}
body > img {
  display: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

@media screen and (min-width: 961px) {
  .disp_sp {
    display: none !important;
    visibility: hidden !important;
  }
}
@media screen and (max-width: 960px) {
  .disp_pc {
    display: none !important;
    visibility: hidden !important;
  }
}
.scrollanime {
  opacity: 0;
  transition: all ease .3s;
}

.updown {
  opacity: 0;
  transform: translateY(-50px);
}

.downup {
  opacity: 0;
  transform: translateY(50px);
}

.slide-right {
  opacity: 0;
  transform: translateX(50px);
}

.slide-left {
  opacity: 0;
  transform: translateX(-50px);
}

.scaleup {
  opacity: 0;
  transform: scale(0.8);
}

.fadeIn.updown {
  animation-name: fadeInDown;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
.fadeIn.downup {
  animation-name: fadeInUP;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
.fadeIn.slide-right {
  animation-name: fadeInRight;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
.fadeIn.slide-left {
  animation-name: fadeInLeft;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
.fadeIn.scaleup {
  animation-name: fadeInScale;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
.fadeIn.opacity {
  opacity: 1;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUP {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.eachTextAnime {
  overflow: hidden;
  display: block;
  opacity: 0;
  transition: opacity ease .3s .5s;
}
.eachTextAnime span {
  transform: translateY(100%);
  display: inline-block;
}
.eachTextAnime.appeartext {
  opacity: 1;
}
.eachTextAnime.appeartext span {
  animation: text_anime_on 1s ease-out forwards;
  position: relative;
}

@keyframes text_anime_on {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
.secChatbot {
  background-color: #D8F1FF;
  padding-bottom: 250px;
  padding-top: 1px;
  min-height: 100vh;
}
.secChatbot__contentsWrap {
  position: relative;
  padding-left: 320px;
}
@media screen and (max-width: 960px) {
  .secChatbot__contentsWrap {
    padding-left: 0;
    padding-top: 150px;
  }
}
.secChatbot__contentsWrap__side {
  width: 320px;
  height: 100vh;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
}
@media screen and (max-width: 960px) {
  .secChatbot__contentsWrap__side {
    width: 100%;
    height: auto;
  }
}

.chatbot {
  max-width: 450px;
  margin: 0 auto;
}
.chatbot--top {
  border-radius: 10px;
  background-color: #fff;
  padding: 30px 7%;
  max-width: 670px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
}
.chatbot__top_txt {
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 20px;
}
.chatbot__blk01 {
  margin-top: 50px;
  display: none;
}
@media screen and (min-width: 961px) {
  .chatbot__blk01 {
    margin-top: 80px;
  }
}
.chatbot__blk01.active {
  display: block;
}
.chatbot__blk01--top {
  margin-top: 0;
  margin-bottom: 30px;
}
.chatbot__flex {
  margin-bottom: 30px;
  display: flex;
  column-gap: 10px;
  opacity: 0;
  transform: translateX(-10%);
  animation: slideanime forwards ease .8s;
}
.chatbot__icon {
  background-color: #fff;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  padding: 2%;
  flex-shrink: 0;
}
.chatbot__questions {
  margin-top: 20px;
}
.chatbot__question {
  background-color: #4473C0;
  color: #fff;
  font-weight: 500;
  padding: 10px;
  border-radius: 0 10px 10px 10px;
  font-size: 15px;
}
.chatbot input[type="radio"] {
  display: none;
}
.chatbot input[type="radio"]:checked + label {
  background-color: #4473C0;
  color: #fff;
}
.chatbot__items {
  display: flex;
  flex-wrap: wrap;
  border-radius: 10px;
  background-color: #fff;
  padding: 20px 5%;
  grid-row-gap: 15px;
  justify-content: space-between;
  opacity: 0;
  transform: translateX(-10%);
  animation: slideanime forwards ease .8s .3s;
}
.chatbot__items--top {
  padding: 0;
  background-color: transparent;
}
@keyframes slideanime {
  0% {
    opacity: 0;
    transform: translateX(-10%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.chatbot__label01 {
  border: solid 2px #4473C0;
  display: block;
  color: #4473C0;
  font-weight: bold;
  padding: 9px;
  text-align: center;
  border-radius: 6px;
  width: 100%;
  background-color: #fff;
  font-size: 16px;
  transition: all ease .3s;
  cursor: pointer;
  font-size: 15px;
}
.chatbot__label01--50 {
  width: 48%;
}
.chatbot__label02 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: -5px;
  width: 100%;
}
.chatbot .error_txt {
  font-size: 13px;
  font-weight: 500;
  color: #D91235;
  margin-top: -5px;
}
.chatbot input[type="email"], .chatbot input[type="text"], .chatbot input[type="url"], .chatbot input[type="tel"], .chatbot textarea {
  font-weight: 500;
  font-size: 16px;
  padding: 9px;
  width: 100%;
  display: block;
  border: solid 1px #DEDEDE;
  background-color: #fff;
  border-radius: 6px;
  font-family: 'Noto Sans JP', sans-serif;
}
.chatbot input[type="email"]::placeholder, .chatbot input[type="text"]::placeholder, .chatbot input[type="url"]::placeholder, .chatbot input[type="tel"]::placeholder, .chatbot textarea::placeholder {
  font-size: 14px;
  color: #DEDEDE;
}
.chatbot input[type="email"]:focus, .chatbot input[type="text"]:focus, .chatbot input[type="url"]:focus, .chatbot input[type="tel"]:focus, .chatbot textarea:focus {
  outline: none;
}
.chatbot input[type="submit"] {
  appearance: none;
  -webkit-appearance: none;
  font-size: 16px;
  display: inline-block;
  position: relative;
  width: 293px;
  max-width: 100%;
  border-radius: 60px;
  background: center right 28px/18px url("../img/ico-arrow-white.png") no-repeat;
  font-weight: bold;
  color: #fff;
  text-align: center;
  padding: 16px;
  border: none;
  font-family: 'Noto Sans JP', sans-serif;
  margin-bottom: 20px;
  transition: all ease .3s;
  cursor: pointer;
  pointer-events: none;
  background-color: #D2D6E4;
}
.chatbot input[type="submit"].active {
  background-color: #DD4040;
  pointer-events: auto;
}
.chatbot input[type="submit"]:hover {
  opacity: .7;
  pointer-events: auto;
}
.chatbot input[type="submit"].submit_last {
  width: 330px;
  padding: 22px 5%;
  font-size: 18px;
}
.chatbot__select {
  appearance: none;
  -webkit-appearance: none;
  display: block;
  color: #4473C0;
  font-weight: bold;
  padding: 10px;
  border: solid 2px #4473C0;
  border-radius: 6px;
  width: 100%;
  background-color: #fff;
  font-size: 15px;
  font-family: 'Noto Sans JP', sans-serif;
  background: center right 10px/10px url("../img/ico-select.png") no-repeat #fff;
}
.chatbot__select:focus {
  outline: none;
}
.chatbot__btn_blk {
  margin-top: 40px;
}
.chatbot .radio01 {
  /*display: flex;*/
  align-items: center;
}
.chatbot .radio01 input[type="radio"] {
  display: inline-block;
  margin-top: 2px;
}
.chatbot .radio01 input[type="radio"]:checked + label {
  background-color: transparent;
  color: #333;
}

.form {
  position: relative;
}
.form__blk01 {
  padding: 30px 5%;
  background-color: #F1FAFF;
  box-shadow: 4.267px 4.267px 0px 0px #D4ECFD;
  border-radius: 10px;
  display: none;
}
.form__blk01.first {
  display: block;
}
.form__blk01.last {
  min-height: 300px;
  padding-top: 40%;
}
.form__sending {
  font-size: 16px;
  text-align: center;
  font-weight: bold;
  color: #0029C8;
}
.form__txt01 {
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 1em;
  text-align: center;
}
.form__items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.form__items--gap20 {
  gap: 20px;
}
.form__item {
  width: 100%;
}
.form__label01 {
  display: block;
  color: #0029C8;
  font-weight: bold;
  padding: 9px;
  text-align: center;
  border: solid 1px #0029C8;
  border-radius: 6px;
  width: 100%;
  background-color: #fff;
  font-size: 16px;
  transition: all ease .3s;
  cursor: pointer;
}
.form__label01:hover {
  opacity: 0.8;
}
.form__label01--50 {
  width: calc(50% - 5px);
}
@media screen and (min-width: 961px) {
  .form__label01--pc100 {
    width: 100%;
  }
  .form__label01--pc60 {
    width: 60%;
    margin: 0 auto;
  }
}
.form__label02 {
  display: block;
  font-size: 14px;
  font-weight: bold;
  color: #3C3C3C;
  padding-bottom: 10px;
}
.form__select {
  appearance: none;
  -webkit-appearance: none;
  display: block;
  color: #0029C8;
  font-weight: bold;
  padding: 9px;
  border: solid 1px #0029C8;
  border-radius: 6px;
  width: 100%;
  background-color: #fff;
  font-size: 16px;
  font-family: 'Noto Sans JP', sans-serif;
  background: center right 10px/10px url("../img/ico-select.png") no-repeat #fff;
}
.form__select:focus {
  outline: none;
}
.form__select--gray {
  border-color: #DEDEDE;
}
.form__input_hidden {
  display: none;
}
.form__input_hidden:checked + label {
  background-color: #0029C8;
  color: #fff;
}
.form input[type="email"], .form input[type="text"], .form input[type="url"], .form input[type="tel"], .form textarea {
  font-weight: bold;
  font-size: 16px;
  padding: 9px;
  width: 100%;
  display: block;
  border: solid 1px #DEDEDE;
  background-color: #fff;
  border-radius: 6px;
  font-family: 'Noto Sans JP', sans-serif;
}
.form input[type="email"]::placeholder, .form input[type="text"]::placeholder, .form input[type="url"]::placeholder, .form input[type="tel"]::placeholder, .form textarea::placeholder {
  font-size: 14px;
  color: #DEDEDE;
}
.form input[type="email"]:focus, .form input[type="text"]:focus, .form input[type="url"]:focus, .form input[type="tel"]:focus, .form textarea:focus {
  outline: none;
}
.form__btn_blk {
  width: 100%;
  margin-top: 30px;
}
.form__btn_blk__flex {
  display: flex;
  align-items: center;
  column-gap: 20px;
  justify-content: center;
}
.form input[type="submit"] {
  appearance: none;
  -webkit-appearance: none;
  font-size: 16px;
  display: inline-block;
  position: relative;
  width: 293px;
  max-width: 100%;
  border-radius: 60px;
  background: center right 28px/18px url("../img/ico-arrow-white.png") no-repeat;
  font-weight: bold;
  color: #fff;
  text-align: center;
  padding: 16px;
  border: none;
  font-family: 'Noto Sans JP', sans-serif;
  margin-bottom: 20px;
  transition: all ease .3s;
  cursor: pointer;
  pointer-events: none;
  background-color: #D2D6E4;
}
.form input[type="submit"].active {
  background-color: #ED742F;
  pointer-events: auto;
}
.form input[type="submit"]:hover {
  opacity: .7;
  pointer-events: auto;
}
.form__btn01 {
  font-size: 18px;
  padding-bottom: 0.1em;
  font-family: 'Noto Sans JP', sans-serif;
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  display: inline-block;
  width: 113px;
  height: 40px;
  border-radius: 60px;
  border: none;
  color: #fff;
  font-weight: bold;
  position: relative;
  transition: all ease .3s;
  cursor: pointer;
  pointer-events: none;
  background-color: #D2D6E4;
}
.form__btn01.active {
  pointer-events: auto;
  background-color: #ED742F;
}
.form__btn01:hover {
  opacity: .7;
}
.form__btn01:after {
  display: block;
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  top: 0;
  bottom: 0;
  right: 14px;
  margin: auto;
}
.form__btn01--return {
  background-color: #fff;
  border: solid 1px #DEDEDE;
  color: #3C3C3C;
  pointer-events: auto;
}
.form__btn01--return:after {
  transform: rotate(-135deg);
  right: auto;
  left: 14px;
  border-color: #3C3C3C;
}
.form__btn01--thanks {
  width: 154px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}
.form .error_txt {
  font-size: 14px;
  font-weight: 500;
  color: #D91235;
  line-height: 1.6;
}
.form__step {
  font-size: 12px;
  display: flex;
  justify-content: center;
  column-gap: 7px;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (min-width: 961px) {
  .form__step {
    font-size: 18px;
  }
}
.form__step__en {
  font-family: 'Inter', sans-serif;
  color: #D2D6E4;
  font-weight: bold;
  display: block;
}
.form__step__en.active {
  color: #0029C8;
}
.form__step__jp {
  display: block;
  color: #fff;
  font-weight: 500;
  background-color: #D2D6E4;
  width: 90px;
  border-radius: 106px;
  padding: 0.5em;
}
@media screen and (min-width: 961px) {
  .form__step__jp {
    width: 135px;
  }
}
.form__step__jp.active {
  background-color: #0029C8;
}
.form__step__arrow {
  display: block;
  width: 4px;
  height: 4px;
  border-top: solid 1px #0029C8;
  border-right: solid 1px #0029C8;
  transform: rotate(45deg);
  margin-top: 2.5em;
}

.gauge {
  display: flex;
  background-color: #fff;
  position: fixed;
  top: 0;
  right: 0;
  width: calc(100% - 320px);
  height: 54px;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 960px) {
  .gauge {
    bottom: 0;
    top: auto;
    width: 100%;
  }
}
.gauge__inner {
  width: 450px;
  max-width: 90%;
  margin: 0 auto;
}
.gauge__flex {
  display: flex;
  align-items: center;
  column-gap: 20px;
}
.gauge__bar {
  flex-grow: 1;
  background-color: #D8F1FF;
  border-radius: 100px;
  height: 30px;
  padding: 5px;
}
.gauge__inbar {
  display: block;
  width: 45%;
  background-color: #4C7FD7;
  border-radius: 100px;
  height: 100%;
  transition: all ease .5s;
}
.gauge__txts {
  color: #4C7FD7;
  font-weight: 500;
  font-size: 14px;
}
.gauge__num {
  font-size: 1.6em;
  font-weight: bold;
  display: inline-block;
  padding-right: 0.1em;
}

.lastMassage {
  text-align: center;
}
.lastMassage__txt01 {
  font-weight: bold;
  color: #215F9A;
  font-size: 1.1em;
  margin-bottom: 5px;
}
.lastMassage__txt02 {
  font-size: 14px;
}

.beginner_thanks {
  background-color: #D8F1FF;
}

.thanks {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90vh;
  padding: 50px 0;
}
.thanks__wrap {
  width: 800px;
  margin: 0 auto;
  max-width: 90%;
}
.thanks__blk01 {
  padding: 80px 8% 60px;
  background-color: #fff;
  box-shadow: 4.267px 4.267px 0px 0px #D4ECFD;
  border-radius: 10px;
}
@media screen and (max-width: 960px) {
  .thanks__blk01 {
    padding: 60px 5% 30px;
  }
}
.thanks__ttl {
  text-align: center;
  margin-bottom: -2em;
}
.thanks__ttl__span {
  background-color: #ED742F;
  display: inline-block;
  border-radius: 52px;
  color: #fff;
  font-weight: bold;
  font-size: 22px;
  padding: 0.8em;
  width: 90%;
  max-width: 14em;
}
@media screen and (max-width: 960px) {
  .thanks__ttl__span {
    font-size: 18px;
  }
}
.thanks__txt01 {
  font-size: 16px;
  padding-bottom: 33px;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .thanks__txt01 {
    font-size: 14px;
    text-align: left;
  }
}
.thanks__btn01 {
  text-align: center;
  margin-bottom: 44px;
}
.thanks__btn01__a {
  display: inline-block;
  background-color: #0029C8;
  color: #fff;
  font-weight: bold;
  line-height: 1.5;
  border-radius: 999px;
  font-size: 18px;
  position: relative;
  width: 100%;
  max-width: 500px;
  padding: 1em;
  transition: all ease .3s;
}
@media screen and (max-width: 960px) {
  .thanks__btn01__a {
    font-size: 16px;
    padding: 5px;
  }
}
.thanks__btn01__a:hover {
  opacity: 0.7;
}
.thanks__btn01__a:after {
  display: block;
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-left: solid 7px #fff;
  border-top: solid 7px transparent;
  border-right: solid 7px transparent;
  border-bottom: solid 7px transparent;
  top: 0;
  bottom: 0;
  right: 31px;
  margin: auto;
}

.center {
  text-align: center;
}

.sideBnr {
  background-color: #4C7FD7;
}
.sideBnr__inner {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  width: 285px;
  max-width: 95%;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .sideBnr__inner {
    width: 340px;
    padding: 7px 0;
  }
}
.sideBnr__logo {
  width: 238px;
  margin: 0 auto;
  max-width: 100%;
}
@media screen and (max-width: 960px) {
  .sideBnr__logo {
    width: 340px;
  }
}
.sideBnr__main {
  margin-top: 20px;
  background-color: #fff;
  border-radius: 10px;
  padding: 30px 5%;
}
@media screen and (max-width: 960px) {
  .sideBnr__main {
    margin-top: 5px;
    padding: 8px 5%;
  }
}
.sideBnr__ul {
  display: flex;
  flex-direction: column;
  grid-row-gap: 20px;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (max-width: 960px) {
  .sideBnr__ul {
    grid-row-gap: 2px;
    font-size: 13px;
  }
}
.sideBnr__li {
  padding-left: 31px;
  position: relative;
}
@media screen and (max-width: 960px) {
  .sideBnr__li {
    padding-left: 24px;
  }
}
.sideBnr__li:before {
  display: block;
  content: "";
  position: absolute;
  top: 0.15em;
  left: 0;
  width: 21px;
  height: 20px;
  background: center/contain url("../img/ico-check.png") no-repeat;
}
@media screen and (max-width: 960px) {
  .sideBnr__li:before {
    width: 16px;
    height: 15px;
  }
}
.sideBnr .fc-orange {
  color: #F34259;
}
