@charset "utf-8";
/* base */
:root {
  --color-text: #333333;
  --color-blue: #5494EF;
  --color-dark-blue: #275CA8;
  --color-red: #ED1C24;
  --color-green: #3CA318;
  --color-dark-green: #157328;
  --color-white: #ffffff;
  --color-light-gray: #F5F5F5;
  --color-gray: #353535;
  --color-dark-gray: #1D1D1D;
}

html {
  margin: 0;
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-gray);
}

main {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;

  span,
  em,
  strong {
    font-weight: inherit;
  }
}

p,
li {
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
}

img {
  max-width: 100%;
  height: auto;
}

a:hover {
  text-decoration: none;
}

.sp-only {
  display: block;
}

.pc-only {
  display: none;
}

.tablet-only {
  display: none;
}

@media screen and (min-width: 768px) {
  .sp-only {
    display: none;
  }

  .pc-only {
    display: block;
  }
}

@media screen and (min-width:768px) and (max-width:1279px) {
  .tablet-only {
    display: block;
  }
}

/* footer調整 */
#footer li {
  font-size: 12px;
}

/* common */
.inner {
  width: calc(100% - 40px);
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .inner {
    width: calc(100% - 80px);
  }
}

@media screen and (min-width: 1280px) {
  .inner {
    width: 1200px;
  }
}

.headline {
  margin-bottom: 20px;
  color: var(--color-white);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;

  span.red {
    color: var(--color-red);
  }

  span.green {
    color: var(--color-green);
  }

  span.blue {
    color: var(--color-blue);
  }
}

.headline-catchphrase {
  margin-bottom: 30px;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;

  &.small {
    font-size: 0.875rem;
    font-weight: 500;
  }
}

