* {
  box-sizing: border-box;
}

:root {
  --bg-main: #f7fbff;
  --bg-soft: #eef7fb;
  --bg-card: rgba(255, 255, 255, 0.92);
  --line-soft: #d9e9f2;
  --line-strong: #b8d5e4;
  --text-main: #355168;
  --text-muted: #688398;
  --accent: #3e95c9;
  --accent-strong: #2678ad;
  --accent-soft: #e2f3fb;
  --shadow-soft: 0 20px 50px rgba(80, 133, 164, 0.12);
}

html {
  /* ヘッダーの高さ分paddingを指定 */
  scroll-padding-top: 80px;
  background: var(--bg-main);
}

body {
  font-family: "Noto Sans JP", "HiraKakuPro", -apple-system, "Lucida Grande",
    "Helvetica Neue", "メイリオ", meiryo, "Hiragino Kaku Gothic ProN",
    sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  line-height: 1.7;
  word-wrap: break-word;
  color: var(--text-main);
  background:
    radial-gradient(circle at top left, rgba(198, 235, 246, 0.65), transparent 30%),
    linear-gradient(180deg, #fbfeff 0%, #f5fbff 100%);
  padding-top: 80px;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ヘッダー */
.header {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  height: 80px;
  width: 100%;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(184, 213, 228, 0.65);
  box-shadow: 0 8px 28px rgba(117, 162, 189, 0.08);
}

.header__inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  width: 100%;
  padding: 1.5rem;
}

.header__service-name {
  color: var(--accent-strong);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  word-wrap: break-word;
}

.header__nav {
  justify-content: flex-start;
  align-items: center;
  gap: 14px;
  display: flex;
}

.header__nav .list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.header__nav .list__item {
  color: var(--text-main);
  font-size: 0.95rem;
  font-weight: 550;
  word-wrap: break-word;
  text-align: center;

  .request-documents__btn {
    border-color: #fff;
    min-width: initial;
  }

  .contact__btn {
    min-width: initial;
  }

  .request-documents__btn__link,
  .contact__btn__link {
    padding: 0.5rem;
    font-size: 1rem;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
  }

  .request-documents__btn__link>p,
  .contact__btn__link>p {
    padding: 0 0.5rem;
  }
}

.header__nav .list__item>a:hover {
  color: var(--accent);
}

.header__nav .list__item>.request-documents__btn:hover {
  border-color: #0074b9;
}

@media (max-width: 575px) {
  .header__inner {
    padding: 1rem;
  }

  .header__service-name {
    font-size: 1.1rem;
  }
}

.sp-menu__container {
  display: none;
}

/*ボタン外側 */
.sp-menu__btn {
  position: relative;
  /*ボタン内側の基点となるためrelativeを指定*/
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  z-index: 1011;
}

/*ボタン内側*/
.sp-menu__btn span {
  display: inline-block;
  transition: all 0.4s;
  /*アニメーションの設定*/
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background: #fff;
  width: 45%;
}

.sp-menu__btn.active span {
  background: var(--text-main);
}

.sp-menu__btn span:nth-of-type(1) {
  top: 15px;
}

.sp-menu__btn span:nth-of-type(2) {
  top: 23px;
}

.sp-menu__btn span:nth-of-type(3) {
  top: 31px;
}

/*activeクラスが付与されると線が回転して×に*/
.sp-menu__btn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.sp-menu__btn.active span:nth-of-type(2) {
  opacity: 0;
  /*真ん中の線は透過*/
}

.sp-menu__btn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

/* メニュー */
.sp-menu {
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1010;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  background-color: rgba(255, 255, 255, 0.96);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  will-change: opacity, visibility;
}

.sp-menu>.sp-menu-list {
  display: inline-flex;
  flex-direction: column;
  gap: 2rem;
  width: 90%;
  margin: 0;
  padding: 0;
}

.sp-menu>.sp-menu-list li {
  text-align: center;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.sp-menu>ul li:hover {
  background: #e5e5e5;
}

.sp-menu>ul li a {
  display: block;
  color: var(--text-main);
  width: 100%;
  margin: auto;
  font-size: 1.5rem;
}

.sp-menu>ul li a:hover {
  color: var(--text-main);
  text-decoration: none;
}

.sp-menu.active {
  opacity: 1;
  visibility: visible;
}

/* セクション */
.section--bg-blue {
  background:
    linear-gradient(180deg, rgba(234, 247, 252, 0.9) 0%, rgba(244, 251, 255, 0.96) 100%);
}

.section--bg-white {
  background:
    radial-gradient(circle at top right, rgba(215, 239, 249, 0.7), transparent 24%),
    #fbfeff;
}

.section__inner {
  max-width: 1240px;
  padding: 6rem 4rem;
  margin: auto;
}

.section__content {
  width: 100%;
}

/* セクションタイトル */
.section-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-bottom: 3rem;
}

.section-title__title-txt {
  text-align: center;
  color: var(--text-main);
  font-size: 2.15rem;
  font-weight: 800;
  word-wrap: break-word;
  line-height: 1.35;
}

.section-title__sub-title-txt {
  text-align: center;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  word-wrap: break-word;
}

.section--bg-white .section-title__sub-title-txt,
.section--bg-white .section-title__title-txt {
  background-color: #ffffff;
}

@media (max-width: 575px) {
  .section__inner {
    padding: 3rem 2rem;
  }
}

/* ヒーローエリア */
.hero {
  align-self: stretch;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  background-color: transparent;
}


.hero__inner {
  justify-content: space-between;
  display: inline-flex;
  align-items: center;
  gap: 3rem;
  padding: 3.5rem 4rem 4rem;
  max-width: 100%;
  background:
    radial-gradient(circle at top left, rgba(201, 236, 246, 0.9), transparent 28%),
    linear-gradient(135deg, rgba(248, 253, 255, 0.96), rgba(235, 247, 252, 0.9));
  border: 1px solid rgba(184, 213, 228, 0.7);
  border-radius: 36px;
  box-shadow: var(--shadow-soft);
}


/* ヒーローエリア > キャッチコピー */
.hero-catch-copy {
  display: inline-flex;
  flex-direction: column;
  gap: 2.5rem;
  width: min(560px, 100%);
}

.hero__desc {
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line-soft);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__desc-title {
  font-size: 3.7rem;
  font-weight: 800;
  word-wrap: break-word;
  line-height: 1.22;
}

.hero__desc-text {
  font-size: 1.2rem;
  font-weight: 500;
  word-wrap: break-word;
  line-height: 1.6;
  color: var(--text-muted);
}

.hero__desc-text .highlight {
    font-size: 1.2rem;
    color: var(--accent-strong);
    font-weight: bold;
}

.hero__points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero__points li {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line-soft);
  color: var(--text-main);
  font-size: 0.92rem;
  font-weight: 500;
  box-shadow: 0 10px 24px rgba(103, 150, 180, 0.08);
}

