@charset "utf-8";
/**
 * youji-nensho
 */
/* ========================================
 * Variables - 設定値
 * ======================================== */
@property --zoom-factor {
  syntax: "<length>";
  inherits: false;
  initial-value: 0;
}

:root {
  --min-viewport-width: 0px; /* viewportの最小値を下回ったら縮小をやめる */
  --max-viewport-width: 750px; /* viewportの最大値を上回ったら拡大をやめる */
  --zoom-value: clamp(
    tan(atan2(var(--min-viewport-width), var(--max-viewport-width))),
    tan(atan2(var(--zoom-factor), var(--max-viewport-width))),
    1
  );
  --zoom-factor: clamp(
    var(--min-viewport-width),
    100dvi,
    var(--max-viewport-width)
  );

  --header-height: 65px;

  @media (min-width: 768px) {
    --header-height: 90px;
  }

  --color-primary: #F06E00;
  --color-green: #11aa32;
  --color-green-light: #edfaf0;
  --color-cta-green: #99CC24;
  --color-cta-dark-green: #35B751;
  --color-blue-green: #00a896;
  --color-blue-green-light: #e4faf8;
  --color-blue-green-light-500: #CDF2EE;
  --color-green-white-500: #EEF9EE;
  --color-blue-green-white: #f2fbfa;
  --color-blue-green-white-500: #EDF9F8;
  --color-brown: #513530;
  --color-yellow-green: #99cc24;
  --color-yellow-green-light: #f7ffe3;
  --color-yellow-white: #fefee7;
  --color-light-orange: #F5AA0F;
  --color-orange: #F06E00;
  --color-dark-orange: #BD5600;
  --color-pink: #f05096;
  --color-blue: #1C8DCC;
  --color-blue-light: #14AFE7;
  --color-dark-blue: #166C9D;
  --color-white: #fff;
  --color-text: #333;

  --font-family-maru-regular: 'MFW-PMaruAntipProN-Regular', 'Zen Maru Gothic', sans-serif;
  --font-family-maru-medium: 'MFW-PMaruAntipProN-Medium', 'Zen Maru Gothic', sans-serif;
  --font-family-maru-debold: 'MFW-PMaruAntipProN-DeBold', 'Zen Maru Gothic', sans-serif;
  --font-family-maru-bold: 'MFW-PMaruAntipProN-Bold', 'Zen Maru Gothic', sans-serif;
  --font-family-roboto: 'Roboto', sans-serif;

  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-debold: 700;
  --font-weight-bold: 700;
}

@keyframes fuwafuwa {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-16px);
  }
}

/* ========================================
 * Site - サイトの大枠
 * ======================================== */
html {
  scroll-behavior: smooth;
}

body {
  background: var(--color-white);
  color: var(--color-text);
  font-family: var(--font-family-maru-regular);
  font-weight: var(--font-weight-regular);
  line-height: 1.3;
  letter-spacing: 0.06em;
}

em {
  font-style: normal;
  font-weight: var(--font-weight-bold);
}

a {
  transition: opacity 300ms linear;
}

a:hover,
a:active,
a:focus {
  opacity: 0.7;
}

.s-main {
  width: 100%;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  margin-top: calc(var(--header-height) * -1);
}

/* ========================================
 * Components - コンポーネント
 * ======================================== */

.c-zoom-wrapper {
  zoom: var(--zoom-value); /* ビューポートのサイズに合わせて拡大縮小 */
  -webkit-text-size-adjust: initial; /* iOS Safariのバグを修正 */
}

.c-wrapper {
  width: 100%;
  max-width: var(--max-viewport-width);
  margin-inline: auto;

  @media (min-width: 768px) {
    &.\-only-sp {
      max-width: none;
      zoom: calc( 1 / var(--max-viewport-width));
    }
  }
}

.c-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;

  & > :where(p) {
    font-size: 28px;
    line-height: 1;
    margin-bottom: 20px;
    font-family: var(--font-family-maru-medium);
    font-weight: var(--font-weight-medium);
  }

  & > :where(h1,h2,h3,h4,h5,h6) {
    font-size: 52px;
    line-height: 1.5;
    margin-top: 20px;
    font-family: var(--font-family-maru-debold);
    font-weight: var(--font-weight-debold);
  }
}

