/* =====================================================
   Yasuragi no Sato - About Us Page
   Based on Figma Design Data
   ===================================================== */

/* =====================================================
   CSS Variables (from Figma)
   ===================================================== */
:root {
  /* Primary Colors (from Figma: r:0.290, g:0.572, b:0.333) */
  --color-primary: #4a9255;
  --color-primary-dark: #3d7a47;

  /* Background Colors (Figma: r:1.0, g:0.984, b:0.945) */
  --color-bg-cream: #fffbf1;
  --color-bg-light: #fffcf8;
  --color-bg-beige: #faf4ec;

  /* Button Colors (from Figma) */
  --color-btn-orange: #d67c3d;
  --color-btn-orange-hover: #c26a2d;

  /* Feature Tag Colors (from Figma: r:0.894, g:0.686, b:0.576) */
  --color-tag-bg: #e4af93;
  --color-tag-border: #d4b494;

  /* Text Colors (from Figma: r:0.376, g:0.301, b:0.266 = #604D44) */
  --color-text-dark: #352304;
  --color-text-body: #5a5a5a;
  --color-text-light: #666666;
  /* Dark brown from Figma: r:0.207, g:0.137, b:0.015 = #352304 */
  --color-text-heading: #352304;

  /* Border */
  --color-border: #d4c4b0;
  --color-border-light: #e0d5c8;

  /* Functional */
  --color-white: #ffffff;

  /* Typography (from Figma) */
  --font-mincho: 'Shippori Mincho B1', 'YuMincho', 'Yu Mincho', serif;
  --font-gothic: 'YuGothic', 'Yu Gothic', 'Hiragino Sans', sans-serif;
  --font-italiana: 'Italiana', serif;

  /* Layout */
  --container-max: 1000px;
  --container-wide: 1200px;
}

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

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

body {
  font-family: var(--font-gothic);
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text-body);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* =====================================================
   Container
   ===================================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

/* Figma: ロゴ 185x36px */

/* Figma準拠: HOVERの時 色が薄くなる */

/* Figma: カレンダーから予約 - オレンジ #D67C3D, 209x80px */

/* Figma: プランから予約 - グリーン #4A9255, 208x80px */

/* =====================================================
   Hero Section
   ===================================================== */
.hero {
  position: relative;
  width: 100%;
  height: 720px;
  margin-top: clamp(60px, 5.56vw, 80px);
  overflow: hidden;
}

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

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

/* Figma: 左からのグラデーションオーバーレイ */
.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 626px;
  height: 100%;
  background: linear-gradient(263deg, rgba(255, 255, 255, 0.00) 11.54%, rgba(176, 167, 157, 0.40) 29.37%, rgba(100, 81, 63, 0.50) 69.65%);
  pointer-events: none;
}

/* Figma: 左側に大きなタイトル表示（トップページ用） */
.hero__main-title {
  position: absolute;
  left: 157px;
  top: 50%;
  transform: translateY(-50%);
  color: #fffbf1;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.hero__main-title-ja {
  font-family: var(--font-mincho);
  font-size: 64px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.1;
  margin-bottom: 8px;
}

