@charset "UTF-8";
/* fv
========================================= */
.fv__inner {
  width: 91.6667%;
  max-width: 1344px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: clamp(560px, 55.2%, 742px) clamp(360px, 37.9%, 510px);
  gap: clamp(1rem, 1.3889vw, 2rem);
  align-items: center;
}
@media (max-width: 1080px) {
  .fv__inner {
    grid-template-columns: 1fr;
    gap: 0;
    width: calc(100% - 2.2rem);
  }
}
.fv__contents {
  min-width: 0;
}
@media (max-width: 1080px) {
  .fv__contents {
    display: contents;
  }
}
.fv__title {
  display: flex;
  align-items: flex-end;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(2rem, 3.0556vw, 4.4rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.05em;
  color: #363D40;
  margin: 0;
}
@media (max-width: 1080px) {
  .fv__title {
    order: 1;
    justify-content: center;
    align-items: flex-end;
    font-size: 2.1rem;
    line-height: 1.25;
  }
}
.fv__title-icon img {
  display: block;
  width: clamp(8rem, 8.889vw, 12.8rem);
}
@media (max-width: 1080px) {
  .fv__title-icon img {
    width: 7.2rem;
  }
}
.fv__title-text {
  white-space: nowrap;
}
@media (max-width: 1080px) {
  .fv__title-text {
    transform: translateX(-0.8rem);
  }
}
.fv__title-dot {
  position: relative;
  display: inline-block;
}
.fv__title-dot::before {
  content: "";
  position: absolute;
  top: -0.25em;
  left: 50%;
  transform: translateX(-50%);
  width: 0.2735em;
  height: 0.2735em;
  border-radius: 50%;
  background-color: #2E7D5B;
}
.fv__lead {
  margin: 1.5em 0 0;
}
@media (max-width: 1080px) {
  .fv__lead {
    order: 3;
    margin-top: 1.4rem;
    text-align: center;
  }
}
.fv__lead p {
  font-size: 2rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
  margin: 0;
}
@media (max-width: 768px) {
  .fv__lead p {
    font-size: 1.6rem;
  }
}
.fv__lead p b {
  font-weight: bold;
}
@media (max-width: 768px) {
  .fv__lead p b {
    font-size: 1.8rem;
  }
}
.fv__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  margin-top: 3.375em;
}
@media (max-width: 1080px) {
  .fv__btns {
    order: 5;
    gap: 1.7rem;
    margin-top: 2.8rem;
  }
}
.fv__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem;
  border-radius: 5px;
  border: 3px solid #F08F4E;
  font-weight: 700;
  line-height: 1.4;
  transition: 0.3s;
  min-width: 260px;
}
@media (max-width: 1080px) {
  .fv__btn {
    flex: 1 1 0;
    justify-content: space-between;
    min-width: 0;
    padding: 1rem 0.5rem;
    border-width: 2px;
    border-radius: 3px;
  }
}
.fv__btn-text {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .fv__btn-text {
    font-size: 1.2rem;
  }
}
.fv__btn-icon {
  position: relative;
  flex-shrink: 0;
  width: 2em;
  height: 2em;
  border-radius: 50%;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .fv__btn-icon {
    width: 2.2rem;
    height: 2.2rem;
  }
}
.fv__btn-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 1em;
  height: 1em;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .fv__btn-icon::before {
    width: 1.1rem;
    height: 1.1rem;
  }
}
.fv__btn--primary {
  background-color: #F08F4E;
}
.fv__btn--primary .fv__btn-text {
  color: #ffffff;
}
.fv__btn--primary .fv__btn-icon {
  border: 3px solid #ffffff;
  background-color: #F08F4E;
}
.fv__btn--primary .fv__btn-icon::before {
  background: url(../img/common/icons/arrow_white.svg) no-repeat center center/contain;
}
@media (max-width: 768px) {
  .fv__btn--primary .fv__btn-icon {
    border-width: 2px;
  }
}
.fv__btn--primary:hover {
  background-color: #ffffff;
}
.fv__btn--primary:hover .fv__btn-text {
  color: #F08F4E;
}
.fv__btn--outline {
  background-color: #ffffff;
}
.fv__btn--outline .fv__btn-text {
  color: #F08F4E;
}
.fv__btn--outline .fv__btn-icon {
  border: 3px solid #F08F4E;
  background-color: #ffffff;
}
.fv__btn--outline .fv__btn-icon::before {
  background: url(../img/common/icons/arrow_orange.svg) no-repeat center center/contain;
}
@media (max-width: 768px) {
  .fv__btn--outline .fv__btn-icon {
    border-width: 2px;
  }
}
.fv__btn--outline:hover {
  background-color: #F08F4E;
}
.fv__btn--outline:hover .fv__btn-text {
  color: #ffffff;
}
.fv__btn--outline:hover .fv__btn-icon::before {
  background-color: #ffffff;
}
.fv__stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.2rem, 1.18vw, 1.7rem);
  margin-top: 3.375em;
}
@media (max-width: 1080px) {
  .fv__stats {
    order: 4;
    gap: 0.5rem;
    justify-content: space-between;
    padding: 0 1.5rem;
    margin-top: 2rem;
  }
}
.fv__stat {
  flex: 1;
  min-width: 0;
}
.fv__stat img {
  display: block;
  width: 100%;
  height: auto;
}
.fv__image {
  overflow: hidden;
  border-radius: 20px;
  border: 3px solid #363D40;
}
@media (max-width: 1080px) {
  .fv__image {
    order: 2;
    max-width: 330px;
    margin: 1.2rem auto 0;
    border-radius: 14px;
  }
}
.fv__image img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 51/52;
  object-fit: cover;
}