/* ヒーローエリア > 資料請求・お問い合わせ */
.hero__btn-wrapper {
  align-items: center;
  display: flex;
  justify-content: flex-start;
  gap: 2rem;
}

/* 上部の小見出し */
.cta-caption {
  font-size: 0.9rem;
  color: var(--accent-strong);
  font-weight: bold;
  margin-bottom: 0.25rem;
  text-align: center;
}

.request-documents__btn,
.contact__btn {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  background: #ffffff;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  min-width: 210px;
  box-shadow: 0 14px 30px rgba(80, 133, 164, 0.12);

  :hover {
    cursor: pointer;
  }
}

.request-documents__comment,
.contact__comment {
  display: flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  gap: 0.25rem;
  font-weight: 600;
  text-align: center;
  font-size: 1.1rem;
}

.request-documents__comment em,
.contact__comment em {
  font-weight: bold;
  font-size: 1.4rem;
}

.contact__btn {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  border-color: transparent;
}

.request-documents__btn__link,
.contact__btn__link {
  padding: 0.95rem 1.1rem;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  word-wrap: break-word;
  display: inline-flex;
  align-items: center;
}

.request-documents__btn__link>p,
.request-documents__btn__link .fa-chevron-right {
  color: var(--accent-strong);
}

.request-documents__btn__link>p,
.contact__btn__link>p {
  padding: 0 1.5rem;
}

.request-documents__btn__link {
  color: #3c4856;
}

.contact__btn__link {
  color: #ffffff;
}

.hero__bg {
  width: min(48%, 560px);
  flex: 0 1 560px;
}

.hero__bg img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 24px 45px rgba(105, 147, 176, 0.18));
}

@media (max-width: 1200px) {
  body {
    font-size: 0.8rem;
  }

  .hero__desc-title {
    font-size: 3rem;
  }

  .hero__desc-text {
    font-size: 1.1rem;
  }

  .hero__bg {
    width: 45%;
  }
}

@media (max-width: 992px) {
  .header__nav {
    display: none;
  }

  .sp-menu__container {
    display: block;
  }

  .hero__inner {
    flex-direction: column;
    align-items: center;
    padding: 4rem 2rem;
  }

  .hero__bg {
    width: min(90%, 560px);
    flex: initial;
    margin-top: 4rem;
  }

  .hero__desc-title {
    font-size: 2.5rem;
  }

  .request-documents__btn,
  .contact__btn {
    min-width: 200px;
  }
}

@media (max-width: 767px) {

  .request-documents__btn__link>p,
  .contact__btn__link>p {
    padding: 0 1rem;
  }
}

@media (max-width: 575px) {
  .contact-btn__wrapper {
    flex-direction: column;
  }

  .hero__eyebrow,
  .hero__points li {
    font-size: 0.8rem;
  }

  .request-documents__btn__link>p,
  .contact__btn__link>p {
    padding: 0 0.5rem;
  }
}

/* 最新情報 */
.news {
  background: #fbfeff;
}

