@charset "utf-8";


:root {
  --color-primary: #2E5D4B;
  --color-primary-light: #3D7A64;
  --color-primary-dark: #1E3F33;
  --color-primary-pale: #E8F0ED;
  --color-silver: #9CA3A3;
  --color-silver-light: #D4D9D9;
  --color-black: #1C1C1C;
  --color-black-light: #2D2D2D;
  --color-white: #FAFAFA;
  --color-off-white: #F5F5F3;
  --color-gray: #6B7280;
  --color-gray-50: #F9FAFB;
  --color-gray-100: #F3F4F6;
  --color-gray-200: #E5E7EB;
  --color-accent: #4ECDC4;
  --color-gold: #D4A853;
  --color-gold-light: #E8C97A;
  --color-gold-dark: #B8923F;
  --gradient-gold: linear-gradient(135deg, #D4A853 0%, #E8C97A 100%);
  --gradient-primary: linear-gradient(135deg, #2E5D4B 0%, #4ECDC4 100%);
  --gradient-hero: linear-gradient(135deg, #1E3F33 0%, #2E5D4B 50%, #3D7A64 100%);
  --font-sans: 'Noto Sans JP', sans-serif;
  --font-en: 'Montserrat', sans-serif;
  --section-padding: 100px;
  --container-width: 1200px;
  --transition-base: 0.3s ease;
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); font-weight: 400; line-height: 1.8; color: var(--color-black); background-color: var(--color-white); overflow-x: hidden; background-image: radial-gradient(circle at 20% 50%, rgba(46, 93, 75, 0.03) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(212, 168, 83, 0.03) 0%, transparent 50%); background-attachment: fixed; }
a { text-decoration: none; color: inherit; transition: var(--transition-base); }
img { max-width: 100%; height: auto; vertical-align: middle; }
ul { list-style: none; }
.container { max-width: var(--container-width); margin: 0 auto; padding: 0 40px; }
.font-en { font-family: var(--font-en); }

/* Header */
header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 20px 40px; display: flex; justify-content: space-between; align-items: center; background: rgba(255, 255, 255, 1); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(156, 163, 163, 0.15); }
.header__logo { display: flex; align-items: center; gap: 12px; }
.header__logo-icon { width: 44px; height: 44px; background: var(--gradient-primary); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: white; font-family: var(--font-en); font-weight: 800; font-size: 20px; box-shadow: 0 4px 15px rgba(46, 93, 75, 0.3); border: 2px solid var(--color-gold); }
.header__logo-text { font-family: var(--font-en); font-weight: 700; font-size: 22px; letter-spacing: 0.02em; color: var(--color-black); }
.header__logo-text img{ width:180px; }
.header__nav { display: flex; align-items: center; gap: 40px; }
.header__nav-list { display: flex; gap: 32px; }
.header__nav-item a { font-size: 13px; font-weight: 500; letter-spacing: 0.05em; color: var(--color-black-light); position: relative; padding: 4px 0; }
.header__nav-item a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--gradient-primary); transition: var(--transition-base); border-radius: 2px; }
.header__nav-item a:hover::after { width: 100%; }
.header__cta { display: flex; gap: 12px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 28px; font-size: 13px; font-weight: 600; border-radius: 50px; transition: var(--transition-base); cursor: pointer; border: none; position: relative; overflow: hidden; }
.btn--primary { background: var(--gradient-primary); color: white; box-shadow: 0 4px 20px rgba(46, 93, 75, 0.3); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(46, 93, 75, 0.4); }
.btn--outline { background: transparent; color: var(--color-primary); border: 2px solid var(--color-primary); }
.btn--outline:hover { background: var(--color-primary); color: white; }
.btn--gold { 
background: var(--gradient-gold); 
color: white; 
box-shadow: 0 4px 20px rgba(212, 168, 83, 0.4); 
}
.btn--gold:hover { 
transform: translateY(-2px); 
box-shadow: 0 8px 30px rgba(212, 168, 83, 0.5); 
}
.btn--white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15); }
.header__hamburger { display: none; flex-direction: column; gap: 6px; cursor: pointer; padding: 10px; }
.header__hamburger span { width: 24px; height: 2px; background: var(--color-black); transition: var(--transition-base); }

/* Hero */
.hero { min-height: 100vh; position: relative; display: flex; align-items: center; background: var(--gradient-hero); overflow: hidden; }
.hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(ellipse 80% 50% at 20% 40%, rgba(78, 205, 196, 0.15) 0%, transparent 50%), radial-gradient(ellipse 60% 40% at 80% 20%, rgba(123, 224, 214, 0.1) 0%, transparent 50%), radial-gradient(ellipse 50% 30% at 60% 80%, rgba(78, 205, 196, 0.08) 0%, transparent 50%); pointer-events: none; }
.hero__shapes { position: absolute; top: 0; left: 0; right: 0; bottom: 0; pointer-events: none; overflow: hidden; }
.hero__shape { position: absolute; border-radius: 50%; opacity: 0.6; }
.hero__shape--1 { width: 400px; height: 400px; background: linear-gradient(135deg, rgba(78, 205, 196, 0.2) 0%, transparent 70%); top: -100px; right: 10%; animation: float1 8s ease-in-out infinite; }
.hero__shape--2 { width: 200px; height: 200px; background: linear-gradient(135deg, rgba(123, 224, 214, 0.15) 0%, transparent 70%); bottom: 20%; left: 5%; animation: float2 6s ease-in-out infinite; }
.hero__shape--3 { width: 150px; height: 150px; border: 2px solid rgba(255, 255, 255, 0.1); top: 30%; left: 15%; animation: float3 10s ease-in-out infinite; }
.hero__shape--4 { width: 80px; height: 80px; background: rgba(78, 205, 196, 0.2); bottom: 30%; right: 20%; animation: float2 7s ease-in-out infinite reverse; }
.hero__shape--5 { width: 300px; height: 300px; border: 1px solid rgba(255, 255, 255, 0.05); bottom: -100px; right: 30%; animation: float1 12s ease-in-out infinite reverse; }
.hero__pattern { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px); background-size: 30px 30px; pointer-events: none; }
.hero__diagonal { position: absolute; bottom: 0; left: 0; right: 0; height: 150px; background: linear-gradient(165deg, transparent 40%, rgba(212, 168, 83, 0.1) 40%, rgba(212, 168, 83, 0.05) 60%, transparent 60%); pointer-events: none; }
@keyframes float1 { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-30px) rotate(5deg); } }
@keyframes float2 { 0%, 100% { transform: translateY(0) translateX(0); } 50% { transform: translateY(-20px) translateX(10px); } }
@keyframes float3 { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-15px) scale(1.05); } }
.hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; padding-top: 80px; }
.hero__content { color: white; position: relative; z-index: 3; }
.hero__label { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-en); font-size: 12px; font-weight: 600; letter-spacing: 0.2em; color: var(--color-accent); margin-bottom: 28px; padding: 10px 20px; background: rgba(78, 205, 196, 0.15); border: 1px solid rgba(78, 205, 196, 0.3); border-radius: 50px; backdrop-filter: blur(10px); }
.hero__label::before { content: ''; width: 8px; height: 8px; background: var(--color-accent); border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.2); } }
.hero__catch { font-family: var(--font-sans); font-size: clamp(36px, 5vw, 56px); font-weight: 700; line-height: 1.3; letter-spacing: 0.02em; margin-bottom: 20px; }
.hero__catch-line { display: block; overflow: hidden; }
.hero__catch-line span { display: inline-block; opacity: 0; transform: translateY(100%); animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards; }
.hero__catch-line:nth-child(1) span { animation-delay: 0.3s; }
.hero__catch-line:nth-child(2) span { animation-delay: 0.5s; }
.hero__catch .accent { color: var(--color-accent); font-size: 1.15em; }
@keyframes slideUp { to { opacity: 1; transform: translateY(0); } }
.hero__subcatch { font-size: 18px; font-weight: 500; color: rgba(255, 255, 255, 0.9); margin-bottom: 20px; opacity: 0; animation: fadeIn 0.8s ease 0.8s forwards; display: inline-block; padding-bottom: 8px; border-bottom: 2px solid var(--color-gold); }
.hero__text { font-size: 15px; line-height: 2; color: rgba(255, 255, 255, 0.7); margin-bottom: 40px; opacity: 0; animation: fadeIn 0.8s ease 1s forwards; }
@keyframes fadeIn { to { opacity: 1; } }
.hero__buttons { display: flex; gap: 16px; opacity: 0; animation: fadeIn 0.8s ease 1.2s forwards; flex-wrap: wrap; }
.hero__btn { padding: 18px 36px; font-size: 15px; }

