.mainvisual {
  max-width: 100%;
  overflow: hidden;
  ._inner {
    height: 720px;
    position: relative;
    z-index: 1;
    max-width: 2200px;
    margin: 0 auto;
    @media (max-width: 768px) {
      height: auto;
    }
  }
  ._container {
    max-width: 1200px;
    height: 100%;
    display: grid;
    align-items: center;
    margin: 0 auto;
    padding: 0 20px;
  }
  ._content {
    padding-top: 40px;
    @media (max-width: 768px) {
      padding-top: 80px;
    }
    h1 {
      font-size: min(9vw, 56px);
      font-weight: 400;
      line-height: 1.4;
      letter-spacing: 0.16em;
      color: var(--color-gray);
      margin-block: 16px;
      ._group {
        position: relative;
        sup {
          font-size: 0.2em;
          position: absolute;
          top: 1em;
          right: 0;
          transform: translateX(50%);
        }
      }
    }
    ._segment {
      font-size: 18px;
      font-weight: 500;
      line-height: 1.25;
      letter-spacing: 0.08em;
      border-left: 3px solid var(--color-primary);
      padding-left: 12px;
      @media (max-width: 768px) {
        font-size: 16px;
        line-height: 1.5;
      }
    }
    ._description {
      font-size: 18px;
      font-weight: 400;
      line-height: 2;
      letter-spacing: 0.12em;
      @media (max-width: 768px) {
        font-size: 16px;
      }
    }
    ._buttonGroup {
      margin-top: 32px;
      display: flex;
      gap: 12px;
      @media (max-width: 768px) {
        flex-direction: column;
        margin-top: 16px;
      }
      ._group {
        text-align: center;
        ._shoulder {
          font-size: 14px;
          font-weight: bold;
          line-height: 1.35;
          letter-spacing: 0.04em;
          color: var(--color-primary);
          margin-bottom: 8px;
          &::before {
            content: '＼ ';
          }
          &::after {
            content: ' ／';
          }
        }
      }
    }
  }
  ._imageBg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    @media (max-width: 768px) {
      top: auto;
      display: block;
      margin-inline: -20px;
      margin-block: -52vw;
      width: calc(100% + 40px);
    }
    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      @media (max-width: 768px) {
        height: 170vw;
      }
    }
  }
  ._image {
    z-index: -1;
    position: absolute;
    top: 50%;
    transform: translate(-4%, -50%);
    left: 50%;
    width: 720px;
    height: 560px;
    @media (max-width: 768px) {
      width: 100%;
      height: 80vw;
      position: relative;
      top: auto;
      left: auto;
      transform: translate(0, 0);
    }
    img {
      position: absolute;
      transform: scale(1.05);
      filter: blur(6px);
      opacity: 0;
      transition-property: transform, opacity, filter;
      transition-duration: .8s;
      transition-timing-function: ease-in-out;
      &.is-active {
        transform: scale(1);
        opacity: 1;
        filter: blur(0);
      }
    }
    ._main {
      width: 546px;
      height: auto;
      top: 80px;
      left: 10%;
      @media (max-width: 768px) {
        width: 80%;
        top: 30px;
      }
    }
    ._sub01 {
      width: 320px;
      height: auto;
      left: 0;
      bottom: 0;
      @media (max-width: 768px) {
        width: 60%;
        bottom: 10px;
        left: -10px;
      }
    }
    ._sub02 {
      width: 200px;
      height: auto;
      top: 10px;
      right: 10px;
      @media (max-width: 768px) {
        width: 40%;
        top: -10px;
        right: 0;
      }
    }
  }
  ._note {
    position: absolute;
    bottom: 8px;
    left: calc(50% - 8px);
    transform: translate(-50%, 0);
    font-size: 12px;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0;
    width: 100%;
    max-width: 1160px;
    text-align: right;
    @media (max-width: 768px) {
      position: static;
      margin-top: 16px;
      transform: translate(0, 0);
      text-align: left;
    }
  }
}

.section-problem {
  ._problem {
    ._item {
      background-color: var(--color-gray-xlight);
      border-radius: 24px;
      padding: 16px 24px 24px;
      img {
        width: 100%;
        height: auto;
      }
      ._title {
        font-size: 20px;
        line-height: 1.75;
        margin-top: 12px;
      }
    }
  }
  ._understanding {
    position: relative;
    background-color: var(--color-gray-xlight);
    border-radius: 24px;
    padding: 40px 40px 32px;
    margin-top: 64px;
    @media (max-width: 768px) {
      padding: 40px 20px 32px;
    }
    ._icon {
      position: absolute;
      top: 0;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background-color: var(--color-gray-xlight);
      display: grid;
      place-items: center;
    }
    ._content {
      ._textGroup {
        display: flex;
        gap: 20px;
        @media (max-width: 768px) {
          flex-direction: column;
          gap: 12px;
        }
      }
      ._title {
        font-size: 20px;
        line-height: 1.75;
        margin: 0;
        white-space: nowrap;
        @media (max-width: 768px) {
          white-space: normal;
        }
      }
      ._description {
        font-size: 16px;
        line-height: 1.75;
        padding-left: 20px;
        border-left: 1px solid var(--color-gray-light);
        @media (max-width: 768px) {
          padding-left: 0;
          border-left: none;
        }
      }
      ._list {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 16px;
        margin-top: 24px;
        @media (max-width: 768px) {
          grid-template-columns: repeat(3, 1fr);
        }
        @media (max-width: 576px) {
          display: flex;
          flex-wrap: wrap;
          justify-content: center;
        }
        ._item {
          display: flex;
          justify-content: center;
          align-items: center;
          border-radius: 50%;
          border: 1px solid currentColor;
          @media (max-width: 768px) {
            flex: 0 0 calc(50% - 8px);
          }
          &::before {
            display: block;
            content: '';
            padding-top: 100%;
          }
          ._text {
            text-align: center;
            font-weight: bold;
            line-height: 1.5;
          }
        }
      }
    }
  }
}

