@charset "UTF-8";

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

:root {
  --color-black: #505050;
  --color-gray: #a0a0a0;
  --color-white: #ffffff;
  --color-bg-light: #f7f7f8;
  --color-bg-dark: #353535;
  --font-en: "Marcellus", serif;
  --font-ja: "Noto Sans JP", sans-serif;
}

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

body {
  font-family: var(--font-ja);
  color: var(--color-black);
  background-color: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ==============================
   Header
============================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.97);
  z-index: 100;
}

.header__inner {
  max-width: 1366px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 16px 24px 16px 48px;
}

.header__logo {
  display: flex;
  flex-direction: column;
  color: var(--color-black);
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1.2;
}

.header__logo-en {
  font-family: var(--font-en);
  font-size: 24px;
}

.header__logo-ja {
  font-family: var(--font-ja);
  font-size: 11px;
}

.header__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  min-width: 0;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
  justify-content: space-between;
}

.header__nav-link {
  font-size: 16px;
  color: var(--color-black);
  letter-spacing: 0.32px;
  white-space: nowrap;
}

.header__buttons {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  margin-left: 24px;
}

.header__btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: 999px;
  color: var(--color-white);
  font-family: var(--font-ja);
  font-weight: 500;
  font-size: 14px;
  white-space: nowrap;
  height: 49px;
}

.header__btn--contact {
  background-color: #858585;
}

.header__btn--recruit {
  background-color: var(--color-black);
}

.header__btn-icon {
  width: 16px;
  height: 13px;
}

.header__btn-icon--recruit {
  height: 20px;
}

/* ==============================
   Sub FV (下層ページ共通)
============================== */
.sub-fv {
  position: relative;
  width: 100%;
  height: 456px;
  overflow: hidden;
}

.sub-fv__bg {
  position: absolute;
  inset: 0;
}

.sub-fv__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sub-fv__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.44);
}

.sub-fv__text {
  position: absolute;
  top: calc(50% + 44px);
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--color-white);
  line-height: 1.2;
}

.sub-fv__heading {
  font-family: var(--font-en);
  font-size: 46px;
  font-weight: 400;
  letter-spacing: 4.6px;
}

.sub-fv__subheading {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 2.24px;
}

/* ==============================
   FV (First View / Hero)
============================== */
.fv {
  position: relative;
  width: 100%;
  height: 740px;
  overflow: hidden;
}

.fv__slides {
  position: absolute;
  inset: 0;
}

.fv__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.fv__slide.is-active {
  opacity: 1;
}

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

.fv__slides::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140%;
  height: 320px;
  background: rgba(0, 0, 0, 0.26);
  filter: blur(60px);
  z-index: 1;
}

.fv__text {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--color-white);
  text-shadow: 0 0 14px rgba(0, 56, 99, 0.25);
  white-space: nowrap;
  z-index: 2;
}

.fv__subtitle {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.56px;
}

.fv__title {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.56px;
}

/* ==============================
   Message
============================== */
.message {
  padding-top: 120px;
}

.message__inner {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 143px;
}

.message__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.message__heading {
  font-family: var(--font-en);
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-black);
}

.message__body {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.message__lead {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
}

.message__desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.message__img {
  flex-shrink: 0;
  width: 590px;
  max-width: 100%;
  height: 310px;
  border-radius: 8px;
  overflow: hidden;
}

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

.message__bg-img {
  margin-top: 80px;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

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

/* ==============================
   Point
============================== */
.point {
  padding: 120px 143px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.point__title-area {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
}

.point__line {
  flex: 1;
  height: 1px;
  background-color: var(--color-gray);
}

.point__title-wrap {
  text-align: center;
  flex-shrink: 0;
}

.point__heading {
  font-family: var(--font-en);
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-black);
}

.point__subheading {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-black);
}

.point__list {
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
  width: 100%;
}

.point__item {
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.point__item:nth-child(even) {
  flex-direction: row-reverse;
}

.point__item-img {
  width: 544px;
  max-width: 100%;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 1;
}

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

.point__item-img--placeholder {
  background-color: #d9dce3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.point__item-img--placeholder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.point__item-text {
  width: 380px;
  max-width: 100%;
  flex-shrink: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.point__item-number {
  font-family: var(--font-en);
  font-size: 24px;
  line-height: 1.6;
  letter-spacing: 0.96px;
  color: var(--color-gray);
}

.point__item-title {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-black);
}

.point__item-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-black);
}

