@charset "UTF-8";

html {
  scroll-behavior: smooth;
}

/* ========================================
   Reset / Base
   ======================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
  color: #000;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.br-sp {
  display: none;
}

.br-pc {
  display: block;
}

/* ----------------------------------------
   Common - More Button
   ---------------------------------------- */
.btn-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.btn-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 250px;
  height: 60px;
  border: 1px solid #006cc9;
  border-radius: 30px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  color: #006cc9;
  transition: background-color 0.3s, color 0.3s;
}

.btn-more:hover {
  background-color: #006cc9;
  color: #fff;
}

.btn-more__icon {
  width: 15px;
  height: 9px;
  transition: filter 0.3s;
}

.btn-more:hover .btn-more__icon {
  filter: brightness(0) invert(1);
}

/* Decorative line (shared) */
.line {
  display: block;
  width: 139px;
  height: 3px;
  margin-top: 16px;
}

.line--blue {
  background: linear-gradient(90deg, #15aef2 0%, #0649c4 90%);
}

.line--white {
  background: #fff;
}

/* ========================================
   Header
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 38px 31px 0;
  z-index: 10;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1309px;
  margin: 0 auto;
  padding: 18px 48px;
  background: #fff;
  border-radius: 20px;
}

/* ----------------------------------------
   Header - Logo
   ---------------------------------------- */
.header__logo {
  flex-shrink: 0;
  font-size: 0;
}

.header__logo-img {
  width: 238px;
  object-fit: contain;
}

/* ----------------------------------------
   Header - Navigation
   ---------------------------------------- */
.header__nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header__menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__menu-link {
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  transition: opacity 0.3s;
}

.header__menu-link:hover {
  opacity: 0.7;
}

/* Active menu item underline */
.header__menu-item--active .header__menu-link {
  position: relative;
}

.header__menu-item--active .header__menu-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: #000;
}

/* ----------------------------------------
   Header - Action Buttons
   ---------------------------------------- */
.header__actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 168px;
  height: 48px;
  border-radius: 24px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  transition: opacity 0.3s;
}

.header__btn:hover {
  opacity: 0.85;
}

/* Contact button - orange gradient */
.header__btn--contact {
  background: linear-gradient(270deg, #ee542f 5.1%, #f67a34 51.4%, #ffa639 99%);
}

/* Service button - blue gradient */
.header__btn--service {
  background: linear-gradient(90deg, #16b1f3 5.1%, #0649c4 90%);
}

/* ========================================
   Key Visual
   ======================================== */
.kv {
  position: relative;
  background-color: #f3f8ff;
  overflow: hidden;
}

/* ----------------------------------------
   Key Visual - Text
   ---------------------------------------- */
.kv__text {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 202px;
  margin: 0 0 30px;
}

.kv__title {
  font-size: 70px;
  font-weight: 700;
  line-height: 1.2;
  color: #002d37;
}

.kv__title-accent {
  color: #0649c4;
}

.kv__subtitle {
  margin-top: 14px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.6;
  color: #002d37;
}

/* ----------------------------------------
   Key Visual - Background Image
   ---------------------------------------- */
.kv__bg {
  position: relative;
}

/* KV Swiper */
.kv__swiper {
  overflow: hidden;
  max-height: 300px;
}

.kv__swiper .swiper-wrapper {
  transition-timing-function: linear;
}

@media screen and (min-width: 1025px) {
  .kv__swiper .swiper-wrapper {
    transition-timing-function: initial;
  }

  .kv__swiper .swiper-slide:first-child {
    width: 100%;
  }

  .kv__swiper .swiper-slide:not(:first-child) {
    display: none;
  }

  .kv__swiper .swiper-slide img {
    width: 100%;
    object-fit: contain;
  }
}

.kv__swiper .swiper-slide {
  width: auto;
}

.kv__bg-img {
  display: block;
  max-height: 300px;
  width: auto;
  max-width: none;
  object-fit: cover;
}

.kv__bg-curve {
  width: 100%;
  background: linear-gradient(90deg, #15aef2 0%, #0649c4 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 5;
  padding: 24px 20px;
}

.kv__result {
  height: auto;
}

.kv__result--pc {
  width: 100%;
}

.kv__result-wrap {
  max-width: 959px;
  width: 100%;
  margin-top: -40px;
}

.kv__result-note {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  line-height: 1.6;
  text-align: right;
  margin-top: 4px;
}

.kv__result--sp {
  display: none;
}

/* ========================================
   Service Section
   ======================================== */
.service {
  background-color: #f3f8ff;
  padding: 156px 0 174px;
  overflow: hidden;
}

.service__inner {
  max-width: 1366px;
  margin: 0 auto;
}

/* ----------------------------------------
   Service - Section Header
   ---------------------------------------- */
.service__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1094px;
  margin: 0 auto 80px;
  padding: 0 20px;
}

.service__header-label {
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #002d37;
  line-height: 1.6;
}

.service__header-title {
  font-family: "Montserrat", sans-serif;
  font-size: 100px;
  font-weight: 700;
  color: #0649c4;
  line-height: 1.6;
}

.service__header-desc {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #002d37;
  line-height: 1.6;
  text-align: right;
  margin-top: 30px;
}

/* ----------------------------------------
   Service - Row (shared)
   ---------------------------------------- */
.service__row {
  position: relative;
  margin-bottom: 160px;
  padding: 60px 0 0;
}

.service__row:last-child {
  margin-bottom: 0;
}

/* 3-block horizontal layout */
.service__row-blocks {
  position: relative;
  display: flex;
  gap: 30px;
  max-width: 1114px;
  margin: 0 auto;
  padding: 0 0 74px;
  z-index: 2;
}

/* Blue background via pseudo-element */
.service__row-blocks::before {
  content: "";
  position: absolute;
  top: 30%;
  bottom: 0;
  z-index: -1;
  width: 100vw;
}

.service__row--experienced .service__row-blocks::before {
  right: 40px;
  background-color: #14a9f0;
}

.service__row--beginner .service__row-blocks::before {
  left: 40px;
  right: 0;
  background-color: #0649c4;
}

/* ----------------------------------------
   Service - Info Block (label + desc)
   ---------------------------------------- */
.service__row-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  margin: -45px 0 0;
}

.service__row--beginner .service__row-label {
  text-align: right;
}

.service__row--beginner .line {
  margin-left: auto;
}

.service__row--beginner .service__row-desc {
  margin: 0 0 0 auto;
}

.service__row-label {
  margin-bottom: 117px;
}

.service__row-label-en {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0649c4;
  line-height: 1.6;
}

.service__row-label-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 35px;
  font-weight: 700;
  color: #002d37;
  line-height: 1.4;
}

.service__row-label-sub {
  font-size: 28px;
}

.service__row-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  max-width: 245px;
}

/* ----------------------------------------
   Service - Cards
   ---------------------------------------- */
.service__card {
  width: 390px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 18px;
}

.service__card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 42px;
  margin-top: -10px;
  position: relative;
}

.service__card-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #000;
  line-height: 1.6;
  margin-bottom: 12px;
}

.service__card-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  line-height: 1.6;
  margin-bottom: auto;
}

.service__card-btn {
  margin-top: 24px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 250px;
  height: 60px;
  border: 1px solid #006cc9;
  border-radius: 30px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  color: #006cc9;
  transition: background-color 0.3s, color 0.3s;
}

.service__card-btn:hover {
  background-color: #006cc9;
  color: #fff;
}

/* ----------------------------------------
   Service - Card Mockup
   ---------------------------------------- */
.service__card-mockup {
  padding: 0 20px 10px;
  margin: -60px 0 0;
}

.service__card-mockup-img {
  display: block;
  width: 100%;
  height: auto;
}

/* ========================================
   Reason Section
   ======================================== */