.news-title__outer {
  width: 30%;
  display: inline-flex;
  justify-content: center;
}

.news__inner {
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  gap: 2rem;
  padding: 4rem;
}

.news-title {
  padding-bottom: initial;
}

.news__container {
  flex: 1 1 0;
  border: 1px solid var(--line-soft);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: inline-flex;
  padding: 0.5rem 1.25rem;
}

.news-list {
  width: 100%;
  display: inline-block;
}

.news-list__item {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  gap: 4rem;
  width: 100%;
  padding: 1.25rem 0.75rem;
  background-color: transparent;
}

.news-list__item:not(:last-child) {
  background-image: linear-gradient(to right, rgba(184, 213, 228, 0.9) 10px, transparent 10px);
  background-size: 18px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
}

.news-meta {
  display: inline-flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 1rem;
}

.news__at {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 500;
}

.news__news-tag {
  display: flex;
  justify-content: center;
  align-items: center;
  word-break: keep-all;
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
}

.news-tag--release {
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.news__news-txt {
  font-size: 0.95rem;
  font-weight: 700;
  word-wrap: break-word;
  /* TODO: 3行以上は省略など必要かもしれない。 */
}

@media (max-width: 992px) {
  .news__inner {
    flex-direction: column;
    align-items: center;
    vertical-align: middle;
  }

  .news-title {
    width: 100%;
    padding-top: 0;
  }

  .news-list__item {
    flex-direction: column;
    gap: 0.5rem;
  }

  .news-meta {
    justify-content: space-between;
    flex-direction: row-reverse;
  }

  .news-list__item .news-meta,
  .news-list__item .news__news-txt {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .news-title__outer {
    width: 100%;
  }
}

/* グループウェアとは？ */
.about {
  display: inline-flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 2rem;
}

.about__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.about-title {
  padding-bottom: 1rem;
}

.about__img-wrapper {
  max-width: 40%;
}

.about__img {
  object-fit: contain;
  display: block;
}

.about__desc {
  display: inline-flex;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  padding: 2.4rem;
  background-color: var(--bg-card);
  border-radius: 28px;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-soft);
}

.about__label {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 700;
}

.about__desc-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-strong);
  text-align: left;
}

.about__desc-text {
  font-size: 1.1rem;
  font-weight: 500;
  text-align: left;
  color: var(--text-muted);
}

@media (max-width: 1240px) {
  .about__desc-title {
    font-size: 1.5rem;
  }

  .about__desc-text {
    font-size: 1rem;
  }
}

@media (max-width: 992px) {
  .about {
    flex-direction: column;
  }

  .about__img-wrapper {
    max-width: 80%;
  }

  .about__desc-title {
    font-size: 1.5rem;
  }

  .about__desc-text {
    font-size: 1rem;
  }

  .about__img-wrapper {
    left: 0;
  }

  .about__desc {
    width: 100%;
    height: auto;
  }
}

/* 特徴・機能 */
.features__inner {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.feature {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 2.5rem;
  padding: 2.2rem;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-soft);
}

.feature.feature--reverse {
  flex-direction: row-reverse;
}

.feature__content {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.feature__desc {
  width: 40%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 1.25rem;
}

.feature__tag {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.feature-title__icon {
  width: 7rem;
  height: 7rem;
  object-fit: contain;
}

.feature__desc-title {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
  text-align: left;
  line-height: 1.45;
}

.feature__desc-text {
  font-size: 1.1rem;
  font-weight: 500;
  text-align: left;
  color: var(--text-muted);
}

.feature__img-wrapper {
  max-width: 50%;
}

.feature__video {
  max-width: 100%;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(95, 138, 167, 0.16);
}

.feature__img {
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(95, 138, 167, 0.16);
}

@media (max-width: 992px) {
  .feature__img-wrapper {
    max-width: 90%;
  }

  .feature,
  .feature.feature.feature--reverse {
    flex-direction: column;
  }

  .feature__desc {
    width: 100%;
  }
}

/* 主な機能一覧 */
.service__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  padding-bottom: 55px;
  margin: auto;
  max-width: 1240px;
}

.services-list--sp {
  display: none;
}

.services-list>li {
  margin: 10px;
  background-color: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line-soft);
  border-radius: 26px;
  padding: 28px 32px;
  text-align: center;
  box-sizing: border-box;
  box-shadow: 0 18px 38px rgba(93, 137, 166, 0.1);
}

.services-list>li {
  width: calc(100% / 3 - 20px);
}

/* 機能の説明 */
.service__header {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin: 0.5rem 0;
  width: 100%;
}

