/* --- ヘッダー --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 4000;
    display: flex;
	align-items: center;
    transition: background 0.3s;
}

.header-inner {
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ロゴのスタイル */
.header-logo {
    flex: 0 1 auto;
}

.header-logo img {
    width: 150px;
    height: auto;
    display: block;
    transition: transform 0.3s;
    padding: 40px 0 0;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 0.1em;
    text-decoration: none;
}
.header-logo a {
    text-decoration: none;
}

.header-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* 支援するボタン */
.btn-support {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--main-green);
    color: #fff !important;
    padding: 8px 12px;
	font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.btn-support:hover {
    background: var(--accent-green);
}

/* 三本線メニューボタン */
.menu-trigger {
    background: var(--main-green);
    cursor: pointer;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative; 
    z-index: 5000 !important; 
    outline: none;
    border: none;
}

.menu-trigger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    margin: 2.5px 0;
    transition: 0.4s;
    border-radius: 5px;
}

.menu-trigger small {
    font-size: 8px;
    font-weight: 900;
    color: #fff;
    margin-top: 2px;
    letter-spacing: 0.05em;
}

/* ドロワーメニュー */
.global-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    max-width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 3000;
    padding: 120px 40px 40px;
    overflow-y: auto;
	transform: translateX(100%);
    visibility: hidden;
}

body.nav-open .global-nav {
transform: translateX(0);
    visibility: visible;
}

/* 開閉アニメーション */
body.nav-open .menu-trigger span:nth-of-type(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .menu-trigger span:nth-of-type(2) { transform: scale(0);}
body.nav-open .menu-trigger span:nth-of-type(3) { transform: translateY(-7px) rotate(-45deg); }

/* メニュー内リスト */
.nav-list { list-style: none; padding: 0; }
.nav-item { margin-bottom: 35px; }

.nav-label { 
    display: flex; 
    align-items: center; 
    cursor: pointer; 
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.03em;
    text-decoration: none;
    color: var(--main-green);
}

.nav-item.has-child .nav-label::after {
    content: '＋';
    margin-left: auto;
    font-size: 1rem;
    color: var(--main-green);
    background: var(--light-green);
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
.nav-item.active.has-child .nav-label::after {
    content: '－';
}

.nav-child { display: none; list-style: none; padding-left: 20px; margin-top: 15px; }
.nav-item.active .nav-child { display: block; }
.nav-child li { margin-bottom: 15px; }
.nav-child a { 
    font-size: 0.95rem; 
    color: var(--main-green);
    text-decoration: none;
}


/* --- メニュー内のリンク設定 --- */
.nav-label, 
.nav-child a {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    margin: 0 -15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--main-green);
}

.nav-label:hover,
.nav-child a:hover {
    background-color: var(--light-green);
    color: var(--main-green);
}

.nav-child {
    display: none;
    list-style: none;
    padding-left: 10px;
    margin-top: 5px;
}

.nav-child li {
    margin-bottom: 5px;
}

.nav-item.active > .nav-label:hover {
 }

@media (max-width: 768px) {
	.header-logo img { width: 80px; }
    .site-header { height: 80px; }
    .header-inner { padding: 0 20px; }
    .logo-text { font-size: 1.2rem; }
    .global-nav {
        box-sizing: border-box; 
        width: 100vw;
    }
	.btn-support {
	padding: 6px 10px;
    font-size: 0.8rem;
}
	.menu-trigger {
    width: 44px;
    height: 44px;
}
}