/*
Theme Name: Lightning Child
Theme URI: 
Template: lightning
Description: 
Author: 
Tags: 
Version: 0.6.0
*/

/**
 * ワークアリーナ デザインシステム
 * 共通のカラー、フォントサイズ、グラデーションを定義
 */

/* ========================================
   WordPress管理バー対策
   ======================================== */
body.admin-bar .hashikake-navi {
  top: 32px; /* WordPress管理バーの高さ分下げる */
}

/* モバイル表示時の管理バー対策 */
@media screen and (max-width: 782px) {
  body.admin-bar .hashikake-navi {
    top: 46px; /* モバイル時の管理バーは高さが異なる */
  }
}

/* ページ全体の上部余白を調整（管理バーがある場合） */
body.admin-bar .hashikake-news-page-header,
body.admin-bar .hashikake-single-page-header {
  margin-top: 56px; /* 72px（ナビ） + 32px（管理バー） */
}

:root {
    /* ========== カラーパレット ========== */
    
    /* プライマリカラー */
    --color-primary-pink: #E37997;
    --color-primary-blue: #489FD7;
    --color-primary-yellow: #F5C639;
    
    /* テキストカラー */
    --color-text-dark: #3D3D3D;
    --color-text-white: #FFFFFF;
    
    /* 背景カラー */
    --color-bg-light-gray: #DADADA;
    --color-bg-white: #FFFFFF;
    
    /* ========== グラデーション ========== */
    
    /* メイングラデーション（ナビゲーション背景） */
    --gradient-primary: linear-gradient(87.4718deg, rgb(227, 121, 151) 0%, rgb(72, 159, 215) 100%);
    
    /* テキストグラデーション（ボタンテキスト） */
    --gradient-text: linear-gradient(84.656deg, rgb(227, 121, 151) 0%, rgb(72, 159, 215) 100%);
    
    /* 背景グラデーション（透明度付き） */
    --gradient-overlay: linear-gradient(88.4444deg, rgba(227, 121, 151, 0.8) 0%, rgba(72, 159, 215, 0.8) 100%);
    
    /* ========== フォントファミリー ========== */

    --font-primary: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-zen-kaku: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
    --font-inter: 'Inter', 'Noto Sans JP', sans-serif;
    --font-futura: 'Futura', sans-serif;

    /* ========== フォントサイズ ========== */
    
    /* 見出し */
    --font-size-heading-xxl: 140px;  /* 背景テキスト（ABOUT等） */
    --font-size-heading-xl: 72px;    /* メインヘッドライン（施設見学） */
    --font-size-heading-lg: 40px;    /* セクションタイトル */
    --font-size-heading-md: 32px;    /* サブヘッドライン */
    --font-size-heading-sm: 28px;    /* 小見出し */
    --font-size-heading-xs: 24px;    /* 最小見出し */
    
    /* 本文 */
    --font-size-body-lg: 18px;       /* 本文大 */
    --font-size-body-md: 16px;       /* 本文中 */
    --font-size-body-sm: 14px;       /* 本文小 */
    --font-size-body-xs: 12px;       /* 本文最小 */
    
    /* ボタン */
    --font-size-button-lg: 32px;     /* ボタン大 */
    --font-size-button-md: 28px;     /* ボタン中 */
    --font-size-button-sm: 20px;     /* ボタン小 */
    
    /* ========== 間隔・余白 ========== */
    
    --spacing-xs: 8px;
    --spacing-sm: 12px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-xxl: 56px;
    
    /* ========== ボーダー ========== */
    
    --border-width: 6px;
    --border-radius-full: 80px;
    --border-radius-md: 12px;
    --border-radius-sm: 8px;
    
    /* ========== シャドウ ========== */
    
    --shadow-sm: 0px 0px 24px rgba(0, 0, 0, 0.15);
    --shadow-md: 0px 8px 32px rgba(0, 0, 0, 0.25);
    
    /* ========== トランジション ========== */
    
    --transition-default: all 0.3s ease;
}
/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

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

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

.br-pc {
    display: block;
}

.br-sp {
    display: none;
}

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

    .br-sp {
        display: block;
    }
}

.site-body {
  padding: 0 !important;
}
@media (min-width: 992px) {
    .site-body {
        padding: 0 !important;
    }
}

@media (min-width: 768px) {
    .site-body {
        padding: 0 !important;
    }
}

.container {
    max-width: 2560px;
    margin: 0 auto;
    padding: 0;
}

.site-header {
    display: none;
}

/* パンくずリスト */
.hashikake-company-breadcrumb {
  background: white;
  width: 100%;
  height: 37px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 40px;
}
.hashikake-company-breadcrumb-item {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 14px;
  color: #3d3d3d;
  text-decoration: none;
  margin: 0;
}
.hashikake-company-breadcrumb-current {
  color: #489fd7;
}

/** ナビゲーション（固定ヘッダー） **/
.hashikake-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: white;
  z-index: 50;
  box-shadow: 0px 0px 16px 0px rgba(0,0,0,0.1);
}
.hashikake-nav-container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 40px;
}
.hashikake-nav-logo-wrap {
  height: 72px;
  display: flex;
  align-items: center;
}
.hashikake-nav-logo {
  height: 38px;
  width: 200px;
  position: relative;
}
.hashikake-nav-logo img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.hashikake-nav-right {
  display: flex;
  gap: 40px;
  align-items: center;
}
.hashikake-nav-menu {
  display: flex;
  gap: 24px;
  align-items: center;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 18px;
  color: black;
}
.hashikake-nav-menu p {
  margin: 0;
  cursor: pointer;
  transition: color 0.3s;
}
.hashikake-nav-menu p:hover {
  color: #e37997;
}
.hashikake-nav-buttons {
  display: flex;
  align-items: center;
}
.hashikake-nav-btn-visit {
  background: #489fd7;
  padding: 24px;
  min-width: 168px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
}
.hashikake-nav-btn-visit:hover {
  background: #3d8cc4;
}
.hashikake-nav-btn-contact {
  background: #e37997;
  padding: 24px;
  min-width: 168px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
}
.hashikake-nav-btn-contact:hover {
  background: #d66882;
}
.hashikake-nav-btn-text {
  font-family: var(--font-primary);
  font-weight: bold;
  font-size: 20px;
  color: white;
  margin: 0;
}