/* ==============================
   Access
============================== */
.access {
  padding: 120px 143px;
  background-color: var(--color-bg-light);
}

.access__inner {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.access__info {
  flex-shrink: 0;
  width: 400px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.access__heading {
  font-family: var(--font-en);
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-black);
}

.access__subheading {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-black);
}

.access__dl {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.access__dl-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.access__dt {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-black);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--color-gray);
  width: fit-content;
}

.access__dd {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--color-black);
}

.access__map {
  flex: 1;
  min-width: 0;
  width: 100%;
}

.access__map iframe {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  display: block;
}

/* ==============================
   Q&A
============================== */
.qa {
  background-color: var(--color-bg-light);
}

.qa__inner {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  padding: 100px 40px 70px 143px;
}

.qa__title-area {
  flex-shrink: 0;
}

.qa__heading {
  font-family: var(--font-en);
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-black);
}

.qa__subheading {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-black);
  text-align: center;
}

.qa__content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 42px;
}

.qa__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.qa__item {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 24px 40px;
  background-color: var(--color-white);
  border-radius: 6px 0 0 6px;
}

.qa__item-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.qa__question {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.qa__label {
  font-family: var(--font-en);
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: 0.88px;
  color: var(--color-gray);
  white-space: nowrap;
  flex-shrink: 0;
}

.qa__question-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-gray);
  flex: 1;
  min-width: 0;
}

.qa__answer {
  padding-left: 52px;
}

.qa__answer-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-black);
}

.qa__toggle {
  width: 33px;
  height: 33px;
  flex-shrink: 0;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}

.qa__toggle img {
  width: 100%;
  height: 100%;
}

/* ==============================
   MORE Button (共通)
============================== */
.btn-more {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 270px;
  height: 56px;
  border: 2px solid var(--color-gray);
  position: relative;
}

.btn-more__text {
  font-family: var(--font-en);
  font-size: 22px;
  line-height: 1.6;
  color: var(--color-gray);
  text-align: center;
}

.btn-more__arrow {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  height: 1px;
  background: #A0A0A0;
}

.btn-more__arrow img {
  width: 100%;
}

/* ==============================
   News
============================== */
.news {
  padding: 120px 143px;
}

.news__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.news__heading {
  font-family: var(--font-en);
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-black);
}

.news__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}

.news__list {
  display: flex;
  gap: 80px;
  max-width: 1080px;
  width: 100%;
}

.news__item {
  flex: 1;
  min-width: 0;
  display: flex;
  text-decoration: none;
  color: inherit;
  flex-direction: column;
  gap: 16px;
  border-radius: 6px;
}

.news__item-img {
  width: 100%;
  height: 210px;
  border-radius: 6px;
  overflow: hidden;
}

.news__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.news__item:hover .news__item-img img {
  transform: scale(1.05);
}

.news__item:hover .news__item-title {
  color: var(--color-gray);
}

.news__item-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.news__item-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.news__item-title {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-black);
}

.news__item-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-black);
}

.news__item-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.news__item-category {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  color: var(--color-white);
  background-color: var(--color-gray);
  padding: 3px 10px;
  border-radius: 2px;
}

.news__item-date {
  font-family: var(--font-en);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-black);
  flex: 1;
}

.news__item-link {
  width: 33px;
  height: 33px;
  flex-shrink: 0;
}

.news__item-link img {
  width: 100%;
  height: 100%;
}

/* ==============================
   Gallery
============================== */
.gallery {
  display: flex;
  overflow: hidden;
}

.gallery__item {
  flex: 1;
  height: 360px;
  overflow: hidden;
}

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

/* ==============================
   CTA (Contact)
============================== */
.cta {
  background-color: var(--color-black);
}

.cta__inner {
  max-width: 1366px;
  margin: 0 auto;
  padding: 80px 143px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.cta__title-area {
  text-align: center;
  color: var(--color-white);
}

.cta__heading {
  font-family: var(--font-en);
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.96px;
}

.cta__subheading {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 12px;
}

.cta__cards {
  display: flex;
  gap: 60px;
  justify-content: center;
  width: 100%;
}

.cta__card {
  flex: 1;
  background-color: #f2f2f2;
  display: flex;
  flex-direction: column;
}

.cta__card-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 26px 0 22px;
}

