@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;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
}

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/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: 600px) {
  .bg {
    display: none;
  }
}

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

.lp_body {
  position: absolute;
  z-index: 3;
  margin-inline: auto;
  width: 100%;
  max-width: 600px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
}
@media screen and (max-width: 600px) {
  .lp_body {
    position: relative;
    left: 0;
    transform: none;
    margin-inline: 0;
    overflow-x: hidden;
  }
}

.bg_logo {
  position: absolute;
  width: 380px;
  top: 20px;
  left: 16px;
}
@media screen and (max-width: 1600px) {
  .bg_logo {
    width: 320px;
  }
}
@media screen and (max-width: 1400px) {
  .bg_logo {
    width: 260px;
  }
}

.bg_right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: calc((100% - 600px) / 2 * 0.05);
  width: calc((100% - 600px) / 2 * 0.9);
}

.bg_txt {
  margin-bottom: 16px;
}

.bg_right .cta_btn_link.cta_btn_link-m::after {
  width: 60px;
  height: 60px;
  left: -16px;
}
.bg_right .cta_btn_txt {
  font-size: 18px;
}
@media screen and (max-width: 1400px) {
  .bg_right .cta_btn_txt {
    font-size: 16px;
  }
}
.bg_right .cta_btn_txt span {
  font-size: 24px;
}
@media screen and (max-width: 1400px) {
  .bg_right .cta_btn_txt span {
    font-size: 22px;
  }
}
.bg_right a.cta_btn_link.cta_btn_line .cta_btn_txt {
  font-size: 22px;
}
.bg_right a.cta_btn_link.cta_btn_line::after {
  width: 80px;
  height: 60px;
}

.cta-fixed {
  display: none;
}
@media screen and (max-width: 600px) {
  .cta-fixed {
    display: block;
    position: absolute;
    width: 100%;
    bottom: 12px;
    left: 0;
    z-index: 100;
    position: fixed;
    height: 68px;
  }
}
.cta-fixed .cta_btn_link {
  width: 100%;
}
.cta-fixed .cta_btn_link::before {
  display: none;
}

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

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

/*------------------- cta ------------------*/
.cta {
  background-image: url(../img/cta_bg.webp);
  background-size: cover;
  padding: 20px 26px;
}
@media screen and (max-width: 600px) {
  .cta {
    padding: 20px 8px;
  }
}

.cta_wrap {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
}
@media screen and (max-width: 600px) {
  .cta_wrap {
    padding: 12px 8px;
  }
}

.cta_heading {
  height: 180px;
}
@media screen and (max-width: 600px) {
  .cta_heading {
    height: 34vw;
  }
}

.cta_btn {
  margin-bottom: 16px;
}

.cta_btn_top {
  display: grid;
  grid-template-columns: 30fr 26fr;
  gap: 10px;
  margin-bottom: 32px;
}
@media screen and (max-width: 600px) {
  .cta_btn_top {
    margin-bottom: 24px;
  }
}

.cta_btn_link {
  border-radius: 8px;
  position: relative;
  width: 100%;
  display: block;
  height: 100px;
  z-index: 2;
}
@media screen and (max-width: 600px) {
  .cta_btn_link {
    height: 82px;
  }
}
.cta_btn_link::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  z-index: -1;
  top: 4px;
}

.cta_btn_link:hover {
  top: 4px;
}
.cta_btn_link:hover::before {
  top: 0;
}

