@charset "UTF-8";

/* ========================================
   Accent (SERVICE / RECRUIT KV)
======================================== */
.accent {
  color: #013bcc;
}

/* ========================================
   TOP — MV
======================================== */
.mv {
  width: 100%;
  max-width: 1920px;
  margin-top: 80px;
  margin-right: auto;
  margin-left: auto;
}

.mv__inner {
  position: relative;
  display: block;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  min-height: 640px;
}

.mv__content {
  position: relative;
  z-index: 2;
  width: 48%;
  padding-top: 100px;
  padding-bottom: 150px;
  padding-left: 10%;
}

.mv__ja {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.6;
  color: #000;
  margin-left: 5px;
}

.mv__en {
  margin-top: 25px;
  font-family: "Oswald", sans-serif;
  font-size: 150px;
  font-size: 7.8vw;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.01em;
  color: #000;
}

.mv__accent {
  color: #013bcc;
}

.mv__scroll {
  position: absolute;
  left: 10%;
  bottom: -50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.mv__scroll-text {
  font-family: "Oswald", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #013bcc;
  writing-mode: vertical-rl;
}

.mv__scroll-line {
  display: block;
  width: 1px;
  height: 80px;
  background: #013bcc;
  animation: mvScrollLine 2s ease-in-out infinite;
}

@keyframes mvScrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  45% {
    transform: scaleY(1);
    transform-origin: top;
  }

  55% {
    transform: scaleY(1);
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

.mv__visual {
  position: absolute;
  top: 0;
  right: 0;
  width: 90%;
  overflow: hidden;
}

.mv__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.mv__visual picture {
  display: contents;
}

/* ========================================
   TOP — ABOUT
======================================== */
.about {
  padding: 100px 0;
}

.about__inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about__visual {
  position: relative;
  flex: 0 0 50%;
}

.about__bg {
  position: absolute;
  right: -24px;
  bottom: -24px;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: #eff4fa;
  border-radius: 10px;
}

.about__visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
  border-radius: 10px;
}

.about__content {
  flex: 1;
}

/* ========================================
   TOP — WHY KS
======================================== */
.why-ks {
  padding: 100px 0 120px;
  background: #eff4fa;
}

.why-ks .section-text {
  max-width: 900px;
}

.why-ks__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.why-ks__card {
  padding: 32px 28px 36px;
  text-align: center;
  background: #fff;
  border: 1px solid #d9dee8;
  border-radius: 10px;
}

.why-ks__card-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto;
}

.why-ks__card-icon img {
  width: 100%;
  height: auto;
}

.why-ks__card-num {
  margin-top: 20px;
  font-family: "Oswald", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #013bcc;
}

.why-ks__card-title {
  margin-top: 8px;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.5;
}

.why-ks__card-text {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

/* ========================================
   TOP — SERVICE
======================================== */
.service {
  padding: 100px 0 120px;
}

.service__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.service__card {
  position: relative;
  border: 1px solid #d9dee8;
  border-radius: 10px;
  background: #fff;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
  transition: border-color 0.3s ease;
}

.service__card-link {
  display: block;
  position: relative;
  height: 100%;
  padding: 0 0 48px;
  color: inherit;
}

.service__card-link::before {
  content: "";
  position: absolute;
  right: 27px;
  bottom: 26px;
  z-index: 1;
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

.service__card-link::after {
  content: "";
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: block;
  width: 28px;
  height: 28px;
  background: #013bcc;
  border-radius: 50%;
}

.service__card:hover {
  border-color: #013bcc;
}

.service__card-image {
  overflow: hidden;
}

.service__card-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.service__card-num {
  margin-top: 20px;
  padding: 0 20px;
  font-family: "Oswald", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: #013bcc;
}

.service__card-title {
  margin-top: 8px;
  padding: 0 20px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}

.service__card-text {
  margin-top: 8px;
  padding: 0 20px;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

.service__card-arrow {
  display: none;
}

.service__other {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 48px;
  padding: 28px 36px;
  background: #eff4fa;
}

.service__other-label {
  flex: 0 0 auto;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #013bcc;
}

.service__other-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin-top: 0;
}

.service__other-list li {
  position: relative;
  padding: 0 24px;
  font-size: 18px;
  line-height: 1.6;
  border-left: 1px solid #013bcc;
}

.service__other-list li:last-child {
  border-right: 1px solid #013bcc;
}

.service__other-list li::before {
  display: none;
}

.service__button-wrap {
  margin-top: 48px;
  text-align: left;
}

/* ========================================
   TOP — STRENGTH
======================================== */
.strength {
  padding: 100px 0 0;
  background: #eff4fa;
}

.strength__box {
  margin-top: 48px;
  padding: 0 56px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
}

.strength__item {
  display: flex;
  align-items: center;
  gap: 32px;
  border-bottom: 1px solid #e5e8ef;
  min-height: 300px;
}

.strength__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.strength__item:first-child {
  padding-top: 0;
}

.strength__num {
  flex: 0 0 100px;
  padding-right: 32px;
  font-family: "Oswald", sans-serif;
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
  color: #013bcc;
  border-right: 1px solid #d9dee8;
}

.strength__content {
  flex: 1;
}

.strength__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}

.strength__text {
  margin-top: 12px;
  font-size: 16px;
  line-height: 34px;
  color: #333;
}

.strength__visual {
  flex: 0 0 400px;
}

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

.strength-loop {
  height: 186px;
  margin-top: 60px;
  overflow: hidden;
}

.strength-loop__track {
  display: flex;
  width: max-content;
  animation: strengthLoopScroll 45s linear infinite;
}

.strength-loop__item {
  flex: 0 0 auto;
  padding-right: 40px;
}

.strength-loop__item img {
  height: 186px;
  width: auto;
  display: block;
}

@keyframes strengthLoopScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .mv__scroll-line {
    animation: none;
    transform: scaleY(1);
  }

  .strength-loop__track {
    animation: none;
  }
}

