@charset "utf-8";

/* 
=================================================================================

▼▼▼　テンプレJS用のCSS。不要なものは削除　▼▼▼

=================================================================================
*/
html {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  line-height: 1.5;
  color: #000;
}

/* アンカーリンクふわっと表示 */
html {
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5 {
  line-height: 1.5;
}
@media screen and (min-width: 769px) {
  /* PC用 */
  html {
    font-size: 10px;
  }
  .inner {
    position: relative;
    max-width: 100%;
    display: block;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  /* SP用 */
  html {
    font-size: calc(10vw / 768 * 100); /* 最大値768px、文字サイズ10pxの場合 */
  }
  .inner {
    width: 100%;
    padding: 0 5rem;
    max-width: 100%;
    margin: auto;
  }
}

/* 
=================================================================================

▼▼▼　文字　▼▼▼

=================================================================================
*/
.go {
  font-family: "Noto Sans JP", sans-serif;
}
.shippori {
  font-family: "Shippori Mincho", serif;
}
.b {
  font-weight: bold;
}
.m {
  font-weight: 500;
}

/* 
=================================================================================

▼▼▼　ちらつき対策（CSS）　▼▼▼

=================================================================================
*/

.loading {
  position: fixed;
  background: #fff;
  z-index: 9999;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 1s all;
  opacity: 1;
  pointer-events: all;
}

/* 
=================================================================================

▼▼▼　ハンバーガーメニュー　▼▼▼

=================================================================================
*/

/* ▼▼ トグルボタン ▼▼ */
:root {
  --hamburger-size: 10rem; /* ハンバーガーアイコンサイズ */
  --hamburger-line: 0.5; /* ハンバーガーアイコンの横線の長さ */
}
.hamburger_area {
  position: relative;
  z-index: 12;
}
.toggle_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  left: 2rem;
  z-index: 11;
  width: 8rem;
  height: var(--hamburger-size);
  transition: all 0.5s;
  cursor: pointer;
  background: transparent;
  border-radius: 1.5rem;
}
.toggle_btn span {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  right: calc((99.99% - (var(--hamburger-size) * var(--hamburger-line))) / 2);
  width: calc(var(--hamburger-size) * var(--hamburger-line));
  height: calc(var(--hamburger-size) * 0.04);/* ハンバーガーアイコンの縦線の長さ */
  border-radius: 50vmin;
  background-color: #0e2c5e;
  transition: all 0.5s;
}
.toggle_btn span:nth-child(1) {
  transform: translateY(calc(var(--hamburger-size) * -0.2));
}
.toggle_btn span:nth-child(2) {
}
.toggle_btn span:nth-child(3) {
  transform: translateY(calc(var(--hamburger-size) * 0.2));
  font-size: calc(var(--hamburger-size) * 0.2);
}

/* オープン時 */
body.open .toggle_btn {
  box-shadow: none;
  background: rgba(12,48,97,0);
  color: #fff;
}
body.open .toggle_btn span {
  background-color: #0e2c5e;
}
body.open .toggle_btn span:nth-child(1) {
  -webkit-transform: translateY(0) rotate(225deg);
  transform: translateY(0) rotate(225deg);
}
body.open .toggle_btn span:nth-child(2) {
  -webkit-transform: translateY(0) rotate(-225deg);
  transform: translateY(0) rotate(-225deg);
}
body.open .toggle_btn span:nth-child(3) {
  opacity: 0;
}

/* ▲▲ トグルボタン ▲▲ */

/* ▼ グローバルナビ ▼ */
.gloval-nav {
  background-color: #f1f3f7;
  color: #fff;
  position: fixed;
  z-index: 11;
  top: 0;
  bottom: 0;
  right: 0;
  padding: var(--hamburger-size) 4rem 4rem;
  transform: translateX(100%);
  transition: 1s all;
  width: 100%;
  max-height: 100vh;
}
.gloval-nav .gloval_box {
  overflow-y: auto;
  width: 100%;
  height: 100%;
}
.gloval-nav ul.gloval_ul > li {
  opacity: 0;
  transform: translateX(-200px);
  transition:  transform .6s ease, opacity .2s ease;
  font-size: 4.6rem;
  color: #0e2c5e;
  border-bottom: solid #3977f5 0.3rem;
  padding: 0 3rem;
}
.gloval-nav ul.gloval_ul > li:nth-child(2) { transition-delay: .1s; }
.gloval-nav ul.gloval_ul > li:nth-child(3) { transition-delay: .2s; }
.gloval-nav ul.gloval_ul > li:nth-child(4) { transition-delay: .3s; }
.gloval-nav ul.gloval_ul > li:nth-child(5) { transition-delay: .4s; }
.gloval-nav ul.gloval_ul > li:nth-child(6) { transition-delay: .5s; }
.gloval-nav ul.gloval_ul > li:nth-child(7) { transition-delay: .6s; }
.gloval-nav ul.gloval_ul > li:nth-child(8) { transition-delay: .7s; }
.gloval-nav ul.gloval_ul > li:nth-child(9) { transition-delay: .8s; }
.gloval-nav ul.gloval_ul > li:nth-child(n+10) { transition-delay: .9s; }

.gloval-nav ul.gloval_ul > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color .6s ease;
}