.service__img {
  width: calc(56px + 1rem);
  height: calc(56px + 1rem);
  padding: 0.65rem;
  border: 1px solid var(--line-soft);
  background: linear-gradient(180deg, #ffffff, #f2faff);
  border-radius: 22px;
}

.service__desc {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service__desc-title {
  text-align: center;
  color: var(--text-main);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.08rem;
}

.service__desc-txt {
  color: var(--text-muted);
  font-size: 1rem;
  text-align: left;
  letter-spacing: 0.04rem;
}

@media (max-width: 992px) {
  .services-list {
    max-width: calc(100% - 20px);
  }

  .services-list>li {
    width: calc(100% / 2 - 20px);
  }
}

@media (max-width: 700px) {
  .services-list {
    display: none;
  }

  .services-list--sp {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: flex-start;
    padding-bottom: 55px;
    margin: auto;
    max-width: calc(100% - 20px);
  }

  .services-list--sp>li {
    margin: 10px;
    background-color: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--line-soft);
    border-radius: 26px;
    padding: 20px 40px;
    text-align: center;
    box-sizing: border-box;
    width: 100%;
    box-shadow: 0 18px 38px rgba(93, 137, 166, 0.1);
  }

  .services-list--sp>li .service__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .services-list--sp>li .service__desc-title {
    text-align: left;
  }
}

@media (max-width: 375px) {
  .services-list--sp>li {
    padding: 20px;
  }
}

/* 料金プラン */
.plan__inner {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.plan__inner>.section-title {
  padding-bottom: 1rem;
}

.plan__container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.plan__desc {
  width: 100%;
}

.plan__desc-text {
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
  color: var(--text-muted);
}

.plan__content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
}

.plan-price {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #f6fbff 0%, #e7f4fb 100%);
  border: 1px solid var(--line-soft);
  border-radius: 28px;
  width: 380px;
  box-shadow: var(--shadow-soft);
}

.plan-price__header {
  font-size: 1.15rem;
  font-weight: 550;
  color: var(--accent-strong);
  text-align: center;
  padding: 1.2rem 0 0.8rem;
}

.plan-price__content {
  background: #ffffff;
  padding: 0 0.25rem 0.25rem;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  align-items: baseline;
  gap: 0.25rem;
  margin: 0 0.6rem 0.6rem;
  padding: 1.4rem 1rem;
  border-radius: 22px;
}

.price-badge {
  width: 100%;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
}

.price {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text-main);
}

.price-unit {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-muted);
}

.plus {
  font-size: 4rem;
  font-weight: 800;
  text-align: center;
  color: #0075b3;
}

.plan__container .contact {
  max-width: 320px;
  margin: auto;
}

.plan__container .contact__btn {
  border-color: transparent;
}

.plan__container .contact__btn__link>p {
  padding: 0 1rem;
}

@media (max-width: 992px) {
  .plan__content {
    flex-direction: column;
  }

  .plan-price {
    width: 90%;
  }
}

@media (max-width: 575px) {
  .price {
    font-size: 2.2rem;
    font-weight: 600;
  }

  .price-unit {
    font-size: 1rem;
    font-weight: 600;
  }
}

/* よくある質問 */
.faq__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/*質問リスト*/
.faq-list {
  list-style: none;
  width: 96%;
  max-width: 900px;
  margin: 0 auto;
}

.faq-list li {
  margin: 10px 0;
}

.faq-list details {
  border: 1px solid var(--line-soft);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(99, 142, 170, 0.08);
}

/* アコーディオンメニュー */
.faq-list__item {
  background-color: rgba(255, 255, 255, 0.94);
  border-radius: 24px;
  letter-spacing: 0.06rem;
}

.faq-list__item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1em 2em;
  font-size: 1.3rem;
  font-weight: 600;
  cursor: pointer;
}

.faq-list__item summary:active {
  -webkit-tap-highlight-color: transparent;
  border-radius: 1rem;
}

.faq-list__item summary::-webkit-details-marker {
  display: none;
}

.faq-list__item summary::before,
.faq-list__item summary::after {
  width: 3px;
  height: 0.9em;
  border-radius: 5px;
  background-color: var(--text-main);
  content: "";
}

.faq-list__item summary::before {
  position: absolute;
  right: 2em;
  rotate: 90deg;
}

.faq-list__item summary::after {
  transition: rotate 0.3s;
}

.faq-list__item[open] summary::after {
  rotate: 90deg;
}

.faq__title {
  display: flex;
  gap: 1rem;
  align-items: center;
  line-height: 2rem;
}

.faq__title .q__icon {
  color: var(--accent);
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
}

.faq-list__item .faq__answer {
  opacity: 0;
  margin: 0.5rem;
  padding: 1.5rem 2rem;
  color: #3c4856;
  font-size: 1.2rem;
  vertical-align: middle;
  align-items: center;
  transition: transform 0.5s, opacity 0.5s;
  background: #fff;
  border-bottom-left-radius: 0.75rem;
  border-bottom-right-radius: 0.75rem;
}

.faq-list__item[open] .faq__answer {
  transform: none;
  opacity: 1;
}

.faq-list__item .a__icon {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  font-size: calc(2rem + 1px);
  color: var(--accent-strong);
  padding-right: 0.5rem;
}

.faq-list__item .faq__answer__title {
  font-weight: 550;
  vertical-align: super;
}

