@charset "utf-8";

/*共通 設定
---------------------------------------------------------*/
@font-face {
  font-family: "MyFont";
  src: url("font/Roboto-Regular.ttf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "MyFont";
  src: url("font/Roboto-Medium.ttf") format("opentype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "MyFont";
  src: url("font/Roboto-SemiBold.ttf") format("opentype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "MyFont";
  src: url("font/Roboto-Bold.ttf") format("opentype");
  font-weight: 700;
  font-style: normal;
}

:root {
  --clr_main: #1837A6;
  --clr_gold: #C0A060;
  --clr_gray: #F5F5F5;
  --clr-navy: #1C283A;
}

.en {
  font-family: "MyFont";
  font-weight: 400;
  line-height: 1;
}

.txt {
  line-height: 1.8;
}

/*header
---------------------------------------------------------*/

#header {
  position: fixed;
  width: 100%;
  z-index: 9999;

  .inner {
    position: relative;
    width: 100%;
    padding: 2.5rem 4.5rem 3.5rem 4rem;

    &::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 85%;
      background: #fff;
      border-bottom: 0.1rem solid #f5f5f5;
      opacity: 0;
      transition: opacity 0.3s ease;
    }
  }

  &.is-scroll {
    .inner {

      &::before {
        opacity: 1;
      }

    }
  }

  .wrap {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
  }

  .logo {
    width: 19.7rem;
  }

  .link-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3.3rem;
  }

  .nav-list {
    display: flex;
    gap: 2.4rem;
    font-weight: 500;

    a:hover {
      opacity: 0.7;
    }
  }

  .c-btn {
    .btn-conts {
      font-size: 1.8rem;
      padding: 2rem 3.2rem;
    }
  }
}

/*footer
---------------------------------------------------------*/
#footer {
  padding: 8.6rem 0 3.2rem;
  background-color: #fff;
  position: relative;
  z-index: 1;

  .wrap {
    display: flex;
    justify-content: space-between;
  }

  .logo {
    width: 19.7rem;
  }

  .link-group {
    .nav-list {
      display: flex;
      gap: 2.4rem;
      font-weight: 500;
    }

    .rule-list {
      display: flex;
      gap: 2.4rem;
      font-size: 1.2rem;
      margin-top: 1.4rem;

      a {
        color: #1E293B;
      }
    }
  }

  .copyright {
    display: block;
    text-align: right;
    font-size: 1.2rem;
    color: #AFAFAF;
    margin-top: 4rem;
  }

  .pagetop {
    position: absolute;
    right: 4rem;
    bottom: 4rem;
    width: 5.7rem;
    height: 5.7rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 50%;
    background-color: var(--clr-navy);

    img {
      width: 2.2rem;
      margin: 0 0 0.8rem;
    }

    .en {
      font-size: 1.2rem;
    }
  }

  a:hover {
    opacity: 0.7;
  }
}

/*共通 パーツ
---------------------------------------------------------*/
.sec-ttl {
  text-align: center;
  margin: 0 auto 6rem;

  .ttl {
    font-size: 3.2rem;
    font-weight: 700;
    letter-spacing: 0.05em;
  }

  .en {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 500;
    color: var(--clr_gold);
    margin-bottom: 1.6rem;

    &::before {
      content: '';
      position: relative;
      display: block;
      width: 3.5rem;
      aspect-ratio: 3.5/3;
      margin-right: 0.7rem;
      background: url(../img/sec-ttl_icon.png) no-repeat;
      background-size: cover;
    }
  }

  .txt {
    margin-top: 3.2rem;
  }
}

.c-btn {
  display: block;
  width: fit-content;

  .btn-conts {
    display: grid;
    place-content: center;
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #fff;
    border-radius: 10rem;
    background-color: var(--clr_main);
    box-shadow: 0.8rem 0.8rem 1rem 0px rgba(0, 0, 0, 0.1);
    transition: background-color 0.2s ease;
  }

  &:hover {
    .btn-conts {
      background-color: var(--clr_gold);
    }
  }
}

#fix-btn {
  position: fixed;
  translate: 110% 0;
  right: 0;
  bottom: 2rem;
  display: flex;
  width: 41.6rem;
  border-radius: 2rem 0 0 2rem;
  background-color: #fff;
  box-shadow: 0 2rem 2rem 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: translate 0.3s ease;
  z-index: 1;

  a {
    width: calc(100% - 2.8rem);
  }

  img {
    transition: opacity 0.2s ease
  }

  a:hover {

    opacity: 1;

    img {
      opacity: 0.7;
    }

  }

  &.is-show {
    translate: 70% 0;
  }

  &.is-show.is-active {
    translate: 0 0;
  }

  .togglearea {
    cursor: pointer;
    width: 2.8rem;
  }

  &.is-show.is-active .togglearea {
    rotate: 180deg;
  }
}