/* open時 */
.open {
  overflow: hidden;
}
.open .hamburger_bg,
.open .gloval-nav {
visibility: visible;
transform: translateX(0);
transition: transform .6s;
}
.open .gloval-nav ul.gloval_ul > li {
opacity: 1;
transform: translateX(0);
transition: transform 1s ease, opacity .9s ease;
margin-top: 4rem;
}
/* ▲ グローバルナビ ▲ */

/* ▼ アコーディオン ▼ */
.ac_btn {
  padding: .75em 1em .75em 0;
  display: block;
  cursor: pointer;
  position: relative;
}
.ac_btn::before {
  content: "＋";
  position: absolute;
  top: calc((100% - 1em) / 2);
  right: 0;
  pointer-events: none;
  line-height: 1;
  display: inline;
}
.ac_btn.active::before {
  content: "－";
}
ul.sub_gloval_ul {
  display: none;
}
ul.sub_gloval_ul > li {
  border-top: 1px solid #DCDDDD;
}
ul.sub_gloval_ul > li > a {
  display: block;
  padding: .75em 1em;
}
/* ▲ アコーディオン ▲ */

/* ▼ 背景網掛け ▼ */
.hamburger_bg {
  background-color: rgba(0,0,0,0.3);
  position: fixed;
  z-index: 9;
  top: 0;
  bottom: 0;
  right: 0;
  transform: translateX(100%);
  /* transition: 1s all; */
  width: 100vw;
  max-height: 100vh;
}
/* ▲ 背景網掛け ▲ */

