@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Quicksand:wght@300..700&display=swap');

:root {
  --color-black: #000;
  --color-lblue: #0099FF;
  --color-pink: #FF65E2;
  --color-yellow: #FFFF54;
  --color-white: #FFF;
  --lineHeight01: 1.8;
}

* {
  box-sizing: border-box;
}

img{
  vertical-align:top;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: .03em;
  background: var(--color-white);
}

/*PARTS*/
main {
  position: relative;
}

#feature, #schedule {
  scroll-margin-top: 140px;
}

.inner {
  max-width: 1080px;
  margin: 0 auto;
}

.section .inner {
  padding: 0 20px;
}

.ttl01 {
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  position: relative;
  padding-bottom: 28px;
  margin-bottom: 32px;
  z-index: 2;
}

.ttl01::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  width: 240px;
  height: 50px;
  background: url(../image/img_TtlLine.svg) no-repeat center;
  z-index: -1;
}

.c-pink{
  color: var(--color-pink);
}

.btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: fit-content;
  min-width: 180px;
  padding: 1em;
  color: var(--color-white);
  background: linear-gradient(180deg, #48B6FF 0%, #0099FF 100%);
  font-weight: 400;
  border-radius: 100px;
  margin: 0 auto;
  position: relative;
  text-decoration: none;
}

.btn:hover {
}

.note {
  color: var(--color-dgray);
}

.note:before {
  content: "※";
}

.en {
  font-family: 'Poppins', sans-serif;
}

body .u-sp {
  display: none;
}

.scroll_padding {
  scroll-padding-top: 100px;
}

@media screen and (max-width: 767px) {
  #feature, #schedule {
    scroll-margin-top: 100px;
  }
  .ttl01 {
    font-size: 1.375rem;
    padding-bottom: 14px;
    margin-bottom: 32px;
  }

  .ttl01::before {
    width: 160px;
    height: 34px;
  }
  .btn {
    padding: 16px;
  }

  body .u-sp {
    display: block;
  }

 body .u-pc {
    display: none;
  }
}

@media(min-width: 768px){
  a[href^="tel:"]{
    pointer-events: none;
  }
}


/*HEADER*/
.header {
  height: 76px;
  background-color: transparent;
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  margin: 0 20px;
  z-index: 1000;
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: 0 0 22px rgba(255, 40, 200, 0.15);
}

.header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 12px;
  max-width: none;
  position: relative;
}

.header_logo {
  width: 300px;
  margin-left: 18px;
  position: relative;
  z-index: 9999;
}

.header_logo a {
  display: block;
  line-height: 1;
}

.header_logo a:hover {
  opacity: .7;
}