/* ========================================
   TOP — RECRUIT
======================================== */
.recruit {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.recruit__inner {
  position: relative;
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
  min-height: 560px;
  display: flex;
  align-items: center;
}

.recruit__content {
  position: relative;
  z-index: 2;
  width: 42%;
  max-width: 560px;
}

.recruit__button-wrap {
  margin-top: 36px;
}

.recruit__visual {
  position: absolute;
  top: 50%;
  left: 48%;
  right: calc(50% - 50vw);
  width: auto;
  height: 420px;
  transform: translateY(-50%);
}

.recruit__visual .people-diagonal {
  height: 100%;
}

/* ========================================
   TOP — NEWS
======================================== */
.news {
  padding: 100px 0;
  background: #eff4fa;
}

.news__inner {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.news__head {
  flex: 0 0 280px;
}

.news__button-wrap {
  margin-top: 36px;
}

.news__list {
  flex: 1;
}

.news__item {
  border-bottom: 1px solid #d9dee8;
}

.news__item:first-child {
  border-top: 1px solid #d9dee8;
}

.news__link {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 8px;
  transition: color 0.3s ease;
}

.news__link:hover {
  color: #013bcc;
}

.news__date {
  font-size: 16px;
  letter-spacing: 0.04em;
}

.news__title {
  flex: 1;
  font-size: 18px;
  line-height: 1.6;
}

.news__arrow {
  display: none;
}

.news__link::after {
  content: "";
  flex: 0 0 8px;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #013bcc;
  border-right: 2px solid #013bcc;
  transform: rotate(45deg);
}

/* ========================================
   SERVICE — KV
======================================== */
.service-kv {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin-top: 80px;
  margin-right: auto;
  margin-left: auto;
  overflow: hidden;
}

.service-kv__inner {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding-left: 5%;
  min-height: 520px;
}

.service-kv__content {
  position: relative;
  width: 55%;
  z-index: 1;
  padding: 130px 0 180px;

}

.service-kv__label {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.service-kv__title {
  margin-top: 20px;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.35;
}

.service-kv__text {
  margin-top: 28px;
  font-size: 18px;
  line-height: 34px;
}

.service-kv__parts {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 600px;
  height: auto;
  opacity: 0.5;
  pointer-events: none;
}

.service-kv__visual {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 90%;
}

.service-kv__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-kv__visual picture {
  display: contents;
}

/* ========================================
   SERVICE — Item blocks
======================================== */
.service-item {
  padding: 80px 0;
  background: #fff;
}

.service-item:nth-child(even) {
  background: #fff;
}

.service-item__inner {
  display: flex;
  align-items: center;
  gap: 56px;
}

.service-item--reverse .service-item__inner {
  flex-direction: row-reverse;
}

.service-item__media {
  flex: 0 0 46%;
}

.service-item__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
}

.service-item__body {
  position: relative;
  flex: 1;
  z-index: 0;
}

.service-item__num {
  position: absolute;
  top: -80px;
  left: -50px;
  font-family: "Oswald", sans-serif;
  font-size: 180px;
  font-weight: 700;
  line-height: 1;
  color: #99b1eb;
  pointer-events: none;
  z-index: -1;
}

.service-item__category {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #013bcc;
}

.service-item__title {
  margin-top: 12px;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.4;
}

.service-item__text {
  margin-top: 24px;
  font-size: 16px;
  line-height: 34px;
}

.service-point {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid #d9dee8;
}

.service-point__label {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #013bcc;
}

.service-point__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 24px;
  margin-top: 20px;
}

.service-point__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  background: #fff;
  border: 1px solid #99b1eb;
  border-radius: 10px;
}

