@charset "utf-8";

:root {
  --fg-color: #333;
  --accent-color: #327ed3;
  --font-alphabet: "Jost", "Noto Sans JP", "Helvetica Neue", "Helvetica",
    "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo",
    sans-serif;
  --font-gothic: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans",
    "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  width: 100%;
  font-size: min(18px, 3vw);
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  color: var(--fg-color);
  font-family: var(--font-gothic);
  font-weight: 500;
  line-height: 1.5;
  opacity: 0;
  animation: anim-fadein 1s ease-out 0s forwards;
}

@keyframes anim-fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
  vertical-align: middle;
}

a {
  color: var(--fg-color);
  text-decoration: none;
  transition: opacity 0.5s ease-out;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.5;
  }
}

section {
  position: relative;
}

@media (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}

@media (min-width: 768.01px) {
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
}

/**
 * SP用
 */
@media (max-width: 768px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    height: 68px;
    background: #fff;
    z-index: 9;
  }
  header .header-wrap {
    margin: 0 auto;
    width: 100%;
    max-width: 1366px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  header .header-logo {
    margin: 0;
    width: 40%;
    height: auto;
    aspect-ratio: 200 / 48;
  }
  header .header-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  header .header-menu {
    display: none;
  }

  main {
    margin: 0 auto;
    width: 100%;
  }

  #mv {
    margin: 68px auto 0;
    width: 100%;
    height: auto;
    aspect-ratio: 2732 / 1088;
  }
  #mv .mv-bg {
    margin: 0 auto;
    width: 100%;
    height: 250%;
  }
  #mv .mv-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  #mv .mv-fg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    max-width: 1149px;
    height: auto;
    max-height: 90%;
    translate: -50% -50%;
  }
  #mv .mv-fg > figure {
    width: 100%;
    height: auto;
    max-height: 100%;
  }
  #mv .mv-fg > figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  #mv .mv-fg > figure img.pc {
    display: none;
  }
  #mv .mv-btn1 {
    position: absolute;
    left: 5%;
    bottom: 8%;
    display: grid;
    place-items: center;
    width: 40%;
    height: auto;
    aspect-ratio: 228 / 57;
    color: #fff;
    font-size: calc(45 * min(90vw, 1149px) / 1149);
    background: #f28757;
    border-radius: 4em;
  }
  #mv .mv-btn2 {
    position: absolute;
    left: 55%;
    bottom: 8%;
    display: grid;
    place-items: center;
    width: 40%;
    height: auto;
    aspect-ratio: 228 / 57;
    font-size: calc(45 * min(90vw, 1149px) / 1149);
    background: #fff;
    border: 1px solid #92b2d6;
    border-radius: 4em;
  }

  #problem {
    margin: 0 auto;
    padding: 8vw 0;
    width: 100%;
  }
  #problem h2 {
    margin: 0 auto;
    width: 90%;
    font-size: 6vw;
    font-weight: 900;
    text-align: center;
    line-height: calc(50 / 36);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #problem h2::before {
    content: "";
    width: auto;
    height: 1px;
    background: var(--fg-color);
    flex: 1 0 auto;
  }
  #problem h2::after {
    content: "";
    width: auto;
    height: 1px;
    background: var(--fg-color);
    flex: 1 0 auto;
  }
  #problem h2 span span:nth-of-type(1) {
    color: var(--accent-color);
    font-size: 140%;
    font-family: var(--font-alphabet);
    font-weight: 700;
  }
  #problem h2 span span:nth-of-type(2) {
    color: var(--accent-color);
  }
  #problem p {
    margin: 1em auto;
    width: 90%;
    font-size: 3.6vw;
    font-weight: 400;
    text-align: center;
  }
  #problem .problem-grid {
    margin: 4vw auto 0;
    padding: 0;
    width: 90%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4vw 0;
  }
  #problem .problem-item {
    width: 100%;
    padding: 10px 20px 20px;
    border: 2px solid var(--accent-color);
  }
  #problem .problem-item h3 {
    font-size: 4.8vw;
    font-weight: 700;
    text-align: left;
    line-height: calc(50 / 20);
    border-bottom: 2px solid var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0 8px;
  }
  #problem .problem-item h3::before {
    content: "";
    display: block;
    width: 1.5em;
    height: auto;
    aspect-ratio: 1 / 1;
    background: url(../images/top-icon1.svg) no-repeat center / contain;
  }
  #problem .problem-item:nth-child(2) h3::before {
    background: url(../images/top-icon2.svg) no-repeat center / contain;
  }
  #problem .problem-item:nth-child(3) h3::before {
    background: url(../images/top-icon3.svg) no-repeat center / contain;
  }
  #problem .problem-item p {
    font-size: 3.6vw;
    font-weight: 400;
    text-align: center;
    line-height: calc(24 / 15);
  }
  #problem .problem-item .arrow-d {
    margin: 1vw auto;
    width: 8vw;
    height: auto;
    aspect-ratio: 34 / 26;
    background: url(../images/top-arrow-d.svg) no-repeat center / contain;
  }
  #problem .problem-item h4 {
    color: var(--accent-color);
    font-size: 3.6vw;
    font-weight: 700;
    text-align: center;
    line-height: calc(24 / 15);
  }
  #problem .problem-movie {
    margin: 12vw auto;
    width: 100%;
    height: auto;
    aspect-ratio: 1473 / 837;
  }
  #problem .problem-movie iframe {
    display: block;
    width: 100%;
    height: 100%;
  }

  #revolution {
    margin: 0 auto;
    padding: 0 0 24vw;
    width: 100%;
  }
  #revolution h2 {
    margin: 0 auto;
    padding: 1em 1em 0;
    width: 100%;
    color: var(--accent-color);
    font-size: 6vw;
    font-weight: 900;
    text-align: center;
    line-height: calc(50 / 36);
    background: #e7f0fb;
  }
  #revolution > p {
    margin: 0 auto;
    padding: 0 0 2em;
    width: 100%;
    font-size: 3.6vw;
    font-weight: 400;
    text-align: center;
    background: #e7f0fb;
  }
  #revolution .revolution-triangle {
    margin: 0 auto;
    width: 100%;
    height: auto;
    aspect-ratio: 20 / 1;
    background: #e7f0fb;
    clip-path: polygon(40% 0, 60% 0, 50% 100%);
  }
  #revolution .revolution-grid {
    margin: 4vw auto 0;
    padding: 0;
    width: 90%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4vw 0;
  }
  #revolution .revolution-item {
    width: 100%;
    padding: 0 2vw;
  }
  #revolution .revolution-item figure {
    margin: 0 auto;
    width: 65%;
    height: auto;
    aspect-ratio: 1 / 1;
  }
  #revolution .revolution-item figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  #revolution .revolution-item h3 {
    color: var(--accent-color);
    font-size: 4vw;
    font-weight: 700;
    text-align: center;
    line-height: calc(30 / 20);
  }
  #revolution .revolution-item p {
    margin: 0.5em 0 0;
    font-size: 3.6vw;
    font-weight: 400;
    text-align: left;
    line-height: calc(24 / 15);
  }

  #step {
    margin: 0 auto;
    padding: 12vw 0;
    width: 100%;
    background: #e7f0fb;
  }
  #step h2 {
    position: absolute;
    top: 0;
    left: 50%;
    padding: 0.2em 1em;
    width: max-content;
    max-width: 90%;
    color: #fff;
    font-size: 6vw;
    font-weight: 900;
    text-align: center;
    line-height: calc(50 / 36);
    background: var(--accent-color);
    border-radius: 4em;
    translate: -50% -50%;
  }
  #step > p {
    margin: 0 auto;
    padding: 0;
    width: 100%;
    font-size: 3.6vw;
    font-weight: 400;
    text-align: center;
  }
  #step .step-item {
    margin: 0 auto;
    padding: 4vw 0;
    width: 90%;
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 0;
  }
  #step .step-item + .step-item {
    border-top: 1px solid var(--accent-color);
  }
  #step .step-item div:nth-child(1) {
    color: var(--accent-color);
    font-size: 3.6vw;
    font-weight: 700;
    font-family: var(--font-alphabet);
  }
  #step .step-item div:nth-child(1) span:nth-child(1) {
  }
  #step .step-item div:nth-child(1) span:nth-child(2) {
    display: inline-block;
    font-size: 250%;
    translate: 10% 5%;
  }
  #step .step-item h3 {
    color: var(--accent-color);
    font-size: 4vw;
    font-weight: 900;
    text-align: left;
  }
  #step .step-item p {
    margin: 0 auto;
    padding: 0;
    width: 100%;
    font-size: 3.6vw;
    font-weight: 400;
    text-align: left;
  }

  #result {
    margin: 0 auto;
    padding: 12vw 0;
    width: 100%;
  }
  #result h2 {
    margin: 0 auto;
    padding: 0;
    width: 100%;
    color: var(--accent-color);
    font-size: 6vw;
    font-weight: 900;
    text-align: center;
    line-height: calc(50 / 36);
  }
  #result > p {
    margin: 0.5em auto 0;
    padding: 0;
    width: 100%;
    font-size: 3.6vw;
    font-weight: 400;
    text-align: center;
  }
  #result .result-grid {
    margin: 8vw auto 0;
    padding: 0;
    width: 90%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4vw 4vw;
  }
  #result .result-item {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    border: 1px solid #327ed3;
    border-radius: 100%;
    line-height: 1;
    white-space: nowrap;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  #result .result-item p {
    margin: 0.5em 0 0;
    padding: 0;
    width: 100%;
    height: 3em;
    font-size: 3.6vw;
    font-weight: 400;
    text-align: center;
    line-height: 1.5;
    display: grid;
    place-items: center;
  }
  #result .result-item:nth-child(1) div:nth-child(1) {
    color: #327ed3;
    font-size: 10vw;
    text-align: center;
    letter-spacing: -0.015em;
  }
  #result .result-item:nth-child(1) div:nth-child(1) span:nth-child(1) {
    font-family: var(--font-alphabet);
    font-weight: 700;
  }
  #result .result-item:nth-child(1) div:nth-child(1) span:nth-child(2) {
    font-size: 33%;
    font-weight: 900;
  }
  #result .result-item:nth-child(1) h3 {
    margin: 0.5em 0 0;
    color: #327ed3;
    font-size: 3.6vw;
    font-weight: 900;
    text-align: center;
  }
  #result .result-item:nth-child(2) {
    border: 1px solid #147eaf;
  }
  #result .result-item:nth-child(2) div:nth-child(1) {
    color: #147eaf;
    font-size: 10vw;
    text-align: center;
    letter-spacing: -0.015em;
  }
  #result .result-item:nth-child(2) div:nth-child(1) span:nth-child(1) {
    font-family: var(--font-alphabet);
    font-weight: 700;
  }
  #result .result-item:nth-child(2) div:nth-child(1) span:nth-child(2) {
    font-size: 33%;
    font-weight: 900;
  }
  #result .result-item:nth-child(2) h3 {
    margin: 0.5em 0 0;
    color: #147eaf;
    font-size: 3.6vw;
    font-weight: 900;
    text-align: center;
  }
  #result .result-item:nth-child(3) {
    border: 1px solid #469fd1;
  }
  #result .result-item:nth-child(3) div:nth-child(1) {
    color: #469fd1;
    font-size: 10vw;
    text-align: center;
    letter-spacing: -0.015em;
  }
  #result .result-item:nth-child(3) div:nth-child(1) span:nth-child(1) {
    font-family: var(--font-alphabet);
    font-weight: 700;
  }
  #result .result-item:nth-child(3) div:nth-child(1) span:nth-child(2) {
    font-size: 33%;
    font-weight: 900;
  }
  #result .result-item:nth-child(3) h3 {
    margin: 0.5em 0 0;
    color: #469fd1;
    font-size: 3.6vw;
    font-weight: 900;
    text-align: center;
  }
  #result .result-item:nth-child(4) {
    border: 1px solid #54a3a0;
  }
  #result .result-item:nth-child(4) div:nth-child(1) {
    color: #54a3a0;
    font-size: 8vw;
    font-family: var(--font-alphabet);
    text-align: center;
    font-weight: 700;
    letter-spacing: -0.015em;
  }
  #result .result-item:nth-child(4) div:nth-child(1) span:nth-child(1) {
  }
  #result .result-item:nth-child(4) div:nth-child(1) span:nth-child(2) {
  }
  #result .result-item:nth-child(4) h3 {
    margin: 0.5em 0 0;
    color: #54a3a0;
    font-size: 3.6vw;
    font-weight: 900;
    text-align: center;
  }

  #voice {
    margin: 0 auto;
    padding: 10vw 0;
    width: 100%;
    background: url(../images/top-voice-bg-icon.svg) no-repeat right bottom /
        auto 100%,
      #e7f0fb;
  }
  #voice .voice-wrap {
    margin: 0 auto;
    padding: 0;
    width: 100%;
    display: flex;
  }
  #voice .voice-head {
    padding: 0 0 0 2vw;
    width: 25vw;
  }
  #voice .voice-head > h2 {
    color: var(--accent-color);
    font-size: 8vw;
    font-family: var(--font-alphabet);
    font-weight: 700;
    text-align: left;
    line-height: 1;
  }
  #voice .voice-head > p {
    margin: 0 auto;
    padding: 0;
    width: 100%;
    font-size: 3.6vw;
    font-weight: 700;
    text-align: left;
  }
  #voice-slider {
    flex: 0 0 calc(100% - 25vw);
    overflow: hidden;
  }
  #voice-slider .swiper-slide {
    padding: 10px;
  }
  #voice-slider .swiper-slide .voice-box {
    position: relative;
    padding: 4vw 2vw 2vw;
    background: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  }
  #voice-slider .voice-box h3 {
    position: absolute;
    top: -4px;
    left: -4px;
    padding: 0.2em 0.5em;
    width: max-content;
    color: #fff;
    font-size: 3.6vw;
    font-weight: 700;
    background: var(--accent-color);
  }
  #voice-slider .voice-box p {
    margin: 1em 0 0;
    width: 100%;
    font-size: 3.6vw;
    font-weight: 500;
  }
  #voice-slider .voice-box p.name,
  #voice-slider .voice-box p.name a {
    color: var(--accent-color);
  }

  #plan {
    margin: 0 auto;
    padding: 10vw 0;
    width: 100%;
    background: linear-gradient(to bottom, #327ed3, #073eac);
  }
  #plan h2 {
    margin: 0 auto;
    padding: 0;
    width: 100%;
    color: #fff;
    font-size: 6vw;
    font-weight: 900;
    text-align: center;
    line-height: calc(50 / 36);
  }
  #plan > p {
    margin: 0.5em auto 0;
    padding: 0;
    width: 100%;
    color: #fff;
    font-size: 3.6vw;
    font-weight: 400;
    text-align: center;
  }
  #plan .plan-grid {
    margin: 8vw auto 0;
    width: 90%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8vw 4vw;
  }
  #plan .plan-item {
    position: relative;
    margin: 0;
    padding: 6vw 2vw 2vw;
    background: #fff;
    border-radius: 2vw;
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 6;
    gap: 2vw 4vw;
  }
  #plan .plan-item .plan-en {
    color: var(--accent-color);
    font-family: var(--font-alphabet);
    font-size: 4.8vw;
    font-weight: 700;
    text-align: center;
  }
  #plan .plan-item .plan-jp {
    font-size: 4.8vw;
    font-weight: 900;
    text-align: center;
  }
  #plan .plan-item p {
    color: #777;
    font-size: 3.6vw;
    font-weight: 400;
    text-align: center;
  }
  #plan .plan-item .plan-price {
    color: var(--accent-color);
    font-size: 4.8vw;
    font-family: var(--font-alphabet);
    font-weight: 600;
    text-align: center;
  }
  #plan .plan-item .plan-price::before {
    content: "￥";
    font-size: 60%;
  }
  #plan .plan-item .plan-price::after {
    content: "(税込)/月";
    font-size: 30%;
  }
  #plan .plan-item .plan-details {
    margin: 10px 0 0;
    border-top: 1px dashed #ccc;
  }
  #plan .plan-item .plan-detail {
    padding: 0.2em 0;
    color: #555;
    font-size: 3.6vw;
    font-weight: 500;
    text-align: center;
    border-bottom: 1px dashed #ccc;
  }
  #plan .plan-item a {
    margin: 4vw auto 0;
    display: grid;
    place-items: center;
    width: 80%;
    height: auto;
    aspect-ratio: 210 / 40;
    color: #fff;
    font-size: 3.6vw;
    font-weight: 500;
    text-agign: center;
    background: linear-gradient(to right, #469fd1, #147eaf);
    border-radius: 5px;
  }
  #plan .plan-item:nth-child(2)::before {
    position: absolute;
    content: "人気No.1";
    top: 0;
    left: 50%;
    display: block;
    margin: 0;
    padding: 0.2em 0.6em;
    font-size: 3.6vw;
    font-weight: 400;
    background: #6adbd6;
    border-radius: 4em;
    translate: -50% -50%;
  }
  #plan .plan-item:nth-child(4)::before {
    position: absolute;
    content: "PREMIUM";
    top: 0;
    left: 50%;
    display: block;
    margin: 0;
    padding: 0.2em 0.6em;
    font-size: 3.6vw;
    font-weight: 400;
    background: #fffb7f;
    border-radius: 4em;
    translate: -50% -50%;
  }

  #faq {
    margin: 0 auto;
    padding: 12vw 0;
    width: 100%;
  }
  #faq h2 {
    margin: 0 auto;
    padding: 0;
    width: 100%;
    color: var(--accent-color);
    font-size: 6vw;
    font-weight: 900;
    text-align: center;
    line-height: calc(50 / 36);
  }
  #faq > p {
    margin: 0.5em auto 1.5em;
    padding: 0;
    width: 100%;
    font-size: 3.6vw;
    font-weight: 400;
    text-align: center;
  }
  #faq .faq-box {
    position: relative;
    margin: 4vw auto 0;
    width: 90%;
  }
  #faq .faq-box .faq-check {
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 1px;
    opacity: 0;
  }
  #faq .faq-box .faq-q {
    position: relative;
    display: block;
    margin: 0;
    padding: 1.2em 6vw 1.2em 12vw;
    background: #e7f0fb;
    color: var(--accent-color);
    font-size: 3.6vw;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
  }
  #faq .faq-box .faq-q::before {
    position: absolute;
    content: "Q";
    top: 50%;
    left: 2vw;
    width: 7.2vw;
    height: 7.2vw;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 4vw;
    font-weight: 700;
    font-family: var(--font-alphabet);
    background: var(--accent-color);
    border-radius: 100%;
    translate: 0 -50%;
  }
  #faq .faq-box .faq-check ~ .faq-q::after {
    position: absolute;
    content: "";
    top: calc(50% - 1.5vw);
    right: 2vw;
    width: 3vw;
    height: 3vw;
    background: var(--accent-color);
    clip-path: polygon(
      0 40%,
      40% 40%,
      40% 0,
      60% 0,
      60% 40%,
      100% 40%,
      100% 60%,
      60% 60%,
      60% 100%,
      40% 100%,
      40% 60%,
      0 60%
    );
    transition: clip-path 0.5s ease-out;
  }
  #faq .faq-box .faq-check:checked ~ .faq-q::after {
    clip-path: polygon(
      0 40%,
      40% 40%,
      40% 40%,
      60% 40%,
      60% 40%,
      100% 40%,
      100% 60%,
      60% 60%,
      60% 60%,
      40% 60%,
      40% 60%,
      0 60%
    );
  }
  #faq .faq-box .faq-check ~ .faq-a {
    margin: 0;
    padding: 0 1em 0 12vw;
    font-size: 3.6vw;
    font-weight: 400;
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.5s ease-out, padding 0.5s ease-out;
  }
  #faq .faq-box .faq-check:checked ~ .faq-a {
    grid-template-rows: 1fr;
    padding: 1em 1em 1em 12vw;
  }
  #faq .faq-box .faq-check ~ .faq-a > div {
    margin: 0;
    overflow: hidden;
  }
  #faq .faq-box .faq-check:checked ~ .faq-a > div {
  }

  #cta {
    margin: 0 auto;
    padding: 12vw 0;
    width: 100%;
    background: var(--accent-color);
  }
  #cta h2 {
    margin: 0 auto;
    padding: 0;
    width: 100%;
    color: #fff;
    font-size: 6vw;
    font-weight: 900;
    text-align: center;
    line-height: calc(50 / 36);
  }
  #cta h2 span {
    font-size: 8vw;
    font-weight: 700;
    font-family: var(--font-alphabet);
  }
  #cta > p {
    margin: 0.5em auto 1.5em;
    padding: 0;
    width: 100%;
    color: #fff;
    font-size: 3.6vw;
    font-weight: 400;
    text-align: center;
  }
  #cta .cta-grid {
    margin: 6vw auto 0;
    width: 90%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }
  #cta .cta-item {
    margin: 0;
    padding: 4vw 0;
    width: 100%;
  }
  #cta .cta-item + .cta-item {
    border-top: 1px solid #fff;
  }
  #cta .cta-item h3 {
    margin: 0 auto 0.5em;
    padding: 0;
    width: 100%;
    color: #fff;
    font-size: 4vw;
    font-weight: 400;
    text-align: center;
  }
  #cta .cta-item .cta-price {
    color: #fff;
    font-size: 8vw;
    font-family: var(--font-alphabet);
    font-weight: 600;
    text-align: center;
  }
  #cta .cta-item .cta-price::before {
    content: "￥";
    font-size: 60%;
  }
  #cta .cta-item .cta-price::after {
    content: "(税込)/月";
    font-size: 30%;
  }
  #cta .cta-btn {
    position: relative;
    margin: 8vw auto 0;
    display: grid;
    place-items: center;
    width: 80%;
    height: auto;
    aspect-ratio: 288 / 57;
    color: #fff;
    font-size: 4vw;
    background: #f28757;
    border-radius: 4em;
  }
  #cta .cta-btn::after {
    position: absolute;
    content: "";
    top: calc(50% - 0.3em);
    right: 1.5em;
    width: 0.6em;
    height: auto;
    aspect-ratio: 1 / 1;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    rotate: -45deg;
  }

  footer {
    margin: 0 auto;
    padding: 4vw;
    width: 100%;
  }
  footer .footer-wrap {
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  footer .footer-logo {
    margin: 0;
    width: 50%;
    height: auto;
    aspect-ratio: 200 / 48;
  }
  footer .footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  footer .footer-menu {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 0;
    list-style: none;
  }
  footer .footer-menu li {
    margin: 0;
    list-style: none;
    font-size: 3.2vw;
    font-weight: 500;
  }
  footer .footer-menu li a {
    color: #222;
    text-decoration: none;
  }
  footer .footer-copyright {
    margin: 4vw auto 0;
    width: 100%;
    font-size: 3.2vw;
    font-weight: 400;
    text-align: right;
  }
}