a.cta_btn_link.cta_btn_line {
  display: block;
  height: 100px;
  width: 100%;
}
@media screen and (max-width: 600px) {
  a.cta_btn_link.cta_btn_line {
    height: 82px;
  }
}
a.cta_btn_link.cta_btn_line .cta_btn_bg {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #57FC72 0%, #0CBC00 100%);
}
a.cta_btn_link.cta_btn_line .cta_btn_txt {
  font-size: 28px;
}
@media screen and (max-width: 600px) {
  a.cta_btn_link.cta_btn_line .cta_btn_txt {
    font-size: 22px;
  }
}
a.cta_btn_link.cta_btn_line::before {
  background-color: rgba(5, 89, 42, 0.28);
}
a.cta_btn_link.cta_btn_line::after {
  content: "";
  width: 110px;
  height: 80px;
  background-image: url(../img/bubble_line.webp);
  background-size: 100% 100%;
  top: -24px;
  left: 8px;
  position: absolute;
  z-index: 6;
}
@media screen and (max-width: 600px) {
  a.cta_btn_link.cta_btn_line::after {
    width: 60px;
    height: 46px;
    top: -12px;
  }
}

.cta_btn_bg {
  border-radius: 8px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.cta_btn_link.cta_btn_link-m .cta_btn_bg {
  background: linear-gradient(180deg, #4DAFF9 0, #1F33C7 100%);
}
.cta_btn_link.cta_btn_link-m::after {
  content: "";
  width: 80px;
  height: 80px;
  background-image: url(../img/bubble_btn1.webp);
  background-size: 100% 100%;
  top: -32px;
  left: -32px;
  position: absolute;
  z-index: 6;
}
@media screen and (max-width: 600px) {
  .cta_btn_link.cta_btn_link-m::after {
    width: 40px;
    height: 40px;
    top: -8px;
    left: -8px;
  }
}
.cta_btn_link.cta_btn_link-m::before {
  background-color: rgba(31, 51, 199, 0.28);
}

.cta_btn_link.cta_btn_link-r .cta_btn_bg {
  background: linear-gradient(180deg, #9FD4FD 0, #4DAFF9 100%);
}
.cta_btn_link.cta_btn_link-r::before {
  background-color: rgba(77, 175, 249, 0.28);
}

.cta_btn_txt {
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  line-height: 1.4;
}
@media screen and (max-width: 600px) {
  .cta_btn_txt {
    font-size: 16px;
  }
}
.cta_btn_txt span {
  font-size: 30px;
  font-weight: 700;
}
@media screen and (max-width: 600px) {
  .cta_btn_txt span {
    font-size: 22px;
  }
}

.cta_btn_txt-lg {
  font-size: 30px;
  font-weight: 700;
}
@media screen and (max-width: 600px) {
  .cta_btn_txt-lg {
    font-size: 22px;
  }
}

.cta_btn_light {
  width: 90%;
  background-color: #fff;
  border-radius: 100px;
  height: 6px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 8px;
  z-index: 5;
  opacity: 0.3;
  filter: blur(5px);
}

.cta_note {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-weight: 500;
}
@media screen and (max-width: 600px) {
  .cta_note {
    font-size: 12px;
  }
}

/*------------------- test ------------------*/
.test {
  background-image: url(../img/test_bg.webp);
  background-size: cover;
  padding: 40px 40px 80px;
}
@media screen and (max-width: 600px) {
  .test {
    padding: 24px 12px 40px;
  }
}

.test_heading {
  width: 100%;
  background-color: #0B88E6;
  padding: 8px;
  border-radius: 8px;
  margin-bottom: 40px;
}
@media screen and (max-width: 600px) {
  .test_heading {
    padding: 6px;
    margin-bottom: 24px;
  }
}

.test_heading_line {
  border: 1px solid #fff;
  padding: 8px;
  border-radius: 8px;
}

.test_heading_line span {
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .test_heading_line span {
    font-size: 20px;
    text-align: center;
    line-height: 1.3;
  }
}

.quiz-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border-radius: 16px;
}

.question.active {
  position: relative;
}

.question {
  position: absolute;
  width: 100%;
  top: 0;
  left: 100%;
  opacity: 0;
  transition: all 0.4s ease;
  height: 100%;
  background: #fff;
  border-radius: 16px;
  padding: 32px 48px;
  border: 2px solid #1F33C7;
}
@media screen and (max-width: 600px) {
  .question {
    padding: 24px 8px;
  }
}

.question_ttl {
  margin-bottom: 32px;
}
@media screen and (max-width: 600px) {
  .question_ttl {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 24px;
  }
}

.question.active {
  left: 0;
  opacity: 1;
}

.question input {
  transform: scale(1.8);
}

.question label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 500;
  padding-left: 24px;
}
@media screen and (max-width: 600px) {
  .question label {
    font-size: 16px;
  }
}

.question.slide-out {
  left: -100%;
  opacity: 0;
}

.next-btn_wrap {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.next-btn_wrap::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  top: 4px;
  left: 0;
  background-color: rgba(193, 193, 193, 0.5);
  z-index: 1;
}

.next-btn_wrap:hover {
  top: 4px;
}
.next-btn_wrap:hover::after {
  top: 0;
}

button {
  background: linear-gradient(90deg, #4DAFF9 0%, #1F33C7 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  width: 220px;
  height: 70px;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 32px;
  font-size: 20px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  position: relative;
  z-index: 4;
}
@media screen and (max-width: 600px) {
  button {
    height: 54px;
    font-size: 18px;
  }
}

/* 結果の表示制御 */
#result1,
#result2 {
  display: none;
}

.question_result {
  border-radius: 16px;
  background-color: #fff;
  width: 100%;
}
.question_result img {
  width: 280px;
  margin: 0 auto;
}

/*------------------- trouble ------------------*/
.trouble_top {
  position: relative;
  height: 920px;
}
@media screen and (max-width: 600px) {
  .trouble_top {
    height: 153vw;
  }
}
.trouble_top::after {
  content: "";
  position: absolute;
  width: 100%;
  top: -46px;
  left: 0;
  background-image: url(../img/trouble_bg.webp);
  background-size: 100% 100%;
  height: calc(100% + 120px);
}
@media screen and (max-width: 600px) {
  .trouble_top::after {
    top: 0;
    height: calc(100% + 20vw);
    top: -7.6vw;
  }
}

.trouble_bg {
  position: relative;
  z-index: 4;
  padding: 40px 0 0;
  height: 100%;
}
@media screen and (max-width: 600px) {
  .trouble_bg {
    padding: 6.6vw 0 0;
  }
}

.trouble_heading {
  width: 460px;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .trouble_heading {
    width: 80%;
  }
}

.trouble_item {
  width: 410px;
  position: absolute;
  bottom: 20px;
  right: 24px;
}
@media screen and (max-width: 600px) {
  .trouble_item {
    width: 72%;
    bottom: 2vw;
    right: 2.4vw;
  }
}

.trouble_bottom {
  background-image: url(../img/trouble_bottom_bg.webp);
  background-size: 100% 100%;
  padding: 120px 0;
}
@media screen and (max-width: 600px) {
  .trouble_bottom {
    padding: 22vw 0;
  }
}

.trouble_bottom_txt {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 24px;
  font-size: 32px;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 600px) {
  .trouble_bottom_txt {
    font-size: 24px;
  }
}

.trouble_bottom_item {
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .trouble_bottom_item {
    width: 98%;
  }
}

/*------------------- risk ------------------*/
.risk_top {
  position: relative;
}

.risk_top_img {
  width: 80%;
  position: absolute;
  right: 0;
  top: -110px;
  z-index: 3;
}
@media screen and (max-width: 600px) {
  .risk_top_img {
    top: -18vw;
    width: 90%;
  }
}

.risk_top_bg {
  background-color: #E4E8EB;
  padding: 160px 0 80px;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), 50% 100%, 0 calc(100% - 40px));
  z-index: 2;
}
@media screen and (max-width: 600px) {
  .risk_top_bg {
    padding: 30vw 0 12vw;
  }
}

