/* Reset and Base Styles */
body, h1, h2, p, ul, li, table {
    margin: 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
body {
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
.header {
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.header .logo img {
    height: 50px;
}

.nav {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center; /* 中央揃え */
    position: relative;
}

.nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav ul li {
}

.nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
}

.menu-toggle {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    display: none; /* PCでは非表示 */
}

.menu-close {
    display: none; /* PCでは非表示 */
}

.reservation-btn {
    background-color: #e91e63;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .nav {
        display: none; /* メニューを非表示 */
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        flex-direction: column;
        justify-content: center;
        z-index: 1000;
    }

    .nav.open {
        display: flex; /* メニュー表示 */
    }

    .menu-toggle {
        display: block; /* スマホで表示 */
    }

    .menu-close {
        display: block; /* メニュー閉じるボタンを表示 */
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        color: #fff;
        font-size: 36px;
        cursor: pointer;
    }

    .nav ul {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .reservation-btn {
        display: none; /* スマホで非表示 */
    }
}



/* Hero Image Container */
.hero-image-container {
    position: relative;
    width: 100%;
    background-color: #000;
    padding: 50px 0;
    width: 100%;
}
.hero-image-container img {
    width: 100%;
    height: 800px;
    object-fit: cover;
    object-position: top;
}
.hero-image-container div {
    position: absolute;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-100%, -50%); /* 初期位置: 左に隠す */
    right: 0;
    color: white;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 40px;
    font-size: 40px;
    animation: fadeInFromLeft 1.5s ease-out forwards; /* アニメーション適用 */
}

@keyframes fadeInFromLeft {
    0% {
        transform: translate(-100%, -50%);
        opacity: 0;
    }
    100% {
        transform: translate(0%, -50%); /* 10%に位置調整 */
        opacity: 1;
    }
}

@media screen and (max-width: 768px) {
    .hero-image-container div {
        font-size: 24px;
        padding: 40px 20px;
    }

    .hero-image-container img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        object-position: top;
    }

}

/* Intro Section */
.intro {
    padding: 50px 0;
    text-align: left;
}
.intro h1 {
    font-size: 36px;
    margin-bottom: 10px;
}
.intro hr {
    width: 50%;
    margin: 20px 0;
    text-align: left;
    border: none;
    border-top: 2px solid #e91e63;
}
.intro p {
    font-size: 16px;
    line-height: 1.8;
}

/* Recommend Section */
.reccomend {
    padding: 30px 0;
}

.reccomend h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.reccomend-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap; /* レスポンシブ対応 */
}

.reccomend img {
    width: 50%;
    height: auto;
    border-radius: 10px;
    flex: 1; /* 画像の幅を調整 */
}

.reccomend ul {
    flex: 1;
    font-size: 16px;
    line-height: 1.8;
    background-color: #e91e63;
    color: #fff;
    border-radius: 6px;
    padding: 10px;
}

.reccomend ul li {
    margin-bottom: 5px;
    font-size: 16px;
    padding: 5px 10px;
    color: #fff;
}