.c-button {
  display: block;
  background-color: var(--_bg-color, var(--color-pink));
  padding: 40px;
  font-size: 32px;
  color: var(--_text-color, var(--color-white));
  font-family: var(--font-family-maru-medium);
  font-weight: var(--font-weight-medium);
  border-radius: 9999px;
  transition: opacity 300ms linear;
  text-align: center;
  position: relative;

  &:hover {
    opacity: 0.7;
  }

  &.\-medium {
    width: 550px;
    padding-block: 30px;

    &.-arrow:not(.l-sect-fv__cta-pc) {
      padding-right: 60px;
    }
  }

  &.\-large {
    width: 650px;
  }

  &.\-pink {
    --_bg-color: var(--color-pink);
    --_text-color: var(--color-white);
  }

  &.\-orange {
    --_bg-color: var(--color-orange);
    --_shadow-color: var(--color-dark-orange);
    --_text-color: var(--color-white);
  }

  &.\-green {
    --_bg-color: var(--color-cta-green);
    --_shadow-color: var(--color-cta-dark-green);
    --_text-color: var(--color-white);
  }

  &.\-blue {
    --_bg-color: var(--color-blue);
    --_shadow-color: var(--color-dark-blue);
    --_text-color: var(--color-white);
  }

  &.\-drop {
    box-shadow: 0 10px 0 var(--_shadow-color, var(--color-dark-orange));
  }

  & > span {
    color: var(--_text-color, var(--color-white));
    font-family: var(--font-family-regular);
    line-height: 1.35;
    flex: 1 1 auto;
    text-align: center;
  }

  &.\-arrow::after {
    position: absolute;
    top: 50%;
    right: 60px;
    translate: -50% -50%;
    display: block;
    flex: 0 0 17px;
    width: 17px;
    height: 28px;
    background-color: var(--_text-color, var(--color-white));
    mask: url('data:image/svg+xml;charset=utf-8,%3Csvg width="17" height="28" viewBox="0 0 17 28" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M2.06348 2.125L13.9358 13.9973L2.06348 25.8697" stroke="black" stroke-width="2.96809" stroke-linecap="round"/%3E%3C/svg%3E') no-repeat center;
    mask-size: contain;
    content: '';
  }

  &.\-medium::after {
    right: 40px;
  }
}

.c-fukidashi {
  border-radius: 20px;
  padding: 24px;
  text-align: center;
  position: relative;
  margin-bottom: 20px;
  background-color: var(--_bg-color, var(--color-white));

  &.\-medium {
    width: 495px;
  }

  &.\-blue-green-light {
    --_bg-color: var(--color-blue-green-light);
  }

  &.\-top {
    &::after {
      border-width: 0 24px 40px;
      border-color: transparent transparent var(--_bg-color);
      top: -32px;
      bottom: auto;
      translate: -50% 0;
    }
  }

  &::after {
    content: "";
    border-width: 21px 12px 0;
    border-color: var(--_bg-color) transparent transparent;
    position: absolute;
    bottom: -20px;
    left: 50%;
    translate: -50% 0;
  }
}

.c-btn-detail {
  & > summary {
    display: inline-block;
    background-color: #d9d9d9;
    border-radius: 10px;
    font-weight: var(--font-weight-bold);
    font-size: 20px;
    line-height: 1;
    padding: 10px 15px;
    color: var(--color-text);
    list-style: none;
    -webkit-details-marker: none;
    cursor: pointer;

    & > span {
      display: inline-flex;
      width: 10px;
      aspect-ratio: 1 / 1;
      justify-content: center;
      align-items: center;
      margin-left: 8px;
    }
  }

  & > div {
    font-size: 20px;
    margin-top: 10px;
  }

  &:not([open]) > summary span:nth-child(2) {
    display: none;
  }

  &[open] > summary span:nth-child(1) {
    display: none;
  }
}

