/*
Theme Name: PABLO BRAQUE Parallax Theme
Theme URI: https://www.pablobraque.com/
Author: PABLO BRAQUE CO.,LTD.
Author URI: https://www.pablobraque.com/
Description: parallax Theme
Version: 1.0.0
*/

/* ============================================
   IMPORT FONTS
   ============================================ */
@import url("https://use.typekit.net/lpi0xnl.css");
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;600;700&family=Playfair+Display:wght@400;700&display=swap');

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

html {
    scroll-behavior: smooth;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
}

body {
    overflow-x: hidden;
    font-family: futura-pt, "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
    font-weight: 600;
    line-height: 1.8;
    letter-spacing: 0.15em;
    color: #000000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover {
    opacity: 0.7;
}

ul, ol {
    list-style: none;
}

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    /* Colors */
    --color-primary: #000000;
    --color-secondary: #ffffff;
    --color-accent: #1a1a1a;
    --color-overlay: rgba(0, 0, 0, 0.5);
    --color-overlay-light: rgba(0, 0, 0, 0.3);
    --color-card-bg: rgba(255, 255, 255, 0.95);
    --color-card-border: rgba(0, 0, 0, 0.1);
    --color-text-primary: #000000;
    --color-text-secondary: rgba(0, 0, 0, 0.7);
    --color-text-light: #ffffff;
    --color-text-light-secondary: rgba(255, 255, 255, 0.7);
    
    /* Fonts */
    --font-display: futura-pt, "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif !important;
    --font-body: futura-pt, "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif !important;
    
    /* Font Sizes */
    --font-size-hero: clamp(2.5rem, 8vw, 5rem);
    --font-size-h1: clamp(1.5rem, 4vw, 2.5rem);
    --font-size-h2: clamp(1.25rem, 3vw, 1.75rem);
    --font-size-h3: clamp(1rem, 2vw, 1.25rem);
    --font-size-body: clamp(0.813rem, 1.5vw, 0.938rem);
    --font-size-small: 0.75rem;
    --font-size-label: 0.688rem;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;
    --spacing-section: 150px;
    
    /* Container */
    --container-max: 1400px;
    --container-padding: 5vw;
    
    /* Transitions */
    --transition-smooth: 0.8s ease-out;
    --transition-fast: 0.3s ease;
    
    /* Z-index */
    --z-bg: -1;
    --z-content: 10;
    --z-header: 100;
    --z-modal: 200;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.ttl-l {
    font-size: 29px;
    font-weight: 700;
}

.ttl-m {
    font-size: 18px;
    font-weight: 700;
}

.subttl {
    font-size: 12px;
    font-weight: 600;
    position: relative;
    top: -11px;
}

.text-m {
    font-size: 13px;
    font-weight: 600;
    line-height: 2;
}

.bold {
    font-weight: 700 !important;
}

/* ============================================
   BACKGROUND VIDEO LAYER
   ============================================ */
#bg-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    z-index: var(--z-bg);
    overflow: hidden;
}

#bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    backface-visibility: hidden;
    will-change: transform;
}

#bg-video.is-hidden {
    opacity: 0;
}

/* Video Controls Hidden */
video::-webkit-media-controls,
video::-webkit-media-controls-start-playback-button,
video::-webkit-media-controls-play-button,
video::-webkit-media-controls-overlay-play-button {
    display: none !important;
    -webkit-appearance: none;
}

#overlay-mask {
    /* position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-overlay);
    z-index: 1; */
}

/* ============================================
   SCROLL CONTAINER
   ============================================ */
#scroll-container {
    position: relative;
    z-index: var(--z-content);
}

/* ============================================
   FIXED HEADER NAVIGATION
   ============================================ */
#fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-header);
    /* padding: 1.5rem 2rem; */
    /* margin: var(--spacing-section) var(--container-padding); */
    padding: 1rem var(--container-padding);
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease, padding 0.3s ease;
}

#fixed-header.is-scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    /* padding: 1rem 2rem; */
    padding: 1rem var(--container-padding);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