/**
 * PC用
 */
@media (min-width: 768.01px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    height: 68px;
    background: #fff;
    z-index: 9;
  }
  header .header-wrap {
    margin: 0 auto;
    width: 100%;
    max-width: 1366px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  header .header-logo {
    margin: 0;
    width: 200px;
    height: 48px;
  }
  header .header-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  header .header-logo {
    margin: 0;
    width: 200px;
    height: 48px;
  }
  header .header-menu {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0 min(2vw, 40px);
    list-style: none;
  }
  header .header-menu li {
    margin: 0;
    list-style: none;
    font-size: 14px;
    font-weight: 500;
  }
  header .header-menu li a {
    color: #222;
    text-decoration: none;
  }

  main {
    margin: 0 auto;
    width: 100%;
  }

  #mv {
    margin: 68px auto 0;
    width: 100%;
    height: auto;
    aspect-ratio: 2732 / 1088;
  }
  #mv .mv-bg {
    margin: 0 auto;
    width: 100%;
    height: auto;
    aspect-ratio: 2732 / 1088;
  }
  #mv .mv-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  #mv .mv-fg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    max-width: 1149px;
    height: auto;
    max-height: 90%;
    aspect-ratio: 1153 / 461;
    translate: -50% -50%;
  }
  #mv .mv-fg > figure {
    width: 100%;
    height: auto;
    max-height: 100%;
  }
  #mv .mv-fg > figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  #mv .mv-fg > figure img.sp {
    display: none;
  }
  #mv .mv-btn1 {
    position: absolute;
    left: 0;
    bottom: 8%;
    display: grid;
    place-items: center;
    width: 19.8%;
    height: auto;
    aspect-ratio: 228 / 57;
    color: #fff;
    font-size: calc(17 * min(90vw, 1149px) / 1149);
    background: #f28757;
    border-radius: 4em;
  }
  #mv .mv-btn1::after {
    position: absolute;
    content: "";
    top: calc(50% - 0.4em);
    right: 1em;
    width: 0.8em;
    height: auto;
    aspect-ratio: 1 / 1;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    rotate: -45deg;
  }
  #mv .mv-btn2 {
    position: absolute;
    left: 20.5%;
    bottom: 8%;
    display: grid;
    place-items: center;
    width: 19.8%;
    height: auto;
    aspect-ratio: 228 / 57;
    font-size: calc(17 * min(90vw, 1149px) / 1149);
    background: #fff;
    border: 1px solid #92b2d6;
    border-radius: 4em;
  }
  #mv .mv-btn2::after {
    position: absolute;
    content: "";
    top: calc(50% - 0.4em);
    right: 1em;
    width: 0.8em;
    height: auto;
    aspect-ratio: 1 / 1;
    border-right: 2px solid var(--fg-color);
    border-bottom: 2px solid var(--fg-color);
    rotate: -45deg;
  }

  #problem {
    margin: 0 auto;
    padding: 60px 0;
    width: 100%;
  }
  #problem h2 {
    margin: 0 auto;
    width: 90%;
    max-width: 980px;
    font-size: 36px;
    font-weight: 900;
    text-align: center;
    line-height: calc(50 / 36);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #problem h2::before {
    content: "";
    width: auto;
    height: 1px;
    background: var(--fg-color);
    flex: 1 0 auto;
  }
  #problem h2::after {
    content: "";
    width: auto;
    height: 1px;
    background: var(--fg-color);
    flex: 1 0 auto;
  }
  #problem h2 span span:nth-of-type(1) {
    color: var(--accent-color);
    font-size: 140%;
    font-family: var(--font-alphabet);
    font-weight: 700;
  }
  #problem h2 span span:nth-of-type(2) {
    color: var(--accent-color);
  }
  #problem p {
    margin: 1em auto;
    width: 90%;
    max-width: 980px;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
  }
  #problem .problem-grid {
    margin: 20px auto 0;
    padding: 0;
    width: 90%;
    max-width: 980px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0 25px;
  }
  #problem .problem-item {
    width: 100%;
    padding: 10px 20px 20px;
    border: 2px solid var(--accent-color);
  }
  #problem .problem-item h3 {
    font-size: 20px;
    font-weight: 700;
    text-align: left;
    line-height: calc(50 / 20);
    border-bottom: 2px solid var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0 8px;
  }
  #problem .problem-item h3::before {
    content: "";
    display: block;
    width: 1.5em;
    height: auto;
    aspect-ratio: 1 / 1;
    background: url(../images/top-icon1.svg) no-repeat center / contain;
  }
  #problem .problem-item:nth-child(2) h3::before {
    background: url(../images/top-icon2.svg) no-repeat center / contain;
  }
  #problem .problem-item:nth-child(3) h3::before {
    background: url(../images/top-icon3.svg) no-repeat center / contain;
  }
  #problem .problem-item p {
    font-size: 15px;
    font-weight: 400;
    text-align: center;
    line-height: calc(24 / 15);
  }
  #problem .problem-item .arrow-d {
    margin: 8px auto;
    width: 34px;
    height: 26px;
    background: url(../images/top-arrow-d.svg) no-repeat center / contain;
  }
  #problem .problem-item h4 {
    color: var(--accent-color);
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    line-height: calc(24 / 15);
  }
  #problem .problem-movie {
    margin: 80px auto;
    width: 90%;
    max-width: 980px;
    height: auto;
    aspect-ratio: 1473 / 837;
  }
  #problem .problem-movie iframe {
    display: block;
    width: 100%;
    height: 100%;
  }

  #revolution {
    margin: 0 auto;
    padding: 0 0 120px;
    width: 100%;
  }
  #revolution h2 {
    margin: 0 auto;
    padding: 1em 0 0;
    width: 100%;
    color: var(--accent-color);
    font-size: 36px;
    font-weight: 900;
    text-align: center;
    line-height: calc(50 / 36);
    background: #e7f0fb;
  }
  #revolution > p {
    margin: 0 auto;
    padding: 0 0 2em;
    width: 100%;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    background: #e7f0fb;
  }
  #revolution .revolution-triangle {
    margin: 0 auto;
    width: 100%;
    height: auto;
    aspect-ratio: 40 / 1;
    background: #e7f0fb;
    clip-path: polygon(40% 0, 60% 0, 50% 100%);
  }
  #revolution .revolution-grid {
    margin: 20px auto 0;
    padding: 0;
    width: 90%;
    max-width: 980px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px 0;
  }
  #revolution .revolution-item {
    width: 100%;
    padding: 0 10px;
  }
  #revolution .revolution-item figure {
    margin: 0 auto;
    width: 65%;
    height: auto;
    aspect-ratio: 1 / 1;
  }
  #revolution .revolution-item figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  #revolution .revolution-item h3 {
    color: var(--accent-color);
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    line-height: calc(50 / 20);
  }
  #revolution .revolution-item p {
    margin: 0.5em 0 0;
    font-size: 15px;
    font-weight: 400;
    text-align: left;
    line-height: calc(24 / 15);
  }

  #step {
    margin: 0 auto;
    padding: 60px 0;
    width: 100%;
    background: #e7f0fb;
  }
  #step h2 {
    position: absolute;
    top: 0;
    left: 50%;
    padding: 0.2em 1em;
    width: max-content;
    max-width: 90%;
    color: #fff;
    font-size: 36px;
    font-weight: 900;
    text-align: center;
    line-height: calc(50 / 36);
    background: var(--accent-color);
    border-radius: 4em;
    translate: -50% -50%;
  }
  #step > p {
    margin: 0 auto;
    padding: 0;
    width: 100%;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
  }
  #step .step-item {
    margin: 0 auto;
    padding: 30px 0;
    width: 90%;
    max-width: 760px;
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 0;
  }
  #step .step-item + .step-item {
    border-top: 1px solid var(--accent-color);
  }
  #step .step-item div:nth-child(1) {
    color: var(--accent-color);
    font-size: 20px;
    font-weight: 700;
    font-family: var(--font-alphabet);
  }
  #step .step-item div:nth-child(1) span:nth-child(1) {
  }
  #step .step-item div:nth-child(1) span:nth-child(2) {
    display: inline-block;
    font-size: 250%;
    translate: 10% 5%;
  }
  #step .step-item h3 {
    color: var(--accent-color);
    font-size: 24px;
    font-weight: 900;
    text-align: left;
  }
  #step .step-item p {
    margin: 0 auto;
    padding: 0;
    width: 100%;
    font-size: 18px;
    font-weight: 400;
    text-align: left;
  }

  #result {
    margin: 0 auto;
    padding: 80px 0;
    width: 100%;
  }
  #result h2 {
    margin: 0 auto;
    padding: 0;
    width: 100%;
    color: var(--accent-color);
    font-size: 36px;
    font-weight: 900;
    text-align: center;
    line-height: calc(50 / 36);
  }
  #result > p {
    margin: 0.5em auto 0;
    padding: 0;
    width: 100%;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
  }
  #result .result-grid {
    margin: 40px auto 0;
    padding: 0;
    width: 90%;
    max-width: 980px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 0 20px;
  }
  #result .result-item {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    border: 1px solid #327ed3;
    border-radius: 100%;
    line-height: 1;
    white-space: nowrap;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  #result .result-item p {
    margin: 0.5em 0 0;
    padding: 0;
    width: 100%;
    height: 3em;
    font-size: 15px;
    font-weight: 400;
    text-align: center;
    line-height: 1.5;
    display: grid;
    place-items: center;
  }
  #result .result-item:nth-child(1) div:nth-child(1) {
    color: #327ed3;
    font-size: calc(100 * min(90vw, 980px) / 980);
    text-align: center;
    letter-spacing: -0.015em;
  }
  #result .result-item:nth-child(1) div:nth-child(1) span:nth-child(1) {
    font-family: var(--font-alphabet);
    font-weight: 700;
  }
  #result .result-item:nth-child(1) div:nth-child(1) span:nth-child(2) {
    font-size: 33%;
    font-weight: 900;
  }
  #result .result-item:nth-child(1) h3 {
    margin: 0.5em 0 0;
    color: #327ed3;
    font-size: calc(20 * min(90vw, 980px) / 980);
    font-weight: 900;
    text-align: center;
  }
  #result .result-item:nth-child(2) {
    border: 1px solid #147eaf;
  }
  #result .result-item:nth-child(2) div:nth-child(1) {
    color: #147eaf;
    font-size: calc(100 * min(90vw, 980px) / 980);
    text-align: center;
    letter-spacing: -0.015em;
  }
  #result .result-item:nth-child(2) div:nth-child(1) span:nth-child(1) {
    font-family: var(--font-alphabet);
    font-weight: 700;
  }
  #result .result-item:nth-child(2) div:nth-child(1) span:nth-child(2) {
    font-size: 33%;
    font-weight: 900;
  }
  #result .result-item:nth-child(2) h3 {
    margin: 0.5em 0 0;
    color: #147eaf;
    font-size: calc(20 * min(90vw, 980px) / 980);
    font-weight: 900;
    text-align: center;
  }
  #result .result-item:nth-child(3) {
    border: 1px solid #469fd1;
  }
  #result .result-item:nth-child(3) div:nth-child(1) {
    color: #469fd1;
    font-size: calc(100 * min(90vw, 980px) / 980);
    text-align: center;
    letter-spacing: -0.015em;
  }
  #result .result-item:nth-child(3) div:nth-child(1) span:nth-child(1) {
    font-family: var(--font-alphabet);
    font-weight: 700;
  }
  #result .result-item:nth-child(3) div:nth-child(1) span:nth-child(2) {
    font-size: 33%;
    font-weight: 900;
  }
  #result .result-item:nth-child(3) h3 {
    margin: 0.5em 0 0;
    color: #469fd1;
    font-size: calc(20 * min(90vw, 980px) / 980);
    font-weight: 900;
    text-align: center;
  }
  #result .result-item:nth-child(4) {
    border: 1px solid #54a3a0;
  }
  #result .result-item:nth-child(4) div:nth-child(1) {
    color: #54a3a0;
    font-size: calc(78 * min(90vw, 980px) / 980);
    font-family: var(--font-alphabet);
    text-align: center;
    font-weight: 700;
    letter-spacing: -0.015em;
  }
  #result .result-item:nth-child(4) div:nth-child(1) span:nth-child(1) {
  }
  #result .result-item:nth-child(4) div:nth-child(1) span:nth-child(2) {
  }
  #result .result-item:nth-child(4) h3 {
    margin: 0.5em 0 0;
    color: #54a3a0;
    font-size: calc(20 * min(90vw, 980px) / 980);
    font-weight: 900;
    text-align: center;
  }

  #voice {
    margin: 0 auto;
    padding: 60px 0;
    width: 100%;
    background: url(../images/top-voice-bg-icon.svg) no-repeat right bottom /
        auto 100%,
      #e7f0fb;
  }
  #voice .voice-wrap {
    margin: 0 auto;
    padding: 0 0 0 calc(50vw - min(45vw, 490px));
    width: 100%;
    display: flex;
  }
  #voice .voice-head {
    width: 200px;
  }
  #voice .voice-head > h2 {
    color: var(--accent-color);
    font-size: 70px;
    font-family: var(--font-alphabet);
    font-weight: 700;
    text-align: left;
    line-height: 1;
  }
  #voice .voice-head > p {
    margin: 0 auto;
    padding: 0;
    width: 100%;
    font-size: 20px;
    font-weight: 700;
    text-align: left;
  }
  #voice-slider {
    flex: 0 0 calc(100% - 200px);
    overflow: hidden;
  }
  #voice-slider .swiper-slide {
    padding: 10px;
  }
  #voice-slider .swiper-slide .voice-box {
    position: relative;
    padding: 40px 20px 20px;
    background: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  }
  #voice-slider .voice-box h3 {
    position: absolute;
    top: -4px;
    left: -4px;
    padding: 0.2em 0.5em;
    width: max-content;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    background: var(--accent-color);
  }
  #voice-slider .voice-box p {
    margin: 1em 0 0;
    width: 100%;
    font-size: 15px;
    font-weight: 500;
  }
  #voice-slider .voice-box p.name,
  #voice-slider .voice-box p.name a {
    color: var(--accent-color);
  }

  #plan {
    margin: 0 auto;
    padding: 80px 0;
    width: 100%;
    background: linear-gradient(to bottom, #327ed3, #073eac);
  }
  #plan h2 {
    margin: 0 auto;
    padding: 0;
    width: 100%;
    color: #fff;
    font-size: 36px;
    font-weight: 900;
    text-align: center;
    line-height: calc(50 / 36);
  }
  #plan > p {
    margin: 0.5em auto 0;
    padding: 0;
    width: 100%;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
  }
  #plan .plan-grid {
    margin: 60px auto 0;
    width: 90%;
    max-width: 980px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 0 20px;
  }
  #plan .plan-item {
    position: relative;
    margin: 0;
    padding: 20px 10px 10px;
    background: #fff;
    border-radius: 10px;
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 6;
  }
  #plan .plan-item .plan-en {
    color: var(--accent-color);
    font-family: var(--font-alphabet);
    font-size: 20px;
    font-weight: 700;
    text-align: center;
  }
  #plan .plan-item .plan-jp {
    font-size: 24px;
    font-weight: 900;
    text-align: center;
  }
  #plan .plan-item p {
    color: #777;
    font-size: 13px;
    font-weight: 400;
    text-align: center;
  }
  #plan .plan-item .plan-price {
    color: var(--accent-color);
    font-size: 35px;
    font-family: var(--font-alphabet);
    font-weight: 600;
    text-align: center;
  }
  #plan .plan-item .plan-price::before {
    content: "￥";
    font-size: 60%;
  }
  #plan .plan-item .plan-price::after {
    content: "(税込)/月";
    font-size: 30%;
  }
  #plan .plan-item .plan-details {
    margin: 10px 0 0;
    border-top: 1px dashed #ccc;
  }
  #plan .plan-item .plan-detail {
    padding: 0.2em 0;
    color: #555;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    border-bottom: 1px dashed #ccc;
  }
  #plan .plan-item a {
    margin: 20px 0 0;
    display: grid;
    place-items: center;
    width: 100%;
    height: auto;
    aspect-ratio: 210 / 40;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    text-agign: center;
    background: linear-gradient(to right, #469fd1, #147eaf);
    border-radius: 5px;
  }
  #plan .plan-item:nth-child(2)::before {
    position: absolute;
    content: "人気No.1";
    top: 0;
    left: 50%;
    display: block;
    margin: 0;
    padding: 0.2em 0.6em;
    font-size: 14px;
    font-weight: 400;
    background: #6adbd6;
    border-radius: 4em;
    translate: -50% -50%;
  }
  #plan .plan-item:nth-child(4)::before {
    position: absolute;
    content: "PREMIUM";
    top: 0;
    left: 50%;
    display: block;
    margin: 0;
    padding: 0.2em 0.6em;
    font-size: 14px;
    font-weight: 400;
    background: #fffb7f;
    border-radius: 4em;
    translate: -50% -50%;
  }

  #faq {
    margin: 0 auto;
    padding: 80px 0;
    width: 100%;
  }
  #faq h2 {
    margin: 0 auto;
    padding: 0;
    width: 100%;
    color: var(--accent-color);
    font-size: 36px;
    font-weight: 900;
    text-align: center;
    line-height: calc(50 / 36);
  }
  #faq > p {
    margin: 0.5em auto 1.5em;
    padding: 0;
    width: 100%;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
  }
  #faq .faq-box {
    position: relative;
    margin: 20px auto 0;
    width: 90%;
    max-width: 880px;
  }
  #faq .faq-box .faq-check {
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 1px;
    opacity: 0;
  }
  #faq .faq-box .faq-q {
    position: relative;
    display: block;
    margin: 0;
    padding: 1.2em 30px 1.2em 62px;
    background: #e7f0fb;
    color: var(--accent-color);
    font-size: 16px;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
  }
  #faq .faq-box .faq-q::before {
    position: absolute;
    content: "Q";
    top: 50%;
    left: 13px;
    width: 36px;
    height: 36px;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 20px;
    font-weight: 700;
    font-family: var(--font-alphabet);
    background: var(--accent-color);
    border-radius: 100%;
    translate: 0 -50%;
  }
  #faq .faq-box .faq-check ~ .faq-q::after {
    position: absolute;
    content: "";
    top: calc(50% - 8px);
    right: 20px;
    width: 16px;
    height: 16px;
    background: var(--accent-color);
    clip-path: polygon(
      0 40%,
      40% 40%,
      40% 0,
      60% 0,
      60% 40%,
      100% 40%,
      100% 60%,
      60% 60%,
      60% 100%,
      40% 100%,
      40% 60%,
      0 60%
    );
    transition: clip-path 0.5s ease-out;
  }
  #faq .faq-box .faq-check:checked ~ .faq-q::after {
    clip-path: polygon(
      0 40%,
      40% 40%,
      40% 40%,
      60% 40%,
      60% 40%,
      100% 40%,
      100% 60%,
      60% 60%,
      60% 60%,
      40% 60%,
      40% 60%,
      0 60%
    );
  }
  #faq .faq-box .faq-check ~ .faq-a {
    margin: 0;
    padding: 0 1em 0 62px;
    font-size: 15px;
    font-weight: 400;
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.5s ease-out, padding 0.5s ease-out;
  }
  #faq .faq-box .faq-check:checked ~ .faq-a {
    grid-template-rows: 1fr;
    padding: 1em 1em 1em 62px;
  }
  #faq .faq-box .faq-check ~ .faq-a > div {
    margin: 0;
    overflow: hidden;
  }
  #faq .faq-box .faq-check:checked ~ .faq-a > div {
  }

  #cta {
    margin: 0 auto;
    padding: 80px 0;
    width: 100%;
    background: var(--accent-color);
  }
  #cta h2 {
    margin: 0 auto;
    padding: 0;
    width: 100%;
    color: #fff;
    font-size: 36px;
    font-weight: 900;
    text-align: center;
    line-height: calc(50 / 36);
  }
  #cta h2 span {
    font-size: 45px;
    font-weight: 700;
    font-family: var(--font-alphabet);
  }
  #cta > p {
    margin: 0.5em auto 1.5em;
    padding: 0;
    width: 100%;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
  }
  #cta .cta-grid {
    margin: 40px auto 0;
    width: 90%;
    max-width: 700px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
  }
  #cta .cta-item {
    margin: 0;
    width: 100%;
  }
  #cta .cta-item + .cta-item {
    border-left: 1px solid #fff;
  }
  #cta .cta-item h3 {
    margin: 0 auto 0.5em;
    padding: 0;
    width: 100%;
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    text-align: center;
  }
  #cta .cta-item .cta-price {
    color: #fff;
    font-size: 35px;
    font-family: var(--font-alphabet);
    font-weight: 600;
    text-align: center;
  }
  #cta .cta-item .cta-price::before {
    content: "￥";
    font-size: 60%;
  }
  #cta .cta-item .cta-price::after {
    content: "(税込)/月";
    font-size: 30%;
  }
  #cta .cta-btn {
    position: relative;
    margin: 40px auto 0;
    display: grid;
    place-items: center;
    width: 288px;
    height: auto;
    aspect-ratio: 288 / 57;
    color: #fff;
    font-size: 18px;
    background: #f28757;
    border-radius: 4em;
  }
  #cta .cta-btn::after {
    position: absolute;
    content: "";
    top: calc(50% - 0.3em);
    right: 1.5em;
    width: 0.6em;
    height: auto;
    aspect-ratio: 1 / 1;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    rotate: -45deg;
  }

  footer {
    margin: 0 auto;
    padding: 20px 20px;
    width: 100%;
  }
  footer .footer-wrap {
    margin: 0 auto;
    width: 100%;
    max-width: 1366px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  footer .footer-logo {
    margin: 0;
    width: 200px;
    height: 48px;
  }
  footer .footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  footer .footer-logo {
    margin: 0;
    width: 200px;
    height: 48px;
  }
  footer .footer-menu {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0 min(2vw, 40px);
    list-style: none;
  }
  footer .footer-menu li {
    margin: 0;
    list-style: none;
    font-size: 14px;
    font-weight: 500;
  }
  footer .footer-menu li a {
    color: #222;
    text-decoration: none;
  }
  footer .footer-copyright {
    margin: 0 auto;
    width: 100%;
    max-width: 1366px;
    font-size: 14px;
    font-weight: 400;
    text-align: right;
  }
}