.reason {
  position: relative;
  background: linear-gradient(90deg, #15aef2 0%, #0649c4 90%);
  padding: 105px 0 120px;
  overflow: hidden;
}

.reason__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.reason__bg-texture {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
  opacity: 0.4;
}

.reason__inner {
  position: relative;
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 55px;
}

/* ----------------------------------------
   Reason - Section Header
   ---------------------------------------- */
.reason__header {
  text-align: center;
  margin-bottom: 70px;
}

.reason__header-en {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.6;
}

.reason__header-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  line-height: 1.6;
}

.reason__header .line {
  margin: 16px auto 0;
}

/* ----------------------------------------
   Reason - Card (shared)
   ---------------------------------------- */
.reason__card {
  position: relative;
  margin-bottom: 50px;
}

.reason__card:last-child {
  margin-bottom: 0;
}

.reason__card-label {
  position: absolute;
  top: 0;
  right: -25px;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  writing-mode: vertical-rl;
  letter-spacing: 0.05em;
  z-index: 2;
}

.reason__card-inner {
  background: #fff;
  border-radius: 20px;
  padding: 50px 60px 50px;
  position: relative;
  overflow: hidden;
}

.reason__card-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 35px;
  font-weight: 700;
  color: #002d37;
  text-align: center;
  margin-bottom: 30px;
}

.reason__card-title-accent {
  color: #0649c4;
}

.reason__card-title-underline {
  text-decoration: underline;
  text-decoration-color: #0649c4;
  text-underline-offset: 6px;
  text-decoration-thickness: 3px;
}

.reason__card-text {
  font-size: 20px;
  line-height: 1.8;
  color: #000;
}

.reason__card-note {
  font-size: 12px;
  line-height: 1.6;
  color: #606060;
  margin-top: 16px;
}

/* ----------------------------------------
   Reason 01 - Advisor Card
   ---------------------------------------- */
.reason__card-content--01 {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin: 0 auto;
  max-width: 940px;
}

.reason__card-left {
  flex: 1;
}

.reason__card-right {
  flex-shrink: 0;
}

.reason__stats-img {
  display: block;
  max-width: 510px;
  width: 100%;
  margin-top: 30px;
}

.reason__certificates-img {
  display: block;
  max-width: 410px;
  width: 100%;
}

/* ----------------------------------------
   Reason 02 - Support Comparison Card
   ---------------------------------------- */
.reason__card-inner--02 {
  overflow: hidden;
}

/* Background photo */
.reason02__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 50%;
  pointer-events: none;
  overflow: hidden;
}

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

/* Description */
.reason02__desc {
  text-align: center;
  position: relative;
  margin-bottom: 47px;
}

/* SP table image */
.reason02__table-sp {
  display: none;
  width: 100%;
  height: auto;
}

/* Comparison Table (div-based) */
.reason02__table {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}

/* Header row */
.reason02__table-header {
  display: flex;
  align-items: flex-end;
}

.reason02__table-header-item {
  width: 30%;
  background: #858585;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  border-radius: 12px 0 0 0;
}

.reason02__table-header-pit {
  width: 35%;
  background: linear-gradient(90deg, #15aef2 0%, #0649c4 90%);
  color: #fff;
  text-align: center;
  padding: 10px 20px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 12px 12px 0 0;
}

.reason02__table-header-pit-label {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.reason02__table-header-pit-logo {
  height: 31px;
  width: auto;
  margin-top: 4px;
}

.reason02__table-header-other {
  width: 35%;
  background: #dedede;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 12px 0 0;
}

/* Data rows */
.reason02__table-row {
  display: flex;
}

.reason02__table-cell {
  padding: 16px 20px;
  font-family: "Noto Sans JP", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reason02__table-cell--item {
  width: 30%;
  background: #fff;
  border: 1px solid #fff;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  justify-content: flex-start;
}

.reason02__table-cell--pit {
  width: 35%;
  background: #d0effd;
  border: 1px solid #fff;
  font-size: 18px;
  font-weight: 700;
  color: #000;
}

.reason02__table-cell--other {
  width: 35%;
  background: #fff;
  border: 1px solid #ebebeb;
  font-size: 16px;
  font-weight: 400;
  color: #000;
}

/* ----------------------------------------
   Reason 03 - Reviews Card
   ---------------------------------------- */
.reason03__reviews {
  display: flex;
  gap: 50px;
  justify-content: center;
  margin-bottom: 40px;
}

.reason03__review {
  flex: 1;
  max-width: 462px;
}

.reason03__review-stars {
  display: block;
  max-width: 280px;
  width: 100%;
  margin: 0 auto 16px;
}

.reason03__review-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #484848;
  transform: skewX(-10deg) scaleY(0.98);
}

/* Bottom bar */
.reason03__bottom-bar {
  background: linear-gradient(90deg, #15aef2 0%, #0649c4 90%);
  clip-path: polygon(2.26% 0, 100% 0, 97.74% 100%, 0 100%);
  padding: 14px 5px;
  text-align: center;
  max-width: 619px;
  margin: 0 auto;
}

.reason03__bottom-bar-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  line-height: 1.8;
}

/* ========================================
   Voice Section (利用者の声)
   ======================================== */
.voice {
  padding: 100px 0 80px;
  background: #fff;
  overflow: hidden;
}

.voice__inner {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ----------------------------------------
   Voice - Section Header
   ---------------------------------------- */
.voice__header {
  text-align: center;
  margin-bottom: 60px;
}

.voice__header-en {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0649c4;
  line-height: 1.6;
}

.voice__header-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: #002d37;
  line-height: 1.6;
}

.voice__header .line {
  margin: 12px auto 0;
}

/* ----------------------------------------
   Voice - Slider (Swiper)
   ---------------------------------------- */
.voice__slider-wrap {
  position: relative;
}

.voice__swiper {
  overflow: visible;
  padding: 0 80px;
}

.voice__swiper .swiper-slide {
  width: 380px;
  height: auto;
}

/* Pager: prev + scrollbar + next */
.voice__pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.voice__swiper-prev,
.voice__swiper-next {
  position: relative;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  cursor: pointer;
  border: 2px solid #006cc9;
  border-radius: 50%;
  background: #fff;
  transition: background-color 0.3s;
}

.voice__swiper-prev::after,
.voice__swiper-next::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #006cc9;
  border-right: 2px solid #006cc9;
  transition: border-color 0.3s;
}

.voice__swiper-prev::after {
  transform: translate(-30%, -50%) rotate(-135deg);
}

.voice__swiper-next::after {
  transform: translate(-70%, -50%) rotate(45deg);
}

.voice__swiper-prev:hover,
.voice__swiper-next:hover {
  background: #006cc9;
}

.voice__swiper-prev:hover::after,
.voice__swiper-next:hover::after {
  border-color: #fff;
}

.voice__swiper-scrollbar {
  width: 276px;
  height: 4px;
  background: #e8e8e8;
  border-radius: 10px;
}

.voice__swiper-scrollbar .swiper-scrollbar-drag {
  background: #006cc9;
  border-radius: 10px;
}

/* ----------------------------------------
   Voice - Card
   ---------------------------------------- */
.voice__swiper .swiper-wrapper {
  align-items: stretch;
}

.voice__card {
  width: 100%;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}


/* Photo area */
.voice__card-photo {
  position: relative;
  width: 100%;
}

.voice__card-photo-img {
  display: block;
  width: 100%;
  aspect-ratio: 380 / 300;
  object-fit: cover;
  object-position: left top;
}

/* Salary badge */
.voice__card-badge {
  position: absolute;
  top: 28px;
  left: 22px;
  width: 133px;
  height: 133px;
}

.voice__card-badge-bg {
  width: 100%;
  height: 100%;
}

.voice__card-badge-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
}

.voice__card-badge-label {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  display: block;
}

