@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;
}

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;
}
main {
    background: #fff;
}
.wrapper {
  width: 100%;
  max-width: 500px;
  font-family: '游ゴシック', 'Yu Gothic', '游ゴシック体', YuGothic, 'ヒラギノ角ゴPro W3', 'Hiragino Kaku Gothic Pro', Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', Arial, Helvetica, Verdana, sans-serif;
  font-size: 1.4rem;
  font-weight: bold;
  color: #000;
  line-height: 1.6;
  margin: 0 auto;
	background: #fff;
}
button {
  font-family: '游ゴシック', 'Yu Gothic', '游ゴシック体', YuGothic, 'ヒラギノ角ゴPro W3', 'Hiragino Kaku Gothic Pro', Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', Arial, Helvetica, Verdana, sans-serif;
}
video {
    object-fit: cover;
    width: 100%;
}
/*
header {
  padding-top: 2.5rem;
}
*/
@media (min-width: 500px) {
  html {
    font-size: 62.5%;
  }
	body {
  background-image: url(../img/body_bg.webp);
  background-color: #f1f1f1;
  background-size: 20%;
  background-repeat: repeat;
}
  .wrapper {
    box-shadow: rgba(0, 0, 0, 0.4) 0px 30px 90px;
		background: #fff;
  }
  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: 26.7rem;
  margin: 0 auto 1.5rem;
}
#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_04 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: 75%;
  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));
}

/*240115_あとらす追記*/
.result_mv_bg {
  position: relative;
}
.img_cta {
  position: absolute;
  top: 16rem;
  left: calc(50% - 18.75rem);
}
.img_cta img {
  width: 37.5rem;
}

/*スライダー*/
.lesson_slider_wrap_01 {
  padding: 1.5rem 0;
}
.lesson_slider_wrap_0203 {
  padding: 1.5rem 0;
  background: #FFD684;
}
.lesson_slider_03 {
  margin-top: 1rem;
}
.slick-slide {
  margin: 0 0.5rem;
}

/*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: #603813;
  padding: 2rem 0 4rem;
}
.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_01 .q_number::before {
  background: url(../img/dot_1.png) no-repeat 0 0/contain;
}
.survey_q_02 .q_number::before {
  background: url(../img/dot_2.png) no-repeat 0 0/contain;
}
.survey_q_03 .q_number::before {
  background: url(../img/dot_3.png) no-repeat 0 0/contain;
}
.survey_q_04_wrap .q_number::before {
  background: url(../img/dot_4.png) no-repeat 0 0/contain;
}
.survey_q_tx {
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
}
.survey_q_tx span {
  display: block;
  font-size: 1.2rem;
  margin-top: 0.5rem;
}
.survey_q_wrap {
  background: rgb(207,208,224);
  background: linear-gradient(0deg, rgba(207,208,224,1) 0%, rgba(255,214,204,1) 85%, rgba(245,174,153,1) 100%);
  padding: 3rem 1rem;
  border-radius: 3rem;
  margin: 1.5rem 2rem 2rem;
}
.survey_q_wrap dd {
  margin-top: 3rem;
}
input[type=radio] + label {
  background-color: #fff;
  color: #603813;
  filter: drop-shadow(7px 7px 3px rgba(73,0,0,.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_02 li,
.survey_checkbox_04 li{
	width: 50%;
}
.survey_checkbox_02 input[type=radio]:checked + label::after,
.survey_checkbox_04 input[type=radio]:checked + label::after {
  display: inline-block;
  content: "";
  position: absolute;
  background: url("../img/check_ic.png") no-repeat 0 0/contain;
  width: 2.3rem;
  height: 2.1rem;
  top: 2.2rem;
  left: 2.2rem;
}
.survey_q_01 li + li,
.survey_q_03 li + li {
  margin-top: 2rem;
}
.survey_checkbox_02 li:nth-of-type(n+3),
.survey_checkbox_04 li:nth-of-type(n+3) {
  margin-top: 3rem;
}
.survey_checkbox_02,
.survey_checkbox_04 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
}
.survey_checkbox_02 li p,
.survey_checkbox_04 li p {
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 1rem;
}
.survey_checkbox_02 input[type=radio] + label,
.survey_checkbox_04 input[type=radio] + label {
  width: 80%;
  height: 100%;
  background: unset;
  display: block;
}
.survey_q_01 .q_img,
.survey_q_03 .q_img {
  margin: 2rem auto 0;
}
.survey_q_04 {
  position: relative;
}
.q_last_img {
  position: absolute;
  width: 12.3rem;
  height: 14.5rem;
  bottom: 8.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(73,0,0,.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;
}
.cta_btn {
  width: 80%;
  margin-top: 1.5rem;
  filter: drop-shadow(7px 7px 3px rgba(73,0,0,.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: #FF5B43;
	font-size: 2.2rem;
}
.slider_lead_wrap {
  margin-top: 3rem;
  position: relative;
}
.bg_purple {
  background: rgb(207,208,224);
  background: linear-gradient(0deg, rgba(207,208,224,1) 0%, rgba(228,210,216,1) 100%);
  margin-top: 2rem;
  padding-bottom: 2.5rem;
}
.slider_lead_02 {
  position: absolute;
  top: 19rem;
  left: 3.5rem;
  width: 25%;
}
.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: 85%;
}
.cta_area .cta_btn .shine_mask {
  -webkit-mask-image: url("../img/q5_cta_02.png"); mask-image: url("../img/q5_cta_02.png");
}
@media (min-width: 500px) {
  button.q_04_next {
    top: 15px;
}
	.slider_lead_02 { 
    top: 25rem;
}
}