.c-hr-dashed {
  display: block;
  border-top: 4px dashed var(--_border-color, #B1E3BC);
  width: 650px;
  margin-inline: auto;

  &.\-green {
    --_border-color: #B1E3BC;
  }
}

.c-dialog {
  --_transition-duration: 250ms;
  background-color: transparent;
  opacity: 0;
  transform: scale(0.95);
  transition-delay: 0ms;
  transition:
    display var(--_transition-duration) linear allow-discrete,
    overlay var(--_transition-duration) ease allow-discrete,
    opacity var(--_transition-duration) linear,
    transform var(--_transition-duration) ease;

  &[open] {
    opacity: 1;
    transform: scale(1);

    @starting-style {
      opacity: 0;
      transform: scale(0.95);
    }
  }

  &::backdrop {
    background-color: rgba(0, 0, 0, 0);
    transition: background-color var(--_transition-duration) linear;
  }

  &[open]::backdrop {
    background-color: rgba(0, 0, 0, 0.35);
  }

  &.\-small {
    width: 100%;
  }

  .c-dialog__content {
    padding: 40px 0;
    border-radius: 20px;
    overflow: auto;
    background-color: var(--color-white);
    position: relative;
  }

  &.\-small {
    .c-dialog__content {
      display: grid;
      place-items: center;
      padding-inline: 40px;
      min-height: 200px;
    }
  }

  .c-dialog__close {
    position: fixed;
    top: 60px;
    right: 50%;
    translate: 320px 0;
    z-index: 1;
  }

  &.\-small {
    .c-dialog__close {
      position: absolute;
      right: 20px;
      top: 20px;
      translate: 0 0;
    }
  }
}

.js-circle {
  aspect-ratio: 1 / 1;
  position: relative;

  /* &.is-animated {
    animation: jang 50ms ease-in-out alternate;
  } */

  .js-circle__ornament {
    position: absolute;
    top: 0;
    left: 50%;
    translate: -50% 0;
    display: flex;
    justify-content: center;
  }

  .js-circle__number-box {
    position: absolute;
    top: 51%;
    left: 50%;
    translate: -50% -50%;
    font-size: 77px;
    z-index: 2;
    position: relative;
    text-align: center;
  }

  .js-circle__text {
    font-size: 40px;
    line-height: 1.3;
    color: var(--color-green);
    font-family: var(--font-family-maru-medium);
    font-weight: var(--font-weight-medium);
    position: absolute;
    top: 47%;
    left: 50%;
    translate: -50% -50%;
    z-index: 2;
    text-align: center;
  }

  .js-circle__number {
    font-size: 136px;
    font-weight: var(--font-weight-medium);
    color: var(--color-green);
    font-family: var(--font-family-roboto);
  }

  .js-circle__graph {
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    width: 560px;
    aspect-ratio: 1 / 1;
    z-index: 1;
  }
}

.js-ability-carousel {
  /* zoomすると計算に不具合が生じるので逆数で解除する */
  zoom: calc(1 / var(--zoom-value));

  .splide__pagination {
    bottom: -24px;
    gap: 6px;

    .splide__pagination__page {
      height: 6px;
      width: 6px;

      &.is-active {
        background: #333333;
      }
    }
    
  }

  .splide__slide {
    position: relative;

    .js-ability-carousel__video {
      cursor: pointer;
      border-radius: 30px;
      height: auto;
      aspect-ratio: 284 / 477;
      overflow: clip;
      border: 4px solid var(--color-white);
      width: 100%;
      object-fit: cover;
  
      & + img {
        display: block;
        position: absolute;
        pointer-events: none;
        top: 50%;
        left: 50%;
        translate: -50% -50%;
        width: 60px;
        height: 60px;
        z-index: 2;
      }
  
      &.is-playing + img {
        display: none;
      }
    }
  }

}

/* ========================================
 * Layout - セクション別
 * ======================================== */
.l-sect-fv {
  width: fit-content;
  margin-inline: auto;
  position: relative;
  height: 1100px;
  aspect-ratio: 750 / 1100;
  clip-path: inset(0 0 0 0);

  @media (min-width: 768px) {
    width: 100%;
    height: auto;
    aspect-ratio: 1440 / 900;
    mask: none;
    max-height: calc(100vh - var(--header-height) - 30px);
  }

  .l-sect-fv__bg {
    position: fixed;
    width: var(--max-viewport-width);
    aspect-ratio: 750 / 942;
    z-index: -1;
    scale: 1;
    will-change: scale, filter; /* for JS Animation */

    @media (min-width: 768px) {
      width: 100%;
      height: 100%;
      max-height: calc(100vh - var(--header-height) - 30px);
      aspect-ratio: 1440 / 620;
    }

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
    }
  }

  .l-sect-fv__cloud {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 250px;
    background-color: var(--color-white);

    @media (min-width: 768px) {
      background-color: transparent;
      margin-top: auto;
      margin-left: auto;
      right: 0;
      height: clamp(300px, calc( (484 / 1440) * 100vw ), 484px);
      width: clamp(500px, calc(714 / 1440 * 100vw), 714px);
      padding-top: clamp(100px, calc( (180 / 1440) * 100vw ), 180px);
      padding-left: clamp(150px, calc( (200 / 1440) * 100vw ), 200px);
      padding-right: clamp(5px, calc( (10 / 1440) * 100vw ), 10px);
    }
  }

  .l-sect-fv__cloud-bg {
    position: absolute;
    top: -200px;
    width: 100%;

    @media (min-width: 768px) {
      top: auto;
      bottom: 0;
      right: 0;
      width: clamp(500px, calc(714 / 1440 * 100vw), 714px);
      aspect-ratio: 714 / 484;
    }
  }

  .l-sect-fv__cloud-copy {
    position: relative;
    z-index: 1;
    padding-inline: 50px;
    font-size: 50px;
    margin-top: -100px;
    font-family: var(--font-family-maru-medium);
    font-weight: var(--font-weight-medium);
    line-height: 1;

    @media (min-width: 768px) {
      padding-inline: 0;
      margin-top: -60px;
    }
  }

  .l-sect-fv__cloud-copy-tag {
    font-size: 28px;
    line-height: 1;
    color: var(--color-white);
    background-color: var(--color-primary);
    border-radius: 10px;
    padding: 8px 16px;

    @media (min-width: 768px) {
      font-size: clamp(12px, calc( (20 / 1440) * 100vw ), 20px);
      padding-inline: clamp(6px, calc( (12 / 1440) * 100vw ), 12px);
      padding-block: clamp(4px, calc( (8 / 1440) * 100vw ), 8px);
    }
  }

  .l-sect-fv__cloud-copy-text {
    display: grid;
    gap: 20px;
    margin-top: 28px;

    @media (min-width: 768px) {
      gap: clamp(6px, calc( (12 / 1440) * 100vw ), 12px);
      margin-top: clamp(14px, calc( (28 / 1440) * 100vw ), 28px);
    }
  }

  .l-sect-fv__cloud-copy-line {
    &.\-01 {
      font-size: 48px;
      color: var(--color-text);

      @media (min-width: 768px) {
        font-size: clamp(24px, calc( (36 / 1440) * 100vw ), 36px);
        margin-top: 0;
      }
    }
    &.\-02 {
      font-size: 64px;
      color: var(--color-primary);
      margin-top: -8px;

      @media (min-width: 768px) {
        font-size: clamp(24px, calc( (48 / 1440) * 100vw ), 48px);
        margin-top: clamp(-2px, calc( (-4 / 1440) * 100vw ), -4px);
      }
    }
    &.\-03 {
      font-size: 48px;
      color: var(--color-text);
      margin-top: -4px;

      @media (min-width: 768px) {
        margin-top: 0;
        font-size: clamp(24px, calc( (36 / 1440) * 100vw ), 36px);
      }
    }
  }

  .l-sect-fv__cloud-period {
    font-size: 22px;
    color: #999999;
    font-family: var(--font-family-maru-medium);
    font-weight: var(--font-weight-medium);
    line-height: 1;
    margin-top: 20px;

    @media (min-width: 768px) {
      font-size: clamp(10px, calc( (14 / 1440) * 100vw ), 14px);
      margin-top: clamp(10px, calc( (16 / 1440) * 100vw ), 16px);
    }
  }

  .l-sect-fv__cta-pc {
    display: none;
    width: fit-content;
    margin-top: clamp(15px, calc( (30 / 1440) * 100vw ), 30px);
    margin-left: clamp(20px, calc( (40 / 1440) * 100vw ), 40px);
    padding:
      clamp(12px, calc( (18 / 1440) * 100vw ), 24px)
      clamp(40px, calc( (60 / 1440) * 100vw ), 80px)
      clamp(12px, calc( (18 / 1440) * 100vw ), 24px)
      clamp(20px, calc( (32 / 1440) * 100vw ), 40px);
    font-size: clamp(12px, calc( (18 / 1440) * 100vw ), 24px);
    box-shadow: 0 clamp(4px, calc( (6 / 1440) * 100vw ), 8px) 0 var(--_shadow-color);
    font-family: var(--font-family-maru-debold);
    font-weight: var(--font-weight-debold);

    &::after {
      width: clamp(8px, calc( (12 / 1440) * 100vw ), 20px);
      right: clamp(16px, calc( (24 / 1440) * 100vw ), 32px);
    }

    @media (min-width: 768px) {
      display: block;
    }
  }

  .l-sect-fv__cloud-cta {
    position: absolute;
    bottom: 220px;
    right: 0;
    z-index: 1;
    display: flex;
    width: 280px;
    padding: 0 50px;
    margin: 0 0 0 auto;
  }

  .l-sect-fv__cta-btn {
    position: absolute;
    padding-top: 20px;
    bottom: -30px;
    right: 16px;
    width: 217px;
    z-index: 1;
    
    @media (min-width: 768px) {
      display: none;
    }

    .l-sect-fv__cta-btn-pop {
      display: block;
      font-size: 20px;
      line-height: 1;
      height: auto;
      font-weight: var(--font-weight-bold);
      text-align: center;
      padding: 12px 16px;
      font-size: 23px;
      color: var(--color-orange);
      background-color: #FEFBE4;
      position: absolute;
      top: 0;
      left: 50%;
      translate: -50% 0;
      width: max-content;
      background-color: #FEFBE4;
      border-radius: 9999px;
  
      &.\-orange {
        background-color: var(--color-white);
        color: var(--color-orange);
      }
  
      &.\-green {
        background-color: var(--color-white);
        color: var(--color-green);
      }
    }
    
    .l-sect-fv__cta-btn-core {
      width: 217px;
      aspect-ratio: 1/1;
      display: flex;
      flex-flow: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      border-radius: 9999px;
      background-color: var(--color-orange);
      box-shadow: 0 10px 0 var(--color-dark-orange);
      color: var(--color-white);
      font-size: 40px;
      font-family: var(--font-family-maru-medium);
      font-weight: var(--font-weight-medium);
      line-height: 1;
  
      &.\-orange {
        background-color: var(--color-orange);
        box-shadow: 0 10px 0 var(--color-dark-orange);
      }
  
      &.\-green {
        background-color: var(--color-cta-green);
        box-shadow: 0 10px 0 var(--color-cta-dark-green);
      }
    }
  }
}