.voice__card-badge-middle {
  display: flex;
  align-items: center;
  justify-content: center;
}

.voice__card-badge-num {
  font-family: "Montserrat", sans-serif;
  font-size: 38px;
  letter-spacing: 1.5px;
}

.voice__card-badge-unit {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 1.1;
  margin-left: 2px;
}

/* Name area */
/* Overlay (name + transition inside photo) */
.voice__card-overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}

.voice__card-name {
  background: #fff;
  padding: 10px 32px;
  width: fit-content;
  letter-spacing: 0.88px;
}

.voice__card-name-main {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #000;
}

.voice__card-name-age {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000;
}

/* Career transition bar */
.voice__card-transition {
  display: flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(90deg, #15aef2 0%, #0649c4 90%);
  opacity: 0.9;
  padding: 12px 20px;
  color: #fff;
  white-space: nowrap;
}

.voice__card-transition-from {
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.4px;
}

.voice__card-transition-arrow {
  width: 16px;
  height: auto;
  flex-shrink: 0;
}

.voice__card-transition-to {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

/* Card body */
.voice__card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 24px 32px 30px;
}

.voice__card-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #000;
  line-height: 1.6;
  margin-bottom: 12px;
}

.voice__card-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* Tags */
.voice__card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.voice__card-tag {
  display: inline-block;
  padding: 2px 8px;
  border: 1px solid #006cc9;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  color: #006cc9;
  line-height: 1.6;
  white-space: nowrap;
}


/* ----------------------------------------
   Voice - Progress Bar
   ---------------------------------------- */
/* ========================================
   Staff Section (社員紹介)
   ======================================== */
.staff {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #F7F7F7 0%, #F3F8FF 100%);
}

.staff__inner {
  position: relative;
  max-width: 1366px;
  margin: 0 auto;
  padding: 80px 16px 80px;
}

/* ----------------------------------------
   Staff - Section Header
   ---------------------------------------- */
.staff__header {
  position: relative;
  text-align: center;
  margin-bottom: 60px;
  padding-top: 0;
}

.staff__header-big {
  font-family: "Montserrat", sans-serif;
  font-size: 160px;
  font-weight: 700;
  color: #fff;
  line-height: 1.6;
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  pointer-events: none;
  user-select: none;
}

.staff__header-title {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: #002d37;
  line-height: 1.6;
  padding-top: 100px;
}

.staff__header .line {
  margin: 12px auto 0;
}

/* ----------------------------------------
   Staff - Slider (Swiper)
   ---------------------------------------- */
.staff__slider-wrap {
  position: relative;
}

.staff__swiper {
  overflow: visible;
  padding: 0 80px;
}

.staff__swiper .swiper-slide {
  width: auto;
}

/* Pager: prev + scrollbar + next */
.staff__pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

/* Navigation arrows */
.staff__swiper-prev,
.staff__swiper-next {
  position: relative;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  cursor: pointer;
  border: 2px solid #006cc9;
  border-radius: 50%;
  background: #fff;
  transition: background-color 0.3s;
}

.staff__swiper-prev::after,
.staff__swiper-next::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #006cc9;
  border-right: 2px solid #006cc9;
  transition: border-color 0.3s;
}

.staff__swiper-prev::after {
  transform: translate(-30%, -50%) rotate(-135deg);
}

.staff__swiper-next::after {
  transform: translate(-70%, -50%) rotate(45deg);
}

.staff__swiper-prev:hover,
.staff__swiper-next:hover {
  background: #006cc9;
}

.staff__swiper-prev:hover::after,
.staff__swiper-next:hover::after {
  border-color: #fff;
}

/* Scrollbar */
.staff__swiper-scrollbar {
  width: 276px;
  height: 4px;
  background: #e8e8e8;
  border-radius: 10px;
}

.staff__swiper-scrollbar .swiper-scrollbar-drag {
  background: #006cc9;
  border-radius: 10px;
}

/* ----------------------------------------
   Staff - Card
   ---------------------------------------- */
a.staff__card {
  text-decoration: none;
  color: inherit;
  display: block;
}

.staff__card {
  flex: 0 0 330px;
  width: 330px;
}

/* Photo with mask */
.staff__card-photo {
  width: 270px;
  aspect-ratio: 285 / 357;
  overflow: hidden;
}

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

/* Name plate (blue gradient) */
.staff__card-nameplate {
  background: linear-gradient(90deg, #15aef2 0%, #0649c4 90%);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.12);
  width: fit-content;
  max-width: 100%;
  padding: 10px 20px;
  margin-top: -68px;
  position: relative;
  z-index: 2;
  white-space: nowrap;
}

.staff__card-name-en {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.6;
  letter-spacing: 0.4px;
}

.staff__card-role {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  line-height: 1.6;
}

/* Card body (white bg) */
.staff__card-body {
  background: #fff;
  padding: 22px 32px 30px;
  min-height: 130px;
}

.staff__card-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #002d37;
  line-height: 1.6;
}

/* ========================================
   News Section (お知らせ)
   ======================================== */
.news {
  background: #fff;
  padding: 80px 0 100px;
}

.news__inner {
  display: flex;
  align-items: flex-start;
  gap: 80px;
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 183px;
}

/* ----------------------------------------
   News - Title
   ---------------------------------------- */
.news__title {
  flex-shrink: 0;
  width: 200px;
  padding-top: 4px;
}

.news__title-en {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #006cc9;
  line-height: 1.6;
}

.news__title-ja {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: #000;
  line-height: 1.6;
}

/* ----------------------------------------
   News - List
   ---------------------------------------- */
.news__list {
  flex: 1;
}

.news__item-link {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s;
}

.news__item-link:hover {
  opacity: 0.7;
}

.news__item {
  display: flex;
  gap: 30px;
  padding: 0 0 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid #d9d9d9;
}

.news__item--last {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.news__item-date {
  flex-shrink: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  line-height: 1.6;
  white-space: nowrap;
}

.news__item-content {
  flex: 1;
}

.news__item-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #4d444a;
  line-height: 1.6;
  margin-bottom: 4px;
}

.news__item-desc {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #4d444a;
  line-height: 1.6;
}

/* ========================================
   Entry Section (採用)
   ======================================== */
.entry {
  position: relative;
  overflow: hidden;
}

/* ----------------------------------------
   Entry - Background
   ---------------------------------------- */
.entry__bg {
  position: absolute;
  inset: 0;
}

.entry__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.entry__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #16b1f3 5.1%, #0649c4 90%);
  mix-blend-mode: multiply;
}

/* ----------------------------------------
   Entry - Content
   ---------------------------------------- */
.entry__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1366px;
  margin: 0 auto;
  padding: 120px 203px;
}

.entry__label {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.6;
  letter-spacing: 0.72px;
  margin-bottom: 8px;
}

.entry__heading {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  line-height: 1.6;
  letter-spacing: 1.04px;
}

/* ----------------------------------------
   Entry - Button
   ---------------------------------------- */
.entry__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 507px;
  height: 94px;
  border: 1px solid #fff;
  border-radius: 50px;
  transition: background-color 0.3s;
  flex-shrink: 0;
}

.entry__btn:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.entry__btn-text {
  font-family: "Montserrat", sans-serif;
  font-size: 29px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1.16px;
}

.entry__btn-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background: #000;
  color: #fff;
  padding: 100px 0 60px;
}

.footer__inner {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 143px;
}

/* ----------------------------------------
   Footer - Top Row
   ---------------------------------------- */
.footer__top {
  display: flex;
  gap: 60px;
  margin-bottom: 50px;
}

.footer__info {
  flex-shrink: 0;
  width: 300px;
}

.footer__logo {
  display: block;
  width: 240px;
  object-fit: contain;
  margin-bottom: 60px;
}

.footer__company {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 8px;
}