/* ヘッダー */
.header {
    background-color: #ffffff;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 8px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ロゴコンテナ */
.logo {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 160px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .header {
        padding: 8px 16px;
    }
}

/* HOME */
/* ヒーローセクション（FV） */
.hashikake-hero {
  position: relative;
  height: 1280px;
  width: 100%;
  overflow: hidden;
  margin-top: 56px;
}
.hashikake-hero-bg {
  position: absolute;
  inset: 0;
}
.hashikake-hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hashikake-hero-container {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 280px;
    width: fit-content;
    height: auto;
    align-items: center;
}
.hashikake-hero-logo {
  width: 320px;
  height: 200px;
}
.hashikake-hero-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hashikake-hero-text {
  width: 560px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: center;
}
.hashikake-hero-text p {
  font-family: var(--font-primary);
  font-weight: bold;
  font-size: 40px;
  color: black;
  line-height: 1.6;
  letter-spacing: 0.8px;
  margin: 0;
}
.hashikake-hero-text-highlight {
  height: 64px;
  width: 100%;
  position: relative;
}
.hashikake-hero-text-highlight-bg {
  position: absolute;
  background: #e37997;
  height: 60px;
  left: 0;
  top: 3px;
  width: 535px;
}
.hashikake-hero-text-highlight p {
  position: absolute;
  font-family: var(--font-primary);
  font-weight: bold;
  font-size: 40px;
  color: white;
  line-height: 1.6;
  left: calc(50% - 259.5px);
  top: 0;
  letter-spacing: 0.8px;
  margin: 0;
}
.hashikake-hero-text-highlight2 {
  height: 64px;
  width: 384px;
  position: relative;
}
.hashikake-hero-text-highlight2-bg {
  position: absolute;
  background: #e37997;
  height: 60px;
  left: 0;
  top: 2px;
  width: 384px;
}
.hashikake-hero-text-highlight2 p {
  position: absolute;
  font-family: var(--font-primary);
  font-weight: bold;
  font-size: 40px;
  color: white;
  line-height: 1.6;
  left: calc(50% - 184px);
  top: 0;
  letter-spacing: 0.8px;
  margin: 0;
}

/* ============================================
   新しいファーストビュー Version 2 - Figma忠実再現
   ============================================ */

.hashikake-fv-v2 {
    position: relative;
    width: 100%;
    height: 760px;
    overflow: hidden;
    margin-top: 56px;
    z-index: 0;
}

/* 背景画像スライドショー */
.hashikake-fv-v2-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hashikake-fv-v2-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hashikake-fv-v2-slide.active {
    opacity: 1;
    z-index: 1;
}

.hashikake-fv-v2-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.img-fv-pc {
    display: block;
}
.img-fv-sp {
    display: none;
}

/* グラデーションオーバーレイ */
.hashikake-fv-v2-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(89.0481deg, #E37997 0%, #489FD7 100%);
    opacity: 0.7;
    z-index: 2;
}

/* ロゴ（左上） */
.hashikake-fv-v2-logo {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 3;
    width: 246px;
    height: 154px;
    filter: drop-shadow(0px 0px 40px rgba(0, 0, 0, 0.15));
    opacity: 0;
    animation: hashikake-fv-v2-fadeIn 1.5s ease-out forwards;
}

.hashikake-fv-v2-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes hashikake-fv-v2-fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* タイトルラッパー（右側中央） */
.hashikake-fv-v2-title-wrapper {
    position: absolute;
    top: 50%;
    right: 6%;
    transform: translate(0, -56%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    width: fit-content;
    mix-blend-mode: lighten;
    gap: 32px;
}

/* タイトルの各行 */
.hashikake-fv-v2-title-line {
    font-family: var(--font-zen-kaku);
    font-weight: 900;
    font-size: 73px;
    line-height: 1.0;
    letter-spacing: 6px;
    color: #FFFFFF;
    opacity: 0;
    position: relative;
}

/* テキストのスタイル */
.hashikake-fv-v2-text {
    position: relative;
    z-index: 2;
}

/* グラデーションテキスト */
.hashikake-fv-v2-gradient-text {
    background: linear-gradient(86.1856deg, #E37997 0%, #489FD7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}
/* グラデーションテキスト（左から右に表示される） */
.hashikake-fv-v2-gradient-text {
    background: linear-gradient(86.1856deg, #E37997 0%, #489FD7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    z-index: 3;
    clip-path: inset(0 100% 0 0); /* 最初は右側を全部カット（非表示） */
}

/* ハイライト背景のコンテナ */
.hashikake-fv-v2-highlight {
    position: relative;
    display: inline-block;
}

/* ハイライト背景 */
.hashikake-fv-v2-highlight-bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 80px;
    background: #FFFFFF;
    width: 0;
    z-index: 1;
    overflow: hidden;
}

/* 「スポーツの力」の背景サイズ */
.hashikake-fv-v2-highlight-sports .hashikake-fv-v2-highlight-bg {
    animation: hashikake-fv-v2-expandWidth 0.6s ease-in-out forwards;
    animation-delay: 1.5s;
}
/* 「スポーツの力」のグラデーション表示（左から右） */
.hashikake-fv-v2-highlight-sports .hashikake-fv-v2-gradient-text {
    animation: hashikake-fv-v2-revealLeftToRight 0.6s ease-out forwards;
    animation-delay: 1.3s; /* 背景と同じタイミング */
}
/* 「可能性」のグラデーション表示（左から右） */
.hashikake-fv-v2-highlight-possibility .hashikake-fv-v2-gradient-text {
    animation: hashikake-fv-v2-revealLeftToRight 0.6s ease-out forwards;
    animation-delay: 2.6s; /* 背景と同じタイミング */
}

/* 「取り残されない」のグラデーション表示（左から右） */
.hashikake-fv-v2-highlight-notleft .hashikake-fv-v2-gradient-text {
    animation: hashikake-fv-v2-revealLeftToRight 0.6s ease-out forwards;
    animation-delay: 3.2s; /* 背景と同じタイミング */
}

@keyframes hashikake-fv-v2-revealLeftToRight {
    from {
        clip-path: inset(0 100% 0 0); /* 右側100%カット（非表示） */
    }
    to {
        clip-path: inset(0 0 0 0); /* カットなし（全表示） */
    }
}

@keyframes hashikake-fv-v2-expandWidth {
    from {
        width: 0;
    }
    to {
        width: 474.327px;
    }
}

/* 「可能性」の背景サイズ */
.hashikake-fv-v2-highlight-possibility .hashikake-fv-v2-highlight-bg {
    animation: hashikake-fv-v2-expandWidthPossibility 0.6s ease-in-out forwards;
    animation-delay: 1.8s;
}

@keyframes hashikake-fv-v2-expandWidthPossibility {
    from {
        width: 0;
    }
    to {
        width: 236.826px;
    }
}

/* 「取り残されない」の背景サイズ */
.hashikake-fv-v2-highlight-notleft .hashikake-fv-v2-highlight-bg {
    animation: hashikake-fv-v2-expandWidthNotLeft 0.6s ease-in-out forwards;
    animation-delay: 2.2s;
}

@keyframes hashikake-fv-v2-expandWidthNotLeft {
    from {
        width: 0;
    }
    to {
        width: 561px;
    }
}

/* ハイライトテキスト */
.hashikake-fv-v2-highlight-text {
    position: relative;
    z-index: 2;
}
.hashikake-fv-v2-highlight-text {
    position: absolute;
    top: 0;
    left: 0;
}
/* 白いテキスト（最初に表示される） */
.hashikake-fv-v2-text-white {
    color: #FFFFFF;
    position: relative;
    z-index: 2;
}

/* 各行のアニメーション（スライドイン） */
.hashikake-fv-v2-title-line-1 {
    animation: hashikake-fv-v2-slideInFromLeft 0.8s ease-out 0.3s forwards;
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 8px;
}

.hashikake-fv-v2-title-line-2 {
    animation: hashikake-fv-v2-slideInFromLeft 0.8s ease-out 0.6s forwards;
}

.hashikake-fv-v2-title-line-3 {
    animation: hashikake-fv-v2-slideInFromLeft 0.8s ease-out 0.9s forwards;
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 8px;
}

.hashikake-fv-v2-title-line-4 {
    animation: hashikake-fv-v2-slideInFromLeft 0.8s ease-out 1.2s forwards;
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 8px;
}

.hashikake-fv-v2-title-line-5 {
    animation: hashikake-fv-v2-slideInFromLeft 0.8s ease-out 1.5s forwards;
}

@keyframes hashikake-fv-v2-slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* レスポンシブ対応 */
@media (max-width: 1023px) {
    .hashikake-fv-v2 {
        height: 760px;
    }

    .hashikake-fv-v2-logo {
        width: 200px;
        height: 125px;
    }

    .hashikake-fv-v2-title-wrapper {
        /* top: 200px;
        right: 40px; */
        width: fit-content;
    }

    .hashikake-fv-v2-title-line {
        font-size: 56px;
        letter-spacing: 5.6px;
    }

    .hashikake-fv-v2-highlight-bg {
        height: 65px;
    }

    .hashikake-fv-v2-highlight-sports .hashikake-fv-v2-highlight-bg {
        animation: hashikake-fv-v2-expandWidthTablet 0.6s ease-out forwards;
        animation-delay: 1.3s;
    }

    @keyframes hashikake-fv-v2-expandWidthTablet {
        from {
            width: 0;
        }
        to {
            width: 364px;
        }
    }

    .hashikake-fv-v2-highlight-possibility .hashikake-fv-v2-highlight-bg {
        animation: hashikake-fv-v2-expandWidthPossibilityTablet 0.6s ease-out forwards;
        animation-delay: 2.6s;
    }

    @keyframes hashikake-fv-v2-expandWidthPossibilityTablet {
        from {
            width: 0;
        }
        to {
            width: 182px;
        }
    }

    .hashikake-fv-v2-highlight-notleft .hashikake-fv-v2-highlight-bg {
        animation: hashikake-fv-v2-expandWidthNotLeftTablet 0.6s ease-out forwards;
        animation-delay: 3.2s;
    }

    @keyframes hashikake-fv-v2-expandWidthNotLeftTablet {
        from {
            width: 0;
        }
        to {
            width: 430px;
        }
    }
}

@media (max-width: 768px) {
    .hashikake-fv-v2 {
        height: 760px;
    }

    .hashikake-fv-v2-logo {
        width: 240px;
        height: auto;
        top: 220px;
        left: 50%;
        transform: translate(-50%, 0);
    }

    .hashikake-fv-v2-title-wrapper {
        position: absolute;
        top: 72%;
        left: 50%;
        width: max-content;
        transform: translate(-50%, -50%);
        gap: 16px;
    }

    .hashikake-fv-v2-title-line {
        font-size: 32px;
        letter-spacing: 3.2px;
    }

    .hashikake-fv-v2-highlight-bg {
        height: 36px;
        top: 0px;
        margin-left: -4px;
    }

    .hashikake-fv-v2-highlight-sports .hashikake-fv-v2-highlight-bg {
        animation: hashikake-fv-v2-expandWidthMobile 0.6s ease-out forwards;
        animation-delay: 1.3s;
    }

    @keyframes hashikake-fv-v2-expandWidthMobile {
        from {
            width: 0;
        }
        to {
            width: 220px;
        }
    }

    .hashikake-fv-v2-highlight-possibility .hashikake-fv-v2-highlight-bg {
        animation: hashikake-fv-v2-expandWidthPossibilityMobile 0.6s ease-out forwards;
        animation-delay: 2.6s;
    }

    @keyframes hashikake-fv-v2-expandWidthPossibilityMobile {
        from {
            width: 0;
        }
        to {
            width: 110px;
        }
    }

    .hashikake-fv-v2-highlight-notleft .hashikake-fv-v2-highlight-bg {
        animation: hashikake-fv-v2-expandWidthNotLeftMobile 0.6s ease-out forwards;
        animation-delay: 3.2s;
    }

    @keyframes hashikake-fv-v2-expandWidthNotLeftMobile {
        from {
            width: 0;
        }
        to {
            width: 250px;
        }
    }
}

@media (max-width: 480px) {
    .img-fv-pc {
        display: none;
    }
    .img-fv-sp {
        display: block;
    }
    .hashikake-fv-v2 {
        height: 720px;
    }
    .hashikake-fv-v2-logo {
        width: 280px;
        top: 16%;
    }
    .hashikake-fv-v2-title-wrapper {
        top: 70%;
    }
}

.hashikake-hero-news {
    position: relative;
    width: 100%;
    padding: 72px 24px 140px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    opacity: 1;
    background-image: linear-gradient(88.6604deg, rgb(227, 121, 151) 0%, rgb(72, 159, 215) 100%);
}
.hashikake-hero-news-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hashikake-hero-news-title {
  font-family: var(--font-primary);
  font-weight: bold;
  font-size: 40px;
  text-align: center;
  color: white;
  margin: 0 0 24px 0;
}
.hashikake-hero-news-list {
  max-width: 1000px;
  width: 100%;
  display: flex;
  flex-direction: column;
  border-top: 1px solid white;
}
.hashikake-hero-news-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid white;
  cursor: pointer;
  transition: background 0.3s;
}
.hashikake-hero-news-item:hover {
  background: rgba(255,255,255,0.1);
}
.hashikake-hero-news-item-content {
  display: flex;
  gap: 24px;
  align-items: center;
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  color: white;
}
.hashikake-hero-news-item-date {
  font-family: var(--font-futura);
  margin: 0;
}
.hashikake-hero-news-item-title {
  font-family: var(--font-primary);
  margin: 0;
}
.hashikake-hero-cta {
  position: absolute;
  left: 50%;
  top: -52px;
  transform: translateX(-50%);
  background: white;
  padding: 24px 40px;
  border-radius: 80px;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 24px 0px rgba(0,0,0,0.1);
  border: 6px solid #e37997;
  cursor: pointer;
  transition: transform 0.3s;
}
.hashikake-hero-cta:hover {
  transform: translateX(-50%) scale(1.05);
}
.hashikake-hero-cta-text {
  font-family: var(--font-primary);
  font-weight: bold;
  font-size: 28px;
  margin: 0;
  background-image: linear-gradient(84.6365deg, rgb(227, 121, 151) 0%, rgb(72, 159, 215) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hashikake-news-btn {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: flex-end;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
    border: none;
    width: fit-content;
    flex-direction: row;
    width: 100%;
    max-width: 1000px;
    margin-top: 24px;
}
.hashikake-news-btn:hover {
    opacity: .7;
}

@media (max-width: 768px) {
  .hashikake-hero-news-title {
    font-size: 24px;
  }
  .hashikake-hero-news-item-content {
    gap: 16px;
    font-size: 15px;
  }
  .hashikake-news-btn p {
    font-size: 16px;
  }
}

/* ============================================
   新しいファーストビュー - スライドショー対応
   ============================================ */

.hashikake-fv {
    position: relative;
    width: 100%;
    height: 760px;
    overflow: hidden;
    margin-top: 56px;
    z-index: 0;
}

/* 背景画像スライドショー */
.hashikake-fv-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hashikake-fv-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hashikake-fv-slide.active {
    opacity: 1;
    z-index: 1;
}

.hashikake-fv-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 初回のスライドのみズームアニメーション */
.hashikake-fv-slide:first-child {
    animation: slideBackgroundInitial 2s ease-out forwards;
}

/* 初回ズームアニメーション */
@keyframes slideBackgroundInitial {
    from {
        opacity: 0;
        transform: scale(1.1);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* グラデーションオーバーレイ */
.hashikake-fv-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(89.0481deg, #E37997 0%, #489FD7 100%);
    opacity: 0.7;
    z-index: 2;
}

/* メインコンテンツ（ロゴ＋タイトル） */
.hashikake-fv-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 16px;
    opacity: 0;
    animation: fadeIn 1.5s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ロゴ */
.hashikake-fv-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateX(-344px); /* (ロゴ幅420px + gap16px + タイトル幅652px) / 2 = 544px - ロゴ幅半分210px + 10px調整 = -344px */
    z-index: 3;
    width: 420px;
    height: 263px;
    flex-shrink: 0;
    filter: drop-shadow(0px 0px 40px rgba(0, 0, 0, 0.15));
    opacity: 0;
    animation: fadeIn 1.5s ease-out forwards;
}

.hashikake-fv-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* タイトルラッパー */
.hashikake-fv-title-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateX(226px); /* (ロゴ幅420px + gap16px + タイトル幅652px) / 2 = 544px - タイトル幅半分326px = 218px + 8px調整 = 226px */
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: fit-content;
    opacity: 0;
    animation: fadeIn 1.5s ease-out forwards;
    mix-blend-mode: lighten; /* ← ここにブレンド適用！ */
}

/* タイトルの各行 */
.hashikake-fv-title-line {
    opacity: 0;
}

/* 1行目のアニメーション */
.hashikake-fv-title-line-1 {
    animation: slideInFromLeft 0.8s ease-out 0.3s forwards;
}

/* 2行目のアニメーション */
.hashikake-fv-title-line-2 {
    animation: slideInFromLeft 0.8s ease-out 0.6s forwards;
}

/* 3行目のアニメーション */
.hashikake-fv-title-line-3 {
    animation: slideInFromLeft 0.8s ease-out 0.9s forwards;
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 1行目: グラデーション背景 */
.hashikake-fv-title-gradient-bg {
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    padding: 0 8px;
    background: #FFFFFF;
    transform: skewY(-5deg) skewX(-8deg);
}

.hashikake-fv-title-large {
    font-size: 100px;
    letter-spacing: -5.04px;
    font-weight: 900;
    line-height: 1.2;
}

.hashikake-fv-title-small {
    font-weight: 900;
    font-size: 48px;
    line-height: 1.2;
}

/* 2行目: 白背景 */
.hashikake-fv-title-white-bg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 0 4px 16px;
    background: #FFFFFF;
    transform: skewY(-5deg) skewX(-8deg);
}

/* 3行目: 白背景（フル幅） */
.hashikake-fv-title-white-bg-full {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px 0 4px 16px;
    background: #FFFFFF;
    width: fit-content;
    transform: skewY(-5deg) skewX(-8deg);
}

.hashikake-fv-title-color span {
    background: linear-gradient(83.33deg, #e37997 0%, #489fd7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   お知らせ＋CTAセクション
   ============================================ */

.hashikake-fv-cta {
    position: relative;
    width: 100%;
    background: linear-gradient(88.6604deg, #E37997 0%, #489FD7 100%);
    opacity: 0.9;
    padding: 72px 24px 180px;
    margin-top: -100px;
}

.hashikake-fv-cta-inner {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

/* お知らせ */
.hashikake-fv-news {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.hashikake-fv-news-title {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 40px;
    line-height: normal;
    color: #FFFFFF;
    text-align: center;
}

.hashikake-fv-news-list {
    list-style: none;
    width: 1000px;
    display: flex;
    flex-direction: column;
}

.hashikake-fv-news-item {
    border-top: 1px solid #FFFFFF;
    border-bottom: 1px solid #FFFFFF;
}

.hashikake-fv-news-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    text-decoration: none;
    transition: opacity 0.3s;
}

.hashikake-fv-news-link:hover {
    opacity: 0.8;
}

.hashikake-fv-news-content {
    display: flex;
    align-items: center;
    gap: 24px;
}

.hashikake-fv-news-date {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: normal;
    color: #FFFFFF;
    flex-shrink: 0;
}

.hashikake-fv-news-text {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 18px;
    line-height: normal;
    color: #FFFFFF;
    text-align: center;
}

.hashikake-fv-news-link svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

/* CTAボタン */
.hashikake-fv-cta-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 24px 40px;
    background: #FFFFFF;
    border-radius: 80px;
    border: 6px solid #E37997;
    box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    transition: opacity 0.3s, transform 0.3s;
    margin-top: 24px;
}

.hashikake-fv-cta-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.hashikake-fv-cta-text {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 28px;
    line-height: normal;
    background: linear-gradient(84.6365deg, #E37997 0%, #489FD7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hashikake-fv-cta-btn svg {
    width: 12px;
    height: 20px;
    flex-shrink: 0;
}

/* ============================================
   レスポンシブ対応
   ============================================ */

/* タブレット */
@media (max-width: 1024px) {
    .hashikake-fv {
        height: 600px;
    }

    .hashikake-fv-content {
        flex-direction: column;
        gap: 24px;
    }

    .hashikake-fv-logo {
        width: 320px;
        height: 200px;
    }

    .hashikake-fv-title-wrapper {
        width: 100%;
        max-width: 500px;
    }

    .hashikake-fv-title-large {
        font-size: 60px;
    }

    .hashikake-fv-title-small,
    .hashikake-fv-title-white-bg span,
    .hashikake-fv-title-white-bg-full span {
        font-size: 32px;
    }

    .hashikake-fv-news-list {
        width: 100%;
        max-width: 800px;
        padding: 0 20px;
    }
}

/* モバイル */
@media (max-width: 768px) {
    .hashikake-fv {
        height: 500px;
    }

    .hashikake-fv-logo {
        width: 240px;
        height: 150px;
    }

    .hashikake-fv-title-wrapper {
        max-width: 90%;
    }

    .hashikake-fv-title-large {
        font-size: 40px;
    }

    .hashikake-fv-title-small,
    .hashikake-fv-title-white-bg span,
    .hashikake-fv-title-white-bg-full span {
        font-size: 24px;
    }

    .hashikake-fv-cta {
        padding: 48px 16px 120px;
    }

    .hashikake-fv-news-title {
        font-size: 32px;
    }

    .hashikake-fv-news-list {
        max-width: 100%;
        padding: 0 16px;
    }

    .hashikake-fv-news-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .hashikake-fv-news-date,
    .hashikake-fv-news-text {
        font-size: 14px;
    }

    .hashikake-fv-news-text {
        text-align: left;
    }

    .hashikake-fv-cta-btn {
        padding: 16px 24px;
    }

    .hashikake-fv-cta-text {
        font-size: 20px;
    }
}

/* Aboutセクション */
.hashikake-about {
  width: 100%;
  position: relative;
  margin-top: -100px;
}
.hashikake-about-curve {
  height: 100px;
  width: 100%;
}
.hashikake-about-content {
  background: white;
  position: relative;
  padding: 40px 0 180px;
}
.hashikake-about-bg {
  position: absolute;
  inset: 0;
  opacity: 0.7;
  overflow: hidden;
  pointer-events: none;
}
.hashikake-about-bg img {
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
    object-fit: cover;
}
.hashikake-about-inner {
    display: flex;
    position: relative;
    gap: 80px;
    flex-direction: column;
    align-items: center;
}
.hashikake-section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 80px;
}
.hashikake-section-title-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 36px;
  text-align: center;
}
.hashikake-section-title-en {
  font-family: 'Futura', sans-serif;
  font-size: 140px;
  line-height: 1;
  margin: 0;
  background-image: linear-gradient(to bottom, #d5d5d5, rgba(213,213,213,0));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hashikake-section-title-jp {
  font-family: var(--font-primary);
  font-weight: bold;
  font-size: 40px;
  color: #3d3d3d;
  line-height: 1.5;
  margin: 0;
}
.hashikake-section-line {
  height: 6px;
  width: 240px;
}
.hashikake-about-container {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 24px;
}
.hashikake-about-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding-bottom: 560px;
}
.hashikake-about-logo {
  height: 200px;
  width: 320px;
}
.hashikake-about-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hashikake-about-text {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 20px;
  color: black;
  text-align: center;
  line-height: 1.8;
  letter-spacing: 1px;
}
.hashikake-about-text p {
  margin: 0;
}
.hashikake-about-text p:last-child {
  margin-bottom: 0;
}
.hashikake-btn {
  background: #e37997;
  padding: 16px 24px;
  border-radius: 80px;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
  text-decoration: none;
  border: none;
  width: fit-content;
}
.hashikake-btn:hover {
  background: #d66882;
}
.hashikake-btn-text {
  font-weight: bold;
  font-size: 18px;
  color: white;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .hashikake-about-inner {
    gap: 40px;

  }
}
@media (max-width: 480px) {
    .hashikake-about-text {
        text-align: left;
    }
}

/* サービスセクション */
.hashikake-service {
  position: relative;
  margin-top: -100px;
}
.hashikake-service-inner {
  position: relative;
  padding: 100px 0;
  background: #BADAEE;
}
.hashikake-service-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.hashikake-service-content {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-top: 80px;
}
.hashikake-service-images {
  position: relative;
  width: 440px;
  height: 520px;
  flex-shrink: 0;
}
.hashikake-service-image-wrapper {
  position: absolute;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.1);
}
.hashikake-service-image-1 {
  width: 280px;
  height: 360px;
  left: 0;
  top: 80px;
  border: 8px solid #E37997;
  z-index: 3;
}
.hashikake-service-image-2 {
  width: 280px;
  height: 360px;
  left: 80px;
  top: 40px;
  border: 8px solid #489FD7;
  z-index: 2;
}
.hashikake-service-image-3 {
  width: 280px;
  height: 360px;
  left: 160px;
  top: 0;
  border: 8px solid #F5C639;
  z-index: 1;
}
.hashikake-service-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hashikake-service-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hashikake-service-title {
  font-weight: bold;
  font-size: 40px;
  color: #3d3d3d;
  margin: 0;
  padding: 0;
  line-height: 1.5;
  border-bottom: none !important;
}
.hashikake-service-title::after {
    content: none;
}
.hashikake-service-description {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  color: #3d3d3d;
  line-height: 1.8;
  margin: 0;
}
.hashikake-service-description p {
  margin: 0 0 16px 0;
}
.hashikake-service-description p:last-child {
  margin-bottom: 0;
}

/* レスポンシブ対応 */
@media (max-width: 1023px) {
  .hashikake-service-content {
    flex-direction: column;
    gap: 24px;
  }
  .hashikake-service-images {
    width: 400px;
    height: 480px;
  }
  .hashikake-service-image-1,
  .hashikake-service-image-2,
  .hashikake-service-image-3 {
    width: 240px;
    height: 320px;
  }
  .hashikake-service-image-2 {
    left: 80px;
  }
  .hashikake-service-image-3 {
    left: 160px;
  }
}

@media (max-width: 640px) {
  .hashikake-service-images {
    width: 320px;
    height: 400px;
  }
  .hashikake-service-image-1,
  .hashikake-service-image-2,
  .hashikake-service-image-3 {
    width: 200px;
    height: 280px;
  }
  .hashikake-service-image-1 {
    left: 0;
    top: 60px;
  }
  .hashikake-service-image-2 {
    left: 60px;
    top: 30px;
  }
  .hashikake-service-image-3 {
    left: 120px;
    top: 0;
  }
  .hashikake-service-title {
    font-size: 32px;
  }
  .hashikake-service-text {
    gap: 24px;
    align-items: center;
  }
}

/* CTAセクション */
.hashikake-cta {
  position: relative;
  padding: 100px 0 180px;
  margin-bottom: -100px;
  overflow: hidden;
}
.hashikake-cta-bg {
  position: absolute;
  inset: 0;
  opacity: 0.9;
  background-image: linear-gradient(88.6604deg, rgb(227, 121, 151) 0%, rgb(72, 159, 215) 100%);
}
.hashikake-cta-inner {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.hashikake-cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}
.hashikake-cta-title {
  font-family: var(--font-primary);
  font-weight: bold;
  font-size: 48px;
  color: white;
  line-height: 1.5;
  margin: 0;
}
.hashikake-cta-description {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 20px;
  color: white;
  line-height: 1.8;
  margin: 0;
  max-width: 800px;
}
.hashikake-cta-button {
  background: white;
  padding: 24px 48px;
  border-radius: 80px;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.15);
  margin-top: 20px;
}
.hashikake-cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0px 8px 32px rgba(0, 0, 0, 0.2);
}
.hashikake-cta-button-text {
  font-family: var(--font-primary);
  font-weight: bold;
  font-size: 28px;
  margin: 0;
  background-image: linear-gradient(84.6365deg, rgb(227, 121, 151) 0%, rgb(72, 159, 215) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.5;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .hashikake-cta-title {
    font-size: 36px;
  }
  .hashikake-cta-description {
    font-size: 18px;
  }
  .hashikake-cta-button {
    padding: 20px 40px;
  }
  .hashikake-cta-button-text {
    font-size: 24px;
  }
}

@media (max-width: 640px) {
  .hashikake-cta-title {
    font-size: 28px;
  }
  .hashikake-cta-description {
    font-size: 16px;
  }
  .hashikake-cta-button {
    padding: 16px 32px;
  }
  .hashikake-cta-button-text {
    font-size: 20px;
  }
}

/* 採用情報セクション */
.hashikake-recruit {
  position: relative;
  background: white;
  padding: 100px 0 180px;
  margin-bottom: -100px;
}
.hashikake-recruit-curve {
  height: 100px;
  width: 100%;
  margin-top: -100px;
}
.hashikake-recruit-inner {
  position: relative;
  z-index: 10;
}
.hashikake-recruit-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.hashikake-recruit-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  margin-top: 80px;
}
.hashikake-recruit-text {
  text-align: center;
  max-width: 800px;
}
.hashikake-recruit-title {
  font-family: var(--font-primary);
  font-weight: bold;
  font-size: 32px;
  color: #3d3d3d;
  margin: 0 0 24px 0;
  line-height: 1.5;
}
.hashikake-recruit-description {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #666666;
  line-height: 1.8;
  margin: 0;
}
.hashikake-recruit-image {
  width: 100%;
  max-width: 800px;
  height: 400px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.1);
}
.hashikake-recruit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hashikake-recruit-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  width: 100%;
  margin-top: 20px;
}
.hashikake-recruit-card {
  background: #f8f8f8;
  padding: 40px;
  border-radius: 16px;
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.hashikake-recruit-card-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: bold;
  font-size: 24px;
  color: #3d3d3d;
  margin: 0;
  line-height: 1.5;
}
.hashikake-recruit-card-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #666666;
  line-height: 1.8;
  margin: 0;
}

/* ===================================
   採用情報詳細ページ（2カラム対応）
   =================================== */

.hashikake-single-recruit-body {
  flex: 1;
  width: 100%;
}

/* 「他の求人情報はありません」メッセージ */
.hashikake-single-other-empty {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  color: #666;
  text-align: center;
  padding: 40px 20px;
  line-height: 1.6;
}

/* 一覧へボタン（採用情報用） */
.hashikake-single-back-to-list {
  max-width: 1024px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 24px;
}

.hashikake-single-back-link {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #489fd7;
  text-decoration: none;
  transition: opacity 0.3s;
  padding: 0 16px;
}

.hashikake-single-back-link:hover {
  opacity: 0.7;
  text-decoration: underline;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .hashikake-recruit-cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .hashikake-recruit-image {
    height: 300px;
  }
  .hashikake-single-recruit-body {
    width: 100%;
  }
}

/* 企業情報 */
/* What is HASHIKAKE?（ハシカケのモットー） */
.hashikake-company-motto {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hashikake-company-motto-bg {
  position: absolute;
  inset: 0;
  opacity: 0.7;
  overflow: hidden;
}
.hashikake-company-motto-bg img {
    position: absolute;
    width: 100%;
    height: auto;
    left: 0;
    top: 0;
    object-fit: cover;
}
.hashikake-company-motto-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, white, rgba(255, 255, 255, 0));
}
.hashikake-company-motto-container {
    max-width: 1024px;
    width: 100%;
    padding: 0 24px 480px;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.hashikake-company-motto-title {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
  width: 100%;
}
.hashikake-company-motto-title-en {
  font-family: 'Futura', sans-serif;
  font-weight: bold;
  font-size: 80px;
  line-height: 90px;
  color: #489fd7;
  margin: 0;
  width: 100%;
}
.hashikake-company-motto-title-jp {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 600;
  font-size: 40px;
  color: #489fd7;
  margin: 0;
}
.hashikake-company-motto-text {
  display: flex;
  gap: 24px;
  width: 100%;
}
.hashikake-company-motto-text-col {
  flex: 1;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  line-height: 1.8;
  color: #3d3d3d;
}
.hashikake-company-motto-text-jp {
  font-size: 20px;
  letter-spacing: 1.2px;
}
.hashikake-company-motto-text-jp p {
  margin: 0;
}
.hashikake-company-motto-text-en {
  font-size: 18px;
  font-family: var(--font-futura);
}
.hashikake-company-motto-text-en p {
  margin: 0;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .hashikake-company-motto-text {
    flex-direction: column;
    gap: 32px;
  }
  .hashikake-company-motto-title-en {
    font-size: 42px;
    line-height: 1.1;
  }
  .hashikake-company-motto-title-jp {
    font-size: 24px;
  }
  .hashikake-company-motto-text-jp {
    font-size: 18px;
  }
  .hashikake-company-motto-text-en {
    font-size: 18px;
    font-family: var(--font-futura);
  }
  .hashikake-company-motto-container {
    padding: 0 24px 160px;
  }
  .hashikake-company-motto-bg img {
    position: absolute;
    width: 100%;
    height: 40%;
    left: 0;
    top: auto;
    bottom: 0;
    object-fit: cover;
  }
}

/* VISION / MISSION / VALUE（経営理念セクション） */
.hashikake-company-philosophy {
  width: 100%;
  display: flex;
  flex-direction: column;
  /* margin-bottom: -100px; */
}
.hashikake-company-philosophy-wrap {
  position: relative;
  height: 865px;
  width: 100%;
  overflow: hidden;
}
.hashikake-company-philosophy-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hashikake-company-philosophy-bg img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hashikake-company-philosophy-overlay {
  position: absolute;
  inset: 0;
}
.hashikake-company-philosophy-circle {
  position: absolute;
  mix-blend-mode: multiply;
}
.hashikake-company-philosophy-container {
  position: absolute;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.hashikake-company-philosophy-title {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hashikake-company-philosophy-title-en {
  font-family: 'Futura', sans-serif;
  font-weight: bold;
  font-size: 100px;
  line-height: 120px;
  margin: 0;
}
.hashikake-company-philosophy-title-jp {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 600;
  font-size: 40px;
  margin: 0;
}
.hashikake-company-philosophy-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-family: var(--font-primary);
  font-weight: 500;
  line-height: 1.8;
}
.hashikake-company-philosophy-text-jp {
  font-size: 20px;
  letter-spacing: 1.2px;
}
.hashikake-company-philosophy-text-jp p {
  margin: 0;
}
.hashikake-company-philosophy-text-en {
  font-size: 18px;
  font-family: var(--font-futura);
}
.hashikake-company-philosophy-text-en p {
  margin: 0;
}

/* VISION 固有スタイル */
.hashikake-company-vision .hashikake-company-philosophy-bg img {
    width: 100%;
    height: auto;
    left: 0;
    top: 0;
}
.hashikake-company-vision .hashikake-company-philosophy-overlay {
  background: rgba(227, 121, 151, 0.85);
}
.hashikake-company-vision .hashikake-company-philosophy-circle {
  width: 2251px;
  height: 1427px;
  left: -86px;
  top: 367px;
}
.hashikake-company-vision .hashikake-company-philosophy-container {
  left: 138px;
  top: 223px;
  width: 469px;
}

/* MISSION 固有スタイル */
.hashikake-company-mission .hashikake-company-philosophy-bg img {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
.hashikake-company-mission .hashikake-company-philosophy-overlay {
  background: rgba(212, 165, 26, 0.85);
}
.hashikake-company-mission .hashikake-company-philosophy-circle {
  width: 2251px;
  height: 1427px;
  left: -714px;
  top: 370px;
  transform: rotate(180deg) scaleY(-1);
}
.hashikake-company-mission .hashikake-company-philosophy-container {
  left: 738px;
  top: 174px;
  width: 610px;
}

/* VALUE 固有スタイル */
.hashikake-company-value .hashikake-company-philosophy-bg img {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
.hashikake-company-value .hashikake-company-philosophy-overlay {
  background: rgba(72, 159, 215, 0.85);
}
.hashikake-company-value .hashikake-company-philosophy-circle {
  width: 2251px;
  height: 1427px;
  left: -86px;
  top: 367px;
}
.hashikake-company-value .hashikake-company-philosophy-container {
  left: 138px;
  top: 205px;
  width: 847px;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
  .hashikake-company-philosophy-wrap {
    height: auto;
    min-height: 600px;
    padding: 80px 24px;
  }
  .hashikake-company-philosophy-container {
    position: relative !important;
    left: 0 !important;
    top: 0 !important;
    width: 100% !important;
    max-width: 800px;
    margin: 0 auto;
  }
  .hashikake-company-philosophy-title-en {
    font-size: 80px;
    line-height: 100px;
  }
  .hashikake-company-philosophy-title-jp {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .hashikake-company-philosophy-title-en {
    font-size: 56px;
    line-height: 1.1;
  }
  .hashikake-company-philosophy-title-jp {
    font-size: 24px;
  }
  .hashikake-company-philosophy-text-jp {
    font-size: 18px;
  }
  .hashikake-company-philosophy-text-en {
    font-size: 16px;
  }
}

/* MESSAGE（代表者メッセージ） */
.hashikake-company-message {
    width: 100%;
    display: flex;
    flex-direction: column;
    /* margin-bottom: -100px; */
    position: relative;
}
.hashikake-company-message-curve {
  height: 100px;
  width: 100%;
}
.hashikake-company-message-inner {
  background: white;
  width: 100%;
  padding: 40px 0 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

/* セクションタイトル（共通スタイル） */
.hashikake-company-section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hashikake-company-section-title-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 36px;
  text-align: center;
}
.hashikake-company-section-title-en {
  font-family: 'Futura', sans-serif;
  font-weight: bold;
  font-size: 140px;
  line-height: 1;
  margin: 0;
  background: linear-gradient(to bottom, #d5d5d5, rgba(213, 213, 213, 0));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hashikake-company-section-title-jp {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: bold;
  font-size: 40px;
  line-height: 1.5;
  color: #3d3d3d;
  margin: 0;
}
.hashikake-company-section-line {
  width: 240px;
  height: 6px;
}

.hashikake-company-message-container {
  max-width: 1024px;
  width: 100%;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* 画像とキャッチコピー */
.hashikake-company-message-hero {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  width: 100%;
  flex-direction: row;
}
.hashikake-company-message-img-wrap {
    position: relative;
    width: 100%;
    height: auto;
    /* flex-shrink: 0; */
    flex: 1;
}
.hashikake-company-message-img-deco-1 {
  position: absolute;
  left: 0;
  top: 184.56px;
  width: 255.13px;
  height: 226.438px;
}
.hashikake-company-message-img-deco-2 {
  position: absolute;
  left: 171.79px;
  top: 0;
  width: 255.13px;
  height: 226.438px;
}
.hashikake-company-message-img-main {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 390.166px;
  height: 383.858px;
  border-radius: 8px;
  overflow: hidden;
}
.hashikake-company-message-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hashikake-company-message-catch {
    position: relative;
    /* width: 100%; */
    /* height: auto; */
    /* flex-shrink: 0; */
    flex: 1;
}
.hashikake-company-message-catch-bg-1 {
  position: absolute;
  background: #e37997;
  height: 66px;
  width: 310px;
  left: 0;
  top: 90px;
}
.hashikake-company-message-catch-bg-2 {
  position: absolute;
  background: #489fd7;
  height: 66px;
  width: 365px;
  left: 0;
  top: 172px;
}
.hashikake-company-message-catch-text {
    position: relative;
    /* left: 4.88px; */
    /* top: 0; */
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: bold;
    font-size: 48px;
    line-height: 1.6;
    letter-spacing: 4px;
    color: #3d3d3d;
}
.hashikake-company-message-catch-text p {
  margin: 0;
}
.hashikake-company-message-catch-text .highlight {
  color: white;
}

/* メッセージ本文 */
.hashikake-company-message-body {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 1.08px;
  color: #3d3d3d;
  width: 100%;
}
.hashikake-company-message-body p {
  margin: 0 0 0 0;
}
.hashikake-company-message-body p.space {
  height: 1.8em;
}
.hashikake-company-message-body .bold {
  font-weight: bold;
}

/* プロフィールボックス */
.hashikake-company-profile-box {
  width: 100%;
  border: 1px solid #3d3d3d;
  border-radius: 8px;
  padding: 40px;
  display: flex;
  gap: 40px;
}
.hashikake-company-profile-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hashikake-company-profile-name {
  display: flex;
  gap: 16px;
  align-items: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: bold;
  color: #3d3d3d;
}
.hashikake-company-profile-position {
  font-size: 18px;
  margin: 0;
}
.hashikake-company-profile-fullname {
  font-size: 32px;
  line-height: 1.5;
  margin: 0;
}
.hashikake-company-profile-bio {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 1.08px;
  color: #3d3d3d;
}
.hashikake-company-profile-bio p {
  margin: 0;
}
.hashikake-company-profile-right {
  flex: 1;
  border-left: 1px solid #3d3d3d;
  padding-left: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hashikake-company-profile-history-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: bold;
  font-size: 18px;
  color: #3d3d3d;
  margin: 0;
}
.hashikake-company-profile-history-list {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.96px;
  color: #3d3d3d;
}
.hashikake-company-profile-history-list p {
  margin: 0;
}
.hashikake-company-profile-history-list .bullet {
  color: #489fd7;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
  .hashikake-company-profile-box {
    flex-direction: column;
  }
  .hashikake-company-profile-right {
    border-left: none;
    border-top: 1px solid #3d3d3d;
    padding-left: 0;
    padding-top: 40px;
  }
}
@media (max-width: 768px) {
  .hashikake-company-message-hero {
    gap: 24px;
    flex-direction: column;
  }
}
@media (max-width: 640px) {
  .hashikake-company-section-title-en {
    font-size: 100px;
  }
  .hashikake-company-section-title-jp {
    font-size: 32px;
  }
  .hashikake-company-message-container {
    gap: 40px;
  }
  .hashikake-company-message-hero {
    gap: 24px;
  }
  .hashikake-company-message-catch-bg-1 {
    height: 44px;
    width: 220px;
    left: 0px;
    top: 60px;
  }
  .hashikake-company-message-catch-bg-2 {
    height: 44px;
    width: 250px;
    left: 0;
    top: 116px;
  }
  .hashikake-company-message-catch-text {
    font-size: 32px;
  }
  .hashikake-company-message-body {
    font-size: 16px;
  }
  .hashikake-company-profile-box {
    padding: 24px;
  }
  .hashikake-company-profile-fullname {
    font-size: 24px;
  }
  .hashikake-company-profile-position {
    font-size: 18px;
    margin: 0;
  }
  .hashikake-company-profile-bio {
    font-size: 16px;
  }
  .hashikake-company-message-inner {
    padding: 40px 0 80px;
    gap: 40px;
  }
}

/* COMPANY（会社情報） */
.hashikake-company-info {
  width: 100%;
  background: white;
  padding: 80px 0 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}
.hashikake-company-info-container {
  max-width: 1024px;
  width: 100%;
  padding: 0 24px;
}
.hashikake-company-info-table {
    width: 100%;
    display: flex;
    flex-direction: column;
    border-left: 1px solid #dadada;
    border-right: 1px solid #dadada;
}
.hashikake-company-info-row {
  position: relative;
  width: 100%;
  display: flex;
  align-items: stretch;
  border-top: 1px solid #dadada;
  border-bottom: 1px solid #dadada;
}
.hashikake-company-info-row + .hashikake-company-info-row {
  border-top: none;
}
.hashikake-company-info-title {
  background: #badaee;
  min-width: 144px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  flex-shrink: 0;
}
.hashikake-company-info-title p {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #3d3d3d;
  text-align: center;
  margin: 0;
}
.hashikake-company-info-content {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 10px 16px;
}
.hashikake-company-info-content p {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #3d3d3d;
  margin: 0;
}

/* レスポンシブ対応 */
@media (max-width: 640px) {
  .hashikake-company-info {
    padding: 40px 0 140px;
    gap: 40px;
  }
  .hashikake-company-info-row {
    flex-direction: column;
  }
  .hashikake-company-info-title {
    min-width: 100%;
    border-bottom: 1px solid #dadada;
  }
}

/* ========================================
   固定ページ - ページヘッダー
   ======================================== */
.hashikake-page-header {
  position: relative;
  width: 100%;
  height: 128px;
  margin-top: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  overflow: hidden;
}
.hashikake-page-header-bg {
  position: absolute;
  inset: 0;
  background-image: url('/wp-content/uploads/2026/02/page-header-scaled.jpg'); /* 画像のパスを指定 */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* 青いオーバーレイ（60%の不透明度） */
.hashikake-page-header-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(91, 168, 217, 0.6); /* ブルー60% */
  z-index: 1;
}
.hashikake-page-header-title {
  font-weight: bold;
  font-size: 48px;
  color: white;
  text-align: center;
  margin: 0;
  position: relative;
  z-index: 10;
}

@media (max-width: 768px) {
    .hashikake-page-header-bg {
    background-position: right;
  }
  .hashikake-page-header {
    height: 88px;
  }
  .hashikake-page-header-title {
    font-size: 32px;
  }
}

/* ========================================
   お知らせ - ページヘッダー
   ======================================== */
/* .hashikake-news-page-header {
  position: relative;
  width: 100%;
  height: 240px;
  margin-top: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  overflow: hidden;
}
.hashikake-news-page-header-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #489fd7 0%, #e37997 50%, #f5c639 100%);
  opacity: 0.9;
}
.hashikake-news-page-header-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: bold;
  font-size: 48px;
  color: white;
  text-align: center;
  margin: 0;
  position: relative;
  z-index: 10;
} */

/* ========================================
   お知らせ詳細 - ページヘッダー
   ======================================== */
/* .hashikake-single-page-header {
  position: relative;
  width: 100%;
  height: 128px;
  margin-top: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  overflow: hidden;
}
.hashikake-single-page-header-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #489fd7 0%, #e37997 50%, #f5c639 100%);
  opacity: 0.6;
}
.hashikake-single-page-header-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: bold;
  font-size: 40px;
  color: white;
  text-align: center;
  margin: 0;
  position: relative;
  z-index: 10;
} */

/* ========================================
   パンくずリスト
   ======================================== */
.hashikake-breadcrumb {
  background: white;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
  padding: 10px 40px;
}
.hashikake-breadcrumb-item {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #3d3d3d;
  text-decoration: none;
  margin: 0;
}
.hashikake-breadcrumb-current {
  color: #489fd7;
}
.hashikake-breadcrumb-current-long {
  color: #489fd7;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 400px;
}

/* ========================================
   お知らせ一覧ページ
   ======================================== */
.hashikake-news-archive-section {
  width: 100%;
  background: white;
  padding: 80px 0 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hashikake-news-archive-container {
  max-width: 1024px;
  width: 100%;
  padding: 0 24px;
}
.hashikake-news-archive-list {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.hashikake-news-archive-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid #b0b0b0;
  text-decoration: none;
  transition: background 0.3s;
}
.hashikake-news-archive-item:last-child {
  border-bottom: 1px solid #b0b0b0;
}
.hashikake-news-archive-item:hover {
  background: #f9f9f9;
}
.hashikake-news-archive-item-content {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
}
.hashikake-news-archive-item-date {
  font-family: 'Futura', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.6;
  color: #ff383c;
  margin: 0;
  white-space: nowrap;
}
.hashikake-news-archive-item-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  color: black;
  margin: 0;
  flex: 1;
}
.hashikake-news-archive-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.hashikake-news-archive-empty {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #3d3d3d;
  text-align: center;
  padding: 60px 0;
  margin: 0;
}

/* ========================================
   ページネーション
   ======================================== */
.hashikake-news-pagination {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}
.hashikake-news-pagination .page-numbers {
  display: inline-flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.hashikake-news-pagination .page-numbers li {
  list-style: none;
}
.hashikake-news-pagination .page-numbers a,
.hashikake-news-pagination .page-numbers span {
  display: flex !important;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 8px;
  margin: 0 !important;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #3d3d3d;
  text-decoration: none;
  border: none;
  border-radius: 40px !important;
  background-color: #BADAEE;
  transition: all 0.3s;
}
.hashikake-news-pagination .page-numbers a:hover {
  background: #489fd7 !important;
  color: white;
}
.hashikake-news-pagination .page-numbers .current {
  background: #489fd7 !important;
  color: white;
}
.hashikake-news-pagination .page-numbers .prev,
.hashikake-news-pagination .page-numbers .next {
  font-weight: bold;
}

/* ========================================
   お知らせ詳細ページ
   ======================================== */
.hashikake-single-main {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 80px 0;
  background: #f5f5f5;
}
.hashikake-single-section {
  max-width: 1280px;
  width: 100%;
  display: flex;
  gap: 40px;
  padding: 0 24px;
}
.hashikake-single-news-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.hashikake-single-title-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 24px;
    border-bottom: 1px solid #b0b0b0;
}
.hashikake-single-post-title {
  font-weight: bold;
  font-size: 26px;
  line-height: 1.6;
  color: #3d3d3d;
  margin: 0;
}
.hashikake-single-meta {
  display: flex;
  align-items: center;
  gap: 24px;
}
.hashikake-single-date {
  font-family: 'Futura', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.6;
  color: #b0b0b0;
  margin: 0;
}
.hashikake-single-categories {
  display: flex;
  gap: 8px;
}
.hashikake-single-category-badge {
  background: #489fd7;
  color: white;
  font-family: 'Futura', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  padding: 2px 8px;
  border-radius: 4px;
  text-decoration: none;
  transition: opacity 0.3s;
}
.hashikake-single-category-badge:hover {
  opacity: 0.8;
}
.hashikake-single-content {
  display: flex;
  flex-direction: column;
}
.hashikake-single-content img {
    margin-bottom: 16px;
}
.hashikake-single-content p {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.8;
  color: #3d3d3d;
  letter-spacing: 0.08em;
  margin: 0 0 1em 0;
}
.hashikake-single-content h2 {
    font-weight: 600;
    font-size: 20px;
    line-height: 1.6;
    color: #3d3d3d;
    margin: 40px 0 24px 0;
    padding: 0 0 0 16px;
    border-left: 6px solid #489fd7;
    border-top: 0;
    border-bottom: 0;
}
.hashikake-single-content h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.6;
  color: #3d3d3d;
  margin: 32px 0 16px 0;
}
.hashikake-single-sidebar {
  width: 300px;
  flex-shrink: 0;
}
.hashikake-single-sidebar-title {
  font-weight: 600;
  font-size: 18px;
  color: #489FD7;
  margin: 0 0 8px 0;
}
.hashikake-single-other-list {
    display: flex;
    flex-direction: column;
    background-color: white;
    border-radius: 8px;
    padding: 20px;
}
.hashikake-single-other-item {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 16px 0;
  border-bottom: 1px solid #b0b0b0;
  text-decoration: none;
  transition: background 0.3s;
}
.hashikake-single-other-item:hover {
  background: #f9f9f9;
}
.hashikake-single-other-item + .hashikake-single-other-item {
  border-top: none;
}
.hashikake-single-other-date {
  font-family: 'Futura', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #b0b0b0;
  margin: 0;
}
.hashikake-single-other-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.6;
  color: #3d3d3d;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hashikake-single-pagination {
  max-width: 1024px;
  width: 100%;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center; /* 中央揃えに変更 */
  padding: 0 24px;
}
/* 一覧へリンク */
.hashikake-single-nav-list-link {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #489fd7;
  text-decoration: none;
  transition: opacity 0.3s;
  padding: 0 16px;
}
.hashikake-single-nav-list-link:hover {
  opacity: 0.7;
}
.hashikake-single-nav-link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: #badaee;
  border-radius: 50%;
  text-decoration: none;
  transition: opacity 0.3s;
}
.hashikake-single-nav-link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: #badaee;
  border-radius: 50%;
  text-decoration: none;
  transition: opacity 0.3s;
}
.hashikake-single-nav-link-btn:hover {
  opacity: 0.7;
}
.hashikake-single-nav-link-btn.disabled {
  opacity: 0.3;
  pointer-events: none;
}
.hashikake-single-nav-link-btn svg {
  width: 30px;
  height: 30px;
}

/* ========================================
   レスポンシブ対応
   ======================================== */
@media (max-width: 768px) {
  .hashikake-single-section {
    flex-direction: column;
    gap: 40px;
  }
  .hashikake-single-sidebar {
    width: 100%;
  }
  .hashikake-nav-menu {
    gap: 20px;
  }
  .hashikake-nav-links {
    gap: 12px;
  }
  .hashikake-nav-links a {
    font-size: 14px;
  }
  .hashikake-nav-btn {
    font-size: 16px;
    padding: 16px;
    min-width: 120px;
  }
  .hashikake-single-date {
    font-size: 14px;
  }
}

@media (max-width: 640px) {
  .hashikake-navi {
    padding-left: 20px;
  }
  .hashikake-breadcrumb {
    padding: 10px 20px;
  }
  .hashikake-single-page-header-title {
    font-size: 32px;
  }
  .hashikake-single-post-title {
    font-size: 22px;
  }
  .hashikake-news-archive-item-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .hashikake-news-archive-item-date {
    font-size: 16px;
  }
  .hashikake-news-archive-item-title {
    font-size: 14px;
  }
  .hashikake-single-main {
    gap: 16px;
    padding: 40px 0;
  }
}


/* サービス｜就労継続支援B型 */
/* FV */
/* メインビジュアル */
.fv {
    position: relative;
    width: 100%;
    height: 672px;
    margin: 0 auto;
    overflow: hidden;
}

/* 背景画像 + オーバーレイ */
.fv-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.fv-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.fv-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(72, 159, 215, 0.85);
}

/* 左上の装飾画像 */
.fv-img-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 649px;
    height: auto;
    pointer-events: none;
}

.fv-img-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

/* 右下の装飾画像 */
.fv-img-right {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 649px;
    height: auto;
    pointer-events: none;
}

.fv-img-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

@media (min-width: 769px) and (max-width: 1024px) {
    .fv-img-left {
        width: 480px;
        width: 46vw;
        height: auto;
    }

    .fv-img-right {
        width: 480px;
        width: 46vw;
        height: auto;
    }
}

@media (max-width: 768px) {
    .fv {
        height: 730px;
    }

    .fv-img-left {
        width: 100%;
        max-width: 340px;
        height: auto;
    }

    .fv-img-right {
        width: 100%;
        max-width: 340px;
        height: auto;
    }
}

/* メインコンテンツ */
.fv-content {
    position: absolute;
    top: 42%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 562px;
    text-align: center;
    z-index: 10;
}

/* キャッチコピーエリア */
.fv-catchcopy {
    position: relative;
    margin: 0;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* タイトルエリア */
.fv-title {
    width: fit-content;
    margin: -40px auto 0;
    filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.4));
}