.header_nav, .header_nav_inner, .header_nav_text {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.header_nav_text {
  font-size: .925rem;
  font-weight: 500;
}

.header_nav_text li+li {
  margin-left: 20px;
}

.header_nav_btn {
  margin-left: 20px;
  font-size: .875rem;
}

.p-header__hamburger {
  display: none;
}

.header_overlay{
  display: none;
}


/* --- 1200px以下のレスポンシブ設定を差し替え --- */
@media screen and (max-width: 1200px) {
  .header{
    top: 14px;
    margin: 0 14px;
    height: 57px;
    border-radius: 8px;
    box-shadow: 0 0 12px rgba(255, 40, 200, 0.15);
  }
  .header .inner {
    padding: 20px;
  }
  .header_logo {
    width: 210px;
    margin: 0;
  }
  .header .inner {
    padding: 20px;
  }
  .header_logo {
    width: 210px;
    margin: 0;
  }

  .p-header__hamburger {
    display: inherit;
  }

  .c-hamburger {
    position: relative;
    width: inherit;
    height: inherit;
    margin: 0;
    border: transparent;
    background-color: transparent;
    cursor: pointer;
    z-index: 11;
  }

  .c-hamburger span {
    display: block;
    position: relative;
    left: 50%;
    width: 24px;
    height: 2px;
    transform: translateX(-50%);
    background: var(--color-black);
    transition: all 0.4s;
  }

  .c-hamburger.is-active span {
    background: var(--color-black);
  }

  .c-hamburger span:nth-of-type(1) {
    top: -4px;
  }

  .c-hamburger span:nth-of-type(2) {
    top: 1px;

    transform: translateX(-0.45deg);
  }

  .c-hamburger span:nth-of-type(3) {
    top: 7px;
    transform: translateX(-0.45deg);
  }

  .c-hamburger.is-active span:nth-of-type(1) {
    top: 0;
    transform: translateX(-50%) rotate(225deg);
  }

  .c-hamburger.is-active span:nth-of-type(2) {
    opacity: 0;
  }

  .c-hamburger.is-active span:nth-of-type(3) {
    top: -4px;
    transform: translateX(-50%) rotate(-225deg);
  }

  .header_nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-white);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    justify-content: flex-start;
  }
  /* 2. メニューが開いた状態（ふわっと表示） */
  .header_nav.is-active {
    opacity: 1;
    visibility: visible;
  }

  .header_nav_inner{
    margin-top: 80px;
    width: 100%;
    padding: 0 20px;
    display: block;
  }

  .header_nav_text li+li{
    margin: 0;
  }

  /* 3. 背景のオーバーレイ */
  .header_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s;
  }

  body.is-active .header_overlay {
    opacity: 1;
    visibility: visible;
  }

  /* 4. メニュー内項目の調整 */
  .header_nav_text {
    flex-direction: column;
    align-items: center; /* 中央揃え（carebook風） */
    width: 100%;
    margin-top: 40px;
  }

  .header_nav_text li {
    margin: 0;
    padding: 15px 0;
    width: 100%;
    text-align: center;
  }

  .header_nav_text li a {
    font-size: 1.25rem;
  }

  .header_nav_btn {
    margin: 40px auto 0;
    width: 100%;
    max-width: 300px;
  }

  /* 5. ハンバーガーボタンを常に最前面に */
  .p-header__hamburger {
    z-index: 1002;
  }

  /* メニューが開いている間、背後のスクロールを禁止 */
  body.is-active {
    overflow: hidden;
  }
}


@media screen and (max-width: 767px) {
  .header_nav.is-active{
  }
  .header_nav_inner{
    margin-top: 120px;
  }
  .header_nav_text{
    margin: 0 auto;
  }
  .header_nav_text li a {
    font-size: 1rem;
  }
  .header_nav_btn{
    margin: 20px auto 0;
    font-size: 1rem;
    width: 100%;
    max-width: 320px;
  }
}

/*KV*/
.kv{
  background: linear-gradient(180deg, #FFE0F9 28%, #FFFFDD 100%);
}

.kv_main .inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 145px 20px 0;
}

.kv_text {
  flex: 1;
  margin: 14px 9% 0 0;
}

.kv_text_wrap{
  position: relative;
}

.kv_card{
  width: 87%;
}

.kv_badge{
  position: absolute;
  right: 0;
  top: 0;
  width: 100px;
  height: auto;
}

.kv_title {
  font-size: 2.925rem;
  font-weight: 500;
  line-height: 1.26;
  position: relative;
  z-index: 2;
  margin: 14px 0 16px;
}

.kv_title .underline{
  position: relative;
}

.kv_title .underline::before{
  position: absolute;
  content: "";
  bottom: 8px;
  left: 0;
  width: 102%;
  height: 10px;
  background: var(--color-yellow);
  z-index: -1;
}
.kv_desc{
  font-size: 1.275rem;
}

.kv_img {
  width: 51%;
}

.kv_img .note {
  font-size: 0.625rem;
  text-align: center;
  margin-top: 8px;
}

.kv_sub{
  border-top: 1px solid #ccc;
  padding: 20px;
  max-width: 1240px;
  margin: 0 auto;
}

