/* 基本リセットとフォント設定 */
body, h1, h2, h3, h4, p, ul {
    margin: 0;
    padding: 0;
}

ul {
    list-style: none;
}

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

body {
    font-family: 'Lato', sans-serif;
    background-color: #FAF9F6;
    color: #4A4A4A;
    line-height: 1.7;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

/* フォント */
.company-name, h2, h3, h4, .section-title {
     font-family: 'Cormorant Garamond', serif;
     font-weight: 700;
}

/* --- ヘッダー --- */
header {
    padding: 15px 0;
    border-bottom: 1px solid #EAEAEA;
    background-color: #FAF9F6;
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: block;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-image {
    height: 40px;
}

.company-name {
    font-size: 1.6rem; 
    color: #BCA56C;
    letter-spacing: 1px;
}

/* ✨ PC用ナビゲーションのスタイル ✨ */
#global-nav {
    display: block;
}

#global-nav ul {
    display: flex;
    align-items: center;
    gap: 35px;
}

#global-nav ul li a {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: #4A4A4A;
    padding-bottom: 5px; 
    position: relative;
}

#global-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #8A9A5B;
    transform: scaleX(0);
    transform-origin: right top;
    transition: transform 0.3s;
}

#global-nav ul li a:hover::after {
    transform-origin: left top;
    transform: scaleX(1);
}

.hamburger-menu {
    display: none; /* PCでは非表示 */
}


/* --- ヒーローセクション --- */
#hero {
    height: 70vh;
    min-height: 500px;
    background-image: url('images/hero-background.png');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
}

#hero h2 {
    font-size: 3.2rem;
    margin-bottom: 25px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

.cta-button {
    display: inline-block;
    background-color: #5C6F3A;
    color: white;
    padding: 12px 35px;
    border-radius: 25px;
    font-family: 'Lato', sans-serif;
    font-weight: bold;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: #4B5A2F;
    transform: scale(1.05);
}


/* --- FC事業紹介セクション (feature) --- */
#feature {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.feature-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

.feature-image {
    flex: 1;
    text-align: center;
}

.feature-image .service-icon {
    width: 200px;
    height: 200px;
    font-size: 6rem;
}

.feature-text {
    flex: 2;
}

.feature-text h3 {
    font-size: 2.2rem;
    line-height: 1.4;
    margin-bottom: 20px;
    color: #4A4A4A;
}

.feature-text p {
    margin-bottom: 20px;
}

.feature-text ul {
    margin-bottom: 30px;
    padding-left: 5px;
}

.feature-text ul li {
    margin-bottom: 10px;
}


/* --- サービスセクション --- */
#services {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #4A4A4A;
}

.section-subtitle {
    text-align: center;
    font-size: 1rem;
    margin-bottom: 60px;
    color: #666;
}

.services-grid {
    display: flex;
    justify-content: space-around;
    gap: 50px;
}

.service-item {
    text-align: center;
    flex-basis: 45%;
}

.service-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 25px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.8rem;
    color: white;
}

.golf-icon {
    background-color: #8A9A5B;
}

.consulting-icon {
    background-color: #CBBFA2;
}

.service-item h4 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #4A4A4A;
}

.service-item p {
    font-size: 1rem;
    color: #666;
    padding: 0 10px;
}

/* --- 他のコンテンツセクション (About, Contact) --- */
.content-section {
    padding: 50px 0;
    border-top: 1px solid #EAEAEA;
    background-color: #fff;
}
.content-section:first-of-type {
    border-top: none;
}

.content-section h4 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #CBBFA2;
}

/* ↓↓↓ ここの p タグに padding-left を追加します！ ↓↓↓ */
.content-section p {
    margin-bottom: 15px;
    padding-left: 30px; /* ←✨この行を追加！ */
}

/* ↓↓↓ ul li ではなく、ul に padding-left を追加します！ ↓↓↓ */
.content-section ul {
    padding-left: 30px; 
}

.content-section ul li {
    margin-bottom: 10px;
}


/* --- フッター --- */
footer {
    background-color: #4A4A4A;
    color: #F0F0F0;
    padding-top: 50px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-info {
    flex: 1;
}
.footer-info .logo-container {
    margin-bottom: 15px;
}
.logo-image-footer {
    height: 35px;
}
.footer-info p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #ccc;
}
.footer-nav {
    flex: 1;
}

.footer-nav h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #fff;
}
.footer-nav ul li {
    margin-bottom: 10px;
}
.footer-nav ul li a {
    color: #ccc;
    transition: color 0.3s;
}
.footer-nav ul li a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #666;
    text-align: center;
    padding: 20px 0;
    font-size: 0.8rem;
    color: #ccc;
}


/* --- ✨✨✨ ここからレスポンシブ用のスタイル ✨✨✨ --- */
/* --- ✨✨✨ (スマホで見たときなどのデザイン) ✨✨✨ --- */
@media (max-width: 768px) {
    
    /* --- ヘッダー（スマホ用） --- */
    .header-container {
        position: relative;
    }
    
    .hamburger-menu {
        display: block; /* スマホでは表示 */
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: #4A4A4A;
        position: absolute;
        right: 0px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1001;
    }

    .hamburger-menu.active .fa-bars {
        display: none;
    }
    .hamburger-menu.active::before {
        content: '\f00d';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        font-size: 1.5rem;
        color: #fff;
    }

    #global-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.9);
        transition: right 0.5s ease;
        z-index: 1000;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #global-nav.active {
        right: 0;
    }

    #global-nav ul {
        flex-direction: column; /* スマホでは縦並びに */
        gap: 20px;
    }
    
    #global-nav ul li a {
        font-size: 1.5rem;
        color: white;
    }

    #global-nav ul li a::after {
        display: none; /* スマホではホバーアニメーションを消す */
    }

    
    /* --- 他のセクション（スマホ用） --- */
    #hero h2 {
        font-size: 2.2rem;
    }

    .feature-grid {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    .feature-image .service-icon {
        width: 150px;
        height: 150px;
        font-size: 4rem;
    }
    .feature-text h3 {
        font-size: 1.8rem;
    }

    .services-grid {
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }
    .service-item {
        flex-basis: 90%;
        max-width: 400px;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}