@charset "UTF-8";

/* =========================================
   Variables & Mixins
   ========================================= */
:root {
  --font-family-base: "Zen Old Mincho", serif;
  --font-family-sans: "Noto Sans JP", sans-serif;
  --font-family-en: "Roboto", sans-serif;

  --color-text-main: #141414;
  --color-text-gray: #333333;
  --color-text-light: #aaa;
  --color-bg-light: #f0efed;
  --color-primary: #354b38;
  /* 抹茶色系のグリーン */
  --color-accent: #c7a252;
  /* ゴールド系 */
  --color-accent-dark: #b89348;
  --color-border: #b3b2b1;
  --color-white: #ffffff;

  --width-sidebar: 156px;
  --font-size-base: 16px;
  --line-height-base: 2;
  --tracking-wide: 0.1em;
}

/* =========================================
    Scroll Animation
========================================= */
.js-anim {
  opacity: 0;
  visibility: hidden;
  transform: translateY(80px);
  transition: opacity 2s cubic-bezier(0.22, 1, 0.36, 1), transform 2s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.js-anim.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1) !important;
}

.js-anim img {
  filter: blur(12px);
  transform: translateY(24px);
  transition: filter 2s cubic-bezier(0.22, 1, 0.36, 1), transform 2s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: filter, transform;
}

.js-anim.is-visible img {
  filter: blur(0);
  transform: translateY(0);
}

.fade-up {
  transform: translateY(80px);
}

.fade-in {
  transform: translateY(0) scale(1.02);
}

/* 左から右へ徐々に移動しながら表示されるエフェクト */
.slide-right {
  transform: translateX(-60px);
}

/* 右から左へ徐々に移動しながら表示されるエフェクト */
.slide-left {
  transform: translateX(60px);
}

.delay-100 {
  transition-delay: 0.15s;
}

.delay-200 {
  transition-delay: 0.3s;
}

.delay-300 {
  transition-delay: 0.45s;
}

.delay-400 {
  transition-delay: 0.6s;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family-base);
  color: var(--color-text-main);
  line-height: var(--line-height-base);
  letter-spacing: var(--tracking-wide);
  background-color: var(--color-white);
  background-image: url(../images/contents_back.png);
  background-size: 50%;
  background-position: fixed;
  background-repeat: repeat;
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.7;
}

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

ul,
ol {
  list-style: none;
}

/* =========================================
   Layout
   ========================================= */
.l-container {
  display: flex;
  min-height: 100vh;
  position: relative;
  width: 100%;
  overflow-x: hidden;
}

/* Header / Sidebar */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--width-sidebar);
  height: 100vh;
  background-color: var(--color-white);
  border-right: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 100;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.l-header__inner {
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

/* PCロゴは常に表示、SPロゴは常に非表示 */
.l-header__logo-pc {
  display: block;
  padding: 0 15px;

  img {
    max-width: 70px;
  }
}

.l-header__logo-sp {
  display: none;
}

.l-header__hamburger {
  width: 60px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  cursor: pointer;
  margin: auto 0;
  position: relative;
  z-index: 100;
}

.l-header__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #030304;
  transition: all 0.3s ease;
}

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

.l-header__hamburger.is-active span:nth-of-type(2) {
  transform: translateY(-9px) rotate(-45deg);
}

.l-nav-full {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #f7f7f7;
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.l-nav-full.is-active {
  opacity: 1;
  visibility: visible;
}

.l-nav-full__logo,
.l-nav-full__logo-right {
  display: none;
}

.l-nav-full__inner {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: var(--width-sidebar);
}

.l-nav-full__list {
  display: flex;
  flex-direction: row-reverse;
  gap: clamp(40px, 6vw, 100px);
}

.l-nav-full__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 160px;
  text-decoration: none;
  color: #030304;
}

.l-nav-full__link .jp {
  writing-mode: vertical-rl;
  font-family: var(--font-family-base);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.4em;
}

.l-nav-full__link .en {
  font-family: var(--font-family-en);
  font-size: 14px;
}

.l-header__info {
  margin-top: auto;
  margin-bottom: 24px;
  text-align: center;
  font-size: 14px;
}

.l-header__info-block {
  margin-bottom: 16px;
}

.l-header__info-title {
  color: #3f5919;
  margin-bottom: 4px;
  line-height: 1.7;
}

.l-header__info-line {
  border: none;
  height: 1px;
  background-color: #d9d9d9;
  margin: 16px 0;
}

.l-header__map-btn {
  font-family: var(--font-family-en);
  font-size: 14px;
  display: block;
  width: 100%;
  text-align: center;
}

/* Main */
.l-main {
  flex: 1;
  margin-left: var(--width-sidebar);
  width: calc(100% - var(--width-sidebar));
}


/* =========================================
   Components
   ========================================= */

/* Section Headers */
.p-section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-bottom: 80px;
}

.p-section-header__jp {
  writing-mode: vertical-rl;
  font-size: 40px;
  font-weight: 500;
  letter-spacing: 0.2em;
}

