@charset "utf-8";
:root {
  /* color */
  --white: #fff;
  --blue1: #005fa8;
  --blue2: #519df1;
  --blue3: #005fa8;
  --blue4: #edf4fa;
  --blue5: #7db7e3;
  --blue6: #bddafa;
  --blue7: #044b99;
  --blue8: #f7fbff;
  --blue9: #002e61;
  --blue10: #4885c7;
  --blue11: #e5f4ff;
  --blue12: #0f90f3;
  --blue13: #c3dbef;
  --blue14: #fafbfc;
  --red1: #ec3947;
  --black1: #333333;
  --black2: #1c1c1b;
  --black3: #222222;
  --gray1: #e2e2e2;
  --gray2: #e1e1e1;
  --gray3: #f0f0f0;
  --gray4: #898989;
  --gray5: #dadada;
  --gray6: #747474;
  --gray7: #ececec;
  --gray8: #d2d2d2;
  --content-width: 1024px;
}

html {
  font-size: 100%;
}

body {
  color: var(--black);
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: initial;
  line-height: 1.5;
  letter-spacing: 0.1em;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

li {
  list-style: none;
}

/* 共通パーツ
------------------------------------------------------- */
.section-title {
  display: grid;
  grid-template-columns: 1fr;
}

.section-title__en {
  font-family: "Oooh Baby", "Noto Sans JP", sans-serif;
  font-size: 7.875rem;
  font-weight: 400;
  line-height: 1;
  color: var(--white);
}

.section-title__ja {
  color: var(--white);
  margin-top: 12px;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  gap: 14px;
}

.section-title__ja::before {
  content: "";
  display: block;
  width: 7px;
  aspect-ratio: 1/1;
  background-color: currentColor;
  border-radius: 50%;
}

/* Modifier: 青文字版（Reasonセクション用） */
.section-title--blue .section-title__en {
  color: var(--blue3);
}

.section-title--blue .section-title__ja {
  color: var(--black1);
}

.section-title--blue .section-title__ja::before {
  color: var(--blue3);
}

.no-scroll {
  overflow: hidden;
  width: 100%;
}

.for-sp,
.for-tab {
  display: none;
}

.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease-out;
}

.fade-in.fade-in--left-to-right {
  transform: translateX(-20px);
  transition: all 2.4s cubic-bezier(0.22, 1, 0.36, 1);
  clip-path: inset(0 100% 0 0);
}

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

.fade-in--visible.fade-in.fade-in--left-to-right {
  opacity: 1;
  transform: translateX(0);
  clip-path: inset(0 0 0 0);
  transition-delay: 1.5s; 
}

.char {
  display: inline-block; 
  opacity: 0;
  transform: translateY(10px);
  transition: none;
}

.char.is-visible {
  animation: fadeInChar 0.5s forwards;
}

@keyframes fadeInChar {
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@media screen and (max-width: 660px) {
  .section-title__en {
    font-size: 9.125rem;
  }

  .section-title__ja {
    font-size: 1.25rem;
  }

  .for-tab {
    display: block;
  }
}

@media screen and (max-width: 528px) {
  .section-title__en {
    font-size: 4.5625rem;
  }

  .section-title__ja {
    font-size: 0.75rem;
  }

  .for-pc {
    display: none;
  }

  .for-tab {
    display: none;
  }

  .for-sp {
    display: block;
  }
}

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

.header {
  height: 113px;
  width: 100%;
  display: grid;
  align-items: center;
  position: fixed;
  z-index: 60;
  transition: all 0.4s ease-out;
}

.header.is-scrolled {
  background-color: rgba(0, 95, 168, 0.6);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: 31px 0;
}

.header__logo {
  width: 278px;
  height: auto;
  z-index: 90;
  transition: all 0.4s ease-out;
}

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

.header__logo-link--single {
  display: none;
}

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

.header__nav-list {
  display: grid;
  grid-template-columns: repeat(7, auto);
  justify-content: center;
  gap: 32px;
}

.header__nav-link {
  color: var(--white);
  font-size: 1rem;
  transition: all 0.4s ease-out;
}

.header__nav-link:hover {
  color: var(--blue1);
}

.header__nav-link--single {
  color: var(--black1);
}

.header__nav-button {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  color: var(--white);
  font-size: 0.75rem;
  width: 113px;
  aspect-ratio: 1/1;
  border: solid 1px var(--blue1);
  background-color: var(--blue1);
  transition: all 0.4s ease-out;
}

.header__nav-button--hover {
  display: none;
}

.header__nav-button:hover {
  background-color: var(--white);
  color: var(--blue1);
}

.header__nav-button:hover img {
  display: none;
}

.header__nav-button:hover .header__nav-button--hover {
  display: block;
}

.header__nav-button--sp {
  display: none;
  position: relative;
  z-index: 20;
}

.burger {
  display: none;
}

@media screen and (max-width: 1250px) {
  .header__nav-list {
    display: grid;
    grid-template-columns: repeat(4, auto);
    justify-content: center;
    gap: 20px 40px;
  }
}

@media screen and (max-width: 970px) {
  .header {
    height: 113px;
  }

  .header__inner {
    padding-inline: 17px 113px;
  }

  .is-active .header__logo--single > .header__logo-link {
    display: none;
  }

  .is-active .header__logo-link--single {
    display: block;
  }

  .burger {
    width: 113px;
    aspect-ratio: 1/1;
    background-color: var(--white);
    border: solid 1px var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 14px;
    position: fixed;
    z-index: 99;
    top: 0px;
    right: 0px;
  }

  .burger__line {
    display: block;
    width: 60px;
    height: 1px;
    background-color: var(--blue1);
    transition: all 0.6s ease;
  }

  .is-active .burger__line:nth-of-type(1) {
    transform: translateY(16px) rotate(45deg);
  }

  .is-active .burger__line:nth-of-type(2) {
    opacity: 0;
  }

  .is-active .burger__line:nth-of-type(3) {
    transform: translateY(-13px) rotate(-45deg);
  }

  .header__nav-button {
    display: none;
  }

  .header__nav-button--sp {
    display: flex;
  }

  .header__nav {
    background: url(../img/contact-bg.webp) no-repeat center top/cover;
    position: fixed;
    top: 0;
    left: 0;
    flex-direction: column;
    justify-content: start;
    width: 100%;
    height: 100svh;
    padding-top: 156px;
    translate: 100% 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s;
  }

  .header__nav-list {
    grid-template-columns: 1fr 1fr;
    justify-content: space-between;
    gap: 140px 20px;
    padding-inline: 12px;
  }

  .header__nav-link {
    font-size: 1.5rem;
  }

  .is-active .header__nav {
    visibility: visible;
    opacity: 1;
    translate: 0 0;
    overflow: auto;
  }

  .is-active .header__nav-link--single {
    color: var(--white);
  }
}

@media screen and (max-width: 528px) {
  .header {
    height: 60px;
  }

  .header__inner {
    padding-inline: 9px 60px;
  }

  .header__logo {
    width: 170px;
  }

  .header__nav {
    padding-top: 100px;
    gap: 87px;
  }

  .header__nav-list {
    gap: 100px 20px;
  }

  .header__nav-link {
    font-size: 1.25rem;
  }

  .burger {
    width: 60px;
    gap: 7px;
  }

  .burger__line {
    width: 30px;
  }

  .is-active .burger__line:nth-of-type(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .is-active .burger__line:nth-of-type(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .header__nav-link {
    font-size: 1rem;
  }

  .header__nav-button {
    width: 60px;
    gap: 9px;
    font-size: 0.5rem;
  }

  .header__nav-button img {
    width: 21px;
    height: auto;
  }
}

/* mainvisual
-------------------------------- */
.mainvisual {
  overflow: hidden;
}

.mainvisual__bg {
  content: "";
  display: block;
  width: 100%;
  background-image: url("../img/mainvisual.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: fixed;
  inset: 0;
  z-index: -1;
}

.mainvisual__inner {
  width: 100%;
  height: 100svh;
  max-width: 1350px;
  margin-inline: auto;
  padding-top: 40svh;
  padding-inline: calc(clamp(1.125rem, 4.8vw, 2.25rem));
  box-sizing: content-box;
  position: relative;
  z-index: 5;
}

.mainvisual__text {
  position: relative;
}

.mainvisual__text-title {
  color: var(--white);
  font-size: 3.75rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.2em;
}

.mainvisual__text-subtitle {
  display: inline-block;
  font-family: "Oooh Baby", "Noto Sans JP", sans-serif;
  color: var(--white);
  font-size: 2.5rem;
  line-height: 2;
  rotate: -5deg;
  position: absolute;
  bottom: -40px;
  left: 180px;
}

@media screen and (max-width: 660px) {
  .mainvisual__inner {
    box-sizing: border-box;
  }

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

  .mainvisual__text-subtitle {
    font-size: 1.75rem;
    bottom: -30px;
    left: 80px;
  }
}

@media screen and (max-width: 528px) {
  .mainvisual__text-title {
    font-size: 1.875rem;
  }

  .mainvisual__text-subtitle {
    font-size: 1.25rem;
    bottom: -20px;
    left: 80px;
  }

  .mainvisual__inner {
    height: 573px;
    padding-top: 287px;
  }
}

/* =========================================
   About Section
   ========================================= */
.about {
  position: relative;
  z-index: 5;
  width: 100%;
  padding-block: 108px 82px;
  color: var(--white);
}

.about__background {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 46, 97, 1) 0%, rgba(0, 46, 97, 0) 100%);
  position: absolute;
  inset: 0;
}

.about__content {
  max-width: var(--content-width);
  padding-inline: calc(clamp(1.125rem, 4.8vw, 2.25rem));
  box-sizing: content-box;
  margin-inline: auto;
  position: relative;
  z-index: 5;
}

.about__lead-wrapper {
  margin-top: 66px;
}

.about__lead {
  overflow: hidden;
  list-style: initial;
}

.about__lead-text {
  display: inline-block;
  position: relative;
  margin-bottom: 20px;
  z-index: 2;
  color: transparent;
  padding: 8px 15px;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5;
  transition: all 1.5s linear 0.6s; 
}

.about__lead-text::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 0; 
  height: 100%;
  background-color: var(--white);
  z-index: -1;
  transition: width 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.is-visible .about__lead-text {
  color: var(--blue3); 
}

.is-visible .about__lead-text:before {
  width: 100%;
}

.js-reveal-container.is-visible .about__lead:nth-child(2) .about__lead-text::before {
  transition-delay: 0.8s, 0.8s; 
}
.js-reveal-container.is-visible .about__lead:nth-child(3) .about__lead-text::before {
  transition-delay: 1.2s;
}

.js-reveal-container.is-visible .about__lead:nth-child(1) .about__lead-text {
  transition-delay: 1.6s, 1.6s; 
}
.js-reveal-container.is-visible .about__lead:nth-child(2) .about__lead-text {
  transition-delay: 2.0s; 
}
.js-reveal-container.is-visible .about__lead:nth-child(3) .about__lead-text {
  transition-delay: 2.4s; 
}

.about__text {
  font-size: 1.125rem;
  line-height: 2;
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
  text-align: justify;
}

.about__services {
  margin-top: 36px;
}

.about__services .about__text {
  margin-top: 36px;
}

.about__sub-lead {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 2;
}

.about__quote {
  font-size: 1.125rem;
  font-weight: 600;
}

.about__action {
  margin-top: 54px;
  display: flex;
  justify-content: center;
}

.about__btn {
  display: inline-block;
  padding: 12px 60px;
  color: var(--white);
  text-align: center;
  border: 1px solid var(--white);
  border-radius: 50px;
  font-size: 0.75rem;
  transition: all 0.4s ease-out;
  position: relative;
}

.about__btn-arrow {
  content: "";
  display: block;
  width: 36px;
  height: 1px;
  background-color: var(--white);
  position: absolute;
  top: 50%;
  right: -18px;
  transition: all 0.4s ease-out;
}

.about__btn-arrow::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 4px);
  right: 2px;
}