/* logo-slider（企業ロゴ無限スライダー）
========================================= */
.logo-slider {
  display: flex;
  flex-direction: column;
  gap: clamp(0.625em, 1.5vw, 1em);
  padding: 2rem 0 1.4rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  .logo-slider {
    gap: 0.6rem;
    padding: 0.8rem 0 0;
  }
}
.logo-slider__row {
  overflow: hidden;
}
.logo-slider__inner {
  display: flex;
  width: max-content;
}
.logo-slider__row--rtl .logo-slider__inner {
  animation: logo-marquee 40s linear infinite;
}
.logo-slider__row--ltr .logo-slider__inner {
  animation: logo-marquee 40s linear infinite reverse;
}
.logo-slider:hover .logo-slider__inner {
  animation-play-state: paused;
}
.logo-slider__group {
  display: flex;
  align-items: center;
  gap: 0.9rem 1.5rem;
  padding-right: clamp(0.625em, 1.5vw, 1em);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .logo-slider__group {
    gap: 0.8rem;
    padding-right: 0.8rem;
  }
}
.logo-slider__item {
  flex-shrink: 0;
  width: clamp(120px, 12.5vw, 180px);
  height: clamp(56px, 4.86111vw, 70px);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F4F4F4;
  overflow: hidden;
}
@media (max-width: 768px) {
  .logo-slider__item {
    width: 13.6rem;
    height: 4.2rem;
  }
}
.logo-slider__item img {
  max-width: 80%;
  max-height: 70%;
  object-fit: contain;
}
.logo-slider__item--placeholder {
  background-color: #EBEBEB;
}

