:root {
    /* Color Palette - Updated to match harumina.com */
    --color-bg: #FFFFFF;
    /* 純白: 背景 */
    --color-text: #333333;
    /* ダークグレー: 本文 */
    --color-primary: #f2a994;
    /* コーラルピンク: WEB予約・アクセント */
    --color-secondary: #333333;
    /* テキストと同じ色で統一感を出す */
    --color-accent-green: #00a800;
    /* LINE用グリーン */
    --color-light-gray: #f5f5f5;
    /* 薄いグレー: 区分け用 */
    --color-white: #FFFFFF;

    /* Font Families */
    --font-base: "Noto Sans JP", "Yu Gothic", sans-serif;
    --font-accent: "Cormorant Garamond", serif;

    /* Spacing */
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;
}

/* Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
  font-size: 100%;
}
/*
body.page-id-1471 {
    font-family: var(--font-base);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.8;
    letter-spacing: 0.05em;
}*/

.post-1471 h1,
.post-1471 h2,
.post-1471 h3 {
    font-weight: 500;
    line-height: 1.4;
    color: var(--color-secondary);
}

.post-1471 a {
    text-decoration: none;
    transition: opacity 0.3s;
}
.post-1471 a:hover {
    opacity: 0.7;
}

.post-1471 img {
    max-width: 100%;
    height: auto;
    display: block;
}
.post-1471 p {
	font-weight: 400;
}
.post-1471 .container {
	max-width: 100%;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Header - Mimicking harumina.com */
.header {
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    border-bottom: 1px solid #eee;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    height: 60px;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: #333;
    letter-spacing: 0.1em;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 600;
    text-transform: lowercase;
    /* atelier harumina style */
}

/* Navigation - Simplified for LP */
.nav {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

/* Hide navigation links on mobile, show only button */
.nav a:not(.btn-reserve) {
    display: none;
}

@media (min-width: 769px) {
    .nav a:not(.btn-reserve) {
        display: inline-block;
        font-size: 0.85rem;
        color: #333;
        letter-spacing: 0.05em;
    }
}

/* Reserve Button in Header */
.header .btn-primary {
    padding: 10px 20px;
    font-size: 0.85rem;
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 2px;
}

/* Buttons */
.btn {
	width: auto;
	border: none;
    display: inline-block;
    padding: 12px 30px;
    border-radius: 0;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}
.btn::after {
	display: none;
}
.btn:hover {
	text-decoration: none;
	background-color: transparent;
	border: none;
	color: #fff;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    border: 1px solid var(--color-primary);
}

.btn-primary:hover {
    background-color: #fff;
    color: var(--color-primary);
}

/* Footer */
.footer {
    padding: var(--spacing-lg) 0;
    text-align: center;
    background-color: var(--color-white);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.8rem;
    color: #888;
}

/* Utility */
.d-block {
    display: block;
}

.section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title {
	width: 100%;
	background-color: transparent;
    font-family: var(--font-accent);
    font-size: 1.2rem;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    /*margin-bottom: var(--spacing-sm);*/
	margin: 0 0 var(--spacing-sm) 0;
	padding: 0;
}

.section-subtitle {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.6;
}

/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    background-image: url('/wp-content/themes/astrid_child/bimayu/hero.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-text);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(2px);
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeIn 2s ease-out;
}

.hero-subtitle {
    font-family: var(--font-accent);
    letter-spacing: 0.1em;
    font-size: 1.1rem;
    margin-bottom: var(--spacing-md);
    color: var(--color-secondary);
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: var(--spacing-md);
    color: var(--color-secondary);
}

.hero-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-secondary);
}

/* Problem Section */
.problem-section {
    background-color: var(--color-white);
}

.check-list {
    list-style: none;
    max-width: 600px;
    margin: 0 auto var(--spacing-lg);
    border: 1px solid #eee;
    padding: var(--spacing-lg);
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    background: #fff;
}

.check-list li {
    margin-bottom: var(--spacing-md);
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
	font-weight: 400;
}

.check-list li:last-child {
    margin-bottom: 0;
}

.check-icon {
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-primary);
    font-weight: bold;
}

.problem-conclusion {
    text-align: center;
    font-size: 1.2rem;
}

.problem-conclusion strong {
    font-size: 1.4rem;
    background: linear-gradient(transparent 60%, rgba(242, 169, 148, 0.4) 60%);
    /* Coral highlight */
    padding: 0 5px;
}

/* Cause Section */
.cause-section {
    background-color: var(--color-light-gray);
    /* Using variable */
}

.cause-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cause-text {
    margin-bottom: var(--spacing-lg);
    font-size: 1.1rem;
}

.elements-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.element-item {
    background: var(--color-white);
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(242, 169, 148, 0.3);
    /* Coral border */
    transition: transform 0.3s;
}

.element-item:hover {
    transform: translateY(-5px);
}

