/* TOPページ専用スタイル */

/* ヒーローセクション */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%); */
    background: linear-gradient(135deg, #333, #000), url('../images/building-exterior-1.jpg');
background-blend-mode: multiply; /* 乗算：全体的に暗く馴染みます */
background-size: cover;
background-position: center;
    margin-top: 70px;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 20px;
}

.hero-title {
    font-family: var(--font-mincho);
    font-size: 3.5rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.5;
    margin-bottom: 30px;
    color: var(--text-white);
}

.hero-subtitle {
    font-size: 1.1rem;
    letter-spacing: 0.2em;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.hero-name {
    font-family: var(--font-mincho);
    font-size: 1.8rem;
    letter-spacing: 0.15em;
    color: var(--text-white);
}

.hero-split {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    display: flex;
    z-index: 1;
}

.hero-split-item {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    transition: all 0.5s ease;
}

.hero-split-item.golf {
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.85) 0%, rgba(58, 107, 29, 0.85) 100%), url('../images/golf-course-1.jpg');
    background-size: cover;
    background-position: center;
}

.hero-split-item.gym {
    background: linear-gradient(135deg, rgba(26, 77, 109, 0.85) 0%, rgba(35, 109, 148, 0.85) 100%), url('../images/gym-interior-1.jpg');
    background-size: cover;
    background-position: center;
}

.split-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
}

.hero-split-item:hover .split-overlay {
    background: rgba(0, 0, 0, 0.1);
}

.split-content {
    position: relative;
    z-index: 2;
    color: var(--text-white);
    text-align: center;
}

.split-content i {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.split-content h3 {
    font-family: var(--font-gothic);
    font-size: 1.3rem;
    letter-spacing: 0.15em;
    font-weight: 500;
}

/* コンセプトセクション */
.concept {
    background: linear-gradient(to bottom, #f5f3f0 0%, #ffffff 100%);
    padding: 120px 0 140px;
}

.concept-header {
    text-align: center;
    /* margin-bottom: 100px; */
}

.concept-title-group {
    margin-bottom: 50px;
}

.concept-main-title {
    font-family: var(--font-mincho);
    font-size: 4.5rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    line-height: 1.2;
}

.title-left,
.title-right {
    color: var(--primary-color);
}

.title-cross {
    font-size: 3.5rem;
    color: #999;
    font-weight: 300;
}

.concept-subtitle-group {
    display: flex;
    justify-content: center;
    gap: 200px;
}

.subtitle-left,
.subtitle-right {
    font-family: 'Times New Roman', serif;
    font-size: 1.1rem;
    letter-spacing: 0.3em;
    font-weight: 300;
}

.subtitle-left {
    color: #2d5016;
}

.subtitle-right {
    color: #b8956a;
}

.concept-tagline {
    margin-bottom: 60px;
}

.tagline-jp {
    font-family: var(--font-gothic);
    font-size: 1.8rem;
    margin-bottom: 15px;
    letter-spacing: 0.1em;
    font-weight: 400;
}

.tagline-en {
    font-family: 'Times New Roman', serif;
    font-size: 1.3rem;
    color: #5a8a5a;
    letter-spacing: 0.2em;
    font-weight: 300;
}

.concept-brand {
    margin-top: 70px;
}

.brand-name {
    font-family: 'Times New Roman', serif;
    font-size: 1rem;
    color: #5a8a5a;
    letter-spacing: 0.15em;
    font-weight: 300;
}

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

.message-main {
    font-family: var(--font-mincho);
    font-size: 1.8rem;
    margin-bottom: 50px;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.message-list {
    margin-bottom: 50px;
    line-height: 2.4;
}

.message-list p {
    font-family: var(--font-gothic);
    font-size: 1.15rem;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}

.message-support {
    font-family: var(--font-mincho);
    font-size: 1.4rem;
    margin-bottom: 35px;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.message-mission {
    font-family: var(--font-mincho);
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 2;
}

/* メインナビゲーション */
.main-navigation {
    background: var(--bg-light);
    padding: 120px 0;
}

.nav-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-card {
    position: relative;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    min-height: 600px;
}

.nav-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.nav-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
}

.nav-card.golf .nav-card-bg {
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.85) 0%, rgba(58, 107, 29, 0.85) 100%), url('../images/golf-simulator-2.jpg');
    background-size: cover;
    background-position: center;
}

.nav-card.gym .nav-card-bg {
    background: linear-gradient(135deg, rgba(26, 77, 109, 0.85) 0%, rgba(35, 109, 148, 0.85) 100%), url('../images/gym-interior-2.jpg');
    background-size: cover;
    background-position: center;
}

.nav-card-content {
    position: relative;
    padding: 40px;
    padding-top: 240px;
}

.nav-icon {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.nav-icon i {
    font-size: 3rem;
    color: var(--primary-color);
}

.nav-card.golf .nav-icon i {
    color: var(--accent-golf);
}

.nav-card.gym .nav-icon i {
    color: var(--accent-gym);
}

.nav-title {
    font-family: var(--font-gothic);
    font-size: 1.5rem;
    letter-spacing: 0.15em;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 500;
}

.nav-subtitle {
    font-family: var(--font-mincho);
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 25px;
    letter-spacing: 0.05em;
}

.nav-description {
    text-align: center;
    line-height: 1.9;
    margin-bottom: 30px;
    color: var(--text-secondary);
}

.nav-features {
    list-style: none;
    margin-bottom: 35px;
}

.nav-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-features li:last-child {
    border-bottom: none;
}

.nav-features i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.nav-card.golf .nav-features i {
    color: var(--accent-golf);
}

.nav-card.gym .nav-features i {
    color: var(--accent-gym);
}

.nav-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: var(--text-white);
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    width: fit-content;
}

.nav-card.golf .nav-button {
    background: var(--accent-golf);
}

.nav-card.gym .nav-button {
    background: var(--accent-gym);
}

.nav-button:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* メリットセクション */
.benefits {
    background: #fff;
}

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

.benefit-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-light);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
}