/*fv
---------------------------------------------------------*/
.sec-fv {
  overflow: hidden;
  padding-bottom: 2.5rem;

  .container {
    position: relative;
    max-width: 122rem;
    width: 95%;

    &::before {
      content: '';
      position: absolute;
      rotate: -130deg;
      top: -36rem;
      right: -52rem;
      width: 117rem;
      height: 74rem;
      border-radius: 18.6rem;
      background-color: var(--clr_gray);
    }
  }

  .fv-area {
    position: relative;
    display: flex;
    gap: 8rem;
    padding-top: 14.7rem;
  }

  .box {
    translate: -10% 0;
    opacity: 0;

    .lead {
      font-size: 3.6rem;
      font-weight: 700;
    }

    .copy {
      font-size: 3.8rem;
      line-height: 1.3;
      color: var(--clr_gold);

      strong {
        font-size: 5.1rem;
      }
    }

    .txt {
      font-size: 1.8rem;
      margin-top: 0.6rem;
    }

    .price-group {
      display: flex;
      align-items: flex-end;
      gap: 1.2rem;
      margin-top: 2.5rem;
    }

    .special {
      width: 7.5rem;
      height: 7.5rem;
      display: grid;
      place-content: center;
      font-size: 1.6rem;
      font-weight: 500;
      line-height: 1.2;
      background: linear-gradient(150.52deg, #FFE6B5 36.15%, #C0A060 109.83%);
      border-radius: 50%;
    }

    .price {
      position: relative;
      color: var(--clr_main);

      .number {
        font-size: 6.7rem;
        font-weight: 700;
      }

      .unit {
        font-size: 4rem;
        font-weight: 900;
      }

      .license {
        position: absolute;
        top: -1.8rem;
        left: 0;
        display: block;
        font-size: 1.3rem;
        font-weight: 500;
      }

      .tax {
        position: absolute;
        top: 0;
        right: -0.7rem;
        display: block;
        font-size: 1.3rem;
      }
    }

    .taxin {
      position: absolute;
      translate: 0 100%;
      right: 0;
      bottom: 0;
      font-size: 1.3rem;
      font-weight: 500;
      color: var(--clr_main);
    }

    .c-btn {
      margin-top: 5.7rem;

      .btn-conts {
        padding: 2.2rem 7.6rem;
      }
    }
  }

  .image {
    translate: 10% 0;
    opacity: 0;
    width: 66.4rem;
    height: max-content;
    border-radius: 1.2rem;
    overflow: hidden;
    box-shadow: 0 0.6rem 1.2rem 0 #00317B26;
  }
}

/*problem
---------------------------------------------------------*/
.sec-problem {
  .list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;

    .item {
      position: relative;
      border-radius: 3rem;
      background-color: var(--clr_gray);
      padding: 3.7rem 2rem 0;
      aspect-ratio: 1/1;
    }

    .lead {
      text-align: center;
      font-size: 2.2rem;
      font-weight: 700;
    }

    .image {
      width: 27.8rem;
      margin: 2rem auto 0;
    }

    .txt {
      position: absolute;
      bottom: -2rem;
      left: 2.6rem;
      font-size: 2rem;
      font-weight: 700;
      color: #fff;

      .mask {
        display: inline-block;
        overflow: hidden;
        translate: -105% 0;
      }

      .line {
        display: inline-block;
        background-color: #111;
        padding: 0.6rem 1rem;
        translate: 105% 0;

        +.line {
          margin-top: 0.6rem;
        }
      }
    }
  }

  .solution-area {
    position: relative;
    text-align: center;
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 10%, rgba(237, 237, 237, 1) 100%);
    margin-top: 8rem;

    &::before {
      content: '';
      position: absolute;
      top: -1px;
      left: 0;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 12rem 50vw 0 50vw;
      border-color: #fff transparent transparent transparent;

    }

    .lead {
      position: relative;
      font-size: 3.2rem;
      font-weight: 700;
      z-index: 1;
    }

    .txt-group {
      margin-top: 10rem;

      .gold {
        font-size: 4.8rem;
        font-weight: 700;
        color: var(--clr_gold);
      }

      .sub {
        font-size: 2.4rem;
        font-weight: 700;
        color: var(--clr-navy);
      }
    }

    .image {
      border-radius: 4rem;
      overflow: hidden;
      margin-top: 2.8rem;
    }
  }
}