.footer__address {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* SNS Icons */
.footer__sns {
  display: flex;
  gap: 16px;
}

.footer__sns-link {
  position: relative;
  display: block;
  width: 43px;
  height: 43px;
  transition: opacity 0.3s;
}

.footer__sns-link:hover {
  opacity: 0.7;
}

.footer__sns-bg {
  width: 100%;
  height: 100%;
}

.footer__sns-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 21px;
  height: 21px;
  object-fit: contain;
}

.footer__sns-icon--yt {
  width: 30px;
  height: 30px;
}

/* ----------------------------------------
   Footer - Nav Area
   ---------------------------------------- */
.footer__nav-area {
  flex: 1;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 30px;
}

.footer__nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer__nav-btns {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__nav-link {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  transition: opacity 0.3s;
}

.footer__nav-link:hover {
  opacity: 0.7;
}

.footer__nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 20px;
  border: 1px solid #fff;
  border-radius: 30px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  white-space: nowrap;
  transition: background-color 0.3s;
}

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

.footer__nav-btn-arrow {
  font-size: 16px;
  line-height: 1;
}

/* ----------------------------------------
   Footer - Service Logos
   ---------------------------------------- */
.footer__services {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
}

.footer__service-item {
  display: block;
  transition: opacity 0.3s;
}

.footer__service-item:hover {
  opacity: 0.8;
}

.footer__service-img {
  display: block;
  height: 43px;
  width: auto;
}

/* ----------------------------------------
   Footer - Bottom
   ---------------------------------------- */
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  margin-top: 30px;
}

.footer__pmark {
  background: #fff;
  width: 61px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__pmark-img {
  width: 43px;
  object-fit: contain;
}

.footer__copyright {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #d0d0d0;
  line-height: 1.6;
}

.footer__copyright-sp {
  display: none;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #d0d0d0;
  line-height: 1.6;
  text-align: center;
  margin-top: 30px;
}

/* ========================================
   Page Top (Fixed)
   ======================================== */
.pagetop {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 90;
  display: block;
  transition: opacity 0.3s;
}

.pagetop:hover {
  opacity: 0.7;
}

.pagetop__img {
  width: 60px;
  display: block;
}

/* ========================================
   Page Hero (共通下層ページヒーロー)
   ======================================== */
.page-hero {
  background: #f3f8ff;
  padding: 183px 0 80px;
}

.page-hero__inner {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 117px;
}

.page-hero__title {
  font-family: "Montserrat", sans-serif;
  font-size: 96px;
  font-weight: 700;
  color: #0649c4;
  line-height: 1.6;
}

.page-hero__sub {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: -8px;
}

.page-hero__sub-text {
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #002d37;
  line-height: 1.6;
}

.page-hero__sub .line {
  margin-top: 0;
}

/* ========================================
   Breadcrumb (パンくずリスト)
   ======================================== */
.pankuzu {
  background: #fff;
  padding: 12px 20px;
}

.pankuzu p {
  max-width: 1080px;
  margin: 0 auto;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  line-height: 1.6;
}

.pankuzu a {
  color: #000;
  text-decoration: underline;
}

.pankuzu a:hover {
  text-decoration: none;
}

/* ========================================
   Vision / Value
   ======================================== */
.vision {
  background: #fff;
  padding: 120px 20px;
}

.vision__inner {
  max-width: 1080px;
  margin: 0 auto;
}

/* Heading */
.vision__heading {
  text-align: center;
  margin-bottom: 64px;
}

.vision__heading-en {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0649c4;
  line-height: 1.6;
}

.vision__heading-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: #002d37;
  line-height: 1.6;
}

.vision__heading .line {
  margin: 12px auto 0;
}

/* Cards shared */
.vision__card {
  position: relative;
  border-radius: 12px;
  padding: 40px 60px 40px 200px;
  margin-bottom: 30px;
  overflow: hidden;
}

.vision__card:last-child {
  margin-bottom: 0;
}

/* Badge */
.vision__card-badge {
  position: absolute;
  left: 72px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 115px;
  padding: 8px 0;
  border-radius: 999px;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

.vision__card-badge--white {
  background: #fff;
  color: #333;
}

.vision__card-badge--blue {
  background: linear-gradient(90deg, #15aef2 0%, #0649c4 90%);
  color: #fff;
}

/* VISION card */
.vision__card--vision {
  background: linear-gradient(90deg, #15aef2 0%, #0649c4 90%);
}

.vision__card--vision .vision__card-bg {
  position: absolute;
  inset: 0;
  background: url('images/reason-bg-texture.png') center / cover;
  mix-blend-mode: multiply;
  opacity: 0.4;
  border-radius: 12px;
}

.vision__card--vision .vision__card-text {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1.6;
}

/* VALUE card */
.vision__card--value {
  background: linear-gradient(90deg, #15aef2 0%, #0649c4 90%);
  padding: 4px;
  overflow: visible;
}

.vision__card--value-inner {
  background: #fff;
  border-radius: 8px;
  padding: 36px 56px 36px 196px;
  position: relative;
}

.vision__card--value .vision__card-badge {
  position: absolute;
  left: 68px;
  top: 50%;
  transform: translateY(-50%);
}

.vision__card--value .vision__card-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #000;
  line-height: 2.2;
}

/* ========================================
   Advisor Section (アドバイザー紹介)
   ======================================== */
.advisor {
  background: #f3f8ff;
  padding: 80px 20px 120px;
  position: relative;
}

.advisor__inner {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  z-index: 5;
}

/* Mockup */
.advisor__moc {
  position: absolute;
  top: -60px;
  right: 0;
  width: 380px;
  pointer-events: none;
  z-index: 0;
}

.advisor__moc-img {
  width: 100%;
}

/* Heading */
.advisor__heading {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
}

.advisor__heading-en {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0649c4;
  line-height: 1.6;
}

.advisor__heading-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: #002d37;
  line-height: 1.6;
}

.advisor__heading .line {
  margin: 12px auto 0;
}

/* Grid */
.advisor__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.advisor__card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  scroll-margin-top: 120px;
}

.advisor__card-photo {
  aspect-ratio: 340 / 300;
  overflow: hidden;
  background: #f0f0f0;
  padding: 20px 0 0;
}

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

/* Nameplate */
.advisor__card-nameplate {
  background: linear-gradient(90deg, #15aef2 0%, #0649c4 90%);
  padding: 12px 24px;
}

.advisor__card-name {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1.6;
  letter-spacing: 0.4px;
}

/* Body */
.advisor__card-body {
  padding: 24px;
}

.advisor__card-meta {
  display: grid;
  grid-template-columns: 70px 1fr;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 16px;
}

.advisor__card-meta dt {
  color: #333;
  white-space: nowrap;
}

.advisor__card-meta dd {
  color: #000;
}

.advisor__card-copy {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #15aef2 0%, #0649c4 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Q&A */
.advisor__card-qa {
  margin-bottom: 16px;
}

.advisor__card-qa-q {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #000;
  line-height: 1.6;
  margin-bottom: 4px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.advisor__card-qa-a {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  line-height: 1.8;
  display: flex;
  gap: 6px;
}

.advisor__card-qa-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 19px;
  height: 19px;
  border-radius: 999px;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1;
  letter-spacing: 0.2px;
}

.advisor__card-qa-icon--q {
  background: #ddecfa;
  color: #0649c4;
}

.advisor__card-qa-icon--a {
  background: #fae1dd;
  color: #c40c06;
}

/* Tags */
.advisor__card-tags {
  margin-top: 20px;
}

.advisor__card-tags-label {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #0649c4;
  margin-bottom: 8px;
}

.advisor__card-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.advisor__card-tag {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid #0649c4;
  border-radius: 999px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  color: #0649c4;
  line-height: 1.4;
}

/* ========================================
   News Archive (お知らせ一覧)
   ======================================== */
.news-archive {
  background: #fff;
  padding: 80px 20px 100px;
}

.news-archive__inner {
  max-width: 1080px;
  margin: 0 auto;
}

.news-archive__item {
  border-bottom: 1px solid #d9d9d9;
}

.news-archive__item:last-child {
  border-bottom: none;
}

.news-archive__item-link {
  display: block;
  padding: 30px 0;
  transition: opacity 0.3s;
}

.news-archive__item-link:hover {
  opacity: 0.7;
}

.news-archive__item-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}

.news-archive__item-date {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  line-height: 1.6;
  white-space: nowrap;
}

.news-archive__item-tag {
  display: inline-block;
  padding: 2px 12px;
  border: 1px solid #006cc9;
  border-radius: 999px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  color: #006cc9;
  line-height: 1.6;
  white-space: nowrap;
}

.news-archive__item-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #4d444a;
  line-height: 1.6;
  margin-bottom: 8px;
}

.news-archive__item-excerpt {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #4d444a;
  line-height: 1.8;
}

/* ----------------------------------------
   News - Pagination
   ---------------------------------------- */
.news-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 60px;
  padding: 0 20px;
}