/* Hero Visual - マスコット対応 */
.hero__visual { position: relative; display: flex; justify-content: center; align-items: flex-end; min-height: 500px; }
.hero__image-container { position: relative; width: 100%; display: flex; justify-content: center; align-items: flex-end; }
.hero__mascot { position: relative; z-index: 2; opacity: 0; animation: mascotReveal 1s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards; max-width: 100%; width: auto; height: auto; max-height: 580px; object-fit: contain; filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3)); }
@keyframes mascotReveal { 0% { opacity: 0; transform: translateY(30px) scale(0.95); } 100% { opacity: 1; transform: translateY(0) scale(1); } }

/* フローティングカード - 位置調整 */
.hero__float-card { position: absolute; background: white; border-radius: 16px; padding: 20px 24px; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15); opacity: 0; animation: floatCard 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards; z-index: 10; border-top: 3px solid var(--color-gold); }
.hero__float-card--1 { top: 80px; right: -30px; animation-delay: 1s; }
.hero__float-card--2 { min-width: 80px; bottom: 120px; left: 0; animation-delay: 1.2s; }
@keyframes floatCard { to { opacity: 1; } }
.hero__float-card-icon { width: 44px; height: 44px; background: var(--gradient-primary); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.hero__float-card-icon svg { width: 22px; height: 22px; color: white; }
.hero__float-card-label { font-size: 11px; font-weight: 500; color: var(--color-gray); margin-bottom: 4px; }
.hero__float-card-value { font-family: var(--font-en); font-size: 28px; font-weight: 800; color: var(--color-gold-dark); letter-spacing: -0.02em; }
.hero__float-card-value span { font-size: 14px; font-weight: 500; }

/* 装飾リング */
.hero__ring { position: absolute; border: 2px solid rgba(78, 205, 196, 0.3); border-radius: 50%; pointer-events: none; }
.hero__ring--1 { width: 450px; height: 450px; top: 50%; left: 50%; transform: translate(-50%, -50%); opacity: 0; animation: ringExpand 1.5s ease 0.8s forwards; }
.hero__ring--2 { width: 350px; height: 350px; top: 50%; left: 50%; transform: translate(-50%, -50%); border-style: dashed; opacity: 0; animation: ringExpand 1.5s ease 1s forwards, spin 30s linear infinite; }
@keyframes ringExpand { to { opacity: 0.5; } }
@keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }

/* スクロールインジケーター */
.hero__scroll { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 12px; opacity: 0; animation: fadeIn 0.8s ease 1.5s forwards; z-index: 10; }
.hero__scroll-text { font-family: var(--font-en); font-size: 11px; font-weight: 600; letter-spacing: 0.2em; color: rgba(255, 255, 255, 0.5); }
.hero__scroll-line { width: 1px; height: 50px; background: rgba(255, 255, 255, 0.2); position: relative; overflow: hidden; }
.hero__scroll-line::after { content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 50%; background: var(--color-accent); animation: scrollLine 1.5s ease infinite; }
@keyframes scrollLine { 0% { top: -50%; } 100% { top: 100%; } }

/* Section Common */
.section { padding: var(--section-padding) 0; position: relative; }
.section__header { margin-bottom: 60px; }
.section__header--center { text-align: center; }
.section__label { font-family: var(--font-en); font-size: 12px; font-weight: 700; letter-spacing: 0.2em; color: var(--color-gold-dark); margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.section__label::before { content: ''; width: 8px; height: 8px; background: var(--color-gold); border-radius: 50%; }
.section__label::after { content: ''; width: 30px; height: 2px; background: var(--gradient-primary); border-radius: 2px; }
.section__header--center .section__label { justify-content: center; }
.section__header--center .section__label::after { content: ''; width: 30px; height: 2px; background: var(--gradient-primary); border-radius: 2px; }
.section__title { font-family: var(--font-en); font-size: clamp(40px, 5vw, 56px); font-weight: 800; letter-spacing: -0.02em; color: var(--color-black); margin-bottom: 8px; line-height: 1.1; }
.section__subtitle { font-size: 14px; font-weight: 500; color: var(--color-gray); }

/* Mission */
.mission { background: var(--color-off-white); position: relative; overflow: hidden; }
.mission::before { content: ''; position: absolute; top: -10%; left: -5%; right: -5%; height: 120%; background: linear-gradient(170deg, var(--color-white) 0%, var(--color-white) 40%, var(--color-off-white) 40%); transform: skewY(-3deg); z-index: 0; }
.mission__pattern { position: absolute; top: 0; right: 0; width: 400px; height: 400px; background: radial-gradient(circle at 100% 0%, rgba(78, 205, 196, 0.08) 0%, transparent 50%); pointer-events: none; }
.mission > .container { position: relative; z-index: 1; }
.mission__list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.mission__item { background: white; border-radius: 24px; overflow: hidden; box-shadow: 0 10px 40px rgba(28, 28, 28, 0.06); transition: var(--transition-slow); position: relative; }
.mission__item::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-gold) 100%); transform: scaleX(0); transition: var(--transition-slow); }
.mission__item:hover { transform: translateY(-12px); box-shadow: 0 30px 60px rgba(28, 28, 28, 0.12); }
.mission__item:hover::before { transform: scaleX(1); }
.mission__item-image { position: relative; height: 200px; overflow: hidden; }
.mission__item-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-slow); }
.mission__item:hover .mission__item-image img { transform: scale(1.05); }
.mission__item-image::after { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(180deg, transparent 50%, rgba(46, 93, 75, 0.1) 100%); }
.mission__item-content { padding: 36px; }
.mission__item-icon { width: 56px; height: 56px; background: var(--gradient-primary); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; margin-top: -56px; position: relative; z-index: 2; box-shadow: 0 8px 24px rgba(46, 93, 75, 0.3); border: 2px solid var(--color-gold); }
.mission__item-icon svg { width: 26px; height: 26px; color: white; }
.mission__item-title { font-size: 22px; font-weight: 700; color: var(--color-black); margin-bottom: 12px; }
.mission__item-text { font-size: 14px; line-height: 1.9; color: var(--color-gray); }