@keyframes logo-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* service
========================================= */
.service {
  position: relative;
  padding: 7.2rem 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .service {
    padding: 3em 0;
  }
}
.service__deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.service__deco-item {
  position: absolute;
  display: block;
  height: auto;
}
.service__deco-item--left {
  left: clamp(1rem, 1.597222vw, 2.3rem);
  top: 44%;
  transform: translateY(-50%);
  width: clamp(72px, 6.736vw, 97px);
}
@media (max-width: 1080px) {
  .service__deco-item--left {
    display: none;
  }
}
.service__deco-item--rt1 {
  top: 5.2rem;
  right: clamp(22%, 26vw, 32%);
  width: clamp(6.4rem, 5.9vw, 8.35rem);
}
@media (max-width: 768px) {
  .service__deco-item--rt1 {
    top: 6.5rem;
    right: 40%;
    width: 4.8rem;
  }
}
.service__deco-item--rt2 {
  top: 0;
  right: clamp(14%, 16vw, 22%);
  width: clamp(6rem, 5.2778vw, 7.6rem);
}
@media (max-width: 768px) {
  .service__deco-item--rt2 {
    top: 1rem;
    right: 24%;
    width: 4.4rem;
  }
}
.service__deco-item--rt3 {
  top: 3rem;
  right: clamp(4%, 0.97222vw, 10%);
  width: clamp(6.8rem, 7.291667vw, 10.5rem);
}
@media (max-width: 768px) {
  .service__deco-item--rt3 {
    top: 0.5rem;
    right: 3%;
    width: 6rem;
  }
}
.service__inner {
  position: relative;
  z-index: 1;
  width: 91.6667%;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .service__inner {
    width: 94.6667%;
  }
}
.service__head {
  margin-bottom: 2.5em;
}
@media (max-width: 768px) {
  .service__head {
    margin-bottom: 1.75em;
  }
}
.service__coming-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.15em;
  color: #F08F4E;
  min-height: 20rem;
  padding: 4rem 2rem;
  border-radius: 10px;
  background-color: #ffffff;
  text-align: center;
}
@media (max-width: 768px) {
  .service__coming-soon {
    min-height: 14rem;
    padding: 3rem 1.6rem;
  }
}
.service__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(5rem, 5.5556vw, 8rem);
}
@media (max-width: 1080px) {
  .service__list {
    gap: 3rem;
  }
}
@media (max-width: 768px) {
  .service__list {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}
.service__item-link {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.service__item-link:hover .service__item-image img {
  transform: scale(1.04);
}
.service__item-link:hover .service__item-title {
  color: #F08F4E;
}
.service__item-link:hover .service__item-btn {
  background-color: #ffffff;
}
.service__item-link:hover .service__item-btn .btn-arrow__text {
  color: #2E7D5B;
}
.service__item-link:hover .service__item-btn .btn-arrow__icon {
  background-color: #2E7D5B;
  border-color: #2E7D5B;
}
.service__item-image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 4/3;
}
.service__item-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.service__item-badge {
  position: absolute;
  left: 0;
  bottom: 0;
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.25em;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: #F08F4E;
  border: 1px solid #F08F4E;
  border-radius: 0 0 0 10px;
  background-color: #ffffff;
}
.service__item-title {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2;
  color: #363D40;
  margin: 1.4rem 0 0;
  transition: 0.3s;
}
.service__item-text {
  flex: 1;
  font-size: 1.6rem;
  line-height: 2;
  color: #363D40;
}
.service__item-btn {
  width: 100%;
  margin: 3.5rem auto 0;
}
@media (max-width: 768px) {
  .service__item-btn {
    margin-top: 2rem;
  }
}

/* about
========================================= */
.about {
  position: relative;
  padding: 4rem 0 31.5rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  .about {
    padding: 3em 0 21.3rem;
  }
}
.about__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  overflow: hidden;
}
.about__bg-row {
  position: absolute;
  display: block;
  white-space: nowrap;
  font-family: "Zen Old Mincho", serif;
  font-size: 21.6rem;
  letter-spacing: 0.05em;
  line-height: 1;
  font-weight: bold;
  color: rgba(240, 143, 78, 0.35);
  max-width: none;
  height: auto;
}
@media (max-width: 768px) {
  .about__bg-row {
    font-size: 12rem;
  }
}
.about__bg-row--top {
  top: 12.8rem;
  left: 0;
  transform: translateX(-3.5rem);
}
@media (max-width: 768px) {
  .about__bg-row--top {
    transform: translateX(-11rem);
  }
}
.about__bg-row--bottom {
  bottom: 8.5rem;
  right: 0;
  transform: translateX(23.8rem);
}
@media (max-width: 768px) {
  .about__bg-row--bottom {
    transform: translateX(53rem);
  }
}
.about__deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}
@media (max-width: 768px) {
  .about__deco {
    display: none;
  }
}
.about__deco-item {
  position: absolute;
  display: block;
  height: auto;
}
.about__deco-item--rt {
  top: 0.5rem;
  right: 14%;
  width: clamp(8rem, 9vw, 13rem);
}
.about__deco-item--left {
  left: 18%;
  top: 23rem;
  width: clamp(8rem, 7.8vw, 11.231rem);
}
.about__deco-item--center {
  left: 41%;
  top: 22.1rem;
  width: clamp(4rem, 4.35vw, 6.266rem);
}
.about__inner {
  position: relative;
  z-index: 1;
  width: 91.6667%;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .about__inner {
    width: 94.6667%;
  }
}
.about__head {
  margin-bottom: 23.2rem;
}
@media (max-width: 768px) {
  .about__head {
    margin-bottom: 13.3rem;
  }
}
.about__body {
  display: grid;
  grid-template-columns: minmax(0, 42%) 1fr;
  gap: clamp(1rem, 1.111vw, 1.6rem);
  align-items: start;
}
@media (max-width: 1080px) {
  .about__body {
    grid-template-columns: 1fr;
    gap: 2em;
  }
}
.about__image {
  overflow: hidden;
  border-radius: 10px;
}
@media (max-width: 1080px) {
  .about__image {
    max-width: 420px;
  }
}
.about__image img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 508/530;
  object-fit: cover;
}
.about__contents {
  min-width: 0;
}
.about__title {
  font-size: clamp(2rem, 2.63889vw, 3.8rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #363D40;
  margin: 0;
}
@media (max-width: 768px) {
  .about__title {
    font-size: 1.8rem;
  }
}
.about__text {
  margin-top: 5.8rem;
}
@media (max-width: 768px) {
  .about__text {
    margin-top: 1.8rem;
  }
}
.about__text p {
  font-size: clamp(1.4rem, 1.111vw, 1.6rem);
  margin: 0;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .about__text p {
    line-height: 1.6;
  }
}
.about__btn {
  margin-top: 4rem;
}
@media (max-width: 768px) {
  .about__btn {
    margin: 3rem auto 0;
    width: 100%;
  }
}

/* features
========================================= */
.features {
  position: relative;
  background-color: #F08F4E;
  border-radius: 80px;
  overflow: hidden;
  padding: 7.2rem 0 clamp(10rem, 17.5vw, 25.2rem);
}
@media (max-width: 1080px) {
  .features {
    border-radius: 48px;
  }
}
@media (max-width: 768px) {
  .features {
    border-radius: 27px;
    padding: 4rem 0 6.6rem;
  }
}
.features__deco {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: auto;
  z-index: 0;
}
.features__deco img {
  display: block;
  width: 100%;
  max-width: 1382px;
  margin: 0 auto;
  height: auto;
}
@media (max-width: 768px) {
  .features__deco img {
    max-width: 338px;
  }
}
.features__inner {
  width: 91.6667%;
  max-width: 1200px;
  margin: 0 auto;
}
.features__head {
  margin-bottom: 2.5em;
}
@media (max-width: 768px) {
  .features__head {
    margin-bottom: 1.75em;
  }
}
.features__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.8rem 6.5rem;
  max-width: 1100px;
  margin: 0 auto 3rem;
}
@media (max-width: 1080px) {
  .features__list {
    gap: 3rem 4rem;
  }
}
@media (max-width: 768px) {
  .features__list {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.8rem;
    margin-bottom: 2em;
    overflow-x: scroll;
    margin: 0 calc(50% - 50vw);
    padding-left: 1rem;
  }
}
.features__card {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 5rem 4.5rem 1rem;
}
@media (max-width: 768px) {
  .features__card {
    padding: 1.5em;
    min-width: 260px;
  }
}
.features__card-media {
  position: relative;
  padding-top: 0.75em;
}
.features__card-num {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  transform: translateY(-50%);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(4rem, 4.1667vw, 6rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #2E7D5B;
}
@media (max-width: 768px) {
  .features__card-num {
    font-size: 3.2rem;
  }
}
.features__card-image {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16/10;
}
@media (max-width: 768px) {
  .features__card-image {
    border-radius: 4px;
  }
}
.features__card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.features__card-text {
  line-height: 2;
  letter-spacing: 0.05em;
  margin: 2.5rem 0 0;
}
@media (max-width: 768px) {
  .features__card-text {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-top: 1.1rem;
  }
}
.features__kids img {
  display: block;
  width: 100%;
  height: auto;
}

/* top-news
========================================= */
.top-news {
  background-color: #ffffff;
  padding: 6.5rem 0 5rem;
}
@media (max-width: 768px) {
  .top-news {
    padding: 4rem 0;
  }
}
.top-news__inner {
  width: 91.6667%;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .top-news__inner {
    width: 94.6667%;
  }
}
.top-news__head {
  margin-bottom: 2em;
}
@media (max-width: 768px) {
  .top-news__head {
    margin-bottom: 2.4rem;
  }
  .top-news__head .sec-title__en {
    font-size: 4.4rem;
  }
  .top-news__head .sec-title__ja {
    margin-top: 0.6em;
    font-size: 1.6rem;
  }
  .top-news__head .sec-title__ja::before {
    width: 0.9rem;
    height: 0.9rem;
  }
}
.top-news__list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 1100px;
  margin: 0 auto;
}
.top-news__item {
  border-bottom: 1px solid #848484;
}
.top-news__item-link {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding: 1.5em 0;
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .top-news__item-link {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    gap: 0.8rem 1.2rem;
    align-items: center;
    padding: 1.6rem 0;
  }
}
.top-news__item-link:hover .top-news__item-title {
  color: #F08F4E;
}
.top-news__item-link:hover .top-news__item-icon {
  background-color: #F08F4E;
}
.top-news__item-link:hover .top-news__item-icon::before {
  background-color: #ffffff;
}
.top-news__item-meta {
  display: flex;
  align-items: center;
  gap: 4rem;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .top-news__item-meta {
    grid-column: 1;
    grid-row: 1;
    gap: 1rem;
  }
}
.top-news__item-date {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.8rem;
  font-weight: 350;
  line-height: 2;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .top-news__item-date {
    font-size: 1.4rem;
    line-height: 1.4;
    color: #606060;
  }
}
.top-news__item-cat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 16rem;
  padding: 0.85rem;
  font-size: 1.8rem;
  font-weight: 350;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: #ffffff;
  background-color: #F08F4E;
  border-radius: 999px;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .top-news__item-cat {
    min-width: 0;
    font-size: 1.2rem;
    padding: 0.2em 0.9em;
  }
}
.top-news__item-title {
  flex: 1;
  min-width: 0;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
  transition: 0.3s;
  padding-left: 2rem;
}
@media (max-width: 768px) {
  .top-news__item-title {
    grid-column: 1;
    grid-row: 2;
    padding-left: 0;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.6;
    color: #363D40;
  }
}
.top-news__item-icon {
  position: relative;
  flex-shrink: 0;
  width: 3.3rem;
  height: 3.3rem;
  margin-left: auto;
  border: 3px solid #F08F4E;
  border-radius: 50%;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .top-news__item-icon {
    grid-column: 2;
    grid-row: 1/-1;
    align-self: center;
    width: 2.2rem;
    height: 2.2rem;
    margin-left: 0;
    border-width: 2px;
  }
}
.top-news__item-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 2rem;
  height: 2rem;
  background-color: #F08F4E;
  mask: url(../img/common/icons/arrow_white.svg) no-repeat center/contain;
  -webkit-mask: url(../img/common/icons/arrow_white.svg) no-repeat center/contain;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .top-news__item-icon::before {
    width: 1.1rem;
    height: 1.1rem;
  }
}
.top-news__more {
  margin-top: 8rem;
  text-align: center;
}
@media (max-width: 768px) {
  .top-news__more {
    margin-top: 3.2rem;
  }
}
.top-news__more a {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .top-news__more a {
    max-width: none;
    width: 100%;
    padding: 1.2rem 1.2rem 1.2rem 2rem;
  }
  .top-news__more a .btn-arrow__text {
    font-size: 1.6rem;
  }
  .top-news__more a .btn-arrow__icon {
    width: 2.4rem;
    height: 2.4rem;
    border-width: 2px;
  }
}

