@charset "UTF-8";
/******************
    color
******************/
/*** 無彩色 ***/
/*  ドロップシャドウ */
/******************
    font
******************/
@font-face {
  font-family: "NotoSansJP";
  font-weight: normal;
  font-style: normal;
  src: url("../font/NotoSansJP-Regular.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "NotoSansJP";
  font-weight: 700;
  font-style: normal;
  src: url("../font/NotoSansJP-Bold.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "NotoSansJP";
  font-weight: 500;
  font-style: medium;
  src: url("../font/NotoSansJP-Medium.ttf") format("ttf");
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  font-weight: normal;
  font-style: normal;
  src: url("../font/Poppins-Regular.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  font-weight: 700;
  font-style: normal;
  src: url("../font/Poppins-Bold.woff2") format("woff2");
  font-display: swap;
}
/******************
    メディアクエリ
******************/
/******************
    大枠サイズ
******************/
/******************
    z-index管理
******************/
/******************
    コンテンツ幅管理
******************/
/******************
    mixin
******************/
html {
  font-family: "NotoSansJP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", sans-serif;
  font-size: 62.5%;
  /* 1rem = 10px */
  color: #333333;
  font-weight: normal;
}

body {
  margin: 0;
  background: #fff;
  font-size: 1.6rem;
  line-height: 1.7;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
*:before, *:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

p,
dl,
ul,
ol,
h1,
h2,
h3,
h4,
h5,
h6,
figure,
dt,
dd,
li,
th {
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-weight: inherit;
}

table {
  border-collapse: collapse;
}

ul,
ol,
dl {
  list-style: none;
}

img {
  width: 100%;
  height: auto;
  margin: 0;
  border: 0;
  vertical-align: top;
}

a {
  color: #333333;
  text-decoration: none;
}

iframe {
  max-width: 100%;
}

input[type=text],
textarea,
select {
  width: 100%;
  height: 100%;
  padding: 0.4em 0.8em;
  padding: 10px;
  border: 1px solid #DEDEDE;
  border-radius: 6px;
  background-color: transparent;
  background-color: #fff;
  background-image: none;
  font-family: inherit;
  color: inherit;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

input[type=text],
textarea {
  border: 1px solid #DEDEDE;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-size: 1.6rem;
}

input[type=submit] {
  font-family: inherit;
  color: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

::-webkit-input-placeholder {
  font-size: 1.4rem;
  color: #D9D9D9;
}

::-moz-placeholder {
  font-size: 1.4rem;
  color: #D9D9D9;
}

:-ms-input-placeholder {
  font-size: 1.4rem;
  color: #D9D9D9;
}

::-ms-input-placeholder {
  font-size: 1.4rem;
  color: #D9D9D9;
}

::placeholder {
  font-size: 1.4rem;
  color: #D9D9D9;
}

button {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  outline: none;
  background-color: transparent;
  font-family: inherit;
  font-size: inherit;
  color: #DEDEDE;
  text-align: left;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.wrapper {
  position: relative;
  min-width: 375px;
  overflow: hidden;
}

.container {
  padding-top: 60px;
}

/* スクロールバー */
::-webkit-scrollbar {
  display: none;
}

::-webkit-scrollbar-track {
  display: none;
}

::-webkit-scrollbar-thumb {
  display: none;
}

@media only screen and (min-width: 1100px) {
  body {
    position: relative;
    font-size: 1.6rem;
  }
  .wrapper {
    min-width: auto;
  }
  .container {
    padding-top: 82px;
  }
}
/*------------------------------------------------------------------------------
    ブロック毎に必ずコメントアウト
------------------------------------------------------------------------------*/
.wrap {
  max-width: 460px;
  margin: 0 auto;
  -webkit-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.25);
}

@-webkit-keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50%, 70% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
}

@keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50%, 70% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
}
.cta_btn {
  font-size: 2.2rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  background-color: #F83600;
  border-radius: 48px;
  display: block;
  padding: 16px 20px 20px 0;
  position: relative;
  width: 100%;
  -webkit-animation: poyopoyo 2s ease-out infinite;
          animation: poyopoyo 2s ease-out infinite;
  opacity: 1;
}
.cta_btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 28px;
  width: 14px;
  height: 14px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
}

.inner {
  padding: 0 16px;
}

.mark_y {
  display: inline;
  margin: 0 5px;
  padding: 0 5px 0px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, rgba(249, 212, 35, 0.5)));
  background: -webkit-linear-gradient(transparent 60%, rgba(249, 212, 35, 0.5) 60%);
  background: linear-gradient(transparent 60%, rgba(249, 212, 35, 0.5) 60%);
  font-weight: bold;
}

.yellow {
  color: #F9D423;
  font-weight: bold;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.mv {
  position: relative;
  background-color: #003366;
}
.mv .mv_logo {
  position: absolute;
  top: 8px;
  left: 16px;
  width: 142px;
}
.mv .mv_txt {
  position: absolute;
  top: 45%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: absolute;
  width: 80%;
  min-width: 272px;
  height: 400px;
  left: 50%;
  background: -webkit-linear-gradient(312.02deg, rgba(0, 17, 255, 0.15) 0%, rgba(0, 17, 255, 0.05) 100%);
  background: linear-gradient(137.98deg, rgba(0, 17, 255, 0.15) 0%, rgba(0, 17, 255, 0.05) 100%);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  /* 注: backdrop-filterのブラウザサポートは最小限です */
  border-radius: 4px;
  -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.25);
  -webkit-animation: fadeIn 2s ease 0.2s 1 normal forwards;
          animation: fadeIn 2s ease 0.2s 1 normal forwards;
  padding: 32px 0;
}
.mv .mv_txt img {
  width: 110%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: absolute;
  left: 50%;
  top: 50%;
}

.first_cta {
  background-image: url(../img/first_cta_bg.webp);
  background-position: bottom;
  background-size: 100%;
  padding: 0 16px 48px;
}
.first_cta .first_cta-txt {
  -webkit-animation: fadeIn 3s ease 0.2s 1 normal forwards;
          animation: fadeIn 3s ease 0.2s 1 normal forwards;
}

.lead {
  padding-top: 48px;
}

.feature {
  position: relative;
  padding-bottom: 120px;
}
.feature .feature_fukidashi {
  background-color: #003366;
  position: absolute;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 900;
  padding: 4px 24px 24px;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(50% + 8px) calc(100% - 16px), 50% 100%, calc(50% - 8px) calc(100% - 16px), 0% calc(100% - 16px));
          clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(50% + 8px) calc(100% - 16px), 50% 100%, calc(50% - 8px) calc(100% - 16px), 0% calc(100% - 16px));
  line-height: 1.4;
  top: -64px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}