.fv-title h1 {
    color: white;
    font-size: 68px;
    font-weight: 900;
    letter-spacing: -2.04px;
    line-height: normal;
    margin-bottom: 6px;
}

/* サブタイトル（就労継続支援B型） */
.fv-subtitle {
    display: inline-block;
    padding: 4px 16px;
    border: 2px solid white;
    color: white;
    font-size: 28px;
    font-weight: bold;
    line-height: 1.5;
    width: 100%;
}

/* 説明文 */
.fv-description {
    color: white;
    font-size: 16px;
    line-height: 1.5;
    margin-top: 32px;
    filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.4));
}

/* レスポンシブ対応 */
@media (min-width: 769px) and (max-width: 1024px) {
    .fv-content {
        max-width: 562px;
    }

    .fv-catchcopy {
        width: 100%;
        height: auto;
    }

    .fv-title h1 {
        font-size: 68px;
    }

    .fv-subtitle {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .fv-content {
        width: 100%;
        max-width: 562px;
        top: 42%;
        left: 50%;
        padding: 0 16px;
    }

    .fv-title {
        margin: -24px auto 0;
    }

    .fv-title h1 {
        font-size: 48px;
    }

    .fv-description {
        text-align: left;
        margin-top: 16px;
    }
}

/* CTA ファーストビュー下 */
.cta {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.btn-fv {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.btn-fv:hover {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
}

/* Main Content */
.main {
    background-color: #f5f5f5;
    min-height: 400px;
}

/* アーチ型装飾（上部） */
.section-arch {
    width: 100%;
    height: 100px;
    overflow: hidden;
    z-index: 1;
    margin-top: -100px;
}

.section-arch svg {
    display: block;
    width: 100%;
    height: 100%;
}

/* Aboutセクション全体 */
.section-about {
    background-color: #BADAEE;
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
}

/* セクションタイトル */
.section-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    padding: 24px 0;
}

.section-title-container {
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-title-en {
    font-family: 'Futura', sans-serif;
    font-size: 140px;
    line-height: 1;
    font-weight: bold;
    margin: 0;
}

.gradient_white {
    background: linear-gradient(to bottom, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient_gray {
    background: linear-gradient(180deg, #D5D5D5 0%, rgba(213, 213, 213, 0) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title-ja {
    font-size: 40px;
    font-weight: 600;
    color: var(--color-text-dark);
    line-height: 1.5;
    margin: -36px 0 0;
    padding: 0;
    border-top: 0;
    border-bottom: 0;
}

/* タイトル下の装飾ライン */
.section-title-line {
    width: 240px;
    height: 6px;
    position: relative;
}

.section-title-line svg {
    width: 100%;
    height: 100%;
}

/* 装飾ライン */
.title-line {
    width: 240px;
    height: 6px;
    position: relative;
}

/* .title-line::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, #E37997, #F5C639);
}

.title-line::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, #F5C639, #489FD7);
} */

/* Aboutコンテンツ */
.about-content {
    max-width: 1024px;
    width: 100%;
    padding: 0 24px;
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.about-image {
    width: 490px;
    height: auto;
    flex-shrink: 0;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.about-pc {
    display: block;
}

.about-sp {
    display: none;
}

.about-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    color: var(--color-text-dark);
}

.about-heading {
    font-size: 28px;
    font-weight: bold;
    line-height: 1.6;
    letter-spacing: 1.12px;
}

.about-description {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.8;
}

/* メリットセクション */
.merit-section {
    width: 960px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

/* メリットタイトル */
.merit-title-container {
    position: relative;
    width: 598px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.title-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #E37997 0%, #489FD7 100%);
    clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
    filter: drop-shadow(6px 6px 12px rgba(0, 0, 0, 0.15));
    border-radius: 4px;
    z-index: 1;
}

.merit-title-text {
    position: relative;
    z-index: 2;
    color: white;
    font-size: 32px;
    font-weight: bold;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 4px;
}

.title-text-wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.merit-title-number {
    font-family: 'Futura', sans-serif;
    font-size: 48px;
    color: #FFC927;
    line-height: 1;
}

.merit-title-unit {
    font-size: 40px;
    color: #FFC927;
    line-height: 1;
}

/* メリットカード */
.merit-cards {
    display: flex;
    gap: 16px;
    width: 100%;
    justify-content: center;
}

.merit-card {
    width: 228px;
    height: 228px;
    background: white;
    border-radius: 50%;
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 24px;
    isolation: isolate; /* 新しいスタッキングコンテキストを作成 */
}

.merit-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 238px;
    height: 238px;
    border-radius: 50%;
    background: conic-gradient(from -45deg, #E37997 0deg, #E37997 180deg, transparent 180deg, transparent 360deg);
    -webkit-mask: radial-gradient(circle, transparent 111px, black 111px);
    mask: radial-gradient(circle, transparent 111px, black 111px);
    z-index: -1;
}

.merit-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 238px;
    height: 238px;
    border-radius: 50%;
    background: conic-gradient(from 135deg, #489FD7 0deg, #489FD7 180deg, transparent 180deg, transparent 360deg);
    -webkit-mask: radial-gradient(circle, transparent 111px, black 111px);
    mask: radial-gradient(circle, transparent 111px, black 111px);
    z-index: -1;
}

.merit-card-text {
    text-align: center;
    color: var(--color-text-dark);
    font-size: 22px;
    font-weight: bold;
    line-height: 1.5;
}

.merit-card-note {
    font-size: 16px;
    font-weight: 500;
    display: block;
    margin-top: 4px;
}

/* メリット画像 */
.merit-image {
    width: 463px;
    height: 265px;
}

.merit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .section-title-en {
        font-size: 100px;
    }

    .section-title-ja {
        font-size: 32px;
    }

    .about-image {
        width: 50%;
        /* max-width: 490px; */
        height: auto;
    }

    .merit-section {
        width: 100%;
        padding: 0 24px;
    }

    .merit-title-container {    
        width: 100%;
        max-width: 598px;
    }

    .merit-cards {
        flex-wrap: wrap;
    }

    .merit-card {
        /* width: calc(50% - 8px); */
        min-width: 180px;
    }

    .merit-card::before,
    .merit-card::after {
        width: calc(100% + 10px);
        height: calc(100% + 10px);
    }
}

@media (max-width: 768px) {
    .section-about {
        gap: 40px;
    }

    .section-arch {
        height: 40px;
        margin-top: -40px;
    }

    .section-title {
        padding: 24px 0;
        gap: 4px;
    }

    .section-title-en {
        font-size: 58px;
    }

    .section-title-ja {
        font-size: 24px;
        margin: -24px 0 0;
    }

    .about-image {
        width: 100%;
    }

    .about-content {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .about-pc {
        display: none;
    }

    .about-sp {
        display: block;
    }

    .about-heading {
        font-size: 20px;
    }

    .about-description {
        font-size: 16px;
    }

    .merit-title-container {
        height: 88px;
    }

    .merit-title-text {
        font-size: 20px;
        flex-direction: column;
        gap: 0;
    }

    .merit-title-number {
        font-size: 32px;
    }

    .merit-title-unit {
        font-size: 30px;
    }

    .merit-cards {
        gap: 8px;
    }

    .merit-card {
        width: 240px;
        height: 240px;
    }

    .merit-card-text {
        font-size: 18px;
    }

    .merit-image {
        width: 100%;
        max-width: 463px;
        height: auto;
    }
}

/* 活動内容セクション全体 */
.section-action {
    position: relative;
    width: 100%;
    background-color: #489FD7;
    overflow: hidden;
}

/* 背景画像オーバーレイ */
.section-action-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.section-action-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    opacity: 0.3;
}

/* 上部装飾ストライプ */
.stripe-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    pointer-events: none;
    z-index: 1;
}

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

/* 下部装飾ストライプ */
.stripe-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    pointer-events: none;
    z-index: 1;
}

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

/* コンテンツコンテナ */
.section-action-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
    padding: 100px 24px;
}

/* セクションタイトル */
.action-title-container {
    position: relative;
    width: 698px;
    max-width: 100%;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(6px 6px 12px rgba(0, 0, 0, 0.15));
}

.action-title-text {
    position: relative;
    z-index: 2;
    color: white;
    font-size: 32px;
    font-weight: bold;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 0;
}

.action-title-highlight {
    color: #F5C639;
    font-size: 40px;
    line-height: 1;
}

/* カードコンテナ */
.action-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    width: 960px;
    max-width: 100%;
}

/* カード */
.action-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.15);
    padding: 24px;
    display: flex;
    flex-direction: column;
}

/* カード画像エリア */
.action-card-image-wrap {
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 16px;
}

.action-card-title-bar {
    background-color: #489FD7;
    padding: 6px 16px;
    text-align: center;
}

.action-card-title {
    color: white;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.5;
}

.action-card-image {
    width: 100%;
    aspect-ratio: 840 / 592;
    overflow: hidden;
}

.action-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

/* カード説明文 */
.action-card-text {
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-text-dark);
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .section-action-content {
        padding: 80px 24px;
    }

    .action-cards {
        width: 100%;
        grid-template-columns: 1fr;
    }

    .action-title-text {
        font-size: 24px;
    }

    .action-title-highlight {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .section-action-content {
        padding: 60px 16px;
        gap: 24px;
    }

    .action-cards {
        gap: 16px;
    }

    .action-title-container {
        width: 100%;
        max-width: 698px;
        height: 72px;
    }

    .action-title-text {
        font-size: 20px;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .action-title-highlight {
        font-size: 24px;
    }

    .action-card {
        padding: 16px;
    }

    .action-card-title {
        font-size: 20px;
    }

    .action-card-text {
        font-size: 16px;
    }
}

/* スケジュールセクション全体 */
.section-schedule {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 80px 0 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
    overflow: hidden;
}

/* 背景画像 + オーバーレイ */
.section-schedule-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.section-schedule-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    opacity: 0.3;
}

.section-schedule-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(72, 159, 215, 0.2);
}