/* 強調 */
.faq-list__item .faq__answer--em {
  font-weight: 600;
  color: var(--accent-strong);
}

/* 補足 */
.faq__answer--supplement {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* 質問内のリンク */
.faq-list__item a {
  color: var(--accent);
  font-weight: 550;
  text-decoration: underline;
}

@media (max-width: 767px) {
  .faq-list__item summary {
    font-size: 1.1rem;
    padding: 1em 1.5em;
  }

  .faq-list__item summary::before {
    right: 1.5em;
  }

  .faq__title {
    padding-right: 1.8rem;
  }

  .faq__title .q__icon {
    font-size: 1.8rem;
  }

  .faq-list__item .faq__answer {
    font-size: 1rem;
    padding: 1rem 1.5rem;
  }

  .faq-list__item .a__icon {
    font-size: 1.8rem;
  }
}

@media (max-width: 375px) {
  .faq-list__item summary::after {
    width: 0.3em;
  }
}

/* お問合せ */
.cta__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.cta-title {
  padding-bottom: 1rem;
}

.cta__desc {
  width: 100%;
}

.cta__desc-text {
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
  color: var(--text-muted);
}

.cta__content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 2rem 1rem 1rem;
}

.cta__btn-wrapper {
  align-items: center;
  display: flex;
  justify-content: flex-start;
  gap: 2rem;
}

/* フッター */
.footer__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: #3c4856;
}

.footer__menu {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  width: 80%;
  margin: 1rem 0;
}

.footer__menu .footer__menu-list {
  display: flex;
  justify-content: center;
  align-items: center;
  /* gap: 0.25rem; */
  list-style: none;
  width: 100%;
}

.footer__menu-list .list__item {
  color: #ffffff;
  font-size: 1rem;
  word-wrap: break-word;
  text-align: center;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
}

.footer__menu-list .list__item>a:hover {
  color: #a9a9a9;
}

.footer__menu-list .list__item--txt-sm {
  font-size: 0.8rem;
}

.footer__menu .footer__menu-list.sub-menu-list {
  justify-content: center;
}

.footer__menu .footer__menu-list .list__item:not(:first-child)::before {
  content: "|";
  font-size: 1rem;
  margin: 0 1em;
  color: #ffffff;
}

.copylight {
  display: inline-flex;
  align-self: stretch;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0.25rem;
  margin: 1rem 0;
}

.copylight span {
  color: #ffffff;
  font-size: 0.8rem;
}

@media (max-width: 992px) {
  .footer__menu {
    width: 90%;
  }

  .footer__menu .footer__menu-list {
    display: grid;
    grid-template-columns: 50% 50%;
    row-gap: 1rem;
  }

  .footer__menu-list .list__item {
    font-size: 0.9rem;
    text-align: left;
  }

  .footer__menu-list .list__item--txt-sm {
    font-size: 0.75rem;
  }

  .footer__menu .footer__menu-list .list__item:not(:first-child)::before {
    content: "";
    margin: 0;
  }

  .footer__menu .footer__menu-list.sub-menu-list .list__item {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .footer__menu .footer__menu-list.sub-menu-list {
    display: flex;
    flex-direction: column;
  }

  .footer__menu .footer__menu-list.sub-menu-list .list__item {
    text-align: left;
  }
}

@media (hover: none) {

  /* hoverが使えないタッチ端末を想定したスタイル */
  .contact__btn:active {
    background: #ffffff;
  }

  .contact__btn:active .contact__btn__link>p,
  .contact__btn:active .contact__btn__link .fa-chevron-right {
    color: #0075b3;
  }

  .request-documents__btn:active {
    background-color: #0075b3;
  }

  .request-documents__btn:active .request-documents__btn__link>p,
  .request-documents__btn:active .request-documents__btn__link>.fa-chevron-right {
    color: #ffffff;
  }
}

@media (-ms-high-contrast: none),
(-ms-high-contrast: active),
(-moz-touch-enabled: 0),
(hover: hover) {
  /* hover指定できるPCを想定したスタイル */

  .header__nav .contact__btn:hover .contact__btn__link>p {
    color: #e2e2e2;
  }

  .contact__btn:hover {
    background: #136193;
    border-color: #136193;
  }

  .request-documents__btn:hover {
    background-color: #0075b3;
  }

  .request-documents__btn:hover .request-documents__btn__link>p,
  .request-documents__btn:hover .request-documents__btn__link>.fa-chevron-right {
    color: #ffffff;
  }
}

/* 共通 */
.page-title-area {
  background-color: #f1faff;
  padding: 2rem;
}

.page__title {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.25rem;
}

.page__content {
  display: flex;
  gap: 2rem;
  min-height: calc(100vh - 80px);
  padding: 2rem;
}

@media (max-width: 767px) {
  .page-title-area {
    padding: 1rem 1.5rem;
  }

  .page__title {
    font-size: 1.2rem;
  }

  .page__content {
    font-size: 0.9rem;
    flex-direction: column;
  }
}

.breadcrumbs-area {
  background-color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
}

ul.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0;
}

