/* デザイン設定 */
:root {
    --soft-pink: #f8bbd0;     /* やさしい桃色 */
    --soft-orange: #ffcc80;   /* 温かい橙色 */
    --bg-light: #fffaf0;      /* 生成り色（目に優しい白） */
    --text-main: #5d4037;     /* 柔らかな茶色（コントラストを保ちつつ優しく） */
    --accent-green: #81c784;  /* 落ち着いた若草色 */
    --white: #ffffff;
    --font-maru: 'Zen Maru Gothic', sans-serif;
    --font-accent: 'Yuji Syuku', serif;
}

/* 基本設定 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--white);
    color: var(--text-main);
    font-family: var(--font-maru);
    line-height: 1.9;
    font-size: 18px; /* シニア向けに基本フォントを大きめに */
}

/* ヘッダー */
header {
    height: 100px;
    background-color: var(--white);
    display: flex;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-accent);
    font-size: 2rem;
    color: var(--soft-pink);
    font-weight: 700;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

nav a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 700;
    padding: 10px 15px;
    border-radius: 30px;
    transition: 0.3s;
}

nav a:hover {
    background-color: var(--soft-orange);
    color: var(--white);
}

/* ヒーローセクション */
.hero {
    background-color: var(--soft-pink);
    padding: 60px 0 0;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0 40px;
}

.hero-content {
    flex: 1;
    z-index: 10;
}

.hero-content h1 {
    font-family: var(--font-accent);
    font-size: 3.5rem;
    line-height: 1.3;
    margin-bottom: 25px;
    color: var(--white);
    text-shadow: 2px 2px 0 rgba(0,0,0,0.1);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--white);
    font-weight: 500;
    max-width: 500px;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--white);
    color: var(--soft-pink);
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.btn:hover {
    transform: scale(1.05);
}

.hero-image {
    flex: 1;
    position: relative;
    text-align: right;
}

.hero-image img {
    width: 80%;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 70%;
    position: relative;
    z-index: 2;
    border: 10px solid var(--white);
}

.blob-shape {
    position: absolute;
    top: 10%;
    right: 0;
    width: 90%;
    height: 90%;
    background-color: var(--soft-orange);
    border-radius: 50%;
    filter: blur(40px);
    z-index: 1;
    opacity: 0.5;
}

.wave-bottom {
    width: 100%;
    line-height: 0;
}

/* メインコンテンツ */
.content-section {
    background-color: var(--bg-light);
    padding: 100px 20px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

.feature-block {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 120px;
}

.feature-block.reverse {
    flex-direction: row-reverse;
}

.f-image {
    flex: 1;
}

.f-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.f-text {
    flex: 1.2;
}

.tag {
    display: inline-block;
    background-color: var(--accent-green);
    color: var(--white);
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.f-text h2 {
    font-family: var(--font-accent);
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--soft-pink);
}

.check-list {
    list-style: none;
    margin-top: 30px;
}

.check-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    font-weight: 700;
}

.check-list li::before {
    content: '✿';
    position: absolute;
    left: 0;
    color: var(--soft-orange);
    font-size: 1.4rem;
}

/* バナー */
.banner {
    padding: 120px 20px;
    text-align: center;
    background-color: var(--white);
}

.banner h2 {
    font-family: var(--font-accent);
    font-size: 3rem;
    color: var(--soft-orange);
    margin-bottom: 20px;
}

/* フッター */
footer {
    padding: 60px;
    background-color: var(--soft-pink);
    color: var(--white);
    text-align: center;
    font-weight: 700;
}

/* レスポンシブ */
@media (max-width: 900px) {
    .hero-container, .feature-block, .feature-block.reverse {
        flex-direction: column;
        text-align: center;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-image img {
        width: 100%;
        margin-top: 40px;
    }
    .f-text h2 {
        font-size: 2rem;
    }
}