.hero__main-title-en {
  font-family: var(--font-italiana);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

/* Figma: タイトルエリア - オーバーレイ上に左配置 */
.hero__title-area--center {
  position: absolute;
  left: 157px;
  top: 50%;
  transform: translateY(-50%);
  text-align: left;
  z-index: 1;
}

/* Figma: Italiana Regular 18px, letter-spacing 0.9px, ドロップシャドウ */
.hero__subtitle {
  font-family: var(--font-italiana);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.9px;
  color: var(--color-white);
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  margin-top: 8px;
}

/* Figma: Shippori Mincho B1 SemiBold 64px, font-weight 600, letter-spacing 6.4px, color #FFFBF1 */
.hero__title {
  font-family: var(--font-mincho);
  font-size: 64px;
  font-weight: 600;
  color: #fffbf1;
  letter-spacing: 6.4px;
  line-height: 70px;
}

/* =====================================================
   Section Base
   ===================================================== */
.section {
  padding: 72px 0;
}

.section--cream {
  background: var(--color-bg-cream);
}

.section__header {
  text-align: center;
  margin-bottom: 40px;
}

.section__title {
  font-family: var(--font-mincho);
  font-size: 24px;
  font-weight: 400;
  color: var(--color-text-dark);
  margin-bottom: 0;
  letter-spacing: 0.08em;
}

.section__tagline {
  font-family: var(--font-mincho);
  font-size: 16px;
  color: var(--color-primary);
  margin-top: 12px;
  letter-spacing: 0.1em;
}

.section__subtitle {
  font-family: var(--font-gothic);
  font-size: 14px;
  color: var(--color-text-light);
  margin-top: 16px;
  letter-spacing: 0.02em;
  line-height: 1.8;
}

/* =====================================================
   Message Section (代表メッセージ)
   ===================================================== */
.message {
  padding: 80px 0;
}

.message__content {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
}

.message__profile {
  text-align: center;
}

.message__image-wrap {
  width: 240px;
  height: 300px;
  margin: 0 auto 20px;
  overflow: hidden;
}

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

.message__role {
  font-size: 13px;
  color: var(--color-text-light);
  margin-bottom: 4px;
}

.message__name {
  font-family: var(--font-mincho);
  font-size: 20px;
  color: var(--color-text-dark);
  letter-spacing: 0.06em;
}

.message__text {
  padding-top: 16px;
}

.message__lead {
  font-family: var(--font-mincho);
  font-size: 20px;
  line-height: 2;
  color: var(--color-text-dark);
  margin-bottom: 32px;
  letter-spacing: 0.04em;
}

.message__body {
  font-size: 15px;
  line-height: 2.2;
  color: var(--color-text-body);
  margin-bottom: 20px;
}

.message__conclusion {
  font-family: var(--font-mincho);
  font-size: 18px;
  line-height: 2;
  color: var(--color-primary);
  margin-top: 32px;
  letter-spacing: 0.04em;
}

/* =====================================================
   Message New Section (Figma準拠)
   ===================================================== */
.message-new {
  position: relative;
  min-height: 800px;
}

.message-new__image-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.message-new__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 100% center;
}

.message-new__content {
  position: relative;
  z-index: 1;
  display: flex;
  width: 738px;
  min-height: 788px;
  padding: 60px 50px;
  background: rgba(255, 255, 255, 0.90);
  backdrop-filter: blur(5px);
  margin-left: 60px;
}

.message-new__text {
  flex: 1;
}

.message-new__text p {
  font-family: var(--font-mincho);
  font-size: 20px;
  font-weight: 400;
  color: #352304;
  line-height: 38px;
  margin-bottom: 24px;
}

.message-new__text p:last-child {
  margin-bottom: 0;
}

.message-new__highlight {
  color: #d67c3d;
}

.message-new__conclusion {
  margin-top: 16px;
}

.message-new__text p.message-new__author {
  font-family: "Shippori Mincho B1", var(--font-mincho);
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  color: #352304;
  line-height: 1.5;
  margin-top: 40px;
  white-space: nowrap;
}

.message-new__accent {
  color: #4a9255;
}

.message-new__vertical {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  margin-left: 40px;
}

.message-new__vertical-text {
  font-family: var(--font-mincho);
  font-size: 50px;
  font-weight: 400;
  color: #352304;
  line-height: 58px;
  letter-spacing: 0.1em;
  margin: 0;
}

.message-new__vertical-text:first-child {
  margin-bottom: 40px;
}

.message-new__vertical-text:last-child {
  margin-top: 280px;
}

/* =====================================================
   Method Section (やすらぎメソッド)
   ===================================================== */
.method {
  padding: 80px 0;
}

.method__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.method__lead {
  font-family: var(--font-mincho);
  font-size: 18px;
  line-height: 2.2;
  color: var(--color-text-dark);
  margin-bottom: 40px;
  letter-spacing: 0.04em;
}

.method__philosophy {
  padding: 32px;
  background: var(--color-white);
  margin-bottom: 40px;
}

.method__philosophy-text {
  font-family: var(--font-mincho);
  font-size: 16px;
  line-height: 2;
  color: var(--color-text-dark);
  letter-spacing: 0.04em;
}

.method__flow {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-bottom: 48px;
  padding: 32px;
  background: var(--color-white);
}

.method-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.method-step__label {
  font-size: 12px;
  color: var(--color-text-light);
  letter-spacing: 0.04em;
}

.method-step__title {
  font-family: var(--font-mincho);
  font-size: 18px;
  color: var(--color-primary);
  letter-spacing: 0.06em;
}

