@charset "UTF-8";
.pc_LL_display {
  display: none;
}
@media screen and (max-width: 1600px) {
  .pc_LL_display {
    display: block;
  }
}

.pc_L_display {
  display: none;
}
@media screen and (max-width: 1400px) {
  .pc_L_display {
    display: block;
  }
}

.pc_M_display {
  display: none;
}
@media screen and (max-width: 1200px) {
  .pc_M_display {
    display: block;
  }
}

.pc_S_display {
  display: none;
}
@media screen and (max-width: 1000px) {
  .pc_S_display {
    display: block;
  }
}

.tab_display {
  display: none;
}
@media screen and (max-width: 800px) {
  .tab_display {
    display: block;
  }
}

.sp_LL_display {
  display: none;
}
@media screen and (max-width: 600px) {
  .sp_LL_display {
    display: block;
  }
}

.sp_L_display {
  display: none;
}
@media screen and (max-width: 460px) {
  .sp_L_display {
    display: block;
  }
}

.sp_ML_display {
  display: none;
}
@media screen and (max-width: 400px) {
  .sp_ML_display {
    display: block;
  }
}

.sp_M_display {
  display: none;
}
@media screen and (max-width: 375px) {
  .sp_M_display {
    display: block;
  }
}

.sp_S_display {
  display: none;
}
@media screen and (max-width: 350px) {
  .sp_S_display {
    display: block;
  }
}

/* animation */
.animation_dokundokun {
  animation: dokundokun 1500ms ease infinite;
}

@keyframes dokundokun {
  0% {
    transform: scale(1);
  }
  15% {
    transform: scale(1.2);
  }
  30% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.2);
  }
  70% {
    transform: scale(1);
  }
}
.animation_fuwafuwa {
  animation: fuwafuwa 2s linear infinite;
  scale: 1;
}