#fixed-header.is-scrolled .header-logo,
#fixed-header.is-scrolled .header-nav li a {
    color: var(--color-text-primary);
}

#fixed-header.is-scrolled .mobile-menu-toggle span {
    background-color: var(--color-primary);
}

.header-inner {
    /* max-width: var(--container-max); */
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--color-text-light);
    transition: color var(--transition-fast);
}

.header-logo img {
    height: 40px;
    width: auto;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.header-nav li a {
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    /* color: var(--color-text-light-secondary); */
    color: #fff;
    transition: color var(--transition-fast);
    position: relative;
    font-weight: 600;
}

.header-nav li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: currentColor;
    transition: width var(--transition-fast);
}

.header-nav li a:hover {
    color: var(--color-text-light);
    opacity: 1;
}

.header-nav li a:hover::after {
    width: 100%;
}

#fixed-header.is-scrolled .header-nav li a:hover {
    color: var(--color-primary);
}

.header-nav li a.nav-cta {
    /* background-color: var(--color-primary); */
    /* color: var(--color-secondary); */
    /* padding: 0.6rem 1.5rem;
    border: 1px solid var(--color-primary);
    transition: all var(--transition-fast); */
}

.header-nav li a.nav-cta::after {
    display: none;
}

.header-nav li a.nav-cta:hover {
    /* background-color: transparent; */
    color: var(--color-primary);
}

#fixed-header:not(.is-scrolled) .header-nav li a.nav-cta {
    /* background-color: var(--color-secondary); */
    /* color: var(--color-primary); */
    /* border-color: var(--color-secondary); */
}

#fixed-header:not(.is-scrolled) .header-nav li a.nav-cta:hover {
    /* background-color: transparent;
    color: var(--color-secondary);
    border-color: var(--color-secondary); */
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: calc(var(--z-header) + 1);
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-secondary);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-toggle.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--spacing-md);
    color: var(--color-text-light);
}

.hero-content {
    max-width: 800px;
}

.hero-logo {
    width: 180px;
    margin: 0 auto var(--spacing-lg);
    animation: fadeInUp 1.2s ease-out;
}

.hero-logo img {
    width: 100%;
    filter: brightness(0) invert(1);
}

.hero-title {
    font-family: var(--font-display);
    font-size: var(--font-size-hero);
    font-weight: 700;
    letter-spacing: 0.15em;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1.2s ease-out;
}

.hero-subtitle {
    font-size: var(--font-size-body);
    color: var(--color-text-light-secondary);
    letter-spacing: 0.3em;
    margin-bottom: var(--spacing-xl);
    animation: fadeInUp 1.2s ease-out 0.3s backwards;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    animation: fadeInUp 1.2s ease-out 0.6s backwards;
}

.scroll-text {
    font-size: var(--font-size-small);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-light-secondary);
}

.scroll-arrow {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(10px);
    }
    60% {
        transform: translateY(5px);
    }
}

/* ============================================
   CONTENT BLOCKS
   ============================================ */
.content-section {
    padding: var(--spacing-section) 0;
}

.content-block {
    min-height: 10vh;
    display: flex;
    align-items: center;
    padding: var(--spacing-xl) var(--container-padding);
}

.content-inner {
    /* max-width: 600px; */
    padding: var(--spacing-lg);
    background: var(--color-card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    /* border: 1px solid var(--color-card-border); */
    margin-left: 10%;
}

.content-inner--right {
    margin-left: auto;
    margin-right: 10%;
}

.content-inner--center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    max-width: 800px;
}

.content-inner--full {
    max-width: 100%;
    margin: 0;
    width: 100%;
    background: var(--color-secondary);
}

/* Section Labels */
.section-label {
    display: block;
    font-family: var(--font-display);
    font-size: 29px;
    font-weight: 700;
    letter-spacing: 0.1em;
    /* margin-bottom: var(--spacing-xs); */
    line-height: 1;
    text-align: left;
}

.section-label-jp {
    display: block;
    font-size: 12px;
    font-weight: 600;
    /* color: var(--color-text-secondary); */
    margin-bottom: var(--spacing-md);
    text-align: left;
}

