@charset "UTF-8";

/* ==========================================================================
   Variables
   ========================================================================== */
:root {
    --color-primary: #FF7B00;       
    --color-primary-light: #fff2e5; 
    --color-secondary: #FFB067;     
    --color-accent-blue: #e0f2fe;   
    --color-accent-green: #dcfce7;  

    --color-text-main: #2b2b2b;
    --color-text-sub: #5f5f5f;
    --color-bg: #fcf9f5;

    --font-ja-title: 'Zen Maru Gothic', sans-serif;
    --font-ja-body: 'Noto Sans JP', sans-serif;
    --font-en: 'Quicksand', sans-serif;

    --shadow-premium: 0 30px 60px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.03);
    --shadow-hover: 0 40px 80px rgba(255, 123, 0, 0.1), 0 8px 24px rgba(0, 0, 0, 0.05);
    
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: 1px solid rgba(255, 255, 255, 0.6);

    --content-width: 1200px;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { 
    scroll-behavior: smooth; 
    font-size: 62.5%; 
    scroll-padding-top: 140px; 
    overflow-x: hidden !important; 
}
body {
    font-family: var(--font-ja-body); font-size: 1.6rem;
    color: var(--color-text-main); background-color: var(--color-bg);
    line-height: 1.8; letter-spacing: 0.04em;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden !important; 
    width: 100% !important;
}
a { text-decoration: none; color: inherit; transition: all 0.4s; }
ul { list-style: none; }
img { max-width: 100%; height: auto; vertical-align: bottom; }

/* ==========================================================================
   Utility
   ========================================================================== */
.u-text-center { text-align: center; }
.u-mb-20 { margin-bottom: 20px; }
.u-mb-40 { margin-bottom: 40px; }
.u-mb-60 { margin-bottom: 60px; }
.u-ilb { display: inline-block; } 
.u-hidden-sp { display: none !important; }
@media (min-width: 769px) {
    .u-hidden-pc { display: none !important; }
    .u-hidden-sp { display: inline-block !important; } 
}

/* ==========================================================================
   Layout
   ========================================================================== */
.l-container { width: 100%; max-width: var(--content-width); margin: 0 auto; padding: 0 5%; position: relative; z-index: 1;}
.l-section { padding: clamp(100px, 15vw, 160px) 0; }
.l-header {
    position: fixed; top: 0; left: 0; width: 100%;
    background: rgba(252, 249, 245, 0.85);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    z-index: 100; border-bottom: 1px solid rgba(0,0,0,0.03);
}
.l-header__inner {
    display: flex; justify-content: space-between; align-items: center;
    max-width: 1400px; margin: 0 auto; padding: 15px 5%;
}
.l-footer {
    background-color: #edeae6; padding: clamp(40px, 6vw, 60px) 0 clamp(80px, 10vw, 100px);
    text-align: center; color: var(--color-text-sub); line-height: 1.8;
}
.l-footer__nav-wrap { margin-bottom: 30px; }
.l-footer__nav { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; margin-bottom: 15px; }
.l-footer__nav--lower { gap: 20px; font-size: 1.4rem; }
.l-footer__nav a { font-weight: 700; color: var(--color-primary); transition: opacity 0.3s; }
.l-footer__nav a:hover { opacity: 0.7; }

/* ==========================================================================
   Components
   ========================================================================== */
.c-btn {
    display: inline-flex; justify-content: center; align-items: center;
    background: var(--color-primary); color: #fff;
    font-family: var(--font-ja-title); font-weight: 700;
    padding: 18px 50px; border-radius: 100px;
    box-shadow: 0 10px 25px rgba(255, 123, 0, 0.3);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}
.c-btn--small { padding: 12px 32px; font-size: 1.4rem; box-shadow: 0 6px 15px rgba(255, 123, 0, 0.2); }
.c-btn--large { padding: 22px 70px; font-size: 1.8rem; width: 100%; max-width: 450px; }
.c-btn:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 15px 30px rgba(255, 123, 0, 0.4); }