/* top-column
========================================= */
.top-column {
  background-color: #ffffff;
  padding: 7.2rem 0 9.6rem;
}
@media (max-width: 768px) {
  .top-column {
    padding: 3em 0;
  }
}
.top-column__inner {
  width: 91.6667%;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .top-column__inner {
    width: 94.6667%;
  }
}
.top-column__head {
  margin-bottom: 2.5em;
}
@media (max-width: 768px) {
  .top-column__head {
    margin-bottom: 2.4rem;
  }
  .top-column__head .sec-title__en {
    font-size: 4.4rem;
  }
  .top-column__head .sec-title__ja {
    margin-top: 0.6em;
    font-size: 1.6rem;
  }
  .top-column__head .sec-title__ja::before {
    width: 0.9rem;
    height: 0.9rem;
  }
}
.top-column__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4.3rem;
}
@media (max-width: 1080px) {
  .top-column__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5em;
  }
}
@media (max-width: 768px) {
  .top-column__list {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.2rem;
    overflow-x: auto;
    margin: 0 calc(50% - 50vw);
    padding: 0 4rem 0 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .top-column__list::-webkit-scrollbar {
    display: none;
  }
}
@media (max-width: 768px) {
  .top-column__item {
    flex: 0 0 27rem;
    min-width: 27rem;
  }
}
.top-column__item-link {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: 0.3s;
}
.top-column__item-link:hover .top-column__item-title {
  color: #F08F4E;
}
.top-column__item-link:hover .top-column__item-image img {
  transform: scale(1.04);
}
.top-column__item-image {
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 16/10;
  background-color: #F4F4F4;
}
@media (max-width: 768px) {
  .top-column__item-image {
    border-radius: 10px;
  }
}
.top-column__item-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.top-column__item-body {
  margin-top: 1em;
}
@media (max-width: 768px) {
  .top-column__item-body {
    margin-top: 0.8rem;
  }
}
.top-column__item-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75em;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .top-column__item-meta {
    justify-content: flex-start;
    gap: 0.8rem;
    flex-wrap: nowrap;
  }
}
.top-column__item-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  list-style: none;
  margin: 0;
  padding: 0;
}
.top-column__item-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35em 0.875em;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.4;
  color: #ffffff;
  background-color: #F08F4E;
  border-radius: 4px;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .top-column__item-tag {
    font-size: 1.2rem;
    padding: 0.15em 0.6em;
    border-radius: 3px;
  }
}
.top-column__item-date {
  flex-shrink: 0;
  margin-left: auto;
  font-weight: 500;
  line-height: 1.4;
  color: #F08F4E;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .top-column__item-date {
    margin-left: 0;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 1.4rem;
    font-weight: 350;
  }
}
.top-column__item-title {
  margin: 0.75em 0 0;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
  transition: 0.3s;
  overflow: hidden;
}
@media (max-width: 768px) {
  .top-column__item-title {
    margin-top: 0.8rem;
    font-size: 1.4rem;
    line-height: 1.6;
    color: #363D40;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
}
.top-column__more {
  margin-top: 8rem;
  text-align: center;
}
@media (max-width: 768px) {
  .top-column__more {
    margin-top: 3.2rem;
  }
}
.top-column__more a {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .top-column__more a {
    max-width: none;
    width: 100%;
    padding: 1.2rem 1.2rem 1.2rem 2rem;
  }
  .top-column__more a .btn-arrow__text {
    font-size: 1.6rem;
  }
  .top-column__more a .btn-arrow__icon {
    width: 2.4rem;
    height: 2.4rem;
    border-width: 2px;
  }
}

/* top-faq
========================================= */
.top-faq {
  background-color: #F08F4E;
  padding: 7.2rem 0;
}
@media (max-width: 768px) {
  .top-faq {
    padding: 3em 0;
  }
}
.top-faq__inner {
  width: 91.6667%;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .top-faq__inner {
    width: 94.6667%;
  }
}
.top-faq__head {
  margin-bottom: 2.5em;
}
@media (max-width: 768px) {
  .top-faq__head {
    margin-bottom: 1.75em;
  }
}
.top-faq__list {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.top-faq__item {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}
.top-faq__item.is-open .top-faq__toggle {
  border-color: #363D40;
  transform: rotate(-135deg);
}
.top-faq__question {
  display: grid;
  grid-template-columns: 2.25em minmax(0, 1fr) 1.25em;
  align-items: center;
  gap: 1em;
  width: 100%;
  padding: 1.5em 1.75em;
  border: none;
  background: none;
  text-align: left;
  cursor: pointer;
}
@media (max-width: 768px) {
  .top-faq__question {
    grid-template-columns: 2.2rem minmax(0, 1fr) 1.25em;
    padding: 2rem 1.2rem 2rem 0.5rem;
    gap: 0.4rem;
  }
}
.top-faq__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.8rem;
  line-height: 1;
  color: #ffffff;
}
@media (max-width: 768px) {
  .top-faq__icon {
    width: 2.2rem;
    height: 2.2rem;
    font-size: 1.4rem;
  }
}
.top-faq__icon--q {
  background-color: #F08F4E;
}
@media (max-width: 768px) {
  .top-faq__icon--q img {
    width: 1.32rem;
    height: 1.32rem;
  }
}
.top-faq__icon--a {
  background-color: #A8A8A8;
  align-self: flex-start;
}
.top-faq__question-text {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #363D40;
}
@media (max-width: 768px) {
  .top-faq__question-text {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}
.top-faq__toggle {
  flex-shrink: 0;
  width: 0.625em;
  height: 0.625em;
  margin-right: 0.25em;
  border-right: 2px solid #F08F4E;
  border-bottom: 2px solid #F08F4E;
  transform: rotate(45deg);
  transition: transform 0.3s, border-color 0.3s;
  justify-self: end;
}
.top-faq__answer {
  height: 0;
  overflow: hidden;
}
.top-faq__answer[hidden] {
  display: none;
}
.top-faq__answer-inner {
  display: grid;
  grid-template-columns: 2.25em minmax(0, 1fr);
  gap: 1em;
  margin: 0 1.75em;
  padding: 1.25em 0 1.5em;
  border-top: 1px dashed #CBCBCB;
}
@media (max-width: 768px) {
  .top-faq__answer-inner {
    grid-template-columns: 2.2rem minmax(0, 1fr);
    margin: 0;
    padding: 1em 1rem 1.25em 0.5rem;
    gap: 0.8rem;
  }
}
.top-faq__answer-text {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #363D40;
}
@media (max-width: 768px) {
  .top-faq__answer-text {
    font-size: 1.3rem;
  }
}

/* partners
========================================= */
.partners {
  background-color: #ffffff;
  padding: 7.2rem 0;
}
@media (max-width: 768px) {
  .partners {
    padding: 3em 0;
  }
}
.partners__inner {
  width: 91.6667%;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .partners__inner {
    width: 94.6667%;
  }
}
.partners__head {
  margin-bottom: 2.5em;
}
@media (max-width: 768px) {
  .partners__head {
    margin-bottom: 1.75em;
  }
}
.partners__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 768px) {
  .partners__list {
    margin: 0 calc(50% - 50vw);
    padding: 0 3rem 0 0;
    display: flex;
    flex-wrap: nowrap;
    overflow: scroll;
  }
}
.partners__item {
  position: relative;
  padding: 2em clamp(1.5em, 3vw, 2.5em);
}
@media (max-width: 768px) {
  .partners__item {
    padding: 0 1.5rem;
    min-width: 205px;
  }
}
.partners__item:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1px;
  height: min(180px, 70%);
  background-color: #848484;
}
.partners__item-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25em;
  text-align: center;
  color: inherit;
  text-decoration: none;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .partners__item-link {
    gap: 1.25rem;
  }
}
.partners__item-link:hover {
  opacity: 0.75;
}
.partners__item-logo {
  width: min(100%, 240px);
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #A8A8A8;
  border-radius: 4px;
  overflow: hidden;
}
.partners__item-logo img {
  display: block;
  max-width: 80%;
  max-height: 70%;
  object-fit: contain;
}
.partners__item-name {
  margin: 0;
  font-size: 2.5rem;
  letter-spacing: 0.05em;
  font-weight: 500;
  line-height: 1.6;
  color: #363D40;
}
@media (max-width: 768px) {
  .partners__item-name {
    font-size: 1.6rem;
    line-height: 1.6;
  }
}