.service-point__item img {
  flex: 0 0 40px;
  width: 40px;
  height: auto;
}

/* ========================================
   SERVICE — Other business
======================================== */
.other-business {
  padding: 80px 0;
  background: #eff4fa;
}

.other-business__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.other-business-card {
  background: #fff;
  border: 1px solid #d9dee8;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
}

.other-business-card__image img {
  width: 100%;
  aspect-ratio: 440 / 280;
  object-fit: cover;
  display: block;
}

.other-business-card__body {
  padding: 24px 28px 32px;
}

.other-business-card__title {
  position: relative;
  padding-bottom: 14px;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.4;
}

.other-business-card__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: #013bcc;
}

.other-business-card__text {
  margin-top: 15px;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

/* ========================================
   RECRUIT — KV
======================================== */
.recruit-kv {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin-top: 80px;
  margin-right: auto;
  margin-left: auto;
  overflow: hidden;
}

.recruit-kv__inner {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding-left: 5%;
  min-height: 520px;
}

.recruit-kv__content {
  position: relative;
  width: 46%;
  z-index: 1;
  padding: 120px 0 180px;
}

.recruit-kv__label {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.recruit-kv__title {
  margin-top: 20px;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.35;
}

.recruit-kv__text {
  margin-top: 28px;
  font-size: 18px;
  line-height: 34px;
}

.recruit-kv__visual {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 70%;
  overflow: hidden;
  clip-path: polygon(16% 0, 100% 0, 100% 100%, 0 100%);
}

.recruit-kv__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.recruit-kv__visual picture {
  display: contents;
}

/* ========================================
   RECRUIT — Message
======================================== */
.message {
  position: relative;
  padding: 100px 0;
  background: #eff4fa;
  overflow: hidden;
}

.message__inner {
  position: relative;
  text-align: center;
}

.message__parts {
  position: absolute;
  top: 140px;
  right: -15%;
  left: auto;
  z-index: 0;
  width: 40%;
  height: auto;
  transform: none;
  pointer-events: none;
}

.message__label,
.message__heading,
.message__body,
.message__highlight,
.message__people {
  position: relative;
  z-index: 1;
}

.message__body {
  max-width: 820px;
  margin: 36px auto 0;
}

.message__body p {
  font-size: 18px;
  line-height: 34px;
}

.message__body p + p {
  margin-top: 24px;
}

.message__highlight {
  display: inline-block;
  margin-top: 48px;
  padding: 16px 40px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  color: #013bcc;
  border-top: 2px solid #013bcc;
  border-bottom: 2px solid #013bcc;
}

.message__people {
  margin-top: 56px;
}

/* ========================================
   RECRUIT — Person
======================================== */
.person {
  padding: 100px 0;
}

.person > .inner {
  max-width: 1200px;
}

.person__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.person-card {
  padding: 30px 35px;
  text-align: center;
  background: #fff;
  border: 1px solid #d9dee8;
  border-radius: 10px;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
}

.person-card__illust {
  width: 200px;
  height: 200px;
  margin: 0 auto;
}

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

.person-card__num {
  margin-top: 0;
  font-family: "Oswald", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  color: #013bcc;
}

.person-card__title {
  margin-top: 8px;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.4;
}

.person-card__text {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.9;
  color: #333;
  text-align: left;
}

/* ========================================
   RECRUIT — Job description
======================================== */
.job-description {
  padding: 100px 0 120px;
  background: #eff4fa;
}

.job-description > .inner {
  max-width: 1200px;
}

.job-description-table {
  margin-top: 48px;
}

/* ========================================
   COMPANY — Greeting
======================================== */
.greeting {
  padding: 100px 0;
  background: #eff4fa;
}

.greeting__body {
  position: relative;
  margin-top: 36px;
}

.greeting__text {
  margin-left: 30px;
  max-width: 880px;
  font-size: 18px;
  line-height: 34px;
  margin-left: 30px;
}

.greeting__sign-name {
  margin-top: 40px;
  font-size: 18px;
  line-height: 1.8;
  margin-left: 30px;
}

.greeting__name {
  font-size: 24px;
}

.greeting__sign {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 600px;
  height: auto;
}

/* ========================================
   COMPANY — Overview
======================================== */
.overview {
  padding: 100px 0 120px;
  background: #fff;
}

.company-overview-table {
  margin-top: 48px;
}

/* ========================================
   COMPANY — Access
======================================== */
.access {
  padding: 100px 0 120px;
  background: #eff4fa;
}

.access__content {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  margin-top: 48px;
}

.access__info {
  flex: 0 0 auto;
  width: auto;
  max-width: 420px;
}

.access__address {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}

.access__transport {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: fit-content;
  margin-top: 24px;
  padding: 20px 24px;
  background: #fff;
  border: 1px solid #d9dee8;
  border-radius: 10px;
}

.access__transport img {
  flex: 0 0 32px;
  width: 32px;
  height: auto;
}

.access__transport-list li {
  font-size: 16px;
  line-height: 34px;
}

.access-map {
  flex: 1;
  width: 100%;
  min-width: 0;
  height: 520px;
  padding: 16px;
  background: #fff;
  border: 1px solid #d9dee8;
  border-radius: 10px;
}

.access-map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 10px;
}

/* ========================================
   NEWS — List
======================================== */
.news-list-section {
  padding: 60px 0 0;
}

.news-list__item {
  border-bottom: 1px solid #d9dee8;
}

.news-list__item:first-child {
  border-top: 1px solid #d9dee8;
}

.news-list__link {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 8px;
  transition: color 0.3s ease;
}

.news-list__link:hover {
  color: #013bcc;
}

.news-list__date {
  font-size: 16px;
  letter-spacing: 0.04em;
}

.news-list__title {
  flex: 1;
  font-size: 18px;
  line-height: 1.6;
}

.news-list__arrow {
  display: none;
}

.news-list__link::after {
  content: "";
  flex: 0 0 8px;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #013bcc;
  border-right: 2px solid #013bcc;
  transform: rotate(45deg);
}

/* ========================================
   NEWS — Pagination
======================================== */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
  font-size: 16px;
}