.risk_top_wrap {
  position: relative;
}
.risk_top_wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #000;
  filter: blur(40px);
  opacity: 0.2;
  transform: translateY(5px);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), 50% 100%, 0 calc(100% - 40px));
  z-index: 1;
}

.risk_top_heading {
  width: 86%;
  margin: 0 auto 40px;
}
@media screen and (max-width: 600px) {
  .risk_top_heading {
    width: 90%;
    margin: 0 auto 32px;
  }
}

.risk_top_list {
  display: flex;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  gap: 24px;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .risk_top_list {
    flex-wrap: wrap;
    row-gap: 0;
  }
}

.risk_top_item {
  width: 160px;
}
@media screen and (max-width: 600px) {
  .risk_top_item {
    width: 140px;
  }
}

.risk_top_item img {
  margin-bottom: 8px;
}

.risk_top_item span {
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  line-height: 1.4;
  display: block;
  font-weight: 500;
  font-size: 18px;
}
@media screen and (max-width: 600px) {
  .risk_top_item span {
    font-size: 15px;
  }
}

.risk_bottom {
  position: relative;
  padding-top: 120px;
}
@media screen and (max-width: 600px) {
  .risk_bottom {
    padding-top: 160px;
  }
}

.risk_bottom_ttl {
  font-size: 36px;
  text-align: center;
  line-height: 1.4;
  font-family: "Noto Serif JP", serif;
  position: absolute;
  width: 100%;
  top: 40px;
  left: 0;
}
@media screen and (max-width: 600px) {
  .risk_bottom_ttl {
    font-size: 24px;
  }
}