.l-sect-ability {
  position: relative;

  .l-sect-ability__head {
    background-color: var(--color-white);
    height: 60px;
    clip-path: circle(1300px at 50% -1245px);
    margin-bottom: -60px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  
  .l-sect-ability__inner {
    background-color: var(--color-blue-green-white-500);
  }

  .l-sect-ability__point {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    cursor: pointer;

    > div {
      width: 83px;
      aspect-ratio: 1 / 1;

      > img {
        width: 100%;
        height: 100%;
        object-fit: contain;
      }
    }

    > p {
      flex-grow: 1;
      font-size: 36px;
      line-height: 1;
      font-family: var(--font-family-maru-medium);
      font-weight: var(--font-weight-medium);
    }

    > span {
      width: 25px;
      aspect-ratio: 1 / 1;
    }
  }

  .l-sect-ability__sect-inner {
    width: 100%;
    height: 100%;
    padding-top: 40px;
    position: relative;
  }

  .l-sect-ability__sect-header {
    display: grid;
    grid-template: auto / 114px 1fr;
    gap: 8px 24px;
    place-items: center;

    > div {
      > img {
        width: 100%;
        height: 100%;
        object-fit: contain;
      }
    }

    > :is(h1,h2,h3,h4,h5,h6) {
      font-size: 48px;
      display: flex;
      align-items: flex-start;
      font-family: var(--font-family-maru-debold);
      font-weight: var(--font-weight-debold);
    }
  }

  .l-sect-ability__sect-text {
    font-size: 28px;
    line-height: 1.95;

    &.\-large {
      line-height: 1.5;
      font-size: 36px;
    }
  }

  .l-sect-ability__title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 18px;

    > p {
      color: var(--color-white);
      font-size: 24px;
      border-radius: 10px;
      padding: 8px 16px;
      font-family: var(--font-family-maru-medium);
      font-weight: var(--font-weight-medium);
    }

    > :is(h1,h2,h3,h4,h5,h6) {
      font-size: 36px;
      font-family: var(--font-family-maru-medium);
      font-weight: var(--font-weight-medium);
    }
  }

  .l-sect-ability__tab-wrapper {
    .l-sect-ability__tab-labels {
      display: flex;
      gap: 0;
      align-items: flex-end;
      border-bottom: 1px solid #EEEEEE;
      
      .l-sect-ability__tab-label {
        height: 158px;
        width: 150px;
        position: relative;
        
        .l-sect-ability__tab-label-expanded,
        .l-sect-ability__tab-label-collapsed {
          display: grid;
          place-items: center;
          position: absolute;
          bottom: 0;
          width: 100%;
          transition-behavior: allow-discrete;
          transition-property: opacity, display;
          transition-duration: 300ms;
          transition-timing-function: linear;
          opacity: 1;
          @starting-style {
            opacity: 0;
          }
        }
        
        &[aria-expanded="true"] {
          .l-sect-ability__tab-label-expanded {
            display: grid;
            z-index: 1;
          }
          .l-sect-ability__tab-label-collapsed {
            display: none;
            opacity: 0;
          }
        }

        &[aria-expanded="false"] {
          .l-sect-ability__tab-label-expanded {
            display: none;
            opacity: 0;
          }
          .l-sect-ability__tab-label-collapsed {
            display: grid;
            z-index: 1;
          }
        }

        .l-sect-ability__tab-label-collapsed {
          font-size: 26px;
          border-radius: 24px 24px 0 0;
          background-color: var(--color-white);
          font-family: var(--font-family-maru-debold);
          font-weight: var(--font-weight-debold);
          line-height: 1;
          display: grid;
          place-items: center;
          padding: 24px 32px;
  
          &.\-purple {
            color: #A278CB;
          }

          &.\-red {
            color: #F75D5D;
          }

          &.\-blue-green {
            color: #1EC7CA;
          }

          &.\-green {
            color: #99CC24;
          }

          &.\-blue {
            color: #4097F7;
          }
        }
      }
    }

    .l-sect-ability__tab-panels {
      background-color: var(--color-white);
      border-radius: 0 0 72px 72px;
    }
  }

  .l-sect-ability__bottom {
    background-color: var(--color-blue-green-white-500);
    height: 60px;
    clip-path: circle(1300px at 50% -1245px);
    margin-bottom: -60px;
    position: relative;
    z-index: 1;
  }

}