/* 1日のスケジュール */
.schedule-daily {
    position: relative;
    z-index: 1;
    max-width: 1024px;
    width: 100%;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

/* 1週間のスケジュール */
.schedule-weekly {
    position: relative;
    z-index: 1;
    max-width: 1024px;
    width: 100%;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

/* セクションタイトル */
.schedule-title-container {
    position: relative;
    width: 698px;
    max-width: 100%;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.schedule-title-text {
    position: relative;
    z-index: 2;
    color: white;
    font-size: 32px;
    font-weight: bold;
    line-height: 1.5;
    text-align: center;
}

/* スケジュール画像 */
.schedule-image {
    width: 100%;
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    overflow: hidden;
}

.schedule-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* 1日のスケジュール画像 */
.schedule-daily-image {
    width: 100%;
    aspect-ratio: 2030 / 1912;
}

.schedule-daily-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.schedule-pc {
    display: block;
}

.schedule-sp {
    display: none;
}

/* 週間スケジュールコンテナ */
.schedule-weekly-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* 週間スケジュール画像 */
.schedule-weekly-image {
    width: 100%;
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.15);
    border-radius: 16px;
    overflow: hidden;
}

.schedule-weekly-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.schedule_weekly-pc {
    display: block;
}

.schedule_weekly-sp {
    display: none;
}

/* キャッチーセクション */
.catchy-section {
    max-width: 100%;
}

/* キャッチー背景画像 */
.catchy-bg {
    margin-top: -164px;
}

.catchy-bg img {
    width: 100%;
    max-width: 800px;
    height: auto;
}

/* キャッチーコンテナ */
.catchy-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    filter: drop-shadow(6px 6px 24px rgba(0, 0, 0, 0.15));
    margin-top: 40px;
}

/* キャッチータイトル */
.catchy-title {
    background-color: #E37997;
    border-radius: 16px;
    padding: 24px 40px;
}

.catchy-title-text {
    color: white;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.5;
    text-align: center;
    letter-spacing: 0.96px;
}

/* 吹き出しの三角形 */
.catchy-arrow {
    width: 0;
    height: 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-top: 27px solid #E37997;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .section-schedule {
        padding: 60px 0 0 0;
        gap: 60px;
    }

    .schedule_weekly-pc {
       display: none;
    }

    .schedule_weekly-sp {
        display: block;
    }

    .schedule-title-text {
        font-size: 24px;
    }

    .schedule-weekly-image {
        width: 100%;
        height: auto;
    }

    .catchy-section {
        height: auto;
        margin-top: 0;
    }

    .catchy-container {
        position: static;
        width: 100%;
        max-width: 100%;
        margin-top: 20px;
    }

    .catchy-bg {
        position: static;
        transform: none;
        width: 100%;
        height: auto;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .section-schedule {
        padding: 40px 0 0 0;
        gap: 40px;
    }

    .schedule-pc {
        display: none;
    }

    .schedule-sp {
        display: block;
    }

    .schedule-daily,
    .schedule-weekly {
        padding: 0 16px;
        gap: 24px;
    }

    .schedule-title-text {
        font-size: 20px;
    }

    .catchy-title {
        padding: 16px 24px;
    }

    .catchy-title-text {
        font-size: 16px;
    }

    .catchy-bg {
        margin-top: -72px;
    }

    .catchy-arrow {
        width: 0;
        height: 0;
        border-left: 12px solid transparent;
        border-right: 12px solid transparent;
        border-top: 20px solid #E37997;
    }
}

/* 選ばれる理由セクション全体 */
.section-reason {
    background-color: #F6D6DF;
    padding: 0 0 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
}

/* 理由カードコンテナ */
.reason-container {
    max-width: 1024px;
    width: 100%;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* 理由カード */
.reason-card {
    display: flex;
    align-items: center;
    gap: 0;
    width: 100%;
    border-radius: 8px;
    position: relative;
}

/* 理由カード画像 */
.reason-image {
    width: 518.5px;
    max-width: 50%;
    height: 337px;
    filter: drop-shadow(6px 6px 24px rgba(0, 0, 0, 0.15));
    z-index: 2;
    position: relative;
    margin-right: -16px;
}

.reason-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

/* 理由カードコンテンツ */
.reason-content {
    flex: 1;
    background: white;
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    z-index: 1;
    padding-right: 56px;
}

/* 番号画像 */
.reason-number {
    position: absolute;
    top: -60px;
    right: -16px;
    width: 160px;
    height: auto;
    z-index: 3;
}

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

/* 理由タイトル */
.reason-title {
    font-size: 28px;
    font-weight: bold;
    line-height: 1.5;
    background: linear-gradient(88.63deg, #E37997 0%, #489FD7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 理由テキスト */
.reason-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-dark);
    letter-spacing: 0.96px;
}

/* 提携スポーツクラブセクション */
.section-club {
    position: relative;
    width: 100%;
    background-color: #F6D6DF;
    padding: 120px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    overflow: hidden;
}

/* クラブセクション背景画像 */
.section-club-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.7;
    z-index: 0;
}

.section-club-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 上部装飾ストライプ */
.stripe-top-club {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 1;
}

.stripe-top-club svg {
    width: 100%;
    height: 100%;
}

/* 下部装飾ストライプ */
.stripe-bottom-club {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 1;
    transform: rotate(180deg);
}

.stripe-bottom-club svg {
    width: 100%;
    height: 100%;
}

/* サブタイトル（提携スポーツクラブについて） */
.club-subtitle-container {
    position: relative;
    z-index: 2;
    width: 698px;
    max-width: 100%;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.club-subtitle-text {
    position: relative;
    z-index: 2;
    color: white;
    font-size: 32px;
    font-weight: bold;
    line-height: 1.5;
    text-align: center;
}

/* クラブコンテンツ */
.club-content {
    position: relative;
    z-index: 2;
    max-width: 1024px;
    width: 100%;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.club-intro-text {
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-text-dark);
    text-align: center;
    letter-spacing: 0.96px;
}

/* クラブ詳細カード */
.club-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.15);
    padding: 24px;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.club-image {
    flex: 1;
    aspect-ratio: 694 / 520;
    border-radius: 8px;
    overflow: hidden;
}

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

.club-text-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.club-name {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.5;
    color: #489FD7;
}

.club-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-dark);
    letter-spacing: 0.8px;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .section-reason {
        padding: 0 0 80px;
        gap: 60px;
    }

    .reason-image {
        width: 45%;
        height: auto;
        aspect-ratio: 518.5 / 337;
    }

    .reason-content {
        padding: 30px;
    }

    .section-club {
        padding: 100px 0;
    }

    .club-card {
        flex-direction: column;
    }

    .club-image {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .section-reason {
        padding: 0 0 64px;
        gap: 80px;
    }

    .reason-card {
        flex-direction: column;
    }

    .reason-image {
        width: 100%;
        max-width: 100%;
        margin-right: 0;
        margin-bottom: -16px;
    }

    .reason-content {
        padding: 24px;
        border-radius: 24px;
        z-index: 2;
    }

    .reason-number {
        top: -16px;
        right: -24px;
        width: 100px;
        height: auto;
    }

    .reason-title {
        font-size: 22px;
    }

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

    .section-club {
        padding: 64px 0;
    }

    .club-subtitle-container {
        width: 90%;
    }

    .club-subtitle-text {
        font-size: 20px;
    }

    .club-card {
        padding: 16px;
        gap: 20px;
    }

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

    .club-description {
        font-size: 14px;
    }

    .club-intro-text {
        text-align: left;
    }
}