.cta__card-icon {
  width: 70px;
  height: 60px;
}

.cta__card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cta__card-label {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: #6b6b6b;
  text-align: center;
}

.cta__card-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background-color: #000000;
  color: var(--color-white);
  flex: 1;
}

a.cta__card-bottom {
  transition: opacity 0.3s;
}

a.cta__card-bottom:hover {
  opacity: 0.8;
}

.cta__card-info {
  flex: 1;
  text-align: center;
}

.cta__card-action {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
}

.cta__card-note {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
}

.cta__card-tel {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}

.cta__card-tel-number {
  font-size: 21px;
}

.cta__card-arrow {
  width: 33px;
  height: 33px;
  flex-shrink: 0;
}

/* ==============================
   Footer
============================== */
.footer {
  background-color: var(--color-bg-dark);
  color: var(--color-white);
  overflow: hidden;
}

.footer__inner {
  max-width: 1366px;
  margin: 0 auto;
  padding: 60px 143px 40px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.footer__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__brand-sub {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
}

.footer__brand-name {
  font-size: 27px;
  font-weight: 500;
  line-height: 1.4;
}

.footer__address {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.footer__address p {
  margin: 0;
}

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

.footer__nav-list {
  display: flex;
  gap: 30px;
}

.footer__nav-link {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-white);
}

.footer__buttons {
  display: flex;
  gap: 16px;
}

.footer__btn {
  display: flex;
  align-items: center;
  gap: 18px;
  background-color: var(--color-white);
  padding: 4px 8px 4px 4px;
}

.footer__btn-img {
  width: 130px;
  height: 100px;
  overflow: hidden;
  flex-shrink: 0;
}

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

.footer__btn-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__btn-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
  min-width: 108px;
}

.footer__btn-en {
  font-family: var(--font-en);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.24px;
  color: var(--color-black);
}

.footer__btn-ja {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.32px;
  color: var(--color-black);
}

.footer__btn-arrow {
  width: 26px;
  height: 26px;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__copyright {
  font-family: var(--font-en);
  font-size: 16px;
  line-height: 1.6;
}

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

.footer__legal-link {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-white);
}

.footer__legal-divider {
  width: 1px;
  height: 14px;
  background-color: var(--color-white);
}

/* ==============================
   Hamburger Menu
============================== */
.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 110;
  flex-shrink: 0;
}

.header__hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-black);
  transition: transform 0.3s, opacity 0.3s;
}

.header__hamburger.is-active .header__hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

.header__hamburger.is-active .header__hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

body.is-nav-open {
  overflow: hidden;
}