/* News */
.news { position: relative; overflow: hidden; background: var(--color-gray-50); }
.news__bg-text { position: absolute; top: 50%; right: -5%; transform: translateY(-50%); font-family: var(--font-en); font-size: 180px; font-weight: 800; color: var(--color-off-white); pointer-events: none; line-height: 1; }
.news__inner { display: grid; grid-template-columns: 320px 1fr; gap: 80px; position: relative; z-index: 1; }
.news__list { display: flex; flex-direction: column; }
.news__item { padding: 28px 0; border-bottom: 1px solid var(--color-silver-light); position: relative; }
.news__item::after { content: ''; position: absolute; bottom: -1px; left: 0; width: 0; height: 2px; background: var(--gradient-gold); transition: var(--transition-slow); }
.news__item:hover::after { width: 100%; }
.news__item:first-child { padding-top: 0; }
.news__item a { display: grid; grid-template-columns: auto 1fr auto; gap: 24px; align-items: center; }
.news__item a:hover .news__item-title { color: var(--color-primary); }
.news__item a:hover .news__item-arrow { transform: translateX(8px); background: var(--color-primary); }
.news__item a:hover .news__item-arrow svg { color: white; }
.news__item-meta { display: flex; flex-direction: column; gap: 6px; }
.news__item-date { font-family: var(--font-en); font-size: 13px; font-weight: 600; color: var(--color-silver); }
.news__item-tag { font-size: 11px; font-weight: 600; color: white; background: var(--gradient-primary); padding: 4px 12px; border-radius: 20px; display: inline-block; }
.news__item-title { font-size: 15px; font-weight: 500; line-height: 1.6; color: var(--color-black); transition: var(--transition-base); }
.news__item-arrow { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: var(--color-off-white); border-radius: 50%; transition: var(--transition-base); }
.news__item-arrow svg { width: 18px; height: 18px; color: var(--color-gray); transition: var(--transition-base); }
.news__more { margin-top: 32px; }
.news__more a { font-family: var(--font-en); font-size: 13px; font-weight: 600; letter-spacing: 0.05em; color: var(--color-gold-dark); display: inline-flex; align-items: center; gap: 8px; padding: 12px 0; border-bottom: 2px solid var(--color-gold); }
.news__more a:hover { gap: 16px; }

/* About */
.about { background: var(--color-black); color: white; position: relative; overflow: hidden; padding: 160px 0; }
.about__wave-top { position: absolute; top: -1px; left: 0; right: 0; height: 100px; overflow: hidden; }
.about__wave-top svg { position: absolute; bottom: 0; width: 100%; height: 100px; }
.about::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(ellipse 80% 50% at 0% 100%, rgba(46, 93, 75, 0.4) 0%, transparent 50%), radial-gradient(ellipse 60% 40% at 100% 0%, rgba(78, 205, 196, 0.2) 0%, transparent 50%); pointer-events: none; }
.about .section__title { color: white; }
.about .section__label { color: var(--color-accent); }
.about .section__subtitle { color: var(--color-silver); }
.about__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; position: relative; z-index: 1; }
.about__text { font-size: 15px; line-height: 2.2; color: var(--color-silver-light); margin-bottom: 40px; }
.about__text p { margin-bottom: 20px; }
.about__features { display: flex; flex-direction: column; gap: 16px; }
.about__feature { display: flex; align-items: center; gap: 16px; font-size: 15px; color: white; padding: 16px 20px; background: rgba(255, 255, 255, 0.05); border-radius: 12px; border: 1px solid rgba(255, 255, 255, 0.1); transition: var(--transition-base); }
.about__feature:hover { background: rgba(212, 168, 83, 0.1); border-color: rgba(212, 168, 83, 0.3); transform: translateX(8px); }
.about__feature-icon { width: 32px; height: 32px; background: var(--color-gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.about__feature-icon svg { width: 16px; height: 16px; color: white; }
.about__visual { position: relative; }
.about__image-main { position: relative; border-radius: 24px; overflow: hidden; box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4); }
.about__image-main img { width: 100%; height: 400px; object-fit: cover; }
.about__image-main::after { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(135deg, rgba(46, 93, 75, 0.3) 0%, transparent 60%); }
.about__image-sub { position: absolute; bottom: -40px; right: -40px; width: 200px; height: 200px; border-radius: 20px; overflow: hidden; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); border: 4px solid var(--color-black); }
.about__image-sub img { width: 100%; height: 100%; object-fit: cover; }
.about__decoration { position: absolute; top: -30px; left: -30px; width: 120px; height: 120px; border: 3px solid var(--color-gold); border-radius: 20px; opacity: 0.5; }