.element-num {
    font-family: var(--font-accent);
    color: var(--color-primary);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.element-label {
    font-size: 0.9rem;
    font-weight: 500;
}

.cause-text-bottom {
    font-weight: 500;
}

/* Solution Section */
.solution-section {
    background-color: var(--color-white);
}

.solution-intro {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    font-size: 1.1rem;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.solution-card {
    background: var(--color-light-gray);
    padding: var(--spacing-md);
    border-radius: 4px;
    text-align: center;
    transition: transform 0.3s;
}

.solution-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    font-family: var(--font-accent);
    font-size: 2.5rem;
    color: rgba(242, 169, 148, 0.5);
    /* Coral tint */
    margin-bottom: var(--spacing-sm);
    line-height: 1;
}

.solution-card h4 {
    font-size: 1.2rem;
	font-weight: bold;
    margin-bottom: var(--spacing-sm);
    color: var(--color-secondary);
}

.solution-card p {
    font-size: 0.95rem;
    color: #666;
}

/* Benefit Section */
.benefit-section {
    background-color: #fffaf9;
    /* Very light cool coral tint */
    color: var(--color-text);
    position: relative;
    overflow: hidden;
}

.benefit-section .section-title {
    color: var(--color-primary);
}

.benefit-section .section-subtitle {
    color: var(--color-text);
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
}

.benefit-item {
    text-align: center;
    padding: var(--spacing-md);
    background: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.benefit-title-en {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    opacity: 0.7;
    margin-bottom: 5px;
    color: var(--color-primary);
}

.benefit-title-ja {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: var(--spacing-sm);
}

.benefit-message {
    text-align: center;
    font-size: 1.2rem;
    margin-top: var(--spacing-lg);
}

.benefit-message strong {
    font-size: 1.5rem;
    color: var(--color-primary);
}

/* Process Section */
.process-section {
    background-color: var(--color-white);
}

.process-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
    font-size: 1.1rem;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: #FFEEE8;
    /* Light coral */
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: var(--spacing-lg);
    position: relative;
    flex-direction: column;
    text-align: center;
    background: var(--color-white);
    padding: var(--spacing-md);
    border-radius: 4px;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #eee;
}

.timeline-step {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 5px 15px;
    display: inline-block;
    border-radius: 20px;
    font-family: var(--font-accent);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-sm);
}

.timeline-content h4 {
    font-size: 1.2rem;
	font-weight: 700;
    margin-bottom: 10px;
}

.process-cta {
    text-align: center;
    font-size: 1.2rem;
    margin-top: var(--spacing-lg);
    font-weight: 500;
}

/* FAQ Section */
.faq-section {
    background-color: var(--color-light-gray);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    margin-bottom: var(--spacing-sm);
}

.faq-question {
    padding: var(--spacing-sm) 0;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question .icon {
    font-weight: 300;
    font-size: 1.5rem;
    color: var(--color-primary);
    transition: transform 0.3s;
}

.faq-item[open] .faq-question .icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding-bottom: var(--spacing-md);
    color: #666;
    font-size: 0.95rem;
    line-height: 1.8;
    animation: fadeIn 0.3s ease-out;
}

/* Reserve Section */
.reserve-section {
    background-color: #fff;
    text-align: center;
    padding: var(--spacing-xl) 0;
    border-top: 1px solid #eee;
}

.reserve-title {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-secondary);
}

.reserve-text {
    margin-bottom: var(--spacing-md);
}

.btn-reserve {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 15px 60px;
    font-size: 1.1rem;
    border-radius: 0;
	background-color: #1FC755;
    box-shadow: 0 5px 15px rgba(242, 169, 148, 0.4);
    letter-spacing: 0.1em;
}

.btn-reserve:hover {
    background-color: #1FC755;
    transform: translateY(-2px);
}

/* Scroll Animation Classes */
.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .page-id-1471 .section {
        padding: var(--spacing-lg) 0;
    }
    .hero-title {
        font-size: 1.5rem;
		letter-spacing: 0;
    }
    .hero {
        height: 80vh;
    }
	.hero .container {
		padding: 0;
	}
    .section-subtitle {
        font-size: 1.4rem;
    }

    .check-list {
        padding: var(--spacing-md);
    }

    .elements-grid {
        gap: var(--spacing-sm);
    }

    .element-item {
        width: 100px;
        height: 100px;
    }

    .element-num {
        font-size: 1.2rem;
    }

    .element-label {
        font-size: 0.8rem;
    }

    .solution-grid,
    .benefit-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .timeline::before {
        display: none;
    }

    /* Stack Content Vertically on Mobile */
    .section-content-wrapper {
        flex-direction: column !important;
        gap: var(--spacing-md);
    }

    .section-content-wrapper.reverse {
        flex-direction: column !important;
    }

    /* Force Image to be Full Width and On Top */
    .section-content-wrapper .section-image {
        order: -1;
        width: 100%;
        max-width: 100%;
        margin-bottom: var(--spacing-sm);
    }

    .section-content-wrapper .section-text {
        width: 100%;
    }

    .sticky-image {
        position: static;
    }
}

/* Component Layouts (Image + Text) - Desktop Default */
.section-content-wrapper {
    display: flex;
    gap: var(--spacing-lg);
    align-items: center;
    justify-content: center;
}

.section-content-wrapper.reverse {
    flex-direction: row-reverse;
}

.section-image {
    flex: 1;
    max-width: 500px;
}

.section-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    width: 100%;
    height: auto;
    object-fit: cover;
}

.sticky-image {
    position: sticky;
    top: 100px;
}
.section-text {
    flex: 1;
    min-width: 300px;
}


.page-id-1471 .entry-content section {
    margin: 0;
}
.site-header .main-navigation a,
.footer-navigation li a {
   font-family: 'Open Sans', sans-serif;
}