/* デザインの根幹設定 */
:root {
    --bg-color: #f7f3f0;      /* 柔らかなベージュ */
    --accent-color: #7d8c7d;  /* セージグリーン */
    --text-color: #333333;
    --white: #ffffff;
    --font-jp: 'Noto Serif JP', serif;
    --font-en: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-jp);
    line-height: 2;
    overflow-x: hidden;
}

/* ヘッダー */
header {
    height: 100px;
    display: flex;
    align-items: center;
    padding: 0 5%;
}

.nav-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-en);
    font-weight: 300;
    letter-spacing: 3px;
    font-size: 1.2rem;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: var(--text-color);
    font-family: var(--font-en);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* ヒーローセクション */
.hero {
    display: flex;
    align-items: center;
    padding: 5% 5% 10% 5%;
    min-height: 80vh;
}

.hero-text {
    flex: 1;
    z-index: 2;
}

.hero-text span {
    font-family: var(--font-en);
    font-style: italic;
    color: var(--accent-color);
    display: block;
    margin-bottom: 20px;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 30px;
}

.hero-text p {
    font-size: 0.95rem;
    color: #666;
}

.hero-img-box {
    flex: 1.2;
    padding-left: 50px;
}

.hero-img-box img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 200px 200px 20px 20px; /* 特徴的なフォルム */
}

/* コンテンツカード */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 100px 20px;
}

.card {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 150px;
}

.card.reverse {
    flex-direction: row-reverse;
}

.card-img {
    flex: 1;
}

.card-img img {
    width: 100%;
    filter: grayscale(20%);
    border-radius: 5px;
}

.card-body {
    flex: 1;
}

.card-body h2 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--accent-color);
}

/* 引用セクション */
.quote {
    background-color: var(--accent-color);
    padding: 120px 20px;
    text-align: center;
}

.quote-box p {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 5px;
}

/* フッター */
footer {
    padding: 60px;
    text-align: center;
    font-family: var(--font-en);
    font-size: 0.8rem;
    letter-spacing: 2px;
}

/* レスポンシブ */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }
    .hero-img-box {
        padding-left: 0;
        margin-top: 50px;
        width: 100%;
    }
    .hero-text h1 {
        font-size: 2.5rem;
    }
    .card, .card.reverse {
        flex-direction: column;
        gap: 30px;
    }
}