.news-pagination__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid #006cc9;
  border-radius: 50%;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #006cc9;
  transition: background-color 0.3s, color 0.3s;
}

.news-pagination__item:hover {
  background-color: #006cc9;
  color: #fff;
}

.news-pagination__item--current {
  background-color: #006cc9;
  color: #fff;
}

.news-pagination__next {
  width: auto;
  padding: 0 20px;
  border-radius: 22px;
}

/* ========================================
   News Single (お知らせ個別)
   ======================================== */
.news-single {
  background: #fff;
  padding: 80px 20px 100px;
}

.news-single__inner {
  max-width: 1080px;
  margin: 0 auto;
}

.news-single__article {
  margin-bottom: 60px;
}

.news-single__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.news-single__date {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  line-height: 1.6;
}

.news-single__tag {
  display: inline-block;
  padding: 2px 12px;
  border: 1px solid #006cc9;
  border-radius: 999px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  color: #006cc9;
  line-height: 1.6;
  white-space: nowrap;
}

.news-single__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #002d37;
  line-height: 1.6;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 3px solid;
  border-image: linear-gradient(90deg, #15aef2 0%, #0649c4 90%) 1;
}

.news-single__body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #4d444a;
  line-height: 2;
}

.news-single__body p {
  margin-bottom: 24px;
}

.news-single__body p:last-child {
  margin-bottom: 0;
}

.news-single__btn {
  margin-top: 0;
}

/* ========================================
   Privacy Policy
   ======================================== */
.privacy {
  background: #fff;
  padding: 120px 20px;
}

.privacy__inner {
  max-width: 900px;
  margin: 0 auto;
}

.privacy__lead {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #000;
  line-height: 1.8;
  margin-bottom: 48px;
}

.privacy__section {
  margin-bottom: 48px;
}

.privacy__section:last-child {
  margin-bottom: 0;
}

.privacy__heading {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #002d37;
  line-height: 1.6;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid;
  border-image: linear-gradient(90deg, #15aef2 0%, #0649c4 90%) 1;
}

.privacy__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 12px;
}

.privacy__text:last-child {
  margin-bottom: 0;
}

.privacy__list {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  color: #333;
  line-height: 1.8;
  padding-left: 1.5em;
  margin-bottom: 16px;
}

.privacy__list li {
  margin-bottom: 6px;
}

.privacy__list--ordered {
  list-style: decimal;
}

.privacy__list--sub {
  list-style: none;
  padding-left: 0;
}

.privacy__list--nested {
  list-style: disc;
  padding-left: 1.5em;
  margin-top: 8px;
}

.privacy__contact-box {
  background: #f3f8ff;
  border-radius: 12px;
  padding: 24px 30px;
  margin-top: 16px;
}

.privacy__note {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin-top: 8px;
}

/* ========================================
   Contact Hero
   ======================================== */
.contact-hero {
  position: relative;
  padding: 185px 0 80px;
  overflow: hidden;
}

.contact-hero__bg {
  position: absolute;
  inset: 0;
}

.contact-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.contact-hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #16b1f3 5.1%, #0649c4 90%);
  mix-blend-mode: multiply;
}

.contact-hero__inner {
  position: relative;
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 117px;
}

.contact-hero__title {
  font-family: "Montserrat", sans-serif;
  font-size: 96px;
  font-weight: 700;
  color: #fff;
  line-height: 1.6;
}

.contact-hero__sub {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: -8px;
}

.contact-hero__sub .line {
  margin-top: 0;
}

.contact-hero__sub-text {
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  line-height: 1.6;
}

/* ========================================
   Contact Form
   ======================================== */
.contact-form {
  background: #fff;
  padding: 120px 20px;
}

.contact-form__inner {
  max-width: 1080px;
  margin: 0 auto;
}

/* Heading */
.contact-form__heading {
  text-align: center;
  margin-bottom: 64px;
}

.contact-form__heading-en {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0649c4;
  line-height: 1.6;
}

.contact-form__heading-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: #002d37;
  line-height: 1.6;
}

.contact-form__heading .line {
  margin: 12px auto 0;
}

/* Form body */
.contact-form__body {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Group */
.contact-form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Label */
.contact-form__label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  line-height: 1.6;
}

/* Badge */
.contact-form__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 17px;
  border-radius: 999px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  line-height: 1.6;
}

.contact-form__badge--required {
  background: #006cc9;
}

.contact-form__badge--optional {
  background: #afafaf;
}

/* Inputs */
.contact-form__input {
  width: 100%;
  padding: 16px 35px;
  background: #fafafa;
  border: 1px solid #dbdbdb;
  border-radius: 6px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #000;
  line-height: 1.6;
  outline: none;
  transition: border-color 0.3s;
}

.contact-form__input::placeholder {
  color: #a4a4a4;
}

.contact-form__input:focus {
  border-color: #006cc9;
}

.contact-form__select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
}

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

/* Agree */
.contact-form__agree {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-form__agree-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #000;
  cursor: pointer;
}

.contact-form__checkbox {
  width: 25px;
  height: 25px;
  border: 1px solid #383838;
  border-radius: 4px;
  appearance: none;
  cursor: pointer;
  flex-shrink: 0;
}

.contact-form__checkbox:checked {
  background: #006cc9;
  border-color: #006cc9;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='11'%3E%3Cpath d='M1 5l4 4L13 1' stroke='white' stroke-width='2.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.contact-form__agree-link {
  color: #000;
  text-decoration: underline;
}

/* Submit */
.contact-form__submit-btn {
  display: block;
  margin: 0 auto;
  text-align: center;
  width: 315px;
  padding: 20px 0;
  background: linear-gradient(90deg, #15aef2 0%, #0649c4 90%);
  border: none;
  border-radius: 999px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  transition: opacity 0.3s;
}

.contact-form__submit-btn:hover {
  opacity: 0.85;
}

/* ========================================
   Access (アクセス)
   ======================================== */
.access {
  background: #fff;
  padding: 120px 20px;
}

.access__inner {
  max-width: 1080px;
  margin: 0 auto;
}

/* Heading */
.access__heading {
  text-align: center;
  margin-bottom: 64px;
}

.access__heading-en {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0649c4;
  line-height: 1.6;
}

.access__heading-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: #002d37;
  line-height: 1.6;
}

.access__heading .line {
  margin: 12px auto 0;
}

/* Grid */
.access__grid {
  display: flex;
  gap: 24px;
}

.access__card {
  flex: 1;
  min-width: 0;
}

/* Map */
.access__map {
  margin-bottom: 20px;
}

.access__map iframe {
  display: block;
  width: 100%;
}