.about__btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.about__btn:hover .about__btn-arrow {
  right: -27px;
}

.about__marquee {
  overflow: hidden;
  position: absolute;
  bottom: 0;
  z-index: 2;
  width: 100%;
}

.about__marquee::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
}

.about__marquee-inner {
  display: flex;
  width: fit-content;
  gap: 300px;
  animation: marquee-scroll 25s linear infinite;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.about__marquee-text {
  font-size: 10rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 0.8;
  color: var(--blue2);
  white-space: nowrap;
}

@media screen and (max-width: 975px) {
  .about__lead-text {
    font-size: calc(clamp(1rem, 0.409rem + 1.79vw, 1.5rem));
  }
}

@media screen and (max-width: 528px) {
  .about {
    padding-block: 54px 41px;
  }

  .about__lead-wrapper {
    margin-top: 30px;
  }

  .about__lead-text {
    font-size: 0.875rem;
    margin-bottom: 10px;
    padding: 5px 3px;
    letter-spacing: 0;
  }

  .about__text {
    font-size: 0.8125rem;
  }

  .about__services {
    margin-top: 16px;
  }

  .about__services .about__text {
    margin-top: 16px;
  }

  .about__sub-lead {
    font-size: 0.8125rem;
  }

  .about__quote {
    font-size: 0.8125rem;
  }

  .about__action {
    margin-top: 27px;
  }

  .about__btn {
    width: 90%;
    font-size: 0.8125rem;
  }

  .about__marquee-text {
    font-size: 5rem;
  }
}

@media screen and (max-width: 410px) {
  .about__lead-text {
    font-size: 0.75rem;
  }
}

/* =========================================
   news Section
   ========================================= */
.news {
  padding-block: 79px 62px;
  background-color: var(--blue14);
}

.news__container {
  max-width: var(--content-width);
  padding-inline: calc(clamp(1.125rem, 4.8vw, 2.25rem));
  box-sizing: content-box;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 56px;
}

.news .section-title {
  align-items: start;
  gap: 12px;
}

@media screen and (max-width: 860px) {
  .news .information__link-all {
    display: flex;
    justify-content: end;
    font-size: 0.75rem;
  }

  .news__container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .news .section-title {
    grid-template-columns: 1fr 1fr;
    justify-content: space-between;
    align-items: center;
  }
}

/* =========================================
   Reason Section
   ========================================= */
.reason {
  padding-block: 69px 0;
  position: relative;
  background-color: var(--white);
}

.reason__container {
  max-width: var(--content-width);
  padding-inline: calc(clamp(1.125rem, 4.8vw, 2.25rem));
  box-sizing: content-box;
  margin-inline: auto;
}

.reason__list {
  width: 100%;
  margin-top: 29px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2%;
}

.reason__item {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto;
  justify-content: start;
}

.reason__img-wrapper {
  width: 100%;
  max-width: 300px;
  aspect-ratio: 1 / 1;
  background: linear-gradient(0deg, rgba(237, 244, 250, 1) 0%, rgba(255, 255, 255, 1) 100%);
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.reason__img {
  width: 113px;
  height: auto;
  object-fit: contain;
}

.reason__item-title {
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.5;
  min-height: 77px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 20px;
}

.reason__item-text {
  font-size: 1rem;
  line-height: 1.5;
  min-height: 72px;
  margin-top: 12px;
}

@media screen and (max-width: 860px) {
  .reason__list {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    align-items: center;
  }

  .reason__item:nth-of-type(1) {
    grid-column: 1/2;
    grid-row: 1/2;
  }

  .reason__item:nth-of-type(2) {
    grid-column: 2/3;
    grid-row: 1/3;
  }

  .reason__item:nth-of-type(3) {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}

@media screen and (max-width: 528px) {
  .reason__img {
    width: 57px;
  }

  .reason__item-title {
    font-size: 0.875rem;
    min-height: inherit;
  }

  .reason__item-text {
    font-size: 0.625rem;
    min-height: inherit;
  }
}

/* =========================================
   Service Section (Scroll Sticky Version)
   ========================================= */
.service {
  height: 400vh;
  min-height: 4320px;
  padding-block: 41px 81px;
  position: relative;
  background-color: var(--white);
}

.service .section-title {
  max-width: var(--content-width);
  width: 100%;
  margin-inline: auto;
  padding-inline: calc(clamp(1.125rem, 4.8vw, 2.25rem));
}

.service__container {
  position: sticky;
  top: 0;
  width: auto;
  height: 100vh; /* 画面いっぱいの高さ */
  min-height: 1080px;
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: calc(clamp(1.125rem, 4.8vw, 2.25rem));
  box-sizing: content-box;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.service__content {
  display: flex;
  justify-content: space-between;
  align-items: center; /* 垂直方向中央揃え */
}

/* 左カラム（画像） */
.service__visual {
  width: 50%;
  height: 772px;
  position: relative;
}

.service__visual-inner {
  width: 100%;
  height: 100%;
  position: relative;
}

.service__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
  /* 画像切り替え時のちらつき防止 */
  backface-visibility: hidden;
}

.service__img--active {
  opacity: 1;
  z-index: 1;
}

.service__text {
  width: 48%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service__list {
  display: flex;
  flex-direction: column;
}

.service__item {
  padding: 32px 18px 22px 33px;
  border-bottom: 1px solid var(--blue6);
  transition: all 0.4s ease-out;
  position: relative;
}

.service__item:last-of-type {
  border-bottom: none;
}

/* アクティブなアイテム */
.service__item--active {
  background-color: var(--blue8);
}

.service__head {
  display: flex;
  align-items: baseline;
  gap: 39px;
}

.service__number {
  font-size: 2.25rem;
  color: var(--blue5);
}

.service__name {
  font-size: 1.75rem;
  font-weight: 600;
}

.service__desc {
  font-size: 1rem;
  line-height: 1.625;
  margin-top: 22px;
}

.service__link-wrapper {
  margin-top: 18px;
}

.service__link {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--blue3);
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 26px;
  position: relative;
  transition: all 0.4s ease-out;
}

.service__link-arrow {
  content: "";
  display: block;
  width: 36px;
  height: 1px;
  background-color: var(--blue1);
  position: relative;
  transition: all 0.4s ease-out;
}

.service__link-arrow::after {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
  position: absolute;
  top: -11.5px;
  right: 3px;
}

.service__link:hover {
  opacity: 0.6;
}

.service__link:hover .service__link-arrow {
  translate: 10px 0px;
}

.service__item-img-sp-wrapper {
  display: none;
}

@media screen and (max-height: 1080px) and (min-width: 991px) {
  .service__container {
    justify-content: start;
  }

  .service__content {
    margin-top: 20px;
    align-items: start;
  }

  .service__item {
    padding: 12px 10px 22px 12px;
  }

  .service__desc {
    margin-top: 10px;
  }

  .service__link-wrapper {
    margin-top: 10px;
  }
}

/* スマホ対応 */
@media screen and (max-width: 990px) {
  .service {
    height: auto; /* 400vhを解除 */
    min-height: inherit;
    padding-bottom: 60px;
  }

  .service__container {
    position: static; /* sticky解除 */
    height: auto;
    display: block; /* 縦積み */
    padding-top: 40px;
  }

  /* PC用の画像エリアを隠す */
  .service__visual {
    display: none;
  }

  /* スマホ用画像を表示してスタイル調整 */
  .service__item-img-sp-wrapper {
    display: block;
    width: 100%;
    height: 500px; /* 適切な高さに設定 */
  }

  .service__item-img-sp {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .service__content {
    width: 100%;
    display: block;
    margin-top: 31px;
  }

  .service__text {
    width: 100%;
  }

  .service__list {
    max-height: none;
    gap: 40px; /* アイテム間の余白 */
  }

  .service__item {
    padding: 0; /* パディングは解除 */
    border-bottom: none; /* 線も不要なら削除 */
    background-color: transparent;
  }

  /* 以下、PC用のインタラクション（青背景、線、非表示など）をすべてリセット */
  .service__item--active {
    background-color: transparent;
    border-bottom: none;
  }

  .service__head {
    margin-top: 12px;
  }

  .service__number {
    font-size: 2.75rem;
  }

  .service__name {
    font-size: 1.75rem;
  }

  .service__desc {
    margin-top: 16px;
    font-size: 1.25rem;
  }

  .service__link-wrapper {
    margin-top: 18px;
  }
}

@media screen and (max-width: 528px) {
  .service__item-img-sp-wrapper {
    height: 250px;
  }

  .service__number {
    font-size: 1.5625rem;
  }

  .service__name {
    font-size: 1.125rem;
  }

  .service__desc {
    margin-top: 8px;
    font-size: 0.8125rem;
  }

  .service__link {
    font-size: 1rem;
  }

  .service__link-wrapper {
    margin-top: 10px;
  }
}

/* =========================================
   Information Section
   ========================================= */
.information {
  background: url(../img/mainvisual-transparent.webp) no-repeat center bottom/cover;
  position: relative;
  padding-block: 0px 100px;
  overflow: hidden;
  background-color: var(--white);
}

.information__container {
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: calc(clamp(1.125rem, 4.8vw, 2.25rem));
  box-sizing: content-box;
}

.information__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.information__link-all {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--blue1);
  display: flex;
  align-items: center;
  gap: 26px;
  position: relative;
  transition: all 0.4s ease-out;
}

.information__link-all--sp {
  margin-top: 48px;
  display: none;
  justify-content: center;
}

.information__link-arrow {
  content: "";
  display: block;
  width: 53px;
  height: 1px;
  background-color: var(--blue1);
  position: relative;
  transition: all 0.4s ease-out;
}

.information__link-arrow::after {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
  position: absolute;
  top: -11px;
  right: 3px;
}

.information__link-all:hover {
  opacity: 0.6;
}

.information__link-all:hover .information__link-arrow {
  translate: 10px 0px;
}

.information__lead {
  margin-top: 51px;
  font-size: 1.125rem;
  color: var(--black1);
}

.information__scroll-area {
  margin-top: 40px;
  /* 左端をコンテナ幅に合わせる計算（(画面幅 - コンテナ幅) / 2 + パディング） */
  padding-left: calc((100vw - var(--content-width)) / 2 + calc(clamp(1.125rem, 4.8vw, 2.25rem)));
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; /* iOS慣性スクロール */
  position: relative;
  z-index: 1;
  /* スクロールバーを隠す場合 */
  scrollbar-width: none; /* Firefox */
}
.information__scroll-area::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.information__list {
  padding-right: calc(clamp(1.125rem, 4.8vw, 2.25rem));
  display: flex;
  gap: 40px;
  width: max-content; /* 子要素の幅に合わせて伸びる */
}

.information__item {
  width: 420px;
}

.information__thumb-wrapper {
  width: 100%;
  height: 280px;
}

.information__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.information__date {
  display: block;
  margin-top: 16px;
  font-family: "Oooh Baby", "Noto Sans JP", sans-serif;
  font-size: 1.125rem;
  color: var(--blue7);
  line-height: 1;
}

.information__item-title {
  margin-top: 25px;
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 600;
}

@media screen and (max-width: 1020px) {
  .information__scroll-area {
    padding-left: calc(clamp(1.125rem, 4.8vw, 2.25rem));
  }
}

@media screen and (max-width: 860px) {
  .information__link-all {
    display: none;
  }

  .information__link-all--sp {
    display: flex;
  }
}

@media screen and (max-width: 528px) {
  .information {
    padding-block: 54px 36px;
  }

  .information__lead {
    font-size: 0.625rem;
    margin-top: 15px;
  }

  .information__scroll-area {
    margin-top: 35px;
  }

  .information__list {
    gap: 20px;
  }

  .information__item {
    width: 240px;
  }

  .information__thumb-wrapper {
    height: 160px;
  }

  .information__date {
    font-size: 0.6875rem;
    margin-top: 12px;
  }

  .information__item-title {
    font-size: 1rem;
    margin-top: 10px;
  }
}

/* =========================================
   メッセージ Section
   ========================================= */

.support-message {
  padding-block: 100px;
  background-color: var(--blue8); 
  padding-inline: calc(clamp(1.125rem, 4.8vw, 2.25rem));
  display: flex;
  justify-content: center;
position: relative;
}

.support-message__inner {
  max-width: var(--content-width);
  margin-inline: auto;
  width: 100%;
}

.reveal-line {
  overflow: hidden;
}

.reveal-text {
  display: inline-block;
  position: relative;
  margin-bottom: 12px;
  z-index: 2;
  padding: 8px 15px;
  color: transparent; 
  font-size: 24px;
  font-weight: bold;
  line-height: 1.4;
  transition: all 1.5s linear 0.6s; 
}

.reveal-text-sp {
  display: none;
}

.reveal-text::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 0; 
  height: 100%;
  background-color: var(--blue3);
  z-index: -1;
  transition: width 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.is-visible .reveal-text {
  color: var(--white); 
}

.is-visible .reveal-text::before {
  width: 100%;
}

.js-reveal-container.is-visible .reveal-line:nth-child(2) .reveal-text::before {
  transition-delay: 0.8s, 0.8s; 
}
.js-reveal-container.is-visible .reveal-line:nth-child(3) .reveal-text::before {
  transition-delay: 1.2s;
}

.js-reveal-container.is-visible .reveal-line:nth-child(1) .reveal-text {
  transition-delay: 1.6s, 1.6s; 
}
.js-reveal-container.is-visible .reveal-line:nth-child(2) .reveal-text {
  transition-delay: 2.0s; 
}
.js-reveal-container.is-visible .reveal-line:nth-child(3) .reveal-text {
  transition-delay: 2.4s; 
}

@media screen and (max-width: 528px) {
  .support-message {
padding-block: 50px;
  }

  .reveal-text-sp {
    display: inline-block;
  }

  .reveal-text {
    padding: 5px 10px;
    font-size: 0.875rem;
  }
}

@media screen and (max-width: 437px) {
  .reveal-text {
    font-size: 0.91rem;
    padding: 5px;
    letter-spacing: 0;
  }
}

@media screen and (max-width: 400px) {
  .reveal-text {
    font-size: 0.80rem;
    padding: 5px;
    letter-spacing: 0;
  }
}



/* =========================================
   Contact Section
   ========================================= */
.contact {
  background: url(../img/contact-bg.webp) no-repeat center top/cover;
  padding-block: 112px 139px;
  position: relative;
}

.contact__container {
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: calc(clamp(1.125rem, 4.8vw, 2.25rem));
  box-sizing: content-box;
  position: relative;
  z-index: 1;
}

.contact__lead {
  color: var(--white);
  margin-top: 37px;
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 600;
}

.contact__methods {
  margin-top: 96px;
  display: grid;
  grid-template-columns: auto auto;
  justify-content: space-between;
}

.contact__method-title {
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 600;
  text-align: center;
}

/* 電話エリア */
.contact__phone {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  color: var(--white);
  margin-top: 13px;
}

.contact__icon {
  width: 37px;
  aspect-ratio: 1/1;
  object-fit: contain;
}

.contact__number {
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1;
}

.contact__hours {
  color: var(--white);
  font-size: 1.125rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 13px;
  margin-top: 19px;
}

.contact__hours-label {
  background-color: var(--white);
  color: var(--blue7);
  padding: 5px 13px;
  border-radius: 3px;
}

/* メールボタン */
.contact__btn-mail {
  width: 460px;
  height: 60px;
  display: grid;
  place-content: center;
  background-color: var(--white);
  color: var(--blue7);
  margin-top: 13px;
  margin-inline: auto;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.125rem;
  position: relative;
  transition: all 0.4s ease-out;
}

.contact__btn-mail:hover {
  opacity: 0.9;
}

.contact__btn-icon {
  width: 22px;
  height: auto;
  margin-block: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 32px;
}

.contact__btn-arrow {
  content: "";
  display: block;
  width: 36px;
  height: 1px;
  background-color: var(--blue7);
  position: absolute;
  right: 0;
  top: 50%;
  transition: all 0.4s ease-out;
}

.contact__btn-arrow::before {
  content: "";
  display: block;
  width: 36px;
  height: 1px;
  background-color: var(--white);
  position: absolute;
  right: -36px;
  top: 50%;
  transition: all 0.4s ease-out;
}

.contact__btn-arrow::after {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  border-top: 1px solid var(--white);
  border-right: 1px solid var(--white);
  transform: rotate(45deg);
  position: absolute;
  top: -11px;
  right: -33px;
  transition: all 0.4s ease-out;
}

.contact__btn-mail:hover .contact__btn-arrow {
  width: 24px;
}

.contact__btn-mail:hover .contact__btn-arrow::before {
  width: 48px;
  right: -48px;
}

.contact__btn-mail:hover .contact__btn-arrow::after {
  right: -45px;
}

@media screen and (max-width: 980px) {
  .contact__methods {
    grid-template-columns: 1fr;
    gap: calc(clamp(1.688rem, 0.282rem + 5.25vw, 3.5rem));
  }

  .contact__method:first-of-type {
    grid-row: 2/3;
  }

  .contact__btn-mail {
    max-width: 460px;
    width: 90%;
  }
}

@media screen and (max-width: 528px) {
  .contact {
    padding-block: 59px 52px;
  }

  .contact__lead {
    font-size: 0.625rem;
    margin-top: 26px;
  }

  .contact__methods {
    margin-top: 31px;
  }

  .contact__method-title {
    font-size: 0.8125rem;
  }

  .contact__btn-mail {
    max-width: 280px;
    height: 45px;
    font-size: 0.75rem;
  }

  .contact__btn-icon {
    width: 13px;
    height: 9px;
  }

  .contact__phone {
    max-width: 280px;
    height: 45px;
    margin-inline: auto;
    margin-top: 6px;
    background-color: var(--blue9);
    border: solid 1px var(--blue10);
    border-radius: 30px;
    gap: 8px;
  }

  .contact__icon {
    width: 20px;
  }

  .contact__number {
    font-size: 1.6875rem;
  }

  .contact__hours {
    font-size: 0.75rem;
    margin-top: 8px;
  }

  .contact__hours-label {
    padding: 4px 8px;
  }
}
/* =========================================
   Footer
   ========================================= */
.footer {
  padding-block: 86px 30px;
  position: relative;
  background-color: var(--white);
}

.footer__container {
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: calc(clamp(1.125rem, 4.8vw, 2.25rem));
  box-sizing: content-box;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer__info {
  flex-shrink: 0;
}

.footer__logo {
  width: 278px;
}

.footer__logo-img {
  width: 100%;
  height: auto;
}

.footer__company-name {
  font-size: 1rem;
  font-weight: 500;
  margin-top: 17px;
  padding-left: 97px;
}

.footer__address {
  font-size: 1rem;
  font-weight: 500;
  padding-left: 97px;
}

.footer__nav-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px calc(clamp(4.375rem, -8.75rem + 23.33vw, 8.75rem));
  padding-top: 23px;
}

.footer__nav-item a {
  color: var(--black1);
  font-size: 1.125rem;
  font-weight: 500;
}

.footer__nav-item a:hover {
  color: var(--blue1);
}

.footer__copyright {
  max-width: var(--content-width);
  margin-inline: auto;
  margin-top: 119px;
  padding-top: 30px;
  border-top: solid 1px var(--gray1);
  text-align: right;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--black1);
}

@media screen and (max-width: 860px) {
  .footer__container {
    flex-direction: column;
    justify-content: start;
    align-items: center;
    gap: calc(clamp(4.188rem, 0.039rem + 15.51vw, 8.375rem));
  }
}

@media screen and (max-width: 528px) {
  .footer {
    padding-block: 69px 21px;
  }

  .footer__logo {
    width: 237px;
  }

  .footer__company-name {
    margin-top: 10px;
  }

  .footer__company-name,
  .footer__address {
    font-size: 0.625rem;
    padding-left: 0;
  }

  .footer__nav-list {
    padding-top: 0px;
  }

  .footer__nav-item a {
    font-size: 0.8125rem;
  }

  .footer__copyright {
    margin-top: 79px;
    padding-top: 21px;
    font-size: 0.625rem;
    text-align: center;
  }
}

/* =================================================================
  Block: solid-page
================================================================= */
.page-mainvisual {
  height: 600px;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 50;
  display: flex;
  align-items: center;
  background: url(../img/mainvisual.webp) no-repeat center center/cover;
}

.page-mainvisual__inner {
  width: 100%;
  max-width: var(--content-width);
  height: 100%;
  margin-inline: auto;
  padding-inline: calc(clamp(1.125rem, 4.8vw, 2.25rem));
  box-sizing: content-box;
  position: relative;
  display: flex;
  align-items: center;
}

.page__heading {
  color: var(--white);
  font-family: "Oooh Baby", "Noto Sans JP", sans-serif;
  font-size: 7.875rem;
  font-weight: 400;
}

.page__subheading {
  color: var(--white);
  margin-top: 53px;
  font-size: 1.125rem;
}

.breadcrumbs {
  position: absolute;
  z-index: 60;
  bottom: 20px;
  left: 44px;
  color: var(--white);
  font-size: 0.75rem;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.breadcrumbs > a,
.breadcrumbs > li {
  color: currentColor;
}

.breadcrumbs > .white {
  color: var(--white);
}

@media screen and (max-width: 528px) {
  .page__heading {
    font-size: 4.5625rem;
  }

  .page__subheading {
    margin-top: 12px;
    font-size: 0.875rem;
  }
}

/* =================================================================
  Block: contact
================================================================= */
.contact-form {
  padding-top: 63px;
}

.contact-form__inner {
  max-width: var(--content-width);
  margin-inline: auto;
  border-bottom: solid 1px var(--gray2);
  padding-inline: calc(clamp(1.125rem, 4.8vw, 2.25rem));
  box-sizing: content-box;
  padding-bottom: 83px;
}

.contact-form__description {
  font-size: 1.125rem;
  text-align: center;
}

.contact-form__description-small {
  color: var(--blue3);
  font-size: 1rem;
  font-weight: 600;
}

.contact-form__content form {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0px 50px;
  margin-top: 74px;
}

/* トラッカー */
.smf-progress-tracker {
  grid-column: 1/2;
  grid-row: 1/3;
  flex-direction: column;
  grid-template-columns: 1fr;
  gap: 40px;
  height: 230px;
  position: relative;
}

.smf-progress-tracker__item {
  font-size: 1.25rem;
  width: 100% !important;
  height: 50px;
  flex-direction: row !important;
  gap: 13px;
  opacity: 0.3;
}

.smf-progress-tracker__item__text {
  margin-top: 0 !important;
  color: var(--black2) !important;
  font-size: 1.125rem;
  letter-spacing: 0;
}

.smf-progress-tracker__item::after,
.smf-progress-tracker__item::before {
  display: none !important;
}

/* 現在のステップ */
.smf-progress-tracker__item[aria-current="true"] {
  opacity: 1;
}

.smf-progress-tracker__item[aria-current="true"] .smf-progress-tracker__item__text {
  color: var(--black2) !important;
}

.smf-progress-tracker__item[aria-current="true"] .smf-progress-tracker__item__number {
  background-color: var(--blue3) !important;
}

.smf-progress-tracker__item__number {
  font-size: 1.5rem;
  width: 50px !important;
  height: 50px !important;
  background-color: var(--black2) !important;
  position: relative;
  overflow: visible !important;
}

.smf-progress-tracker__item:not(:first-of-type) .smf-progress-tracker__item__number::after {
  content: "";
  width: 2px;
  height: 40px;
  display: block;
  background-color: var(--black2);
  position: absolute;
  top: -40px;
  left: 24px;
  opacity: 0.3;
}
/* トラッカー終了 */

/* form入力欄 */
.smf-form {
  grid-column: 2/3;
  grid-row: 1/2;
}

.smf-item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 26px;
  padding-block: 25px !important;
  border-top: solid 1px var(--gray2);
}

.has-inline-color {
  background-color: var(--red1) !important;
}

.smf-item__col--label {
  max-width: 100% !important;
  padding: 0 !important;
  flex-basis: auto !important;
  width: 30%;
}

/* 住所の欄だけラベル幅大きく */
.wp-block-group .smf-item__col--label {
  width: 45%;
}

.smf-item__label__text {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--black1);
}

.smf-item__label .has-inline-color {
  color: var(--white);
  font-size: 0.8em;
  font-weight: 500;
  font-style: normal;
  line-height: 1;
  padding: 6px 10px;
}

.smf-item__col--controls {
  width: 70%;
}

.smf-select-control {
  width: 100%;
}

.smf-text-control__control,
.smf-select-control__control,
.smf-textarea-control__control {
  display: block;
  width: 100%;
  padding: 18px 32px !important;
  box-sizing: border-box;
  color: var(--black1);
  background-color: var(--gray3) !important;
  border: none !important;
  border-radius: 5px !important;
  font-size: 1rem;
}

.smf-select-control__control {
  background-color: transparent !important;
}

.smf-form .smf-select-control__toggle {
  background-color: var(--gray3) !important;
  border-radius: 5px;
}

.smf-textarea-control > textarea {
  height: 247px;
  padding: 26px;
  resize: none;
  overflow-y: auto;
}

.wp-block-group .smf-textarea-control {
  margin-top: 21px;
}

/* お問い合わせ項目のテキストエリアは小さく */
.wp-block-group .smf-textarea-control > textarea {
  height: 127px;
}

.wp-block-columns.are-vertically-aligned-center {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 !important;
}

/* 個人情報保護の部分 */
.privacy-block {
  height: 110px;
  overflow-y: scroll;
  padding: 15px;
  border: 1px solid var(--gray4);
  color: var(--black3);
  background: var(--white);
  margin-top: 40px;
}

.privacy-block__title {
  font-size: 0.875rem;
  font-weight: 400;
}

.privacy-block__subtitle {
  font-size: 0.875rem;
  font-weight: 400;
  margin-top: 12px;
}

.privacy-block__text {
  font-size: 0.875rem;
}
/* 個人情報保護の部分おわり */

.smf-action {
  grid-column: 1/3;
  grid-row: 2/3;
}

.smf-system-error-content-ready {
  grid-column: 1/3;
  grid-row: 3/4;
}

.smf-button-control {
  position: relative;
}

.smf-button-control__control {
  width: 90%;
  max-width: 460px;
  height: 60px;
  background-image: none !important;
  background: var(--blue7) !important;
  color: var(--white) !important;
  border: solid 1px var(--blue7) !important;
  place-items: center;
  font-size: 1.125rem;
  border-radius: 30px !important;
  margin-top: 43px;
  transition: all 0.4s ease-out !important;
  position: relative;
  z-index: 10;
}

.smf-button-control__control::before {
  content: "";
  display: block;
  width: 36px;
  height: 1px;
  background-color: var(--blue7);
  position: absolute;
  right: -36px;
  top: 50%;
  transition: all 0.4s ease-out;
}

.smf-button-control__control::after {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  border-top: 1px solid var(--blue7);
  border-right: 1px solid var(--blue7);
  transform: rotate(45deg);
  position: absolute;
  top: 17px;
  right: -32px;
  transition: all 0.4s ease-out;
}

.smf-button-control__control[data-action="back"] {
  background: none !important;
  color: var(--blue7) !important;
}

.smf-button-control__control[data-action="back"]::before,
.smf-button-control__control[data-action="back"]::after {
  display: none;
}
.smf-button-control:has(.smf-button-control__control[data-action="back"])::before {
  display: none;
}

.smf-button-control::before {
  content: "";
  display: block;
  width: 36px;
  height: 1px;
  background-color: var(--white);
  position: absolute;
  right: 0;
  top: calc(50% - 0.5px);
  z-index: 20;
  transition: all 0.4s ease-out;
}

.smf-button-control__control:hover {
  background: var(--blue7) !important;
  color: var(--white) !important;
}

.smf-button-control__control:hover::before {
  width: 46px;
  right: -46px;
}

.smf-button-control__control:hover::after {
  right: -42px;
}

.smf-button-control:has(.smf-button-control__control:hover)::before {
  width: 26px;
}

.smf-action .smf-button-control + .smf-button-control {
  margin-left: 0 !important;
}

.smf-complete-content {
  width: 100%;
  color: var(--black);
  font-size: 1rem;
  line-height: 1.8;
}

@media screen and (max-width: 880px) {
  .contact-form__content form {
    grid-template-columns: 1fr;
    margin-top: 36px;
  }

  .smf-progress-tracker {
    display: inline-block;
    grid-column: 1/2;
    grid-row: 1/2;
  }

  .smf-form {
    grid-column: 1/2;
    grid-row: 2/3;
  }

  .smf-action {
    grid-column: 1/2;
    grid-row: 3/4;
  }
  .smf-system-error-content-ready {
    grid-column: 1/2;
    grid-row: 4/5;
  }
}

@media screen and (max-width: 624px) {
  .smf-item {
    display: grid;
    grid-template-columns: 1fr;
  }

  .smf-item__col--controls {
    width: 100%;
    margin-top: 20px;
  }

  .smf-item,
  .smf-item__col--label {
    width: 100%;
  }

  .smf-item,
  .smf-item__label__text {
    display: block;
    line-height: 1.6;
  }

  .smf-item__label .has-inline-color {
    margin-left: 22px;
  }

  .smf-complete-content,
  .contact-form__description-text {
    font-size: 1rem;
  }

  .contact-form__description-small {
    font-size: 0.75rem;
  }

  .contact-form__description-tell {
    font-size: 2rem;
  }

  .contact-form__description-mail {
    font-size: 1rem;
  }

  .smf-button-control__control {
    width: 90%;
    max-width: 400px;
  }

  .wp-block-group .smf-item__col--label {
    width: 100%;
  }
}

/* =================================================================
  Block: information archive
================================================================= */
.information-archive {
  padding-block: 40px 82px;
  padding-inline: calc(clamp(1.125rem, 4.8vw, 2.25rem));
}

.information-archive__card {
  max-width: var(--content-width);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(420px, auto));
  gap: 80px 30px;
}