/*features
---------------------------------------------------------*/
.sec-features {
  border-radius: 8rem 8rem 0 0;
  background-color: var(--clr_gray);

  .features-area {
    display: flex;
    gap: 2.1rem;
  }

  .features-group {
    width: 55rem;

    .item {
      cursor: pointer;
      position: relative;
      display: flex;
      align-items: center;
      gap: 3.1rem;
      width: calc(100% - 3.7rem);
      padding: 2.4rem 2rem 2.4rem 2.6rem;
      border-radius: 1rem;
      background-color: #fff;

      +.item {
        margin-top: 1.3rem;
      }

      .en {
        text-align: center;
        min-width: 5.6rem;
        font-size: 4.2rem;
        font-weight: 700;

        .features {
          display: block;
          font-size: 1.2rem;
          font-weight: 400;
          margin-bottom: 0.5rem;
        }
      }

      .lead {
        position: relative;
        font-size: 2.4rem;
        font-weight: 700;
        z-index: 1;
      }

      &.is-active {
        color: #fff;
        background-color: var(--clr-navy);

        .gold {
          color: #E5C991;
        }

        &::after {
          content: '';
          position: absolute;
          top: 50%;
          right: -3.3rem;
          height: 75%;
          aspect-ratio: 1 / 1;
          background: var(--clr-navy);
          translate: 0 -50%;
          rotate: 45deg;
          border-radius: 1rem;
        }
      }
    }
  }

  .detail-group {
    position: relative;
    width: 54.4rem;

    .detail {
      +.detail {
        position: absolute;
        top: 0;
        left: 0;
      }

      &:not(.is-active) {
        opacity: 0;
        visibility: hidden;
      }

    }

    .image {
      border-radius: 2rem;
      overflow: hidden;
    }

    .txt {
      margin-top: 2.6rem;
    }
  }

  .c-btn {
    margin: 7.4rem auto 0;

    .btn-conts {
      padding: 3.4rem 6.5rem;
    }
  }
}