.wrapper{
  position: relative;
}
.mv{
  position: relative;
}
.mv_logo{
  width: 14.17vw;
  position: absolute;
  top: 2.5vw;
  left: 4.17vw;
}
.contents_inner{
  position: relative;
}
.menu{
  width: 100%;
  position: sticky;
  background-color: #fff;
  top: 0;
  left: 0;
  z-index: 100;
  filter: drop-shadow(0 0 1rem rgba(0, 0, 0, 0.25));
}
.menu_list{
  font-size: 1.4rem;
  color: #0e2c5e;
  text-align: center;
  max-width: 100rem;
  margin: auto;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
}
.menu_item{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu_item a{
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
}
.menu_item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-image: linear-gradient(90deg, #1b7fc3, #1b2b58);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}
.menu_item a:hover::after {
  transform: scaleX(1);
}
.about{
  padding: 9rem 0;
}
.section_inner01{
  max-width: 78.5rem;
  margin: auto;
}
.section_inner03{
  max-width: 93rem;
  margin: auto;
}
.img01{
  width: 70rem;
  margin: auto;
}
.about_box_list{
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  margin-top: 4rem;
}
.about_box01{
  width: calc(99.99% /2 - 2rem);
  display: flex;
  align-items: center;
  flex-direction: column;
  border-radius: 1.5rem;
  background-color: #f1f3f7;
}
.about_box_text{
  font-size: 2rem;
  color: #0e2c5e;
  flex: 1;
  padding: 2rem 0;
}
.about_box_text p{
  width: fit-content;
  margin: auto;
}
.about_note{
  font-size: 1.5rem;
  margin-top: 2rem;
}
.sns_bg{
  padding: 10rem 0 28vw;
  background-image: url(../img/sns_bg2.webp);
  background-repeat: no-repeat;
  background-size: cover;
}
.section_title01{
  font-size: 3.2rem;
  color: #fff;
  text-align: center;
}
.sns_slide{
  max-width: 95%;
  margin: auto;
  margin-top: 3.5rem;
}
/* .sns_slide li{
  padding: 0 1rem;
} */
/* CSS */
.sns_slide .slick-slide {
  height: auto !important;
}

.sns_slide .slick-track {
  display: flex !important;
  align-items: flex-start;
}

.sns_slide li {
  padding: 0 1rem;
  box-sizing: border-box;
}

.sns_slide .instagram-media {
  min-width: 0 !important;
  width: 100% !important;
  margin: 0 auto !important;
}

/* SP対応 */
@media (max-width: 768px) {
  .sns_slide li {
    padding: 0 0.5rem;
  }
}

.slick-dots li button:before{
  font-size: 1.2rem !important;
  color: #fff !important;
}
.slick-dots{
  bottom: -5rem !important;
}
.sns_link_box{
  max-width: 78.5rem;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
.sns_link{
  width: 50%;
}
.sns_link a{
  font-size: 2rem;
  text-align: center;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 1rem 0;
  margin: 8rem auto 0;
  border: solid #fff 0.1rem;
  border-radius: 3rem;
}
.sns_icon{
  width: 3rem;
}
.detail{
  margin-top: -25vw;
  padding-bottom: 12rem;
}
.detail_inner{
  margin-top: -15rem;
}
.img06{
  width: 38rem;
  margin: auto;
}
.section_title02{
  font-size: 2.6rem;
  color: #244781;
  text-align: center;
  margin-top: 2rem;
}
.small01{
  font-size: 3rem;
}
.large01{
  font-size: 3rem;
}
.large02{
  font-size: 5rem;
}
.img07{
  width: 58rem;
  margin: 2rem auto 0;
}
.detail_box{
  display: flex;
  align-items: center;;
  border: solid #3977f5 0.1rem;
  border-radius: 2rem;
  padding: 3.5rem;
}
.detail_box_item{
  width: 50%;
  text-align: center;
}
.detail_box .detail_box_item:first-child{
  border-right: solid #3977f5 0.1rem ;
}
.detail_box_item h3{
  font-size: 1.7rem;
  color: #fff;
  background-color: #3977f5;
  padding: 0.5rem 2rem;
  width: fit-content;
  margin: auto;
}
.detail_box_item p{
  font-size: 2.1rem;
  color: #0e2c5e;
  margin-top: 1.5rem;
}
.img18{
  width: 52rem;
  margin: 4rem auto 0;
}
/* .feature_bg{
  padding: 10rem 0 20rem;
  background-image: url(../img/feature_bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
} */
 .feature_bg{
    padding: 5rem 0 20rem;
    background-image: url(../img/feature_bg.png);
    background-size: 192rem 100%;
    background-repeat: no-repeat;
    background-position: center;
  }
.section_title03{
  font-size: 3.2rem;
  color: #244781;
  text-align: center;
  filter: drop-shadow(0 0 1rem rgba(255, 255, 255, 1));
}
.feature_list{
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 5rem;
}
.feature_item{
  display: flex;
  align-items: center;
  gap: 3.5rem;
  padding: 2.5rem;
  background-color: #fff;
  border-radius: 2rem;
}
.img08{
  width: 25rem;
}
.feature_text_box{
  flex: 1;
}
.feature_text_box h4{
  font-size: 2rem;
  color: #0e2c5e;
  
}
.feature_text_box p{
  font-size: 1.6rem;
  color: #0e2c5e;
  margin-top: 1rem;
}
.feature_text_other{
  font-size: 1.2rem !important;
  line-height: 1.2;
  text-indent: -1.8rem;
  padding-left: 1.2rem;
  margin-top: 0 !important;
}
.feature_note{
  font-size: 1.5rem;
  margin-top: 2rem;
  color: #0e2c5e;
}
.support_box{
  background-image: url(../img/support_bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
}
.support_inner{
  padding: 15rem 0;
  width: 50%;
  margin-left: auto;
}
.support_inner h3{
  font-size: 2.6rem;
  color: #0e2c5e;
}
.support_inner p{
  font-size: 1.6rem;
  color: #0e2c5e;
  margin-top: 2rem;
}
.prize_bg{
  background-color: #ebf1fe;
  padding-top: 10rem;
  margin-bottom: -1vw;
  z-index: 1;
  position: relative;
}
.section_inner02{
  max-width: 96rem;
  margin: auto;
}
.section_title04{
  position: relative;
  font-size: 4.3rem;
  text-align: center;
  color: #244781;
  position: relative;
  line-height: 1.2;
}
.section_title04::after{
  content: "";
  width: 28rem;
  height: 16rem;
  background-image: url(../img/title_bg01.webp);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 2.5rem;
  left: calc(50% - 28rem);
  z-index: -1;
}
.large03{
  font-size: 9.5rem;
}
.prize_img{
  margin-top: 4rem;
  background: #fff;
  border: solid #3977f5 0.1rem;
  padding: 8rem 4rem;
}
.prize_note{
  font-size: 1.5rem;
  text-align: end;
}
.step_box{
  padding: 7rem;
  background-color: #fff;
  border: solid #3977f5 0.1rem;
  margin-top: 4rem;
}
.step_title{
  font-size: 3.2rem;
  color: #244781;
  text-align: center;
}
.step_list{
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  margin-top: 4rem;
}
.step_item{
  width: 25%;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
}
.step_item h4{
  font-size: 2.7rem;
}
.step_item h4 span{
  font-size: 4rem;
  color: #3977f5;
}
.step_item p{
  font-size: 1.6rem;
}
.step_item img{
  margin: auto;
}
.step_img{
  position: relative;
}
.step_img::after{
  content: "chevron_right";
  font-family: 'Material Symbols Outlined';
  width: 2.7rem;
  height: 2.7rem;
  font-size: 2rem;
  color: #fff;
  background-color: #3977f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 40%;
  transform: translateX(50%);
  left: 85%;
}
.step_list .step_item:last-child .step_img::after{
  display: none;
}
.step_img{
  width: 100%;
  height: 14rem;
  display: flex;
  align-items: center;
}
.step1{
  width: 9rem;
}
.step2{
  width: 7rem;
}
.step3{
  width: 7rem;
}
.step4{
  width: 11.5rem;
}
.apply_link a{
  display: block;
  width: 34rem;
  margin: 4rem auto 0;
  font-size: 2rem;
  text-align: center;
  padding: 1rem;
  color: #162b5b;
  border: solid #162b5b 0.2rem;
  border-radius: 3rem;
}
.apply_how_to{
  font-size: 1.6rem;
  margin-top: 4rem;
  padding: 2rem;
  border: dotted #244781 0.2rem;
}
.red{
  color: #ff0000;
}
.img14{
  width: 28rem;
  margin: 4.5rem auto 0;
}
.img15{
  width: 51rem;
  margin: 2rem auto 0; 
}
.img16{
  width: 51rem;
  margin: 3.5rem auto 0; 
}
.terms_bg{
  padding: 30vw 0  10rem;
  margin-top: -25vw;
  background-image: url(../img/terms_bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
}
.terms_inner{
  background-color: #fff;
  padding: 6rem 5rem;
}
.section_title05{
  font-size: 1.8rem;
  text-align: center;
}
.section_title05 span{
  font-size: 3.2rem;
  color: #244781;
}
.terms_box{
  height: 50rem;
  overflow-x: scroll;
  padding: 2rem;
  margin-top: 5rem;
}
.contact_bg{
  padding: 10rem 0;
}
.contact_box{
  margin-top: 3rem;
}
.indent32{
  text-indent: -0.8rem;
  padding-left: 0.8rem;
  margin-left: 1.8rem;
  position: relative;
}
.indent32::before{
  content: "";
  position: absolute;
  top: 0.7rem;
  left: -1.5rem;
  width: 1rem;
  height: 1rem;
  background-color: #3977f5;
  border-radius: 50%;
}
.indent18{
  text-indent: -1.8rem;
  padding-left: 1.8rem;
}
.movie_bg{
  background-color: #ebf1fe;
  padding: 10rem 0;
}
.section_title06{
  font-size: 3.2rem;
  text-align: center;
  color: #3977f5;
}
.movie{
  width: 100%;
  margin-top: 3rem;
}
.movie video{
  width: 100%;
}
.frame01 img,
.frame02 img,
.mv_img img{
  width: 100%;
}
.frame01{
  height: 30rem;
}
.ul{
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  header{
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    z-index: 100;
  }
  .header_inner{
    max-width: 71rem;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .mv{
    padding-top: var(--hamburger-size);
  }
  .mv_logo{
    width: 17rem;
    position: relative;
    top: 0;
    left: 0;
    z-index: 100;
  }
  .sp_section_inner01{
    max-width: 69rem;
  }
  .sp_section_inner02{
    max-width: 63rem;
  }
  .img01{
    width: 57rem;
  }
  .movie{
    width: 57rem;
    margin: 4rem auto 0;
  }
  .about_box_list{
    margin-top: 6.5rem;
  }
  .about_box_text{
    font-size: 2.6rem;
    text-align: center;
  }
  .detail{
    margin-top: -18rem;
  }
  .section_title02{
    font-size: 2.2rem;
    color: #244781;
    text-align: center;
  }
  .small01{
    font-size: 2.2rem;
  }
  .large01{
    font-size: 2.6rem;
    letter-spacing: -0.2rem;
  }
  .large02{
    font-size: 4.2rem;
  }
  .img06{
    width: 40rem;
  }
  .img07{
    width: 47rem;
  }
  .section_title03{
    font-size: 4.6rem;
  }
  .feature_bg{
    padding: 3rem 0 20rem;
    background-size: contain;
    background-image: url(../img/sp_feature_bg.webp);
  }
  .feature_text_box h4{
    font-size: 3rem;
  }
  .feature_text_box p{
    font-size: 2.4rem;
  }
  .feature_item{
    align-items: start;
  }
  .feature_item_sp{
    background-color: #fff;
    border-radius: 2rem;
  }
  .feature_text_other{
    font-size: 2rem !important;
    text-indent: -2rem;
    padding: 0rem 2rem 2rem 4rem;
  }
  .feature_note{
    font-size: 2.2rem;
  }
  .img08{
    width: 20rem;
  }
  .feature_text_other{
    font-size: 2rem;
  }
  .support_inner{
    width: 55%;
    padding: 6rem 0;
  }
  .support_inner h3{
    font-size: 3rem;
  }
  .support_inner p{
    font-size: 2.3rem;
  }
  .prize_img{
    border: solid #3977f5 0.15rem;
  }
  .step_list{
    flex-wrap: wrap;
    gap: 6rem 0;
  }
  .step_box{
    border: solid #3977f5 0.15rem;
  }
  .step_item{
    width: 50%;
  }
  .step_title{
    font-size: 4rem;
  }
  .step_img::after{
    width: 3rem;
    height: 3rem;
    font-size: 3rem;
    left: 90%;
  }
  .step_list .step_item:nth-child(even) .step_img::after{
    display: none;
  }
  .step_item h4{
    font-size: 3.6rem;
  }
  .step_item h4 span{
    font-size: 5.3rem;
  }
  .step_item p{
    font-size: 2.5rem;
  }
  .step1{
    width: 11.5rem;
  }
  .step2{
    width: 7rem;
  }
  .step3{
    width: 7rem;
  }
  .step4{
    width: 11.5rem;
  }
  .apply_link a{
    width: 40rem;
    font-size: 2.4rem;
  }
  .img14{
    width: 30rem;
    margin-top: 8rem;
  }
  .img15{
    width: 56rem;
  }
  .img16{
    width: 56rem;
    margin-top: 0rem;
  }
  .section_title06{
    font-size: 4rem;
  }
  .indent32{
    text-indent: 2rem;
    padding-left: 1rem;
    font-size: 2.6rem;
    margin-left: 1.25rem;
  }
  .indent32::before{
    width: 2rem;
    height: 2rem;
    top: 0.9rem;
  }
  .indent18{
    text-indent: -2.4rem;
    padding-left: 2rem;
    font-size: 2.4rem;
  }
  .sp_mt30{
    margin-top: 3rem;
  }
  .sns_link_box{
    margin-top: 10rem;
    flex-direction: column;
  }
  .sns_link a{
    margin: auto;
    padding: 1rem 0;
    font-size: 2.4rem;
  }
}