/* こんな方にオススメセクション全体 */
.section-recommend {
    background-color: #F6D6DF;
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 100%;
}

.recommend-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

/* サブタイトル（こんな方にオススメ！） */
.recommend-title-container {
    position: relative;
    width: 698px;
    max-width: 100%;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.recommend-title-text {
    position: relative;
    z-index: 2;
    color: white;
    font-size: 32px;
    font-weight: bold;
    line-height: 1.5;
    text-align: center;
}

/* ケースカードコンテナ */
.recommend-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

/* ケースカード */
.recommend-card {
    background: white;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    min-height: 144px;
}

/* 左に画像 */
.recommend-card.image-left {
    background: linear-gradient(to right, #ffffff 40%, rgba(255, 255, 255, 0) 100%);
}

/* 右に画像 */
.recommend-card.image-right {
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, #ffffff 60%);
}

.recommend-card-wrapper {
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
}

.recommend-card-image {
    width: 210px;
    height: 144px;
    flex-shrink: 0;
}

.recommend-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.recommend-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 24px;
    gap: 16px;
}

.recommend-card-question {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.6;
    color: #E37997;
    letter-spacing: 1.44px;
}

.recommend-card-answer {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.recommend-card-arrow {
    width: 12px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 4px;
}

.recommend-card-arrow svg {
    width: 100%;
    height: 100%;
    fill: #E37997;
}

.recommend-card-answer-text {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.6;
    color: var(--color-text-dark);
    letter-spacing: 1.08px;
    flex: 1;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .recommend-title-text {
        font-size: 28px;
    }

    .recommend-card {
        flex-direction: column;
    }

    .recommend-card-image {
        width: 100%;
        max-width: 210px;
    }
}

@media (max-width: 768px) {
    .recommend-container {
        padding: 0;
        gap: 24px;
    }

    .recommend-title-container {
        max-width: 90%;
    }

    .recommend-title-text {
        font-size: 20px;
    }

    .recommend-card-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .recommend-card-question {
        font-size: 20px;
    }

    .recommend-card-answer-text {
        font-size: 16px;
    }

    .recommend-card-content {
        padding: 20px;
    }

    .recommend-card {
        flex-direction: column;
    }

    .recommend-card-image {
        padding: 24px 0 0;
        max-width: 240px;
        height: auto;
    }
}

/* 利用者の声セクション全体 */
.section-voice {
    background-color: #F6D6DF;
    padding: 0 0 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 100%;
}

.voice-container {
    max-width: 1024px;
    width: 100%;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

/* セクションタイトル */
.voice-title {
    font-size: 28px;
    font-weight: 600;
    line-height: 1;
    color: var(--color-text-dark);
    text-align: center;
    letter-spacing: 1.4px;
}

/* 声カードコンテナ */
.voice-cards {
    display: flex;
    gap: 16px;
    width: 100%;
}

/* 声カード */
.voice-card {
    flex: 1;
    background: white;
    border-radius: 24px;
    border: 2px solid #E37997;
    box-shadow: 6px 6px 24px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* ペルソナ情報 */
.voice-persona {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 24px 24px 0;
}

.voice-persona-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.voice-persona-icon.blue {
    background-color: #BADAEE;
}

.voice-persona-icon.pink {
    background-color: #E37997;
}

.voice-persona-icon.yellow {
    background-color: #F5C639;
}

.voice-persona-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.voice-persona-name {
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
    color: var(--color-text-dark);
}

/* 吹き出し */
.voice-bubble-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.voice-bubble-arrow {
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-bottom: 18px solid #E37997;
}

.voice-bubble {
    flex: 1;
    background-color: #E37997;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    width: 100%;
}

.voice-bubble-text {
    font-size: 16px;
    line-height: 1.6;
    color: white;
    letter-spacing: 0.8px;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .section-voice {
        padding: 0 0 180px;
    }

    .voice-cards {
        flex-direction: column;
    }

    .voice-title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .section-voice {
        padding: 0 0 80px;
    }

    .voice-container {
        padding: 0 16px;
    }

    .voice-title {
        font-size: 20px;
    }

    .voice-persona {
        padding: 20px 20px 0;
    }

    .voice-persona-icon {
        width: 60px;
        height: 60px;
    }

    .voice-persona-name {
        font-size: 18px;
    }

    .voice-bubble {
        padding: 20px;
    }

    .voice-bubble-text {
        font-size: 14px;
    }

    .voice-bubble-container {
        padding: 0;
    }
}

/* 施設情報セクション全体 */
.section-facility {
    background-color: #FFFFFF;
    padding: 0 0 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
    position: relative; /* 疑似要素の基準位置として必要 */
}

.section-facility::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(img/img_bg_bridge.jpg);
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    opacity: 0.3; /* ここで透明度を調整（0.0〜1.0） */
    z-index: 0; /* 背景が最背面に来るように */
    pointer-events: none; /* クリックイベントを無効化 */
}

.section-facility > * {
    position: relative;
    z-index: 1; /* 子要素を前面に配置 */
}

/* コンテンツコンテナ */
.facility-content {
    max-width: 1024px;
    width: 100%;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

/* サブセクション */
.facility-subsection {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* サブタイトル */
.subtitle-container {
    width: 698px;
    max-width: 100%;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 auto;
}

.subtitle-text {
    position: relative;
    z-index: 2;
    color: white;
    font-size: 32px;
    font-weight: bold;
    line-height: 1.5;
    text-align: center;
}

/* 利用対象者セクション */
.target-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.target-intro {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-dark);
    text-align: center;
    letter-spacing: 0.8px;
}

.target-container {
    background: white;
    border: 2px solid #489FD7;
    border-radius: 16px;
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.15);
    padding: 24px 40px;
    display: flex;
    flex-direction: column;
}

.target-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 0;
    border-bottom: 1px solid #DADADA;
}

.target-item:last-child {
    border-bottom: none;
}

.target-number {
    background-color: #489FD7;
    color: white;
    font-family: 'Futura', 'Arial', sans-serif;
    font-size: 16px;
    line-height: 1.4;
    padding: 4px 10px;
    border-radius: 50px;
    min-width: 30px;
    text-align: center;
}

.target-text {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.5;
    color: var(--color-text-dark);
}

/* 施設詳細情報セクション */
.facility-info-section {
    background: white;
    border: 2px solid #489FD7;
    border-radius: 16px;
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.15);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* 施設名 */
.facility-name {
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: var(--color-text-dark);
    padding-left: 24px;
    border-left: 6px solid #489FD7;
}

/* 施設情報テーブル */
.facility-table {
    background: white;
    border: 1px solid #DADADA;
    border-radius: 8px;
    overflow: hidden;
}

.facility-row {
    display: flex;
    border-bottom: 1px solid #DADADA;
}

.facility-row:first-child {
    border-top: 1px solid #DADADA;
}

.facility-row:last-child {
    border-bottom: none;
}

.facility-label {
    background-color: #BADAEE;
    min-width: 144px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--color-text-dark);
    text-align: center;
}

.facility-value {
    flex: 1;
    padding: 10px 16px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-dark);
}