.section-title {
    font-size: 18px;
    font-weight: 700;
    /* margin-bottom: var(--spacing-md); */
    margin-bottom: 1rem;
    line-height: 1.4;
    text-align: left;
}

.section-text {
    font-size: 13px;
    /* color: var(--color-text-secondary); */
    line-height: 2;
    font-weight: 600;
    text-align: left;
}

/* ============================================
   NEWS SECTION
   ============================================ */
.news-section {
    background: var(--color-secondary);
    margin: var(--spacing-section) var(--container-padding);
}

.news-list {
    /* max-width: 800px; */
    /* margin: var(--spacing-lg) auto 0; */
}

.news-item {
    display: flex;
    align-items: baseline;
    gap: var(--spacing-md);
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid var(--color-card-border);
}

.news-date {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-secondary);
    white-space: nowrap;
}

.news-title {
    font-size: 13px;
    font-weight: 600;
}

.news-title a:hover {
    opacity: 0.7;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    background: var(--color-secondary);
    background: transparent;
    background: #fff;
    margin: var(--spacing-section) var(--container-padding);
    padding-bottom: 0;
    /* padding-top: 0; */
}

.about-main-wrapper {
    padding: 0 var(--container-padding);
    display: flex;
    /* align-items: center; */
    justify-content: center;
    gap: 20px;
    /* margin: var(--spacing-section) 0; */
    margin-bottom: var(--spacing-section);
    flex-direction: column;
}

.about-main-img {
    width: 100%;
    flex-shrink: 0;
}

.about-main-img img {
    width: 100%;
}

.about-main-desc h2 {
    font-size: 29px;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    line-height: 1;
}

.about-main-desc h2 span {
    font-size: 12px;
    font-weight: 600;
    margin-left: 15px;
    position: relative;
    top: -10px;
}

.about-main-desc h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.about-main-desc-text {
    font-size: 13px;
    font-weight: 600;
    line-height: 2;
}

/* Products Grid */
.products-grid {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
    flex-wrap: wrap;
}

.product-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
}

.product-icon img {
    width: 80px;
    height: auto;
}

.product-icon span {
    font-size: 12px;
    font-weight: 600;
}

/* Services List */
.services-list {
    margin-top: var(--spacing-lg);
}

.service-item-wrapper {
    margin-top: 50px;
}
.service-item {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    align-items: flex-start;
}

.service-item-img {
    width: 150px;
    flex-shrink: 0;
}

.service-item-img img {
    width: 100%;
}

.service-item-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    text-align: left;
}

.service-item-content p {
    font-size: 13px;
    font-weight: 600;
    line-height: 2;
    text-align: left;
}

/* ============================================
   FACILITY SECTION
   ============================================ */
.facility-section {
    background: var(--color-secondary);
    margin: var(--spacing-section) var(--container-padding);
    padding-bottom: 0;
}

.facility-hero-img {
    width: 45%;
    margin: 0 auto var(--spacing-lg);
}

.facility-hero-img img {
    width: 100%;
}

/* Actually MARKET */
.am-logo {
    width: 200px;
    margin: var(--spacing-md) auto;
}

.am-logo img {
    width: 100%;
}

/* Spaces */
.spaces-wrapper {
    /* display: flex; */
    /* width: 80vw; */
    /* margin: var(--spacing-lg) auto; */
    gap: 75px;
}

.space-item {
    flex: 1;
}

.space-images {
    /* display: flex;
    gap: 10px;
    margin-bottom: var(--spacing-md); */
    width: 100%;
}

.space-images img {
    width: 100%;
}

.space-title {
    font-size: 18px;
    font-weight: 700;
    /* margin-bottom: var(--spacing-sm); */
}