.l-sect-core{
  position: relative;
  .l-sect-core__inner{
    /* background-color: rgba(20, 175, 231, .07); */
    position: relative;
  }
  .l-sect-core__sect-text{
    line-height: 1.95;
  }
  .l-sect-core__sect-header{
    display: grid;
    grid-template: auto auto / 114px 1fr;
    gap: 8px 24px;

    > div {
      grid-row: 1 / 3;

      > img {
        width: 100%;
        height: 100%;
        object-fit: contain;
      }
    }

    > p {
      grid-row: 1 / 2;
      font-family: var(--font-family-maru-medium);
      font-weight: var(--font-weight-medium);
      font-size: 26px;
      display: flex;
      align-items: flex-end;
    }

    > :is(h1,h2,h3,h4,h5,h6) {
      grid-row: 2 / 3;
      font-size: 40px;
      display: flex;
      align-items: flex-start;
      font-family: var(--font-family-maru-medium);
      font-weight: var(--font-weight-medium);
    }
  }

  .l-sec-core-subject{
    justify-content: center;
    grid-template-columns: repeat(3, 142px);
    > p{
      aspect-ratio: 1;
      line-height: 120%;
    }
  }

  .c-hr-core{
    width: 558px;
    border: 4px solid #D3ECF5;
  }

  .c-button.\-blue{
    background-color: var(--color-blue-light);
  }

  .l-sect-core__bottom{
    background-color: var(--color-white);
    height: 60px;
    clip-path: circle(1300px at 50% -1245px);
    margin-bottom: -60px;
    position: relative;
    z-index: 1;
  }
}