.risk_bottom_ttl span {
  display: inline-block;
  position: relative;
  z-index: 3;
}
.risk_bottom_ttl span::after {
  content: "";
  position: absolute;
  background-image: url(../img/risk_bottom_line.webp);
  background-size: 100% 100%;
  width: 100%;
  height: 16px;
  bottom: -2px;
  left: 0;
  z-index: -1;
}

.risk_bottom_bubble {
  position: absolute;
  bottom: 180px;
  right: 12px;
  width: 310px;
  z-index: 5;
}
@media screen and (max-width: 600px) {
  .risk_bottom_bubble {
    width: 58%;
    bottom: 36%;
    right: 0;
  }
}

/*------------------- point ------------------*/
.point {
  position: relative;
  background: linear-gradient(90deg, rgba(173, 218, 252, 0.3) 0, rgba(135, 143, 199, 0.3) 100%);
}
.point::after {
  content: "";
  position: absolute;
  width: calc(100% - 40px);
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  height: 100%;
}
@media screen and (max-width: 600px) {
  .point::after {
    width: 100%;
  }
}

.point_wrap {
  position: relative;
  z-index: 5;
}

.point_heading {
  margin-bottom: 24px;
}

.point_item {
  width: 94%;
  margin-left: auto;
}
@media screen and (max-width: 600px) {
  .point_item {
    width: 100%;
  }
}
.point_item:nth-child(1) {
  margin-bottom: 24px;
}
.point_item:nth-child(2) {
  margin-bottom: 40px;
}
.point_item:nth-child(even) {
  margin-left: 0;
}

.point_tagline {
  position: relative;
}

.point_tagline_img {
  position: absolute;
}

.point_tagline_img:nth-child(1) {
  width: 170px;
  top: -128px;
  right: 0;
}
@media screen and (max-width: 600px) {
  .point_tagline_img:nth-child(1) {
    width: 80px;
    top: -60px;
  }
}

.point_tagline_img:nth-child(2) {
  width: 178px;
  bottom: -16px;
  left: 0;
}
@media screen and (max-width: 600px) {
  .point_tagline_img:nth-child(2) {
    width: 80px;
    bottom: 0;
  }
}

.point_tagline_main {
  width: calc(100% - 40px);
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .point_tagline_main {
    width: 100%;
  }
}