.method__arrow {
  width: 40px;
  height: 2px;
  background: var(--color-primary);
  position: relative;
}

.method__arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border-left: 8px solid var(--color-primary);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.method__elements {
  margin-bottom: 40px;
}

.method__elements-title {
  font-family: var(--font-mincho);
  font-size: 16px;
  color: var(--color-text-dark);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}

.method__elements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.method-element {
  padding: 24px 16px;
  background: var(--color-white);
}

.method-element__title {
  font-family: var(--font-mincho);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.method-element__desc {
  font-size: 13px;
  color: var(--color-text-body);
  line-height: 1.7;
}

.method__quote {
  font-family: var(--font-mincho);
  font-size: 15px;
  line-height: 2.2;
  color: var(--color-text-dark);
  padding: 32px;
  background: var(--color-white);
  border-left: 3px solid var(--color-primary);
  text-align: left;
}

/* =====================================================
   About Catchphrase Section
   ===================================================== */
.about-catchphrase {
  position: relative;
  background: #fffbf1;
  padding: 144px 130px 100px;
  overflow: hidden;
}

.about-catchphrase__leaf {
  position: absolute;
  left: -300px;
  top: 0;
  width: 705px;
  height: auto;
  pointer-events: none;
}

.about-catchphrase__title {
  font-family: 'FOT-TsukuAntiqueLMin Std', var(--font-mincho);
  font-size: 64px;
  font-weight: 300;
  color: #352304;
  letter-spacing: 0;
}

/* =====================================================
   About Intro Section (駆け足の人生)
   ===================================================== */
.about-intro {
  position: relative;
  width: 100%;
  height: 780px;
  overflow: hidden;
}

.about-intro__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-intro__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 62.5%; /* 900/1440 */
  height: 100%;
  background: linear-gradient(to right, rgba(255, 251, 241, 0.8) 78.8%, rgba(255, 251, 241, 0) 100%);
}

.about-intro__content {
  position: relative;
  z-index: 1;
  padding: 70px 130px;
  padding-right: calc(100% - 130px - 540px);
  height: 640px;
  overflow-y: auto;
  color: #352304;
}

.about-intro__content::-webkit-scrollbar {
  width: 4px;
}

.about-intro__content::-webkit-scrollbar-track {
  background: transparent;
}

.about-intro__content::-webkit-scrollbar-thumb {
  background: rgba(53, 35, 4, 0.3);
  border-radius: 2px;
}

.about-intro__content p {
  font-family: 'Yu Gothic', 'YuGothic', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 40px;
  margin-bottom: 1.5em;
}

.about-intro__content p:last-child {
  margin-bottom: 0;
}

.about-intro__link {
  color: #352304;
  text-decoration: underline;
  text-underline-offset: 5px;
  font-family: 'Yu Gothic', 'YuGothic', sans-serif;
  font-size: 20px;
  font-weight: 400;
}

/* =====================================================
   やすらぎへの道ボタン Section
   ===================================================== */
.about-story-btn {
  background: #fffbf1;
  padding: 50px 0 100px;
  display: flex;
  justify-content: center;
}

.about-story-btn__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 528px;
  height: 73px;
  background: #352304;
  color: #fff;
  text-decoration: none;
  font-family: 'Shippori Mincho B1', serif;
  font-size: 20px;
  font-weight: 400;
}

.about-story-btn__icon {
  flex-shrink: 0;
}

/* =====================================================
   About Philosophy Section (理念)
   ===================================================== */
.about-philosophy {
  background: #fffbf1;
  padding: 100px 130px;
  text-align: center;
  position: relative;
}

.about-philosophy::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/bg-texture.webp') center / cover no-repeat;
  opacity: 0.2;
  pointer-events: none;
}

.about-philosophy__header {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto 80px;
}

.about-philosophy__title {
  font-family: 'FOT-TsukuAntiqueLMin Std', var(--font-mincho);
  font-size: 64px;
  font-weight: 300;
  color: #352304;
  line-height: 94px;
  margin: 0 0 50px;
}

.about-philosophy__rinen p {
  font-family: 'Shippori Mincho B1', var(--font-mincho);
  font-size: 36px;
  font-weight: 600;
  color: #352304;
  line-height: 52px;
  margin: 0;
}

.about-philosophy__accent {
  color: #D67C3D;
}

.about-philosophy__body {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
}