.l-sect-feature {
  .l-sect-feature__image {
    aspect-ratio: 750 / 589;
    position: relative;
  }

  .l-sect-feature__image-tablet {
    /* animation: fuwafuwa 2000ms 0ms infinite ease-in-out alternate; */
  }

  .l-sect-feature__image-pen {
    object-fit: contain;
    position: absolute;
    bottom :0;
    right: 40px;
    animation: fuwafuwa 2300ms 400ms infinite ease-in-out alternate;
  }

  .l-sect-feature__icon-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

.l-sect-simulation {
  .l-sect-simulation__movie {
    position: relative;

    video {
      aspect-ratio: 750 / 603;
      object-fit: cover;
    }
  }

  .l-sect-simulation__list {
    display: flex;
    flex-direction: column;
    background-color: var(--color-green-white-500);
    padding-block-start: 100px;
    padding-block-end: 80px;
    padding-inline: 60px;
    width: 100%;

    & > li {
      display: flex;
      justify-content: start;
      align-items: center;
      font-family: var(--font-family-maru-medium);
      font-weight: var(--font-weight-medium);
      gap: 36px;
      font-size: 30px;
      padding-block: 40px;
      line-height: 1.5;
      border-bottom: 3px solid #DFF3E4;

      &::before {
        flex-shrink: 0;
        content: '';
        display: block;
        background-image: url('/assets/common/images/youji/icon_check.svg');
        width: 36px;
        height: 36px;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center center;
      }
    }

  }
}

.l-sect-cta {
  overflow: hidden;
  position: relative;

  .l-sect-cta__price {
    background-image: url('/assets/youji/images/sect-cta_bg-shape.webp');
    background-size: 100% 100%;
    display: grid;
    place-items: center;
    padding-top: 128px;
    padding-bottom: 70px;
    color: var(--color-white);
  }

  .l-sect-cta__price-call {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    &::before {
      content: 
    }
  }

  .l-sect-cta__arrow-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 60px;

    & > p {
      font-size: 28px;
      line-height: 1;
      color: var(--color-blue-green);
      font-family: var(--font-family-maru-medium);
      font-weight: var(--font-weight-medium);
    }
  }

  .l-sect-cta__btn-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
    gap: 30px;
  }
}