.space-text {
    font-size: 13px;
    font-weight: 600;
    line-height: 2;
    margin-bottom: 40px;
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-section {
    background: var(--color-secondary);
    padding: var(--spacing-section) var(--container-padding);
    margin: var(--spacing-section) var(--container-padding);
    /* padding-bottom: 0; */
    padding-top: 150px;
}

.step-container {
    /* max-width: 700px; */
    margin: var(--spacing-lg) auto 0;
}

.step {
    display: flex;
    align-items: stretch;
    margin-bottom: 20px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}

.step-number {
    background-color: var(--color-primary);
    color: var(--color-secondary);
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    width: 100px;
    min-width: 100px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 10px;
}

.step-number::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -9px;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid var(--color-primary);
    z-index: 1;
}

.step:last-child .step-number::after {
    display: none;
}

.step-content {
    border: 1px solid var(--color-primary);
    border-left: none;
    flex: 1;
    padding: 15px 20px;
    background-color: var(--color-secondary);
}

.step-content h3 {
    margin: 0 0 5px;
    font-size: 18px;
    font-weight: 700;
    text-align: left;
}

.step-content p {
    margin: 0;
    font-size: 13px;
    line-height: 1.8;
    font-weight: 600;
    text-align: left;
}

/* ============================================
   COMPANY SECTION
   ============================================ */
.company-section {
    background: var(--color-secondary);
    margin: var(--spacing-section) var(--container-padding);
}

/* Company Table */
.company-table {
    width: 100%;
    /* max-width: 800px; */
    margin: var(--spacing-lg) auto;
    border-collapse: collapse;
}

.company-table th,
.company-table td {
    border: 1px solid var(--color-primary);
    padding: 15px 20px;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    border-bottom: none;
}

.company-table th {
    background-color: #f5f5f5;
    width: 30%;
    font-weight: 700;
}

/* Members */
.members-wrapper {
    /* max-width: 1000px; */
    /* margin: var(--spacing-lg) auto; */
    margin-top: var(--spacing-lg);
}

.member-card {
    display: flex;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    align-items: flex-start;
}

.member-card:nth-child(even) {
    flex-direction: row-reverse;
}

.member-image {
    width: 200px;
    flex-shrink: 0;
}

.member-image img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.member-info {
    flex: 1;
}

.member-role {
    display: block;
    font-size: 13px;
    font-weight: 600;
    /* color: var(--color-text-secondary); */
    /* margin-bottom: var(--spacing-xs); */
    text-align: left;
}

.member-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    text-align: left;
}

.member-bio {
    font-size: 13px;
    font-weight: 600;
    line-height: 2;
    text-align: left;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    background: var(--color-secondary);
    padding: var(--spacing-section) var(--container-padding);
    text-align: center;
}

.contact-email {
    margin-top: var(--spacing-lg);
}

.contact-email-label {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.contact-email-address {
    font-size: 18px;
    font-weight: 700;
}

.contact-link-wrapper {
    width: 300px;
    border: solid 1px var(--color-primary);
    margin: var(--spacing-lg) auto;
    height: 50px;
    text-align: center;
    line-height: 50px;
    transition: all 0.3s ease;
}

.contact-link-wrapper a {
    font-size: 15px;
    font-weight: 700;
    display: block;
    width: 100%;
    height: 100%;
}

.contact-link-wrapper:hover {
    background: var(--color-primary);
}

.contact-link-wrapper:hover a {
    color: var(--color-secondary);
    opacity: 1;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    /* background: var(--color-primary); */
    color: #000;
    padding: var(--spacing-lg) var(--container-padding);
    text-align: center;
    background: #fff;
    padding-bottom: 20px;
}

.footer-logo {
    width: 75px;
    margin: 0 auto var(--spacing-md);
}

.footer-logo img {
    width: 100%;
}

/* フッターナビの表示調整 */
.pc-footer-nav {
    display: initial;
}

.mobile-footer-nav {
    display: none;
}

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm) var(--spacing-md);
    /* margin-bottom: var(--spacing-md); */
}

.footer-nav.footer-nav-2 {
    margin-bottom: var(--spacing-md);
}


.footer-nav a {
    font-size: 12px;
    font-weight: 600;
    /* color: var(--color-text-light-secondary); */
    color: #000;
}

.footer-nav a:hover {
    color: var(--color-text-light);
}

