@charset "UTF-8";
/************************************************
reset
************************************************/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, picture, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, dialog, figure, footer, header, hgroup, menu, nav, section, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  font-family: YuGothic, "Yu Gothic medium", 'Noto Sans JP', sans-serif;
}
body {
  background: #fff;
  box-sizing: border-box;
}
article, aside, dialog, figure, footer, header, hgroup, nav, section {
  display: block;
}
a {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
ul, ol {
  list-style: none;
}
picture {
  display: block;
}
/************************************************
css 追記
************************************************/
html {
  font-size: calc(100vw / 37.5);
  scroll-behavior: smooth;
}
img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
.wrapper {
  width: 100%;
  max-width: 750px;
  font-size: 1.4rem;
  color: #000;
  line-height: 1.6;
  margin: 0 auto;
}
button {}
/*
header {
  padding-top: 2.5rem;
}
*/
@media (min-width: 751px) {
  html {
    font-size: 62.5%;
  }
  .wrapper {
    box-shadow: rgba(0, 0, 0, 0.4) 0px 30px 90px;
  }
  header {
    padding-top: 20px;
  }
}
/*===============　きらっと光るアニメーション ===============*/
@-webkit-keyframes shine {
  0% {
    left: -200%;
    opacity: 0;
  }
  70% {
    left: -200%;
    opacity: 0.5;
  }
  71% {
    left: -200%;
    opacity: 1;
  }
  100% {
    left: -20%;
    opacity: 0;
  }
}
@keyframes shine {
  0% {
    left: -200%;
    opacity: 0;
  }
  70% {
    left: -200%;
    opacity: 0.5;
  }
  71% {
    left: -200%;
    opacity: 1;
  }
  100% {
    left: -20%;
    opacity: 0;
  }
}
.cta_btn .shine_inner {
  position: relative;
  overflow: hidden;
  display: block;
  max-width: 100%;
}
.cta_btn .shine_mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-mask-image: url("../img/cta.png");
  mask-image: url("../img/cta.png");
  -webkit-mask-size: 100% auto;
  mask-size: 100% auto;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: left top;
  mask-position: left top;
  display: block;
}
.cta_btn .shine {
  content: "";
  -webkit-animation: shine 3s cubic-bezier(0.25, 0, 0.25, 1) infinite;
  animation: shine 3s cubic-bezier(0.25, 0, 0.25, 1) infinite;
  background-color: #fff;
  width: 140%;
  height: 100%;
  -webkit-transform: skewX(-45deg);
  transform: skewX(-45deg);
  top: 0;
  left: -160%;
  opacity: 0.5;
  position: absolute;
  z-index: 1;
  display: block;
}
/*===============　上下に動くアニメーション ===============*/
.floatV {
  -webkit-animation: floatV 3s ease-in-out infinite alternate;
  animation: floatV 3s ease-in-out infinite alternate;
}
@-webkit-keyframes floatV {
  0% {
    -webkit-transform: translate3d(0, -0.5em, 0);
    transform: translate3d(0, -0.5em, 0);
  }
  50% {
    -webkit-transform: translate3d(0, 0.5em, 0);
    transform: translate3d(0, 0.5em, 0);
  }
  100% {
    -webkit-transform: translate3d(0, -0.5em, 0);
    transform: translate3d(0, -0.5em, 0);
  }
}
@keyframes floatV {
  0% {
    -webkit-transform: translate3d(0, -0.5em, 0);
    transform: translate3d(0, -0.5em, 0);
  }
  50% {
    -webkit-transform: translate3d(0, 0.5em, 0);
    transform: translate3d(0, 0.5em, 0);
  }
  100% {
    -webkit-transform: translate3d(0, -0.5em, 0);
    transform: translate3d(0, -0.5em, 0);
  }
}
/************************************************
survey_q 質問ボックス
************************************************/
p.logo {
  width: 12rem;
  margin: 0 auto 1rem;
}
#q_04_next:focus {
  outline: none;
}
input[type=radio] {
  display: none;
}
input[type=radio] + label {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background-color: #F17D68;
  width: 28.8rem;
  height: 5.4rem;
  color: #fff;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  border-radius: 4rem;
}
.survey_q_03 input[type=radio] + label {
  font-size: 1.6rem;
}
input[type=radio]:checked + label {
  background-color: #E81610;
}
input[type=radio]:checked ~ button {
  background-color: #fff;
}
button.q_04_next {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 28.8rem;
  height: 5.4rem;
  margin: 2.5rem auto 7rem;
  text-decoration: none;
  border: none;
  pointer-events: none;
  background: unset;
  opacity: .5;
}
button.q_04_next.clickable {
  pointer-events: auto;
  opacity: 1;
}
.cta_btn {
  width: 31.7rem;
  margin: 3.5rem auto 0;
  filter: drop-shadow(0.5rem 0.5rem 0 rgba(255, 205, 0, 0.75));
}
@media (min-width: 751px) {
  p.logo {
    width: 240px;
    margin: 0 auto 20px;
  }
  input[type=radio] + label {
    width: 576px;
    height: 108px;
    font-size: 3rem;
    border-radius: 60px;
  }
  .survey_q_03 input[type=radio] + label {
    font-size: 3.2rem;
  }
  button.q_04_next {
    width: 576px;
    margin: 50px auto 0;
  }
  button.q_04_next.clickable {
    cursor: pointer;
  }
  .cta_btn {
    width: 633px;
    margin: 70px auto 0;
    filter: drop-shadow(10px 10px 0 rgba(255, 205, 0, 0.75));
  }
}
/*240115_あとらす追記*/
.result_mv_bg {
  position: relative;
}
.img_cta {
  position: absolute;
  top: 16rem;
  left: calc(50% - 18.75rem);
}
.img_cta img {
  width: 37.5rem;
}
@media (min-width: 751px) {
  .img_cta {
    top: 320px;
    left: calc(50% - 375px);
  }
  .img_cta img {
    width: 750px;
  }
}
/*shanti用*/
/*===============　ズームイン ===============*/
.zoomIn {
  animation-name: zoomInAnime;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
}
@keyframes zoomInAnime {
  from {
    transform: scale(0.5);
  }
  to {
    transform: scale(1);
  }
}
/*===============　フェードアップアニメーション ===============*/
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: .8s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.wrapper {
  color: #585757;
  /*padding: 1rem 0 0;*/
  padding: 0;
}
.q_number {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  padding-top: 4rem;
  position: relative;
  letter-spacing: 0.15em;
}
.q_number::before {
  display: inline-block;
  content: "";
  position: absolute;
  top: 2rem;
  left: calc(50% - 3rem);
  width: 6rem;
  height: 2rem;
}
.survey_q_tx {
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  color: #e83405;
}
.survey_q_tx span {
  display: block;
  font-size: 1.2rem;
  margin-top: 0.5rem;
}
.survey_q_wrap {
  background: rgb(43, 92, 171);
  background-image: linear-gradient(0deg, #e83405, #f7b85d);
  padding: 4rem 2.5rem;
  border-radius: 3rem;
  color: #FFF;
  margin: 3rem 2rem;
}
.survey_q_wrap dd {
  margin-top: 3rem;
}
input[type=radio] + label {
  background-color: #fff;
  color: #585757;
  filter: drop-shadow(7px 7px 3px rgba(24, 65, 125, .2));
  position: relative;
  width: 22rem;
  margin: 0 auto;
}
input[type=radio]:checked + label {
  background-color: #fff;
  filter: unset;
  transform: translate(5px, 5px);
  opacity: .8;
}
.survey_checkbox_01 input[type=radio]:checked + label::after, .survey_checkbox_04 input[type=radio]:checked + label::after {
  display: inline-block;
  content: "";
  position: absolute;
  background: url("https://rintosull.jp/tmpl/newstore/img/survey/check_ic.png") no-repeat 0 0/contain;
  width: 2.3rem;
  height: 2.1rem;
  top: 1.4rem;
  left: 1.1rem;
}
.survey_q_01 li + li, .survey_q_02 li + li {
  margin-top: 2rem;
}
.survey_checkbox_01 li:nth-of-type(n+3), .survey_checkbox_04 li:nth-of-type(n+3) {
  margin-top: 3rem;
}
.survey_checkbox_01, .survey_checkbox_04 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
}
.survey_checkbox_01 li p {
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 1rem;
}
.survey_checkbox_04 li p {
  text-align: center;
  font-size: 1.25rem;
  font-weight: bold;
  margin-top: 1rem;
}
.survey_checkbox_01 input[type=radio] + label, .survey_checkbox_04 input[type=radio] + label {
  width: 12.7rem;
  height: 100%;
  background: unset;
  display: block;
}
.survey_q_01 .q_img, .survey_q_02 .q_img {
  margin: 2rem auto 0;
}
.survey_q_03 {
  position: relative;
}
.q_last_img {
  position: absolute;
  width: 12.3rem;
  height: 14.5rem;
  bottom: 5.5rem;
  right: 5rem;
}
.tx_small {
  font-size: 1.3rem;
}
.q_last_tx {
  text-align: center;
  font-weight: bold;
  font-size: 1.8rem;
}
button.q_04_next {
  filter: drop-shadow(7px 7px 3px rgba(24, 65, 125, .2));
  transition: .3s;
}
button.q_04_next:hover, button.q_04_next:active {
  filter: unset;
  transform: translate(5px, 5px);
  transition: .3s;
}
.survey_q_05_wrap {
  padding: 3rem 0;
  background: antiquewhite;
}
.cta_btn {
  width: 25.9rem;
  margin-top: 1.5rem;
  filter: drop-shadow(7px 7px 3px rgba(24, 65, 125, .2));
}
.cta_btn .shine_mask {
  -webkit-mask-image: url("../img/q5_cta_01.png");
  mask-image: url("../img/q5_cta_01.png");
}
.cta_comment {
  text-align: center;
  font-weight: bold;
  margin-top: 2.5rem;
}
.tx_red {
  color: #f23770;
}
.slider_lead_wrap {
  margin-top: 3rem;
  position: relative;
}
.blue_area02 {
  background: rgb(43, 92, 171);
  background: linear-gradient(0deg, rgba(209, 200, 225, 1) 0%, rgba(117, 150, 205, 1) 40%, rgba(117, 150, 205, 1) 90%, rgba(43, 92, 171, 1) 105%);
}
.slider_lead_02 {
  position: absolute;
  top: 17.8rem;
  left: 3.5rem;
  width: 10.2rem;
}
.slider_lead_03 {
  text-align: center;
  font-weight: bold;
  font-size: 2rem;
  margin-top: 1.5rem;
}
.lesson_slider_02 {
  margin-top: 1rem;
}
.slider_lead_04 {
  margin-top: -2rem;
}
.slider_lead_05 {
  width: 15.4rem;
  margin: 1.5rem auto;
  display: block;
}
.slider_lead_06 {
  text-align: center;
  font-weight: bold;
  font-size: 2rem;
}
.cta_area {
  text-align: center;
  font-weight: bold;
  margin-top: 2rem;
}
.cta_top_tx {
  font-size: 1.8rem;
}
.cta_bottom_tx {
  margin-top: 1.5rem;
}
.cta_area .cta_btn {
  width: 26rem;
}
.cta_area .cta_btn .shine_mask {
  -webkit-mask-image: url("../img/q5_cta_02.png");
  mask-image: url("../img/q5_cta_02.png");
}
.comment a {
  display: inline;
}
@media screen and (min-width: 751px) {
  /*.wrapper {
    padding-top: 20px;
  }*/
  .q_number {
    font-size: 4.8rem;
    padding-top: 80px;
  }
  .q_number::before {
    top: 40px;
    left: calc(50% - 61px);
    width: 122px;
    height: 22px;
  }
  .survey_q_tx {
    font-size: 3.4rem;
  }
  .survey_q_tx span {
    font-size: 1.8rem;
    margin-top: 5px;
  }
  .survey_q_wrap {
    padding: 60px 52px;
    border-radius: 50px;
    margin: 50px 60px;
  }
  .survey_q_wrap dd {
    margin-top: 60px;
  }
  input[type=radio] + label {
    width: 390px;
    transition: .3s;
  }
  input[type=radio] + label:hover {
    filter: unset;
    transform: translate(5px, 5px);
    transition: .3s;
  }
  .survey_checkbox_01 input[type=radio]:checked + label::after, .survey_checkbox_04 input[type=radio]:checked + label::after {
    width: 46px;
    height: 42px;
    top: 24px;
    left: 19px;
  }
  .survey_q_01 li + li, .survey_q_02 li + li {
    margin-top: 30px;
  }
  .survey_checkbox_01 li:nth-of-type(n+3), .survey_checkbox_04 li:nth-of-type(n+3) {
    margin-top: 45px;
  }
  .survey_checkbox_01 li p, .survey_checkbox_04 li p {
    font-size: 2.3rem;
    margin-top: 15px;
  }
  .survey_checkbox_01 input[type=radio] + label, .survey_checkbox_04 input[type=radio] + label {
    width: 232px;
  }
  .survey_q_01 .q_img, .survey_q_02 .q_img {
    margin: 20px auto 0;
  }
  .survey_q_03_wrap {
    padding-bottom: 100px;
  }
  .q_last_img {
    width: 246px;
    height: 290px;
    bottom: 100px;
    right: 120px;
  }
  .tx_small {
    font-size: 2.4rem;
  }
  .q_last_tx {
    font-size: 3.5rem;
    margin-top: 40px;
  }
  button.q_04_next {
    margin-top: 100px;
  }
  .survey_q_05_wrap {
    padding: 3rem 0;
  }
  .cta_btn {
    width: 518px;
    margin-top: 30px;
  }
  .cta_comment {
    margin-top: 40px;
    font-size: 2.5rem;
  }
  .slider_lead_wrap {
    margin-top: 50px;
  }
  .bg_purple {
    margin-top: 40px;
    padding-bottom: 50px;
  }
  .slider_lead_02 {
    top: 360px;
    left: 70px;
    width: 204px;
  }
  .slider_lead_03 {
    font-size: 4rem;
    margin-top: 40px;
  }
  .lesson_slider_02 {
    margin-top: 40px;
  }
  .slider_lead_04 {
    margin-top: -40px;
  }
  .slider_lead_05 {
    width: 308px;
    margin: 30px auto;
  }
  .slider_lead_06 {
    font-size: 4rem;
  }
  .cta_area {
    margin-top: 40px;
  }
  .cta_top_tx {
    font-size: 3.7rem;
  }
  .cta_bottom_tx {
    margin-top: 30px;
    font-size: 2rem;
  }
  .cta_area .cta_btn {
    width: 520px;
  }
  .blue_area02 .cp_kengaku_ttl {
    padding: 80px 2vw 40px 2vw;
  }
  .hidden_pc {
    display: none;
  }
}
main {
  background: #fbf9f3;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
  padding-bottom: 0.5em;
  background: white;
}
.store_number {
  background: #5f90cb;
  color: white;
  padding: 0.7em;
  padding-top: 0.8em;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
 font-size: clamp(8px, 2.65vw, 19.9px);
  line-height: 1.5em;
  font-weight: 700;
}
.store_number small {
  font-size: 0.8em;
}
.logo {
  width: 40%;
  max-width: 300px;
}
p.header_text {
  color: #5f90cb;
  border: solid 1px;
  padding: 0.5em;
  border-radius: 10px;
  font-size: clamp(12px, 4vw, 20px);
  font-weight: 600;
}
span.store_number_bg {
  font-size: 1.5em;
}