.pagination__prev,
.pagination__next,
.pagination__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #000;
  border: 1px solid #d9dee8;
  transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.pagination__prev::before,
.pagination__next::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.pagination__prev::before {
  transform: rotate(-135deg);
}

.pagination__next::after {
  transform: rotate(45deg);
}

.pagination__prev:hover,
.pagination__next:hover,
.pagination__number:hover {
  color: #013bcc;
  border-color: #013bcc;
}

.pagination__number--current {
  color: #fff;
  background: #013bcc;
  border-color: #013bcc;
}

.pagination__prev--disabled,
.pagination__next--disabled {
  color: #bbb;
  border-color: #e5e8ef;
  pointer-events: none;
}

.pagination__sp-prev,
.pagination__sp-next {
  display: none;
}

/* ========================================
   NEWS — Detail
======================================== */
.news-detail {
  padding: 60px 0 0;
}

.news-detail__meta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.news-detail__date {
  font-size: 16px;
  letter-spacing: 0.04em;
}

.news-detail__title {
  margin-top: 16px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
}

.news-detail__visual {
  margin-top: 32px;
}

.news-detail__intro {
  margin-top: 32px;
  font-size: 18px;
  line-height: 34px;
}

.news-detail__heading {
  margin-top: 40px;
  padding-bottom: 12px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  color: #013bcc;
  border-bottom: 1px solid #013bcc;
  display: inline-block;
}

.news-detail__body {
  margin-top: 20px;
}

.news-detail__body p {
  font-size: 16px;
  line-height: 34px;
}

.news-detail__body p + p {
  margin-top: 16px;
}

.news-detail__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 250px;
  height: 55px;
  margin-top: 56px;
  padding: 0 28px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: #013bcc;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.news-detail__back:hover {
  background: #012f9e;
}

.news-detail__back::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 4px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

.news-detail__back-arrow {
  display: none;
}

/* ========================================
   FAQ
======================================== */
.faq {
  padding: 60px 0 0;
}