/* Reason */
.reason { background: linear-gradient(180deg, var(--color-white) 0%, var(--color-primary-pale) 100%); position: relative; overflow: hidden; }
.reason__pattern { position: absolute; top: 0; right: 0; width: 400px; height: 400px; background: radial-gradient(circle, rgba(212, 168, 83, 0.1) 0%, transparent 70%); pointer-events: none; }
.reason__pattern-left { position: absolute; bottom: 0; left: 0; width: 300px; height: 300px; background: radial-gradient(circle, rgba(46, 93, 75, 0.08) 0%, transparent 70%); pointer-events: none; }
.reason__header { text-align: center; margin-bottom: 80px; }
.reason__list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; z-index: 1; }
.reason__item { padding: 36px 24px; background: white; border-radius: 20px; text-align: center; transition: var(--transition-slow); border: 2px solid var(--color-off-white); position: relative; overflow: visible; }
.reason__item::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: var(--gradient-primary); opacity: 0; transition: var(--transition-slow); }
.reason__item:hover { border-color: transparent; transform: translateY(-8px); box-shadow: 0 20px 40px rgba(46, 93, 75, 0.2); }
.reason__item:hover::before { opacity: 1; }
.reason__item:hover .reason__item-title span { color: var(--color-gold-light); }
.reason__item:hover .reason__item-number { background: white; color: var(--color-gold-dark); transform: scale(1.1); }
.reason__item:hover .reason__item-icon { background: white; transform: scale(1.1) rotate(5deg); }
.reason__item:hover .reason__item-icon svg { color: var(--color-primary); }
.reason__item:hover .reason__item-title, .reason__item:hover .reason__item-title span { color: white; }
.reason__item > * { position: relative; z-index: 1; }
.reason__item-icon { width: 72px; height: 72px; margin: 0 auto 24px; background: var(--color-primary-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--transition-slow); }
.reason__item-number { position: absolute; top: -10px; left: -10px; width: 28px; height: 28px; background: var(--color-gold); color: white; font-family: var(--font-en); font-size: 12px; font-weight: 700; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(212, 168, 83, 0.4); transition: var(--transition-base); z-index: 2; }
.reason__item-title { font-size: 15px; font-weight: 600; color: var(--color-black); transition: var(--transition-base); line-height: 1.5; }
.reason__item-title span { display: block; font-size: 13px; font-weight: 700; color: var(--color-gold-dark); margin-bottom: 4px; transition: var(--transition-base); }

/* Consulting */
.consulting { position: relative; overflow: hidden; background: linear-gradient(170deg, var(--color-gray-100) 0%, var(--color-gray-50) 100%); }
.consulting::before { content: ''; position: absolute; top: 0; left: -50%; width: 100%; height: 100%; background: var(--color-primary-pale); transform: skewX(-15deg); opacity: 0.5; }
.consulting > .container { position: relative; z-index: 1; }
.consulting__inner { display: grid; grid-template-columns: 420px 1fr; gap: 80px; align-items: start; }
.consulting__text { font-size: 15px; line-height: 2; color: var(--color-gray); margin-top: 24px; margin-bottom: 32px; }
.consulting__list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.consulting__item { background: white; padding: 28px; border-radius: 16px; display: flex; align-items: center; gap: 20px; transition: var(--transition-slow); box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04); border: 1px solid transparent; }
.consulting__item:hover { border-color: var(--color-accent); transform: translateX(8px); box-shadow: 0 10px 30px rgba(46, 93, 75, 0.1); }
.consulting__item:hover .consulting__item-icon { background: var(--gradient-primary); }
.consulting__item:hover .consulting__item-icon svg { color: white; }
.consulting__item-icon { width: 52px; height: 52px; background: var(--color-primary-pale); border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: var(--transition-base); }
.consulting__item-icon svg { width: 24px; height: 24px; color: var(--color-primary); transition: var(--transition-base); }
.consulting__item-text { font-size: 14px; font-weight: 600; color: var(--color-black); }

/* CTA */
.cta { padding: 80px 0; background: var(--gradient-hero); position: relative; overflow: hidden; }
.cta__shapes { position: absolute; top: 0; left: 0; right: 0; bottom: 0; pointer-events: none; }
.cta__shape { position: absolute; border-radius: 50%; }
.cta__shape--1 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(78, 205, 196, 0.2) 0%, transparent 70%); top: -200px; right: -100px; }
.cta__shape--2 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(123, 224, 214, 0.15) 0%, transparent 70%); bottom: -100px; left: 10%; }
.cta__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; position: relative; z-index: 1; }
.cta__item { background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(20px); border-radius: 24px; padding: 48px; text-align: center; transition: var(--transition-slow); border: 1px solid rgba(255, 255, 255, 0.15); }
.cta__item:hover { background: rgba(255, 255, 255, 0.15); transform: translateY(-8px); box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2); }
.cta__item-icon { width: 72px; height: 72px; margin: 0 auto 28px; background: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); border: 3px solid var(--color-gold); }
.cta__item-icon svg { width: 32px; height: 32px; color: var(--color-primary); }
.cta__item-title { font-size: 14px; color: rgba(255, 255, 255, 0.7); margin-bottom: 8px; }
.cta__item-main { font-size: 24px; font-weight: 700; color: white; margin-bottom: 28px; }