.section-suggestion {
  ._range {
    position: relative;
    padding: 48px 20px 32px;
    margin-top: 80px;
    display: flex;
    background-color: #fff;
    border-radius: 24px;
    @media (max-width: 768px) {
      flex-direction: column;
      margin-top: 64px;
      padding: 20px 20px 32px;
    }
    ._logo {
      position: absolute;
      background-color: #fff;
      border-radius: 100px;
      padding: 20px 40px;
      margin: 0;
      left: 50%;
      top: 0;
      transform: translate(-50%,-50%);
      width: max-content;
      img {
        width: 160px;
        @media (max-width: 768px) {
          width: 140px;
        }
      }
    }
    ._item {
      padding: 24px 20px;
      background-color: var(--color-gray-xlight);
      border-radius: 24px;
      ._title {
        font-size: 20px;
        font-weight: bold;
        margin-block: 16px 12px;
        @media (max-width: 768px) {
          font-size: 18px;
        }
      }
      &._accent {
        background-color: #fff;
        @media (max-width: 768px) {
          padding-inline: 0;
        }
        ._title {
          color: var(--color-primary);
        }
      }
    }
  }
}

.section-feature {
  ._sectionDescription {
    font-size: 18px;
    font-weight: 500;
    sup {
      font-size: 0.5em;
    }
  }
  ._note {
    font-size: 12px;
    letter-spacing: 0;
    margin-top: 16px;
    text-align: center;
  }
  ._feature {
    margin-top: 56px;
    ._item {
      background-color: var(--color-primary);
      border-radius: 24px;
      padding: 32px 24px 40px;
      height: 100%;
      ._title {
        font-size: 20px;
        font-weight: bold;
        color: #fff;
        margin-block: 12px 4px;
        text-align: center;
        @media (max-width: 768px) {
          text-align: left;
        }
      }
      ._description {
        color: #fff;
      }
    }
  }
  ._arrow {
    margin-block: 40px;
    text-align: center;
  }
  ._result {
    font-size: 24px;
    font-weight: bold;
    color: var(--color-primary);
    text-align: center;
    @media (max-width: 768px) {
      text-align: left;
      font-size: 20px;
    }
  }
}

.section-case {
  ._case {
    border: 1px solid var(--color-gray-light);
    border-radius: 24px;
    padding: 32px 24px;
    @media (max-width: 768px) {
      padding: 24px 20px;
    }
    ._header {
      display: flex;
      gap: 24px;
      align-items: flex-start;
      padding-bottom: 24px;
      border-bottom: 1px solid var(--color-gray-light);
      @media (max-width: 768px) {
        flex-direction: column;
      }
      ._image {
        flex: 0 0 285px;
        aspect-ratio: 285 / 160;
        @media (max-width: 768px) {
          flex: 0 0 100%;
        }
        img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          border-radius: 12px;
        }
      }
      ._content {
        ._title {
          font-size: 20px;
          margin: 0;
        }
        ._tag {
          font-size: 14px;
          color: #fff;
          background-color: var(--color-primary);
          border-radius: 2px;
          padding: 4px 8px;
          margin-bottom: 12px;
          line-height: 1;
          margin-top: 8px;
          font-weight: 500;
          width: fit-content;
        }
        ._list {
          margin-top: 8px;
          dt, dd {
            font-size: 14px;
          }
        }
      }
    }
    ._body {
      padding-top: 24px;
      ._tag {
        font-size: 14px;
        color: var(--color-primary);
        background-color: var(--color-primary-xlight);
        border-radius: 2px;
        padding: 4px 8px;
        line-height: 1;
        font-weight: 500;
        margin-bottom: 16px;
        width: fit-content;
      }
      ._comment {
        p {
          font-size: 16px;
          font-weight: 500;
          margin-top: 16px;
        }
      }
    }
    ._promotion {
      margin-top: 32px;
      display: grid;
      grid-template-areas:
      'image shoulder'
      'image title'
      'image button';
      grid-template-rows: max-content max-content 1fr;
      align-items: flex-start;
      column-gap: 24px;
      @media (max-width: 768px) {
        grid-template-areas:
        'shoulder'
        'image'
        'title'
        'button';
      }
      ._image {
        grid-area: image;
        width: 344px;
        height: auto;
        aspect-ratio: 1200 / 628;
        @media (max-width: 768px) {
          width: auto;
          margin-bottom: 16px;
        }
        img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          border-radius: 12px;
        }
      }
      ._shoulder {
        grid-area: shoulder;
        font-size: 16px;
        font-weight: bold;
        color: var(--color-primary);
        margin-bottom: 8px;
        @media (max-width: 768px) {
          font-size: 14px;
          text-align: center;
          margin-bottom: 16px;
        }
        &::before {
          content: '＼ ';
          speak: none;
        }
        &::after {
          content: ' ／';
          speak: none;
        }
      }
      ._title {
        grid-area: title;
        font-size: 20px;
        margin-block: 0;
        span {
          font-size: 16px;
          font-weight: 500;
          display: block;
        }
      }
      ._button {
        grid-area: button;
        margin-top: auto;
        @media (max-width: 768px) {
          margin-top: 24px;
        }
        .button {
          letter-spacing: 0.04em;
          padding: 12px 24px;
          @media (max-width: 768px) {
            padding: 12px;
            font-size: 14px;
          }
        }
      }
    }
  }
}