.information-archive__card-pic {
  width: 100%;
  height: auto;
}

.information-archive__card-date {
  color: var(--blue7);
  font-family: "Oooh Baby", "Noto Sans JP", sans-serif;
  font-size: 1.125rem;
  margin-top: 16px;
}

.information-archive__card-title {
  font-size: 1.25rem;
  margin-top: 25px;
}

.information-archive__pagination {
  margin-top: 120px;
  text-align: center;
}

.information-archive__pagination ul {
  display: inline-flex;
  gap: 20px;
}

.information-archive__pagination li a,
.information-archive__pagination li span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background-color: var(--blue3);
  border: 1px solid var(--blue3);
  color: var(--white);
  text-decoration: none;
  border-radius: 50%;
  font-size: 20px;
}

.information-archive__pagination li span.current {
  background-color: var(--gray5);
  color: var(--gray6);
  border-color: var(--gray5);
}

.information-archive__pagination li span.dots {
  background-color: var(--white);
  color: var(--blue3);
  border: none;
  padding: 6px;
}

.information-archive__pagination li > .next,
.information-archive__pagination li > .prev {
  position: relative;
  background-color: var(--white);
  color: var(--blue3);
  border: none;
}

.information-archive__pagination li > .next::after,
.information-archive__pagination li > .prev::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-right: solid 2px currentColor;
  border-top: solid 2px currentColor;
  rotate: 45deg;
  position: absolute;
  margin-left: 28px;
}