.faq-list {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 16px;
  background: #fff;
  border: 1px solid #d9dee8;
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.faq-item.is-open {
  border-color: #7f9fd0;
}

.faq-item__question {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 24px 28px;
  text-align: left;
  cursor: pointer;
}

.faq-item__mark {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  font-weight: 700;
}

.faq-item__mark--q {
  color: #fff;
  background: #013bcc;
  border-radius: 4px;
}

.faq-item__mark--a {
  color: #013bcc;
  background: #eff4fa;
  border-radius: 4px;
}

.faq-item__question-text {
  flex: 1;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  color: #000;
}

.faq-item__toggle {
  position: relative;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.faq-item__toggle::before,
.faq-item__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #013bcc;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
}

.faq-item__toggle::before {
  width: 14px;
  height: 2px;
}

.faq-item__toggle::after {
  width: 2px;
  height: 14px;
}

.faq-item.is-open .faq-item__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-item__answer {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  max-height: 0;
  overflow: hidden;
  padding: 0 28px;
  transition: max-height 0.25s ease;
}

.faq-item.is-open .faq-item__answer {
  padding: 0 28px;
}

.faq-item__answer-text {
  flex: 1;
  padding-bottom: 28px;
  font-size: 18px;
  line-height: 34px;
  color: #000;
}

/* ========================================
   PRIVACY POLICY
======================================== */
.policy-content {
  padding: 60px 0 0;
}

.policy-intro {
  font-size: 18px;
  line-height: 34px;
  text-align: center;
}

.policy-list {
  margin-top: 56px;
}

.policy-item {
  display: flex;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid #d9dee8;
}

.policy-item:first-child {
  border-top: 1px solid #d9dee8;
}

.policy-item__number {
  flex: 0 0 48px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  color: #013bcc;
  text-align: center;
  border-right: 1px solid #d9dee8;
  padding-right: 20px;
}

.policy-item__body {
  flex: 1;
}

.policy-item__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}

.policy-item__text {
  margin-top: 16px;
  font-size: 16px;
  line-height: 34px;
}

.policy-item__text li {
  position: relative;
  padding-left: 16px;
  line-height: 34px;
}

.policy-item__text li::before {
  content: "・";
  position: absolute;
  left: 0;
}

.policy-item__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 250px;
  height: 55px;
  margin-top: 20px;
  padding: 0 28px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: #013bcc;
  border: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.policy-item__link:hover {
  background: #012f9e;
}

.policy-item__link::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 4px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

.policy-item__link img {
  display: none;
}

.policy-item__arrow {
  display: none;
}

.policy-enacted {
  margin-top: 24px;
  font-size: 14px;
  text-align: right;
  color: #666;
}

/* ========================================
   TERMS OF USE
======================================== */
.terms-content {
  padding: 60px 0 0;
}

.terms-intro {
  font-size: 18px;
  line-height: 34px;
  text-align: center;
}

.terms-list {
  margin-top: 56px;
}

.terms-item {
  padding: 32px 0;
  border-bottom: 1px solid #d9dee8;
}

.terms-item:first-child {
  border-top: 1px solid #d9dee8;
}

.terms-item__heading {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.terms-item__number {
  flex: 0 0 auto;
  font-size: 24px;
  font-weight: 700;
  color: #013bcc;
}

.terms-item__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}

.terms-item__body {
  margin-top: 16px;
  font-size: 16px;
  line-height: 34px;
}

.terms-item__body ul {
  margin-top: 12px;
}

.terms-item__body li {
  position: relative;
  padding-left: 16px;
  line-height: 34px;
}

.terms-item__body li::before {
  content: "・";
  position: absolute;
  left: 0;
}

.terms-item__contact {
  margin-top: 20px;
  padding: 24px 28px;
  background: #eff4fa;
  border: 1px solid #d9dee8;
}

.terms-item__contact p {
  font-size: 16px;
  line-height: 34px;
}

.terms-enacted {
  margin-top: 20px;
  font-size: 14px;
  text-align: right;
  color: #666;
}

/* ========================================
   LEGAL NOTICE
======================================== */
.legal-content {
  padding: 60px 0 0;
}

.legal-notice-table {
  margin-top: 0;
}

/* ========================================
   CONTACT
======================================== */
.contact-intro {
  padding: 60px 0 0;
}

.contact-intro__text {
  font-size: 18px;
  line-height: 34px;
  text-align: center;
}

.contact-form-section {
  padding: 48px 0 80px;
}

.contact-form {
  padding: 48px 56px;
  background: #fff;
  border: 1px solid #d9dee8;
  border-radius: 10px;
}

.contact-form__field {
  margin-bottom: 28px;
}