ul.breadcrumbs>.breadcrumb {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
}

ul.breadcrumbs>.breadcrumb:not(:last-child) {
  color: #0075b3;

  &:hover {
    cursor: pointer;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    text-underline-offset: 0.2rem;
  }
}

ul.breadcrumbs>.breadcrumb+.breadcrumb::before {
  content: ">";
  margin: 0 0.5em;
  color: #3c4856;
  font-weight: bold;
}

/* 利用規約 > サイドバー */
.terms-sidebar__container {
  height: 100%;
}

.terms__nav {
  width: 250px;
  border: 2px solid #0075b3;
  background-color: #ffffff;
  border-radius: 0.25rem;
}

.terms__nav .terms__nav-link {
  display: flex;
  color: #3c4856;
  text-decoration: none;
}

.terms__nav .terms__nav-link:not(.active):hover {
  background-color: #f2f2f2;
}

.terms__nav .terms__nav-link.active {
  background-color: #0075b3;
  color: #fff;
  font-weight: bold;
}

.terms__nav .terms__nav-link a {
  flex: 1;
  padding: 0.5rem;
}

/* 利用規約 */
.terms__container {
  flex: 1;
}

.terms__inner {
  color: #3c4856;
  padding: 2rem;
  background-color: #f2f2f2;
  border-radius: 0.25rem;
}

.terms__title {
  font-size: 1.4rem;
  font-weight: 600;
}

.terms__title:not(:first-of-type) {
  margin-top: 2rem;
}

.terms__description {
  font-size: 1rem;
  letter-spacing: 0.1rem;
  padding: 0.5rem 1rem;
}

.terms__description ol {
  list-style: decimal;
  margin-left: 1.25rem;
}

.terms__description p,
.terms__description ol li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.terms__description .sub-ol {
  margin-top: 0.5rem;
  margin-left: calc(1rem + 1.25rem);
}

@media (max-width: 767px) {
  .terms__inner {
    padding: 1.5rem;
  }

  .terms__title {
    font-size: 1.1rem;
  }

  .terms__description {
    font-size: 0.9rem;
  }
}

/* 特定商取引法に基づく表記 */
.law__container {
  flex: 1;
}

.law__inner {
  color: #3c4856;
  border-radius: 0.25rem;
}

.law__inner table {
  display: inline-block;
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
  letter-spacing: 0.1rem;
}

.law__inner table tbody {
  background-color: #ffffff;
}

.law__inner table th,
.law__inner table td {
  border: 1px solid #ccc;
  padding: 0.5rem;
  text-align: left;
}

.law__inner table th {
  font-weight: bold;
  width: 30%;
}

.law__inner table td {
  width: 70%;
}

.law__inner table .law__description {
  font-size: 0.85rem;
}

.law__inner table .law__description .attention {
  text-decoration: underline;
  text-decoration-style: double;
}

.law__inner table tr th {
  background-color: #f2f2f2;
}

.law__inner table a {
  color: #0075b3;
}

@media (max-width: 767px) {
  .law__inner table {
    font-size: 0.9rem;
    display: block;
  }

  .law__inner table tbody {
    display: block;
  }

  .law__inner table tr {
    display: block;
    margin-bottom: 0.5rem;
  }

  .law__inner table tr td {
    border-top: none;
  }

  .law__inner table th,
  .law__inner table td {
    display: block;
    width: 100% !important;
    box-sizing: border-box;
  }

  .law__inner table .law__description {
    font-size: 0.8rem;
  }
}