/*func
---------------------------------------------------------*/
.sec-func {
  .list {
    display: grid;
    gap: 3.7rem 3.2rem;
    grid-template-columns: repeat(4, 1fr);

    .item {

      .wrap {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        aspect-ratio: 1/1;
        background-color: #fff;
        border: 0.1rem solid #D0D0D0;
        border-radius: 2rem;
        padding: 3.4rem 1rem;
      }

      .image {
        text-align: center;
        height: 11.5rem;

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

      .lead {
        text-align: center;
        font-size: 2rem;
        font-weight: 700;
        margin-top: 1.2rem;
        color: var(--clr-navy);

        .gold {
          color: var(--clr_gold);
        }
      }

      .txt {
        margin-top: 1.6rem;
      }
    }
  }
}

/*price
---------------------------------------------------------*/
.sec-price {
  border-radius: 8rem 8rem 0 0;
  background-color: var(--clr_gray);

  .price-conts {
    +.price-conts {
      margin-top: 5.7rem;
    }

    .lead {
      text-align: center;
      font-size: 2.4rem;
      margin-bottom: 3.5rem;
    }

    .plan-list {
      display: grid;
      gap: 3rem;
      grid-template-columns: repeat(4, 1fr);

      .item {
        position: relative;
        display: flex;
        flex-direction: column;
        width: auto;
        border-radius: 2rem;
        background-color: #fff;
        padding: 2.2rem 2rem;
        transition: translate 0.3s ease;

        &:hover {
          translate: 0 -2%;
          box-shadow: 0 0 1rem 0px rgba(24, 55, 166, 0.1);
        }

        &.recommend {
          border: 0.4rem solid var(--clr_gold);

          .recommend-txt {
            position: absolute;
            translate: -50% -50%;
            top: 0;
            left: 50%;
            font-size: 1.6rem;
            font-weight: 700;
            color: #fff;
            background-color: var(--clr_gold);
            border-radius: 10rem;
            padding: 0.4rem 2.7rem;
          }

          .name {
            color: #fff;
            background-color: var(--clr-navy);
          }
        }
      }

      .name {
        text-align: center;
        font-size: 2rem;
        border-radius: 0.6rem;
        background-color: #F5F5F5;
        padding: 0.1rem 0;
      }

      .txt {
        text-align: center;
        display: grid;
        place-content: center;
        font-size: 1.4rem;
        line-height: 1.5;
        min-height: 6.6rem;
      }

      .data-group {
        position: relative;
        text-align: center;
        padding-top: 6rem;
      }

      &:not(:has(.standard)) .data-group {
        padding-top: 0;
      }

      .special {
        position: absolute;
        translate: -50% 0;
        top: 0;
        left: 50%;
        width: 21rem;
        font-size: 1.3rem;
        font-weight: 500;
        color: var(--clr_gold);
        border-radius: 0.4rem;
        border: 0.1rem solid var(--clr_gold);
      }

      .standard {
        position: absolute;
        translate: -50% 0;
        top: 3.8rem;
        left: 50%;
        width: 15.5rem;
        text-align: left;
        color: #AFAFAF;
      }

      .price {
        .en {
          font-size: 3.8rem;
          font-weight: 600;
        }

        .unit {
          font-feature-settings: "palt";
          font-size: 1.4rem;
          font-weight: 500;
        }
      }

      .sub {
        font-size: 1.2rem;
        margin-top: 1rem;
      }

      .add {
        font-size: 1.2rem;
        margin-top: 1rem;
      }

      .people-group {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        margin-top: auto;
        padding: 4rem 0 0.3rem;
        border-bottom: 0.1rem solid #D0D0D0;

        .number {
          font-size: 2.4rem;
          font-weight: 600;
          line-height: 1;
          padding: 0 0.5rem;
          margin-left: auto;
        }

        .unit {
          font-size: 1.4rem;
        }
      }

      .btn-conts {
        font-size: 1.4rem;
        padding: 1.2rem 0;
        margin-top: 2rem;
      }
    }

    .plan-table {

      +.plan-table {
        margin-top: 5.6rem;
      }


      tr {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 0 1.3rem;

        &:first-of-type th {
          display: grid;
          place-content: center;
          font-size: 1.8rem;
          font-weight: 600;
          border-radius: 1.2rem 1.2rem 0 0;
          padding: 0;
        }

        &:last-of-type td,
        &:last-of-type th {
          border-bottom: none;
        }

        &:nth-of-type(2) th {
          border-radius: 1.2rem 0 0 0;
        }

        &:last-of-type th {
          border-radius: 0 0 0 1.2rem;
        }
      }

      th {
        display: grid;
        place-content: center;
        padding: 1.8rem 0;
        background-color: #EDEDED;
        border-bottom: 0.1rem solid #D0D0D0;

        &:first-of-type:has(.theme) {
          place-content: center left;
          width: 24rem;
          background-color: initial;
          border-bottom: none;
        }

        &:first-of-type {
          width: 24rem;
        }
      }

      td {
        display: grid;
        place-content: center;
        background-color: #fff;
        border-bottom: 0.1rem solid #D0D0D0;
        font-weight: 500;
      }

      .theme {
        position: relative;
        text-align: left;
        font-size: 2rem;
        font-weight: 600;
        padding: 1.6rem 0 1.6rem 4rem;

        .icon {
          position: absolute;
          translate: 0 -50%;
          top: 50%;
          left: 0;
          display: block;
          width: 3.2rem;
        }
      }

      .is-point {
        color: var(--clr_main);
      }

      .is-check {
        &::before {
          content: '';
          width: 3.1rem;
          height: 2rem;
          background: url(../img/plan_check.svg) no-repeat;
          background-size: cover;
        }
      }

      .is-empty {
        &::before {
          content: '';
          width: 2rem;
          height: 0.2rem;
          background-color: #D0D0D0;
        }
      }
    }

    .attention {
      font-size: 1.2rem;
      margin: 1.3rem 0;
    }
  }

  .service-conts {
    margin-top: 9.4rem;

    .box {
      text-align: center;
      border-radius: 3rem;
      padding: 8rem;
      overflow: hidden;
      background: url(../img/price-service_bg_pc.jpg) no-repeat;
      background-size: cover;
    }

    .wrap {
      max-width: 73.7rem;
      border-radius: 2rem;
      background-color: #fff;
      padding: 3.6rem 4rem 3rem;
      margin: 0 auto;
    }

    .list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 8rem;
      margin-bottom: 2rem;

      .item {
        position: relative;
        font-size: 2rem;
        font-weight: 600;
        color: var(--clr_gold);
        border-radius: 1rem;
        background-color: var(--clr_gray);
        padding: 2.6rem 0;

        &:not(:last-of-type)::after {
          content: '';
          position: absolute;
          translate: 0 -50%;
          top: 50%;
          right: -5rem;
          width: 2.1rem;
          aspect-ratio: 1/1;
          background: url(../img/price-service_plus.png) no-repeat;
          background-size: cover;
        }
      }
    }
  }
}