.point_price {
  width: calc(100% - 40px);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 6;
}
@media screen and (max-width: 600px) {
  .point_price {
    width: 100%;
    padding: 0 8px;
  }
}
.point_price .cta_btn_link {
  height: 80px;
}
@media screen and (max-width: 600px) {
  .point_price .cta_btn_link {
    height: 72px;
  }
}

.point_price_item {
  padding-bottom: 60px;
}
@media screen and (max-width: 600px) {
  .point_price_item {
    padding-bottom: 40px;
  }
}

.point_price_table {
  margin-bottom: 24px;
}
@media screen and (max-width: 600px) {
  .point_price_table {
    margin-bottom: 16px;
  }
}

/*------------------- case ------------------*/
.case {
  background: linear-gradient(90deg, rgba(173, 218, 252, 0.3) 0, rgba(135, 143, 199, 0.3) 100%);
  padding: 40px 0 0;
}

.case_bg {
  background-image: url(../img/case_bg.webp);
  background-size: 100% 100%;
  padding: 100px 0 130px;
}
@media screen and (max-width: 600px) {
  .case_bg {
    padding: 80px 0 calc(40px + 20vw);
  }
}

.case_heading {
  width: 78%;
  margin: 0 auto 40px;
}
@media screen and (max-width: 600px) {
  .case_heading {
    width: 90%;
  }
}

.case_content {
  width: 94%;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 600px) {
  .case_content {
    width: 100%;
  }
}

.case_swiper {
  position: absolute;
  bottom: 40px;
  left: 0;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 600px) {
  .case_swiper {
    bottom: 4vw;
  }
}

.swiper-slide img {
  width: 420px;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .swiper-slide img {
    width: 90%;
  }
}

.swiper-button-next,
.swiper-button-prev {
  height: 32px !important;
}
@media screen and (max-width: 600px) {
  .swiper-button-next,
  .swiper-button-prev {
    height: 24px !important;
  }
}
.swiper-button-next svg,
.swiper-button-prev svg {
  height: 32px !important;
}
@media screen and (max-width: 600px) {
  .swiper-button-next svg,
  .swiper-button-prev svg {
    height: 24px !important;
  }
}

.swiper-button-prev {
  left: 24px !important;
}
@media screen and (max-width: 600px) {
  .swiper-button-prev {
    left: 8px !important;
  }
}

.swiper-button-next {
  right: 24px !important;
}
@media screen and (max-width: 600px) {
  .swiper-button-next {
    right: 8px !important;
  }
}

/*------------------- reason ------------------*/
.reason_heading {
  height: 440px;
  position: relative;
}
@media screen and (max-width: 600px) {
  .reason_heading {
    height: 70vw;
  }
}
.reason_heading img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.reason_item {
  padding: 0 0 48px;
}
@media screen and (max-width: 600px) {
  .reason_item {
    padding: 0 0 24px;
  }
}

.reason_inner {
  padding-top: 20px;
}

.reason_item:nth-child(even) {
  background-color: #F0F8FF;
}

.reason_ttl {
  color: #0B88E6;
  font-size: 32px;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 32px;
  line-height: 1.4;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 600px) {
  .reason_ttl {
    font-size: 20px;
  }
}
.reason_ttl span {
  font-size: 50px;
}
@media screen and (max-width: 600px) {
  .reason_ttl span {
    font-size: 26px;
  }
}
.reason_ttl span span {
  font-size: 60px;
}
@media screen and (max-width: 600px) {
  .reason_ttl span span {
    font-size: 34px;
  }
}

.reason_img {
  width: 90%;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 15px 15px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 32px;
}
@media screen and (max-width: 600px) {
  .reason_img {
    width: 94%;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
  }
}

.reason_txt {
  line-height: 1.8;
  width: 90%;
  text-align: justify;
  margin: 0 auto;
  font-size: 18px;
}
@media screen and (max-width: 600px) {
  .reason_txt {
    font-size: 15px;
    width: 94%;
  }
}