/* 住所・地図セクション */
.facility-address-section {
    background: white;
    border: 1px solid #DADADA;
    border-radius: 8px;
    display: flex;
    overflow: hidden;
}

.address-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.address-label {
    background-color: #BADAEE;
    min-width: 160px;
    padding: 10px 24px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--color-text-dark);
    text-align: center;
}

.address-value {
    padding: 16px 24px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-dark);
}

.address-access-title {
    color: #489FD7;
    font-weight: bold;
    margin-top: 8px;
    margin-bottom: 4px;
}

.facility-map {
    flex: 1;
    /* min-height: 232px; */
    background-color: #F0F0F0;
    position: relative;
    overflow: hidden;
}

.map-responsive {
    position: relative;
    padding-bottom: 56.25%; /* 16:9のアスペクト比 */
    height: 0;
    overflow: hidden;
}

.map-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .section-facility {
        padding: 0 0 180px;
        gap: 60px;
    }

    .facility-content {
        gap: 60px;
    }

    .facility-address-section {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .section-facility {
        padding: 0 0 64px;
        gap: 40px;
    }

    .facility-content {
        gap: 40px;
        padding: 0 16px;
    }

    .subtitle-text {
        font-size: 20px;
    }

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

    .facility-name {
        font-size: 20px;
        padding-left: 16px;
    }

    .facility-row {
        flex-direction: column;
    }

    .facility-label {
        min-width: 100%;
    }

    .facility-value {
        padding: 16px;
    }

    .target-container {
        padding: 8px 16px;
    }

    .facility-info-section {
        padding: 24px;
    }

    .target-intro {
        text-align: left;
    }

    .address-value {
        padding: 16px;
    }

    .map-responsive {
        padding-bottom: 100%;
    }
}

