@charset "UTF-8";


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%;
}
#mv{
	position: relative;
}
.ic_countdown {
    position: absolute;
    top: 15%;
    left: 3.3%;
    /* サイズは本体で定義（中身のテキストはここに載る） */
    width: 84px;
    height: 84px;
/*    display: flex;  */
    align-items: center;             /* 縦中央 */
    justify-content: center;         /* 横中央 */
    text-align: center;
    font-weight: 800;
    font-size: 1.2rem;
    color: #ffffff;
    font-family: 'Noto Sans JP', 'Helvetica Neue', Helvetica, Arial, sans-serif;

    /* 回転は要素全体に適用（テキスト含む） */
    transform: rotate(-15deg);
    z-index: 0;
		padding-top: 0.5rem;
}

.ic_countdown::before {
    content: "";
    position: absolute;
    inset: 0;                        
    border-radius: 50px;             
    background: #e9554b;            
    box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.2);
    z-index: -1;                    
    pointer-events: none;            
}
.ic_countdown p {
	margin-left: -8%;
	-webkit-text-stroke: 4px #e9554b;
  text-stroke: 4px #e9554b;
  paint-order: stroke;
	line-height: 1.8rem; 
	margin: 0.5rem 0 0 0rem;
}
.ic_countdown strong {
	margin-left: -4%;
    line-height: 2.2rem;
}
span.rotateL {
    display: inline-block;
    transform: rotate(-20deg);
}
span.rotateR {
    display: inline-block;
    transform: rotate(20deg);
}
.ic_countdown .txtS{
	font-size: 1.1rem;
}
.ic_countdown .txtM{
	font-size: 1.6rem;
	margin-top: -0.3rem;
    display: inline-block;
}
.ic_countdown .txtL{
	font-size: 3rem;
}
.ic_countdown .txtYellow{
	color: yellow;
}
.ic_countdown .txtYellow{
	color: yellow;
	font-size: 3.7rem;
}
.ic_countdown .lastday{
	font-size: 2.5rem;
}
.timer_tx {
    font-size: 1.8rem;
}
.timer_tx span{
    font-size: 2rem;
	color: red;
}
/*===============　きらっと光るアニメーション ===============*/
@-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;
}
	.ic_countdown{
	font-size: 1.5rem;
	padding-top: 0.5rem;
	top: 15.5%;
    left: 4%;
    width: 100px;
    height: 100px;
    border-radius: 50px;
}
.ic_countdown .txtYellow{
	color: yellow;
	font-size: 2.7rem;
}
.ic_countdown p {
	line-height: 2.2rem; 
	margin:0.6rem 0 0 -0.4rem;
}
.ic_countdown strong {
	margin-left: -4%;
  line-height: 2.6rem;
}
.ic_countdown .txtS{
	font-size: 1.3rem;
}
.ic_countdown .txtM{
	font-size: 2rem;
}
.ic_countdown .txtL{
	font-size: 4rem;
}
}