.about-philosophy__body p {
  font-family: 'Yu Gothic', 'YuGothic', sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #352304;
  line-height: 44px;
  letter-spacing: -1.2px;
  text-align: center;
  margin: 0 0 60px;
}

.about-philosophy__green {
  color: #4A9255;
}

.about-philosophy__body p:last-child {
  margin-bottom: 0;
}

/* =====================================================
   About Video Section (紹介動画)
   ===================================================== */
.about-video {
  background: #F7F3E9;
  padding: 100px 130px;
  text-align: center;
}

.about-video__title {
  font-family: 'FOT-TsukuAntiqueLMin Std', var(--font-mincho);
  font-size: 64px;
  font-weight: 300;
  color: #352304;
  line-height: 94px;
  margin: 0 0 80px;
}

.about-video__player {
  width: 960px;
  height: 540px;
  background: #D9D9D9;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Yu Gothic', 'YuGothic', sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #000;
}

/* =====================================================
   Method New Section (Figma準拠)
   ===================================================== */
.method-new {
  position: relative;
  background: #fffbf1;
  padding: 144px 0 180px;
  overflow: hidden;
}

.method-new__decoration {
  position: absolute;
  left: 0;
  top: 0;
  width: auto;
  height: auto;
  max-width: 500px;
  pointer-events: none;
}

.method-new__decoration-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  pointer-events: none;
}

.method-new__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}

.method-new__header {
  margin-bottom: 88px;
}

.method-new__title {
  font-family: var(--font-mincho);
  font-size: 64px;
  font-weight: 300;
  color: #352304;
  line-height: 94px;
  letter-spacing: 0;
  margin-bottom: 0;
}

.method-new__subtitle {
  font-family: var(--font-mincho);
  font-size: 64px;
  font-weight: 300;
  color: #352304;
  line-height: 94px;
  letter-spacing: 0;
  margin: 0;
}

.method-new__accent {
  color: #4a9255;
}

.method-new__content {
  display: flex;
  gap: 40px;
  align-items: stretch;
  margin-left: -60px;
}

.method-new__image-wrap {
  flex-shrink: 0;
  width: 450px;
}

.method-new__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.method-new__text {
  flex: 1;
}

.method-new__text p {
  font-family: var(--font-mincho);
  font-size: 22px;
  font-weight: 600;
  color: #352304;
  line-height: 2.4;
  margin-bottom: 28px;
}

.method-new__text p:last-child {
  margin-bottom: 0;
}

.method-new__highlight {
  color: #d67c3d;
}

/* =====================================================
   Testimonials Section
   ===================================================== */
.testimonials {
  padding: 72px 0;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--color-bg-cream);
  padding: 28px 24px;
}

.testimonial-card__text {
  font-family: var(--font-mincho);
  font-size: 15px;
  line-height: 2;
  color: var(--color-text-dark);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.testimonial-card__author {
  text-align: right;
}

.testimonial-card__attribute {
  font-size: 12px;
  color: var(--color-text-light);
}

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

/* =====================================================
   Link Button (Common)
   ===================================================== */
.link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mincho);
  font-size: 14px;
  color: var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
  padding-bottom: 4px;
  transition: opacity 0.3s;
}

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

.link-btn::after {
  content: '\2192';
}

/* =====================================================
   Staff Section
   ===================================================== */
.staff {
  padding: 80px 0;
}

.staff__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.staff-card {
  background: var(--color-white);
  overflow: hidden;
}

.staff-card--featured {
  grid-column: span 1;
}

.staff-card__image-wrap {
  aspect-ratio: 300/200;
  overflow: hidden;
}

.staff-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.staff-card:hover .staff-card__image {
  transform: scale(1.05);
}

.staff-card__content {
  padding: 20px;
}

.staff-card__role {
  display: inline-block;
  font-size: 11px;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  padding: 3px 8px;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.staff-card__name {
  font-family: var(--font-mincho);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text-dark);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.staff-card__description {
  font-size: 13px;
  line-height: 1.8;
  color: var(--color-text-body);
}

.staff-card--mascot {
  background: var(--color-bg-beige);
}

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

.staff__recruit-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border: 1px solid var(--color-border);
  font-family: var(--font-mincho);
  font-size: 14px;
  color: var(--color-text-dark);
  transition: all 0.3s;
}