.p-section-header__en {
  font-family: var(--font-family-base);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text-gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.p-section-header--white .p-section-header__jp,
.p-section-header--white .p-section-header__en {
  color: var(--color-white);
}

/* Base Buttons */
.c-btn-viewmore {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 4px;
  font-size: 16px;
  font-family: var(--font-family-en);
  text-transform: uppercase;
  gap: 8px;
  padding-left: 36px;
  padding-right: 36px;
}

.c-btn-viewmore span {
  font-size: 12px;
  opacity: 0.8;
}

/* =========================================
   Pages
   ========================================= */

/* MV */
.p-mv {
  position: relative;
  width: 100%;
  height: 100svh;
  max-height: 1200px;
  overflow: hidden;
}

.p-mv__visual {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-mv__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* SP用MVはデフォルト非表示 */
.p-mv__bg--sp {
  display: none;
}

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

.p-mv__bg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
}

.p-mv__vertical-text {
  position: absolute;
  top: calc(50% - 4em);
  right: 10%;
  line-height: 1.7em;
  transform: translateY(-50%);
  z-index: 2;
  writing-mode: vertical-rl;
  color: var(--color-white);
  font-size: 50px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.p-mv__lead {
  position: absolute;
  bottom: 80px;
  left: 100px;
  z-index: 5;
  color: var(--color-white);
  font-size: 22px;
  font-weight: 500;
  line-height: 2.4;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

/* Concept */
.p-concept {
  position: relative;
  padding: 160px 0;
  height: 963px;
}

.p-concept__bg {
  position: absolute;
  top: 160px;
  left: 0;
  width: calc(100% - 450px);
  height: 803px;
}

.p-concept__bg--sp {
  display: none;
}

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

.p-concept__inner {
  position: absolute;
  top: 160px;
  right: 0;
  width: 450px;
  height: 803px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.p-concept__title {
  writing-mode: vertical-rl;
  font-size: 32px;
  line-height: 2;
  font-weight: 500;
}

.p-concept__title span {
  display: block;
}

.p-concept__title span:nth-child(1) {
  padding-top: 0;
}

.p-concept__title span:nth-child(2) {
  padding-top: 80px;
}

.p-concept__title span:nth-child(3) {
  padding-top: 160px;
}

.p-concept__title span:nth-child(4) {
  padding-top: 240px;
}

/* News */
.p-news {
  padding: 160px 0 80px;
}

.p-news__inner {
  display: flex;
  max-width: 1440px;
  margin: 0 auto;
  gap: 60px;
  padding: 0 64px 0 100px;
}

.p-news__body-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.p-news__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.p-news__item {
  width: 100%;
}

.p-news__thumb {
  max-height: 210px;
  overflow: hidden;
  margin-bottom: 12px;
}

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

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

.p-news__date {
  font-family: var(--font-family-en);
  color: var(--color-accent);
  font-size: 16px;
  display: block;
  margin-bottom: 8px;
}

.p-news__title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
}

.p-news__excerpt {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-main);
  opacity: 0.8;
}

.p-news__btn-wrap {
  align-self: flex-end;
}

.c-btn-viewmore {
  display: inline-block;
  font-family: var(--font-family-en);
  font-size: 16px;
  color: var(--color-text-main);
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.c-btn-viewmore::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform-origin: right bottom;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.c-btn-viewmore:hover {
  color: #B89348;
}

.c-btn-viewmore:hover::after {
  transform: scaleX(0);
  opacity: 0;
}

.c-btn-viewmore--pdf {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.c-btn-viewmore--pdf img {
  width: auto;
  height: 24px;
  /* テキストサイズに合わせて縮小・適宜調整可 */
}

/* Speciality */
.p-speciality {
  padding: 160px 0;
}

.p-speciality__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  gap: 80px;
  padding: 0 64px;
}

.p-speciality__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 120px;
}

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

.p-speciality__block--reverse {
  flex-direction: row-reverse;
}

.p-speciality__images {
  flex: 0 0 45%;
  position: relative;
}

.p-speciality__img-main {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* 趣ある空間用の横幅拡大型 (.p-concept 類似) */
.p-speciality__wide-container {
  width: 100%;
  position: relative;
  height: 50vw;
  max-height: 800px;
  margin-top: 160px;
  min-height: 700px;
}

.p-speciality__block--wide-img {
  width: 100%;
  height: 100%;
  display: flex;
}

.p-speciality__block--wide-img .p-speciality__images {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 450px);
  height: 100%;
}

.p-speciality__block--wide-img .p-speciality__text {
  position: absolute;
  top: 0;
  right: 0;
  width: 450px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 60px;
  padding-top: 80px;
}

/* クロスフェード */
.p-speciality__images--crossfade {
  position: relative;
  aspect-ratio: 4 / 3;
  /* 画像の比率により調整 */
  overflow: hidden;
}

.crossfade-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: crossfade 12s infinite;
}

.crossfade-img:nth-child(1) {
  animation-delay: 0s;
}

.crossfade-img:nth-child(2) {
  animation-delay: 4s;
}

.crossfade-img:nth-child(3) {
  animation-delay: 8s;
}

@keyframes crossfade {
  0% {
    opacity: 0;
  }

  8.33% {
    opacity: 1;
  }

  33.33% {
    opacity: 1;
  }

  41.66% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

/* インジケーター */
.p-speciality__indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.indicator-bar {
  width: 48px;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.4);
  position: relative;
  overflow: hidden;
}

.indicator-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transform: translateX(-100%);
  animation: indicator-progress 12s infinite;
}

.indicator-bar:nth-child(1)::after {
  animation-delay: 0s;
}

.indicator-bar:nth-child(2)::after {
  animation-delay: 4s;
}

.indicator-bar:nth-child(3)::after {
  animation-delay: 8s;
}

@keyframes indicator-progress {
  0% {
    transform: translateX(-100%);
    opacity: 1;
  }

  33.33% {
    transform: translateX(0);
    opacity: 1;
  }

  33.34% {
    transform: translateX(0);
    opacity: 0;
  }

  100% {
    transform: translateX(-100%);
    opacity: 0;
  }
}