/* Footer */
footer { background: var(--color-black); color: white; padding: 80px 0 40px; position: relative; }
.footer__inner { display: grid; grid-template-columns: 320px 1fr; gap: 80px; margin-bottom: 60px; }
.footer__logo { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.footer__logo-icon { width: 48px; height: 48px; background: var(--gradient-primary); border-radius: 14px; display: flex; align-items: center; justify-content: center; color: white; font-family: var(--font-en); font-weight: 800; font-size: 22px; border: 2px solid var(--color-gold); }
.footer__logo-text { font-family: var(--font-en); font-weight: 700; font-size: 22px; letter-spacing: 0.02em; }
.footer__logo-text img { width:200px; }

.footer__info { font-size: 13px; line-height: 2; color: var(--color-silver); }
.footer__sns { display: flex; gap: 12px; margin-top: 28px; }
.footer__sns a { width: 44px; height: 44px; background: var(--color-black-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; transition: var(--transition-base); }
.footer__sns a:hover { background: var(--color-primary); transform: translateY(-4px); }
.footer__sns svg { width: 20px; height: 20px; color: var(--color-silver); }
.footer__sns a:hover svg { color: white; }
.footer__nav { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.footer__nav-title { font-size: 14px; font-weight: 700; color: white; margin-bottom: 24px; padding-bottom: 12px; border-bottom: 2px solid var(--color-gold); display: inline-block; }
.footer__nav-list { display: flex; flex-direction: column; gap: 14px; }
.footer__nav-list a { font-size: 13px; color: var(--color-silver); display: inline-flex; align-items: center; gap: 8px; }
.footer__nav-list a::before { content: ''; width: 0; height: 1px; background: var(--color-gold); transition: var(--transition-base); }
.footer__nav-list a:hover { color: white; }
.footer__nav-list a:hover::before { width: 12px; }
.footer__bottom { padding-top: 40px; border-top: 1px solid var(--color-black-light); display: flex; justify-content: space-between; align-items: center; }
.footer__copyright { font-size: 12px; color: var(--color-silver); }
.footer__links { display: flex; gap: 24px; }
.footer__links a { font-size: 12px; color: var(--color-silver); }
.footer__links a:hover { color: white; }

.header__close { display: none; }

/* Responsive */
@media (max-width: 1024px) {
  :root { --section-padding: 70px; }
  .header__nav-list { display: flex; }
  .header__hamburger { display: flex; }
  .header__nav { position: fixed; top: 0; right: -100%; width: 80%; max-width: 320px; height: 100vh; background: var(--color-black); flex-direction: column; justify-content: flex-start; align-items: stretch; padding: 80px 24px 40px; box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3); transition: right 0.3s ease; z-index: 999; }
  .header__close { position: absolute; top: 20px; right: 20px; width: 40px; height: 40px; background: var(--color-black-light); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition-base); }
  .header__close:hover { background: var(--color-gold); border-color: var(--color-gold); }
  .header__close svg { width: 20px; height: 20px; color: white; }
  .header__nav.is-open { right: 0; }
  .header__nav-list { flex-direction: column; gap: 0; }
  .header__nav-item a { display: block; padding: 16px 0; font-size: 15px; color: white; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
  .header__nav-item a:hover { color: var(--color-gold); }
  .header__cta { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; width: 100%; }
  .header__cta .btn { width: 100%; text-align: center; }
  .header__cta .btn--outline { border-color: rgba(255, 255, 255, 0.3); color: white; }      
  .header__cta .btn--outline:hover { background: white; color: var(--color-black); }
  .header__hamburger.is-open span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
  .header__hamburger.is-open span:nth-child(2) { opacity: 0; }
  .header__hamburger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }
  .header__overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.5); opacity: 0; visibility: hidden; transition: 0.3s ease; z-index: 998; }
  .header__overlay.is-open { opacity: 1; visibility: visible; }

  /* タブレット時のヒーロー */
  .hero__inner { grid-template-columns: 1fr 1fr; gap: 20px; }
  .hero__mascot { max-height: 480px; }
  .hero__float-card--1 { right: -10px; top: 60px; }
  .hero__float-card--2 { left: -10px; bottom: 80px; }
  .mission__list { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .news__inner { grid-template-columns: 1fr; gap: 40px; }
  .news__bg-text { display: none; }
  .about__inner { grid-template-columns: 1fr; gap: 60px; }
  .about__image-sub { right: 20px; bottom: -20px; width: 150px; height: 150px; }
  .reason__list { grid-template-columns: repeat(2, 1fr); }
  .consulting__inner { grid-template-columns: 1fr; gap: 40px; }
  .consulting__list { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__nav { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-padding: 50px; }
  .section__header { margin-bottom: 32px; }
  .section__title { font-size: 32px; }

  .container { padding: 0 16px; }
  header { padding: 12px 16px; }
  .header__cta { display: none; }
  .header__logo-icon { width: 36px; height: 36px; font-size: 16px; }
  .header__logo-text { font-size: 18px; }
  .header__logo-text img{ width:120px; }

  .cta { padding: 50px 0; }
  .cta__item { padding: 32px 24px; }
  .cta__item-icon { width: 56px; height: 56px; margin-bottom: 20px; }
  .cta__item-icon svg { width: 24px; height: 24px; }
  cta__item-title { font-size: 12px; }
  .cta__item-main { font-size: 20px; margin-bottom: 20px; }
  
  /* スマホ時のヒーロー - 縦2段 */
  .hero { padding-top: 60px; min-height: auto; }
  .hero__shapes, .hero__pattern { opacity: 0.4; }
  
  .hero__inner { 
    display: flex !important;
    flex-direction: column;
    gap: 30px;
    padding-top: 30px;
    padding-bottom: 0px;
  }
  
  /* テキストエリア - 上段（文字大きく） */
  .hero__content { 
    text-align: left;
  }
  .hero__label { font-size: 10px; padding: 8px 14px; margin-bottom: 14px; }
  .hero__catch { font-size: 36px; margin-bottom: 10px; line-height: 1.25; }
  .hero__subcatch { font-size: 16px; margin-bottom: 10px; font-weight: 500; }
  .hero__text { font-size: 13px; line-height: 1.8; margin-bottom: 18px; }
  .hero__buttons { 
    display: flex;
    gap: 12px;
  }
  .hero__btn { padding: 16px 28px; font-size: 14px; }
  
  /* マスコット - 下段（大きく） */
  .hero__visual { 
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    min-height: auto;
  }
  .hero__image-container { 
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: none;
  }
  .hero__mascot { 
    max-height: 350px;
    height: auto;
    width: auto;
    max-width: 100%;
  }
  /* フローティングカード - 大きく、左右に広げる */
  .hero__float-card { 
    display: block;
    padding: 14px 18px;
    border-radius: 14px;
  }
  .hero__float-card--1 { 
    top: 15px; 
    right: -12px;
  }
  .hero__float-card--2 { 
    bottom: 20%;
    left: -12px;
  }
  .hero__float-card-icon { width: 40px; height: 40px; margin-bottom: 10px; border-radius: 10px; }
  .hero__float-card-icon svg { width: 20px; height: 20px; }
  .hero__float-card-label { font-size: 11px; margin-bottom: 2px; }
  .hero__float-card-value { font-size: 22px; }
  .hero__float-card-value span { font-size: 13px; }
  
  .hero__ring { display: none; }
  .hero__scroll { display: none; }
  
  /* スマホ用固定ボタン非表示 */
  .hero__buttons-mobile { display: none; }
  
  .reason__list { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .reason__item { padding: 24px 16px; }
  .reason__item-icon { width: 56px; height: 56px; margin-bottom: 16px; }
  .reason__item-icon svg { width: 24px; height: 24px; }
  .reason__item-number { width: 34px; height: 34px; font-size: 14px; top: -8px; left: -8px; }
  .reason__item-title { font-size: 15px; }
  .reason__item-title span { font-size: 15px; }
  .cta__inner { grid-template-columns: 1fr; }
  .footer__nav { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 480px) {
  .hero__catch { font-size: 30px; }
  .hero__subcatch { font-size: 14px; }
  .hero__text { font-size: 12px; }
  .hero__mascot { max-height: 350px; }
  .hero__float-card { padding: 12px 14px; }
  .hero__float-card-value { font-size: 20px; }
  .hero__float-card--1 { right: -40px; }
  .hero__float-card--2 { left: -40px; }
}

/* ==============================
   下層ページ共通
============================== */

/* ページヘッダー */
.page-header { background: var(--gradient-hero); padding: 160px 0 100px; position: relative; overflow: hidden; }
.page-header::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(ellipse 80% 50% at 20% 40%, rgba(78, 205, 196, 0.15) 0%, transparent 50%), radial-gradient(ellipse 60% 40% at 80% 80%, rgba(212, 168, 83, 0.1) 0%, transparent 50%); pointer-events: none; }
.page-header__shapes { position: absolute; top: 0; left: 0; right: 0; bottom: 0; pointer-events: none; overflow: hidden; }
.page-header__shape { position: absolute; border-radius: 50%; }
.page-header__shape--1 { width: 300px; height: 300px; background: linear-gradient(135deg, rgba(78, 205, 196, 0.2) 0%, transparent 70%); top: -100px; right: 10%; animation: float1 8s ease-in-out infinite; }
.page-header__shape--2 { width: 150px; height: 150px; border: 2px solid rgba(255, 255, 255, 0.1); bottom: 20%; left: 5%; animation: float3 10s ease-in-out infinite; }
.page-header__shape--3 { width: 200px; height: 200px; background: linear-gradient(135deg, rgba(212, 168, 83, 0.15) 0%, transparent 70%); bottom: -50px; right: 30%; animation: float2 6s ease-in-out infinite; }
.page-header__inner { position: relative; z-index: 1; text-align: center; }
.page-header__label { font-family: var(--font-en); font-size: 13px; font-weight: 600; letter-spacing: 0.2em; color: var(--color-gold); margin-bottom: 16px; display: inline-flex; align-items: center; gap: 10px; padding: 10px 20px; background: rgba(212, 168, 83, 0.15); border: 1px solid rgba(212, 168, 83, 0.3); border-radius: 50px; }
.page-header__label::before { content: ''; width: 8px; height: 8px; background: var(--color-gold); border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
.page-header__title { font-family: var(--font-en); font-size: clamp(48px, 8vw, 80px); font-weight: 800; color: white; letter-spacing: -0.02em; margin-bottom: 12px; text-shadow: 0 4px 30px rgba(0, 0, 0, 0.2); }
.page-header__subtitle { font-size: 18px; font-weight: 500; color: rgba(255, 255, 255, 0.9); }
.page-header__decoration { position: absolute; bottom: 0; left: 0; right: 0; height: 120px; background: linear-gradient(165deg, transparent 40%, rgba(212, 168, 83, 0.08) 40%, rgba(212, 168, 83, 0.04) 60%, transparent 60%); pointer-events: none; }

/* ページナビ */
.page-nav { background: var(--color-black); position: relative; overflow: hidden; }
.page-nav::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(ellipse 50% 100% at 50% 100%, rgba(46, 93, 75, 0.3) 0%, transparent 70%); pointer-events: none; }
.page-nav__list { display: flex; justify-content: center; gap: 8px; padding: 20px 0; flex-wrap: wrap; position: relative; z-index: 1; }
.page-nav__item a { display: block; padding: 14px 28px; font-size: 14px; font-weight: 500; color: rgba(255, 255, 255, 0.7); border-radius: 50px; transition: var(--transition-base); border: 1px solid transparent; }
.page-nav__item a:hover { color: white; background: rgba(255, 255, 255, 0.1); }
.page-nav__item.is-active a { background: var(--gradient-gold); color: white; border-color: transparent; box-shadow: 0 4px 15px rgba(212, 168, 83, 0.4); }

/* パンくずリスト */
.breadcrumb { background: var(--color-gray-50); padding: 16px 0; border-bottom: 1px solid var(--color-gray-200); }
.breadcrumb__list { display: flex; align-items: center; gap: 8px; font-size: 13px; flex-wrap: wrap; }
.breadcrumb__item { display: flex; align-items: center; gap: 8px; color: var(--color-gray); }
.breadcrumb__item a { color: var(--color-gray); }
.breadcrumb__item a:hover { color: var(--color-primary); }
.breadcrumb__item::after { content: ''; width: 16px; height: 16px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%239CA3A3' stroke-width='2'%3E%3Cpath d='M9 5l7 7-7 7'/%3E%3C/svg%3E") center/contain no-repeat; }
.breadcrumb__item:last-child::after { display: none; }
.breadcrumb__item:last-child { color: var(--color-primary); font-weight: 600; }

/* 下層コンテンツ */
.page-content { padding: 100px 0; background: linear-gradient(180deg, var(--color-white) 0%, var(--color-gray-50) 100%); position: relative; }
.page-content::before { content: ''; position: absolute; top: 10%; right: 0; width: 300px; height: 300px; background: radial-gradient(circle, rgba(212, 168, 83, 0.08) 0%, transparent 70%); pointer-events: none; }
.page-content::after { content: ''; position: absolute; bottom: 20%; left: 0; width: 250px; height: 250px; background: radial-gradient(circle, rgba(46, 93, 75, 0.06) 0%, transparent 70%); pointer-events: none; }
.page-content__inner { max-width: 900px; margin: 0 auto; }

/* セクション見出し */
.content-section { margin-bottom: 80px; }
.content-section:last-child { margin-bottom: 0; }
.content-section__header { display: flex; align-items: center; gap: 16px; margin-bottom: 32px; }
.content-section__icon { width: 56px; height: 56px; background: var(--gradient-primary); border-radius: 16px; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(46, 93, 75, 0.3); border: 2px solid var(--color-gold); }
.content-section__icon svg { width: 26px; height: 26px; color: white; }
.content-section__title { font-size: 28px; font-weight: 700; color: var(--color-black); }
.content-section__title span { display: block; font-family: var(--font-en); font-size: 12px; font-weight: 600; color: var(--color-gold-dark); letter-spacing: 0.1em; margin-bottom: 4px; }
.content-section__text { font-size: 15px; line-height: 2; color: var(--color-gray); margin-bottom: 24px; }

/* 会社概要テーブル */
.company-table { width: 100%; border-collapse: separate; border-spacing: 0; background: white; border-radius: 20px; overflow: hidden; box-shadow: 0 10px 40px rgba(28, 28, 28, 0.08); }
.company-table tr { transition: var(--transition-base); }
.company-table tr:hover { background: var(--color-gray-50); }
.company-table th, .company-table td { padding: 24px 28px; text-align: left; font-size: 15px; border-bottom: 1px solid var(--color-gray-100); }
.company-table tr:last-child th, .company-table tr:last-child td { border-bottom: none; }
.company-table th { width: 180px; background: linear-gradient(135deg, var(--color-primary-pale) 0%, var(--color-gray-50) 100%); font-weight: 600; color: var(--color-primary-dark); position: relative; }
.company-table th::after { content: ''; position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: 3px; height: 60%; background: var(--color-gold); border-radius: 3px; }
.company-table td { color: var(--color-black-light); line-height: 1.9; }
.company-table td a { color: var(--color-primary); font-weight: 500; }
.company-table td a:hover { color: var(--color-gold-dark); }

/* アクセス */
.access-info { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 24px; }
.access-item { background: white; padding: 20px 24px; border-radius: 12px; display: flex; align-items: center; gap: 16px; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); border: 1px solid var(--color-gray-100); transition: var(--transition-base); }
.access-item:hover { border-color: var(--color-gold); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08); }
.access-item__icon { width: 44px; height: 44px; background: var(--color-primary-pale); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.access-item__icon svg { width: 22px; height: 22px; color: var(--color-primary); }
.access-item__text { font-size: 14px; color: var(--color-black); line-height: 1.6; }
.access-item__text strong { display: block; font-size: 12px; color: var(--color-gold-dark); margin-bottom: 2px; }
.access-map { width: 100%; height: 400px; border-radius: 20px; overflow: hidden; box-shadow: 0 10px 40px rgba(28, 28, 28, 0.1); border: 4px solid white; }
.access-map iframe { width: 100%; height: 100%; border: none; }

/* レスポンシブ */
@media (max-width: 1024px) {
  .page-nav__list { gap: 8px; padding: 16px; }
  .page-nav__item a { padding: 12px 20px; font-size: 13px; }
}
@media (max-width: 768px) {
  .page-header { padding: 120px 0 70px; }
  .page-header__title { font-size: 42px; }
  .page-header__subtitle { font-size: 15px; }
  .page-header__label { font-size: 11px; padding: 8px 16px; }
  .page-nav__list { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; gap: 6px; padding: 12px 16px; -webkit-overflow-scrolling: touch; }
  .page-nav__item a { padding: 10px 18px; font-size: 13px; white-space: nowrap; }
  .page-content { padding: 50px 0; }
  .page-content::before { width: 200px; height: 200px; top: 5%; opacity: 0.8; }
  .page-content::after { width: 150px; height: 150px; bottom: 10%; opacity: 0.8; }
  .content-section { margin-bottom: 50px; }
  .content-section__header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .content-section__icon { width: 48px; height: 48px; }
  .content-section__title { font-size: 22px; }
  .company-table th, .company-table td { display: block; width: 100%; padding: 16px 20px; }
  .company-table th { border-bottom: none; padding-bottom: 8px; }
  .company-table th::after { display: none; }
  .company-table td { padding-top: 0; padding-bottom: 20px; }
  .access-info { grid-template-columns: 1fr; }
  .access-map { height: 280px; border-radius: 16px; }
}

/* ==============================
   CTA Footer（マスコット付き）
============================== */
.cta-footer { position: relative; padding: 70px 0 0; background: var(--color-primary-dark); overflow: hidden; }
.cta-footer__bg { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 50%, var(--color-primary-dark) 100%); }
.cta-footer__bg::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(ellipse 80% 50% at 20% 50%, rgba(78, 205, 196, 0.15) 0%, transparent 50%), radial-gradient(ellipse 60% 40% at 80% 20%, rgba(212, 168, 83, 0.1) 0%, transparent 50%); }
.cta-footer__bg::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--gradient-gold); }
.cta-footer__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 400px; gap: 40px; align-items: end; }
.cta-footer__content { padding: 40px 0 80px; }
.cta-footer__title { font-size: clamp(28px, 4vw, 42px); font-weight: 700; color: white; margin-bottom: 16px; line-height: 1.4; }
.cta-footer__title span { color: var(--color-gold); }
.cta-footer__text { font-size: 15px; line-height: 1.9; color: rgba(255, 255, 255, 0.8); margin-bottom: 32px; }
.cta-footer__buttons { display: flex; flex-direction: column; gap: 16px; max-width: 500px; }
.cta-footer__btn { display: flex; align-items: center; gap: 16px; padding: 20px 24px; border-radius: 12px; transition: var(--transition-base); text-decoration: none; }
.cta-footer__btn--primary { background: rgba(255, 255, 255, 0.15); border: 2px solid rgba(255, 255, 255, 0.2); backdrop-filter: blur(10px); }
.cta-footer__btn--primary:hover { background: rgba(255, 255, 255, 0.25); border-color: var(--color-gold); transform: translateX(8px); }
.cta-footer__btn--secondary { background: rgba(255, 255, 255, 0.08); border: 2px solid rgba(255, 255, 255, 0.1); }
.cta-footer__btn--secondary:hover { background: rgba(255, 255, 255, 0.15); border-color: rgba(255, 255, 255, 0.3); transform: translateX(8px); }
.cta-footer__btn-icon { width: 48px; height: 48px; background: var(--gradient-gold); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cta-footer__btn-icon svg { width: 24px; height: 24px; color: white; }
.cta-footer__btn-text { flex: 1; }
.cta-footer__btn-text span { display: block; font-size: 12px; color: rgba(255, 255, 255, 0.7); margin-bottom: 4px; }
.cta-footer__btn-text strong { display: block; font-size: 18px; font-weight: 700; color: white; }
.cta-footer__btn-arrow { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; }
.cta-footer__btn-arrow svg { width: 20px; height: 20px; color: rgba(255, 255, 255, 0.5); transition: var(--transition-base); }
.cta-footer__btn:hover .cta-footer__btn-arrow svg { color: var(--color-gold); transform: translateX(4px); }
.cta-footer__mascot { position: relative; display: flex; justify-content: center; align-items: flex-end; }
.cta-footer__mascot img { max-height: 550px; width: auto; filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3)); }