.staff__recruit-link:hover {
  background: var(--color-bg-cream);
}

/* =====================================================
   Staff Section New (スタッフ紹介)
   ===================================================== */
.staff-new {
  background: #fffbf1;
  padding: 80px 0 120px;
}

.staff-new__header {
  text-align: center;
  margin-bottom: 60px;
}

.staff-new__title {
  font-family: "FOT-TsukuAntiqueLMin Std", var(--font-mincho);
  font-size: 64px;
  font-weight: 300;
  color: #352304;
  line-height: 94px;
  margin: 0 0 10px;
}

.staff-new__subtitle {
  font-family: var(--font-gothic);
  font-size: 24px;
  font-weight: 400;
  color: #352304;
  line-height: 44px;
  letter-spacing: -0.05em;
  margin: 0;
}

.staff-new__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px 30px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.staff-new__more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 528px;
  height: 73px;
  background: #352304;
  color: #fff;
  text-decoration: none;
  font-family: 'Shippori Mincho B1', serif;
  font-size: 20px;
  font-weight: 400;
  margin: 60px auto 0;
}

.staff-card-new {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 340px;
}

.staff-card-new__image-wrap {
  width: 360px;
  height: 357px;
  overflow: hidden;
  margin-bottom: 10px;
}

.staff-card-new__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.staff-card-new:hover .staff-card-new__image {
  transform: scale(1.05);
}

.staff-card-new__content {
  padding: 20px;
  text-align: left;
  width: 100%;
  max-width: 340px;
}

.staff-card-new__name-row {
  display: flex;
  align-items: baseline;
  white-space: nowrap;
}

.staff-card-new__role {
  font-family: 'Shippori Mincho B1', var(--font-mincho);
  font-size: 20px;
  font-weight: 600;
  color: #352304;
  line-height: 46px;
}

.staff-card-new__book-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #352304;
  text-decoration: none;
  font-family: 'Shippori Mincho B1', var(--font-mincho);
  font-size: 20px;
  font-weight: 600;
  line-height: 45px;
  margin-top: 0;
}

.staff-card-new__name {
  font-family: "Shippori Mincho B1", var(--font-mincho);
  font-size: 28px;
  font-weight: 600;
  color: #352304;
  line-height: 54px;
  margin: 0;
}

.staff-card-new__accent {
  color: #4a9255;
}

.staff-card-new__description {
  font-family: var(--font-gothic);
  font-size: 20px;
  font-weight: 400;
  color: #352304;
  line-height: 36px;
  margin: 0;
}

/* =====================================================
   Recruit Section (スタッフ募集)
   ===================================================== */
.recruit {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}

.recruit__bg {
  position: absolute;
  inset: 0;
  background-color: #4a9255;
}

.recruit__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  mix-blend-mode: lighten;
}

.recruit__decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 653px;
  height: auto;
  z-index: 1;
  pointer-events: none;
}

.recruit__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.recruit__title {
  font-family: "FOT-TsukuAntiqueLMin Std", var(--font-mincho);
  font-size: 64px;
  font-weight: 300;
  color: #fff;
  line-height: 94px;
  text-align: center;
  margin: 0 0 40px;
}

.recruit__image-wrap {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 20px;
  padding: 0 20px;
}

.recruit__image {
  width: 100%;
  height: auto;
  display: block;
}

.recruit__link-wrap {
  width: 100%;
  max-width: 1000px;
  padding: 0 20px;
  display: flex;
  justify-content: flex-end;
}

.recruit__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s;
}

.recruit__link:hover {
  opacity: 0.8;
}

.recruit__link-icon {
  width: 27px;
  height: 27px;
}

.recruit__link-text {
  font-family: var(--font-gothic);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-bottom: 1px dashed #fff;
  padding-bottom: 6px;
}

/* =====================================================
   CTA New - 予約・資料ダウンロード
   ===================================================== */
.cta-new {
  background: #FFFFFF;
  padding: 61px 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.cta-new__buttons {
  display: flex;
  gap: 60px;
}

.cta-new__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 470px;
  height: 120px;
  font-family: var(--font-mincho);
  font-size: 28px;
  font-weight: 600;
  line-height: 54px;
  color: white;
  text-decoration: none;
  transition: opacity 0.3s;
}

.cta-new__btn:hover {
  opacity: 0.9;
}

.cta-new__btn--web {
  background: #d67c3d;
}