.headline2 {
  margin-bottom: 60px;
  position: relative;
  color: var(--color-white);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.headline2::before {
  content: '';
  display: inline-block;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 8px;
  background-color: var(--color-red);
}

@media screen and (min-width: 768px) {
  .headline {
    font-size: 1.75rem;
  }

  .headline-catchphrase {
    font-size: 1.125rem;
  }
}

@media screen and (min-width: 1024px) {
  .headline-catchphrase {
    text-align: center;
  }
}

@media screen and (min-width: 1280px) {
  .headline {
    font-size: 2.25rem;
  }

  .headline-catchphrase {
    margin-bottom: 40px;
    font-size: 1.25rem;

    &.small {
      font-size: 1rem;
    }
  }

  .headline2 {
    margin-bottom: 60px;
    font-size: 2rem;
  }
}

.btn {
  padding: 20px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  width: 100%;
  text-align: center;
  border-radius: 5px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.16);
  transition: all 0.3s;

  &.btn-red {
    background: linear-gradient(#e7701a 0%, #ed1c24 100%);
  }

  &.btn-green {
    background: linear-gradient(#3ca318 0%, #157328 100%);
  }

  &.btn-blue {
    background: linear-gradient(#5494ef  0%, #275ca8 100%);
  }

  p {
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
  }

  &.download-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

    p {
      position: relative;
      padding-right: 30px;

      &::after {
        content: url("../images/arrow_right_white.svg");
        position: absolute;
        right: 10px;
        top: 0;
        transition: all 0.3s;
      }
    }
  }

  a:hover &,
  &:hover {
    opacity: 0.8;

    &.download-btn p::after {
      right: 0;
    }
  }
}

@media screen and (min-width: 768px) {
  .btn {
    a:hover &,
    &:hover {
      &.download-btn p::after {
        padding-left: 40px;
      }
    }
  }
}

@media screen and (min-width: 1024px) {
  .btn {
    padding: 15px 20px;
    width: 280px;

    &.download-btn {
      width: 240px;
    }
  }
}

/* header */
.logo {
  position: absolute;
  top: 25px;
  left: 0;
  width: 100%;
  height: 56px;

  .logo-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  a {
    display: block;
  }

  .koukaryoku {
    width: 134px;
    height: 56px;
  }

  .sakura {
    width: 128px;
    height: 23px;
  }
}

@media screen and (min-width: 1280px) {
  .logo {
    top: 30px;

    .koukaryoku {
      width: 178px;
      height: 74px;
    }

    .sakura {
      width: 160px;
      height: 28px;
    }
  }
}

/* hero */
.hero {
  background-color: #000000;
  background-image: url("../images/mv_sp.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow: hidden;

  .hero-inner {
    padding-top: 85px;
    padding-bottom: 30px;
    height: 100%;
  }

  .title {
    margin-bottom: 10px;
  }

  .link {
    padding: 25px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: rgba(204, 204, 204, 0.25);
    border-radius: 10px;

    .title {
      width: 100%;
      display: inline-block;
      position: relative;
      color: var(--color-white);
      font-size: 1.125rem;
      text-align: center;

      &::before {
        content: '';
        display: inline-block;
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 4px;
        background-color: #ffffff;
      }
    }

    .link-item {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 10px;

      p {
        text-align: center;
      }

      .catchphrase {
        color: var(--color-white);
        font-size: 0.9375rem;
      }

      .btn {
        padding-top: 15px;
        width: 100%;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;

        .btn-lead {
          margin-bottom: 10px;

          span {
            padding: 2px 5px;
            display: inline-block;
            width: 130px;
            font-size: 0.75rem;
            font-weight: 500;
            background: #000000;
            border-radius: 20px;
          }
        }

        .btn-name {
          position: relative;
          padding-right: 30px;
          font-size: 1.125rem;

          &::after {
            content: url("../images/icon_download.svg");
            position: absolute;
            right: 0;
            top: 1px;
            transition: all 0.3s;
          }
        }

        a:hover &,
        &:hover {
          .btn-name::after {
            top: 5px;
          }
        }
      }
    }
  }
}

@media screen and (min-width: 840px) {
  .hero {
    .link {
      .link-item {
        .btn {
          width: 40%;
        }
      }
    }
  }
}

@media screen and (min-width: 768px) {
  .hero {
    background-image: url("../images/mv.jpg");
    background-position: center top;
    height: min(640px, 100vh);

    .hero-inner {
      padding-top: 110px;
      padding-bottom: 60px;
    }

    .title {
      margin-bottom: 20px;
      width: 80%;
    }

    .link {
      padding: 30px;
      flex-direction: row;
      flex-wrap: wrap;
      row-gap: 20px;
      column-gap: 30px;

      .catchphrase {
        font-size: 0.9375rem;
      }

      .link-item {
        .catchphrase {
          font-size: 0.8125rem;
        }
      }
    }
  }
}

@media screen and (min-width: 1024px) {
  .hero {
    .title {
      width: 70%;
    }
  }
}

@media screen and (min-width: 1280px) {
  .hero {
    background-size: contain;

    .hero-inner {
      padding-top: 135px;
    }

    .title {
      width: 52%;
    }

    .link {
      padding: 30px 118px;
      column-gap: 56px;

      .link-item {
        .catchphrase {
          font-size: 0.9375rem;
        }
      }
    }
  }
}

/* problems */
.problems {
  padding-top: 40px;
  padding-bottom: 40px;
  overflow: hidden;

  .headline {
    span {
      color: var(--color-red);
    }
  }

  .headline-catchphrase {
    color: var(--color-white);
    text-align: center;
  }

  .problems-list {
    display: grid;
    gap: 30px;
    margin-bottom: 160px;

    .list-item {
      padding: 30px 20px;
      position: relative;
      background: var(--color-light-gray);
      border-radius: 10px;

      &:last-child::after {
        content: "";
        width: 100%;
        height: 43px;
        position: absolute;
        left: 0;
        bottom: -120px;
        background-image: url("../images/arrow_down_red.svg");
        background-repeat: no-repeat;
        background-position: top center;
      }

      h3 {
        margin-bottom: 25px;
        color: var(--color-red);
        font-size: 1.25rem;
        line-height: 1.4;
        text-align: center;
      }

      ul {
        li {
          padding-left: 24px;
          position: relative;
          font-size: 1.125rem;
          line-height: 1.5;

          &:not(:last-child) {
            margin-bottom: 15px;
          }

          &::before {
            content: "●";
            color: var(--color-red);
            font-size: 0.875rem;
            font-weight: 700;
            position: absolute;
            left: 0;
            top: 4px;
          }
        }
      }
    }
  }

  .plan {
    .title {
      margin-bottom: 30px;
      color: var(--color-white);
      font-size: 1.5rem;
      text-align: center;

      span {
        font-size: 2.125rem;
      }

      strong {
        font-size: 2.875rem;
      }
    }

    .lead {
      margin-bottom: 20px;
      color: var(--color-white);
      font-size: 1.125rem;
      text-align: center;
    }

    .plan-list {
      display: grid;
      color: var(--color-white);

      .list-item {
        padding: 25px 20px 30px;
        margin-bottom: 60px;
        position: relative;
        border-radius: 10px;
        background: linear-gradient(#e7701a 0%, #ed1c24 100%);
        transition: all 0.5s;

        &::after {
          content: "";
          width: 100%;
          height: 31px;
          position: absolute;
          left: 0;
          bottom: -31px;
          background-image: url("../images/arrow_down_red2.svg");
          background-repeat: no-repeat;
          background-position: top center;
        }

        &:hover {
          filter: brightness(120%);
          background: linear-gradient(#ed1c24 0%, #ed1c24 100%);
        }

        &.vrt {
          background: linear-gradient(#3ca318 0%, #157328 100%);

          &::after {
            background-image: url("../images/arrow_down_green2.svg");
          }

          &:hover {
            background: linear-gradient(#157328 0%, #157328 100%);
          }
        }

        &.phy {
          background: linear-gradient(#5494ef 0%, #275ca8 100%);

          &::after {
            background-image: url("../images/arrow_down_blue2.svg");
          }

          &:hover {
            background: linear-gradient(#275ca8 0%, #275ca8 100%);
          }
        }

        h3 {
          padding-left: 20px;
          padding-right: 20px;
          margin-bottom: 10px;
          text-align: center;
        }

        p {
          margin-bottom: 20px;
          font-size: 2.1rem;
          text-align: center;
        }

        ul {
          li {
            padding-left: 30px;
            font-size: 1.125rem;
            background-image: url("../images/icon_check_white.svg");
            background-repeat: no-repeat;
            background-position: top 14px left;

            &:not(:last-child) {
              margin-bottom: 10px;
            }
          }
        }
      }
    }
  }
}

@media screen and (min-width: 768px) {
  .problems {
    padding-top: 60px;
    padding-bottom: 60px;

    .problems-list {
      grid-template-columns: repeat(3, 1fr);
      place-content: center;
      gap: 20px;

      .list-item {
        &::after {
          content: "";
          width: 100%;
          height: 43px;
          position: absolute;
          left: 0;
          bottom: -130px;
          background-image: url("../images/arrow_down_red.svg");
          background-repeat: no-repeat;
          background-position: top center;
        }

        ul {
          li {
            font-size: 1rem;
          }
        }
      }
    }

    .plan {
      .lead {
        margin-bottom: 0;
        font-size: 1.5rem;
      }

      .title {
        font-size: 1.875rem;

        span {
          font-size: 2.375rem;
        }
      }

      .plan-list {
        .list-item {
          h3 {
            padding-left: 20%;
            padding-right: 20%;
          }

          p {
            font-size: 1.75rem;
            line-height: 1.5;
          }
        }
      }
    }
  }
}

@media screen and (min-width: 1024px) {
  .problems {
    .plan {
      .plan-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;

        .list-item {
          p {
            font-size: 1.125rem;
          }
        }
      }
    }
  }
}

@media screen and (min-width: 1280px) {
  .problems {
    padding-top: 80px;
    padding-bottom: 80px;

    .problems-list {
      margin-bottom: 190px;
      gap: 30px;

      .list-item {
        padding: 25px 20px 50px;

        &:last-child::after {
          bottom: -130px;
        }

        ul {
          li {
            font-size: 1.125rem;
          }
        }
      }
    }

    .plan {
      .lead {
        font-size: 1.75rem;
      }

      .title {
        margin-bottom: 40px;
        font-size: 2.25rem;

        span {
          font-size: 2.625rem;
        }

        strong {
          font-size: 3.625rem;
        }
      }

      .plan-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;

        .list-item {
          padding: 30px;

          h3 {
            padding-left: 0;
            padding-right: 0;
            margin-bottom: 20px;
          }

          p {
            font-size: 1.4375rem;
          }

          ul {
            li:not(:last-child) {
                margin-bottom: 20px;
              }
            }
          }
        }
      }
    }
}

/* about */
.about {
  padding-top: 40px;
  padding-bottom: 60px;
  padding-right: 16px;
  padding-left: 16px;
  background-color: #161616;
  background-image: url("../images/dok_bg_sp.png");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: top center;
  overflow: hidden;

  .about-wrapper {
    margin-bottom: 60px;

    .service {
      color: var(--color-white);
      font-weight: 700;
      text-align: center;
    }

    h2 {
      max-width: 100%;
      text-align: center;
    }

    .catchphrase {
      margin-bottom: 10px;
      color: var(--color-white);
      font-size: 1.5rem;
      font-weight: 700;
      line-height: 1.5;
      font-feature-settings: "halt"
    }

    .text {
      color: var(--color-white);
      font-size: 1rem;
    }

    .text-note {
      color: var(--color-white);
      font-size: 0.875rem;
    }

    .about-img-sp {
      padding: 0 20px 20px;
    }

    .about-img {
      display: none;
    }
  }

  /* merit */
  .merit {
    .merit-list {
      display: grid;
      gap: 30px;

      .list-item {
        padding: 0 20px 30px;
        color: var(--color-white);
        background: rgba(255, 255, 255, 0.2);
        border-radius: 10px;

        h4 {
          margin-bottom: 20px;
          font-size: 1.25rem;
          text-align: center;
          line-height: 1.5;

          span {
            margin-bottom: 10px;
            color: var(--color-red);
            font-size: 1.125rem;
            display: block;
          }
        }

        figure {
          text-align: center;
        }
      }
    }
  }
}

@media screen and (min-width: 640px) {
  .about {
    padding-right: 24px;
    padding-left: 24px;
  }
}

@media screen and (min-width: 768px) {
  .about {
    padding-top: 60px;
    padding-right: 0;
    padding-left: 0;
    background-size: cover;
    background-position: bottom 30px center;

    .about-wrapper {

      .service {
        font-size: 1.125rem;
        text-align: left;
      }

      h2 {
        margin-bottom: 10px;
        max-width: 364px;
      }

      .catchphrase {
        margin-bottom: 30px;
      }
    }

    /* merit */
    .merit {
      .merit-list {
        grid-template-columns: repeat(2, 1fr);
      }
    }
  }
}

@media screen and (min-width: 1024px) {
  .about {
    padding-top: 100px;
    padding-bottom: 80px;
    background-image: url("../images/dok_bg.svg");
    background-position: top center;
    background-size: contain;

    .about-wrapper {
      margin-bottom: 120px;
      min-height: auto;
      display: flex;
      justify-content: space-between;
      align-items: center;

      .about-mv {
        padding-right: 30px;
      }

      .about-img {
        display: block;
        max-width: 390px;
        flex-shrink: 0;
      }

      .about-img-sp {
        display: none;
      }
    }

    .merit {
      .merit-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
      }
    }
  }
}

@media screen and (min-width: 1280px) {
  .about {
    .about-wrapper {
      margin-bottom: 160px;
      background-size: 1440px auto;

      h2 {
        margin-bottom: 10px;
        max-width: 364px;
        text-align: left;
      }

      .catchphrase {
        font-size: 2rem;
      }

      .about-mv {
        padding-right: 60px;
      }

      .about-img {
        max-width: 450px;
      }
    }

    /* merit */
    .merit {
      .merit-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 50px;

        .list-item {
          h4 {
            font-size: 1.5rem;
          }
        }
      }
    }
  }
}

/* download */
.download {
  padding-bottom: 60px;
  color: var(--color-white);
  background: var(--color-dark-gray);

  .download-wrapper {
    padding: 30px;
    border: 8px solid var(--color-red);
    background-image: url("../images/dok_bg02_sp.png");
    background-repeat: no-repeat;
    background-size: cover;

    .text {
      margin-bottom: 20px;
      font-size: 1.125rem;
    }

    .link {
      h4 {
        padding-bottom: 5px;
        margin:0 auto 30px;
        width: fit-content;
        position: relative;
        font-size: 1rem;
        font-weight: 700;
        text-align: center;
        border-bottom: 3px solid var(--color-white);

        &::before {
          position: absolute;
          top: 100%;
          right: 100px;
          transform: skew(-25deg);
          height: 15px;
          width: 15px;
          border-right: 3px solid var(--color-white);
          background-color: var(--color-dark-gray);
          content: "";
        }
      }
    }
  }
}

@media screen and (min-width: 768px) {
  .download {
    .download-wrapper {
      display: flex;
      justify-content: space-between;
    }
  }
}

@media screen and (min-width: 1280px) {
  .download {
    .download-wrapper {
      padding: 60px;
      margin-left: auto;
      margin-right: auto;
      width: 1080px;
      border: 8px solid var(--color-red);
      background-image: url("../images/dok_bg02.png");

      .text {
        font-size: 1.75rem;
      }

      .link {
        h4 {
          font-size: 1.125rem;
        }
      }
    }
  }
}

/* features */
.features {
  padding-top: 60px;

  .headline-catchphrase {
    color: var(--color-white);
  }

  .features-list {
    display: grid;
    gap: 30px;

    .list-item {
      padding: 30px;
      background-color: var(--color-light-gray);
      border-radius: 10px;

      .title {
        margin-bottom: 15px;
        width: 100%;
        font-size: 1.125rem;
        text-align: center;
      }

      figure {
        text-align: center;
      }

      .list-sub {
        li {
          padding-left: 1rem;
          position: relative;

          &:not(:last-child) {
            margin-bottom: 5px;
          }

          &::before {
            content: "・";
            position: absolute;
            font-size: 1.5rem;
            font-weight: 700;
            position: absolute;
            left: -6px;
            top: -8px;
          }
        }
      }

      .name {
        margin-bottom: 30px;
        width: 100%;
        text-align: center;

        span {
          padding: 5px 10px;
          font-size: 1.125rem;
          background: var(--color-white);
          border: 1px solid var(--color-text);
        }
      }
    }
  }
}

@media screen and (min-width: 768px) {
  .features {
    padding-top: 60px;

    .features-list {
      grid-template-columns: repeat(2, 1fr);
      gap: 45px;
    }
  }
}

@media screen and (min-width: 1280px) {
  .features {
    padding-top: 80px;

    .features-list {
      grid-template-columns: repeat(2, 1fr);
      gap: 60px;
    }
  }
}

/* reason */
.reason {
  padding-top: 60px;
  padding-bottom: 60px;

  .headline-catchphrase {
    color: var(--color-white);
  }

  .reason-table-wrapper {
    margin-right: -20px;
    padding-bottom: 20px;
    padding-right: 20px;
    overflow-x: auto;
  }

  .reason-table {
    width: 100%;
    min-width: 680px;
    border-collapse: collapse;

    thead {
      th {
        padding: 15px;
        font-size: 1.125rem;
        font-weight: 700;
        line-height: 1;
        text-align: center;
        border-radius: 10px 10px 0 0;

        &.domestic {
          color: var(--color-white);
          background: var(--color-red);
        }

        &.overseas {
          color: var(--color-text);
          background: #eeeeee;
        }
      }
    }

    tbody {
      border-radius: 0 10px 10px 10px;

      td {
        padding: 20px;
        width: 290px;
        text-align: center;
        vertical-align: middle;
        box-shadow: inset 1px 1px #cccccc;
        background-color: var(--color-light-gray);

        ul {
          margin-top: 10px;

          li {
            padding-left: 0.875rem;
            text-indent: -0.875rem;
            font-size: 0.875rem;
            text-align: left;
          }
        }

        p {
          font-size: 0.875rem;
          line-height: 1.5;
        }

        figure {
          margin-bottom: 5px;
        }

        &.domestic {
          background: #FFF2F2;
          box-shadow: inset 8px 0 var(--color-red), inset -8px 0 var(--color-red);
          border-bottom: 1px solid #cccccc;
        }
      }

      th {
        font-size: 1rem;
        font-weight: 700;
        text-align: center;
        vertical-align: middle;
        box-shadow: inset 1px 1px #cccccc;
        background-color: var(--color-light-gray);
      }

      tr {
        &:first-child th {
          border-radius: 10px 0 0 0;
        }

        &:last-child {
          th {
            border-radius: 0 0 0 10px;
          }

          td {
            &.domestic {
              border-bottom: 1px solid var(--color-red);
              box-shadow: inset 8px 0 var(--color-red), inset -8px -8px var(--color-red);
            }

            &:last-child {
              border-radius: 0 0 10px 0;
            }
          }
        }
      }
    }
  }
}

@media screen and (min-width: 768px) {
  .reason {
    .reason-table-wrapper {
      margin-right: 0;
      padding-bottom: 0;
      padding-right: 0;
    }

    .reason-table {
      margin: 0 auto;
    }
  }
}

@media screen and (min-width: 1024px) {
  .reason {
    .reason-table {
      width: 100%;

      tbody {
        th {
          font-size: 1.125rem;
        }

        td {
          padding: 30px;
          width: 394px;

          ul {
            li {
              padding-left: 1rem;
              text-indent: -1rem;
              font-size: 1rem;
            }
          }

          p {
            font-size: 1rem;
          }

          figure {
            margin-bottom: 10px;
          }
        }
      }
    }
  }
}

@media screen and (min-width: 1280px) {
  .reason {
    padding-top: 80px;
    padding-bottom: 80px;

    .reason-table {
      width: 964px;
      min-width: auto;

      thead {
        th {
          padding: 20px;
          font-size: 1.25rem;
        }
      }

      tbody {
        th {
          font-size: 1.25rem;
        }

        td {
          padding: 30px;
          width: 394px;
        }
      }
    }
  }
}

/* cta */
.cta {
  padding-top: 140px;
  padding-bottom: 60px;
  background-color: var(--color-white);
  background-image: url("../images/arrow_down_red.svg");
  background-repeat: no-repeat;
  background-position: top 60px center;
  overflow: hidden;

  .cta-headline {
    margin-bottom: 40px;
    color: var(--color-text);

    span {
      color: var(--color-red);
    }
  }

  .cta-merit {
    margin-bottom: 30px;

    li {
      padding-left: 30px;
      font-size: 1.125rem;
      font-weight: 700;
      background-image: url("../images/icon_check_red.svg");
      background-repeat: no-repeat;
      background-size: 17px 12px;
      background-position: top 14px left;
    }
  }

  .ebook {
    padding: 30px 20px;
    margin-bottom: 40px;
    color: var(--color-white);
    border-top: 8px solid var(--color-red);
    background: var(--color-dark-gray);

    .ebook-wrap {
      display: grid;
      align-items: center;

      h5 {
        padding: 5px 10px;
        margin-bottom: 20px;
        width: fit-content;
        color: var(--color-text);
        font-size: 1rem;
        background: var(--color-light-gray);
      }

      ul {
        margin-bottom: 20px;

        li {
          padding-left: 1rem;
          text-indent: -1rem;
        }
      }

      .ebook-details {
        order: 2;
      }

      .ebook-cover {
        order: 1;
        margin-bottom: 30px;
        display: block;
        transition: all 0.3s;

        &:hover {
          opacity: 0.8;
        }
      }
    }
  }

  .cta-link {
    a {
      padding-right: 20px;
      padding-bottom: 5px;
      display: block;
      background-repeat: no-repeat;
      background-position: center right 10px;
      transition: all 0.3s;

      &:hover {
        background-position: center right 0;
        opacity: 0.8;
      }

      p {
        font-size: 1.125rem;
        font-weight: 700;
      }
    }

    .service {
      margin-bottom: 30px;
      color: var(--color-red);
      background-image: url("../images/arrow_right_red.svg");
      border-bottom: 3px solid var(--color-red);
    }

    .inquiry {
      background-image: url("../images/arrow_right.svg");
      border-bottom: 3px solid var(--color-text);
    }
  }
}

@media screen and (min-width: 768px) {
  .cta {
    .cta-merit {
      margin: 0 auto 40px;
      width: fit-content;

      li {
        font-size: 1.25rem;
        background-size: 17px 12px;
        background-position: center left;
      }
    }

    .ebook {
      padding: 60px;
    }

    .cta-link {
      display: flex;
      justify-content: space-around;
      gap: 40px;

      a {
        padding-right: 40px;

        p {
          font-size: 1.25rem;
        }
      }

      .service {
        margin-bottom: 0;
      }
    }
  }
}

@media screen and (min-width: 1024px) {
  .cta {
    .ebook {
      padding: 40px 30px;

      .ebook-wrap {
        grid-template-columns: repeat(2, 1fr);

        .ebook-details {
          order: 1;
        }

        .ebook-cover {
          order: 2;
          margin-bottom: 0;
        }

        .btn {
          margin-left: 0;
        }
      }
    }

    .cta-link {
      justify-content: center;
      gap: 60px;
    }
  }
}

@media screen and (min-width: 1280px) {
  .cta {
    padding-top: 180px;
    padding-bottom: 80px;
    background-position: top 80px center;

    .cta-merit {
      li {
        font-size: 1.5rem;
      }
    }

    .cta-headline {
      margin-bottom: 40px;
    }

    .ebook {
      padding: 60px;
      border-top: none;
      border-left: 8px solid var(--color-red);

      .ebook-wrap {
        grid-template-columns: repeat(2, 1fr);

        h5 {
          font-size: 1.125rem;
        }
      }
    }

    .cta-link {
      a {
        p {
          font-size: 1.375rem;
        }
      }
    }
  }
}

/* comparison */
.comparison {
  padding-top: 60px;
  padding-bottom: 60px;
  background: var(--color-dark-gray);
  overflow: hidden;

  .comparison-title {
    padding-bottom: 100px;
    background-image: url("../images/phy_arrow_left_sp.png"), url("../images/phy_arrow_right_sp.png");
    background-repeat: no-repeat, no-repeat;
    background-position: bottom 40px left, bottom 40px right;
    background-size: 149px 73px, 149px 73px;

    .headline-catchphrase {
      color: var(--color-white);
      font-size: 1.125rem;
      text-align: center;
    }
  }

  .comparison-table-wrapper {
    margin-right: -20px;
    padding-bottom: 20px;
    padding-right: 20px;
    overflow-x: auto;
  }

  .comparison-table {
    width: 100%;
    min-width: 1020px;
    border-collapse: collapse;

    thead {
      th {
        padding: 5px 40px 0;
        border-radius: 10px 10px 0 0;

        &.dok {
          background: linear-gradient(#e7701a 0%, #ed1c24 100%);
        }

        &.vrt {
          background: linear-gradient(#3ca318 0%, #157328 100%);
        }

        &.phy {
          background: linear-gradient(#5494ef  0%, #275ca8 100%);
        }
      }
    }

    tbody {
      tr {
        th {
          padding: 10px;
          color: var(--color-white);
          font-size: 1rem;
          font-weight: 700;
          text-align: center;
          vertical-align: middle;
          background: #A8A8A8;
          border-bottom: 1px solid #cccccc;

          small {
            font-size: 1.3rem;
          }
        }

        td {
          padding: 20px;
          width: 300px;
          vertical-align: middle;
          background: var(--color-white);
          border-bottom: 1px solid #cccccc;

          &:nth-child(odd) {
            background: var(--color-light-gray);
          }

          p {
            font-size: 0.875rem;
            line-height: 1.5;
            text-align: center;
          }

          ul {
            li {
              font-size: 0.875rem;

              small {
                font-size: 0.75rem;
              }
            }
          }
        }

        &:first-child {
          th {
            border-radius: 10px 0 0 0;
          }
        }

        &:last-child {
          th {
            border-radius: 0 0 0 10px;
            border-bottom: none;
          }

          td {
            border-bottom: none;
          }

          td:last-child {
            border-radius: 0 0 10px 0;
          }
        }
      }
    }

    .form_link {
      text-decoration: underline;

      &:hover {
        text-decoration: none;
      }
    }
  }
}

@media screen and (min-width: 768px) {
  .comparison {
    .comparison-title {
      padding-bottom: 0;
      background-position: center left, center right;

      .headline-catchphrase {
        font-size: 1rem;
      }
    }

    .comparison-table-wrapper {
      margin-right: -40px;
    }
  }
}

@media screen and (min-width: 1024px) {
  .comparison {
    .comparison-table {
      min-width: 1200px;

      thead {
        th {
          padding: 20px 50px 15px;
        }
      }

      tbody {
        tr {
          th {
            padding: 30px 15px;
            font-size: 1.25rem;

            small {
              font-size: 1rem;
            }
          }

          td {
            padding: 25px 30px;
            width: 342px;

            p {
              font-size: 1rem;
            }

            ul {
              li {
                font-size: 1rem;

                small {
                  font-size: 0.875rem;
                }
              }
            }
          }
        }
      }
    }
  }
}

@media screen and (min-width: 1280px) {
  .comparison {
    padding-top: 80px;
    padding-bottom: 80px;

    .comparison-title {
      background-image: url("../images/phy_arrow_left.png"), url("../images/phy_arrow_right.png");
      background-position: center left, center right;
      background-size: contain, contain;

      .headline-catchphrase {
        font-size: 1.5rem;
      }
    }

    .comparison-table-wrapper {
      margin-right: 0;
      padding-bottom: 0;
      padding-right: 0;
    }

    .comparison-table {
      margin: 0 auto;
      width: 1200px;
      min-width: auto;
    }
  }
}

/* cta-bottom */
.cta-bottom {
  padding-top: 60px;
  padding-bottom: 60px;
  background: var(--color-light-gray);

  .headline {
    color: var(--color-text);
    font-size: 1.75rem;

    span {
      color: var(--color-red);
    }
  }

  .headline-catchphrase {
    font-size: 1.125rem;
    text-align: center;
  }

  .cta-bottom-wrapper {
    display: grid;
    gap: 30px;

    li {
      display: grid;
      grid-template-rows: subgrid;
      grid-row: span 2;
      gap: 20px;

      p {
        font-size: 1rem;
        font-weight: 700;
        text-align: center;
      }

      .btn {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        color: var(--color-white);
        font-size: 1.5rem;
        text-align: center;
      }
    }
  }
}

@media screen and (min-width: 768px) {
  .cta-bottom {
    .headline-catchphrase {
      margin-bottom: 50px;
      font-size: 1.5rem;
    }

    .cta-bottom-wrapper {
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;

      li {
        p {
          font-size: 1.25rem;
          line-height: 1.5;
        }
      }
    }

  }
}

@media screen and (min-width: 1280px) {
  .cta-bottom {
    padding-top: 80px;
    padding-bottom: 80px;

    .cta-bottom-wrapper {
      gap: 30px;

      li {
        p {
          font-size: 1.125rem;
        }

        .btn {
          height: 85px;
          font-size: 1.5rem;
        }
      }
    }
  }
}

/* dok */
.dok {
  .features {
    .features-list{
      .list-item {
        display: flex;
        flex-direction: column;

        .aad-wrap {
          display: flex;
          flex-direction: column;
        }

        .aad {
          padding-top: 20px;
          width: 100%;

          &:first-of-type {
            padding-top: 0;
            padding-bottom: 20px;
            border-bottom: 1px dotted #A8A8A8;
          }
        }

        &:first-child {
          .name {
            span {
              color: var(--color-red);
              border: 1px solid var(--color-red);
            }
          }

          .aad {
            &:first-of-type {
              border-bottom: 1px dotted var(--color-red);
            }

            .title {
              color: var(--color-red);
            }
          }
        }
      }
    }
  }
}

@media screen and (min-width: 1280px) {
  .dok {
    .features {
      .features-list{
        .list-item {
          .aad-wrap {
            flex-direction: row;
          }

          .aad {
            padding-top: 0;
            padding-left: 20px;
            width: 50%;

            &:first-of-type {
              padding-left: 0;
              border-bottom: none;
              border-right: 1px dotted #A8A8A8;
            }
          }

          &:first-child {
            .aad {
              &:first-of-type {
                padding-bottom: 0;
                border-bottom: none;
                border-right: 1px dotted var(--color-red);
              }
            }
          }
        }
      }
    }
  }
}

/* vrt */
.vrt {
  .headline2::before {
    background-color: var(--color-green);
  }

  .about {
    background-image: url("../images/vrt_bg_sp.png");

    .merit {
      .headline2::before {
        background-color: var(--color-green);
      }

      .merit-list {
        .list-item {
          h4 {
            span {
              color: var(--color-green);
            }
          }
        }
      }
    }
  }

  .download {
    .download-wrapper {
      background-image: url("../images/vrt_bg02_sp.png");
      border-color: var(--color-green);
    }
  }

  .cta {
    background-image: url("../images/arrow_down_green.svg");

    .ebook {
      border-top: 8px solid var(--color-green);
    }

    .cta-headline {
      span {
        color: var(--color-green);
      }
    }

    .cta-merit {
      li {
        background-image: url("../images/icon_check_green.svg");
      }
    }

    .cta-link {
      .service {
        color: var(--color-dark-green);
        background-image: url("../images/arrow_right_green.svg");
        border-bottom: 3px solid var(--color-dark-green);
      }
    }
  }

  .features {
    background: var(--color-dark-gray);

    .features-list {
      .list-item {
        li::before {
          color: var(--color-green);
        }
      }
    }
  }

  .effects {
    overflow: hidden;

    .effects-wrapper {
      padding-top: 60px;
      padding-bottom: 60px;
      background: var(--color-dark-gray);

      .headline-catchphrase {
        color: var(--color-white);
      }

      .effects-list {
        padding: 30px 20px;
        background: var(--color-gray);
        border: 3px solid #707070;
        border-radius: 10px;

        h4 {
          margin-bottom: 20px;
          color: var(--color-white);
          font-size: 1.25rem;
          text-align: center;

          span {
            color: var(--color-green);
          }
        }

        ul {
          li {
            color: var(--color-white);
            font-size: 1rem;
            text-align: center;

            &:not(:last-child) {
              margin-bottom: 10px;
            }
          }
        }
      }
    }

    .effects-wrapper2 {
      padding-top: 60px;
      padding-bottom: 60px;

      .effects-details {
        .item {
          display: flex;
          flex-direction: column;
          gap: 20px;

          &:not(:last-child) {
            margin-bottom: 40px;
          }

          .text {
            order: 1;
            color: var(--color-white);

            h4 {
              margin-bottom: 10px;
              font-size: 1.375rem;

              span {
                display: block;
                color: var(--color-green);
                font-size: 1rem;
                line-height: 1.5;
              }
            }

            p {
              margin-bottom: 20px;
            }

            .point-list {
              padding: 20px;
              border: 1px solid #777777;
              border-radius: 10px;
            }
          }

          .picture {
            order: 2;
          }
        }
      }
    }
  }
}

@media screen and (min-width: 768px) {
  .vrt {
    .features {
      .features-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;

        .list-item {
          display: grid;
          grid-template-rows: subgrid;
          grid-row: span 3;
          gap: 0;
        }
      }
    }

    .effects {
      .effects-wrapper2 {
        .effects-details {
          .item {
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            gap: 0;

            &:not(:last-child) {
              margin-bottom: 60px;
            }

            .text {
              width: 50%;
              order: 0;

              h4 {
                font-size: 1.75rem;

                span {
                  font-size: 1.125rem;
                }
              }
            }

            .picture {
              width: 46%;
              order: 0;
            }
          }
        }
      }
    }
  }
}

@media screen and (min-width: 1024px) {
  .vrt {
    .about {
      background-image: url("../images/vrt_bg.svg");
    }

    .features {
      .features-list {
        grid-template-columns: repeat(3, 1fr);
      }
    }
  }
}

@media screen and (min-width: 1280px) {
  .vrt {
    .download {
      .download-wrapper {
        background-image: url("../images/vrt_bg02.png");
      }
    }

    .cta {
      .ebook {
        border-top: none;
        border-left: 8px solid var(--color-green);
      }
    }

    .features {
      .features-list {
        margin-left: auto;
        margin-right: auto;
        max-width: 1080px;
      }
    }

    .effects {
      .effects-wrapper {
        padding-top: 80px;
        padding-bottom: 80px;

        .headline-catchphrase {
          color: var(--color-white);
        }

        .effects-list {
          padding: 30px;
          margin-left: auto;
          margin-right: auto;
          width: 964px;

          h4 {
            font-size: 1.75rem;
          }

          ul {
            li {
              font-size: 2.2rem;
            }
          }
        }
      }

      .effects-wrapper2 {
        padding-top: 60px;
        padding-bottom: 80px;

        .effects-details {
          margin-left: auto;
          margin-right: auto;
          width: 1080px;

          .item {
            &:not(:last-child) {
              margin-bottom: 80px;
            }
          }
        }
      }
    }
  }
}

/* phy */
.phy {
  .headline2::before {
    background-color: var(--color-blue);
  }

  .about {
    background-color: var(--color-dark-gray);
    background-image: url("../images/phy_mv_bg_sp.png");

    .about-wrapper {
      h2 {
        margin-bottom: 30px;
      }

      .picture {
        margin-bottom: 40px;
      }

      .about-img-sp {
        padding: 0 0 40px;
      }
    }

    .merit {
      .headline2::before {
        background-color: var(--color-blue);
      }

      .merit-list {
        .list-item {
          h4 {
            span {
              color: var(--color-blue);
            }
          }
        }
      }
    }
  }

  .download {
    .download-wrapper {
      background-image: url("../images/phy_bg02_sp.png");
      border-color: var(--color-blue);
    }
  }

  .cta {
    background-image: url("../images/arrow_down_blue.svg");

    .ebook {
      border-top: 8px solid var(--color-blue);
    }

    .cta-headline {
      span {
        color: var(--color-blue);
      }
    }

    .cta-merit {
      li {
        background-image: url("../images/icon_check_blue.svg");
      }
    }

    .cta-link {
      .service {
        color: var(--color-dark-blue);
        background-image: url("../images/arrow_right_blue.svg");
        border-bottom: 3px solid var(--color-dark-blue);
      }
    }
  }

  .features {
    .features-list {
      .list-item {
        li::before {
          color: var(--color-blue);
        }
      }
    }
  }

  .reason {
    .reason-table {
      thead {
        th {
          &.domestic {
            background: var(--color-dark-blue);
          }
        }
      }

      tbody {
        td {
          &.domestic {
            background: #E8F1FD;
            box-shadow: inset 8px 0 var(--color-dark-blue), inset -8px 0 var(--color-dark-blue);
            border-bottom: 1px solid #cccccc;
          }
        }

        tr:last-child {
          td {
            &.domestic {
              border-bottom: 1px solid var(--color-dark-blue);
              box-shadow: inset 8px 0 var(--color-dark-blue), inset -8px -8px var(--color-dark-blue);
            }
          }
        }
      }
    }
  }
}

@media screen and (min-width: 768px) {
  .phy {
    .about {
      background-image: url("../images/phy_mv_bg_tab.png");
      background-size: contain;
      background-position: top center;
    }

    .features {
      .features-list {
        grid-template-columns: repeat(2, 1fr);

        .list-item {
          display: grid;
          grid-template-rows: subgrid;
          grid-row: span 2;
          gap: 0;
        }
      }
    }
  }
}

@media screen and (min-width: 1024px) {
  .phy {
    .about {
      .about-wrapper {
        align-items: center;
      }
    }
  }
}

@media screen and (min-width: 1280px) {
  .phy {
    .about {
      background-image: url("../images/phy_mv_bg_pc.png");

      .about-wrapper {
        margin-bottom: 120px;
        position: relative;

        h2 {
          margin-bottom: 10px;
        }

        .picture {
          display: none;
        }

        .about-img {
          max-width: 480px;
        }
      }
    }

    .download {
      .download-wrapper {
        background-image: url("../images/phy_bg02.png");
      }
    }

    .cta {
      .ebook {
        border-top: none;
        border-left: 8px solid var(--color-blue);
      }
    }

    .features {
      .features-list {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
      }
    }
  }
}

/* step */
.step {
  padding-top: 60px;
  padding-bottom: 60px;
  background: var(--color-gray);

  .step-list {
    .list-item {
      margin-bottom: 30px;
      position: relative;
      display: flex;
      flex-direction: column;
      background: var(--color-white);
      border-radius: 5px;
      box-shadow: 0px 0px 22px rgba(0, 0, 0, 0.08);

      &::after {
        content: "";
        position: absolute;
        display: block;
        width: 56px;
        height: 19px;
        bottom: -19px;
        left: calc(50% - 28px);
        background: url("../images/icon-arrow-blue-big.svg") 0 0 no-repeat;
      }

      &:last-child::after {
        content: none;
      }

      .number {
        padding: 10px;
        flex-shrink: 0;
        display: grid;
        place-items: center;
        place-content: center;
        color: var(--color-white);
        font-size: 1.3rem;
        line-height: 1.1;
        text-align: center;
        background: var(--color-blue);
        border-radius: 5px 5px 0 0;

        span {
          font-size: 3rem;
          display: block;
        }
      }

      .details {
        padding: 30px 20px;
        flex-grow: 1;
      }

      .user {
        padding: 5px 10px;
        margin-bottom: 15px;
        display: inline-block;
        color: var(--color-white);
        line-height: 1;
        background: var(--color-blue2);
      }

      .name {
        margin-bottom: 15px;
        color: var(--color-blue);
        font-size: 1.25rem;
      }

      .step-btn {
        margin-top: 20px;
      }
    }
  }
}

@media screen and (min-width: 1280px) {
  .step {
    padding-top: 100px;

    .step-list {
      margin: 0 auto;
      max-width: 970px;

      .list-item {
        flex-direction: row;

        .details {
          padding: 30px 40px;
          position: relative;
        }

        .number {
          width: 90px;
          color: var(--color-white);
          font-size: 1.125rem;
          background: var(--color-blue);
          border-radius: 5px 0 0 5px;

          span {
            font-size: 2.375rem;
          }
        }

        .name {
          font-size: 1.375rem;
        }
      }

      .step-btn {
        margin-top: 0;
        width: 200px;
        position: absolute;
        right: 40px;
        bottom: 30px;
      }
    }
  }
}