.c-btn--hero {
    font-size: 2rem; padding: 24px 60px;
    box-shadow: 0 10px 30px rgba(255, 123, 0, 0.4);
    animation: pulse 2.5s infinite;
}
@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 10px 30px rgba(255, 123, 0, 0.4); }
    50% { transform: scale(1.03); box-shadow: 0 20px 45px rgba(255, 123, 0, 0.5); }
    100% { transform: scale(1); box-shadow: 0 10px 30px rgba(255, 123, 0, 0.4); }
}

.c-logo { display: flex; align-items: center; }
.c-logo a { display: block; }
.c-logo img { max-width: 100%; height: auto; display: block; }

.c-section-title { text-align: center; margin-bottom: clamp(50px, 8vw, 100px); }
.c-section-title__en {
    display: block; font-family: var(--font-en); font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    color: var(--color-primary); letter-spacing: 0.3em; font-weight: 700; margin-bottom: 12px;
}
.c-section-title__ja { 
    font-family: var(--font-ja-title); font-size: clamp(2.8rem, 4.5vw, 4rem); 
    font-weight: 900; color: var(--color-text-main); letter-spacing: -0.02em; 
}

.c-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: var(--glass-border);
    border-radius: 32px; box-shadow: var(--shadow-premium);
    padding: clamp(30px, 5vw, 60px); 
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s;
}
.c-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); }

.c-glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: var(--glass-border);
    border-radius: 32px; box-shadow: var(--shadow-premium);
}

