@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: #048ED6;
  --color-green: #11aa32;
  --color-green-light: #edfaf0;
  --color-cta-green: #99CC24;
  --color-cta-dark-green: #35B751;
  --color-blue-green: #00a896;
  --color-blue-green-point: #33B9AB;
  --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;
  }

  &.\-core{
    width: 558px;
  }
}

.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-other1-carousel {
  /* zoomすると計算に不具合が生じるので逆数で解除する */
  zoom: calc(1 / var(--zoom-value));

  .splide__pagination {
    gap: 6px;

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

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

.js-infinity-slider {
  zoom: calc(1 / var(--zoom-value));
}

/* ========================================
 * 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: -110px;
    width: 100%;

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

      img {
        width: 100%;
      }
    }
  }

  .l-sect-fv__cloud-copy {
    position: relative;
    z-index: 1;
    padding-inline: 50px;
    font-size: 50px;
    margin-top: 20px;
    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: clamp(-40px, calc(-1 * (30 / 1440) * 100vw ), -20px);
    }
  }

  .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;
    font-weight: var(--font-weight-debold);

    @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);
      }
    }
    &.\-02 {
      font-size: 64px;
      font-weight: var(--font-weight-debold);
      color: var(--color-primary);
      margin-top: 2px;

      @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);

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

  .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: -60px;
    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-debold);
      font-weight: var(--font-weight-bold);
      line-height: 1.2;
  
      &.\-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-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-points1 ,
.l-sect-points {
  position: relative;
  
  &.\-03{
    position: relative;
    & .l-sect-points__inner{
      background-color: var(--color--white);
    }
  }

  .l-sect-points__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-points__inner {
    background-color: var(--color-blue-green-white);
  }

  .l-sect-points__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-points__sect-inner {
    width: 100%;
    height: 100%;
    padding-top: 40px;
    position: relative;
  }

  .l-sect-points__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);
    }

    &.\-03{
      grid-template: auto / 114px 1fr;
      align-items: center;
      > :is(h1,h2,h3,h4,h5,h6) {
        grid-row: 1/4;
      }
    }
  }

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

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

  .l-sect-points__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-points__bottom {
    background-color: var(--color-blue-green-white);;
    height: 60px;
    clip-path: circle(1300px at 50% -1245px);
    margin-bottom: -60px;
    position: relative;
    z-index: 1;
    &.\-03{
      background-color: var(--color-white);
    }
  }

  .l-sect-points__sect__list{
    & > 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;
      }
      &:last-of-type{
        border-bottom: none;
      }
    }
    &.\-03{
      & > li::before{
        background-image: url(/assets/common/images/youji/icon_check_blue-green.svg);
      }
    }
  }
  .c-hr-points{
    border: 4px solid rgba(17, 170, 50, .07);
  }

}


.l-sect-points1 {
  position: relative;

  .l-sect-points1__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-points1__inner {
    padding-top: 200px;
    background-color: var(--color-blue-green-white);
  }

  .l-sect-points1__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-points1__sect-inner {
    width: 100%;
    height: 100%;
    padding-top: 40px;
    position: relative;
  }

  .l-sect-points1__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-sect-points1__sect-text {
    font-size: 28px;
    line-height: 1.95;

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

  .l-sect-points1__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-points1__bottom {
    background-color: var(--color-green-white-500);
    height: 60px;
    clip-path: circle(1300px at 50% -1245px);
    margin-bottom: -60px;
    position: relative;
    z-index: 1;
  }

}

.l-sect-points2 {

  .l-sect-points2__inner {
    padding-top: 200px;
    background-color: var(--color-green-white-500);
  }

  .l-sect-points2__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-points2__sect-inner {
    width: 100%;
    height: 100%;
    padding-top: 40px;
    position: relative;
  }

  .l-sect-points2__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-sect-points2__sect-text {
    font-size: 28px;
    line-height: 1.95;

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

  .l-sect-points2__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-points2__bottom {
    background-color: var(--color-green-white-500);
    height: 60px;
    clip-path: circle(1300px at 50% -1245px);
    margin-bottom: -60px;
    position: relative;
    z-index: 1;
  }

}

.l-sect-other1 {
  --_bg-color: var(--color-green-white-500);
  position: relative;
  z-index: 2;

  .l-sect-other1__head {
    background-color: var(--color-white);
    width: 100%;
    height: 60px;
    clip-path: circle(1300px at 50% -1245px);
    margin-bottom: -60px;
    position: absolute;
    top: 0;
    left: 0;
  }

  .l-sect-other1__inner {
    padding-top: 200px;
    padding-bottom: 100px;
    background-color: var(--_bg-color);
  }

  .l-sect-other1__carousel {
    padding-bottom: 30px;

    .l-sect-other1__carousel-slide {

      .l-sect-other1__carousel-slide-inner {
        display: grid;
        gap: clamp(20px, calc((40 / 1440) * 100vw), 40px);
      }

      .l-sect-other1__carousel-header {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: clamp(10px, calc((20 / 1440) * 100vw), 20px);
      }

      .l-sect-other1__carousel-icon {
        width: clamp(35px, calc((70 / 1440) * 100vw), 70px);
        aspect-ratio: 1 / 1;

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

      .l-sect-other1__carousel-title {
        font-size: clamp(18px, calc((36 / 1440) * 100vw), 36px);
        font-family: var(--font-family-maru-medium);
        font-weight: var(--font-weight-medium);
        line-height: 1;
      }

      .l-sect-other1__carousel-image {
        aspect-ratio: 562 / 396;

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

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

.l-sect-coatre {
  .l-sect-coatre__inner {
    padding-top: 200px;
    background-color: var(--color-green-white-500);
  }
}

.l-sect-safety {
  .l-sect-safety__inner {
    padding-top: 180px;
    padding-bottom: 180px;
    padding-inline: 45px;
    background-color: var(--color-green-light);
  }
  .l-sect-safety__bottom {
    background-color: var(--color-green-light);
    height: 60px;
    clip-path: circle(1300px at 50% -1245px);
    margin-bottom: -60px;
  }
  .l-sect-safety__grid {
    margin-top: 60px;
    display: grid;
    gap: 40px;
  }
  .l-sect-safety__item {
    background-color: var(--color-white);
    border-radius: 80px;
    padding: 72px 52px;

    & > details {
      & > summary {
        display: flex;
        align-items: center;
        gap: 24px;
        list-style: none;
        cursor: pointer;
        margin-block: -72px;
        padding-block: 72px;
        margin-inline: -52px;
        padding-inline: 52px;

        &::-webkit-details-marker {
          display: none;
        }

        & > :is(h1,h2,h3,h4,h5,h6) {
          font-size: 32px;
          line-height: 1.5;
          flex-grow: 1;
        }

        &::after {
          content: '';
          display: block;
          flex-shrink: 0;
          width: 45px;
          height: 45px;
          align-self: center;
          background: url('/assets/youji/images/icon_collapsed.svg') no-repeat center center / contain;
        }
      }

      & > div {
        display: flex;
        gap: 24px;
        transition:
          max-height 500ms,
          height 500ms,
          opacity 500ms,
          content-visibility 500ms allow-discrete;

        max-height: 0;
        height: 0;
        opacity: 0;
        overflow: clip;
        border-top: 2px solid #eef9f1;
        margin-top: 60px;
        padding-top: 52px;
        line-height: 2;
      }

      &[open] {
        & > summary::after {
          background: url('/assets/youji/images/icon_expanded.svg') no-repeat center center / contain;
        }

        & > div {
          max-height: 0;
          height: auto;
          opacity: 1;
        }
      }

      @supports (interpolate-size: allow-keywords) {
        :root {
          interpolate-size: allow-keywords; /* height:0（数値型） → auto（文字型） のアニメーションを可能にするための指定 */
        }
        &[open] > div {
          max-height: 2000px;
          height: auto;
        }
      }

      /* height:0→autoへのアニメーションが対応していない場合は、固定値にアニメーションさせる */
      @supports not (interpolate-size: allow-keywords) {
        &[open] > div {
          max-height: 2000px;
          overflow-y: auto;
        }
      }
    }
  }
}