/* ご利用までの流れセクション全体 */
.section-flow {
    background-color: #BADAEE;
    padding: 0 0 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
}

/* フローコンテナ */
.flow-container {
    max-width: 881px;
    width: 100%;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

/* フローステップカード */
.flow-step {
    background: white;
    border: 1px solid #489FD7;
    border-radius: 16px;
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.15);
    display: flex;
    overflow: hidden;
    width: 100%;
}

/* ステップ左側（青背景） */
.flow-step-left {
    background-color: #489FD7;
    min-width: 380px;
    padding: 24px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* ステップアイコン */
.flow-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 40px;
}

/* ステップタイトル */
.flow-step-title {
    color: white;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.5;
    text-align: center;
}

/* ステップ右側（説明テキスト） */
.flow-step-right {
    flex: 1;
    padding: 24px;
    display: flex;
    align-items: center;
}

.flow-step-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-dark);
    letter-spacing: 0.8px;
}

.flow-step-text strong {
    color: #489FD7;
    font-weight: bold;
}

.flow-step-last {
    font-size: 56px;
    font-weight: 600;
    color: var(--color-primary-blue);
}

/* ステップ間の矢印 */
.flow-arrow {
    width: 40px;
    height: 40px;
    border: 3px solid #489FD7;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flow-arrow svg {
    width: 12px;
    height: 20px;
    fill: #489FD7;
    transform: rotate(90deg);
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .section-flow {
        padding: 0 0 80px;
        gap: 60px;
    }

    .flow-step-left {
        min-width: 300px;
    }
}

@media (max-width: 768px) {
    .section-flow {
        padding: 0 0 64px;
        gap: 40px;
    }

    .flow-container {
        padding: 0 16px;
    }

    .flow-step {
        flex-direction: column;
    }

    .flow-step-left {
        min-width: 100%;
        padding: 20px;
    }

    .flow-icon {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }

    .flow-step-title {
        font-size: 18px;
    }

    .flow-step-right {
        padding: 20px;
    }

    .flow-step-text {
        font-size: 14px;
    }

    .flow-step-last {
        font-size: 32px;
    }
}

/* Q&Aセクション全体 */
.section-qa {
    background-color: #DADADA;
    padding: 0 0 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
}

.section-title-en .q-letter {
    font-size: 140px;
}

.section-title-en .ampersand {
    font-size: 100px;
}

.section-title-en .a-letter {
    font-size: 140px;
}

/* Q&Aコンテナ */
.qa-container {
    max-width: 1024px;
    width: 100%;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* 質問アイテム */
.qa-item {
    background: white;
    border-radius: 16px;
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    width: 100%;
}

/* 質問タイトル（クリック可能） */
.qa-question {
    background-color: var(--color-text-dark);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.qa-question:hover {
    background-color: #545454;
}

.qa-question-text {
    color: white;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.5;
    flex: 1;
}

/* 矢印アイコン */
.qa-arrow {
    width: 20px;
    height: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.qa-arrow svg {
    width: 12px;
    height: 20px;
    fill: white;
    transform: rotate(90deg);
}

/* 開いている時の矢印 */
.qa-item.active .qa-arrow svg {
    transform: rotate(270deg);
}

/* 回答エリア */
.qa-answer {
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.qa-answer-content {
    padding: 16px 24px;
}

.qa-answer-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-dark);
    letter-spacing: 0.96px;
}

/* 開いている時の回答エリア */
.qa-item.active .qa-answer {
    max-height: 500px;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .section-qa {
        padding: 0 0 180px;
        gap: 60px;
    }

    .section-title-en .q-letter,
    .section-title-en .a-letter {
        font-size: 100px;
    }

    .section-title-en .ampersand {
        font-size: 70px;
    }
}

@media (max-width: 768px) {
    .section-qa {
        padding: 0 0 80px;
        gap: 40px;
    }

    .section-title-en .q-letter,
    .section-title-en .a-letter {
        font-size: 72px;
    }

    .section-title-en .ampersand {
        font-size: 40px;
    }

    .qa-container {
        padding: 0 16px;
    }

    .qa-question {
        padding: 12px 16px;
    }

    .qa-question-text {
        font-size: 16px;
    }

    .qa-answer-content {
        padding: 12px 16px;
    }

    .qa-answer-text {
        font-size: 14px;
    }
}

/* 採用情報セクション全体 */
.section-recruit {
    background-color: #FFFFFF;
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
}

/* 採用コンテナ */
.recruit-container {
    max-width: 1024px;
    width: 100%;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

/* 説明テキスト */
.recruit-description {
    max-width: 966px;
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-dark);
    letter-spacing: 0.96px;
}

.recruit-description p {
    margin: 0;
}

/* 採用ボタン */
.recruit-button {
    background: white;
    border: 1px solid #DADADA;
    border-radius: 16px;
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.15);
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.recruit-button:hover {
    transform: translateY(-6px);
    box-shadow: 0px 4px 32px rgba(0, 0, 0, 0.2);
}

.recruit-button-text {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.5;
    color: var(--color-text-dark);
}

/* 矢印アイコン */
.recruit-arrow {
    width: 12px;
    height: 20px;
    flex-shrink: 0;
}

.recruit-arrow svg {
    width: 100%;
    height: 100%;
    fill: #489FD7;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .section-recruit {
        padding: 0 0 80px;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .section-recruit {
        padding: 40px 0 80px;
        gap: 40px;
    }

    .recruit-container {
        padding: 0 16px;
    }

    .recruit-description {
        text-align: left;
    }

    .recruit-button {
        padding: 20px;
        gap: 8px;
        text-align: left;
    }

    .recruit-button-text {
        font-size: 16px;
    }

    .recruit-arrow {
        width: 10px;
        height: 18px;
    }
}

/* CTAセクション全体 */
.section-cta {
    position: relative;
    width: 100%;
    padding: 56px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    overflow: hidden;
}

/* 背景レイヤー */
.cta-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* 背景画像（オプション） */
.cta-background-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* グラデーションオーバーレイ */
.cta-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(88.4444deg, rgba(227, 121, 151, 0.8) 0%, rgba(72, 159, 215, 0.8) 100%);
}

/* コンテンツ（背景より前面） */
.cta-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    width: 100%;
    max-width: 1200px;
}

/* メインテキストエリア */
.cta-main-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    color: white;
}

.cta-headline {
    font-size: 72px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 3.6px;
}

.cta-headline p {
    margin: 0;
    line-height: 1.3;
}

.cta-subheadline {
    font-size: 28px;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 0;
}