.c-marker { 
    background: linear-gradient(120deg, var(--color-primary), #ff4b2b);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    font-weight: 900;
}

.c-hamburger {
    display: none; width: 44px; height: 44px; position: relative;
    background: none; border: none; cursor: pointer; z-index: 101;
}
.c-hamburger span {
    position: absolute; left: 8px; width: 28px; height: 2px;
    background: var(--color-primary); transition: 0.3s;
}
.c-hamburger span:nth-child(1) { top: 14px; }
.c-hamburger span:nth-child(2) { top: 21px; }
.c-hamburger span:nth-child(3) { top: 28px; }
.c-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.c-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.c-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Table --- */
.c-table { width: 100%; border-collapse: collapse; margin-top: 20px; }
.c-table th, .c-table td { padding: 25px; border: 1px solid #eee; }
.c-table th { background: var(--color-primary-light); font-weight: 700; text-align: center; font-size: 1.8rem; }
.c-table th:first-child, .c-table td:first-child { width: 70%; white-space: nowrap; word-break: keep-all; } 
.c-table td:first-child { background: #fffcf8; font-weight: 700; } 
.c-table td:last-child { text-align: right; font-weight: 900; color: var(--color-primary); font-size: 2rem; white-space: nowrap; word-break: keep-all; } 

/* ==========================================================================
   Project Sections
   ========================================================================== */
.p-global-nav { display: flex; align-items: center; gap: 40px; }
.p-global-nav__list { display: flex; gap: 30px; }
.p-global-nav__list a { font-weight: 700; font-family: var(--font-ja-title); font-size: 1.5rem;}
.p-global-nav__list a:hover { color: var(--color-primary); }

.p-mobile-menu {
    position: fixed; inset: 0; background: rgba(252, 249, 245, 0.98);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    z-index: 99; display: flex; justify-content: center; align-items: center;
    opacity: 0; visibility: hidden; transition: 0.4s ease;
}
.p-mobile-menu[aria-hidden="false"] { opacity: 1; visibility: visible; }
.p-mobile-menu ul { text-align: center; }
.p-mobile-menu li { margin-bottom: 30px; font-family: var(--font-ja-title); font-size: 2.2rem; font-weight: 700; }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.p-hero { 
    position: relative; 
    padding: clamp(160px, 20vw, 220px) 0 clamp(100px, 12vw, 140px); 
    min-height: 100svh; 
    display: flex; align-items: center; justify-content: flex-start;
}
.p-hero__bg-image {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center; background-repeat: no-repeat;
    z-index: 0;
}
.p-hero__overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(252, 249, 245, 1) 30%, rgba(252, 249, 245, 0) 100%);
    z-index: 1;
}
.p-hero__bg-shapes { 
    position: absolute; top: 0; left: 0; width: 50%; height: 100%; 
    overflow: visible; z-index: 2; filter: blur(80px); pointer-events: none;
}
.p-hero__blob { 
    position: absolute; border-radius: 50%; 
    animation: float 20s infinite ease-in-out alternate; 
    mix-blend-mode: multiply; 
}
.p-hero__blob--1 { width: 50vw; height: 50vw; background: #ffdcb5; top: -20%; left: -10%; opacity: 0.8;}
.p-hero__blob--2 { width: 40vw; height: 40vw; background: #ffe4e1; bottom: -10%; left: 20%; animation-delay: -5s; opacity: 0.7;}

.p-hero__inner { position: relative; z-index: 3; }
.p-hero__content { max-width: 650px; } 
.p-hero__catchphrase { 
    font-family: var(--font-ja-title); font-size: clamp(3.2rem, 5vw, 5.6rem); 
    line-height: 1.5; font-weight: 900; margin-bottom: 30px; color: var(--color-text-main);
    white-space: nowrap; letter-spacing: -0.02em;
}
.p-hero__text { 
    font-size: clamp(1.6rem, 2vw, 1.8rem); font-weight: 700; 
    color: var(--color-text-sub); margin-bottom: 50px; line-height: 1.8;
}
.p-hero__text-large {
    display: inline-block; margin-top: 10px; font-family: var(--font-ja-title);
    font-size: clamp(2.4rem, 3.5vw, 3.6rem); font-weight: 900; color: var(--color-primary);
}
.p-hero__btn-wrap { margin-top: 50px; }

/* --------------------------------------------------------------------------
   About
   -------------------------------------------------------------------------- */
.p-about { background-color: transparent; }
.p-about__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-bottom: 60px; }
.c-card--worry { text-align: center; border: none; background: #fff; padding: clamp(20px, 3vw, 30px); }
.c-card__icon { font-size: 5.6rem; margin-bottom: 20px; }
.c-card__text { font-size: clamp(1.4rem, 1.4vw, 1.5rem); font-weight: 700; line-height: 1.6; }
.p-about__message { text-align: center; font-size: clamp(1.8rem, 2.5vw, 2.4rem); line-height: 2; padding: 60px; }

/* --------------------------------------------------------------------------
   Features (3つの理由)
   -------------------------------------------------------------------------- */
.p-features { background-color: var(--color-primary-light); }
.p-features__grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 40px; }

.p-feature-block { 
    background: #fff; border-radius: 40px; padding: clamp(40px, 6vw, 60px); 
    box-shadow: var(--shadow-premium); display: flex; flex-direction: column; gap: 40px; position: relative; overflow: hidden;
}
.p-feature-block:nth-child(1) { grid-column: span 12; flex-direction: row; align-items: center; }
.p-feature-block:nth-child(2) { grid-column: span 6; }
.p-feature-block:nth-child(3) { grid-column: span 6; }

.p-feature-block__content { flex: 1; }
.p-feature-block__num { display: block; font-family: var(--font-en); font-size: clamp(8rem, 12vw, 12rem); font-weight: 900; color: rgba(255, 123, 0, 0.15); line-height: 0.8; margin-bottom: -20px; }
.p-feature-block__title { font-family: var(--font-ja-title); font-size: clamp(1.8rem, 2vw, 2.2rem); line-height: 1.5; font-weight: 700; margin-bottom: 24px; position: relative; z-index: 1; }
.p-feature-block__image { flex: 1; border-radius: 24px; overflow: hidden; }
.p-feature-block__image img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    object-position: right center;
    aspect-ratio: 4/3;
}

/* --------------------------------------------------------------------------
   Domains (5領域)
   -------------------------------------------------------------------------- */
.p-domains { background-color: transparent; }
.p-domains__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 30px; }
.p-domain-card { display: flex; flex-direction: column; justify-content: center; padding: clamp(40px, 5vw, 50px); border: none; }