/* AI-OCR style refresh */
:root {
  --bg-main: #f4f8fc;
  --bg-soft: #eef6fb;
  --bg-card: rgba(255, 255, 255, 0.86);
  --line-soft: rgba(33, 80, 120, 0.12);
  --line-strong: rgba(34, 116, 173, 0.22);
  --text-main: #1d2f46;
  --text-muted: #627286;
  --accent: #1f8ec8;
  --accent-strong: #1d5f96;
  --accent-soft: #e4f3fb;
  --shadow-soft: 0 24px 70px rgba(31, 95, 150, 0.12);
  --radius-lg: 34px;
  --radius-md: 22px;
  --container: 1180px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  padding-top: 80px;
  color: var(--text-main);
  font-size: 16px;
  letter-spacing: 0;
  background:
    radial-gradient(circle at top left, rgba(31, 142, 200, 0.12), transparent 30%),
    radial-gradient(circle at top right, rgba(90, 181, 214, 0.12), transparent 28%),
    linear-gradient(180deg, #fbfdff 0%, #f2f8fc 52%, #fbfdff 100%);
}

.main {
  overflow: hidden;
}

.header {
  height: 80px;
  background: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid rgba(33, 80, 120, 0.1);
  box-shadow: 0 12px 36px rgba(32, 82, 124, 0.08);
}

.header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.header__service-name {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text-main);
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.header__service-name::before {
  content: "S";
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  box-shadow: 0 16px 30px rgba(31, 95, 150, 0.24);
}

.header__nav .list {
  gap: 22px;
  margin: 0;
  padding: 0;
}

.header__nav .list__item {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0;
}

.header__nav .list__item > a:hover {
  color: var(--accent-strong);
}

.section__inner {
  width: min(calc(100% - 40px), var(--container));
  max-width: var(--container);
  padding: 92px 0;
}

.section--bg-blue,
.section--bg-white,
.news {
  background: transparent;
}

.section-title {
  align-items: flex-start;
  max-width: 820px;
  padding-bottom: 36px;
}

.section-title__sub-title-txt {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.section-title__title-txt {
  color: var(--text-main);
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0;
  text-align: left;
}

.hero {
  display: block;
  padding: 56px 0 28px;
  background: transparent;
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: 44px;
  width: min(calc(100% - 40px), var(--container));
  max-width: var(--container);
  padding: 46px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.94), rgba(241, 249, 253, 0.82)),
    radial-gradient(circle at top right, rgba(31, 142, 200, 0.16), transparent 34%);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.hero-catch-copy {
  width: 100%;
  max-width: 620px;
  gap: 30px;
}

.hero__desc {
  gap: 14px;
}

.hero__eyebrow {
  padding: 0;
  background: transparent;
  border: 0;
  color: var(--accent-strong);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
}

.hero__desc-title {
  color: var(--text-main);
  font-size: clamp(2.15rem, 3.4vw, 3.1rem);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: 0;
  word-break: keep-all;
  overflow-wrap: normal;
}

.hero-title-line {
  display: block;
}

.hero-title-word {
  display: inline-block;
  white-space: nowrap;
}

.hero__desc-text {
  max-width: 42rem;
  color: var(--text-muted);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.9;
}

.hero__desc-text .highlight {
  color: var(--accent-strong);
  font-size: inherit;
  font-weight: 800;
}

.hero__points {
  display: grid;
  gap: 12px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.hero__points li {
  position: relative;
  padding: 0 0 0 26px;
  background: transparent;
  border: 0;
  box-shadow: none;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.hero__points li::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 2px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #62bedf);
  box-shadow: 0 0 0 8px rgba(31, 142, 200, 0.12);
}

.hero__btn-wrapper,
.cta__btn-wrapper {
  flex-wrap: wrap;
  gap: 16px;
}

.cta-caption {
  color: var(--accent-strong);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}

.request-documents__btn,
.contact__btn {
  min-width: 210px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: none;
}

.contact__btn {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  box-shadow: 0 18px 40px rgba(31, 95, 150, 0.24);
}

.request-documents__btn__link,
.contact__btn__link {
  min-height: 52px;
  padding: 0 22px;
  font-size: 0.98rem;
  font-weight: 800;
}

.request-documents__btn__link > p,
.contact__btn__link > p {
  padding: 0 12px;
}

.hero__bg {
  width: 100%;
  max-width: none;
  flex: initial;
  padding: 22px;
  border: 1px solid var(--line-soft);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(235, 247, 253, 0.86)),
    radial-gradient(circle at top right, rgba(31, 142, 200, 0.12), transparent 38%);
  box-shadow: 0 18px 40px rgba(36, 91, 135, 0.08);
}

.hero__bg img {
  border-radius: 22px;
  filter: none;
}

.trust-band {
  padding: 18px 0 8px;
}

.trust-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 24px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 14px 34px rgba(47, 91, 130, 0.06);
}

.trust-band__inner p {
  margin: 0;
  font-weight: 800;
}

.trust-band__inner ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--text-muted);
  font-weight: 700;
}

.news__inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 1fr);
  align-items: start;
  gap: 34px;
  padding: 80px 0;
}

.news-title__outer {
  width: 100%;
}

.news__container,
.about__desc,
.feature,
.services-list > li,
.services-list--sp > li,
.plan-price,
.faq-list details,
.cta__container {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  box-shadow: 0 16px 34px rgba(33, 80, 120, 0.07);
}

.news__container {
  padding: 10px 18px;
}

.news-list__item {
  gap: 26px;
  padding: 18px 10px;
}

.news__news-txt {
  color: var(--text-main);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.7;
}

section.about {
  display: block;
}

.about-title {
  align-items: center;
  max-width: none;
}

.about-title .section-title__sub-title-txt,
.about-title .section-title__title-txt {
  text-align: center;
}

.section__content > .about {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: 34px;
}

.about__img-wrapper {
  max-width: none;
  padding: 22px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.66);
}

.about__img {
  width: 100%;
  border-radius: 22px;
}

.about__desc {
  padding: 32px;
}