.l-sect-cta2 {
  font-family: var(--font-family-maru-medium);
  font-weight: var(--font-weight-medium);

  .l-sect-cta2__inner {
    background-color: var(--color-cta-dark-green);
  }
  
  .l-sect-cta2__box {
    border-radius: 90px;
    position: relative;
    width: 100%;
    background-color: var(--color-white);
    display: flex;
    flex-flow: column;
    font-size: 32px;
    text-align: center;
    padding-top: 80px;
    font-family: var(--font-family-maru-medium);
    font-weight: var(--font-weight-medium);

    &::after {
      content: '';
      border-width: 32px 20px 0;
      border-color: #E6F6F5 transparent transparent;
      position: absolute;
      bottom: -32px;
      left: 50%;
      transform: translateX(-50%);
    }
  }

  .l-sect-cta2__box-header {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: #F05096;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    padding: 12px 40px;
    width: 370px;
    font-family: var(--font-family-maru-regular);
    font-weight: var(--font-weight-regular);
  }

  .l-sect-cta2__box-sarani {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 46px;
    line-height: 1;
    gap: 18px;
    color: var(--color-blue-green);
  }

  .l-sect-cta2__box-text {
    font-size: 46px;
    line-height: 1.8;
    letter-spacing: 0.1em;

    & em {
      font-size: 106px;
      padding-inline: 10px;
      line-height: 1;
      font-family: var(--font-family-roboto);
      font-weight: 400;
    }
  }

  .l-sect-cta2__box-footer {
    background: #E6F6F5;
    color: #00A896;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius:  0 0 90px 90px;
    margin-top: 20px;
    padding: 22px;
    font-size: 58px;
    letter-spacing: 0.1em;
    font-weight: var(--font-weight-medium);
  }

  .l-sect-cta2__box-footer-circle {
    font-size: 34px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 2px 0px 2px 4px;
    aspect-ratio: 1 / 1;
    border-radius: 9999px;
    line-height: 1;
    background-color: var(--color-blue-green);
    color: var(--color-white);
  }

  .l-sect-cta2__bottom {
    background-color: var(--color-cta-dark-green);
    height: 60px;
    clip-path: circle(1300px at 50% -1245px);
    margin-bottom: -60px;
  }
}

.l-sect-trial {
  .l-sect-trial__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 72px;
    padding-inline: 48px;
    padding-bottom: 110px;
    align-items: center;
  }
  .l-sect-trial__bottom {
    background-color: var(--color-white);
    height: 60px;
    clip-path: circle(1300px at 50% -1245px);
    margin-bottom: -60px;
  }
}

