:root {
    --primary-color: #2E8B57; /* SeaGreen: 安心感、健康 */
    --secondary-color: #4682B4; /* SteelBlue: 信頼、プロフェッショナル */
    --accent-color: #FFA500; /* Orange: 活力、注目 */
    --text-color: #333333;
    --bg-color: #FFFFFF;
    --bg-light: #F5F9F7;
    --font-main: 'Noto Sans JP', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}

a:hover {
    opacity: 0.8;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

.text-left.section-title {
    text-align: left;
}
.text-left.section-title::after {
    left: 0;
    transform: none;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-cta {
    background-color: var(--accent-color);
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

/* Header */
.header {
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    height: 70px;
    display: flex;
    align-items: center;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    color: var(--primary-color);
}

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

.tel {
    font-weight: bold;
    font-size: 1.2rem;
    display: none; /* Mobile first hidden */
}

@media (min-width: 768px) {
    .tel {
        display: block;
    }
}

/* Hero Section */
.hero {
    margin-top: 70px;
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    background-color: #f0f0f0; /* Fallback */
}

.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;
    opacity: 0.8;
}

.hero-content {
    position: relative;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 10px;
    max-width: 600px;
    margin-left: 5%; /* Align somewhat left */
}

.hero-catch {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-sub {
    font-size: 1rem;
    margin-bottom: 30px;
}

/* Pain Points */
.pain-points {
    background-color: var(--bg-light);
}

.check-list {
    max-width: 700px;
    margin: 0 auto 30px;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.check-list li {
    font-size: 1.2rem;
    padding: 10px 0;
    border-bottom: 1px dotted #ccc;
    position: relative;
    padding-left: 35px;
}

.check-list li:last-child {
    border-bottom: none;
}

.check-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: red;
    font-weight: bold;
    font-size: 1.4rem;
}

.pain-message {
    text-align: center;
    font-weight: bold;
    font-size: 1.4rem;
    color: var(--primary-color);
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #eee;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* About */
.about {
    background-color: var(--bg-light);
}

.about-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media (min-width: 768px) {
    .about-container {
        flex-direction: row;
        align-items: flex-start;
    }
}

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.about-text {
    flex: 1.5;
}

.position {
    color: var(--secondary-color);
    font-weight: bold;
    margin-bottom: 5px;
}

.name {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.name-en {
    font-size: 1rem;
    color: #888;
    margin-left: 10px;
    font-weight: normal;
}

.message {
    margin-bottom: 30px;
}

.profile-detail {
    background: white;
    padding: 20px;
    border-left: 4px solid var(--primary-color);
}

/* Price */
.price-box {
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
}

.price-box h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    background-color: var(--primary-color);
    color: white;
    display: inline-block;
    padding: 5px 20px;
    border-radius: 20px;
}

.special-offer {
    margin: 20px 0;
}

.label {
    background: red;
    color: white;
    padding: 5px 10px;
    font-weight: bold;
    border-radius: 4px;
    vertical-align: middle;
    margin-right: 10px;
}

.price-value {
    font-size: 3rem;
    font-weight: bold;
    color: red;
    vertical-align: middle;
}

.yen {
    font-size: 1.5rem;
    color: #333;
}

.limit {
    color: red;
    font-weight: bold;
    margin-bottom: 10px;
}

.cta-area {
    text-align: center;
}

/* Access */
.access-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

@media (min-width: 768px) {
    .access-content {
        flex-direction: row-reverse;
    }
}

.map {
    flex: 1;
}

.info {
    flex: 1;
}

.hours-table {
    width: 100%;
    margin: 20px 0;
    border-collapse: collapse;
}

.hours-table th, .hours-table td {
    padding: 10px;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.tel-large {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
}

/* Footer */
.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
}