.p-speciality__text {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.p-speciality__subtitle {
  writing-mode: vertical-rl;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.2em;
}

.p-speciality__list {
  flex: 1;
  margin-top: 20px;
}

.p-speciality__list li {
  border-bottom: 1px solid var(--color-border);
  padding: 16px 0;
  font-size: 16px;
}

.p-speciality__list li span {
  display: block;
  font-size: 14px;
  opacity: 0.8;
  margin-top: 8px;
  padding-left: 1em;
}


/* Menu */
.p-menu {
  padding: 160px 0;
}

.p-menu__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 64px;
}

/* 富士茶屋の楽しみ方 */
.p-menu__intro {
  display: flex;
  gap: 60px;
  width: 100%;
  margin-bottom: 120px;
  align-items: flex-start;
}

.p-menu__intro-left {
  flex: 0 0 380px;
  display: flex;
  flex-direction: column;
}

.p-menu__intro-right {
  flex: 1;
}

.p-menu__intro-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  margin-bottom: 40px;
}

.p-menu__intro-text h3 {
  writing-mode: horizontal-tb;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.p-menu__intro-list {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.p-menu__intro-list li {
  padding: 16px;
  border-bottom: 1px solid var(--color-border);
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.p-menu__intro-list li::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent-dark);
  transition: width 0.3s ease;
}

.p-menu__intro-list li.is-active::after {
  width: 100%;
}

.p-menu__intro-list li.is-active {
  color: var(--color-accent-dark);
  font-weight: 700;
}

.p-menu__intro-detail {
  align-self: flex-end;
  width: 100%;
  display: none;
  flex-direction: column;
  gap: 20px;
}

.p-menu__intro-detail.is-active {
  display: flex;
  animation: tabTextFadeUp 0.6s ease-out forwards;
}

.js-tab-img {
  display: none;
  overflow: hidden;
  /* 画像の拡大が親からはみ出さないように */
}

.js-tab-img.is-active {
  display: block;
  animation: tabImgFadeScale 0.8s ease-out forwards;
}

@keyframes tabTextFadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes tabImgFadeScale {
  0% {
    opacity: 0;
    transform: scale(1.05);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.p-menu__intro-title-wrap h4 {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-accent-dark);
}

.p-menu__intro-title-wrap .price {
  text-align: right;
  margin-bottom: 10px;
}

.p-menu__intro-title-wrap .price .num {
  font-size: 24px;
  margin-right: 4px;
}

.p-menu__intro-title-wrap .price .tax {
  font-size: 12px;
}

.p-menu__intro-items {
  font-size: 14px;
  line-height: 1.8;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.p-menu__intro-img {
  flex: 1;
}

.p-menu__intro-img img {
  width: 100%;
  height: 771px;
  object-fit: cover;
}

/* カテゴリ一覧 */
.p-menu__categories {
  display: flex;
  gap: 40px;
  width: 100%;
  justify-content: center;
}

.p-menu__category {
  flex: 0 0 31%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.p-menu__cat-thumb {
  width: 100%;
  height: 310px;
  background-color: var(--color-bg-light);
  overflow: hidden;
}

.p-menu__cat-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-menu__cat-content {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 8px;
}

.p-menu__cat-content h3 {
  font-size: 32px;
  font-weight: 500;
}

.p-menu__cat-desc {
  font-size: 16px;
  line-height: 1.8;
  min-height: 100px;
}

.p-menu__cat-items {
  font-size: 14px;
  line-height: 1.8;
  padding-bottom: 16px;
  flex: 1;
}

.p-menu__category .c-btn-viewmore {
  align-self: flex-end;
}


/* Story */
.p-story {
  position: relative;
  padding: 160px 0;
  min-height: 1200px;
  color: var(--color-white);
  display: flex;
  align-items: flex-start;
}

.p-story__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.p-story__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(20px);
  /* 初期状態で深めにぼかす */
  transform: scale(1.1);
  /* わずかに拡大して奥行きを出す */
  transition: filter 4.0s cubic-bezier(0.22, 1, 0.36, 1),
    transform 4.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 4.0s ease;
  will-change: filter, transform, opacity;
}

.p-story__bg.is-visible img {
  filter: blur(0);
  transform: scale(1);
  opacity: 1;
}

.p-story__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.p-story__inner {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  gap: 40px;
  padding: 0 64px;
}

.p-story__content {
  display: flex;
  flex-direction: column;
  gap: 60px;
  font-size: 14px;
  line-height: 2.2;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.5);
}

/* Access */
.p-access {
  padding: 160px 0;
}

.p-access__inner {
  display: flex;
  max-width: 1600px;
  margin: 0 auto;
  gap: 80px;
  padding: 0 64px 0 100px;
}

.p-access__content {
  flex: 1;
  display: flex;
  gap: 40px;
  justify-content: space-between;
}

.p-access__info {
  flex: 1;
  max-width: 600px;
}

.p-access__name {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 30px;
}

.p-access__dl {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 0;
  font-size: 18px;
}

.p-access__dl dt {
  width: 160px;
  font-weight: 400;
}

.p-access__dl dd {
  width: calc(100% - 160px);
  line-height: 1.8;
}

.p-access__map {
  flex: 0 0 655px;
  height: 463px;
  background-color: var(--color-bg-light);
}

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

/* Footer */
.l-footer {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 80px 48px 40px;
}

.l-footer__inner {
  max-width: var(--layout-width-pc);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.l-footer__top {
  display: flex;
  justify-content: center;
}

.l-footer__logo-mark {
  width: 64px;
  height: 64px;
  aspect-ratio: 1/1;
}

.l-footer__logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.l-footer__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
}

.l-footer__left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.l-footer__logo-horizon img {
  width: auto;
  height: 45px;
}

.l-footer__address p {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-family: var(--font-family-base);
}

.l-footer__map-link {
  color: inherit;
  text-decoration: none;
  margin-left: 8px;
}

.l-footer__right {
  margin-left: auto;
  margin-right: 80px;
}

.l-footer__nav {
  display: flex;
  gap: 32px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.l-footer__nav a {
  color: var(--color-white);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.1em;
  font-family: var(--font-family-base);
}

.l-footer__pagetop {
  position: absolute;
  right: 0;
  bottom: 0;
}

.l-footer__pagetop a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--color-white);
  text-decoration: none;
}

.l-footer__pagetop-text {
  writing-mode: vertical-rl;
  font-size: 12px;
  letter-spacing: 0.2em;
  font-family: var(--font-family-en);
}

.l-footer__pagetop-arrow {
  width: 14px;
  height: auto;
}

.l-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  padding-top: 20px;
  display: flex;
  justify-content: flex-end;
}