.information-archive__pagination li > .prev::after {
  rotate: -135deg;
  margin-left: 0;
  margin-right: 28px;
}

@media screen and (max-width: 528px) {
  .information-archive__card {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .information-archive__card-date {
    font-size: 0.875rem;
    margin-top: 8px;
  }

  .information-archive__card-title {
    font-size: 1.125rem;
    margin-top: 10px;
  }
}

/* =================================================================
  Block: news archive
================================================================= */
.news-archive {
  padding-block: 64px 82px;
  padding-inline: calc(clamp(1.125rem, 4.8vw, 2.25rem));
}

.news-archive__card {
  max-width: var(--content-width);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr;
}

.news-archive__card-item {
  padding-block: 31px 31px;
  padding-right: 40px;
  border-bottom: solid 1px var(--blue13);
  transition: all 0.4s ease-out;
  position: relative;
}

.news-archive__card-item:first-of-type {
  border-top: solid 1px var(--blue13);
}

.news-archive__card-date {
  color: var(--blue7);
  font-family: "Oooh Baby", "Noto Sans JP", sans-serif;
  font-size: 1rem;
  margin-top: 16px;
}

.news-archive__card-title {
  font-size: 1rem;
  font-weight: 600;
  margin-top: 16px;
}

.news-archive__card-arrow {
  content: "";
  display: block;
  width: 36px;
  height: 1px;
  background-color: var(--blue1);
  position: absolute;
  top: 50%;
  right: 10px;
  transition: all 0.4s ease-out;
}

.news-archive__card-arrow::after {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  border-top: 1px solid var(--blue1);
  border-right: 1px solid var(--blue1);
  transform: rotate(45deg);
  position: absolute;
  top: -11.5px;
  right: 3px;
}

.news-archive__card-item:has(.news-archive__card-title:hover) > .news-archive__card-arrow {
  translate: 10px 0px;
}

.news-archive__card-item:has(.news-archive__card-title:hover) {
  background-color: var(--blue4);
}

@media screen and (max-width: 528px) {
  .news-archive {
    padding-bottom: 41px;
  }

  .news-archive__card-date {
    font-size: 0.875rem;
  }

  .news-archive__card-title {
    font-size: 1rem;
  }

  .news-archive__card-arrow {
    width: 18px;
  }

  .news-archive__card-arrow::after {
    width: 12px;
    height: 12px;
    top: -5.5px;
  }
}

/* =================================================================
  Block: information-page
================================================================= */
.information-page__content {
  max-width: 1000px;
  margin-inline: auto;
  padding-block: 113px 170px;
  padding-inline: calc(clamp(1.125rem, 4.8vw, 2.25rem));
  box-sizing: content-box;
}

.information-page__breadcrumbs {
  position: initial;
  color: var(--black1);
  font-size: 0.75rem;
  left: 0px;
}

.information-page__meta {
  margin-top: 44px;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 24px;
}

.information-page__post-date {
  font-size: 0.875rem;
}

.information-page__category-name {
  font-size: 0.875rem;
  padding: 1px 2px;
  border: solid 1px var(--black1);
}

.information-page__title {
  color: var(--black1);
  font-size: 1.625rem;
  line-height: 1.4;
  margin-top: 25px;
}

.information-page__thumbnail {
  width: 100%;
  height: auto;
  margin-inline: auto;
  margin-top: 8px;
}

.information-page__body {
  margin-top: 48px;
}

.information-page__body h2 {
  font-size: 1.25rem;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 1em;
  margin-top: 35px;
}

.information-page__body h2::before {
  content: "";
  display: block;
  background-color: var(--blue3);
  width: 10px;
  height: 40px;
}

.information-page__body h3 {
  color: var(--black);
  font-size: 1.125rem;
  padding: 8px 16px;
  background-color: var(--blue11);
  margin-top: 16px;
}

.information-page__body p {
  font-size: 1.125rem;
  line-height: 1.5;
  margin-top: 16px;
}

.information-page__body a {
  display: inline-block;
  font-weight: bold;
  color: var(--blue3);
  border-bottom: solid 1px var(--blue3);
}

.information-page__body img {
  width: 100%;
  height: auto;
  margin-inline: auto;
  margin-top: 32px;
}

.information-page__body ul {
  margin-top: 18px;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  gap: 8px;
}

.information-page__body li {
  font-size: 1.25rem;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 16px;
}

.information-page__sns {
  background-color: var(--gray7);
  width: 100%;
  max-width: 400px;
  margin-inline: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  padding-block: 14px;
  border-radius: 30px;
  margin-top: 55px;
}

/* youtubeサムネイルの調整 */
.wp-block-embed__wrapper iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 500/281;
}