/* ==============================
   Tablet (768px - 1024px)
============================== */
@media (max-width: 1024px) {

  /* --- Sub FV --- */
  .sub-fv {
    height: 360px;
  }

  .sub-fv__heading {
    font-size: 36px;
  }

  .sub-fv__subheading {
    font-size: 22px;
  }

  /* --- Header --- */
  .header__inner {
    gap: 0;
    padding: 12px 20px;
    justify-content: space-between;
  }

  .header__hamburger {
    display: flex;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 80px 40px 40px;
    transition: right 0.3s ease;
    overflow-y: auto;
  }

  .header__nav.is-open {
    right: 0;
  }

  .header__nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    flex: initial;
  }

  .header__nav-item {
    width: 100%;
    border-bottom: 1px solid #e8e8e8;
  }

  .header__nav-link {
    display: block;
    padding: 16px 0;
    font-size: 15px;
  }

  .header__buttons {
    margin-left: 0;
    margin-top: 24px;
    flex-direction: column;
    gap: 12px;
  }

  .header__btn {
    justify-content: center;
    width: 100%;
  }

  /* --- FV --- */
  .fv {
    height: 500px;
  }

  .fv__subtitle,
  .fv__title {
    font-size: 22px;
  }

  /* --- Message --- */
  .message {
    padding-top: 80px;
  }

  .message__inner {
    padding: 0 40px;
    flex-direction: column;
    gap: 40px;
  }

  .message__img {
    width: 100%;
    height: 280px;
  }

  .message__heading {
    font-size: 36px;
  }

  .message__bg-img {
    margin-top: 60px;
    height: 300px;
  }

  /* --- Point --- */
  .point {
    padding: 80px 40px;
  }

  .point__title-area {
    width: 100%;
  }

  .point__heading {
    font-size: 36px;
  }

  .point__item {
    flex-direction: column;
    gap: 24px;
  }

  .point__item:nth-child(even) {
    flex-direction: column;
  }

  .point__item-img {
    width: 100%;
  }

  .point__item-text {
    width: 100%;
  }

  /* --- Access --- */
  .access {
    padding: 80px 40px;
  }

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

  .access__info {
    width: 100%;
    gap: 30px;
  }

  .access__heading {
    font-size: 36px;
  }

  .access__map iframe {
    height: 350px;
  }

  /* --- Q&A --- */
  .qa__inner {
    flex-direction: column;
    gap: 30px;
    padding: 80px 40px 60px;
  }

  .qa__heading {
    font-size: 36px;
  }

  .qa__item {
    gap: 20px;
    padding: 20px 24px;
  }

  .qa__answer {
    padding-left: 0;
  }

  /* --- News --- */
  .news {
    padding: 80px 40px;
  }

  .news__heading {
    font-size: 36px;
  }

  .news__list {
    width: 100%;
    gap: 30px;
  }

  /* --- Gallery --- */
  .gallery__item {
    height: 240px;
  }

  /* --- CTA --- */
  .cta__inner {
    padding: 60px 40px;
  }

  .cta__heading {
    font-size: 36px;
  }

  .cta__cards {
    gap: 30px;
  }

  /* --- Footer --- */
  .footer__inner {
    padding: 40px 40px 30px;
    gap: 32px;
  }

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

  .footer__nav-area {
    align-items: flex-start;
  }

  .footer__nav-list {
    flex-wrap: wrap;
    gap: 16px 24px;
  }

  .footer__buttons {
    flex-wrap: wrap;
  }
}