.l-footer__copyright {
  font-size: 12px;
  font-family: var(--font-family-en);
  letter-spacing: 0.05em;
}

@media screen and (min-width: 769px) {
  .is-sp {
    display: none !important;
  }
}

/* =========================================
   Responsive Wide Tablet (max-width: 1600px)
   ========================================= */
@media screen and (max-width: 1600px) {
  .p-access__content {
    flex-direction: column;
    gap: 60px;
  }

  .p-access__info {
    max-width: 100%;
  }

  .p-access__map {
    flex: none;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }
}

/* =========================================
   Responsive (Desktop Focus first, basic resets)
   ========================================= */
/* =========================================
   Responsive Tablet (769px - 1200px)
   ========================================= */
@media screen and (min-width: 769px) and (max-width: 1200px) {
  :root {
    --width-sidebar: 120px;
  }

  .l-header__logo-pc {
    padding: 0 !important;
  }

  .l-header__logo-pc img {
    width: 60px;
    height: auto;
  }

  .l-header__info-text {
    font-size: 12px;
  }

  .l-header__info-title {
    font-size: 12px;
  }

  .p-mv__lead {
    font-size: 20px;
    bottom: 40px;
  }

  .p-mv__vertical-text {
    font-size: 40px;
    top: calc(50% - 6em);
  }

  .p-concept__inner {
    width: 300px;
    height: 600px
  }

  .p-concept__bg {
    width: calc(100% - 300px);
    height: 600px;
  }

  .l-footer {
    padding: 60px 40px 40px;
  }

  .l-footer__inner {
    max-width: 100%;
  }

  .l-footer__address p {
    font-size: 14px;
  }

  .l-footer__nav {
    gap: 20px;
  }

  .l-footer__nav a {
    font-size: 13px;
  }

  .l-footer__right {
    margin-right: 60px;
  }

  .l-nav-full__list {
    gap: clamp(12px, 3.5vw, 60px);
  }
}

/* =========================================
   Responsive SP (768px以下)
   ========================================= */