.reccomend ul li h3 {
    font-size: 20px;
    margin-top: 10px;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .reccomend-content {
        flex-direction: column; /* 縦並びに変更 */
        align-items: center; /* 中央揃え */
    }

    .reccomend img {
        width: 80%; /* スマホでは画像を小さく */
        margin-bottom: 20px;
    }

    .reccomend ul {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .reccomend h2 {
        font-size: 24px; /* タイトルを小さく */
    }

    .reccomend ul li {
        font-size: 14px; /* リストの文字を小さく */
    }

    .reccomend ul li h3 {
        font-size: 18px; /* 強調テキストも調整 */
    }
}


/* Hero Section */
.hero {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 50px 0;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px; /* スマホでの余白を確保 */
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero a {
    display: inline-block;
    background-color: #e91e63;
    color: #fff;
    padding: 15px 30px;
    font-size: 20px; /* デフォルトサイズ */
    font-weight: bold;
    border-radius: 5px;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.hero a:hover {
    background-color: #c2185b;
    transform: scale(1.1); /* ホバー時に少し拡大 */
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .hero h1 {
        font-size: 28px; /* タイトルを少し小さく */
    }

    .hero a {
        font-size: 18px; /* ボタンのテキストサイズを調整 */
        padding: 12px 25px; /* ボタンの余白を縮小 */
    }
}

@media screen and (max-width: 480px) {
    .hero h1 {
        font-size: 22px; /* スマホ画面でさらに小さく */
    }

    .hero a {
        font-size: 16px; /* ボタンのフォントサイズを調整 */
        padding: 10px 20px; /* ボタン全体を小さく */
    }
}


/* About Section */
.about {
    padding: 50px 0;
    background-color: #fff;
    text-align: center;
}

.about h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.youtube-content {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* レスポンシブ対応 */
}

.youtube-content iframe {
    width: 45%;
    height: 250px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .youtube-content iframe {
        width: 80%; /* 横幅を広げる */
        height: 200px; /* 高さを縮小 */
    }

    .about h2 {
        font-size: 24px; /* タイトルサイズを調整 */
    }
}

@media screen and (max-width: 480px) {
    .youtube-content iframe {
        width: 100%; /* スマホでは幅を100%に */
        height: 180px; /* 高さをさらに縮小 */
    }

    .about h2 {
        font-size: 20px; /* タイトルをさらに小さく */
    }
}


/* Therapists Section */
.therapists {
    padding: 50px 0;
    background-color: #f8f8f8;
}
.therapists h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
}
.therapist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
.therapist {
    background: #fff;
    padding: 15px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    color: #333;
    text-decoration: none;
    margin-bottom: 20px;
}
.therapist img {
    width: 100%;
    max-width: 300px;
    height: 450px;
    object-fit: cover;
    object-position: top;
}
.therapist p {
    font-weight: bold;
    margin: 10px 0;
}

/* Menu Section */
.menu {
    padding: 50px 0;
    background-color: #fff;
    text-align: center;
}

.menu h2 {
    font-size: 28px;
    margin-bottom: 30px;
}

.menu-content {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.menu-male, .menu-female {
    flex: 1;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    color: #fff;
}

@media screen and (max-width: 768px) {
    .menu-content {
        flex-direction: column;
    }
    
    .menu-male, .menu-female {
        max-width: 300px;
    }

}

.menu-male {
    background-color: #1565c0; /* 濃い青色 */
    border: 1px solid #0d47a1;
}

.menu-female {
    background-color: #c2185b; /* 濃いピンク色 */
    border: 1px solid #880e4f;
}

.menu-male h3, .menu-female h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.menu-male p, .menu-female p {
    font-size: 18px;
    font-weight: bold;
}


/* News Section */
.news {
    padding: 50px 0;
    background: linear-gradient(135deg, #ff8a80, #ff5252);
    color: #fff;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.news h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.news ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 800px;
    text-align: left;
}

.news li {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: bold;
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    position: relative;
}

.news li:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.2);
}

.news a {
    color: #fff;
    text-decoration: none;
    position: relative;
    z-index: 1;
}

.news a:hover {
    text-decoration: underline;
}

.news .highlight {
    background-color: #ffeb3b;
    color: #000;
    font-size: 12px;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 50px;
    margin-left: 10px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}


/* Footer */
.footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    font-size: 14px;
}

.store-list {
    margin: 50px 0;
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.store-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 300px;
}

.store-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.store-card h2 {
    font-size: 20px;
}

.store-card p {
    font-size: 14px;
    margin-bottom: 20px;
}

.store-card .map iframe {
    border-radius: 10px;
    width: 100%;
    height: 250px;
    margin-bottom: 15px;
}

.store-card .btn {
    display: inline-block;
    background-color: #e91e63;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.store-card .btn:hover {
    background-color: #c2185b;
}

.store-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}




/* Therapist Detail Section */
.therapist-detail {
    padding: 50px 0;
    background-color: #fff;
}

.therapist-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    background-color: #e91e63;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.therapist-header img {
    width: 300px;
    height: 400px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.therapist-info {
    flex: 1;
}

.therapist-info h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.therapist-info p {
    font-size: 16px;
    margin-bottom: 5px;
    color: #fff;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .therapist-header {
        flex-direction: column; /* 縦並びに変更 */
        align-items: center;
        gap: 20px;
    }

    .therapist-header img {
        width: 100%; /* 画像サイズを縮小 */
        height: 350px;
    }

    .therapist-info h1 {
        font-size: 28px; /* フォントサイズを調整 */
    }

    .therapist-info p {
        font-size: 14px; /* テキストサイズを調整 */
    }
}


/* Therapist Description */
.therapist-description {
    margin-bottom: 30px;
}

.therapist-description h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #e91e63;
}

.therapist-description p {
    font-size: 16px;
    line-height: 1.8;
}

/* Reservation Section */
.reservation {
    text-align: center;
    background-color: #f8f8f8;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.reservation h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.reservation p {
    margin-bottom: 20px;
    font-size: 16px;
}

.reservation-btn {
    display: inline-block;
    background-color: #e91e63;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.reservation-btn:hover {
    background-color: #c2185b;
}