/*------------------- voice ------------------*/
.voice {
  background: linear-gradient(90deg, rgba(255, 246, 165, 0.24) 0, #fff 50%, rgba(255, 246, 165, 0.24) 100%);
  padding: 60px 0 90px;
}
@media screen and (max-width: 600px) {
  .voice {
    padding: 40px 0 60px;
  }
}

.voice_heading {
  font-size: 36px;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 54px;
}
@media screen and (max-width: 600px) {
  .voice_heading {
    font-size: 22px;
    margin-bottom: 32px;
  }
}
.voice_heading span {
  font-size: 28px;
}
@media screen and (max-width: 600px) {
  .voice_heading span {
    font-size: 18px;
  }
}

.voice_content {
  background-color: #fff;
  border-radius: 80px;
  box-shadow: 0 0 15px rgba(184, 178, 118, 0.5);
  width: 94%;
  margin: 0 auto;
  padding: 40px 24px;
  position: relative;
}
@media screen and (max-width: 600px) {
  .voice_content {
    border-radius: 40px;
    padding: 24px 12px;
    width: 100%;
  }
}

.voice_ttl {
  width: 200px;
  position: absolute;
  top: -32px;
  left: 32px;
}
@media screen and (max-width: 600px) {
  .voice_ttl {
    width: 100px;
    top: -20px;
    left: 8px;
  }
}

.voice_top {
  width: 150px;
  margin: 0 auto 40px;
}
@media screen and (max-width: 600px) {
  .voice_top {
    width: 100px;
    margin: 0 auto 24px;
  }
}

.voice_list {
  background-color: #E7E6E2;
  border-radius: 60px;
  padding: 24px 0;
}
@media screen and (max-width: 600px) {
  .voice_list {
    border-radius: 40px;
    padding: 16px 0;
  }
}

.voice_item {
  width: 94%;
}
@media screen and (max-width: 600px) {
  .voice_item {
    width: 98%;
  }
}
.voice_item:nth-child(odd) {
  margin-left: auto;
}
.voice_item:not(:last-child) {
  margin-bottom: 24px;
}
@media screen and (max-width: 600px) {
  .voice_item:not(:last-child) {
    margin-bottom: 12px;
  }
}

.voice_item img {
  margin-bottom: 8px;
}

.voice_item p {
  text-align: center;
  font-size: 14px;
  line-height: 1.4;
}
@media screen and (max-width: 600px) {
  .voice_item p {
    font-size: 10px;
  }
}

/*------------------- flow ------------------*/
.flow_wrap {
  position: relative;
  padding: 40px 0 60px;
}
@media screen and (max-width: 600px) {
  .flow_wrap {
    padding: 24px 0 40px;
  }
}
.flow_wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% + 40px);
  background-image: url(../img/flow_bg.webp);
  background-size: 100% 100%;
}

.flow_heading {
  width: 64%;
  margin: 0 auto 40px;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 600px) {
  .flow_heading {
    width: 72%;
    margin: 0 auto 24px;
  }
}

.flow_list {
  position: relative;
  z-index: 2;
  width: 84%;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .flow_list {
    width: 98%;
  }
}

.flow_item:not(:last-child) {
  margin-bottom: 60px;
  position: relative;
}
.flow_item:not(:last-child)::after {
  content: "";
  position: absolute;
  width: 36px;
  height: 16px;
  background: linear-gradient(180deg, #fff 0, #1F33C7 100%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  bottom: -38px;
  left: 50%;
  transform: translateX(-50%);
}

/*------------------- message ------------------*/
.message {
  padding-bottom: 40px;
}

.message_wrap {
  position: relative;
}

.message_txt {
  width: 94%;
  background-color: #fff;
  padding: 24px;
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.16);
  margin: 0 auto;
  transform: translateY(-40px);
}
@media screen and (max-width: 600px) {
  .message_txt {
    padding: 12px;
    transform: translateY(-12px);
  }
}
.message_txt p {
  line-height: 1.8;
  font-weight: 500;
}
@media screen and (max-width: 600px) {
  .message_txt p {
    font-size: 14px;
  }
}