.section-price {
  ._sectionDescription {
    font-weight: bold;
    text-align: center;
    margin-block: -32px 32px;
    font-size: 24px;
    color: var(--color-primary);
    @media (max-width: 768px) {
      font-size: 20px;
    }
  }
  ._price {
    ._header {
      ._list {
        display: flex;
        flex-wrap: wrap;
        @media (max-width: 768px) {
          row-gap: 20px;
        }
        ._item {
          @media (min-width: 769px) {
            flex: 0 0 25%;
            & + ._item {
              border-left: 1px solid var(--color-gray-light);
            }
          }
          @media (max-width: 768px) {
            flex: 0 0 50%;
            &:nth-child(even) {
              border-left: 1px solid var(--color-gray-light);
            }
          }
          dt, dd {
            font-size: 20px;
            font-weight: bold;
            text-align: center;
            @media (max-width: 768px) {
              font-size: 18px;
            }
          }
          dd {
            span {
              font-size: 80px;
              line-height: 1;
              color: var(--color-primary);
            }
            small {
              display: block;
              font-size: 12px;
              font-weight: 400;
            }
          }
        }
      }
    }
    ._body {
      margin-block: 32px 40px;
      ._list {
        display: flex;
        flex-wrap: wrap;
        column-gap: 32px;
        row-gap: 20px;
        @media (max-width: 768px) {
          column-gap: 16px;
          row-gap: 8px;
        }
        ._item {
          font-size: 18px;
          font-weight: bold;
          display: flex;
          align-items: center;
          gap: 8px;
          &::before {
            content: '';
            display: block;
            width: 24px;
            height: 24px;
            background-image: url(../img/second/combination/icon-check.svg);
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
          }
        }
      }
    }
    ._footer {
      padding: 32px 24px;
      background-color: var(--color-primary);
      border-radius: 24px;
      display: flex;
      gap: 32px;
      @media (max-width: 768px) {
        flex-direction: column;
        align-items: center;
        gap: 16px;
      }
      ._icon {
        @media (max-width: 768px) {
          width: 60px;
          height: 60px;
        }
      }
      ._content {
        ._title {
          font-size: 20px;
          font-weight: bold;
          color: #fff;
        }
        ._description {
          margin-top: 8px;
          font-weight: 500;
          color: #fff;
          a {
            color: #fff;
            text-decoration: underline;
          }
        }
      }
    }
  }
}

.section-scancenter {
  ._container {
    background-color: var(--color-primary-xlight);
    border-radius: 24px;
    padding: 48px 24px;
    @media (max-width: 768px) {
      margin-inline: 20px;
      padding: 48px 20px;
    }
  }
  ._image {
    display: block;
    margin-block: 40px;
  }
  ._result {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    @media (max-width: 768px) {
      text-align: left;
      font-size: 16px;
    }
    p + p {
      margin-top: 24px;
      @media (max-width: 768px) {
        margin-top: 16px;
      }
    }
  }
  ._button {
    text-align: center;
    margin-top: 40px;
  }
}

.sticky-cta {
  ._button {
    padding: 12px 16px 16px;
    min-width: 320px;
    font-weight: bold;
    ._shoulder {
      display: block;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0;
      color: var(--color-primary);
      line-height: 1.7;
      &::before {
        content: '＼ ';
      }
      &::after {
        content: ' ／';
      }
    }
    &._yellow {
      border: 2px solid var(--color-primary);
      ._shoulder {
        color: var(--color-gray);
      }
    }
    &._outlineBlue {
      @media (max-width: 768px) {
        display: none;
      }
    }
  }
}