.feature .feature_ttl {
  width: 288px;
  margin: 32px auto 64px;
}
.feature .feature_cnt:not(:last-child) {
  margin-bottom: 48px;
}
.feature .feature_img {
  margin-bottom: 12px;
}
.feature .feature_desc {
  padding: 0 16px;
}
.feature .feature_num {
  font-size: 1.6rem;
  font-weight: 900;
  color: #003366;
}
.feature .feature_txt {
  margin-top: 2px;
  letter-spacing: 0.04em;
}

.step {
  background-image: url(../img/step_bg.webp);
  background-position: top;
  background-size: 100% auto;
  background-repeat: no-repeat;
  padding: 0 16px 80px;
}
.step h2 {
  width: 232px;
  margin: 0 auto 56px;
  padding-top: 160px;
}
.step .step01 {
  background-color: #E8F4F8;
  border-radius: 200px;
  padding: 64px 24px 32px;
  position: relative;
  margin-bottom: 160px;
  position: relative;
}
.step .step01::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 30px;
  left: calc(50% - 30px);
  bottom: -95px;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  background: -webkit-linear-gradient(315deg, #48C6EF 0%, #6F86D6 100%);
  background: linear-gradient(135deg, #48C6EF 0%, #6F86D6 100%);
}
.step .step_ttl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 8px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
  height: 45px;
}
.step .step_num {
  width: 24px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.step .step_num img {
  vertical-align: middle;
}
.step .step_img {
  width: 164px;
  margin: 16px auto 0;
}
.step .step_exmessage {
  position: absolute;
  bottom: -16px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
}
.step .step_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 32px 20px;
}
.step .step_cnt {
  -webkit-flex-basis: calc(50% - 10px);
      -ms-flex-preferred-size: calc(50% - 10px);
          flex-basis: calc(50% - 10px);
}
.step .step_cnt-txt {
  font-size: 1.4rem;
}
.step .step_ttl-txt {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.step .step_cnt-caution {
  font-size: 1rem;
  margin-top: 8px;
}
.step .step_icon {
  margin: 16px 0;
}

.area {
  color: #fff;
  background-color: #003366;
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
}
.area .area_ttl {
  width: 300px;
  position: absolute;
  top: -35px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.area .area_ttl-sub {
  width: 80px;
  margin: 0 auto 32px;
}
.area .area_name {
  background: -webkit-gradient(linear, left top, right top, color-stop(3.22%, #F9D423), color-stop(98.27%, #F83600));
  background: -webkit-linear-gradient(left, #F9D423 3.22%, #F83600 98.27%);
  background: linear-gradient(90deg, #F9D423 3.22%, #F83600 98.27%);
  padding: 4px 12px;
  font-family: "ten-mincho-text", serif;
  font-weight: 400;
  font-style: normal;
  display: inline-block;
  font-size: 2rem;
  margin-bottom: 16px;
}
.area .area_img {
  margin-bottom: 16px;
}
.area .area_rosen {
  margin-bottom: 16px;
  line-height: 1.4;
}
.area .area_rosen-label {
  font-weight: bold;
  color: #48C6EF;
}
.area .area_label-yellow {
  color: #F9D423;
  font-weight: bold;
}
.area .area_list li {
  padding-left: 8px;
  line-height: 1.4;
  margin-bottom: 8px;
}
.area .area_list li::before {
  content: "";
  width: 4px;
  height: 4px;
  background-color: #48C6EF;
  display: inline-block;
  border-radius: 50%;
  vertical-align: super;
  position: relative;
  left: -8px;
}
.area .area_slider {
  position: relative;
  width: 80%;
  max-width: 600px;
  margin: auto;
}
.area .area_slides {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -ms-touch-action: pan-y;
      touch-action: pan-y;
  gap: 8px;
  -webkit-scroll-snap-type: x mandatory;
      -ms-scroll-snap-type: x mandatory;
          scroll-snap-type: x mandatory;
}
.area .area_slide {
  min-width: 100%;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  padding-right: 16px;
}
.area .area_arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  border: none;
  padding: 10px;
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
.area .area_arrow::after {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  display: block;
}
.area .prev {
  left: -32px;
}
.area .prev::after {
  -webkit-transform: rotate(-135deg) translate(-2px, 1px);
          transform: rotate(-135deg) translate(-2px, 1px);
}
.area .next {
  right: -32px;
}
.area .next::after {
  -webkit-transform: rotate(45deg) translate(-2px, 1px);
          transform: rotate(45deg) translate(-2px, 1px);
}
.area .area_dots {
  text-align: center;
  margin-top: 8px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.area .area_dots button {
  border: none;
  background: #929191;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  margin: 5px;
  cursor: pointer;
}
.area .area_dots button.active {
  background: #fff;
}
.area .saitama, .area .chiba {
  width: 100%;
  overflow: hidden;
}
.area .saitama {
  background-image: url(../img/saitama.svg);
  background-repeat: no-repeat;
  background-position: 0 15%;
  margin-bottom: 64px;
}
.area .saitama .area_rosen-label {
  color: #48C6EF;
}
.area .chiba {
  background-image: url(../img/chiba.svg);
  background-repeat: no-repeat;
  background-position: right 15%;
  margin-bottom: 64px;
}
.area .chiba .area_name {
  background: -webkit-linear-gradient(315deg, #48C6EF 0%, #6F86D6 100%);
  background: linear-gradient(135deg, #48C6EF 0%, #6F86D6 100%);
}
.area .area_exmessage {
  margin: 0 16px 32px;
}
.area .cta_btn {
  margin: 0 16px;
  width: calc(100% - 32px);
}

.profile {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #E8F4F8));
  background: -webkit-linear-gradient(transparent 60%, #E8F4F8 60%);
  background: linear-gradient(transparent 60%, #E8F4F8 60%);
}

.faq {
  background-color: #E8F4F8;
  padding: 56px 16px;
}
.faq .faq_ttl {
  margin-bottom: 32px;
  text-align: center;
}
.faq .faq_ttl-sub {
  color: #48C6EF;
  font-weight: bold;
}
.faq .faq_ttl-main {
  font-size: 2.4rem;
  font-weight: bold;
}
.faq .faq_cnt {
  background-color: #fff;
  padding: 20px;
  -webkit-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.25);
  border-radius: 24px;
  margin-bottom: 16px;
}
.faq .faq_cnt-q {
  cursor: pointer;
  position: relative;
  font-weight: bold;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 8px;
  padding-right: 20px;
}
.faq .faq_cnt-q::after {
  content: "＋";
  font-size: 1.2em;
  margin-left: 10px;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  color: #F83600;
  position: absolute;
  right: 0px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.faq .faq_cnt.open .faq_cnt-q::after {
  content: "ー";
}
.faq .faq_cnt-a {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.4s ease;
  transition: max-height 0.4s ease;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.faq .faq_cnt.open .faq_cnt-a {
  max-height: 500px; /* 十分な高さに設定（中身に応じて） */
  border-top: 1px dashed #D9D9D9;
  margin-top: 8px;
  padding-top: 8px;
}
.faq .faq_label-f,
.faq .faq_label-a {
  font-weight: bold;
  margin-right: 0.5em;
}
.faq .faq_label-f {
  color: #48C6EF;
}
.faq .faq_label-a {
  color: #F83600;
}

footer {
  background-color: #003366;
  color: #fff;
  font-size: 1rem;
  text-align: center;
  padding: 8px;
}/*# sourceMappingURL=style.css.map */