/*case
---------------------------------------------------------*/
.sec-case {
  .splide__slide {
    background-color: var(--clr_gray);
    border-radius: 3rem;
    padding: 6rem 9.4rem 10rem;

    .wrap {
      display: flex;
      justify-content: space-between;
    }

    .case {
      font-size: 2rem;
      font-weight: 500;
      color: var(--clr_gold);
      margin-bottom: 6.4rem;
    }

    .lead {
      font-size: 2.4rem;
      margin-bottom: 0.8rem;
    }

    .note {
      font-size: 2rem;
    }

    .image {
      width: 40.5rem;
      border-radius: 2rem;
      overflow: hidden;
    }

    .txt {
      margin-top: 3.6rem;
    }
  }

  .splide__arrow {
    width: 5.7rem;
    height: 5.7rem;
    background: var(--clr_main);
    opacity: 1;

    &::before {
      content: '';
      position: absolute;
      translate: -50% -50%;
      top: 50%;
      left: 47%;
      width: 1.2rem;
      aspect-ratio: 6/11;
      background: url(../img/case_arrow.png) no-repeat;
      background-size: cover;
    }
  }

  .splide__arrow--prev {
    left: -9rem;
  }

  .splide__arrow--next {
    right: -9rem;

    &::before {
      rotate: 180deg;
      left: 53%;
    }
  }

  .splide__arrow svg,
  .splide__pagination {
    display: none;
    visibility: hidden;
  }
}

/*flow
---------------------------------------------------------*/
.sec-flow {
  border-radius: 8rem 8rem 0 0;
  background-color: var(--clr_gray);

  .list {
    .item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-radius: 2rem;
      background-color: #fff;
      overflow: hidden;

      +.item {
        margin-top: 4rem;
      }

      .wrap {
        display: flex;
        align-items: center;
        padding: 6rem 4.7rem;
      }

      .en {
        display: inline-block;
        min-width: 8.7rem;
        font-size: 4.2rem;
        font-weight: 700;
        color: var(--clr_gold);
        border-right: 0.1rem solid var(--clr_gold);
        padding: 0.7rem 0;

        .step {
          display: block;
          font-size: 1.2rem;
          font-weight: 400;
          margin-bottom: 0.5rem;
        }
      }

      .txt-group {
        padding: 0.4rem 0 0.4rem 4rem;
      }

      .lead {
        font-size: 2rem;
        margin-bottom: 0.8rem;
      }

      .image {
        width: 26.8rem;
      }

    }
  }
}

/*faq
---------------------------------------------------------*/
.sec-faq {
  .accordion {
    +.accordion {
      margin-top: 8.8rem;
    }

    .lead {
      text-align: center;
      font-size: 2.4rem;
      font-weight: 600;
      color: var(--clr_gold);
      margin-bottom: 2.4rem;
    }

    .wrap {
      +.wrap {
        margin-top: 2.2rem;
      }
    }

    .theme {
      position: relative;
      cursor: pointer;
      background-color: var(--clr_gray);
      padding: 1.6rem 8rem;
      border-radius: 1rem;
      font-size: 2rem;
      font-weight: 600;

      .en {
        position: absolute;
        top: 0.8rem;
        left: 2.5rem;
        font-size: 4.2rem;
        font-weight: 700;
        color: var(--clr_gold);
      }

      &::after {
        content: '';
        position: absolute;
        rotate: 180deg;
        top: 2.6rem;
        right: 3.4rem;
        aspect-ratio: 11/6;
        width: 2.2rem;
        background: url(../img/accordion_arrow.png) no-repeat;
        background-size: contain;
        transition: rotate 0.3s ease;
      }

      &.is-active::after {
        rotate: 0deg;
      }
    }

    .answer {
      position: relative;
      padding: 2.4rem 2rem;
      display: none;

      .inner {
        display: flex;
        align-items: center;
        gap: 2.1rem;
      }

      .en {
        display: grid;
        place-content: center;
        min-width: 4.1rem;
        height: 4.1rem;
        border-radius: 50%;
        font-size: 2.4rem;
        font-weight: 700;
        color: #fff;
        background-color: var(--clr_gold);
      }
    }
  }
}