/* CTAボタン */
.cta-button {
    background: white;
    border: 6px solid #E37997;
    border-radius: 80px;
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.15);
    padding: 24px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button:hover {
    box-shadow: 0px 8px 32px rgba(0, 0, 0, 0.25);
}

/* 疑似要素を使ったグラデーションボーダー */
.cta-button::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 80px;
    padding: 6px;
    background: linear-gradient(87.4718deg, rgb(227, 121, 151) 0%, rgb(72, 159, 215) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.cta-button-text {
    font-size: 32px;
    font-weight: bold;
    background: linear-gradient(84.656deg, rgb(227, 121, 151) 0%, rgb(72, 159, 215) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
}

/* 矢印アイコン */
.cta-arrow {
    width: 12px;
    height: 20px;
    flex-shrink: 0;
}

.cta-arrow svg {
    width: 100%;
    height: 100%;
    fill: #489FD7;
}

/* レスポンシブ対応 */
@media (max-width: 1023px) {
    .section-cta {
        padding: 48px 20px;
    }

    .cta-headline {
        font-size: 56px;
        letter-spacing: 2.8px;
    }

    .cta-subheadline {
        font-size: 24px;
    }

    .cta-button-text {
        font-size: 28px;
    }

    .cta-button {
        padding: 20px 32px;
    }
}

@media (max-width: 640px) {
    .cta {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 95%;
    }
    .section-cta {
        padding: 40px 16px;
        gap: 24px;
    }

    .cta-headline {
        font-size: 40px;
        letter-spacing: 2px;
    }

    .cta-subheadline {
        font-size: 18px;
    }

    .cta-button {
        padding: 16px 24px;
        flex-direction: row;
        gap: 8px;
        width: 100%;
        max-width: 400px;
    }

    .cta-button-text {
        font-size: 20px;
        white-space: normal;
        text-align: center;
    }

    .cta-arrow {
        width: 10px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .cta-subheadline {
        font-size: 16px;
    }

    .cta-button-text {
        font-size: 18px;
    }
}

/* セクション間CTA */
.cta-section {
    background: linear-gradient(87.66deg, #E37997 0%, #489FD7 100%);
    position: relative;
    width: 100%;
}

.cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 32px 24px 140px;
    width: 100%;
}

/* CTAテキスト */
.cta-text {
    font-size: 28px;
    font-weight: 600;
    line-height: 1;
    color: white;
    text-align: center;
    white-space: nowrap;
}

/* CTAボタン */
.btn-cta {
    background: white;
    border-radius: 80px;
    padding: 24px 40px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    position: relative;
}

.btn-cta::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 80px;
    padding: 6px;
    background: linear-gradient(84.656deg, #E37997 0%, #489FD7 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.btn-cta:hover {
    transform: translateY(-6px);
    box-shadow: 0px 4px 32px rgba(0, 0, 0, 0.2);
}

.btn-cta-text {
    font-size: 32px;
    font-weight: bold;
    line-height: 1;
    background: linear-gradient(84.656deg, #E37997 0%, #489FD7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

.btn-cta-arrow {
    width: 12px;
    height: 20px;
    flex-shrink: 0;
}

.btn-cta-arrow svg {
    width: 100%;
    height: 100%;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .cta-container {
        padding: 24px 16px 64px;
        gap: 16px;
    }

    .cta-text {
        font-size: 16px;
        white-space: normal;
    }

    .btn-cta {
        padding: 16px 24px;
    }

    .btn-cta-text {
        font-size: 18px;
    }

    .btn-cta-arrow {
        width: 10px;
        height: 18px;
    }
}

/* フッター全体 */
.footer {
    background-color: #DADADA;
    width: 100%;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* コピーライトテキスト */
.footer-copyright {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 14px;
    font-weight: normal;
    line-height: normal;
    color: var(--color-text-dark);
    text-align: center;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .footer {
        padding: 12px;
    }

    .footer-copyright {
        font-size: 12px;
    }
}

/* Footer */
/* .footer {
    background-color: #ffffff;
    border-top: 1px solid #e0e0e0;
    padding: 40px 0;
}

.footer__content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 100px;
    margin-bottom: 40px;
}

.footer__logo h3 {
    font-size: 40px;
    font-weight: 400;
    color: #000000;
}

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

.footer__nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer__nav-item a {
    font-size: 24px;
    font-weight: 400;
    color: #000000;
    transition: color 0.3s ease;
}

.footer__nav-item a:hover {
    color: #489FD7;
}

.footer__contact-button {
    background-color: #CB0000;
    color: #ffffff;
    padding: 24px 30px;
    font-size: 24px;
    font-weight: 400;
    border-radius: 0;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
}

.footer__contact-button:hover {
    background-color: #A00000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(203, 0, 0, 0.3);
}

.footer__social {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.footer__social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 400;
    color: #000000;
    transition: all 0.3s ease;
}

.footer__social-icon:hover {
    background-color: #489FD7;
    color: #ffffff;
    border-color: #489FD7;
    transform: translateY(-2px);
} */

/* Responsive Design */
/* @media (max-width: 1200px) {
    .fv__content {
        width: 90%;
        max-width: 562px;
    }

    .fv__image {
        width: 45%;
        height: auto;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 8px 16px;
    }

    .fv {
        height: auto;
        min-height: 600px;
        padding: 60px 20px;
    }

    .fv__image {
        display: none;
    }

    .fv__title {
        font-size: 40px;
    }

    .fv__title-box {
        transform: none;
        margin-left: 0 !important;
        display: block;
        width: 100%;
    }

    .fv__service-title {
        font-size: 48px;
    }

    .fv__service-tag span {
        font-size: 20px;
    }

    .cta-menu__inner {
        flex-direction: column;
        width: 100%;
    }

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

    .footer__content {
        flex-direction: column;
        gap: 40px;
        align-items: center;
        text-align: center;
    }

    .footer__nav {
        align-items: center;
    }

    .footer__social {
        justify-content: center;
    }

    .brand-animation__item {
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .fv__title {
        font-size: 32px;
    }

    .fv__service-title {
        font-size: 36px;
    }

    .cta-menu__button {
        font-size: 14px;
        padding: 12px 24px;
    }

    .brand-animation__item {
        font-size: 32px;
    }

    .footer__nav-item a {
        font-size: 18px;
    }

    .footer__contact-button {
        font-size: 18px;
        padding: 16px 24px;
    }
} */

/* ========================================
   FV アニメーション
======================================== */

/* 初期状態: 左上装飾画像 */
.fv-img-left {
    opacity: 0;
    transform: translateX(-100%);
    transition: opacity 1s ease-in, transform 1s ease-in;
}

/* アニメーション後: 左上装飾画像 */
.fv-img-left.animate {
    opacity: 1;
    transform: translateX(0);
}

/* 初期状態: 右下装飾画像 */
.fv-img-right {
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 1s ease-in, transform 1s ease-in;
}

/* アニメーション後: 右下装飾画像 */
.fv-img-right.animate {
    opacity: 1;
    transform: translateX(0);
}

/* 初期状態: キャッチコピー、タイトル、説明文 */
.fv-catchcopy,
.fv-title,
.fv-description {
    opacity: 0;
    transition: opacity 1.5s ease-out;
}

/* アニメーション後: キャッチコピー、タイトル、説明文 */
.fv-catchcopy.animate,
.fv-title.animate,
.fv-description.animate {
    opacity: 1;
}

/* ========================================
   採用情報 - 一覧ページ
   ======================================== */
.hashikake-recruit-container {
  max-width: 1024px;
  margin: 60px auto;
  padding: 0 24px;
}

.hashikake-recruit-intro {
  text-align: center;
  margin-bottom: 60px;
  color: #3d3d3d;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.8px;
}

.hashikake-recruit-intro p {
  margin: 0;
}

.hashikake-recruit-section {
  margin-top: 40px;
}

.hashikake-recruit-section-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: bold;
  font-size: 20px;
  color: #489fd7;
  line-height: 1.6;
  letter-spacing: 1px;
  margin-bottom: 16px;
  border-top: 0;
  border-bottom: 0;
  padding: 0;
}

.hashikake-recruit-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hashikake-recruit-card {
  background: white;
  border: 1px solid #dadada;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.1);
}

.hashikake-recruit-card:hover {
  box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.hashikake-recruit-card-content {
  flex: 1;
}

.hashikake-recruit-card-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: bold;
  font-size: 20px;
  color: #3d3d3d;
  line-height: 1.5;
  margin: 0 0 16px 0;
  border-top: 0;
  border-bottom: 0;
}

.hashikake-recruit-card-title::after {
    content: none;
}

.hashikake-recruit-card-location {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  color: #3d3d3d;
  line-height: 1.6;
}

.hashikake-recruit-card-location p {
  margin: 0;
}

.hashikake-recruit-card-link {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #489fd7;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.6;
}

.hashikake-recruit-card-link svg {
  flex-shrink: 0;
}

.hashikake-recruit-empty {
  text-align: center;
  color: #3d3d3d;
  font-size: 16px;
  padding: 40px 0;
}

/* ========================================
   採用情報 - 詳細ページ
   ======================================== */
.hashikake-single-recruit-main {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 80px 0;
    background: #f5f5f5;
}
.hashikake-recruit-detail-container {
    max-width: 1024px;
    margin: 0;
    padding: 40px;
    background: white;
    border-radius: 8px;
}

.hashikake-recruit-detail-title {
    font-weight: bold;
    font-size: 28px;
    color: #3d3d3d;
    line-height: 1.5;
    margin-bottom: 40px;
    text-align: left;
    border-top: 0;
    border-bottom: 2px solid #489FD7;
    padding: 0 0 16px;
}

.hashikake-recruit-detail-title span {
  font-size: 20px;
  color: #489fd7;
}

.hashikake-recruit-detail-section {
  margin-bottom: 0;
}

.hashikake-recruit-detail-section-title {
    background: #BADAEE;
    color: #3D3D3D;
    font-weight: 600;
    font-size: 16px;
    padding: 8px 16px;
    margin: 0;
    line-height: 1.6;
    border-bottom: 0;
}

.hashikake-recruit-detail-table {
    border: 1px solid #BADAEE;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 40px;
}

.pd-2x {
    padding: 16px;
}

.hashikake-recruit-detail-section-title::after {
    content: none;
}

.hashikake-recruit-detail-content {
  font-size: 16px;
  line-height: 1.8;
  color: #3d3d3d;
}
.hashikake-recruit-detail-content h2 {
    border-top: 0;
    border-bottom: 0;
    padding: 0;
    font-size: 1.3rem;
    color: #489FD7;
}

.hashikake-recruit-detail-content p {
    margin-bottom: 0;
}

.hashikake-recruit-detail-content ul {
    margin-bottom: 0;
}
.hashikake-recruit-detail-content li {
    margin-top: 0;
    margin-bottom: .2em;
}

.hashikake-recruit-detail-content h3 {
    border-bottom: 0;
    font-size: 1.13em;
    padding: 0 0 0 16px;
    border-left: 6px solid #489FD7;
}
.hashikake-recruit-detail-content h3::after {
    content: none;
}

.hashikake-recruit-detail-subsection {
  margin-bottom: 20px;
}

.hashikake-recruit-detail-subsection:last-child {
  margin-bottom: 0;
}

.hashikake-recruit-detail-subsection h4 {
  font-weight: bold;
  margin: 0 0 8px 0;
  color: #489fd7;
}

.hashikake-recruit-detail-subsection p {
  margin: 0;
}

.hashikake-recruit-detail-button-container {
  text-align: center;
  margin-top: 60px;
}

.hashikake-recruit-detail-table-item {
    padding: 16px;
}

.hashikake-recruit-detail-table-item p {
    margin-bottom: 0;
}

.hashikake-recruit-detail-table-item ul {
    margin-bottom: 0;
}

.hashikake-recruit-detail-button {
  display: inline-block;
  background: #489fd7;
  color: white;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: bold;
  font-size: 18px;
  padding: 16px 48px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hashikake-recruit-detail-button:hover {
  background: #3a8bc4;
  transform: scale(1.05);
  color: white;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .hashikake-recruit-container,
  .hashikake-recruit-detail-container {
    margin: 40px auto;
    padding: 0 16px;
  }

  .hashikake-recruit-intro {
    font-size: 14px;
    margin-bottom: 40px;
  }

  .hashikake-recruit-section-title {
    font-size: 18px;
  }

  .hashikake-recruit-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .hashikake-recruit-card-title {
    font-size: 18px;
  }

  .hashikake-recruit-card-location {
    font-size: 14px;
  }

  .hashikake-recruit-card-link {
    align-self: flex-end;
  }

  .hashikake-recruit-detail-title {
    font-size: 24px;
  }

  .hashikake-recruit-detail-title span {
    font-size: 18px;
    display: block;
    margin-top: 8px;
  }

  .hashikake-recruit-detail-section-title {
    font-size: 16px;
  }

  .hashikake-recruit-detail-content {
    padding: 16px;
  }

  .hashikake-recruit-detail-button {
    font-size: 16px;
    padding: 14px 40px;
  }
  .hashikake-recruit-detail-button-container {
    margin-top: 32px;
  }
}

@media (max-width: 640px) {
  .hashikake-single-section {
    padding: 0 16px;
  }
  .hashikake-recruit-detail-container {
    padding: 24px;
  }
  .hashikake-recruit-detail-content {
    padding: 0;
  }
  .hashikake-recruit-intro {
    text-align: left;
  }
}