.footer-sns {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.footer-sns a {
    width: 22px;
}

.footer-sns a img {
    width: 100%;
    filter: brightness(0) invert(1);
}

.footer-copyright {
    font-size: var(--font-size-small);
    color: var(--color-text-light-secondary);
    letter-spacing: 0.1em;
    color: #000;
}

/* ============================================
   FADE-IN ANIMATION
   ============================================ */
.fade-in-target {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--transition-smooth), transform var(--transition-smooth);
}

.fade-in-target.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE - TABLET & MOBILE (768px以下)
   ============================================ */
@media screen and (max-width: 768px) {
    :root {
        --spacing-lg: 2.5rem;
        --spacing-xl: 4rem;
        --spacing-section: 80px;
        --container-padding: 5vw;
    }
    
    /* Header */
    #fixed-header {
        padding: 1rem;
        width: 100vw;
        padding: 1rem var(--container-padding);
    }
    
    #fixed-header.is-scrolled {
        padding: 0.75rem 1rem;
        padding: 1rem var(--container-padding);
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        height: 100dvh;
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        /* background-color: rgba(0, 0, 0, 0.95); */
        background: #fff;
        /* backdrop-filter: blur(20px); */
        /* -webkit-backdrop-filter: blur(20px); */
        transform: translateX(100%);
        transition: transform 0.3s ease;
        padding: 2rem;
    }
    
    .header-nav.is-open {
        transform: translateX(0);
    }
    
    .header-nav li a {
        font-size: 1rem;
        color: var(--color-text-light-secondary);
    }
    
    .header-nav li a:hover,
    #fixed-header.is-scrolled .header-nav li a:hover {
        color: var(--color-text-light);
    }
    
    .header-nav li a.nav-cta {
        text-align: center;
        width: 100%;
        /* background-color: var(--color-secondary);
        color: var(--color-primary); */
    }
    
    /* Hero */
    .hero-title {
        letter-spacing: 0.08em;
    }
    
    .hero-subtitle {
        letter-spacing: 0.15em;
    }
    
    .hero-logo {
        width: 120px;
    }
    
    /* Content Blocks */
    .content-block {
        padding: var(--spacing-lg) var(--spacing-sm);
        min-height: auto;
        padding-top: 15vh;
        padding-bottom: 15vh;
    }
    
    .content-inner {
        margin-left: 0;
        margin-right: 0;
        padding: var(--spacing-md);
        width: 100%;
        max-width: 100%;
    }
    
    .content-inner--right {
        margin-left: 0;
        margin-right: 0;
    }
    
    /* About */
    .about-main-wrapper {
        flex-direction: column;
        gap: 14px;
        /* margin: 80px 0; */
    }
    
    .about-main-img {
        width: 100%;
    }
    
    /* Facility */
    .facility-hero-img {
        width: 90%;
    }
    
    .spaces-wrapper {
        flex-direction: column;
        width: 90vw;
    }
    
    /* Process */
    .step {
        flex-direction: column;
    }
    
    .step-number {
        width: 100%;
        padding: 10px;
    }
    
    .step-number::after {
        display: none;
    }
    
    .step-content {
        border-left: 1px solid var(--color-primary);
        border-top: none;
    }
    .step-content h3 {
        text-align: center;
    }
    
    /* Members */
    .member-card {
        gap: 20px;
    }
    .member-card,
    .member-card:nth-child(even) {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .member-image {
        width: 100%;
    }
    
    /* Services */
    .service-item {
        flex-direction: column;
    }
    
    .service-item-img {
        width: 100px;
    }
    
    /* News */
    .news-item {
        flex-direction: column;
        gap: var(--spacing-xs);
    }
    .news-title {
        text-align: left;
    }
    
    /* Footer */
    .site-footer {
        padding: var(--spacing-md) var(--container-padding);
    }
    
    .footer-nav {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
}

/* ============================================
   ACCESSIBILITY - REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    .hero-title,
    .hero-subtitle,
    .hero-logo,
    .scroll-indicator {
        animation: none;
    }
    
    .scroll-arrow {
        animation: none;
    }
    
    .fade-in-target {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ============================================
   PC ONLY STYLES
   ============================================ */
@media (min-width: 769px) {
    .mobile-only {
        display: none !important;
    }
}

/* ============================================
   MOBILE ONLY STYLES
   ============================================ */
@media (max-width: 768px) {
    .pc-only {
        display: none !important;
    }
}

/* 20260112追記 */
.section-ttl-wrapper {
    font-size: 30px;
    text-align: left;
}
#facility-section .content-block {
    padding-top: 0;
}
#company-section .content-block {
    padding-top: 0;
}
#contact-section .container {
    margin: 0;
}