/*------------------- qa ------------------*/
.qa {
  position: relative;
}
.qa::after {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100% + 40px);
  background-image: url(../img/qa_bg.webp);
  background-size: 100% 100%;
  bottom: 0;
  left: 0;
}

.qa_wrap {
  position: relative;
  z-index: 2;
  padding: 40px 0 60px;
}
@media screen and (max-width: 600px) {
  .qa_wrap {
    padding: 24px 0 40px;
  }
}

.qa_heading {
  width: 80%;
  margin: 0 auto 40px;
}
@media screen and (max-width: 600px) {
  .qa_heading {
    margin: 0 auto 8px;
  }
}

.qa_list {
  width: 94%;
  margin: 0 auto;
}

.qa_item {
  background: linear-gradient(90deg, #8FCFFF 0%, #2979FF 100%);
  font-family: "Noto Serif JP", serif;
  padding: 2px;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  overflow: hidden;
}
.qa_item:not(:last-child) {
  margin-bottom: 24px;
}
@media screen and (max-width: 600px) {
  .qa_item:not(:last-child) {
    margin-bottom: 8px;
  }
}

.qa_q {
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
}
@media screen and (max-width: 600px) {
  .qa_q {
    grid-template-columns: 32px 1fr;
  }
}
.qa_q p {
  color: #fff;
  font-size: 20px;
}
@media screen and (max-width: 600px) {
  .qa_q p {
    font-size: 16px;
  }
}

.qa_a {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 8px;
  background-color: #fff;
  padding: 8px 16px;
  border-bottom-right-radius: 9px;
}
@media screen and (max-width: 600px) {
  .qa_a {
    grid-template-columns: 32px 1fr;
  }
}
.qa_a p {
  font-size: 16px;
  line-height: 1.8;
}
@media screen and (max-width: 600px) {
  .qa_a p {
    font-size: 14px;
  }
}

/*------------------- note ------------------*/
.note {
  padding: 40px 0 60px;
}

.note_wrap {
  width: 90%;
  margin: 0 auto;
}

.note_heading {
  font-size: 32px;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 40px;
  font-family: "Noto Serif JP", serif;
  line-height: 1.3;
}
@media screen and (max-width: 600px) {
  .note_heading {
    font-size: 24px;
  }
}

.note_item:not(:last-child) {
  margin-bottom: 40px;
}

.note_item_ttl {
  background: linear-gradient(90deg, #8FCFFF 0%, #2979FF 100%);
  padding: 2px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 24px;
}
@media screen and (max-width: 600px) {
  .note_item_ttl {
    margin: 0 auto 16px;
  }
}
.note_item_ttl h3 {
  background-color: #fff;
  font-size: 28px;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  padding: 8px 40px;
  width: -moz-fit-content;
  width: fit-content;
  color: #1F33C7;
}
@media screen and (max-width: 600px) {
  .note_item_ttl h3 {
    font-size: 20px;
    padding: 8px 24px;
  }
}

.note_item_txt {
  line-height: 1.6;
  text-align: justify;
}
@media screen and (max-width: 600px) {
  .note_item_txt {
    font-size: 14px;
  }
}
.note_item_txt span {
  font-size: 18px;
}
@media screen and (max-width: 600px) {
  .note_item_txt span {
    font-size: 16px;
  }
}

/*------------------- footer ------------------*/
.footer {
  background: linear-gradient(90deg, #8FCFFF 0%, #2979FF 100%);
  padding: 8px 0;
}
@media screen and (max-width: 600px) {
  .footer {
    padding: 16px 0 100px;
  }
}
.footer small {
  font-family: "Noto Serif JP", serif;
  color: #fff;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}/*# sourceMappingURL=index.css.map */