@media screen and (max-width: 500px) {
  .information-page__content {
    padding: 70px 12px 75px;
  }

  .information-page__title {
    font-size: 1.25rem;
  }

  .information-page__body {
    margin-top: 33px;
  }

  .information-page__body p {
    font-size: 1rem;
  }
}

/* =========================================
   Company page
   ========================================= */
.company-intro {
  position: relative;
  padding-block: 73px 113px;
  padding-inline: calc(clamp(1.125rem, 4.8vw, 2.25rem));
  margin-inline: auto;
  overflow: hidden;
  max-width: var(--content-width);
  box-sizing: content-box;
}

.company-intro__message {
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--blue3);
  line-height: 1.4;
  background: url(../img/light-blue-back-logo.webp) no-repeat center top/cover;
  padding: 60px;
  height: 344px;
  display: grid;
  place-items: center;
}

.company-greeting {
  padding-bottom: 106px;
}

.company-greeting__container {
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: calc(clamp(1.125rem, 4.8vw, 2.25rem));
  box-sizing: content-box;
}

.company__header {
  display: flex;
  align-items: end;
  gap: 28px;
}

.company__title {
  color: var(--black1);
  margin-top: 12px;
  font-size: 1.625rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 14px;
}

.company__title::before {
  content: "";
  display: block;
  width: 7px;
  aspect-ratio: 1/1;
  background-color: var(--blue3);
  border-radius: 50%;
}