/* CTA Footer レスポンシブ */
@media (max-width: 1024px) {
  .cta-footer__inner { grid-template-columns: 1fr 300px; }
  .cta-footer__mascot img { max-height: 380px; }
}
@media (max-width: 768px) {
  .cta-footer { padding: 60px 0 0; }
  .cta-footer__inner { grid-template-columns: 1fr; gap: 0; }
  .cta-footer__content { padding: 0 0 40px; text-align: center; }
  .cta-footer__title { font-size: 26px; }
  .cta-footer__text { font-size: 14px; }
  .cta-footer__buttons { max-width: 100%; }
  .cta-footer__btn { padding: 16px 20px; gap: 12px; }
  .cta-footer__btn-icon { width: 44px; height: 44px; }
  .cta-footer__btn-text strong { font-size: 16px; }
  .cta-footer__mascot { justify-content: center; }
  .cta-footer__mascot img { max-height: 330px; }
}

/* メッセージ ビジュアル */
.message-visual { position: relative; margin-bottom: 80px; border-radius: 24px; overflow: hidden; box-shadow: 0 30px 60px rgba(28, 28, 28, 0.2); }
.message-visual__image { width: 100%; height: 320px; object-fit: cover; display: block; }
.message-visual__overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(135deg, rgba(30, 63, 51, 0.7) 0%, rgba(46, 93, 75, 0.4) 50%, transparent 100%); display: flex; align-items: center; padding: 60px; }
.message-visual__content { max-width: 500px; }
.message-visual__label { font-family: var(--font-en); font-size: 12px; font-weight: 600; letter-spacing: 0.2em; color: var(--color-gold); margin-bottom: 16px; display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px; background: rgba(212, 168, 83, 0.2); border: 1px solid rgba(212, 168, 83, 0.4); border-radius: 50px; }
.message-visual__label::before { content: ''; width: 6px; height: 6px; background: var(--color-gold); border-radius: 50%; }
.message-visual__title { font-size: clamp(24px, 4vw, 36px); font-weight: 700; color: white; line-height: 1.6; text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 4px 20px rgba(0, 0, 0, 0.5), 0 8px 40px rgba(0, 0, 0, 0.3); }
.message-visual__title span { color: var(--color-gold); display: block; text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 4px 20px rgba(0, 0, 0, 0.5); }
.message-visual__decoration { position: absolute; bottom: 0; right: 0; width: 40%; height: 100%; background: linear-gradient(90deg, transparent 0%, rgba(212, 168, 83, 0.1) 100%); pointer-events: none; }

