/* ベースフォント */
html {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #333;
  scroll-behavior: smooth;
}

/* 見出し */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
}

h1 {
  font-size: 3.6rem;
  font-weight: 600;
}

h2 {
  font-size: 2.25rem;
  line-height: 1.4;
}

.common-subhead {
  text-align: center;
  color: #239286;
  position: relative;
}

.common-subhead::after {
  content: "";
  display: inline-block;
  width: 3.5rem;
  height: 4px;
  background-color: #28afa0;
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
}

h3 {
  font-size: 1.6rem;
  line-height: 1.4;
}

p {
  text-align: justify;
}

/* 改行 */
.pc {
  display: block;
}

.sp {
  display: none;
}

/* ボタンのスタイル */
.btn {
  background-image: linear-gradient(to right, #ff8301, #ff5504);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 500;
  border: none;
  padding: 1rem 2rem 1.05rem 2.5rem;
  border-radius: 42px;
  cursor: pointer;
  transition: transform 0.3s ease;
  position: relative;
}

.btn::after {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1em;
  background-image: url(../image/arrow.svg);
  background-size: 0.8rem 0.8rem;
  background-repeat: no-repeat;
  background-position: center 0.25em;
  margin-left: 0.5rem;
}

.btn:hover,
.btn:hover {
  color: #FFFFFF;
  transform: translateY(-3px);
}

/* リンク */
a {
  color: #FFFFFF;
  cursor: pointer;
  transition: all 0.4s ease;
}

a:hover {
  color: #C6E8E4;
}

/* 画像のスタイル */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* コンテンツ幅 */
.inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* テキスト中のロゴの表示 */
.text-logo {
  display: inline-block;
  width: 190px;
  height: 40px;
  background: url("../image/logo_black.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 190px auto;
  text-indent: -9999px;
  overflow: hidden;
  margin-bottom: -0.6rem;
}

/* 開始アニメーション */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* ヘッダー */
.header {
  background-color: #28afa0;
  width: 100%;
  height: 4.4rem;
  padding: 0 2rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.header__inner {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  height: 100%;
}

.header__logo-wrapper {
  width: 20%;
  display: flex;
  align-items: center;
}

.header__menu-open {
  display: none;
}

.header__nav-wrapper {
  width: 80%;
  display: flex;
}

.header__menu-close {
  display: none;
}

.header__nav-sp {
  display: none;
}

.header__nav-pc {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header__nav-pc-list {
  display: flex;
  gap: 2rem;
}

.header__nav-pc-item {
  color: #fff;
  display: flex;
  align-items: center;
}

.header__cta-btn {
  font-size: 0.9rem;
  padding: 0.7rem 1.5rem 0.8rem 2rem;
}

/* ファーストビュー */
.fv {
  margin-top: 4.4rem;
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-image: url(../image/FV-bg-right.svg);
  background-position: right top;
  background-repeat: no-repeat;
  position: relative;
}

.fv::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../image/FV-bg-left.svg);
  background-size: auto;
  background-repeat: no-repeat;
  background-position: left bottom;
  position: absolute;
  z-index: -1;
}

.fv__main-copy {
  text-align: center;
}

.fv__main-copy--mod {
  display: inline-block;
  padding: 0 2rem;
  margin-right: 0.5rem;
  background: url("../image/FV-copy-mod.svg");
  background-position: left 0.8rem;
  background-repeat: no-repeat;
  background-size: 1.5rem auto;
  position: relative;
}

.fv__main-copy--mod::after {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 3rem;
  background-image: url(../image/FV-copy-mod.svg);
  background-size: 1.5rem auto;
  background-repeat: no-repeat;
  transform: rotate(180deg);
  position: absolute;
  bottom: 0.8rem;
}

.fv__zero-text {
  display: inline-block;
  width: 6.3rem;
  height: 8.1rem;
  background: url("../image/zero.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 6.3rem auto;
  text-indent: -9999px;
  overflow: hidden;
  margin-right: -1rem;
  margin-bottom: -0.5rem;
}

.fv__sub-wrapper {
  display: flex;
  margin: 0 auto;
  max-width: 900px;
}

.fv__sub-left {
  width: 50%;
  padding-top: 3rem;
}

.fv__copy-logo {
  display: inline-block;
  width: 18rem;
  height: 3.1rem;
  background: url("../image/logo-green.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 18rem auto;
  text-indent: -9999px;
  overflow: hidden;
  margin-bottom: -0.5rem;
}

.fv__sub-copy {
  font-size: 2.25rem;
}

.fv__text {
  margin-top: 1.5rem;
  margin-left: 0.3rem;
  font-weight: 500;
}

.fv__sub-right {
  width: 50%;
  display: flex;
  margin-top: 2rem;
}

.fv__pc-img {
  align-items: center;
}

.fv__point-wrapper {
  width: fit-content;
  margin: 2rem auto;
  background-color: #28afa0;
  color: #fff;
  font-size: 1.1rem;
  padding: 0.5rem 4rem;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.fv__point--strong {
  font-size: 1.3em;
  font-weight: 500;
}

.fv__cta-wrapper {
  margin-top: 4rem;
  border-top: 2px solid #28afa0;
  border-bottom: 2px solid #28afa0;
  padding: 1.5rem 0;
}

.fv__cta-text {
  text-align: center;
  font-size: 1.5rem;
}
.fv__cta-text .fv__point--strong {
  color: #239286;
}

.fv__btn-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

/* お悩み*/
.problem {
  padding: 4rem 0;
  background-image: url(../image/problem-bg.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}

.problem__title {
  text-align: center;
  font-size: 1.9rem;
}

.problem__img-wrapper {
  margin-top: 4rem;
}

.problrm__img-pc {
  margin: 0 auto;
}

.problem__text--strong {
  font-size: 1.3em;
  color: #239286;
}

.problrm__img-sp {
  display: none;
}

/* 解決*/
.solution {
  background-color: #ebf8f6;
  border-radius: 19rem;
  padding-bottom: 6rem;
  margin-top: 4rem;
  max-width: 1400px;
  margin: 0 auto;
}

.solution__wrapper {
  text-align: center;
}

.solution__top-text {
  display: inline-block;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.5rem 1.3rem;
  background-color: #28afa0;
  border-radius: 10px;
  margin-top: -50px;
  margin-bottom: 1rem;
}

.solution__title {
  font-size: 1.2rem;
}

.solution__title-main {
  font-size: 3.1rem;
  color: #239286;
  position: relative;
  z-index: 1;
}

.solution__title-main::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../image/solution-title-mod.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  top: 1.5rem;
  left: 0;
  z-index: -1;
}

.solution__sub-title {
  display: inline-block;
  font-size: 1.1rem;
  color: #239286;
  text-decoration: underline;
  text-underline-offset: 0.5rem;
  padding-bottom: 0.2rem;
  margin-top: 3rem;
}

.solution__list-wrapper {
  margin: 0 auto;
  margin-top: 3rem;
}

.solution__list {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}

.solution__list-ietm {
  width: 46%;
  display: flex;
}

.solution__list-icon {
  width: 30%;
  display: flex;
  justify-content: center;
}

.solution__icon-img {
  width: 6.3rem;
}

.solution__list-text {
  width: 70%;
  text-align: left;
  display: flex;
  align-items: center;
  margin-left: 1rem;
}

.solution__text--strong {
  font-size: 1.3em;
  color: #239286;
  font-weight: 500;
}

/* 機能紹介*/
.function {
  padding-top: 6rem;
}

.function__intro {
  display: inline-block;
  font-size: 2.25rem;
  color: #239286;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 0.5rem;
  padding-bottom: 0.1rem;
  margin-bottom: 2rem;
}

.function__title-wrapper {
  text-align: center;
}

.function__title {
  font-size: 1.9rem;
}

.function__sub-title {
  text-align: center;
  margin-top: 1rem;
}

.function__main-wrapper {
  margin-top: 6rem;
}

.function__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 90px auto;
  grid-template-areas:
    "title image"
    "description image";
  gap: 1.5rem 3rem;
  align-items: center;
  padding-bottom: 4rem;
}

.function__item:nth-child(even) {
  grid-template-areas:
    "image title"
    "image description";
}

.function__item-title {
  grid-area: title;
  border-bottom: 5px solid #dbdbdb;
  position: relative;
  padding-bottom: 1rem;
  display: flex;
}

.function__item-image {
  grid-area: image;
  align-self: stretch; /* 縦方向いっぱいに伸ばす */
  min-height: 200px; /* 最小高さは確保 */
  display: flex;
  justify-content: center;
}

.function__item-text {
  grid-area: description;
  align-self: start;
}

.function__item-title::after {
  content: "";
  width: 22%;
  height: 5px;
  position: absolute;
  bottom: -5px;
  left: 0;
  background-color: #28afa0;
}

.function__item-number {
  width: 22%;
}

.function__item-title-text {
  width: 78%;
  color: #239286;
  margin-left: 1rem;
}

.function__item-title-sub {
  font-weight: 500;
  text-align: left;
}

.function-item-annotation {
  font-size: 0.9rem;
  margin-top: 1rem;
}

/* 導入事例 */
.case {
  padding: 6rem 0;
  position: relative;
}

.case::before {
  content: "";
  width: 92%;
  height: 65%;
  position: absolute;
  top: 19rem;
  left: 50%;
  border-radius: 5rem;
  transform: translateX(-50%);
  background-color: #ebf8f6;
  z-index: -1;
}

.case__wrapper {
  margin-top: 4.5rem;
  display: flex;
  gap: 3rem;
  justify-content: space-between;
}

.case__item {
  flex: 1;
}

.case__image {
  border-radius: 23px;
}

.case__item-exp {
  color: #239286;
  border-left: 4px solid #28afa0;
  padding-left: 1rem;
  margin-top: 1rem;
}

.case__item-exp-s {
  font-size: 0.9rem;
}

.case__item-title {
  margin-top: 1rem;
  font-size: 1.5rem;
}

.case__item-text {
  margin-top: 1rem;
}

/* 料金プラン */
.price {
  padding: 6rem 0;
}
.price__wrapper {
  margin-top: 10rem;
  display: flex;
  gap: 3rem;
  justify-content: space-between;
}

.price__item {
  flex: 1;
  border-radius: 20px;
  border: 1px solid #c4c4c4;
  position: relative;
}

.price__item-title {
  color: #fff;
  font-size: 1.5rem;
  background-color: #8f8f8f;
  border-radius: 19px 19px 0 0;
  padding: 0.3rem 0;
  text-align: center;
}

.price__item-std {
  background-color: #28afa0;
}

.price__item-business {
  background-color: #eb9134;
}

.price__item-price {
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
  padding: 1rem 0;
}

.price__item-number {
  font-size: 3rem;
}

.price__basic-pf {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  margin: 0 2rem;
}

.price__option {
  font-size: 0.8rem;
  border-top: 1px solid #c4c4c4;
  margin: 1rem 2rem 0 2rem;
  padding: 1rem 0 2rem 0;
}

.price__option-item {
  padding-left: 1.3rem;
  position: relative;
}

.price__option-item::before {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  background-image: url(../image/price-check.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  bottom: 0.1rem;
  left: 0;
}

.price__no1 {
  position: absolute;
  top: -5rem;
  left: 50%;
  transform: translateX(-50%);
}

/* CTA */
.cta {
  background-image: url(../image/cta-bg.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 4rem 0;
  color: #fff;
}

.cta__title {
  width: fit-content;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
  margin: auto;
  padding-bottom: 0.2rem;
}

.cta__sub-title {
  text-align: center;
  margin-top: 2rem;
}

.cta__btn-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

/* よくあるご質問 */
.faq {
  padding: 6rem 0;
}

.faq__wrapper {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
}

.faq__q {
  font-size: 1rem;
  position: relative;
  text-align: left;
  padding: 1.5rem 0.5rem;
  cursor: pointer;
  width: 100%;
  border-top: 1px solid #c4c4c4;
  display: flex;
}

.faq__item:last-child {
  border-bottom: 1px solid #c4c4c4;
}

.faq__q-icon {
  width: 4rem;
  height: 2rem;
  flex-shrink: 0;
  background: url("../image/Q.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 1.1rem auto;
  margin-bottom: -0.5rem;
  margin-right: 1rem;
}

.faq__oc-icon {
  width: 4rem;
  height: 2rem;
  flex-shrink: 0;
  background: url("../image/faq-oc-icon.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 1rem auto;
  margin-left: auto;
  transform: rotate(180deg);
}

.faq__oc-icon.ac-open {
  transform: rotate(0deg);
}

.faq__a {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}

.faq__a.ac-open {
  opacity: 1;
}

.faq__a-content {
  padding: 1.5rem 0.5rem;
  display: flex;
}

.faq__a-icon {
  width: 4rem;
  height: 2rem;
  flex-shrink: 0;
  background: url("../image/A.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 1.3rem auto;
  margin-bottom: -0.3rem;
  margin-right: 1rem;
}

/* フッター */
.footer {
  background-image: url(../image/footer-bg.svg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  padding: 13rem 0 4rem 0;
}

.footer__logo-wrapper {
  display: flex;
  justify-content: center;
}

.footer__info {
  display: flex;
  gap: 4rem;
  justify-content: center;
  margin-top: 1.5rem;
}

/* スマホ版下部固定CTA_構造 */
#spCTA {
  display: flex;
  position: fixed;
  bottom: 0.5rem;
  right: 0.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.spCTA__btn {
  width: 100px;
  transition: transform 0.4s ease;
}

.spCTA__btn:active {
  transform: translateY(-5px);
  opacity: 0.5;
}

@media screen and (max-width: 1024px) {
  html {
    font-size: calc(1600 / 1024 * 1vw);
  }

  .inner {
    padding: 0 2rem;
  }

  .sp-scroll-margin {
    scroll-margin-top: 3.6rem;
  }

  /* ヘッダー */
  .header {
    height: 3.6rem;
    padding: 0;
    width: 100%;
    overflow: hidden;
  }

  .header__menu-open {
    display: block;
    color: #fff;
    font-size: 1.5rem;
    margin-left: auto;
    padding: 0 1.7rem;
    display: flex;
    align-items: center;
  }

  .header__inner {
    padding: 0 0 0 1.5rem;
  }

  .header__logo-wrapper {
    width: 50%;
    display: flex;
    align-items: center;
  }

  .header__logo {
    width: 10rem;
    margin-top: 0.2rem;
  }

  .header__nav-wrapper {
    max-width: 420px;
    width: 80%;
    height: 100%;
    background-color: #fff;
    padding: 1rem 1.7rem;
    position: fixed;
    top: 0;
    right: -100%;
    transition: all 0.25s ease-in-out;
    z-index: 9999;
    display: flex;
    flex-direction: column;
  }

  .header__nav-wrapper.open {
    right: 0;
  }

  .header__menu-close {
    display: block;
    text-align: right;
    font-size: 1.5rem;
    color: #c4c4c4;
  }

  .header__nav-pc {
    display: none;
  }

  .header__nav-sp {
    display: block;
  }

  .header__nav-sp-item {
    font-size: 1rem;
    font-weight: 500;    
    padding: 1rem 0;
    border-bottom: 1px solid #c4c4c4;
  }

  .header__nav-sp-item:not(:last-child) a {
    display: flex;
    color: #239286;
  }

  .header__nav-angle {
    display: inline-block;
    margin-left: auto;
  }

  .header__nav-sp-item:last-child {
    border-bottom: 0px;
    margin-top: 1rem;
  }

  .header__cta-btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    font-size: 1rem;
  }

  .header__nav-sp-overlay {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 50;
  }

  .header__nav-sp-overlay.open {
    opacity: 1;
    pointer-events: auto;
  }

  /* ファーストビュー*/
  .fv__main-copy {
    font-size: 3.4rem;
  }

  /* 解決策提示*/
  .solution {
    border-radius: 15rem;
  }

  /* 導入事例*/
  .case::before {
    width: 100%;
  }

  /*料金プラン*/
  .price__no1 {
    top: -6rem;
  }

  /* スマホ版下部固定CTA_表示 */
  #spCTA.is-show {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.4s ease, visibility 0.4s ease;
  }
}

@media screen and (max-width: 767px) {
  html {
    font-size: calc(1400 / 375 * 1vw);
  }

  /* 改行 */
  .sp {
    display: block;
  }

  /* コンテンツ幅 */
  .inner {
    padding: 0 1.7rem;
  }

  /* ボタンのスタイル */
  .btn {
    padding: 1rem 0 1.05rem 0;
    width: 100%;
    text-align: center;
  }

  .btn::after {
    background-position: center 0.25em;
  }

   /* 共通サブヘッド */
  .common-subhead::after {
  width: 2.5rem;
  height: 3px;
}

  /* ファーストビュー */
  .fv {
    margin-top: 3.6rem;
    background-size: 85%;
  }

  .fv .inner {
    padding: 0;
  }

  .fv::before {
    content: "";
    width: 40%;
    height: 100%;
    background-image: url(../image/FV-bg-left.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left 9rem;
    position: absolute;
    z-index: -1;
  }

  .fv__main-copy {
    text-align: center;
    font-size: 2.1rem;
    line-height: 1.2;
  }

  .fv__main-copy--mod {
    padding: 0 1.2rem;
    background-position: left top;
    background-size: 1.2rem auto;
    margin-left: 1rem;
  }

  .fv__main-copy--mod::after {
    width: 1.2rem;
    background-size: 1.2rem auto;
    bottom: -0.5rem;
  }

  .fv__zero-text {
    width: 8rem;
    height: 10rem;
    background-size: 8rem auto;
    margin-top: 0.5rem;
  }

  .fv__sub-wrapper {
    flex-wrap: wrap;
  }

  .fv__sub-left {
    width: 100%;
    padding-top: 2rem;
  }

  .fv__copy-logo {
    width: 14rem;
    background-size: 14rem auto;
    margin-bottom: -0.8rem;
  }

  .fv__sub-copy {
    font-size: 1.7rem;
    text-align: center;
    margin-left: 0.5rem;
  }

  .fv__text {
    margin-top: 1.5rem;
    margin-left: 0;
    text-align: center;
  }

  .fv__sub-right {
    width: 100%;
    padding: 0 1.7rem;
  }

  .fv__pc-img {
    width: 100%;
  }

  .fv__point-wrapper {
    width: 100%;
    font-size: 1rem;
    padding: 1rem 0rem;
    border-radius: 0;
    gap: 1rem;
    text-align: center;
    line-height: 1.2;
    align-items: center;
  }

  .fv__point--strong {
    font-size: 1.2em;
    font-weight: 500;
  }

  .fv__point-divider {
    font-size: 1.4rem;
  }

  .fv__cta-wrapper {
    margin: 2rem 1.7rem 0 1.7rem;
  }

  .fv__cta-text {
    text-align: center;
  }

  /* お悩み */
  .problem {
    padding: 6rem 0;
    background-size: contain;
  }

  .problem__title {
    text-align: center;
    font-size: 1.5rem;
  }

  .problem__img-wrapper {
    margin-top: 2.3rem;
  }

  .problrm__img-pc {
    display: none;
  }

  .problrm__img-sp {
    display: block;
    width: 100%;
  }

  /* 解決*/
  .solution {
    border-radius: 0;
    background-color: transparent;
    background-image: url(../image/solution-bg-sp.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    padding-bottom: 6.5rem;
  }

  .solution__title {
    margin-left: 1.8rem;
    margin-top: 1.5rem;
  }

  .solution__sub-title {
    line-height: 2;
    margin-top: 2.3rem;
  }

  .solution__list-wrapper {
    margin: 0 auto;
    margin-top: 3rem;
  }

  .solution__list {
    column-gap: 2.3rem;
  }

  .solution__list-ietm {
    width: 100%;
    display: flex;
  }

  .solution__list-text {
    text-align: left;
    padding-right: 1rem;
  }

  .solution__text--strong {
    font-size: 1.1rem;
  }

  .solution__icon-img {
    width: 5rem;
  }

  /* 機能紹介*/
  .function {
    padding-top: 4rem;
    padding-bottom: 2rem;
  }

  .function__intro {
    font-size: 1.9rem;
    margin-bottom: 2.5rem;
    text-align: center;
  }

  .function__sub-title {
    text-align: justify;
  }

  .function__main-wrapper {
    margin-top: 3rem;
  }

  .function__item,.function__item:nth-child(even) {
                grid-template-columns: 1fr;
                grid-template-rows: 100px auto auto; 
                grid-template-areas: 
                    "title"
                    "image"
                    "description";
                gap: 2rem;
                padding-bottom: 2rem;
            }

  .function__item-number {
    width: 22%;
  }

  .function__item-number01 {
    width: 20%;
  }

  .function__item-title-text {
    width: 80%;
    font-size: 0.95rem;
  }

  .function__item-image {
    width: 100%;
    min-height: 100px;
  }

  .function__item-image img {
    width: 90%;
  } 

  /* 導入事例 */
  .case {
    padding: 0 0 4rem 0;
    position: relative;
  }

  .case .inner {
    padding: 0;
  }

  .case::before {
    width: 100%;
    height: 72%;
    border-radius: 0;
    top: 14rem;
  }

  .case__wrapper {
    margin-top: 4.5rem;
    gap: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 1.5rem;
  }

  .case__item {
    flex: 0 0 85%;
    scroll-snap-align: start;
    padding: 0 1.7rem;
  }

  /* 料金プラン */
  .price {
    padding: 4rem 0;
  }
  .price__wrapper {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
  }

  .price__item {
    flex: none;
  }

  .price__basic-pf {
    font-size: 1rem;
  }

  .price__option {
    font-size: 1rem;
  }

  .price__option-item::before {
    bottom: 0.3rem;
  }

  .price__no1 {
    position: absolute;
    top: -5rem;
    left: 50%;
    transform: translateX(-50%);
  }

  .price__item:nth-child(2) {
    margin-top: 3rem;
  }

  /* CTA */
  .cta {
    background-image: url(../image/cta-bg-sp.svg);
  }

  .cta__title {
    padding: 0.3rem 0 0.6rem 0;
    text-align: center;
  }

  .cta__sub-title {
    text-align: center;
    margin-top: 2rem;
  }

  .cta__btn-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
  }

  /* よくあるご質問 */
  .faq {
    padding: 4rem 0;
  }

  .faq__q {
    padding: 1.3rem 0;
    font-size: 1rem;
  }

  .faq__q-icon {
    width: 3rem;
    background-size: 1.2rem 1.5rem;
    margin-right: 0.5rem;
  }

  .faq__q-text {
    padding-right: 0.5rem;
  }

  .faq__oc-icon {
    width: 2rem;
  }

  .faq__a-content {
    padding: 1.3rem 0;
  }

  .faq__a-icon {
    width: 3rem;
    margin-right: 0.5rem;
  }

  /* フッター */
  .footer {
    background-image: url(../image/footer-bg-sp.svg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 8rem 0 3rem 0;
  }

  .footer__info {
    display: flex;
    gap: 0rem;
    flex-direction: column;
    align-items: center;
    font-size: 0.8rem;
  }
}