.cta-new__btn--phone {
  background: #4a9255;
}

.cta-new__btn-icon {
  width: 26px;
  height: 26px;
}

.cta-new__btn-icon--phone {
  width: 34px;
  height: 26px;
}

.cta-new__download {
  width: calc(470px + 60px + 470px);
  background: #352304;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 64px;
  height: 148px;
}

.cta-new__download-label {
  font-family: var(--font-gothic);
  font-size: 24px;
  font-weight: 500;
  line-height: 44px;
  color: white;
  text-align: center;
  margin-bottom: 0;
}

.cta-new__download-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mincho);
  font-size: 28px;
  font-weight: 600;
  line-height: 54px;
  color: white;
  text-decoration: none;
  transition: opacity 0.3s;
}

.cta-new__download-link:hover {
  opacity: 0.8;
}

.cta-new__download-icon {
  width: 26px;
  height: 26px;
}

/* =====================================================
   Achievements Section
   ===================================================== */
.achievements {
  padding: 64px 0;
  background: var(--color-white);
}

.achievements__content {
  text-align: center;
}

.achievements__stats {
  display: flex;
  justify-content: center;
  gap: 64px;
}

.achievement-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.achievement-item__number {
  font-family: var(--font-mincho);
  font-size: 48px;
  font-weight: 400;
  color: var(--color-primary);
  line-height: 1.2;
}

.achievement-item__unit {
  font-size: 24px;
}

.achievement-item__label {
  font-family: var(--font-gothic);
  font-size: 14px;
  color: var(--color-text-body);
  margin-top: 8px;
}

/* =====================================================
   CTA Section
   ===================================================== */
.cta {
  padding: 80px 0;
  background: var(--color-bg-beige);
}

.cta__content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta__lead {
  font-family: var(--font-mincho);
  font-size: 16px;
  color: var(--color-text-light);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

.cta__title {
  font-family: var(--font-mincho);
  font-size: 24px;
  font-weight: 400;
  color: var(--color-text-dark);
  margin-bottom: 24px;
  letter-spacing: 0.06em;
  line-height: 1.8;
}

.cta__description {
  font-size: 15px;
  color: var(--color-text-body);
  margin-bottom: 32px;
  line-height: 2.2;
}

.cta__buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

.cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 14px 36px;
  font-family: var(--font-mincho);
  font-size: 15px;
  text-align: center;
  transition: all 0.3s;
  letter-spacing: 0.06em;
}

.cta__btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
}

.cta__btn--primary:hover {
  background: var(--color-primary-dark);
}

.cta__btn--secondary {
  background: var(--color-white);
  color: var(--color-text-dark);
  border: 1px solid var(--color-border);
}

.cta__btn--secondary:hover {
  background: var(--color-bg-cream);
}

.cta__phone {
  font-size: 13px;
  color: var(--color-text-light);
}

/* 左側エリア */

/* 電話番号 */

/* SNSアイコン */

/* X (黒) */

/* Facebook (青) */

/* Instagram (グラデーション画像) */

/* YouTube (赤) */

/* お問い合わせボタン (Figma: Bold) */

/* 右側ナビゲーション */

/* コピーライト */

/* =====================================================
   PC/SP Utility
   ===================================================== */
.sp-only { display: none; }
.pc-only { display: inline; }

/* =====================================================
   Responsive
   ===================================================== */