.p-domain-card:nth-child(1) { grid-column: span 4; }
.p-domain-card:nth-child(2) { grid-column: span 2; }
.p-domain-card:nth-child(3) { grid-column: span 2; }
.p-domain-card:nth-child(4) { grid-column: span 4; }
.p-domain-card:nth-child(5) { grid-column: span 3; }
.p-domain-card:nth-child(6) { grid-column: span 3; background: var(--color-primary-light); }

.p-domain-card__header { display: flex; align-items: center; gap: 24px; margin-bottom: 20px; }
.p-domain-card__icon { width: 80px; height: 80px; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 3.6rem; color: #fff; flex-shrink: 0; box-shadow: inset 0 -4px 0 rgba(0,0,0,0.15); }
.p-domain-card__icon--green  { background-color: #6fb03e; }
.p-domain-card__icon--red    { background-color: #ea4335; }
.p-domain-card__icon--purple { background-color: #af57b1; }
.p-domain-card__icon--orange { background-color: #f68b28; }
.p-domain-card__icon--blue   { background-color: #2b9fda; }
.p-domain-card__title { font-family: var(--font-ja-title); font-size: 2.2rem; line-height: 1.4; color: var(--color-text-main); font-weight: 900; }
.p-domain-card__text { font-size: 1.6rem; color: var(--color-text-sub); line-height: 1.8; }
.p-domain-card--cta { justify-content: center; align-items: center; text-align: center; }
.p-domain-card__cta-text { font-size: 1.8rem; font-weight: 700; margin-bottom: 30px; color: var(--color-text-main); line-height: 1.6; }
.p-domain-card__btn { width: 100%; box-sizing: border-box; padding: 20px; font-size: 1.8rem; }

/* --------------------------------------------------------------------------
   Tabs (1日の流れ)
   -------------------------------------------------------------------------- */
.p-flow { background-color: #fff; }
.p-tabs { max-width: 900px; margin: 0 auto; }
.p-tabs__nav { display: flex; justify-content: center; gap: 20px; margin-bottom: 50px; border-bottom: 2px solid #f0f0f0; padding-bottom: 15px; }
.p-tabs__btn {
    background: none; border: none; font-family: var(--font-ja-title); font-size: 2.2rem; font-weight: 700;
    color: #ccc; padding: 10px 40px; cursor: pointer; position: relative; transition: 0.3s;
}
.p-tabs__btn::after {
    content: ''; position: absolute; bottom: -17px; left: 0; width: 100%; height: 4px;
    background: var(--color-primary); transform: scaleX(0); transition: transform 0.3s ease; border-radius: 2px;
}
.p-tabs__btn.is-active { color: var(--color-text-main); }
.p-tabs__btn.is-active::after { transform: scaleX(1); }
.p-tabs__content { display: none; animation: fadeIn 0.5s ease; }
.p-tabs__content.is-active { display: block; }

.p-flow__card { border: none; background: var(--color-bg); }
.p-flow__list { display: grid; grid-template-columns: 100px 1fr; gap: 30px; }
.p-flow__list dt { font-weight: 900; color: var(--color-primary); font-family: var(--font-en); font-size: 2.2rem; border-right: 3px dotted #ddd; padding-right: 20px; display: flex; align-items: center;}
.p-flow__list dd { border-bottom: 1px solid rgba(0,0,0,0.05); padding-bottom: 20px; display: flex; align-items: center; font-size: 1.8rem; font-weight: 700; }

/* --------------------------------------------------------------------------
   Events Gallery & Instagram
   -------------------------------------------------------------------------- */
.p-events { background-color: var(--color-primary-light); }
.p-events__gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; }
.p-events__img-wrap { overflow: hidden; border-radius: 24px; box-shadow: var(--shadow-premium); aspect-ratio: 4 / 3; }
.p-events__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.p-events__img-wrap:hover img { transform: scale(1.08); }

.p-events__instagram { text-align: center; margin-top: 60px; }
.c-btn-ig {
    display: inline-flex; align-items: center; justify-content: center; gap: 12px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff; font-family: var(--font-ja-title); font-weight: 700; font-size: 1.6rem;
    padding: 16px 40px; border-radius: 100px; text-decoration: none;
    box-shadow: 0 10px 25px rgba(220, 39, 67, 0.3); transition: all 0.4s ease;
}
.c-btn-ig:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 15px 30px rgba(220, 39, 67, 0.4); opacity: 0.9; }
.c-icon-ig { fill: currentColor; }

/* --------------------------------------------------------------------------
   Staff
   -------------------------------------------------------------------------- */
.p-staff { background-color: transparent; }
.p-staff__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; max-width: 1000px; margin: 0 auto; }
.p-staff-card { display: flex; flex-direction: column; gap: 30px; border: none; }
.p-staff-card--lead { grid-column: 1 / -1; }
.p-staff-card__header { display: flex; align-items: center; gap: 24px; border-bottom: 2px dashed #eee; padding-bottom: 24px; }
.p-staff-card__name { font-size: 1.6rem; color: var(--color-text-sub); font-weight: 700; }
.p-staff-card__name span { display: block; font-family: var(--font-ja-title); font-size: 2.8rem; color: var(--color-primary); font-weight: 900; margin-top: 5px;}
.p-staff-card__text { font-size: 1.6rem; line-height: 2; }

.p-staff__image-wrap { 
    max-width: 1000px; margin: 60px auto 0; 
    border-radius: 32px; overflow: hidden; 
    box-shadow: var(--shadow-premium); 
    border: 8px solid rgba(255,255,255,0.8); 
}
.p-staff__image-wrap img { width: 100%; height: auto; display: block; }

@media (min-width: 769px) {
    .p-contact__tels { flex-direction: row; justify-content: center; gap: 40px; }
    
    /* ★修正: リードのカードの横並び設定を削除し、下2人と同様の縦並びに統一 */
    .p-staff-card--lead { padding: 50px; }
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.p-faq { background-color: #fff; }
.p-faq__list { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 20px; }
.p-faq__item { background: var(--color-bg); border-radius: 20px; overflow: hidden; border: 1px solid #eee; }
.p-faq__q { width: 100%; display: flex; align-items: center; padding: 30px; background: none; border: none; font-family: var(--font-ja-title); font-size: 2rem; font-weight: 700; color: var(--color-text-main); text-align: left; cursor: pointer; transition: background 0.3s; }
.p-faq__q:hover { background: #fafafa; }
.p-faq__q-icon { font-family: var(--font-en); color: var(--color-primary); font-size: 3.2rem; margin-right: 20px; font-weight: 900; }
.p-faq__q-text { flex: 1; padding-right: 30px; }
.p-faq__toggle-icon { width: 24px; height: 3px; background: var(--color-text-main); position: relative; transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.p-faq__toggle-icon::after { content: ''; position: absolute; width: 3px; height: 24px; background: var(--color-text-main); top: -10px; left: 10px; transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.p-faq__q[aria-expanded="true"] .p-faq__toggle-icon::after { transform: rotate(90deg); opacity: 0; }
.p-faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.4s ease; background: #fff; }
.p-faq__a[aria-hidden="false"] { grid-template-rows: 1fr; }
.p-faq__a-inner { overflow: hidden; }
.p-faq__a-inner p { padding: 0 30px 30px 80px; margin: 0; color: var(--color-text-sub); line-height: 1.8; font-size: 1.6rem; }

/* --------------------------------------------------------------------------
   Voice
   -------------------------------------------------------------------------- */
.p-voice { background-color: transparent; }
.p-voice__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.p-voice__card { background: #fff; position: relative; border: none; padding: 50px; }
.p-voice__card::before { content: '“'; position: absolute; top: 10px; left: 30px; font-family: var(--font-en); font-size: 10rem; color: var(--color-primary-light); line-height: 1; z-index: 0; }
.p-voice__attr { font-size: 1.6rem; font-weight: 900; color: var(--color-primary); margin-bottom: 15px; position: relative; z-index: 1;}
.p-voice__title { font-family: var(--font-ja-title); font-size: 2.2rem; margin-bottom: 25px; position: relative; z-index: 1; font-weight: 900;}
.p-voice__text { font-size: 1.6rem; line-height: 2; position: relative; z-index: 1;}

/* --------------------------------------------------------------------------
   Guide & Timeline
   -------------------------------------------------------------------------- */
.p-guide { background-color: var(--color-primary-light); }
.p-guide__h3 { font-family: var(--font-ja-title); font-size: 2.8rem; color: var(--color-primary); margin-bottom: 20px; font-weight: 900; }
.p-guide__table-wrap { max-width: 800px; margin: 40px auto 0; }

.p-timeline { max-width: 900px; margin: 0 auto; position: relative; padding-left: 50px; }
.p-timeline::before { content: ''; position: absolute; left: 15px; top: 0; width: 4px; height: 100%; background: #fff; border-radius: 2px;}
.p-timeline__item { position: relative; margin-bottom: 80px; }
.p-timeline__item::before { content: ''; position: absolute; left: -43px; top: 10px; width: 20px; height: 20px; background: var(--color-primary); border: 5px solid #fff; border-radius: 50%; box-shadow: 0 0 0 5px rgba(255,255,255,0.5); z-index: 1; }
.p-timeline__title { font-family: var(--font-ja-title); font-size: 2rem; margin-bottom: 15px; font-weight: 900; }
.p-timeline--center { max-width: 700px; padding-left: 60px; }
.p-timeline--center .p-timeline__title { color: var(--color-primary); font-size: 2.4rem; }

/* --------------------------------------------------------------------------
   Access & Contact
   -------------------------------------------------------------------------- */
.p-access__box { display: flex; padding: 0; overflow: hidden; border-radius: 40px;}
.p-access__title { font-family: var(--font-ja-title); font-size: 2.6rem; color: var(--color-primary); margin-bottom: 30px; font-weight: 900;}
.p-access__info { flex: 1.2; padding: clamp(40px, 6vw, 80px); background: #fff; }
.p-access__list { display: grid; grid-template-columns: 140px 1fr; gap: 25px; }
.p-access__list dt { font-weight: 900; color: var(--color-text-main); padding-top: 5px; font-size: 1.8rem;}
.p-access__list dd { border-bottom: 1px solid rgba(0,0,0,0.05); padding-bottom: 20px; font-size: 1.6rem; line-height: 1.6; }
.p-access__tel { font-family: var(--font-en); font-size: 3rem; font-weight: 900; color: var(--color-primary); }
.p-access__map-wrap { flex: 1; padding: 20px 20px 20px 0; background: #fff; }
.p-access__map { width: 100%; height: 100%; min-height: 500px; border-radius: 24px; overflow: hidden; box-shadow: inset 0 0 0 1px rgba(0,0,0,0.05); }

.p-contact__wrapper { max-width: 900px; margin: 0 auto; border: none; background: var(--color-primary-light); padding: clamp(30px, 5vw, 40px); border-radius: 32px; }
.p-contact__lead { text-align: center; margin-bottom: 50px; font-size: 1.6rem; font-weight: 700;}

.p-contact__tel-box { text-align: center; margin-bottom: 60px; padding-bottom: 40px; border-bottom: 2px dashed #fff; }
.p-contact__tel-label { margin-bottom: 15px; font-size: 1.6rem; font-weight: 700;}
.p-contact__tels { display: flex; flex-direction: column; gap: 20px; margin-top: 10px; }
.p-contact__tel-item { text-align: center; }
.p-contact__tel-name { display: block; font-size: 1.5rem; font-weight: 700; color: var(--color-text-main); margin-bottom: 8px; }
.p-contact__tel-btn { display: inline-block; font-family: var(--font-en); font-size: clamp(2rem, 3vw, 2.8rem); font-weight: 900; color: var(--color-primary); margin: 0 !important; transition: opacity 0.3s; background: #fff; padding: 15px 40px !important; border-radius: 100px; box-shadow: var(--shadow-premium); }
.p-contact__tel-btn:hover { opacity: 0.8; transform: translateY(-3px);}

.p-form__group { margin-bottom: 30px; }
.p-form__label { display: block; font-weight: 900; margin-bottom: 15px; font-size: 1.6rem; color: var(--color-text-main); }
.p-form__required { background: var(--color-primary); color: #fff; font-size: 1.2rem; padding: 4px 12px; border-radius: 6px; margin-left: 15px; font-weight: 700; vertical-align: middle;}
.p-form__input, .p-form__textarea { width: 100%; padding: 20px; border: 2px solid #fff; border-radius: 16px; font-family: inherit; font-size: 1.6rem; background: #fff; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); box-shadow: inset 0 2px 5px rgba(0,0,0,0.02);}
.p-form__input:focus, .p-form__textarea:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 6px rgba(255, 123, 0, 0.1); }
.p-form__submit-wrap { text-align: center; margin-top: 40px; }
.p-form__submit-wrap label { font-size: 1.6rem; font-weight: 700; cursor: pointer;}
.p-form__submit-wrap input[type="checkbox"] { transform: scale(1.5); margin-right: 10px; vertical-align: middle;}

/* Footer SNS Icon */
.l-footer__sns { display: flex; justify-content: center; margin-bottom: 30px; }
.l-footer__sns a {
    display: inline-flex; justify-content: center; align-items: center;
    width: 50px; height: 50px; border-radius: 50%; color: #fff;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1); transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.l-footer__sns a:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 8px 20px rgba(220, 39, 67, 0.3); opacity: 0.9; }

/* 下部固定ボタン */
.p-sticky-bottom { position: fixed; bottom: 0; left: 0; width: 100%; z-index: 100; box-shadow: 0 -5px 15px rgba(0,0,0,0.08); background: var(--color-primary); }
.p-sticky-bottom__btn { 
    display: flex; flex-direction: row; justify-content: center; align-items: center; gap: 10px;
    padding: 15px 0 calc(15px + env(safe-area-inset-bottom)); 
    font-family: var(--font-ja-title); font-weight: 900; font-size: 1.6rem; 
    color: #fff; text-decoration: none; width: 100%;
}
.p-sticky-bottom__btn .icon { font-size: 2.2rem; margin-bottom: 0; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
    .p-features__grid { grid-template-columns: 1fr; }
    .p-feature-block:nth-child(1) { flex-direction: column; }
    .p-feature-block:nth-child(2), .p-feature-block:nth-child(3) { grid-column: span 12; }
    .p-domains__grid { grid-template-columns: repeat(2, 1fr); }
    .p-domain-card:nth-child(n) { grid-column: span 1; }
    .p-domain-card:nth-child(6) { grid-column: span 2; }
}

@media (max-width: 768px) {
    .c-hamburger { display: block; }
    .p-global-nav { display: none; }
    
    .p-hero__overlay { background: linear-gradient(to bottom, rgba(252, 249, 245, 0.95) 40%, rgba(252, 249, 245, 0.2) 100%); }
    .p-hero__bg-shapes { width: 100%; } 
    .p-hero__blob--1 { width: 80vw; height: 80vw; top: -10%; left: -10%; }
    .p-hero__blob--2 { width: 70vw; height: 70vw; bottom: 30%; left: 30%; }

    .p-hero__inner { flex-direction: column; text-align: center; gap: 40px; padding-top: 40px;}
    .p-hero__catchphrase { white-space: normal; word-break: keep-all; }
    .u-ilb { display: inline; } 

    .p-about__grid { grid-template-columns: 1fr; }
    
    .l-container {
        width: 100vw !important;
        max-width: 100vw !important;
        padding: 0 15px !important; 
        overflow-x: hidden !important;
        box-sizing: border-box !important;
    }

    .p-features__grid { 
        display: block !important; 
        width: 100% !important;
        margin: 0 !important;
    }

    .p-feature-block { 
        width: calc(100vw - 30px) !important; 
        max-width: calc(100vw - 30px) !important; 
        margin: 0 0 20px 0 !important; 
        padding: 30px 20px !important; 
        box-sizing: border-box !important; 
        display: block !important; 
        overflow: hidden !important; 
        border-radius: 24px !important;
        float: none !important;
        position: relative !important;
    }

    .p-feature-block__image {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
        visibility: hidden !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .p-feature-block__content { 
        width: 100% !important; 
        max-width: 100% !important;
        min-width: 0 !important; 
        display: block !important;
    }
    
    .p-feature-block__num { font-size: 5rem; margin-bottom: 0; }
    
    .p-feature-block__text {
        word-break: normal; 
        overflow-wrap: break-word; 
    }

    .p-domains__grid { grid-template-columns: 1fr; }
    .p-domain-card:nth-child(n) { grid-column: span 1; }
    
    .p-domain-card { padding: 30px 20px !important; }
    .p-domain-card__header { gap: 15px !important; }
    .p-domain-card__icon { width: 60px !important; height: 60px !important; font-size: 2.8rem !important; }

    .p-domain-card__title {
        font-size: 1.5rem !important; 
        white-space: nowrap !important;
    }
    
    .p-flow__list { grid-template-columns: 85px 1fr; gap: 15px; }
    .p-flow__list dt { border-right: 2px dotted #ddd; border-bottom: none; padding-bottom: 0; margin-top: 0; font-size: 1.6rem; padding-right: 15px; }
    .p-flow__list dd { font-size: 1.4rem; padding-bottom: 15px; border-bottom: 1px solid rgba(0,0,0,0.05); }
    
    .p-events__gallery { grid-template-columns: 1fr 1fr; }

    .p-staff__grid { grid-template-columns: 1fr; }
    
    .p-voice__grid { grid-template-columns: 1fr; }
    
    .c-table, .c-table tbody {
        display: block; width: 100%; border: none;
    }
    .c-table tr {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 10px;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        gap: 15px;
    }
    .c-table tr:first-child {
        background: var(--color-primary-light);
        border-radius: 12px 12px 0 0;
        border-bottom: none;
    }
    .c-table th, .c-table td, .c-table th:first-child, .c-table td:first-child {
        display: block;
        width: auto !important;
        border: none !important;
        padding: 0 !important;
        text-align: left !important;
        white-space: normal !important;
        word-break: normal !important;
        background: transparent !important;
    }
    .c-table th { font-size: 1.4rem !important; }
    .c-table td:first-child {
        font-size: 1.3rem !important;
        flex: 1; 
        color: var(--color-text-main);
    }
    .c-table th:last-child,
    .c-table td:last-child {
        text-align: right !important;
        flex-shrink: 0; 
    }
    .c-table td:last-child {
        font-size: 1.6rem !important;
        color: var(--color-primary);
        font-weight: 900;
    }

    .p-timeline--center { padding-left: 20px; }

    .p-access__box { 
        flex-direction: column; 
        border-radius: 24px;
        padding: 0; 
        overflow: hidden; 
    }
    .p-access__info { 
        padding: 30px 20px; 
    }
    .p-access__list { grid-template-columns: 1fr; gap: 5px; }
    .p-access__list dt { margin-top: 15px; border: none; }
    .p-access__map-wrap { 
        padding: 0; 
        width: 100%;
        line-height: 0;
        font-size: 0;
    }
    .p-access__map { 
        min-height: auto; 
        height: 250px; 
        border-radius: 0; 
    }
    .p-access__map iframe { 
        height: 250px !important; 
        display: block; 
    }

    .l-footer__nav { flex-direction: column; gap: 20px; }
    .l-footer__nav--upper, .l-footer__nav--lower { gap: 20px; }
    
    .p-sticky-bottom__btn { 
        color: #fff !important; 
    }
}

@media (max-width: 480px) {
    .p-events__gallery { grid-template-columns: 1fr; }
    .p-hero__catchphrase br.u-hidden-pc { display: block; }
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.js-fade-up {
    opacity: 0; transform: translateY(40px) scale(0.98);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.js-fade-up.is-in-view { opacity: 1; transform: translateY(0) scale(1); }