/*===============Q1 ===============*/
.fv {
  position: relative;
}
.fv_cp {}
.survey_q_01 .q_img, .survey_q_02 .q_img {
  margin: 0 auto;
  border-radius: 20px;
}
.survey_q_01 li:nth-child(2) {
  margin-top: 0;
}
.survey_q_01 ul.q_num {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 50px;
  margin: 2rem auto 0;
}
.survey_q_01 ul.q_num li {
  width: 10px;
  height: 10px;
  background: #f4c2b1;
  border-radius: 1rem;
  margin-right: 10px;
}
.survey_q_01 ul.q_num li:first-child {
  background: #f23770;
}
.survey_q_01 ul.q_num li:last-child {
  margin-right: 0;
  margin-top: 0;
}
.survey_q_01 .q_number::before {
  content: none;
}
.q_number {
  padding-top: 1rem;
}
.q_num {
  width: 20%;
  margin: 0 auto 4rem;
}
a.fv_cp_cta {
  position: absolute;
  bottom: 13%;
  display: block;
  width: 70%;
  left: 50%;
  transform: translateX(-50%);
}
/*===============Q2 ===============*/
.survey_q_02, #q1, .survey_q_03_wrap {
  padding: 3rem 0 3rem;
}
@media (min-width:751px) {
  .survey_q_02, #q1, .survey_q_03_wrap {
    padding: 7rem 0 7rem;
  }
}
picture.survey_q_02_img {
  margin-bottom: 2.5em;
}
.survey_q_02 .q_number::before {
  content: none;
}
.q_number {
  padding-top: 1rem;
}
.q_num {
  width: 20%;
  margin: 0 auto 4rem;
}
ul.survey_checkbox_01 {
  text-align: center;
}
.survey_q_02 li + li {
  margin-top: 2rem;
}
/*===============Q3 ===============*/
#q_03_next:focus {
  outline: none;
}
button.q_03_next {
  pointer-events: none;
  opacity: .5;
  display: block;
}
button.q_03_next.clickable {
  pointer-events: auto;
  opacity: 1;
}
button.q_03_next {
  width: 576px;
  margin: 20px auto 50px;
}
button.q_03_next.clickable {
  cursor: pointer;
}
button.q_03_next {
  filter: drop-shadow(7px 7px 3px rgba(24, 65, 125, .2));
  transition: .3s;
}
#q_03_next {
  width: 95%;
  max-width: 550px;
  display: block;
  margin: auto;
}
span.red_border {
    color: #f20808;
    border-bottom: solid 1px;
}
.red {
    color: #f20808;
}
button.q_03_next:hover, button.q_03_next:active {
  filter: unset;
  transform: translate(5px, 5px);
  transition: .3s;
}
.survey_q_03_wrap ul.q_num {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 50px;
  margin: 2rem auto 0;
}
.survey_q_03_wrap ul.q_num li {
  width: 10px;
  height: 10px;
  background: #f23770;
  border-radius: 1rem;
  margin-right: 10px;
}
.survey_q_03_wrap ul.q_num li:last-child {
  margin-right: 0;
  margin-top: 0;
}
.survey_q_03_wrap .q_number::before {
  content: none;
}
.q_number {
  padding-top: 1rem;
}
.q_num {
  width: 20%;
  margin: 0 auto 2rem;
}
.tx_note {
  display: block;
  font-size: 0.7em;
}
video {
  width: 100%;
}
.invitation_wrap {
  position: relative;
}
.invitation_img {
  position: relative;
  z-index: 2;
  width: 85%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 1rem;
}
.invitation_video {
  width: 90%;
  margin: auto;
  position: relative;
  /*margin-top: -15%;*/
}
.ctaBtn_wrap {
  width: 90%;
  margin: 2rem auto;
  max-width: 550px;
}
p.ctaBtn_text {
  text-align: center;
  position: relative;
  font-size: clamp(18px, 4vw, 30px);
  max-width: 500px;
  margin: 0 auto 0.5em;
  font-weight: 600;
}
p.ctaBtn_text:before {
  content: "";
  position: absolute;
  left: 10%;
  top: 50%;
  display: inline-block;
  width: 25px;
  height: 2px;
  transform: rotate(60deg);
  background: #585757;
}
p.ctaBtn_text:after {
  content: "";
  position: absolute;
  right: 10%;
  top: 50%;
  display: inline-block;
  width: 25px;
  height: 2px;
  transform: rotate(-60deg);
  background: #585757;
}
.price {
  width: 85%;
  margin: 5rem auto;
}
p.price_text {
  text-align: center;
  color: #5f90cb;
  font-weight: bold;
  font-size: clamp(14px, 4.3vw, 30px);
}
div#cp_comment {
  width: 85%;
  margin: 7rem auto 5rem;
  max-width: 590px;
  font-size: clamp(10px, 1.75vw, 16px);
  line-height: 1.8em;
}
#cp_comment li, #cp_comment p {
  text-shadow: 0 0 0.4px #585757;
}
#plan_02 {
  font-size: 1.1em;
  font-weight: bold;
  margin-bottom: 0.5em;
}
div#cp_comment br {
  display: none;
}
@media (max-width:750px) {
  .price {
    width: 90%;
    margin: 3rem auto;
  }
  div#cp_comment {
    margin: 3rem auto 5rem;
  }
}
.cp_comment_ttl {
  padding-top: 20px;
}
#checkbox_04_priceWrap {
    display: flex;
    justify-content: center;
    align-items: center;
}
p.checkbox_04_priceBox {
    display: flex;
    flex-direction: column;
    margin: 0 ;
}
p.checkbox_04_priceBox span {
    font-size: 0.6em;
}
span.square {
    border: solid;
    padding: 1px 3px;
    font-size: 0.4em;
    margin-right: 5px;
    display: inline-block;
}
#checkbox_04_priceText {
    font-size: 2rem;
    display: block;
    margin: 0;
}
.checkbox_04_smallText {
    font-size: 0.9em;
    margin-left: 0.1em;
}
/*
===============================================================================
■ footer
===============================================================================
*/
/************************************************
footer
************************************************/
footer {
  text-align: center;
  background: #fff;
}
footer a:hover {
  opacity: .8;
}
footer .nav {
    padding: calc(60/750*100%) 0;
}
footer ul li, footer ul li a {
    display: inline-block;
}
footer ul li a {
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 0.5em;
    font-size: 9pt;
    line-height: 2.5em;
    color: #403e3e;
}
footer ul li span, .ft-bottom {
    font-size: 10px;
}
.ft-bottom {
  color: #fff;
  background: #de580d;
  font-size: 10px;
}
.ft-copyright {
  padding: calc(40/750*100%) 0;
  display: inline-block;
}

/*動画埋め込み*/

.cp_video_wrap {
  width: 640px;
  margin: 20px auto;
  border: 15px solid #fff;
}
@media screen and (max-width: 750px) {
  .cp_video_wrap {
    width: 33rem;
    margin: 2rem auto;
    border: 1rem solid #fff;
  }
}
.cp_video_inner {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.cp_video_inner iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