/* ============================================
   COMPANY TABLE - レスポンシブ対応
   ============================================ */
.company-info-wrapper {
    width: 100%;
    padding: 0 5vw;
}

.company-table {
    width: 100%;
    /* max-width: 900px; */
    /* margin: 40px auto 0; */
    border-collapse: collapse;
    table-layout: fixed;
}

.company-table th,
.company-table td {
    border: 1px solid #000;
    padding: 15px 20px;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.company-table th {
    background-color: #f5f5f5;
    width: 30%;
    font-weight: 700;
}

.company-table td a {
    word-break: break-all;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .company-info-wrapper {
        padding: 0;
    }
    
    .company-table {
        display: block;
        width: 100%;
    }
    
    .company-table tbody {
        display: block;
        width: 100%;
    }
    
    .company-table tr {
        display: flex;
        flex-direction: column;
        margin-bottom: 0;
        border-bottom: none;
    }
    
    .company-table th,
    .company-table td {
        display: block;
        width: 100%;
        padding: 12px 15px;
        font-size: 12px;
    }
    
    .company-table th {
        border-bottom: none;
    }
    
    .company-table td {
        border-top: none;
    }
}

/* コンタクトフォーム */
/* ============================================
   CONTACT FORM 7 スタイル - デザイン修正版
   ============================================ */
.contact-form-wrapper {
    max-width: 700px;
    margin: 40px auto 0;
    text-align: left;
}

/* フォーム全体 */
.contact-form-wrapper .wpcf7-form p {
    margin-bottom: 30px;
}

/* ラベル */
.contact-form-wrapper label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* 必須バッジ */
.contact-form-wrapper .wpcf7-validates-as-required {
    position: relative;
}

.contact-form-wrapper p:has(.wpcf7-validates-as-required) > label::before {
    content: "必須";
    display: inline-block;
    background: #1a1a2e;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    margin-right: 10px;
    vertical-align: middle;
}

/* 入力フィールド共通 */
.contact-form-wrapper input[type="text"],
.contact-form-wrapper input[type="email"],
.contact-form-wrapper input[type="tel"],
.contact-form-wrapper textarea,
.contact-form-wrapper .wpcf7-form-control:not(.wpcf7-submit) {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border: none;
    border: 0.3px solid #000;
    /* background: #f5f5f5; */
    font-size: 18px;
    font-family: inherit;
    font-weight: 600;
    color: #333;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

/* プレースホルダー */
.contact-form-wrapper input::placeholder,
.contact-form-wrapper textarea::placeholder {
    color: #999;
    /* font-weight: 600; */
}

/* フォーカス時 */
.contact-form-wrapper input[type="text"]:focus,
.contact-form-wrapper input[type="email"]:focus,
.contact-form-wrapper input[type="tel"]:focus,
.contact-form-wrapper textarea:focus {
    outline: none;
    border-bottom-color: #000;
    /* background: #ebebeb; */
}

/* テキストエリア */
.contact-form-wrapper textarea {
    min-height: 180px;
    resize: vertical;
}

/* 注釈テキスト（※半角数字など） */
.contact-form-wrapper .note,
.contact-form-wrapper small {
    display: block;
    font-size: 11px;
    color: #888;
    margin-top: 5px;
}

/* 送信ボタン */
.contact-form-wrapper input[type="submit"],
.contact-form-wrapper .wpcf7-submit {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 40px auto 0;
    padding: 18px 30px;
    background: #000;
    color: #fff;
    border: 1px solid #000;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form-wrapper input[type="submit"]:hover,
.contact-form-wrapper .wpcf7-submit:hover {
    background: #fff;
    color: #000;
}

/* エラーメッセージ */
.contact-form-wrapper .wpcf7-not-valid-tip {
    color: #c00;
    font-size: 12px;
    margin-top: 8px;
    display: block;
}

.contact-form-wrapper .wpcf7-not-valid {
    border-bottom-color: #c00;
}

/* 送信後メッセージ */
.contact-form-wrapper .wpcf7-response-output {
    margin: 30px 0;
    padding: 20px;
    border: none;
    /* background: #f5f5f5; */
    text-align: center;
    font-size: 13px;
    font-weight: 600;
}

.contact-form-wrapper .wpcf7-mail-sent-ok {
    /* background: #e8f5e9; */
    color: #2e7d32;
}

.contact-form-wrapper .wpcf7-validation-errors {
    /* background: #ffebee; */
    color: #c62828;
}

/* スピナー非表示 */
.contact-form-wrapper .wpcf7-spinner {
    display: none;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .contact-form-wrapper {
        /* padding: 0 15px; */
    }
    
    .contact-form-wrapper input[type="text"],
    .contact-form-wrapper input[type="email"],
    .contact-form-wrapper input[type="tel"],
    .contact-form-wrapper textarea {
        padding: 12px 15px;
        font-size: 16px; /* iOSズーム防止 */
    }
    
    .contact-form-wrapper input[type="submit"] {
        max-width: 100%;
    }
}

/* 20250116追記 */
.footer-copyright {
    left: 0rem;
    background: #fff;
    display: block;
    text-align: center;
    padding: 19px 0px;
    border-top: solid 4px #eee;
}
@media (max-width: 768px) {
    .section-ttl-wrapper {
        font-size: 16px;
    }
    .header-nav {
        color: #000;
    }
    .header-inner a.header-logo {
        position: relative;
        left: 50%;
        transform: translate(-50%, -4%);
    }
    /* フッターナビの表示調整 */
    .pc-footer-nav {
        display: none;
    }

    .mobile-footer-nav {
        display: block;
        /* float: left; */
        margin-bottom: 30px;
    }
    .mobile-footer-nav a {
        padding-right: 5px;
        border-right: 1px solid #000;
        margin-right: 5px;
        line-height: 1;
        font-size: 13px;
    }
    .mobile-footer-nav a.no-border-right {
        border-right: none !important;
    }
    .footer-copyright {
        left: 0rem;
    }
    .footer-sns {
        margin-bottom: 10px;
    }
    .footer-copyright {
        left: 0rem;
        background: #fff;
        display: block;
        text-align: center;
        padding: 19px 0px;
    }
    .site-footer  {
        position: relative;
        top: 1px;
    }
    .news-section,
    .about-section,
    .facility-section,
    .process-section {
        margin:114px 0;
        padding: 17px 0;
    }
    .process-section {
        padding: 0 var(--container-padding);
        margin-bottom: 30px;
        padding-bottom: 30px;
    }
    /* Mobile herader */
    .mobile-header-wrapper {
        width: 206px;
        margin: 0 auto;
    }
    .header-sns-logo a svg {
        width: 20px;
        height: 20px;
        margin-right: 15px;
    }
    .header-nav {
        align-items: end;
    }
    .header-nav li a {
        margin-right: 15px;
        color: #000;
    }
    .mobile-only {
        display: block !important;
    }
    .company-section {
        margin: 0;
        margin-top: 80px;
    }
    .members-logo-wrapper {
        margin: 0 auto;
        width: 299px;
    }
}
.our-spaces-block,
.company-section {
    display: none;
}
.members-logo-wrapper {
    margin-bottom: 200px;
	margin-top: 200px;
}
#contact-section {
    position: relative;
    top: 2px;
    border-bottom: 4px solid #eee;
}
.company-table td {
    border-bottom: none;
}


.about-main-img img {
/* 	max-width: initial;
	width: 100vw;
	position: relative;
	left: -5vw; */
}