.kv_list{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.kv .btn {
  min-width: 280px;
  padding: 1.125em;
  margin: 26px auto 0 0;
  font-size: 1.125rem;
}

@media screen and (max-width: 1200px) {
  .kv .kv_main .inner {
    padding: 11vw 20px 0;
  }
  .kv_text {
      margin: 2vw 3vw 0 0;
  }
  .kv_title{
    font-size: 4vw;
  }
  .kv_desc {
    font-size: 1.65vw;
  }
  .kv_badge{
    width: 8.33vw;
  }
  .kv .btn {
    font-size: 1.5vw;
    width: 29.16vw;
    padding: 2vw 1em;
    min-width: auto;
    margin: 1.5vw auto 0 0;
  } 
  .kv_img {
    width: 48vw;
  }
}

@media screen and (max-width: 767px) {
  .kv{
  }
  .kv .kv_main .inner {
    flex-direction: column;
    padding: 110px 20px 0;
  }

  .kv_text {
    margin: 0;
    width: 100%;
  }
  .kv_card {
    width: 82%;
    margin:0 auto;
  }
  .kv_badge{
    width: 76px;
    top: -20px;
  }

  .kv_title {
    font-size: 10vw;
    text-align: center;
  }
  .kv_desc {
    font-size: 4.8vw;
    text-align: center;
  }
  .kv .btn{
    font-size: 4vw;
    padding: 1em;
    margin: 24px auto 0;
    width: 86%;
  }
  .kv_img {
    width: 77%;
    margin: 30px auto 0;
  }
}


/*ONAYAMI*/
.onayami{
  background: var(--color-white);
  padding: 100px 0;
}

.onayami_title{
  font-weight: 500;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 50px;
}

.onayami_list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

@media screen and (max-width: 1200px) {
  .onayami_title{
    font-size: 1.375rem;
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 767px) {
  .onayami{
    padding: 40px 0 ;
  }
  .onayami_list {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}




/*FEATURE*/
.feature{
  background: linear-gradient(180deg, #FFFFFF 0%, #FFE4F6 35%, #FFFFDD 90%, #FFFFFF 100%);
  position: relative;
  padding-top: 80px;
}

.feature::before{
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 80px;
  background: linear-gradient(to top, #ffff00, transparent);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  z-index: 1;
}

.feature .inner{
  padding: 60px 20px 130px;
}

.feature_message{
  text-align: center;
  margin-bottom: 46px;
}

.feature_desc{
  text-align: center;
  font-size: 1.25rem;
  line-height: var(--lineHeight01);
}

.feature .ttl01{
  margin-top: 84px;
}

.feature_item {
  background-color: var(--color-white);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  align-items: start;
  justify-content: space-between;
  box-sizing: border-box;
  margin: 60px 14.4% 0 0;
  position: relative;
}

.feature_item:nth-of-type( 2n ) {
  margin: 80px 0 0 14.4%;
}

.feature_number {
  position: absolute;
  left: 20px;
  top: -20px;
}

.feature_text_content {
  flex: 1;
  padding: 40px 10px 0 20px;
}

.feature_title {
  font-size: 1.75rem;
  text-align: left;
  font-weight: 500;
  margin: 0 0 20px;
}

.feature_description {
  font-size: 1.125rem;
  line-height: var(--lineHeight01);
}

.feature_image_content {
  width: 50%;
}

@media screen and (max-width: 1200px) {
}

@media screen and (max-width: 767px) {
  .feature{
    padding-top: 65px;
  }
  .feature .inner{
    padding: 60px 20px 110px;
  }
  .feature_message{
    margin-bottom: 26px;
  }
  .feature_message .u-sp{
    width: 100%;
    margin: 0 auto;
  }
  .feature_desc {
      font-size: .875rem;
  }
  .feature::before{
    width: 260px;
    height: 65px;
  }
  .feature .ttl01{
    margin-top: 60px;
  }
  .feature_item {
    flex-direction: column;
    padding: 20px;
    border-radius: 12px;
  }
  .feature_item:nth-of-type( 2n ){
    margin: 60px 0 0 14.4%;
  }
  .feature_text_content {
    padding: 0;
  }
  .feature_number{
    height: 40px;
    right: 20px;
    top: -20px;
    left: auto;
  }
  .feature_number img{
    height: 100%;
    width: auto;
  }
  .feature_title {
    font-size: 1.25rem;
    line-height: 1.35;
    margin: 0 0 10px;
  }
  .feature_description {
    font-size: .825rem;
  }
  .feature_image_content{
    width: 100%;
    margin-top: 16px;
  }
}


/*SCHEDULE*/
.schedule {
  background: var(--color-white);
}

.schedule .inner{
  padding: 0 20px 130px;
}

.schedule_list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  list-style: none;
  gap: 11.5%;
}

.schedule_item {
  position: relative;
  flex: 1;
  text-align: center;
}

.schedule_item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: calc( 38% - 7px );
  right: -100%;
  width: 80%;
  height: 14px;
  background-image: url('../image/img_Arw02.svg'); 
  background-repeat: no-repeat;
  background-size: contain;
}

.schedule_img {
  margin-bottom: 15px;
}

.schedule_label {
  font-size: 1rem;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  color: var(--color-pink);
  margin-bottom: 8px;
}

.schedule_name {
  font-size: 1.25rem;
  font-weight: 500;
}


@media screen and (max-width: 767px) {
  .schedule .inner{
    padding: 0 20px 80px;
  }
  .schedule_list {
    flex-direction: column;
    gap: 40px;
    width: 70%;
    margin: 0 auto;
  }
  .schedule_item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
  }
  .schedule_item:not(:last-child)::after {
    top: auto;
      bottom: calc( -25% - 2px );
      right: auto;
      left: calc( 25% - 10px );
      margin: 0 auto;
      width: 16px;
      height: 20px;
      background-image: url(../image/img_Arw03.svg);
  }
  .schedule_img{
    width: 47%;
    margin: 0;
  }
  .schedule_text{
    text-align: left;
  }
  .schedule_name{
    font-size: 1.125rem;
  }
}



/* CONTACT */
.contact {
  background: linear-gradient(to bottom, var(--color-pink) 30%, var(--color-yellow) 100%);
  padding: 64px 0 70px;
}

.contact_lead {
  font-size: 1.5rem;
  text-align: center;
  color: var(--color-white);
  margin-bottom: 28px;
}
.contact_action .btn{
  font-size: 1.25rem;
  width: 350px;
}


@media screen and (max-width: 767px) {
  .contact {
    padding: 36px 0 40px;
  }
  .contact_lead {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  .contact_action .btn{
    font-size: 1rem;
    width: 86%;
  }
}


/*FIXED BTN*/
.fix_btn {
  display: none;
}

@media screen and (max-width: 767px) {
  .fix_btn {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: -100px;
    margin: 0 auto;
    z-index: 999;
    transition: bottom 0.4s ease;
    background: var(--color-white);
    padding: 14px 20px;
    box-shadow: 0 -4px 14px rgba(255, 40, 200, 0.15);

  }
  .fix_btn.is-show {
    bottom: 0;
  }
  .fix_btn .btn {
    width: 86%;
    max-width: 340px;
    min-width: auto;
    margin: 0 auto;
  }
}


/*FOOTER*/
.footer {
  background: var(--color-white);
  text-align: center;
  padding: 50px 0 46px;
}

.footer_list {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 24px 0;
  flex-wrap: wrap;
}

.footer_item {
  display: flex;
  align-items: center;
  padding: 0 20px;
  position: relative;
  line-height: 1;
  font-size: 0.875rem;
}

.footer_item:not(:first-of-type)::before {
  content: "";
  position: absolute;
  height: 1rem;
  width: 1px;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
  background: var(--color-black);
}

.footer_copyright {
  font-size: 0.6875rem;
  font-family: "Quicksand", sans-serif;
  margin-top: 16px;
}

@media screen and (max-width: 767px) {
  .footer {
    padding: 40px 20px 120px;
  }

  .footer_logo {
    width: 240px;
    margin: 0 auto;
  }

  .footer_list {
    margin: 18px 0;
  }
}