@media (max-width: 1024px) {
  .message__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .message__profile {
    max-width: 300px;
    margin: 0 auto;
  }

  .staff__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .method__elements-grid {
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .sp-only { display: inline !important; }
  .pc-only { display: none !important; }
  img.sp-only { display: block !important; }

  .hero {
    height: 570px !important;
    margin-top: 56px;
    background: url('../images/hero-about-sp.webp') top center / cover no-repeat;
  }

  .hero__bg {
    display: none;
  }

  .hero__overlay {
    width: 256px;
    height: 100%;
    opacity: 0.5;
    background: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, rgba(176, 167, 157, 0.8) 32.9%, #64513F 64.8%);
  }

  .hero__title-area--center {
    left: 41px;
    top: auto;
    bottom: 20px;
    transform: none;
  }

  .hero__title {
    font-size: 50px;
    font-weight: 600;
    letter-spacing: 5px;
    line-height: 70px;
  }

  .hero__subtitle {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.8px;
  }

  .hero__main-title {
    left: 24px;
  }

  .hero__main-title-ja {
    font-size: 36px;
  }

  .hero__main-title-en {
    font-size: 14px;
  }

  .section {
    padding: 48px 0;
  }

  .section__title {
    font-size: 20px;
  }

  /* Message */
  .message {
    padding: 56px 0;
  }

  .message__image-wrap {
    width: 200px;
    height: 250px;
  }

  .message__lead {
    font-size: 18px;
  }

  .message__body {
    font-size: 14px;
  }

  .message__conclusion {
    font-size: 16px;
  }

  /* Message New */
  .message-new {
    flex-direction: column;
  }

  .message-new__image-wrap {
    width: 100%;
    max-width: none;
    height: 400px;
  }

  .message-new__content {
    flex-direction: column;
    padding: 40px 20px;
  }

  .message-new__text p {
    font-size: 16px;
    line-height: 1.9;
  }

  .message-new__text p.message-new__author {
    font-size: 28px;
    line-height: 1.6;
  }

  .message-new__vertical {
    writing-mode: horizontal-tb;
    margin-left: 0;
    margin-top: 40px;
    text-align: center;
  }

  .message-new__vertical-text {
    font-size: 32px;
    line-height: 1.4;
    display: inline;
  }

  .message-new__vertical-text:first-child {
    margin-bottom: 0;
  }

  /* Method */
  .method__lead {
    font-size: 16px;
  }

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

  .method__arrow {
    transform: rotate(90deg);
    width: 30px;
  }

  .method__elements-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto;
  }

  .method__quote {
    padding: 24px 20px;
    font-size: 14px;
  }

  /* Method New */
  .method-new {
    padding: 80px 0 60px;
  }

  .method-new__decoration {
    display: none;
  }

  .method-new__inner {
    padding: 0 20px;
  }

  .method-new__header {
    margin-bottom: 48px;
  }

  .method-new__title {
    font-size: 32px;
    line-height: 1.4;
  }

  .method-new__subtitle {
    font-size: 32px;
    line-height: 1.4;
  }

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

  .method-new__image-wrap {
    width: 100%;
  }

  .method-new__text p {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 24px;
  }

  /* Testimonials */
  .testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  /* Staff */
  .staff__grid {
    grid-template-columns: 1fr;
    max-width: 350px;
    margin: 0 auto;
  }

  /* Staff New */
  /* ===== Staff SP ===== */
  .staff-new {
    padding: 50px 0 !important;
  }

  .staff-new__header {
    margin-bottom: 50px;
    padding: 0 40px;
  }

  .staff-new__title {
    font-size: 36px !important;
    line-height: 55px !important;
    font-weight: 300;
  }

  .staff-new__subtitle {
    font-size: 16px !important;
    line-height: 35px !important;
    font-weight: 500;
  }

  .staff-new__grid {
    flex-direction: column;
    align-items: center;
    gap: 40px !important;
    padding: 0 25px !important;
  }

  .staff-card-new {
    width: 340px !important;
    max-width: 340px;
  }

  .staff-card-new__image-wrap {
    width: 300px !important;
    height: 300px !important;
    border-radius: 0;
  }

  .staff-card-new__content {
    padding: 20px !important;
  }

  .staff-card-new__name {
    font-size: 24px !important;
    line-height: 46px !important;
  }

  .staff-card-new__role {
    font-size: 16px !important;
    line-height: 46px !important;
  }

  .staff-card-new__description {
    font-size: 20px !important;
    line-height: 36px !important;
    font-weight: 400;
  }

  .staff-card-new__book-link {
    font-size: 20px !important;
    line-height: 45px !important;
  }

  .staff-new__more {
    width: 311px !important;
    height: 73px !important;
    font-size: 18px !important;
    font-weight: 700;
    margin: 50px auto 0 !important;
  }

  /* Recruit */
  .recruit {
    padding: 60px 0 80px;
  }

  .recruit__title {
    font-size: 36px;
    line-height: 1.4;
    margin-bottom: 30px;
  }

  .recruit__image-wrap {
    margin-bottom: 30px;
  }

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

  /* Achievements */
  .achievements__stats {
    flex-direction: column;
    gap: 32px;
  }

  .achievement-item__number {
    font-size: 36px;
  }

  .achievement-item__unit {
    font-size: 18px;
  }

  /* CTA */
  .cta {
    padding: 56px 0;
  }

  .cta__title {
    font-size: 20px;
  }

  .cta__buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta__btn {
    width: 100%;
    max-width: 260px;
  }

  /* ===== Philosophy SP ===== */
  .about-philosophy {
    padding: 50px 0 !important;
  }

  .about-philosophy__header {
    margin: 0 auto 30px;
    padding: 0 14px;
  }

  .about-philosophy__title {
    font-size: 36px !important;
    line-height: 55px !important;
    font-weight: 300;
    margin-bottom: 30px !important;
  }

  .about-philosophy__rinen p {
    font-size: 24px !important;
    line-height: 40px !important;
    letter-spacing: 0.72px !important;
    text-align: center;
  }

  .about-philosophy__body {
    padding: 0 40px;
  }

  .about-philosophy__body p {
    font-size: 16px !important;
    line-height: 35px !important;
    font-weight: 700;
    margin-bottom: 30px !important;
  }

  /* ===== Video SP ===== */
  .about-video {
    padding: 50px 14px !important;
    background: #F7F3E9;
  }

  .about-video__title {
    font-size: 36px !important;
    line-height: 55px !important;
    font-weight: 300;
    margin-bottom: 30px !important;
  }

  .about-video__player {
    width: 100% !important;
    height: 203px !important;
  }

  /* ===== Recruit SP ===== */
  .recruit {
    padding: 30px 0 !important;
  }

  .recruit__decoration {
    width: 249px;
    left: -30px;
    top: 36px;
  }

  .recruit__title {
    font-size: 32px !important;
    line-height: 46px !important;
    font-weight: 300;
    margin-bottom: 20px !important;
    padding: 0 40px;
  }

  .recruit__image-wrap {
    max-width: 310px;
    margin-bottom: 10px;
  }

  /* ===== CTA SP ===== */
  .section.cta-new {
    padding: 50px 0 !important;
    margin: 0 !important;
    gap: 10px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .cta-new__buttons {
    flex-direction: column;
    gap: 10px !important;
    width: 100%;
  }

  .cta-new__btn {
    width: 100% !important;
    max-width: none !important;
    height: 120px !important;
    font-size: 24px !important;
    line-height: 54px !important;
  }

  .cta-new__download {
    width: 100% !important;
    max-width: none !important;
    height: 148px !important;
    padding: 18px 30px !important;
  }

  .cta-new__download-label {
    font-size: 20px !important;
    line-height: 30px !important;
    font-weight: 500;
  }

  .cta-new__download-link {
    font-size: 24px !important;
    line-height: 54px !important;
    white-space: nowrap;
  }

  .cta-new__download-icon {
    width: 21px !important;
    height: 26px !important;
  }

  /* ===== Story Button SP ===== */
  .about-story-btn {
    padding: 20px 40px 50px !important;
    background: #fffbf1;
  }

  .about-story-btn__link {
    width: 311px !important;
    height: 73px !important;
    font-size: 18px !important;
    font-weight: 700;
  }

  /* ===== About Intro SP ===== */
  .about-intro {
    position: relative;
    height: auto !important;
    overflow: visible !important;
    background: #fffbf1;
    padding: 10px 40px 50px;
  }

  .about-intro__bg {
    position: relative !important;
    width: 310px !important;
    height: 216px !important;
    object-fit: cover;
  }

  .about-intro__overlay {
    display: none;
  }

  .about-intro__content {
    position: relative !important;
    padding: 20px 0 0 !important;
    height: auto !important;
    overflow-y: visible !important;
    max-width: 310px;
  }

  .about-intro__content p {
    font-size: 14px !important;
    line-height: 26px !important;
    font-weight: 500;
    margin-bottom: 1em;
  }

  .about-intro__link {
    font-size: 16px !important;
    line-height: 28px !important;
  }

  /* ===== Catchphrase SP ===== */
  .about-catchphrase {
    padding: 80px 40px 20px !important;
  }

  .about-catchphrase__leaf {
    left: -112px;
    top: 0;
    width: 299px;
    height: auto;
  }

  .about-catchphrase__title {
    font-size: 36px !important;
    line-height: 55px !important;
    font-weight: 300;
    text-align: left;
  }

  /* Footer モバイル */
}

/* =====================================================
   Small Mobile (480px以下)
   ===================================================== */