.l-sect-brochure {
  --_bg-color: var(--color-blue-green-white-500);

  .l-sect-brochure__inner {
    background-color: var(--_bg-color);
  }

  .l-sect-brochure__bg-circle {
    position: relative;
    z-index: 1;

    > img {
      position: relative;
      z-index: 1;
    }

    &::before {
      position: absolute;
      top: 50%;
      left: 50%;
      translate: -50% -50%;
      content: "";
      display: block;
      width: 667px;
      aspect-ratio: 1 / 1;
      background: radial-gradient(circle at 50% 50%, #FFFCF5FF 50%, #FFFCF500 75%);
      z-index: -1;
      border-radius: 9999px;
      overflow: clip;
    }
  }

  .l-sect-brochure__bottom {
    background-color: var(--_bg-color);
    height: 60px;
    clip-path: circle(1300px at 50% -1245px);
    margin-bottom: -60px;
  }
}

.l-sect-inquiry {
  .l-sect-inquiry__inner {
    padding-top: 190px;
    padding-bottom: 60px;
    padding-inline: 45px;
    background-color: var(--color-green);
  }

  .l-sect-inquiry__contents {
    background-color: var(--color-white);
    border-radius: 100px;
    margin-top: 60px;
    padding: 70px 70px 100px;
    position: relative;
    display: grid;
  }
}

/* ========================================
 * Utilities - ユーティリティクラス
 * ======================================== */
.u-text-white {
  color: #fff;
}

.u-text-brown {
  color: var(--color-brown);
}

.u-text-text {
  color: var(--color-text);
}

.u-text-primary {
  color: var(--color-primary);
}

.u-text-green {
  color: var(--color-green);
}

.u-text-blue-green {
  color: var(--color-blue-green);
}

.u-text-yellow-green {
  color: var(--color-yellow-green);
}

.u-text-light-orange {
  color: var(--color-light-orange);
}

.u-text-pink {
  color: var(--color-pink);
}

.u-text-blue-light {
  color: var(--color-blue-light);
}

.u-bg-white {
  background-color: var(--color-white);
}

.u-bg-primary {
  background-color: var(--color-primary);
}

.u-bg-green {
  background-color: var(--color-green);
}

.u-bg-blue-green {
  background-color: var(--color-blue-green);
}

.u-bg-green-light {
  background-color: var(--color-green-light);
}

.u-bg-blue-green-light-500 {
  background-color: var(--color-blue-green-light-500);
}

.u-bg-blue-green-light {
  background-color: var(--color-blue-green-light);
}

.u-bg-blue-green-white {
  background-color: var(--color-blue-green-white);
}

.u-bg-blue-green-white-500 {
  background-color: var(--color-blue-green-white-500);
}

.u-bg-orange {
  background-color: var(--color-orange);
}

.u-bg-orange-white {
  background-color: var(--color-orange-white);
}

.u-bg-yellow-green-light {
  background-color: var(--color-yellow-green-light);
}

.u-bg-yellow-white {
  background-color: var(--color-yellow-white);
}

.u-font-regular {
  font-weight: var(--font-weight-regular);
}

.u-font-normal {
  font-weight: var(--font-weight-regular);
}

.u-font-bold {
  font-weight: var(--font-weight-bold);
}

.u-font-roboto {
  font-family: var(--font-family-roboto);
}

.u-font-maru-regular {
  font-family: var(--font-family-maru-regular);
  font-weight: var(--font-weight-regular);
}

.u-font-maru-medium {
  font-family: var(--font-family-maru-medium);
  font-weight: var(--font-weight-medium);
}

.u-font-maru-debold {
  font-family: var(--font-family-maru-debold);
  font-weight: var(--font-weight-debold);
}

.u-font-maru-bold {
  font-family: var(--font-family-maru-bold);
  font-weight: var(--font-weight-bold);
}

.u-border-blue {
  border-color: #52C3EB;
}

.u-relative {
  position: relative;
}

.u-rounded-10 {
  border-radius: 10px;
}

.u-rounded-15 {
  border-radius: 15px;
}

.u-rounded-20 {
  border-radius: 20px;
}

.u-rounded-40 {
  border-radius: 40px;
}

.u-rounded-72 {
  border-radius: 72px;
}

.u-rounded-full {
  border-radius: 9999px;
}

.u-underline {
  text-decoration: underline;
}

.u-text-20 {
  font-size: 20px;
}

.u-text-24 {
  font-size: 24px;
}

.u-text-26 {
  font-size: 26px;
}

.u-text-28 {
  font-size: 28px;
}

.u-text-30 {
  font-size: 30px;
}

.u-text-32 {
  font-size: 32px;
}

.u-text-34 {
  font-size: 34px;
}

.u-text-36 {
  font-size: 36px;
}

.u-text-40 {
  font-size: 40px;
}

.u-text-46 {
  font-size: 46px;
}

.u-text-48 {
  font-size: 48px;
}

.u-text-52 {
  font-size: 52px;
}

.u-text-56 {
  font-size: 56px;
}

.u-text-64 {
  font-size: 64px;
}

.u-text-72 {
  font-size: 72px;
}

.u-text-78 {
  font-size: 78px;
}

.u-text-80{
  font-size: 80px;
}