@keyframes fuwafuwa {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.animation_shiny {
  background-size: 600% 100%;
  animation: shine 20s infinite;
  animation-delay: 0s;
  animation-timing-function: linear;
}

@keyframes shine {
  0% {
    background-position-x: 400%;
  }
  50% {
    background-position-x: 0%;
  }
  100% {
    background-position-x: -400%;
  }
}
.fadein {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s;
}

.scrollin {
  opacity: 1;
  transform: translateY(0);
}

body {
  width: 100%;
  overflow-x: hidden;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  position: relative;
}
@media screen and (max-width: 600px) {
  body {
    position: static;
  }
}

img {
  display: block;
  width: 100%;
}

a {
  text-decoration: none;
}

/* 上層固定背景 */
.bg {
  position: fixed;
  z-index: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  background-image: url(../img-tik1/bg.webp);
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1000px) {
  .bg {
    z-index: 2;
  }
}
@media screen and (max-width: 460px) {
  .bg {
    display: none;
  }
}

/* 上層固定背景 内部 */
.bg_content {
  width: 100%;
  height: 100%;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .bg_content {
    display: none;
  }
}

.bg_img {
  position: absolute;
  width: calc((100vw - 375px) * 0.4 * 0.9);
  bottom: 0;
  right: 0;
  max-width: 556px;
}

.bg_txt {
  position: absolute;
  width: calc((100vw - 375px) * 0.6 * 0.7);
  max-width: 648px;
  top: 46%;
  transform: translateY(-50%);
  left: calc((100vw - 375px) * 0.6 * 0.1);
}

.lp_body {
  position: absolute;
  z-index: 3;
  margin-inline: auto;
  width: 100%;
  height: 100vh;
  max-width: 375px;
  top: 0;
  right: calc((100vw - 375px) * 0.4);
  background-color: #4A90E2;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1000px) {
  .lp_body {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 460px) {
  .lp_body {
    position: static;
    transform: none;
    margin-inline: 0;
    overflow-x: hidden;
    max-width: 100%;
  }
}

.lp_inner {
  aspect-ratio: 375/667;
  max-width: 56.2218890555vh;
  background-color: #4A90E2;
  display: flex;
  flex-direction: column;
  max-height: 100vh;
  position: relative;
  overflow: hidden;
}

.question {
  flex: 1;
}

.q_group {
  background-color: #F9FBFE;
  height: 100%;
  overflow: hidden;
}

.q_content {
  max-width: 92%;
  position: relative;
  padding: min(30px, 4.4977511244vh, 8vw) 0;
  margin: 0 auto;
}
.q_content::after {
  content: "";
  position: absolute;
  width: 78%;
  aspect-ratio: 1/1;
  top: 28%;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(../img-tik1/circle.webp);
  background-size: 100% 100%;
}

.q_note {
  font-size: min(13px, 1.9490254873vh, 3.4vw);
  font-weight: 400;
  margin-left: auto;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1.6;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 3;
}

.q_heading {
  margin-bottom: min(16px, 2.3988005997vh, 4.2vw);
  position: relative;
  z-index: 3;
}

.q_flow {
  width: 55%;
  margin: 0 auto min(12px, 1.7991004498vh, 3.2vw);
}

.q_num {
  font-size: min(32px, 4.7976011994vh, 8.5vw);
  font-weight: 500;
  color: #4A90E2;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto min(2px, 0.299850075vh);
  display: block;
  text-align: center;
  line-height: 1.4;
}

.q_txt {
  font-size: min(16px, 2.3988005997vh, 4.2vw);
  text-align: center;
  line-height: 2;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.q_bottom {
  position: relative;
  z-index: 3;
}

.q_btn {
  display: block;
  width: 100%;
  background-color: #fff;
  border-radius: 100px;
  border: min(2px, 0.299850075vh) solid #4A90E2;
  padding: min(1px, 0.1499250375vh) 0 min(2px, 0.299850075vh);
  line-height: 2;
  cursor: pointer;
  text-align: center;
  transition: all 0.4s;
  font-size: min(16px, 2.3988005997vh, 4.2vw);
}
.q_btn:not(:last-child) {
  margin-bottom: min(14px, 2.0989505247vh, 3.7vw);
}
.q_btn span {
  display: block;
  transition: all 0.4s;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.q_btn:hover {
  background-color: #4A90E2;
}
@media screen and (max-width: 460px) {
  .q_btn:hover {
    background-color: #fff;
  }
}
.q_btn:hover span {
  color: #fff;
}
@media screen and (max-width: 460px) {
  .q_btn:hover span {
    color: #333;
  }
}

@media screen and (max-width: 460px) {
  .q_btn:active {
    background-color: #4A90E2;
  }
}
@media screen and (max-width: 460px) {
  .q_btn:active span {
    color: #fff;
  }
}

/*-------------------  ------------------*/
.q_group {
  backface-visibility: hidden;
  opacity: 0;
  transform: translateX(40px);
  transition: 0.4s ease;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

@keyframes is_active {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.q_group.is-active {
  display: block;
  opacity: 1;
  transform: translateX(0);
  animation: is_active 0.6s ease forwards;
  position: relative;
  pointer-events: auto;
  -webkit-user-select: auto;
     -moz-user-select: auto;
          user-select: auto;
}

.q_group.is-leave {
  display: block;
  opacity: 0;
  transform: translateX(-40px);
  animation: is_leave 0.6s ease forwards;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

@keyframes is_leave {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-40px);
  }
}
/*-------------------  ------------------*/
.finish {
  background: linear-gradient(135deg, #FF2B2B 0%, #FF7B00 18%, #7BFF00 40%, #00FFA6 61%, #4800FF 80%, #FF00D4 100%);
  padding: min(15px, 2.2488755622vh, 4vw);
  height: 100%;
  position: relative;
}

.finish_inner {
  width: 100%;
  height: 100%;
  background-image: url(../img-tik1/finish_bg.webp);
  background-size: cover;
  background-position: center;
  padding: min(60px, 8.9955022489vh, 16vw) 0 0;
}

.finish_heading {
  font-size: min(32px, 4.7976011994vh, 8.5vw);
  font-weight: 500;
  color: #4A90E2;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto min(24px, 3.5982008996vh, 6.4vw);
  display: block;
  text-align: center;
  line-height: 1.4;
}

.finish_top {
  transform: scale(1.08);
  margin-bottom: min(16px, 2.3988005997vh, 4.2vw);
}

.finish_bubble {
  display: flex;
  align-items: center;
  gap: min(8px, 1.1994002999vh);
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto min(24px, 3.5982008996vh, 6.4vw);
}
.finish_bubble img {
  width: min(20px, 2.9985007496vh, 5.2vw);
}
.finish_bubble img:last-child {
  transform: scale(-1, 1);
}
.finish_bubble span {
  font-size: min(16px, 2.3988005997vh, 4.2vw);
  font-weight: 500;
}

.finish_txt {
  text-align: center;
  font-size: min(16px, 2.3988005997vh, 4.2vw);
  line-height: min(36px, 5.3973013493vh, 9.6vw);
  margin-bottom: min(20px, 2.9985007496vh, 5.2vw);
}
.finish_txt span {
  color: #4A90E2;
  font-weight: 700;
}
.finish_txt span span {
  font-size: min(24px, 3.5982008996vh, 6.4vw);
}

.finish_img {
  width: min(28px, 4.1979010495vh, 7.4vw);
  position: absolute;
  bottom: min(20px, 2.9985007496vh, 5.2vw);
  left: min(20px, 2.9985007496vh, 5.2vw);
}

.finish_btn {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: min(18px, 2.6986506747vh, 4.8vw) min(40px, 5.9970014993vh, 10vw);
  background: linear-gradient(180deg, #4A90E2 0%, #005BC5 100%);
  border-radius: 100px;
  position: relative;
  margin: 0 auto;
  transition: all 0.4s;
}
.finish_btn::before {
  content: "";
  width: 80%;
  height: 8%;
  background-color: #fff;
  -ms-filter: blur(20px);
  filter: blur(20px);
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
}
.finish_btn::after {
  content: "";
  position: absolute;
  width: min(38px, 5.6971514243vh, 10vw);
  height: min(44px, 6.5967016492vh, 11.8vw);
  background-image: url(../img-tik1/click_icon.webp);
  background-size: 100% 100%;
  bottom: 0;
  right: max(-8px, -1.1994002999vh);
  animation: finish_btn 1s ease infinite;
}
.finish_btn span {
  font-weight: 700;
  font-size: min(24px, 3.5982008996vh, 6.4vw);
  color: #fff;
}

@keyframes finish_btn {
  0% {
    transform: rotate(0deg);
  }
  20% {
    transform: rotate(-14deg);
  }
  40% {
    transform: rotate(0deg);
  }
  60% {
    transform: rotate(-14deg);
  }
  80% {
    transform: rotate(0deg);
  }
}
.finish_btn:hover {
  opacity: 0.7;
}

/*-------------------  ------------------*/
.footer {
  background-color: #4A90E2;
  color: #fff;
  padding: min(8px, 1.1994002999vh, 2vw) 0;
  width: 100%;
  z-index: 3;
}
@media screen and (max-width: 460px) {
  .footer {
    position: relative;
  }
}

.footer_wrap {
  color: #fff;
  font-size: min(13px, 1.9490254873vh);
  font-weight: 500;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 460px) {
  .footer_wrap {
    font-size: min(13px, 1.9490254873vh, 3.2vw);
  }
}

.footer_row {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: min(16px, 2.3988005997vh);
}
.footer_row:nth-child(1) {
  margin-bottom: 2px;
}
@media screen and (max-width: 460px) {
  .footer_row:nth-child(1) {
    margin-bottom: min(2px, 0.299850075vh, 0.4vw);
  }
}
.footer_row a:nth-child(1) {
  display: block;
  margin-left: auto;
  width: -moz-fit-content;
  width: fit-content;
}

/*-------------------  ------------------*/
/*-------------------  ------------------*//*# sourceMappingURL=tik1.css.map */