/* メッセージ ビジュアル レスポンシブ */
@media (max-width: 768px) {
  .message-visual { margin-bottom: 50px; border-radius: 16px; }
  .message-visual__image { height: 240px; }
  .message-visual__overlay { padding: 30px; align-items: flex-end; background: linear-gradient(180deg, transparent 0%, rgba(30, 63, 51, 0.9) 100%); }
  .message-visual__title { font-size: 20px; }
  .message-visual__label { font-size: 10px; padding: 6px 12px; }
}

/* ==============================
   代表メッセージ
============================== */
.message-section { max-width: 100%; position: relative; }
.message-section::before { content: ''; position: absolute; top: 50%; left: -100px; width: 200px; height: 400px; background: linear-gradient(180deg, rgba(212, 168, 83, 0.05) 0%, transparent 100%); transform: translateY(-50%) rotate(-15deg); pointer-events: none; border-radius: 100px; }
.message-section__header { text-align: center; margin-bottom: 60px; }
.message-section__label { font-family: var(--font-en); font-size: 13px; font-weight: 600; letter-spacing: 0.2em; color: var(--color-gold-dark); margin-bottom: 16px; }
.message-section__title { font-size: clamp(24px, 4vw, 36px); font-weight: 700; color: var(--color-black); line-height: 1.6; }
.message-section__title span { color: var(--color-primary); }
.message-section__content { display: grid; grid-template-columns: 280px 1fr; gap: 60px; align-items: start; }
.message-section__photo { position: sticky; top: 120px; }
.message-section__photo-frame { position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 20px 50px rgba(28, 28, 28, 0.15); margin-bottom: 20px; }
.message-section__photo-frame::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; border: 4px solid var(--color-gold); border-radius: 20px; z-index: 1; }
.message-section__photo-frame img { width: 100%; height: auto; display: block; }
.message-section__photo-info { text-align: center; }
.message-section__photo-position { font-size: 13px; color: var(--color-gray); margin-bottom: 4px; }
.message-section__photo-name { font-size: 20px; font-weight: 700; color: var(--color-black); }
.message-section__text { font-size: 16px; line-height: 2.2; color: var(--color-black-light); }
.message-section__text p { margin-bottom: 28px; }
.message-section__motto { background: var(--color-black); border-radius: 24px; padding: 50px; margin: 50px 0; position: relative; overflow: hidden; }
.message-section__motto::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(ellipse 60% 50% at 80% 20%, rgba(78, 205, 196, 0.1) 0%, transparent 50%), radial-gradient(ellipse 40% 40% at 20% 80%, rgba(212, 168, 83, 0.08) 0%, transparent 50%); pointer-events: none; }
.message-section__motto-list { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 16px; max-width: 500px; margin-left: auto; }
.message-section__motto-item { display: flex; align-items: center; gap: 20px; padding: 24px 32px; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 16px; transition: var(--transition-base); transform: translateX(0); }
.message-section__motto-item:nth-child(1) { transform: translateX(-40px); }
.message-section__motto-item:nth-child(2) { transform: translateX(-20px); }
.message-section__motto-item:nth-child(3) { transform: translateX(0); }
.message-section__motto-item:hover { background: rgba(255, 255, 255, 0.06); border-color: rgba(212, 168, 83, 0.3); transform: translateX(0); }
.message-section__motto-icon { width: 48px; height: 48px; background: var(--color-gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.message-section__motto-icon svg { width: 24px; height: 24px; color: white; }
.message-section__motto-text { font-size: 17px; font-weight: 600; color: white; letter-spacing: 0.02em; }
.message-section__signature { margin-top: 50px; padding-top: 40px; border-top: 1px solid var(--color-gray-200); text-align: right; }
.message-section__signature-company { font-size: 14px; color: var(--color-gray); margin-bottom: 8px; }
.message-section__signature-position { font-size: 13px; color: var(--color-gray); margin-bottom: 4px; }
.message-section__signature-name { font-size: 24px; font-weight: 700; color: var(--color-black); font-family: var(--font-sans); }

/* 代表メッセージ レスポンシブ */
@media (max-width: 768px) {
  .message-section__header { margin-bottom: 40px; }
  .message-section__title { font-size: 22px; }
  .message-section__content { grid-template-columns: 1fr; gap: 40px; }
  .message-section__photo { position: static; max-width: 240px; margin: 0 auto; }
  .message-section__text { font-size: 15px; }
  .message-section__motto { padding: 24px 20px; }
  .message-section__motto p { font-size: 18px; }
  .message-section__signature-name { font-size: 20px; }
  .message-section__text { background: white; padding: 30px 24px; border-radius: 20px; box-shadow: 0 10px 40px rgba(28, 28, 28, 0.06); border: 1px solid var(--color-gray-100); }
  .message-section__text p:last-of-type { margin-bottom: 0; }
  .message-section__signature { background: var(--color-gray-50); margin: 30px -24px -30px; padding: 30px 24px; border-radius: 0 0 20px 20px; border-top: 1px solid var(--color-gray-100); }
  .message-section__motto { padding: 32px 20px; margin: 40px -24px; border-radius: 0; }
  .message-section__motto-list { max-width: 100%; margin-left: 0; }
  .message-section__motto-item { padding: 18px 20px; gap: 16px; }
  .message-section__motto-item:nth-child(1) { transform: translateX(0); }
  .message-section__motto-item:nth-child(2) { transform: translateX(16px); }
  .message-section__motto-item:nth-child(3) { transform: translateX(32px); }
  .message-section__motto-icon { width: 40px; height: 40px; }
  .message-section__motto-icon svg { width: 20px; height: 20px; }
  .message-section__motto-text { font-size: 15px; }
}