.about__label {
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.about__desc-title {
  color: var(--text-main);
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  font-weight: 800;
  line-height: 1.32;
}

.about__desc-text,
.feature__desc-text,
.service__desc-txt,
.plan__desc-text,
.cta__desc-text,
.faq__answer {
  color: var(--text-muted);
  line-height: 1.9;
}

.feature__content {
  gap: 34px;
}

.feature {
  align-items: center;
  padding: 30px;
  gap: 34px;
}

.feature__desc {
  width: 44%;
}

.feature__tag {
  color: var(--accent);
}

.feature__desc-title {
  color: var(--text-main);
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  line-height: 1.35;
}

.feature__img-wrapper {
  max-width: 52%;
}

.feature__video,
.feature__img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(32, 82, 124, 0.12);
}

.feature--compact {
  align-items: stretch;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(234, 247, 253, 0.82));
}

.feature__mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: 52%;
}

.feature__mini-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 130px;
  padding: 22px;
  border: 1px solid var(--line-soft);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 30px rgba(32, 82, 124, 0.06);
}

.feature__mini-card span {
  color: var(--accent-strong);
  font-size: 1.08rem;
  font-weight: 800;
}

.feature__mini-card p {
  margin: 8px 0 0;
  color: var(--text-muted);
  line-height: 1.7;
}

.api__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  align-items: center;
  gap: 34px;
}

.api__copy .section-title {
  padding-bottom: 22px;
}

.api__title-text {
  word-break: keep-all;
}

.api__title-line {
  display: block;
}

.api__title-phrase {
  display: inline-block;
  white-space: nowrap;
}

.api__lead {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.95;
}

.api__cards {
  display: grid;
  gap: 18px;
}

.api__card {
  padding: 26px 28px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(234, 247, 253, 0.78));
  box-shadow: 0 16px 34px rgba(33, 80, 120, 0.07);
}

.api__card span {
  display: inline-block;
  color: var(--accent-strong);
  font-size: 1.12rem;
  font-weight: 800;
}

.api__card p {
  margin: 10px 0 0;
  color: var(--text-muted);
  line-height: 1.8;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: none;
  padding-bottom: 0;
}

.services-list > li {
  width: auto;
  min-height: 100%;
  margin: 0;
  padding: 28px;
  text-align: left;
}

.service__header {
  justify-content: flex-start;
  margin: 0 0 18px;
}

.service__img {
  width: 64px;
  height: 64px;
  padding: 12px;
  border-radius: 20px;
}

.service__desc-title {
  color: var(--text-main);
  font-size: 1.18rem;
  text-align: left;
  letter-spacing: 0;
}

.plan__container,
.cta__container {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 34px;
}

.plan-price {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(235, 247, 253, 0.95), rgba(255, 255, 255, 0.95));
}

.plan-price__content {
  background: rgba(255, 255, 255, 0.86);
}

.price {
  color: var(--accent-strong);
}

.faq-list {
  max-width: 900px;
}

.faq-list details {
  overflow: hidden;
}

.faq-list__item summary {
  color: var(--text-main);
}

.faq-list__item .faq__answer {
  background: rgba(255, 255, 255, 0.72);
}

.footer__inner {
  background: linear-gradient(135deg, #244f80 0%, #1f5f96 100%);
}

@media (max-width: 1080px) {
  .hero__inner,
  .news__inner,
  .section__content > .about,
  .api__inner {
    grid-template-columns: 1fr;
  }

  .hero__desc-title {
    max-width: none;
  }

  .hero__bg {
    width: min(100%, 640px);
    margin: 0 auto;
  }

  .services-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 992px) {
  .header__inner {
    padding: 0 18px;
  }

  .sp-menu__btn span {
    background: var(--accent-strong);
  }

  .hero__inner {
    padding: 34px;
  }

  .feature,
  .feature.feature--reverse {
    flex-direction: column;
  }

  .feature__desc,
  .feature__img-wrapper,
  .feature__mini-grid {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 700px) {
  body {
    font-size: 15px;
  }

  .section__inner {
    width: min(calc(100% - 28px), var(--container));
    padding: 70px 0;
  }

  .hero {
    padding-top: 30px;
  }

  .hero__inner {
    width: min(calc(100% - 28px), var(--container));
    padding: 26px;
    border-radius: 26px;
  }

  .hero__desc-title {
    font-size: clamp(1.75rem, 8.8vw, 2.35rem);
  }

  .hero-title-line {
    display: inline;
  }

  .trust-band__inner {
    align-items: flex-start;
    border-radius: 26px;
    flex-direction: column;
  }

  .trust-band__inner ul {
    gap: 10px 16px;
  }

  .news__inner {
    padding: 66px 0;
  }

  .services-list {
    display: none;
  }

  .services-list--sp {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: none;
    padding-bottom: 0;
  }

  .services-list--sp > li {
    width: auto;
    margin: 0;
    padding: 22px;
  }

  .services-list--sp > li .service__header {
    justify-content: space-between;
  }

  .feature__mini-grid {
    grid-template-columns: 1fr;
  }

  .plan__container,
  .cta__container {
    padding: 24px;
  }

  .plan-price {
    width: 100%;
  }
}