/* Info */
.access__info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.access__info-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.access__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 29px;
  height: 29px;
  background: linear-gradient(90deg, #15aef2 0%, #0649c4 90%);
  border-radius: 999px;
  flex-shrink: 0;
}

.access__icon-img {
  width: 14px;
  height: 14px;
}

.access__info-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  line-height: 1.6;
}

/* ========================================
   History (沿革)
   ======================================== */
.history {
  background: #f3f8ff;
  padding: 120px 20px;
}

.history__inner {
  max-width: 1080px;
  margin: 0 auto;
}

/* Heading */
.history__heading {
  text-align: center;
  margin-bottom: 64px;
}

.history__heading-en {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0649c4;
  line-height: 1.6;
}

.history__heading-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: #002d37;
  line-height: 1.6;
}

.history__heading .line {
  margin: 12px auto 0;
}

/* List */
.history__list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.history__item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 24px 40px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.history__year {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  background: linear-gradient(90deg, #15aef2 0%, #0649c4 90%);
  border-radius: 999px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
}

.history__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  line-height: 1.6;
}

/* ========================================
   Company Info (会社情報)
   ======================================== */
.company-info {
  background: #fff;
  padding: 120px 20px;
}

.company-info__inner {
  max-width: 1080px;
  margin: 0 auto;
}

/* Heading */
.company-info__heading {
  text-align: center;
  margin-bottom: 64px;
}

.company-info__heading-en {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0649c4;
  line-height: 1.6;
}

.company-info__heading-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: #002d37;
  line-height: 1.6;
}

.company-info__heading .line {
  margin: 12px auto 0;
}

/* List */
.company-info__list {
  display: flex;
  flex-direction: column;
}

.company-info__row {
  display: flex;
  gap: 10px;
  padding: 32px 0;
  position: relative;
}

.company-info__row::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #15aef2 0%, #0649c4 24%, #0649c4 24%, #d0d0d0 24%, #d0d0d0 100%);
}

.company-info__row:last-child::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #15aef2 0%, #0649c4 24%, #0649c4 24%, #d0d0d0 24%, #d0d0d0 100%);
}

.company-info__label {
  width: 260px;
  flex-shrink: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #002d37;
  line-height: 1.6;
  letter-spacing: 0.8px;
  position: relative;
}


.company-info__value {
  flex: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #000;
  line-height: 1.6;
}

.company-info__link {
  color: #000;
  text-decoration: underline;
}

.company-info__link:hover {
  text-decoration: none;
}

/* ========================================
   Message (代表メッセージ)
   ======================================== */
.message {
  position: relative;
  background: #d0d0d0;
  overflow: hidden;
}

.message__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.message__bg-photo {
  position: absolute;
  left: 60%;
  bottom: 0;
  width: 34%;
  max-width: 420px;
  object-fit: contain;
}

.message__bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 64%;
  height: 100%;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.message__inner {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  padding: 120px 20px;
}

/* Heading */
.message__heading {
  text-align: center;
  margin-bottom: 64px;
}

.message__heading-en {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0649c4;
  line-height: 1.6;
}

.message__heading-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: #002d37;
  line-height: 1.6;
}

.message__heading .line {
  margin: 12px auto 0;
}

/* Body */
.message__body {
  max-width: 650px;
}

.message__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  line-height: 2.2;
  margin-bottom: 30px;
}

.message__text:last-of-type {
  margin-bottom: 30px;
}

/* Sign */
.message__sign {
  text-align: right;
}

.message__sign-role {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #000;
  line-height: 1.4;
}

.message__sign-name {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #000;
  line-height: 1.4;
}

/* ----------------------------------------
   Hamburger Button (hidden on PC)
   ---------------------------------------- */
.header__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 25px;
  height: 25px;
  position: relative;
  z-index: 101;
  flex-shrink: 0;
}

.header__hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: #333;
  border-radius: 1px;
  position: absolute;
  left: 0;
  transition: transform 0.3s, opacity 0.3s;
}

.header__hamburger-line:nth-child(1) {
  top: 5px;
}

.header__hamburger-line:nth-child(2) {
  top: 12px;
}

.header__hamburger-line:nth-child(3) {
  top: 19px;
}

/* Hamburger open state → X */
.header__hamburger.is-open .header__hamburger-line:nth-child(1) {
  top: 12px;
  transform: rotate(45deg);
  background: #333;
}

.header__hamburger.is-open .header__hamburger-line:nth-child(2) {
  opacity: 0;
}

.header__hamburger.is-open .header__hamburger-line:nth-child(3) {
  top: 12px;
  transform: rotate(-45deg);
  background: #333;
}

/* ----------------------------------------
   SP Menu Overlay (hidden on PC)
   ---------------------------------------- */
.header__sp-menu {
  display: none;
}

/* Body scroll lock */
body.is-menu-open {
  overflow: hidden;
}

/* ========================================
   Responsive (Tablet: max-width 1024px)
   ======================================== */