@media screen and (max-width: 768px) {
  :root {
    --width-sidebar: 0px;
  }

  /* ---- Layout ---- */
  .l-container {
    flex-direction: column;
  }

  /* ---- Header (SP: ロゴはスクロールするように変、ハンバーガーのみ固定) ---- */
  .l-header {
    position: absolute;
    /* fixedからabsoluteに変更してスクロールさせる */
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    background-color: transparent;
    border-right: none;
    border-bottom: none;
    z-index: 100;
  }

  .l-header__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    height: auto;
    width: 100%;
  }

  /* PCロゴ非表示、SPロゴ表示 */
  .l-header__logo-pc {
    display: none;
  }

  /* 下層ページ専用（ロゴ非表示） */
  .l-header--sub .l-header__logo {
    display: none;
  }

  .l-header__logo-sp {
    display: block;
  }

  .l-header__logo-sp img {
    width: 52px;
    height: auto;
    vertical-align: bottom;
  }

  /* 其他ヘッダー要素は非表示 */
  .l-header__info,
  .l-header__info-line,
  .l-header__map-btn {
    display: none;
  }

  .l-header__hamburger {
    position: fixed;
    /* 固定位置に変更 */
    top: 24px;
    right: 24px;
    width: 34px;
    height: 24px;
    gap: 8px;
    margin: 0;
    z-index: 200;
  }

  .l-header__hamburger span {
    background-color: #ffffff;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }

  /* 下層ページ専用（バーの色を黒に） */
  .l-header--sub .l-header__hamburger span {
    background-color: #030304;
  }

  /* スクロール後の色 (rgb(20, 20, 20)) */
  .l-header__hamburger.is-scrolled span {
    background-color: rgb(20, 20, 20);
  }

  .l-header__hamburger.is-active span {
    background-color: #030304 !important;
  }

  .l-header__hamburger.is-active span:nth-of-type(1) {
    transform: translateY(5px) rotate(45deg);
  }

  .l-header__hamburger.is-active span:nth-of-type(2) {
    transform: translateY(-5px) rotate(-45deg);
  }

  /* ---- SP全画面メニュー ---- */
  .l-nav-full__logo {
    display: block;
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 60;
  }

  .l-nav-full__logo-right {
    display: block;
    position: absolute;
    top: 40px;
    left: 40px;
    /* ハンバーガーメニューと被らないように調整 */
    z-index: 60;
  }

  .l-nav-full__logo-right img {
    height: auto;
    width: 60px;
  }

  .l-nav-full__logo img {
    width: 52px;
    height: auto;
  }

  .l-nav-full__inner {
    padding-left: 0;
    justify-content: flex-end;
    padding: 100px 40px 60px;
  }

  .l-nav-full__list {
    flex-direction: column;
    gap: 24px;
    align-items: flex-end;
  }

  .l-nav-full__link {
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
  }

  .l-nav-full__link .jp {
    writing-mode: horizontal-tb;
    font-size: 20px;
    letter-spacing: 0.1em;
  }

  .l-nav-full__link .en {
    font-size: 12px;
    opacity: 0.6;
  }

  /* ---- Main ---- */
  .l-main {
    margin-left: 0;
    width: 100%;
    margin-top: 0;
  }

  /* ---- Section Header ---- */
  .p-section-header {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 0px;
  }

  /* スマホ版ではタイトル表示のエフェクトを無効化 */
  .p-section-header.js-anim {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    transition: none !important;
  }

  .p-section-header__jp {
    writing-mode: vertical-rl;
    font-size: 30px;
  }

  .p-section-header__en {
    font-size: 14px;
  }

  /* ---- MV (SP: 画像とリード文を分離) ---- */
  .p-mv {
    height: auto;
    display: flex;
    flex-direction: column;
    overflow: visible;
  }

  .p-mv__visual {
    position: relative;
    height: 100svh;
    width: 100%;
    order: 1;
  }

  .p-mv__bg--pc {
    display: none;
  }

  .p-mv__bg--sp {
    display: block;
    z-index: 1;
  }

  .p-mv__vertical-text {
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    z-index: 10;
    margin-right: 0;
    font-size: 36px;
    letter-spacing: 0.3em;
  }

  .p-mv__lead {
    position: relative;
    order: 2;
    background-color: #fff;
    color: #141414;
    padding: 60px 24px;
    font-size: 14px;
    line-height: 2.4;
    text-shadow: none;
    bottom: auto;
    left: auto;
    width: 100%;
  }

  /* ---- Concept (SP: 100vh、指定画像、右寄せ) ---- */
  .p-concept {
    height: 100vh;
    min-height: 600px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .p-concept__bg--pc {
    display: none;
  }

  .p-concept__bg--sp {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  .p-concept__inner {
    position: relative;
    z-index: 10;
    width: auto;
    padding: 0 16px 0 0;
    background: transparent;
    top: auto;
    right: auto;
    justify-content: flex-end;
    align-items: flex-end;
    padding-bottom: 2em;
  }

  .p-concept__title {
    writing-mode: vertical-rl;
    font-size: 22px;
    letter-spacing: 0.4em;
    line-height: 1.6;
    color: #fff;
    text-align: left;
    /* 崩れ修正のための追加 */
    display: flex;
    flex-direction: column;
    gap: 0.5em;
    /* 行間の調整 */
  }

  .p-concept__title span {
    display: block;
  }

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

  .p-news__inner {
    flex-direction: column;
    padding: 0 0 0 24px;
    /* 右側のパディングを消して、リストが端まで届くようにする */
    gap: 32px;
    max-width: 100%;
  }

  .p-news__list {
    grid-template-columns: 1fr;
    overflow-x: auto;
    display: flex;
    flex-direction: row;
    gap: 20px;
    padding-right: 24px;
    /* 右端に余白を作って、最後の記事がくっつかないようにする */
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
  }

  .p-news__item {
    width: 72%;
    /* 1枚＋次の記事が少し見えるサイズ（約0.7枚分） */
    min-width: 254px;
    flex-shrink: 0;
    /* SPではアニメーションを無効化 */
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }

  .p-news__thumb {
    height: 195px;
  }

  .p-news__title {
    font-size: 15px;
    margin-top: 12px;
  }

  .p-news__excerpt {
    font-size: 13px;
    margin-top: 8px;
  }

  .p-news__btn-wrap {
    align-self: center;
    margin-top: 8px;
    margin-right: 24px;
  }

  /* ---- Speciality ---- */
  .p-speciality {
    padding: 80px 0;
  }

  .p-speciality__inner {
    flex-direction: column;
    padding: 0 24px;
    gap: 60px;
    max-width: 100%;
  }

  .p-speciality__block {
    flex-direction: column-reverse;
    gap: 32px;
  }

  .p-speciality__block--reverse {
    flex-direction: column-reverse;
  }

  .p-speciality__images {
    flex: none;
    width: 100%;
  }

  .p-speciality__text {
    width: 100%;
    padding: 0;
    display: flex;
    /* サブタイトル（左）とリスト（右）を並べる */
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
  }

  .p-speciality__subtitle {
    font-size: 24px;
    writing-mode: vertical-rl;
    margin-bottom: 0;
    line-height: 1.5;
    letter-spacing: 0.2em;
    flex-shrink: 0;
  }

  .p-speciality__list {
    flex: 1;
    margin-top: 0;
  }

  .p-speciality__list li {
    font-size: 13px;
    padding: 12px 0;
  }

  /* Wide Container (趣ある空間) */
  .p-speciality__wide-container {
    padding: 0;
    height: auto;
    min-height: auto;
    max-height: none;
  }

  .p-speciality__block--wide-img {
    flex-direction: column-reverse;
    position: static;
  }

  .p-speciality__block--wide-img .p-speciality__images {
    position: static;
    width: 100%;
    height: 253px;
    flex: none;
  }

  .p-speciality__block--wide-img .p-speciality__text {
    position: static;
    width: 100%;
    height: auto;
    padding: 0 24px;
    margin-bottom: 32px;
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
  }

  .p-speciality__images--crossfade {
    width: 100%;
    height: 253px;
    flex: none;
  }

  /* ---- Menu ---- */
  .p-menu {
    padding: 80px 0;
  }

  .p-menu__inner {
    padding: 0 24px;
    max-width: 100%;
  }

  /* 楽しみ方 */
  .p-menu__intro {
    flex-direction: column;
    gap: 24px;
  }

  .p-menu__intro-left {
    width: 100%;
  }

  .p-menu__intro-right {
    width: 100%;
  }

  .p-menu__intro-img img {
    width: 100%;
    height: auto;
    max-height: 228px;
    object-fit: cover;
  }

  .p-menu__intro-text h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .p-menu__intro-list {
    flex-direction: column;
    gap: 0;
  }

  .p-menu__intro-list li {
    font-size: 14px;
    border-bottom: 1px solid #aaa;
    padding: 8px 0;
  }

  .p-menu__intro-detail h4 {
    font-size: 20px;
    color: var(--color-accent-dark);
  }

  /* Categories */
  .p-menu__categories {
    flex-direction: column;
    gap: 60px;
  }

  .p-menu__category {
    flex-direction: column;
  }

  .p-menu__cat-thumb {
    width: 100%;
    height: 211px;
    overflow: hidden;
  }

  .p-menu__cat-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .p-menu__cat-content h3 {
    font-size: 20px;
  }

  .p-menu__cat-desc {
    font-size: 14px;
  }

  .p-menu__cat-items {
    font-size: 14px;
  }

  /* ---- Story ---- */
  .p-story {
    padding: 80px 0;
  }

  .p-story__inner {
    flex-direction: column;
    gap: 24px;
    padding: 60px 24px;
    max-width: 100%;
  }

  .p-section-header--white .p-section-header__jp {
    font-size: 28px;
  }

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

  .p-access__inner {
    flex-direction: column;
    padding: 0 24px;
    gap: 40px;
    max-width: 100%;
  }

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

  .p-access__info {
    width: 100%;
  }

  .p-access__name {
    font-size: 20px;
  }

  .p-access__dl {
    font-size: 14px;
  }

  .p-access__dl dt {
    width: 80px;
  }

  .p-access__dl dd {
    width: calc(100% - 80px);
  }

  .p-access__map {
    flex: none;
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
  }

  /* ---- Footer ---- */
  .l-footer {
    padding: 60px 24px 40px;
  }

  .l-footer__inner {
    gap: 32px;
    position: relative;
  }

  .l-footer__logo-mark {
    width: 48px;
    height: 48px;
  }

  .l-footer__content {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    text-align: left;
  }

  .l-footer__left {
    align-items: flex-start;
    gap: 32px;
  }


  .l-footer__address p {
    font-size: 14px;
    line-height: 2;
  }

  .l-footer__right {
    align-self: flex-end;
    margin: 0;
  }

  .l-footer__nav {
    flex-direction: column;
    gap: 4px;
    align-items: flex-end;
    text-align: right;
  }

  .l-footer__nav a {
    font-size: 14px;
  }

  .l-footer__pagetop {
    position: absolute;
    top: -80px;
    right: 0px;
    margin-top: 0;
  }

  .l-footer__pagetop a {
    flex-direction: column-reverse;
    gap: 12px;
    align-items: center;
    position: relative;
    ;
  }

  .l-footer__pagetop-text {
    writing-mode: vertical-rl;
    font-size: 10px;
    letter-spacing: 0.4em;
    font-family: var(--font-family-base);
    text-transform: uppercase;
    color: var(--color-white);
    position: absolute;
  }

  .l-footer__pagetop-arrow {
    width: 12px;
    height: auto;
  }

  .l-footer__pagetop-arrow img {
    filter: brightness(0) invert(1);
  }

  .l-footer__bottom {
    justify-content: flex-end;
  }

  /* ---- View More buttons ---- */
  .c-btn-viewmore {
    font-size: 14px;
  }
}

/* =========================================
   News List Page
   ========================================= */

/* Page Header */
.p-page-header {
  position: relative;
  width: 100%;
  height: 640px;
  display: flex;
  align-items: center;
  margin-bottom: 80px;
  background-image: url('../images/news-header_pc.png');
  background-size: cover;
  background-position: center;
  color: #fff;
}

.p-page-header__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

.p-page-header .p-section-header__jp {
  color: #fff;
}

.p-page-header .p-section-header__en {
  color: rgba(255, 255, 255, 0.8);
}

/* News List */
.p-news-list {
  padding: 100px 0;
  background-color: var(--color-bg-light);
}

.p-news-list__inner {
  max-width: 1070px;
  /* コンテンツ幅を1070pxに設定 */
  margin: 0 auto;
  padding: 0 40px;
}

.p-news-list__items {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.p-news-list__item {
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 60px;
}

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

.p-news-list__link {
  display: flex;
  gap: 60px;
  /* ギャップを広げる */
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

.p-news-list__link:hover {
  opacity: 0.7;
}

.p-news-list__thumb {
  flex: 0 0 320px;
  /* サムネイル幅を320pxに変更 */
  height: 200px;
}

.p-news-list__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-news-list__body {
  flex: 1;
}

.p-news-list__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 12px;
}

.p-news-list__date {
  font-family: var(--font-family-en);
  font-size: 14px;
}

.p-news-list__category {
  font-size: 11px;
  padding: 3px 10px;
  background: var(--color-primary);
  color: #fff;
  letter-spacing: 0.05em;
}

.p-news-list__title {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 12px;
}

.p-news-list__excerpt {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Pagination */
.p-pagination {
  margin-top: 80px;
}

.p-pagination__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.p-pagination__list li {
  list-style: none;
}

.p-pagination__list a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border);
  text-decoration: none;
  color: inherit;
  font-family: var(--font-family-en);
  font-size: 14px;
  transition: all 0.3s ease;
}

.p-pagination__list li.is-active a {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.p-pagination__list a:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

/* Responsive News Page */
@media screen and (max-width: 768px) {
  .p-page-header {
    height: 320px;
    background-image: url('../images/news-header_sp.png');
    padding: 60px 0 30px;
  }

  .p-news-list {
    padding: 40px 0 80px;
  }

  .p-news-list__inner {
    padding: 0 24px;
  }

  .p-news-list__items {
    gap: 40px;
  }

  .p-news-list__item {
    padding-bottom: 40px;
  }

  .p-news-list__link {
    flex-direction: column;
    gap: 16px;
  }

  .p-news-list__thumb {
    flex: none;
    width: 100%;
    height: auto;
    aspect-ratio: 16/10;
  }

  .p-news-list__title {
    font-size: 17px;
  }

  .p-news-list__excerpt {
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }

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

  .p-pagination__list a {
    width: 40px;
    height: 40px;
  }
}

/* =========================================
   News Detail Page (Article)
   ========================================= */
.p-page-header--detail {
  display: flex;
  width: 100%;
  height: auto;
  padding: 160px 0 40px 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  background: linear-gradient(0deg, rgba(20, 20, 20, 0.05) 0%, rgba(122, 122, 122, 0.00) 100%);
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}

.p-page-header--detail .p-page-header__inner,
.p-page-header--detail .p-section-header {
  position: relative;
  z-index: 1;
}

.p-page-header--detail .p-section-header {
  flex-direction: row;
  align-items: center;
  gap: 15px;
}

.p-page-header--detail .p-section-header__jp {
  writing-mode: horizontal-tb;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--color-text-main);
  line-height: 1.2;
  margin: 0;
}

.p-page-header--detail .p-section-header__en {
  font-family: var(--font-family-base);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-gray);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin: 0;
}

.p-page-header--detail .p-page-header__inner {
  max-width: 1070px;
  margin: 0 auto;
  padding: 0 40px;
}

.p-page-header--detail .p-page-header__article-header {
  margin-top: 32px;
}

.p-page-header--detail .p-article__meta {
  margin-bottom: 12px;
}

.p-page-header--detail .p-article__category {
  background: #f8f2e7;
  color: var(--color-text-main);
}

.p-page-header--detail .p-article__title {
  font-size: 42px;
  line-height: 1.3;
  margin: 0;
  color: var(--color-text-main);
}

.p-breadcrumb {
  margin-bottom: 20px;
  font-size: 14px;
}

.p-breadcrumb__list {
  list-style: none;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  color: var(--color-text-gray);
}

.p-breadcrumb__item {
  display: inline;
}

.p-breadcrumb__item::after {
  content: ">";
  margin: 0 8px;
  color: var(--color-text-gray);
}

.p-breadcrumb__item:last-child::after {
  content: "";
}

.p-breadcrumb__item a {
  color: var(--color-text-gray);
  text-decoration: none;
  position: relative;
  display: inline-block;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.p-breadcrumb__item a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background-color: var(--color-primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.p-breadcrumb__item a:hover {
  color: var(--color-primary);
  opacity: 1;
}

.p-breadcrumb__item a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.p-breadcrumb__item[aria-current="page"] {
  font-weight: 600;
  color: var(--color-text-main);
}

.p-article {
  padding: 0 0 120px;
  background-color: transparent;
  /* 背景はサイト共通のテクスチャ */
}

.p-article__inner {
  max-width: 1070px;
  /* Figma通りの1070px */
  margin: 0 auto;
  padding: 0 40px;
}

.p-article__body {
  background-color: transparent;
  /* 背景を透明化（白背景なし） */
  padding: 80px 0;
  box-shadow: none;
  border-radius: 0;
}

.p-article__header {
  margin-bottom: 60px;
  text-align: left;
}

.p-article__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.p-article__date {
  font-family: var(--font-family-en);
  font-size: 14px;
  color: var(--color-accent);
  letter-spacing: 0.05em;
}

.p-article__category {
  font-size: 12px;
  padding: 5px 14px;
  background: #e8f5f1;
  color: var(--color-primary);
  border-radius: 999px;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.p-article__title {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.35;
  font-family: var(--font-family-base);
  margin: 0;
  word-break: break-word;
  color: var(--color-text-main);
}

.p-article__thumb {
  margin-bottom: 80px;
  width: 100%;
}

.p-article__thumb img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.p-article__content {
  font-family: var(--font-family-sans);
  font-size: 16px;
  line-height: 2.2;
  color: var(--color-text-main);
}

.p-article__content>*+* {
  margin-top: 48px;
}

.p-article__content h2 {
  font-family: var(--font-family-base);
  font-size: 30px;
  font-weight: 600;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 16px;
  margin-top: 80px;
}

.p-article__content h3 {
  font-family: var(--font-family-base);
  font-size: 22px;
  font-weight: 600;
  padding-left: 14px;
  border-left: 4px solid var(--color-primary);
  margin-top: 60px;
}

.p-article__content ul {
  padding-left: 4px;
}

.p-article__content li {
  list-style: none;
  margin-bottom: 0.8em;
  padding-left: 1.5em;
  position: relative;
}

.p-article__content li::before {
  content: "・";
  position: absolute;
  left: 0;
}

.p-article__image {
  margin: 80px 0;
}

.p-article__image-caption {
  font-size: 14px;
  color: var(--color-text-gray);
  margin-top: 12px;
  text-align: center;
}

.p-article__content blockquote {
  background: #f9f8f6;
  padding: 60px;
  border-radius: 2px;
  position: relative;
  border-left: 2px solid var(--color-primary);
}

/* Pagination */
.p-article-pagination {
  margin-top: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  border-top: 1px solid var(--color-border);
  padding-top: 60px;
}

.p-article-pagination__prev a:hover,
.p-article-pagination__next a:hover {
  color: var(--color-primary);
}

.p-article-pagination__back a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.2em;
  color: var(--color-text-main);
  transition: opacity 0.3s;
}

.p-article-pagination__back a:hover {
  opacity: 0.8;
}

.p-article-pagination__prev a::before {
  content: "←";
  font-size: 14px;
}

.p-article-pagination__next a::after {
  content: "→";
  font-size: 14px;
}

/* Responsive Article Page */
@media screen and (max-width: 1024px) {
  .p-article__body {
    padding: 60px 40px;
  }
}

@media screen and (max-width: 768px) {
  .p-page-header--detail {
    padding: 100px 0 40px;
  }

  .p-article {
    padding-bottom: 80px;
  }

  .p-article__inner {
    padding: 0 24px;
  }

  .p-article__body {
    padding: 40px 24px;
  }

  .p-article__header {
    margin-bottom: 40px;
  }

  .p-article__title {
    font-size: 24px;
    line-height: 1.5;
  }

  .p-breadcrumb {
    font-size: 12px;
    margin-bottom: 16px;
  }

  .p-related-news__items {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .p-related-news__thumb img {
    height: 160px;
  }

  .p-article__body {
    padding: 32px;
  }

  .p-article-pagination {
    flex-wrap: wrap;
    gap: 16px;
  }

  .p-article__thumb {
    margin-bottom: 40px;
  }

  .p-article__content {
    font-size: 15px;
    line-height: 1.8;
  }

  .p-article__content>*+* {
    margin-top: 32px;
  }

  .p-article__content h2 {
    font-size: 22px;
    margin-top: 60px;
    padding-bottom: 12px;
  }

  .p-article__content h3 {
    font-size: 20px;
    margin-top: 40px;
  }

  .p-article-pagination {
    margin-top: 60px;
    padding-top: 30px;
  }

  .p-article-pagination__prev,
  .p-article-pagination__next {
    width: 80px;
  }
}

/* =========================================
   Contact Form
   ========================================= */
.p-contact {
  padding-top: 100px;
  padding-bottom: 160px;
}

.p-contact__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
}

.p-contact__text {
  margin-bottom: 3em;
}

.p-contact-form__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 80px;
}

.p-contact-form__item {
  display: flex;
  gap: 40px;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 32px;
}

.p-contact-form__label {
  flex: 0 0 280px;
  font-size: 18px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
}

.p-contact-form__label span {
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 2px;
  color: var(--color-white);
  background-color: var(--color-primary);
  line-height: 1.4;
}

.p-contact-form__label span.is-optional {
  background-color: #999;
}

.p-contact-form__input {
  flex: 1;
}

.p-contact-form__input input[type="text"],
.p-contact-form__input input[type="email"],
.p-contact-form__input input[type="tel"],
.p-contact-form__input textarea {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid #ddd;
  background-color: #f9f9f9;
  font-family: inherit;
  font-size: 16px;
  color: var(--color-text-main);
  transition: border-color 0.3s, background-color 0.3s;
}

.p-contact-form__input input:focus,
.p-contact-form__input textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: var(--color-white);
}

.p-contact-form__input textarea {
  height: 200px;
}

.p-contact-form__submit {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.p-contact-form__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  padding: 20px 40px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  font-family: var(--font-family-base);
}

.p-contact-form__btn--submit {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.p-contact-form__btn--submit:hover {
  background-color: #273729;
}

.p-contact-form__btn--back {
  background-color: #eee;
  color: #333;
}

.p-contact-form__btn--back:hover {
  background-color: #ddd;
}

/* Confirm & Thanks */
.p-contact-confirm__text {
  flex: 1;
  font-size: 16px;
  line-height: 1.8;
  white-space: pre-wrap;
}

.p-contact-thanks {
  text-align: center;
  padding: 80px 0;
}

.p-contact-thanks__msg {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
  font-family: var(--font-family-base);
}

.p-contact-thanks__text {
  font-size: 16px;
  color: #666;
  margin-bottom: 60px;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .p-contact {
    padding-bottom: 100px;
  }

  .p-contact__inner {
    padding: 0 24px;
  }

  .p-contact-form__list {
    gap: 32px;
    margin-bottom: 60px;
  }

  .p-contact-form__item {
    flex-direction: column;
    gap: 16px;
    padding-bottom: 24px;
  }

  .p-contact-form__label {
    flex: none;
    font-size: 16px;
  }

  .p-contact-form__submit {
    flex-direction: column;
    gap: 16px;
  }

  .p-contact-form__btn {
    width: 100%;
    min-width: auto;
  }

  .p-contact-thanks {
    padding: 60px 0;
  }

  .p-contact-thanks__msg {
    font-size: 20px;
  }
}