.contact-form__field:last-of-type {
  margin-bottom: 0;
}

.contact-form__label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
}

.contact-form__required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 22px;
  padding: 0 8px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: #e60012;
}

.contact-form__input,
.contact-form__select,
.contact-form__textarea {
  width: 100%;
  padding: 16px 20px;
  font-size: 16px;
  line-height: 1.5;
  background: #fff;
  border: 1px solid #d9dee8;
  transition: border-color 0.3s ease;
  border-radius: 5px;
}

.contact-form__input,
.contact-form__select {
  height: 56px;
}

.contact-form__textarea {
  height: 200px;
  resize: vertical;
}

.contact-form__input:focus,
.contact-form__select:focus,
.contact-form__textarea:focus {
  outline: none;
  border-color: #013bcc;
}

.contact-form__input.is-error,
.contact-form__select.is-error,
.contact-form__textarea.is-error {
  border-color: #d32f2f;
}

.form-error {
  margin-top: 8px;
  font-size: 14px;
  color: #d32f2f;
}

.contact-form__field--privacy {
  margin-top: 32px;
  padding: 24px 28px;
  background: #eff4fa;
  border: 1px solid #d9dee8;
  border-radius: 10px;
}

.contact-form__privacy-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  line-height: 1.6;
  cursor: pointer;
}

.contact-form__privacy-label input[type="checkbox"] {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  margin-top: 3px;
  appearance: auto;
  -webkit-appearance: checkbox;
  accent-color: #013bcc;
}

.contact-form__privacy-label a {
  color: #013bcc;
  text-decoration: underline;
}

.contact-form__privacy-note {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.7;
  color: #666;
}

.contact-form__submit {
  margin-top: 40px;
  text-align: center;
}

.contact-form__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 400px;
  height: 64px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background: #013bcc;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.contact-form__button:hover {
  background: #012f9e;
}

/* ========================================
   CONTACT — Confirm / Complete modal
======================================== */
#confirm-modal .modal__dialog,
#complete-modal .modal__dialog {
  max-width: 720px;
  padding: 48px 48px 40px;
  border: 1px solid #d9dee8;
  border-radius: 10px;
}

#confirm-modal .modal__close,
#complete-modal .modal__close {
  top: 16px;
  right: 16px;
}

#confirm-modal .modal__title,
#complete-modal .modal__title {
  margin: 8px 0 0;
  padding: 0 28px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  color: #000;
}

#confirm-modal .confirm-list {
  margin: 36px 0 0;
  padding: 0;
}

#confirm-modal .confirm-list__row {
  margin: 0 0 24px;
}

#confirm-modal .confirm-list__row:last-child {
  margin-bottom: 0;
}

#confirm-modal .confirm-list__label {
  display: block;
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: #000;
}

#confirm-modal .confirm-list__value {
  display: block;
  margin: 0;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #000;
  background: #fff;
  border: 1px solid #d9dee8;
  border-radius: 5px;
  word-break: break-word;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

#confirm-modal .modal__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}

#confirm-modal .modal__button {
  width: 240px;
  height: 52px;
  font-size: 16px;
  border-radius: 5px;
}

#complete-modal .modal__dialog {
  text-align: center;
  padding: 56px 48px 48px;
}

#complete-modal .modal__title {
  margin-top: 12px;
}

#complete-modal .modal__text {
  margin: 28px auto 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  text-align: center;
  color: #000;
}

#complete-modal .modal__actions {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

#complete-modal .modal__button {
  width: 240px;
  height: 52px;
  font-size: 16px;
  border-radius: 5px;
}

.contact-tel {
  padding: 0 0 50px;
  background: #fff;
}

.contact-tel__inner {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 32px;
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 32px 40px;
  background: #eff4fa;
  border: 1px solid #d9dee8;
  border-radius: 10px;
}

.contact-tel__icon {
  width: 100px;
  height: 100px;
  padding: 25px;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #d9dee8;
  border-radius: 50%;
}

.contact-tel__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
}

.contact-tel__text {
  margin-top: 12px;
  font-size: 16px;
  line-height: 34px;
}

.contact-tel__number {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
  font-size: 48px;
  font-weight: 700;
  color: #013bcc;
}

.contact-tel__number a {
  color: inherit;
  transition: opacity 0.3s ease;
}

.contact-tel__number a:hover {
  opacity: 0.75;
}

.contact-tel__hours {
  margin-top: 0;
  font-size: 16px;
  font-weight: 400;
  color: #000;
}