@media screen and (max-width: 1024px) {

  /* Tablet - Header (hamburger menu) */
  .header__nav {
    display: none;
  }

  .header__hamburger {
    display: block;
  }

  .header__sp-menu {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.97);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    overflow-y: auto;
  }

  .header__sp-menu.is-open {
    opacity: 1;
    visibility: visible;
  }

  .header__sp-menu-nav {
    padding: 100px 40px 60px;
  }

  .header__sp-menu-list {
    margin-bottom: 30px;
  }

  .header__sp-menu-list li {
    border-bottom: 1px solid #e8e8e8;
  }

  .header__sp-menu-link {
    display: block;
    padding: 18px 0;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #002d37;
    transition: opacity 0.3s;
  }

  .header__sp-menu-link:hover {
    opacity: 0.6;
  }

  .header__sp-menu-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .header__sp-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    border-radius: 27px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    transition: opacity 0.3s;
  }

  .header__sp-menu-btn:hover {
    opacity: 0.85;
  }

  .header__sp-menu-btn--contact {
    background: linear-gradient(270deg, #ee542f 5.1%, #f67a34 51.4%, #ffa639 99%);
  }

  .header__sp-menu-btn--service {
    background: linear-gradient(90deg, #16b1f3 5.1%, #0649c4 90%);
  }

  /* Tablet - Footer */
  .footer__nav {
    align-items: flex-start;
  }

  .footer__nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer__nav-btns {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer__nav-btn {
    width: auto;
  }

  /* Tablet - Service */
  .service__header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .service__header-desc {
    text-align: center;
  }

  .service__row-blocks {
    flex-direction: column;
    align-items: center;
    padding: 0 30px 60px;
    gap: 24px;
  }

  .service__row-blocks::before {
    top: auto;
    bottom: 0;
    left: 0 !important;
    right: 0 !important;
    width: 100%;
    height: 50%;
  }

  .service__row-info {
    width: 100%;
    max-width: 500px;
    margin: 0 0 20px;
  }

  .service__row-label {
    margin-bottom: 16px;
  }

  .service__row--beginner .service__row-info {
    order: -1;
  }

  .service__row--beginner .service__row-label {
    text-align: left;
  }

  .service__row--beginner .line {
    margin-left: 0;
  }

  .service__row--beginner .service__row-desc {
    margin: 0 0 60px;
  }

  .service__row-desc {
    color: #000;
    margin-bottom: 60px;
  }

  .service__card {
    width: 100%;
    max-width: 500px;
    margin-bottom: 60px;
  }

  .service__card:last-child {
    margin-bottom: 0;
  }

  /* Tablet - News */
  .news__inner {
    flex-direction: column;
    gap: 24px;
    padding: 0 40px;
  }

  .news__title {
    width: auto;
    padding-top: 0;
  }

  .news__item {
    flex-direction: column;
    gap: 4px;
  }

  /* Tablet - Entry */
  .entry__inner {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 60px 60px;
    gap: 40px;
  }

  .entry__btn {
    width: 100%;
    max-width: 400px;
    align-self: center;
  }
}

/* ========================================
   Responsive (SP: max-width 768px)
   ======================================== */
@media screen and (max-width: 768px) {

  /* ----------------------------------------
     SP - Header
     ---------------------------------------- */
  .header {
    padding: 18px 22px 0;
  }

  .header__inner {
    padding: 14px 20px;
    border-radius: 29px;
  }

  .header__logo-img {
    width: 146px;
  }

  .header__nav {
    display: none;
  }

  .header__hamburger {
    display: block;
  }

  /* SP Menu Overlay */
  .header__sp-menu {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.97);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    overflow-y: auto;
  }

  .header__sp-menu.is-open {
    opacity: 1;
    visibility: visible;
  }

  .header__sp-menu-nav {
    padding: 100px 40px 60px;
  }

  .header__sp-menu-list {
    margin-bottom: 30px;
  }

  .header__sp-menu-list li {
    border-bottom: 1px solid #e8e8e8;
  }

  .header__sp-menu-link {
    display: block;
    padding: 18px 0;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #002d37;
    transition: opacity 0.3s;
  }

  .header__sp-menu-link:hover {
    opacity: 0.6;
  }

  .header__sp-menu-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .header__sp-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    border-radius: 27px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    transition: opacity 0.3s;
  }

  .header__sp-menu-btn:hover {
    opacity: 0.85;
  }

  .header__sp-menu-btn--contact {
    background: linear-gradient(270deg, #ee542f 5.1%, #f67a34 51.4%, #ffa639 99%);
  }

  .header__sp-menu-btn--service {
    background: linear-gradient(90deg, #16b1f3 5.1%, #0649c4 90%);
  }

  /* SP only line break */
  .br-sp {
    display: block;
  }

  .br-pc {
    display: none;
  }

  /* ----------------------------------------
     SP - Key Visual
     ---------------------------------------- */
  .kv {
    padding-bottom: 0;
  }

  .kv__text {
    padding-top: 120px;
  }

  .kv__title {
    font-size: 48px;
    line-height: 1.4;
  }

  .kv__subtitle {
    font-size: 15px;
    margin-top: 10px;
    padding: 0 20px;
  }

  .kv__bg {
    margin-top: 0;
  }

  .kv__swiper,
  .kv__bg-img {
    max-height: 240px;
  }

  .kv__result--pc {
    display: none;
  }

  .kv__result--sp {
    display: block;
  }

  .kv__result-wrap {
    width: fit-content;
    margin: 0 auto;
  }

  /* ----------------------------------------
     SP - Service
     ---------------------------------------- */
  .service {
    padding: 60px 0 0;
  }

  .service__header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 30px;
    margin-bottom: 40px;
  }

  .service__header-title {
    font-size: 60px;
  }

  .service__header-desc {
    font-size: 16px;
    text-align: center;
  }

  .service__row {
    margin-bottom: 60px;
    padding: 0;
  }

  .service__row-blocks {
    flex-direction: column;
    align-items: center;
    padding: 0 0 57px;
    gap: 0;
  }

  /* SP: blue bg strip behind cards area */
  .service__row-blocks::before {
    top: auto;
    bottom: 0;
    left: 0 !important;
    right: 0 !important;
    width: 100%;
  }

  .service__row--experienced .service__row-blocks::before {
    height: 70%;
  }

  .service__row--beginner .service__row-blocks::before {
    height: 70%;
  }

  /* SP: info block */
  .service__row-info {
    width: 100%;
    padding: 0 30px;
    margin: 0 0 100px;
  }

  .service__row-label {
    margin-bottom: 16px;
  }

  .service__row-label-title {
    font-size: 26px;
  }

  .service__row-label-sub {
    font-size: 22px;
  }

  /* SP: beginner label reset to left */
  .service__row--beginner .service__row-label {
    text-align: left;
  }

  .service__row--beginner .line {
    margin-left: 0;
  }

  .service__row--beginner .service__row-info {
    order: -1;
  }

  .service__row--beginner .service__row-desc {
    margin: 0;
  }

  .service__row-desc {
    color: #000;
    max-width: 100%;
    margin-top: 16px;
  }

  /* SP: cards */
  .service__card {
    width: 100%;
    max-width: 330px;
    margin-bottom: 102px;
  }

  .service__card:last-child, .service__card_margin-bottom-0 {
    margin-bottom: 0;
  }

  .service__card-body {
    padding: 30px;
  }

  .service__card-btn {
    width: 100%;
    max-width: 270px;
  }



  /* ----------------------------------------
     SP - Reason
     ---------------------------------------- */
  .reason {
    padding: 60px 0 80px;
  }

  .reason__inner {
    padding: 0 20px;
  }

  .reason__header {
    margin-bottom: 40px;
  }

  .reason__card {
    margin-bottom: 28px;
  }

  .reason__card-label {
    display: none;
  }

  .reason__card-inner {
    padding: 30px 20px;
  }

  .reason__card-title {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .reason__card-content--01 {
    flex-direction: column;
  }

  .reason__card-right {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .reason__card-content--01 {
    flex-direction: column;
  }

  .reason__card-right {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .reason__card-text {
    font-size: 16px;
  }

  .reason02__desc {
    font-size: 14px;
    text-align: left;
  }

  .reason02__bg {
    display: none;
  }

  .reason02__table {
    display: none;
  }

  .reason02__table-sp {
    display: block;
  }

  .reason03__reviews {
    flex-direction: column;
    gap: 30px;
  }

  .reason03__review {
    max-width: 100%;
  }

  .reason03__review-stars {
    width: 80%;
  }

  .reason03__review-text {
    font-size: 14px;
    transform: none;
  }

  .reason03__bottom-bar {
    padding: 14px 20px;
  }

  .reason03__bottom-bar-text {
    font-size: 14px;
  }

  /* ----------------------------------------
     SP - Voice
     ---------------------------------------- */
  .voice {
    padding: 60px 0;
  }

  .voice__swiper {
    padding: 0 40px;
  }

  .voice__swiper-prev,
  .voice__swiper-next {
    width: 36px;
    height: 36px;
  }

  .voice__swiper .swiper-slide {
    width: 320px;
  }

  .voice__card-badge {
    width: 85px;
    height: 85px;
    top: 16px;
    left: 12px;
  }

  .voice__card-badge-label {
    font-size: 11px;
  }

  .voice__card-badge-num {
    font-size: 26px;
  }

  .voice__card-badge-unit {
    font-size: 10px;
  }

  .voice__card-body {
    padding: 20px 28px 24px;
  }

  .voice__card-title {
    font-size: 16px;
  }

  .voice__card-text {
    font-size: 14px;
  }

  .voice__card-name-main {
    font-size: 16px;
  }

  .voice__card-name-age {
    font-size: 12px;
  }

  /* ----------------------------------------
     SP - Staff
     ---------------------------------------- */
  .staff__header-big {
    font-size: 76px;
    top: -10px;
  }

  .staff__header-title {
    font-size: 30px;
    padding-top: 60px;
  }

  .staff__swiper {
    padding: 0 40px;
  }

  .staff__swiper-prev,
  .staff__swiper-next {
    width: 36px;
    height: 36px;
  }

  /* ----------------------------------------
     SP - News
     ---------------------------------------- */
  .news__inner {
    flex-direction: column;
    gap: 24px;
    padding: 0 45px;
  }

  .news__title {
    width: auto;
  }

  .news__title-en {
    font-size: 20px;
  }

  .news__title-ja {
    font-size: 28px;
  }

  .news__item {
    flex-direction: column;
    gap: 4px;
  }

  .news__item-desc {
    font-size: 14px;
  }

  .news__btn {
    justify-content: flex-start;
    margin-top: 20px;
    padding: 0 45px;
  }

  .news__title {
    padding-top: 0;
  }



  /* ----------------------------------------
     SP - Entry
     ---------------------------------------- */
  .entry__inner {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 60px 40px;
    gap: 40px;
  }

  .entry__heading {
    font-size: 22px;
  }

  .entry__btn {
    width: 100%;
    max-width: 325px;
    height: 76px;
    align-self: center;
  }

  .entry__btn-text {
    font-size: 24px;
  }

  /* ----------------------------------------
     SP - Footer
     ---------------------------------------- */
  .footer {
    padding: 80px 0 40px;
  }

  .footer__inner {
    padding: 0 43px;
  }

  .footer__top {
    flex-direction: column;
    gap: 30px;
  }

  .footer__nav-area {
    order: -1;
  }

  .footer__info {
    width: 100%;
  }

  .footer__logo {
    margin-bottom: 30px;
  }

  .footer__nav {
    align-items: flex-start;
    margin-bottom: 30px;
  }

  .footer__nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer__nav-btns {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
  }

  .footer__nav-btn {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
  }

  .footer__services {
    flex-wrap: wrap;
    gap: 12px;
  }

  .footer__service-item {
    width: calc(50% - 6px);
  }

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

  .footer__bottom {
    justify-content: center;
    margin-top: 30px;
  }

  .pagetop {
    right: 16px;
    bottom: 16px;
  }

  .pagetop__img {
    width: 48px;
  }

  /* SP - Page Hero */
  .page-hero {
    padding: 120px 0 50px;
  }

  .page-hero__inner {
    padding: 0 30px;
  }

  .page-hero__title {
    font-size: 48px;
  }

  .page-hero__sub-text {
    font-size: 18px;
  }

  /* SP - Breadcrumb */
  .pankuzu p {
    font-size: 13px;
  }

  /* SP - Advisor */
  .advisor {
    padding: 60px 20px;
  }

  .advisor__moc {
    width: 200px;
    opacity: 0.4;
  }

  .advisor__heading-title {
    font-size: 28px;
  }

  .advisor__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .advisor__card-copy {
    font-size: 16px;
  }

  /* SP - Vision / Value */
  .vision {
    padding: 60px 20px;
  }

  .vision__heading-title {
    font-size: 28px;
  }

  /* VISION card SP */
  .vision__card--vision {
    padding: 24px 20px;
  }

  .vision__card--vision .vision__card-badge {
    position: static;
    transform: none;
    margin-bottom: 12px;
    width: 100px;
    font-size: 14px;
  }

  .vision__card--vision .vision__card-text {
    font-size: 16px;
  }

  /* VALUE card SP */
  .vision__card--value {
    padding: 4px;
  }

  .vision__card--value-inner {
    padding: 24px 20px;
  }

  .vision__card--value .vision__card-badge {
    position: static;
    transform: none;
    margin-bottom: 12px;
    width: 100px;
    font-size: 14px;
  }

  .vision__card--value .vision__card-text {
    font-size: 16px;
    line-height: 2;
  }

  /* ----------------------------------------
     SP - News Archive
     ---------------------------------------- */
  .news-archive {
    padding: 50px 20px 60px;
  }

  .news-archive__item-link {
    padding: 20px 0;
  }

  .news-archive__item-title {
    font-size: 16px;
  }

  .news-archive__item-excerpt {
    font-size: 14px;
  }

  .news-pagination {
    margin-top: 40px;
  }

  .news-pagination__item {
    width: 38px;
    height: 38px;
    font-size: 13px;
  }

  .news-pagination__next {
    width: auto;
    padding: 0 16px;
  }

  /* ----------------------------------------
     SP - News Single
     ---------------------------------------- */
  .news-single {
    padding: 50px 20px 60px;
  }

  .news-single__title {
    font-size: 22px;
    margin-bottom: 30px;
    padding-bottom: 18px;
  }

  .news-single__body {
    font-size: 15px;
  }

  /* SP - Privacy */
  .privacy {
    padding: 60px 20px;
  }

  .privacy__heading {
    font-size: 18px;
  }

  .privacy__text,
  .privacy__list {
    font-size: 14px;
  }

  /* SP - Contact Hero */
  .contact-hero {
    padding: 120px 0 50px;
  }

  .contact-hero__inner {
    padding: 0 30px;
  }

  .contact-hero__title {
    font-size: 48px;
  }

  .contact-hero__sub-text {
    font-size: 18px;
  }

  /* SP - Contact Form */
  .contact-form {
    padding: 60px 20px;
  }

  .contact-form__heading-title {
    font-size: 28px;
  }

  .contact-form__input {
    padding: 14px 20px;
  }

  .contact-form__submit-btn {
    width: 100%;
    max-width: 315px;
    font-size: 20px;
  }

  /* SP - Access */
  .access {
    padding: 60px 20px;
  }

  .access__heading-title {
    font-size: 28px;
  }

  .access__grid {
    flex-direction: column;
    gap: 40px;
  }

  .access__info-text {
    font-size: 14px;
  }

  /* SP - History */
  .history {
    padding: 60px 20px;
  }

  .history__heading-title {
    font-size: 28px;
  }

  .history__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 20px 24px;
  }

  .history__year {
    font-size: 16px;
    padding: 6px 16px;
  }

  .history__text {
    font-size: 14px;
  }

  /* SP - Company Info */
  .company-info {
    padding: 60px 20px;
  }

  .company-info__heading-title {
    font-size: 28px;
  }

  .company-info__row {
    flex-direction: column;
    gap: 8px;
    padding: 24px 0;
  }

  .company-info__label {
    width: auto;
    font-size: 16px;
  }

  .company-info__row::before,
  .company-info__row:last-child::after {
    background: linear-gradient(90deg, #15aef2 0%, #0649c4 30%, #d0d0d0 30%, #d0d0d0 100%);
  }

  .company-info__value {
    font-size: 16px;
  }

  /* SP - Message */
  .message {
    background: #f0f0f0;
  }

  .message__bg-photo {
    position: relative;
    width: 50%;
    max-width: none;
    display: block;
    left: 50%;
    transform: translateX(-50%);
    bottom: auto;
  }

  .message__bg-gradient {
    display: none;
  }

  .message__bg {
    position: relative;
    padding: 40px 0 0;
  }

  .message__bg::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 20%;
    background: linear-gradient(to top, #f0f0f0 0%, transparent 100%);
    pointer-events: none;
  }

  .message__inner {
    padding: 40px 30px 60px;
  }

  .message__heading {
    margin-bottom: 40px;
  }

  .message__heading-title {
    font-size: 28px;
  }

  .message__body {
    max-width: 100%;
  }

  .message__text {
    font-size: 15px;
    line-height: 2;
  }

  .footer__copyright {
    display: none;
  }

  .footer__copyright-sp {
    display: block;
  }

  .footer__bottom {
    justify-content: center;
  }
}

/* ========================================
   Fixed Banner
   ======================================== */
.fixed-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.fixed-banner.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}

.fixed-banner__link {
  display: block;
}

.fixed-banner__img {
  display: block;
  width: 300px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.fixed-banner__close {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #333;
  border: 2px solid #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: background 0.2s ease;
}

.fixed-banner__close:hover {
  background: #555;
}

.fixed-banner__close::before,
.fixed-banner__close::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 2px;
  background: #fff;
}

.fixed-banner__close::before {
  transform: rotate(45deg);
}

.fixed-banner__close::after {
  transform: rotate(-45deg);
}

@media (max-width: 768px) {
  .fixed-banner {
    right: 12px;
    bottom: 12px;
  }

  .fixed-banner__img {
    width: 216px;
  }

  .fixed-banner__close {
    width: 28px;
    height: 28px;
    top: -10px;
    right: -10px;
  }

  .fixed-banner__close::before,
  .fixed-banner__close::after {
    width: 12px;
  }
}