.benefit-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ニュースセクション */
.news {
    background: var(--bg-light);
}

.news-list {
    max-width: 900px;
    margin: 0 auto;
}

.news-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    background: #fff;
    margin-bottom: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.news-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.news-date {
    font-family: var(--font-gothic);
    font-size: 0.95rem;
    color: var(--text-secondary);
    white-space: nowrap;
}

.news-category {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.85rem;
    white-space: nowrap;
}

.news-title {
    flex: 1;
    font-weight: 500;
}

/* アクセスセクション */
.access {
    background: #fff;
}

.access-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.access-info h3 {
    font-family: var(--font-mincho);
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.info-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    width: 30px;
    flex-shrink: 0;
}

.info-item strong {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.access-map {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* コンタクトセクション */
.contact {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2d2d2d 100%);
    color: var(--text-white);
    text-align: center;
}

.contact-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--text-white);
}

.contact-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.contact .cta-button {
    background: #fff;
    color: var(--primary-color);
    font-size: 1.1rem;
    padding: 15px 50px;
}

.contact .cta-button:hover {
    background: var(--bg-light);
    transform: translateY(-3px);
}

/* レスポンシブ */
@media (max-width: 1024px) {
    .nav-grid {
        gap: 30px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 600px;
        margin-top: 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-name {
        font-size: 1.3rem;
    }
    
    .hero-split {
        height: 150px;
    }
    
    .split-content i {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .split-content h3 {
        font-size: 1rem;
    }
    
    /* コンセプトセクション レスポンシブ */
    .concept {
        padding: 80px 0 100px;
    }
    
    .concept-header {
        margin-bottom: 70px;
    }
    
    .concept-main-title {
        font-size: 2.5rem;
        gap: 20px;
    }
    
    .title-cross {
        font-size: 2rem;
    }
    
    .concept-subtitle-group {
        gap: 80px;
    }
    
    .subtitle-left,
    .subtitle-right {
        font-size: 0.9rem;
    }
    
    .tagline-jp {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .tagline-en {
        font-size: 1rem;
    }
    
    .concept-brand {
        margin-top: 50px;
    }
    
    .brand-name {
        font-size: 0.85rem;
    }
    
    .message-main {
        font-size: 1.4rem;
        margin-bottom: 35px;
    }
    
    .message-list {
        margin-bottom: 35px;
        line-height: 2.2;
    }
    
    .message-list p {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .message-support,
    .message-mission {
        font-size: 1.15rem;
    }
    
    .message-mission {
        line-height: 1.9;
    }
    
    .nav-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .nav-card {
        min-height: 550px;
    }
    
    .access-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .news-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}
