/* カラー・フォント設定 */
:root {
    --primary-green: #3a5a40; /* 深い森の緑 */
    --accent-green: #a3b18a;  /* 柔らかい草木の緑 */
    --bg-light: #fefae0;      /* 優しいクリーム色 */
    --text-main: #344e41;     /* 文字色の濃い緑 */
    --white: #ffffff;
    --font-heading: 'Marcellus', serif;
    --font-jp: 'Noto Sans JP', sans-serif;
}

/* 基本リセット */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-light);
    color: var(--text-main);
    font-family: var(--font-jp);
    line-height: 1.8;
    overflow-x: hidden;
}

/* ヘッダー */
header {
    height: 90px;
    display: flex;
    align-items: center;
    position: absolute;
    width: 100%;
    z-index: 100;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--white);
    letter-spacing: 2px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    padding-bottom: 5px;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--white);
    transition: width 0.3s;
}

nav a:hover::after {
    width: 100%;
}

/* ヒーローセクション */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(58, 90, 64, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card {
    background: rgba(255, 255, 255, 0.15); /* グラスモーフィズム */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 60px;
    max-width: 600px;
    border-radius: 4px;
    color: var(--white);
    text-align: center;
}

.hero-card .sub {
    font-family: var(--font-heading);
    display: block;
    margin-bottom: 20px;
    letter-spacing: 3px;
    font-size: 0.9rem;
}

.hero-card h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 40px;
    background-color: var(--white);
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: transform 0.3s, background-color 0.3s;
}

.btn-primary:hover {
    transform: translateY(-5px);
    background-color: var(--accent-green);
    color: var(--white);
}

/* フィーチャーセクション */
.feature {
    padding: 120px 0;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 120px;
}

.row.reverse {
    flex-direction: row-reverse;
}

.col-img {
    flex: 1;
}

.col-img img {
    width: 100%;
    border-radius: 300px 300px 0 0; /* 丸みのある特徴的な形 */
    box-shadow: 20px 20px 0 var(--accent-green);
}

.col-text {
    flex: 1;
}

.step-num {
    font-family: var(--font-heading);
    color: var(--accent-green);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.col-text h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--primary-green);
}

/* メッセージバナー */
.message-banner {
    padding: 150px 20px;
    background-color: var(--primary-green);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.banner-content h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 20px;
}

.banner-content p {
    font-size: 1.1rem;
    opacity: 0.8;
}

/* フッター */
footer {
    padding: 60px;
    text-align: center;
    background-color: var(--bg-light);
}

footer p {
    font-size: 0.8rem;
    color: var(--accent-green);
}

/* レスポンシブ */
@media (max-width: 900px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .row, .row.reverse {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .col-img img {
        border-radius: 20px;
        box-shadow: 10px 10px 0 var(--accent-green);
    }
}