/* ==============================
   Mobile (~ 767px)
============================== */
@media (max-width: 767px) {

  /* --- Sub FV --- */
  .sub-fv {
    height: 280px;
  }

  .sub-fv__text {
    top: calc(50% + 28px);
  }

  .sub-fv__heading {
    font-size: 28px;
    letter-spacing: 2.8px;
  }

  .sub-fv__subheading {
    font-size: 18px;
    letter-spacing: 1.44px;
  }

  /* --- Header --- */
  .header__inner {
    padding: 10px 16px;
  }

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

  .header__logo-ja {
    font-size: 10px;
  }

  .header__nav {
    width: 100%;
    right: -100%;
    padding: 70px 24px 32px;
  }

  .header__nav-link {
    font-size: 14px;
  }

  .header__btn {
    height: 44px;
    padding: 12px 24px;
    font-size: 13px;
  }

  /* --- FV --- */
  .fv {
    height: auto;
    aspect-ratio: 1 / 1;
    min-height: auto;
    max-height: none;
  }

  .fv__text {
    bottom: 48px;
  }

  .fv__subtitle,
  .fv__title {
    font-size: 18px;
    letter-spacing: 0.36px;
  }

  .fv__bg::after {
    height: 200px;
  }

  /* --- Message --- */
  .message {
    padding-top: 60px;
  }

  .message__inner {
    padding: 0 20px;
    gap: 28px;
  }

  .message__heading {
    font-size: 28px;
  }

  .message__body {
    gap: 20px;
  }

  .message__lead {
    font-size: 15px;
  }

  .message__desc {
    font-size: 14px;
  }

  .message__img {
    height: 200px;
    border-radius: 6px;
  }

  .message__bg-img {
    margin-top: 40px;
    height: 200px;
  }

  /* --- Point --- */
  .point {
    padding: 60px 20px;
    gap: 24px;
  }

  .point__heading {
    font-size: 28px;
  }

  .point__subheading {
    font-size: 13px;
  }

  .point__list {
    gap: 40px;
  }

  .point__item {
    gap: 20px;
  }

  .point__item-img {
    border-radius: 6px;
  }

  .point__item-text {
    gap: 12px;
  }

  .point__item-number {
    font-size: 20px;
  }

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

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

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

  .access__inner {
    gap: 28px;
  }

  .access__info {
    gap: 24px;
  }

  .access__heading {
    font-size: 28px;
  }

  .access__subheading {
    font-size: 13px;
  }

  .access__dl {
    gap: 20px;
  }

  .access__dt {
    font-size: 13px;
  }

  .access__dd {
    font-size: 14px;
  }

  .access__map iframe {
    height: 260px;
    border-radius: 6px;
  }

  /* --- Q&A --- */
  .qa__inner {
    padding: 60px 20px 48px;
    gap: 24px;
  }

  .qa__heading {
    font-size: 28px;
  }

  .qa__subheading {
    font-size: 13px;
    text-align: left;
  }

  .qa__content {
    gap: 32px;
  }

  .qa__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    border-radius: 6px;
    position: relative;
  }

  .qa__toggle {
    position: absolute;
    top: 20px;
    right: 16px;
    width: 28px;
    height: 28px;
  }

  .qa__question {
    gap: 12px;
    padding-right: 40px;
  }

  .qa__label {
    font-size: 18px;
  }

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

  .qa__answer {
    padding-left: 0;
  }

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

  /* --- MORE Button --- */
  .btn-more {
    width: 220px;
    height: 48px;
  }

  .btn-more__text {
    font-size: 18px;
  }

  .btn-more__arrow {
    right: -30px;
    width: 60px;
  }

  /* --- News --- */
  .news {
    padding: 60px 20px;
  }

  .news__inner {
    gap: 24px;
  }

  .news__heading {
    font-size: 28px;
  }

  .news__content {
    gap: 40px;
  }

  .news__list {
    flex-direction: column;
    gap: 32px;
    width: 100%;
  }

  .news__item {
    flex-direction: row;
    gap: 16px;
  }

  .news__item-img {
    width: 120px;
    height: 90px;
    flex-shrink: 0;
    border-radius: 4px;
  }

  .news__item-body {
    gap: 6px;
    flex: 1;
    min-width: 0;
  }

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

  .news__item-desc {
    font-size: 13px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .news__item-category {
    font-size: 11px;
    padding: 2px 8px;
  }

  .news__item-date {
    font-size: 13px;
  }

  .news__item-link {
    width: 26px;
    height: 26px;
  }

  /* --- Gallery --- */
  .gallery {
    flex-direction: column;
  }

  .gallery__item {
    height: 200px;
  }

  /* --- CTA --- */
  .cta__inner {
    padding: 48px 20px;
    gap: 24px;
  }

  .cta__heading {
    font-size: 28px;
  }

  .cta__subheading {
    font-size: 14px;
    margin-top: 8px;
  }

  .cta__cards {
    flex-direction: column;
    gap: 20px;
  }

  .cta__card-top {
    padding: 20px 0 16px;
    gap: 8px;
  }

  .cta__card-icon {
    width: 56px;
    height: 48px;
  }

  .cta__card-label {
    font-size: 16px;
  }

  .cta__card-action {
    font-size: 15px;
  }

  .cta__card-note {
    font-size: 13px;
  }

  .cta__card-tel {
    font-size: 13px;
  }

  .cta__card-tel-number {
    font-size: 18px;
  }

  .cta__card-arrow {
    width: 28px;
    height: 28px;
  }

  /* --- Footer --- */
  .footer__inner {
    padding: 32px 20px 24px;
    gap: 28px;
  }

  .footer__brand-sub {
    font-size: 12px;
  }

  .footer__brand-name {
    font-size: 20px;
  }

  .footer__address {
    font-size: 13px;
  }

  .footer__nav-list {
    gap: 12px 20px;
  }

  .footer__nav-link {
    font-size: 13px;
  }

  .footer__buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .footer__btn {
    width: 100%;
  }

  .footer__btn-img {
    width: 100px;
    height: 76px;
  }

  .footer__bottom {
    flex-direction: column-reverse;
    align-items: center;
    gap: 16px;
  }

  .footer__copyright {
    font-size: 12px;
  }

  .footer__legal {
    gap: 12px;
  }

  .footer__legal-link {
    font-size: 12px;
  }
}

/* ==============================
   Scroll Fade-in
============================== */
.js-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ==============================
   Responsive BR helpers
============================== */
.br-sp {
  display: none;
}
.br-pc {
  display: inline;
}

@media (max-width: 767px) {
  .br-sp {
    display: inline;
  }
  .br-pc {
    display: none;
  }
}