.company__title-en {
  font-family: "Oooh Baby", "Noto Sans JP", sans-serif;
  font-size: 1.625rem;
  color: var(--blue3);
  line-height: 1;
}

.company-greeting__body {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  margin-top: 36px;
  gap: 5%;
}

.company-greeting__visual {
  width: 24%;
  flex-shrink: 0;
}

.company-greeting__img-wrapper {
  width: 24%;
  flex-shrink: 0;
  position: relative;
}

.company-greeting__img {
  width: 100%;
  height: auto;
}

.company-greeting__sign {
  position: absolute;
  bottom: -10px;
  right: -10px;
  font-family: "Oooh Baby", "Noto Sans JP", sans-serif;
  font-size: 2rem;
  color: var(--blue12);
  transform: rotate(-10deg);
  z-index: 2;
}

.company-greeting__text {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-top: 30px;
}

.company-greeting__text:first-child {
  margin-top: 0;
}

.company-information {
  max-width: var(--content-width);
  margin-inline: auto;
  padding-bottom: 94px;
  padding-inline: calc(clamp(1.125rem, 4.8vw, 2.25rem));
}

.company-information__list {
  display: grid;
  grid-template-columns: 240px 1fr;
  align-items: start;
  margin-top: 36px;
}

.company-information__list-term,
.company-information__list-description {
  padding: 20px 0px 20px 60px;
  border-top: 1px solid var(--blue3);
  font-size: 1.125rem;
}