.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-weight: var(--font-weight-bold);
    }
  }

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

.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;
  }
}

.l-sect-core{
  position: relative;

  .l-sect-core__inner{
    background-color: var(--color-white);
    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-sect-core__sect {
    background-color: var(--color-blue-green-white);
  }

  .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: rgba(20, 175, 231, .07);
    height: 60px;
    clip-path: circle(1300px at 50% -1245px);
    margin-bottom: -60px;
    position: relative;
    z-index: 1;
  }
  .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-other2 {
  --_bg-color: var(--color-blue-green-white);

  .l-sect-other2__inner {
    padding-top: 160px;
    padding-bottom: 100px;
    background-color: var(--_bg-color);
  }

  .l-sect-other2__card {
    background-color: var(--color-white);
    border-radius: 70px;
    overflow: hidden;
    background-color: var(--color-white);

    .l-sect-other2__card-header {
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: var(--color-blue-green-point);
      color: var(--color-white);
      text-align: center;
      gap: 16px;
      width: 100%;
      padding: 16px;
      font-family: var(--font-family-maru-debold);
      font-weight: var(--font-weight-debold);
      font-size: 28px;

      & > span:nth-child(2) {
        font-size: 46px;
        font-weight: var(--font-family-roboto);
        font-weight: var(--font-weight-bold);
      }
    }

    .l-sect-other2__card-body {
      padding: 40px 36px 80px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 40px;

      & > hgroup {
        text-align: center;

        & > p {
          color: var(--color-blue-green-point);
          font-size: 26px;
          line-height: 2;
          font-family: var(--font-family-maru-medium);
          font-weight: var(--font-weight-medium);
        }
        & > :is(h1,h2,h3,h4,h5,h6) {
          font-size: 34px;
          line-height: 1.5;
          font-family: var(--font-family-maru-medium);
          font-weight: var(--font-weight-medium);
        }
      }

      & > p {
        /* font-size: 26px;
        line-height: 2; */
      }
    }
  }

  .l-sect-other2__clip {
    border-color: #52C3EB;
    border-width: 2px;
    border-radius: 54px;
    overflow: clip
  }

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

.l-sect-test {
  .l-sect-test__carousel {

    .l-sect-test__carousel-slide {
      > img {
        width: 100%;
        height: 100%;
        aspect-ratio: 1 / 1;
        object-fit: contain;
      }
    }
  }

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

.l-sect-safety {
  .l-sect-safety__inner {
    padding-top: 180px;
    padding-bottom: 180px;
    padding-inline: 45px;
    background-color: var(--color-green-light);
  }
  .l-sect-safety__bottom {
    background-color: var(--color-green-light);
    height: 60px;
    clip-path: circle(1300px at 50% -1245px);
    margin-bottom: -60px;
  }
  .l-sect-safety__grid {
    margin-top: 60px;
    display: grid;
    gap: 40px;
  }
  .l-sect-safety__item {
    background-color: var(--color-white);
    border-radius: 80px;
    padding: 72px 52px;

    & > details {
      & > summary {
        display: flex;
        align-items: center;
        gap: 24px;
        list-style: none;
        cursor: pointer;
        margin-block: -72px;
        padding-block: 72px;
        margin-inline: -52px;
        padding-inline: 52px;

        &::-webkit-details-marker {
          display: none;
        }

        & > :is(h1,h2,h3,h4,h5,h6) {
          font-size: 32px;
          line-height: 1.5;
          flex-grow: 1;
        }

        &::after {
          content: '';
          display: block;
          flex-shrink: 0;
          width: 45px;
          height: 45px;
          align-self: center;
          background: url('/assets/youji/images/icon_collapsed.svg') no-repeat center center / contain;
        }
      }

      & > div {
        display: flex;
        gap: 24px;
        transition:
          max-height 500ms,
          height 500ms,
          opacity 500ms,
          content-visibility 500ms allow-discrete;

        max-height: 0;
        height: 0;
        opacity: 0;
        overflow: clip;
        border-top: 2px solid #eef9f1;
        margin-top: 60px;
        padding-top: 52px;
        line-height: 2;
      }

      &[open] {
        & > summary::after {
          background: url('/assets/youji/images/icon_expanded.svg') no-repeat center center / contain;
        }

        & > div {
          max-height: 0;
          height: auto;
          opacity: 1;
        }
      }

      @supports (interpolate-size: allow-keywords) {
        :root {
          interpolate-size: allow-keywords; /* height:0（数値型） → auto（文字型） のアニメーションを可能にするための指定 */
        }
        &[open] > div {
          max-height: 2000px;
          height: auto;
        }
      }

      /* height:0→autoへのアニメーションが対応していない場合は、固定値にアニメーションさせる */
      @supports not (interpolate-size: allow-keywords) {
        &[open] > div {
          max-height: 2000px;
          overflow-y: auto;
        }
      }
    }
  }
}

/* ========================================
 * 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-blue-green-point {
  color: var(--color-blue-green-point);
}

.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-orange {
  color: var(--color-orange);
}

.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-bg-blue-light {
  background-color: var(--color-blue-light);
}

.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-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;
}