/*contact
---------------------------------------------------------*/
.sec-contact {
  border-radius: 8rem 8rem 0 0;
  background-color: var(--clr_gray);

  &:has(.thanks-group) {
    padding: 14rem 0 8rem;
    border-radius: 0;
  }

  .contents {
    max-width: 100rem;
    margin: 0 auto;
    padding: 4rem;
    border-radius: 3rem;
    background-color: #fff;
  }

  iframe {
    height: 60rem;
  }

  .thanks-group {
    max-width: 80rem;
    margin: 3rem auto;

    .lead {
      font-size: 2.6rem;
      color: var(--clr_gold);
      margin-bottom: 2rem;
    }

    .back-btn {
      margin: 4rem auto 0;

      .btn-conts {
        font-size: 1.8rem;
        padding: 2rem 4rem;
        color: #fff;
        background-color: var(--clr-navy);
      }
      

      &:hover .btn-conts {
        background-color: var(--clr_gold);
      }
    }
  }
}

/*********************************/
/* タブレット用のスタイル記述 */
/*********************************/
@media screen and (max-width: 1300px) {
  html {
    font-size: 0.76vw;
  }
}

/*********************************/
/* スマートフォン用のスタイル記述 */
/*********************************/
@media screen and (max-width: 780px) {

  /*全体レイアウト
---------------------------------------------------------*/
  html {
    font-size: 2.7777777vw;
  }

  body {
    font-size: 1.4rem;
    line-height: 1.5;
  }

  body.is-active {
    overflow: hidden;
  }

  article>section {
    padding: 6rem 0;
  }

  .txt {
    font-size: 1.4rem;
  }

  /*header
-------------------------------------------------------*/
  #header {

    .inner {
      padding: 1rem 1.5rem;

      &::before {
        height: 100%;
      }
    }

    h1 {
      z-index: 1;
    }

    .logo {
      width: 12rem;
    }

    .link-group {
      position: fixed;
      top: 0;
      left: 0;
      flex-direction: column;
      justify-content: flex-start;
      width: 100%;
      height: 100lvh;
      padding: 8rem 0;
      background-color: #fff;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      translate: 100% 0;
      transition: translate 0.5s ease;
    }

    &.is-active {
      .link-group {
        translate: 0 0;
      }

      .menu {
        span {
          transition: translate 0.3s ease, rotate 0.3s 0.3s ease, opacity 0.2s 0.3s ease;

          &:first-of-type {
            translate: 0 1.1rem;
            rotate: 45deg;
          }

          &:nth-of-type(2) {
            opacity: 0;
          }

          &:last-of-type {
            translate: 0 -1.2rem;
            rotate: -45deg;
          }
        }
      }
    }

    .nav-list {
      flex-direction: column;
      align-items: center;
      gap: 2rem;

      a:hover {
        opacity: 0.7;
      }
    }

    .c-btn {
      .btn-conts {
        font-size: 1.8rem;
        padding: 2rem 3.2rem;
      }
    }

    .menu {
      cursor: pointer;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      width: 2.5rem;
      height: 2.5rem;
      z-index: 1;

      span {
        display: block;
        width: 100%;
        height: 0.2rem;
        background-color: #111;
        transition: translate 0.3s 0.3s ease, rotate 0.3s ease, opacity 0.2s 0.3s ease;
      }
    }
  }


  /*footer
---------------------------------------------------------*/
  #footer {
    padding: 6rem 0 2rem;

    .wrap {
      flex-direction: column;
      align-items: center;
      gap: 2rem;
    }

    .logo {
      width: 14rem;
    }

    .link-group {
      .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
      }

      .rule-list {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 4rem;
      }
    }

    .copyright {
      text-align: center;
      margin-top: 4rem;
    }

    .pagetop {
      right: 1.2rem;
      bottom: 5rem;
      width: 4.7rem;
      height: 4.7rem;
    }
  }

  /*共通 パーツ
---------------------------------------------------------*/
  .sec-ttl {
    margin: 0 auto 2rem;

    .ttl {
      font-size: 2.2rem;
    }

    .en {
      font-size: 1.6rem;
      margin-bottom: 0.8rem;

      &::before {
        width: 2rem;
        margin-right: 0.4rem;
      }
    }

    .txt {
      margin-top: 1.6rem;
    }
  }

  .c-btn {

    .btn-conts {
      font-size: 1.6rem;
    }

    &:hover {
      .btn-conts {
        background-color: var(--clr_gold);
      }
    }
  }

  #fix-btn {
    display: block;
    bottom: 0;
    width: 100%;
    border-radius: 1.2rem 1.2rem 0 0;
    box-shadow: none;
    translate: 0 100%;

    a {
      width: 100%;
    }

    &.is-show {
      translate: 0 0;
    }

      /* &.is-show {
      translate: 70% 0;
    }
  
    &.is-show.is-active {
      translate: 0 0;
    } */
  
    .togglearea {
      display: none;
    }
  }

  /*fv
---------------------------------------------------------*/
  .sec-fv {
    padding-bottom: 2.5rem;

    .container {
      width: 90%;

      &::before {
        top: -40rem;
        right: -32rem;
        width: 42rem;
        height: 60rem;
        border-radius: 2.6rem;
      }
    }

    .fv-area {
      flex-direction: column-reverse;
      gap: 2rem;
      padding-top: 7rem;
    }

    .box {

      .lead {
        font-size: 2.6rem;
      }

      .copy {
        font-size: 2.4rem;

        strong {
          font-size: 3.6rem;
        }
      }

      .txt {
        font-size: 1.6rem;
      }

      .price-group {
        margin-top: 2rem;
        justify-content: center;
      }

      .price {

        .number {
          font-size: 5.7rem;
        }

        .unit {
          font-size: 3.2rem;
        }

        .license {
          top: -1.6rem;
          font-size: 1.3rem;
        }

        .tax {
          right: -1rem;
          font-size: 1.2rem;
        }
      }

      .c-btn {
        margin: 3rem auto 0;

        .btn-conts {
          padding: 2rem 4rem;
        }
      }
    }

    .image {
      width: 100%;
    }
  }

  /*problem
---------------------------------------------------------*/
  .sec-problem {
    .list {
      display: flex;
      flex-direction: column;
      gap: 5rem;

      .item {
        border-radius: 2rem;
      }

      .lead {
        font-size: 2rem;
      }

      .image {
        width: 25rem;
        margin: 2rem auto 0;
      }

      .txt {
        bottom: -2rem;
        left: 2.2rem;
        font-size: 1.6rem;
      }
    }

    .solution-area {
      margin-top: 6rem;

      &::before {
        border-width: 10rem 50vw 0 50vw;

      }

      .lead {
        font-size: 2.4rem;
      }

      .txt-group {
        margin-top: 8rem;

        .gold {
          font-size: 2.6rem;
          line-height: 1.2;
        }

        .sub {
          font-size: 1.6rem;
          margin-top: 1rem;
        }
      }

      .image {
        border-radius: 2rem;
        margin-top: 2rem;
      }
    }
  }

  /*features
---------------------------------------------------------*/
  .sec-features {
    border-radius: 2rem 2rem 0 0;

    .features-area {
      flex-direction: column;
      gap: 2rem;
    }

    .features-group {
      width: 100%;

      .item {
        gap: 0.5rem;
        width: calc(100% - 1rem);
        padding: 1rem;
        border-radius: 1rem;
        background-color: #fff;

        +.item {
          margin-top: 1.3rem;
        }

        .en {
          min-width: 5.6rem;
          font-size: 2rem;

          .features {
            font-size: 1rem;
            margin-bottom: 0.2rem;
          }
        }

        .lead {
          font-size: 1.4rem;
        }

        &.is-active {

          &::after {
            right: -1.2rem;
            border-radius: 0.6rem;
          }
        }
      }
    }

    .detail-group {
      width: 100%;


      .image {
        border-radius: 1rem;
      }

      .txt {
        margin-top: 1rem;
      }
    }

    .c-btn {
      margin: 2rem auto 0;

      .btn-conts {
        padding: 2rem;
      }
    }
  }

  /*func
---------------------------------------------------------*/
  .sec-func {
    .list {
      gap: 2rem 1.2rem;
      grid-template-columns: repeat(2, 1fr);

      .item {

        .wrap {
          border-radius: 1rem;
          padding: 1rem;
        }

        .image {
          height: 6rem;
        }

        .lead {
          font-size: 1.4rem;
          margin-top: 1rem;
        }

        .txt {
          margin-top: 1rem;
        }
      }
    }
  }

  /*price
---------------------------------------------------------*/
  .sec-price {
    border-radius: 2rem 2rem 0 0;

    .price-conts {
      +.price-conts {
        margin-top: 4rem;
      }

      .lead {
        font-size: 1.8rem;
        margin-bottom: 2rem;
      }

      .plan-list {
        display: flex;
        flex-direction: column;
        gap: 2rem;

        .data-group:not(:has(.special)) {
          padding-top: 1rem;
        }

        .people-group {
          margin-top: 2rem;
          padding: 0 0 0.3rem;
        }
      }

      .plan-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;

        +.plan-table {
          margin-top: 4rem;
        }


        tr {
          grid-template-columns: repeat(5, minmax(12rem, 1fr));
          gap: 0 0.8rem;

          &:first-of-type th {
            font-size: 1.2rem;
            border-radius: 1rem 1rem 0 0;
          }

          &:nth-of-type(2) th {
            border-radius: 1rem 0 0 0;
          }

          &:last-of-type th {
            border-radius: 0 0 0 1rem;
          }
        }

        th {
          font-size: 1.2rem;
          padding: 1rem 0;

          &:first-of-type:has(.theme) {
            width: 12rem;
          }

          &:first-of-type {
            width: 12rem;
            min-height: 6rem;
          }
        }

        .theme {
          font-size: 1.3rem;
          padding: 1rem 0 1rem 2.4rem;

          .icon {
            width: 2.2rem;
          }
        }

      }
    }

    .service-conts {
      margin-top: 4rem;

      .box {
        border-radius: 2rem;
        padding: 3rem;
        background: url(../img/price-service_bg_sp.jpg) no-repeat;
        background-size: cover;
      }

      .wrap {
        border-radius: 1rem;
        padding: 2rem;
      }

      .list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;

        .item {
          font-size: 1.6rem;
          border-radius: 0.8rem;
          padding: 1rem 0;

          &:not(:last-of-type)::after {
            right: -3rem;
          }
        }
      }
    }
  }

  /*case
---------------------------------------------------------*/
  .sec-case {
    .splide {
      width: 95%;
      margin: 0 auto;
    }

    .splide__slide {
      border-radius: 1rem;
      padding: 4rem 2rem 2rem;

      .wrap {
        flex-direction: column;
      }

      .case {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
      }

      .lead {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
      }

      .note {
        font-size: 1.4rem;
      }

      .image {
        width: 100%;
        border-radius: 1rem;
        margin-top: 2rem;
      }

      .txt {
        font-size: 1.2rem;
        margin-top: 2rem;
      }
    }

    .splide__arrow {
      width: 3.2rem;
      height: 3.2rem;

      &::before {
        width: 0.6rem;
      }
    }

    .splide__arrow--prev {
      left: -1.6rem;
    }

    .splide__arrow--next {
      right: -1.6rem;
    }
  }

  /*flow
---------------------------------------------------------*/
  .sec-flow {
    border-radius: 2rem 2rem 0 0;

    .list {
      .item {
        flex-direction: column-reverse;
        border-radius: 1rem;

        +.item {
          margin-top: 2rem;
        }

        .wrap {
          flex-direction: column;
          align-items: flex-start;
          padding: 2rem;
        }

        .en {
          display: inline-block;
          min-width: initial;
          width: 100%;
          font-size: 3rem;
          border-right: none;
          border-bottom: 0.1rem solid var(--clr_gold);
          padding: 0 0 0.7rem;

          .step {
            display: block;
            font-size: 1.2rem;
            font-weight: 400;
            margin-bottom: 0.5rem;
          }
        }

        .txt-group {
          padding: 1.2rem 0 0;
        }

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

        .image {
          width: 100%;
        }

      }
    }
  }

  /*faq
---------------------------------------------------------*/
  .sec-faq {
    .accordion {
      +.accordion {
        margin-top: 2rem;
      }

      .lead {
        font-size: 1.6rem;
        margin-bottom: 1.4rem;
      }

      .wrap {
        +.wrap {
          margin-top: 1rem;
        }
      }

      .theme {
        padding: 1.6rem 4.4rem;
        font-size: 1.4rem;

        .en {
          top: 1.2rem;
          left: 1.2rem;
          font-size: 3rem;
        }

        &::after {
          top: 2.2rem;
          right: 2rem;
          width: 1.6rem;
        }
      }

      .answer {
        position: relative;
        padding: 1.5rem 1rem;

        .inner {
          gap: 1rem;
        }

        .en {
          min-width: 2.4rem;
          height: 2.4rem;
          font-size: 1.6rem;

        }
      }
    }
  }

  /*contact
---------------------------------------------------------*/
  .sec-contact {
    border-radius: 2rem 2rem 0 0;

      &:has(.thanks-group) {
        padding: 10rem 0 6rem;
        border-radius: 0;
      }

    .contents {
      padding: 2rem;
      border-radius: 1rem;
    }

    iframe {
      height: 75rem;
    }

    .thanks-group {
      margin: 2rem auto;
  
      .lead {
        font-size: 1.6rem;
        margin-bottom: 1rem;
      }
  
      .back-btn {
        margin: 2rem auto 0;
  
        .btn-conts {
          font-size: 1.4rem;
          padding: 1.2rem 4rem;
        }
      }
    }
  }
}

/*animation
---------------------------------------------------------*/
.-fadeUp {
  translate: 0 5rem;
  opacity: 0;
}