.company-information__list-description {
  border-top: solid 1px var(--gray8);
}

.company-information__list-term:last-of-type {
  border-bottom: solid 1px var(--blue3);
}

.company-information__list-description:last-of-type {
  border-bottom: solid 1px var(--gray8);
}

.company-information__list-term {
  display: flex;
  justify-content: start;
  align-items: center;
  height: 100%;
}

.company-information__map {
  margin-top: 20px;
  width: 100%;
}

.company-information__map iframe {
  width: 100%;
  aspect-ratio: 718/457;
  height: auto;
}

.company-information__office {
  font-size: 1.25rem;
  margin-top: 70px;
}

@media screen and (max-width: 860px) {
  .company-greeting__body {
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 2.5rem;
  }

  .company-greeting__img-wrapper {
    width: 100%;
    max-width: 400px;
    margin-inline: auto;
  }

  .company-greeting__content {
    width: 100%;
  }

  .company-information__list {
    grid-template-columns: 200px 1fr;
  }

  .company-information__list-term,
  .company-information__list-description {
    font-size: 1rem;
    padding-inline: 20px;
  }
}
@media screen and (max-width: 528px) {
  /* Intro */
  .company-intro {
    padding-block: 37px 57px;
  }

  .company-intro__message {
    aspect-ratio: 1024/344;
    height: auto;
    padding: 12px;
  }

  .company-intro__message {
    font-size: 1rem;
  }

  .company-greeting {
    padding-bottom: 53px;
  }

  .company-greeting__text {
    font-size: 0.875rem;
    margin-top: 16px;
  }

  .company-greeting__text br {
    display: none;
  }

  .company-information__list {
    grid-template-columns: 140px 1fr;
  }

  .company-information__list-term,
  .company-information__list-description {
    font-size: 1rem;
    padding-inline: 8px;
  }
}

/* =========================================
   Service Detail Page Components
   ========================================= */
.surveying-mainvisual {
  background: url(../img/surveying-mainvisual.webp) no-repeat center top/cover;
}

.left-behind-items-mainvisual {
  background: url(../img/left-behind-items-mainvisual.webp) no-repeat center top/cover;
}

.cleaning-mainvisual {
  background: url(../img/cleaning-mainvisual.webp) no-repeat center top/cover;
}

.buy-sell-mainvisual {
  background: url(../img/buy-sell-mainvisual.webp) no-repeat center top/cover;
}

.service-page-mainvisual__inner {
  flex-direction: column;
  justify-content: center;
  align-items: start;
}

.service-page__title {
  color: var(--white);
  font-size: 3.5rem;
  font-weight: 400;
  letter-spacing: 0.1em;
}

.service-page__description {
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  margin-top: 29px;
}

.service-detail__section {
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: calc(clamp(1.125rem, 4.8vw, 2.25rem));
  box-sizing: content-box;
  padding-block: 50px;
}

/* 共通：見出しスタイル */
.service-detail__header {
  display: flex;
  align-items: center;
  gap: 27px;
}

.service-detail__title-ja {
  font-size: 1.625rem;
  font-weight: 400;
  margin-right: 15px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.service-detail__title-ja::before {
  content: "";
  display: block;
  width: 7px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: var(--blue7);
}

.service-detail__title-en {
  font-family: "Oooh Baby", "Noto Sans JP", sans-serif;
  font-size: 1.625rem;
  color: var(--blue3);
  font-weight: 400;
}

@media screen and (max-width: 528px) {
  .service-detail__section {
    padding-block: 38px;
  }

  .service-page__title {
    font-size: 2.5rem;
  }

  .service-page__description {
    font-size: 0.875rem;
  }

  .service-detail__header {
    display: block;
  }

  .service-detail__title-ja {
    font-size: 1.125rem;
  }

  .service-detail__title-en {
    display: block;
    font-size: 1.125rem;
    text-align: start;
  }
}

/* ----------------------------------
   1. お悩みリスト (Worries)
   ---------------------------------- */
.service-worries__list {
  margin-top: 31px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.service-worries__item {
  background-color: #f6f6f6;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 18px 30px;
}

.service-worries__icon {
  flex-shrink: 0;
  width: 24px;
  aspect-ratio: 1/1;
}

.service-worries__icon-img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.service-worries__text {
  font-size: 1.25rem;
  font-weight: 400;
}

.service-worries .information__link-all {
  margin-top: 35px;
  justify-content: end;
}

@media screen and (max-width: 528px) {
  .service-worries__list {
    margin-top: 16px;
    gap: 9px;
  }

  .service-worries__item {
    gap: 11px;
    padding: 9px 15px;
  }

  .service-worries__icon-img {
    width: 12px;
  }

  .service-worries__text {
    font-size: 0.875rem;
  }

  .service-worries .information__link-all {
    margin-top: 18px;
    display: flex;
    font-size: 1.125rem;
  }

  .service-worries .information__link-arrow::after {
    width: 12px;
    height: 12px;
    top: -5.5px;
  }
}

/* ----------------------------------
   2. 解決策・アピール (Solution)
   ---------------------------------- */
.service-solution {
  background-color: #f1f7fc;
  padding-block: 77px;
}

.service-solution__container {
  max-width: 800px;
  margin-inline: auto;
  padding-inline: calc(clamp(1.125rem, 4.8vw, 2.25rem));
  box-sizing: content-box;
}

.service-solution__heading {
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--blue3);
  line-height: 1.4;
}

.service-solution__text {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2;
  margin-top: 36px;
}

@media screen and (max-width: 528px) {
  .service-solution {
    padding-block: 38px;
  }

  .service-solution__heading {
    font-size: 1.125rem;
  }

  .service-solution__text {
    font-size: 0.875rem;
    margin-top: 18px;
  }
}

/* ----------------------------------
   3. 必要になるケース (Cases)
   ---------------------------------- */
.service-cases__list {
  margin-top: 31px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.service-cases__item {
  background-color: #f6f6f6;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 18px 30px;
  font-size: 1.25rem;
}

.service-cases__item::before {
  content: "";
  display: block;
  width: 6px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #686868;
}

@media screen and (max-width: 528px) {
  .service-cases__list {
    margin-top: 16px;
    gap: 9px;
  }

  .service-cases__item {
    gap: 11px;
    padding: 9px 15px;
    font-size: 0.875rem;
  }
}

/* ----------------------------------
   4. 流れ (Flow)
   ---------------------------------- */
.service-flow__container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
  margin-top: 57px;
}

.service-flow__item {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: start;
  gap: 14px;
}

.service-flow__icon-wrapper {
  max-width: 220px;
  width: 100%;
  aspect-ratio: 1/1;
  margin-inline: auto;
  background: linear-gradient(0deg, rgba(237, 244, 250, 1) 0%, rgba(255, 255, 255, 1) 100%);
  border-radius: 50%;
  position: relative;
  display: grid;
  place-content: center;
}

.service-flow__step-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Oooh Baby", "Noto Sans JP", sans-serif;
  color: var(--blue3);
  line-height: 1;
  position: absolute;
  z-index: 1;
  top: -6px;
  left: 0;
  right: 0;
  margin-inline: auto;
}

.service-flow__step-en {
  font-size: 0.875rem;
}

.service-flow__step-num {
  font-size: 2rem;
}

.service-flow__icon {
  width: 79px;
  height: auto;
  aspect-ratio: 1/1;
}

.service-flow__title {
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
  min-height: 60px;
}

.service-flow__title-sub {
  font-size: 0.875rem;
}

.service-flow__arrow {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--blue3);
  border-right: 2px solid var(--blue3);
  transform: rotate(45deg);
  position: absolute;
  z-index: 3;
  top: 50%;
  right: -12px;
}

.service-flow__arrow-sp {
  display: none;
}

@media screen and (max-width: 860px) {
  .service-flow__container {
    grid-template-columns: 1fr auto 1fr;
    justify-content: space-between;
    gap: 18px 0;
    margin-top: 28px;
  }

  .service-flow__arrow {
    display: none;
  }

  .service-flow__arrow-sp {
    position: relative;
    display: block;
    translate: -10px -50px;
  }
}

@media screen and (max-width: 528px) {
  .service-flow__icon-wrapper {
    max-width: 140px;
  }

  .service-flow__step-label {
    top: -3px;
  }

  .service-flow__step-en {
    font-size: 0.75rem;
  }

  .service-flow__step-num {
    font-size: 1.25rem;
  }

  .service-flow__icon {
    width: 60px;
  }

  .service-flow__title {
    font-size: 1rem;
  }

  .service-flow__title-sub {
    font-size: 0.6rem;
  }
}

/* ----------------------------------
   5. 料金の目安 (Price)
   ---------------------------------- */
.service-price__note-top {
  font-size: 1rem;
  margin-top: 14px;
}

.service-price__table-wrapper {
  width: 100%;
  margin-top: 21px;
}

.service-price__table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border-bottom: solid 1px var(--blue3);
}

.service-price__table th,
.service-price__table td {
  border: 1px solid var(--blue3);
  vertical-align: middle;
}

/* 左カラム：項目名 */
.service-price__th {
  background-color: #f4f8fa;
  width: 35%;
  padding: 70px 10px 70px 40px;
  text-align: left;
  font-size: 1.25rem;
  font-weight: 400;
}

.service-price__th-sub {
  font-size: 1.25rem;
  margin-top: 5px;
  display: inline-block;
  translate: -0.5em;
}

/* 右カラム上段：金額 */
.service-price__td-price {
  background-color: var(--white);
  padding: 28px 40px 19px;
  font-size: 2.25rem;
  border-bottom: 1px solid var(--blue3);
}

.service-price__unit {
  font-size: 1.25rem;
}

/* 右カラム下段：説明 */
.service-price__td-desc {
  background-color: var(--white);
  padding: 16px 38px 16px 40px;
  font-size: 1.25rem;
  line-height: 1.5;
}

/* 注釈フッター */
.service-price__footer {
  background-color: #f5f5f5;
  padding: 30px 45px;
  margin-top: 26px;
}

.service-price__footer-text {
  font-size: 1rem;
  line-height: 1.6;
}

.cleaning-price .service-price__th {
  width: 50%;
  padding: 30px 0px 30px 31px;
}

@media screen and (max-width: 860px) {
  /* テーブルをブロック崩しにする（縦積み） */
  .service-price__table,
  .service-price__table tbody,
  .service-price__table tr,
  .service-price__table th,
  .service-price__table td {
    display: block;
    width: 100%;
  }

  .service-price__th {
    width: 100%;
    padding: 15px 20px;
    font-size: 1.125rem;
  }

  .cleaning-price .service-price__th {
    width: 100%;
    padding: 15px 20px;
    font-size: 1.125rem;
  }

  .service-price__th-sub {
    font-size: 1.125rem;
  }

  .service-price__table td {
    border-bottom: none;
    border-top: none;
  }

  .service-price__td-price {
    padding: 20px 20px 10px;
    border-bottom: none;
    font-size: 1.125rem;
  }

  .service-price__unit {
    font-size: 0.875rem;
  }

  .service-price__td-desc {
    padding: 0 20px 20px;
    border-top: none;
    font-size: 1rem;
  }

  .service-price__footer {
    padding: 16px 20px;
    margin-top: 18px;
  }

  .service-price__footer-text {
    font-size: 0.875rem;
  }
}

/* ----------------------------------
   5. よくある質問
   ---------------------------------- */
.faq {
  background-color: #f4f8fa;
  padding-block: 85px 73px;
}

.faq__wrapper {
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: calc(clamp(1.125rem, 4.8vw, 2.25rem));
  box-sizing: content-box;
}

.faq__inner {
  margin-top: 35px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.faq__content {
  background-color: var(--white);
  border: solid 1px var(--blue3);
  border-radius: 10px;
}

.faq__question-inner {
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 15px 51px 15px 17px;
}

.faq__question-text {
  font-size: 1.125rem;
  font-weight: 500;
  margin-right: auto;
  letter-spacing: 0;
}

.faq__question-initial {
  font-size: 1.125rem;
  font-weight: bold;
  background-color: var(--blue3);
  color: var(--white);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin-right: 25px;
}

.faq__question-line {
  content: "";
  background-color: var(--blue3);
  display: block;
  width: 30px;
  height: 1px;
  position: relative;
  flex-shrink: 0;
}

.faq__question-line::after {
  content: "";
  background-color: var(--blue3);
  display: block;
  width: 30px;
  height: 1px;
  position: absolute;
  rotate: 90deg;
  transition: all 0.4s ease-out;
}

.faq__answer-inner {
  display: flex;
  flex-direction: row;
  justify-content: start;
  padding: 0px 104px 15px 17px;
  margin-inline: auto;
}

.faq__answer-initial {
  background-color: var(--white);
  color: var(--blue3);
  border: solid 1px var(--blue3);
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin-right: 26px;
}

.faq__answer-inner p {
  font-size: 1.125rem;
  line-height: 1.6;
  letter-spacing: 0;
}

.summary {
  display: block;
}

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

details[open] .faq__question-line::after {
  rotate: 0deg;
  opacity: 0;
}

@media screen and (max-width: 528px) {
  .faq {
    padding-block: 41px 62px;
  }

  .faq__title {
    font-size: 1.4375rem;
  }

  .faq__inner {
    margin-top: 4px;
  }

  .faq__content {
    margin-top: 10px;
  }

  .faq__question-inner {
    padding: 14px 15px 15px 6px;
  }

  .faq__question-text {
    font-size: 0.875rem;
  }

  .faq__question-initial {
    font-size: 0.8125rem;
    width: 28px;
    height: 28px;
    margin-right: 6px;
  }

  .faq__question-line,
  .faq__question-line::after {
    width: 15px;
  }

  .faq__answer-inner {
    padding: 0px 38px 15px 6px;
  }

  .faq__answer-initial {
    width: 28px;
    height: 28px;
    margin-right: 6px;
  }

  .faq__answer-inner > p {
    font-size: 0.8125rem;
  }
}

/* ----------------------------------
   6. 仲介と買取、それぞれの特徴 (Features)
  ---------------------------------- */
.service-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 21px;
  margin-top: 38px;
}

.left-item-features .service-features__grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 10%;
}

.service-features__img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 328 / 208;
}

.service-features__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-features__number {
  position: absolute;
  top: -10px;
  left: -10px;
  font-family: "Oooh Baby", "Noto Sans JP", sans-serif;
  font-size: 2.875rem;
  color: var(--blue3);
  line-height: 1;
  z-index: 1;
}

.service-features__item-title {
  font-size: 1.375rem;
  font-weight: 600;
  margin-top: 19px;
}

.service-features__list {
  margin-top: 12px;
}

.service-features__list li {
  font-size: 1rem;
  line-height: 1.5;
  position: relative;
  padding-left: 1.5em;
}

.service-features__list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

.service-features__text {
  margin-top: 12px;
  font-size: 1rem;
  line-height: 1.5;
}

/* スマホ対応 */
@media screen and (max-width: 860px) {
  .service-features__grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 19px;
  }

  .left-item-features .service-features__grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 19px;
  }
}

@media screen and (max-width: 528px) {
  .service-features__number {
    font-size: 2rem;
  }

  .service-features__item-title {
    font-size: 1.125rem;
  }

  .service-features__list {
    margin-top: 8px;
  }

  .service-features__list li {
    font-size: 0.875rem;
  }

  .service-features__text {
    margin-top: 8px;
    font-size: 0.875rem;
  }
}

/* =================================================================
  404ページ
================================================================= */
.error__wrapper {
  max-width: var(--content-width);
  padding: 100px 20px 100px;
  margin-inline: auto;
  box-sizing: content-box;
}

.error__title {
  font-size: 2rem;
  text-align: center;
}

.error__content {
  color: var(--black1);
  font-size: 1.25rem;
  line-height: 1.2;
  margin-top: 36px;
}

.error__content-link {
  display: inline-block;
  font-weight: bold;
  color: var(--blue3);
  border-bottom: solid 1px var(--blue3);
}

.error__content-link:hover {
  opacity: 0.6;
}
