/* ===================================
   グローバルスタイル
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FFF4B3;
    --secondary-color: #FFEBB3;
    --accent-color: #FFE66D;
    --accent-pink: #FFB3D9;
    --accent-pink-light: #FFE4F0;
    --text-dark: #2C3E50;
    --text-light: #6C757D;
    --bg-light: #FFFEF7;
    --bg-white: #FFFFFF;
    --border-color: #FFF9E6;
    --shadow: 0 4px 20px rgba(255, 244, 179, 0.3);
    --shadow-hover: 0 8px 30px rgba(255, 179, 217, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text-dark);
    line-height: 1.8;
    background-color: var(--bg-white);
    background-image: url('https://www.genspark.ai/api/files/s/ULIBcube');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

/* ===================================
   ヘッダー
   =================================== */
.header {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(255, 179, 217, 0.3);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

.header.scrolled .logo h1,
.header.scrolled .nav a {
    color: var(--text-dark);
}

.header-top {
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.line-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #06C755;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(6, 199, 85, 0.3);
    margin-left: 20px;
}

.line-button:hover {
    background: #05B04D;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(6, 199, 85, 0.4);
}

.line-button i {
    font-size: 1.3rem;
}

.line-button span {
    white-space: nowrap;
}

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

.nav a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav a:hover {
    background: rgba(255, 179, 217, 0.3);
    color: var(--text-dark);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    box-shadow: var(--shadow);
    z-index: 999;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu a {
    display: block;
    padding: 15px 20px;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
}

.mobile-menu a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

/* ===================================
   ヒーローセクション
   =================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 70px;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 248, 220, 0.75);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    color: white;
    text-align: center;
    padding: 40px 20px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   ボタン
   =================================== */
.btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: white;
    color: var(--text-dark);
    border: 2px solid var(--accent-pink);
}

.btn-primary:hover {
    background: var(--accent-pink-light);
    color: var(--text-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 179, 217, 0.4);
    border-color: var(--accent-pink);
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--text-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.4);
}

/* ===================================
   お知らせセクション
   =================================== */
.news {
    background: transparent;
    padding: 30px 0;
}

.news-content {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.news-content h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.news-list {
    list-style: none;
}

.news-list li {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

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

.news-list .date {
    color: var(--text-light);
    font-size: 0.9rem;
    min-width: 100px;
}

.news-list .label {
    background: var(--text-light);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.news-list .label.new {
    background: var(--accent-pink);
    color: var(--text-dark);
}

.news-list a {
    color: var(--text-dark);
    flex: 1;
    min-width: 200px;
}

.news-list a:hover {
    color: var(--primary-color);
}

/* ===================================
   セクション共通スタイル
   =================================== */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--accent-pink);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ===================================
   Aboutセクション
   =================================== */
.about {
    background: transparent;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}

.about-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
}

.about-slide {
    display: none;
    animation: fadeIn 1s ease-in-out;
}

.about-slide.active {
    display: block;
}

.about-slide img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover .about-slide img {
    transform: scale(1.05);
}

.about-slideshow-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.about-slideshow-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.about-slideshow-dots .dot.active {
    background: var(--accent-pink);
    border-color: var(--accent-pink);
    transform: scale(1.2);
}

.about-slideshow-dots .dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.about-text h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 2;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 252, 235, 0.8);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 244, 179, 0.3);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-pink);
}

.feature-item i {
    font-size: 3rem;
    color: var(--accent-pink);
    margin-bottom: 15px;
}

.feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===================================
   サービスセクション
   =================================== */
.services {
    background: transparent;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 30px;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-pink-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 2px solid var(--accent-pink);
}

.service-icon i {
    font-size: 1.8rem;
    color: var(--text-dark);
}

.service-content h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.service-content p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ===================================
   営業時間セクション
   =================================== */
.hours {
    background: rgba(255, 248, 220, 0.95);
    color: var(--text-dark);
    backdrop-filter: blur(10px);
    border-top: 3px solid rgba(255, 179, 217, 0.5);
    border-bottom: 3px solid rgba(255, 179, 217, 0.5);
}

.hours-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.hours-info h3,
.hours-contact h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-dark);
}

.hours-table {
    width: 100%;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid rgba(255, 244, 179, 0.3);
}

.hours-table tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.hours-table tr:last-child {
    border-bottom: none;
}

.hours-table th,
.hours-table td {
    padding: 20px;
    text-align: left;
}

.hours-table th {
    font-weight: 600;
    width: 120px;
}

.hours-note {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.phone-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 20px 0;
    letter-spacing: 2px;
    color: var(--text-dark);
}

.phone-note {
    color: var(--text-dark);
}

/* ===================================
   アクセスセクション
   =================================== */
.access {
    background: transparent;
}

.access-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
}

.access-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.access-info h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.info-item:last-child {
    border-bottom: none;
}

.info-item i {
    font-size: 1.8rem;
    color: var(--accent-pink);
    min-width: 30px;
}

.info-item h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.info-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ===================================
   お問い合わせセクション
   =================================== */
.contact {
    background: transparent;
}

.contact-content-simple {
    max-width: 900px;
    margin: 0 auto;
}

.contact-info-center {
    text-align: center;
}

.contact-info-center h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.contact-info-center > p {
    color: var(--text-light);
    line-height: 2;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.contact-methods-center {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.method-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 50px 30px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 244, 179, 0.3);
}

.method-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-pink);
}

.method-card i {
    font-size: 4rem;
    color: var(--accent-pink);
    margin-bottom: 25px;
}

.method-card h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-link {
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-pink);
    text-decoration: none;
    margin-bottom: 15px;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: var(--accent-pink-light);
    transform: scale(1.05);
}

.phone-link {
    letter-spacing: 2px;
}

.email-link {
    word-break: break-all;
    font-size: 1.1rem;
}

.method-card span {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===================================
   フッター
   =================================== */
.footer {
    background: #1a2942;
    color: white;
    padding: 60px 0 20px;
}

.footer-info-images {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0 30px;
    flex-wrap: wrap;
}

.footer-info-img {
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.footer-info-img:hover {
    transform: scale(1.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-info p {
    margin-bottom: 10px;
    opacity: 0.9;
}

.footer-hours h4,
.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-hours p {
    margin-bottom: 8px;
    opacity: 0.9;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: white;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    opacity: 0.7;
}

/* ===================================
   トップに戻るボタン
   =================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent-pink);
    color: var(--text-dark);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    z-index: 100;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    background: var(--accent-pink-light);
}

/* ===================================
   サブページスタイル
   =================================== */
/* ページヘッダー */
.page-header {
    background: var(--accent-pink-light);
    padding: 120px 0 80px;
    text-align: center;
    margin-top: 80px;
}

.page-header h1 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--accent-pink);
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* 当局について - 理念セクション */
.philosophy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.philosophy-text h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.philosophy-text p {
    line-height: 2;
    color: var(--text-light);
    margin-bottom: 20px;
}

.philosophy-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.philosophy-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* 特徴カード */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 244, 179, 0.3);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-pink);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-pink-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--accent-pink);
}

.feature-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* 施設紹介 */
.facilities-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.facility-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.facility-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.facility-image img {
    width: 100%;
    height: auto;
    display: block;
}

.facility-text h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.facility-text h3 i {
    color: var(--accent-pink);
    margin-right: 15px;
}

.facility-text p {
    color: var(--text-light);
    line-height: 2;
}

/* 開局情報 */
.opening-info {
    background: rgba(255, 255, 255, 0.95);
    padding: 60px;
    border-radius: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
    border: 2px solid var(--accent-pink);
}

.opening-content h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.opening-content h2 i {
    color: var(--accent-pink);
    margin-right: 15px;
}

.opening-date {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-pink);
    margin: 30px 0;
}

.opening-content > p {
    color: var(--text-light);
    line-height: 2;
    margin-bottom: 15px;
}

.opening-highlight {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.highlight-item {
    display: flex;
    gap: 20px;
    text-align: left;
    background: rgba(255, 244, 179, 0.3);
    padding: 30px;
    border-radius: 15px;
}

.highlight-item i {
    font-size: 2rem;
    color: var(--accent-pink);
    min-width: 40px;
}

.highlight-item h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.highlight-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* サービス詳細ページ */
.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.services-intro h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.services-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 2;
}

.service-detail {
    padding: 80px 0;
}

.service-detail-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.service-detail-item.reverse {
    direction: rtl;
}

.service-detail-item.reverse > * {
    direction: ltr;
}

.service-detail-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent-pink-light);
    opacity: 0.5;
    margin-bottom: 20px;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.service-detail-content h2 i {
    color: var(--accent-pink);
    margin-right: 15px;
}

.service-description {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 2;
    margin-bottom: 40px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.service-feature-item {
    display: flex;
    gap: 20px;
}

.service-feature-item i {
    color: var(--accent-pink);
    font-size: 1.5rem;
    min-width: 30px;
}

.service-feature-item h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.service-feature-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* CTAセクション */
.cta-section {
    background: var(--accent-pink-light);
    padding: 80px 0;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* アクセスページ */
.map-container {
    margin-bottom: 40px;
}

.access-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.access-info-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 244, 179, 0.3);
    transition: all 0.3s ease;
}

.access-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-pink);
}

.access-info-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-pink-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.access-info-icon i {
    font-size: 2rem;
    color: var(--accent-pink);
}

.access-info-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.access-info-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 10px;
}

.access-info-card .note {
    font-size: 0.9rem;
    color: var(--accent-pink);
    font-style: italic;
}

.transportation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.transportation-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 244, 179, 0.3);
    transition: all 0.3s ease;
}

.transportation-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-pink);
}

.transportation-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-pink-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.transportation-icon i {
    font-size: 2.5rem;
    color: var(--accent-pink);
}

.transportation-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.transportation-detail h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.transportation-detail p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 8px;
}

.transportation-detail .highlight {
    color: var(--accent-pink);
    font-weight: 600;
    font-size: 1.1rem;
}

.transportation-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 20px;
    font-style: italic;
}

.business-hours-detail {
    max-width: 800px;
    margin: 0 auto;
}

.business-hours-table {
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
    border-collapse: collapse;
}

.business-hours-table thead {
    background: var(--accent-pink);
}

.business-hours-table th {
    padding: 20px;
    text-align: left;
    color: white;
    font-weight: 600;
}

.business-hours-table td {
    padding: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-light);
}

.business-hours-table tr:last-child td {
    border-bottom: none;
}

.badge {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.badge-open {
    background: rgba(80, 200, 120, 0.2);
    color: #50C878;
}

.badge-closed {
    background: rgba(231, 76, 60, 0.2);
    color: #E74C3C;
}

.business-hours-notes {
    margin-top: 30px;
    padding: 25px;
    background: rgba(255, 244, 179, 0.3);
    border-radius: 15px;
}

.business-hours-notes p {
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.8;
}

.business-hours-notes p:last-child {
    margin-bottom: 0;
}

.business-hours-notes i {
    color: var(--accent-pink);
    margin-right: 10px;
}

.opening-announcement {
    background: rgba(255, 255, 255, 0.95);
    padding: 60px;
    border-radius: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
    border: 2px solid var(--accent-pink);
}

.opening-icon {
    width: 100px;
    height: 100px;
    background: var(--accent-pink-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.opening-icon i {
    font-size: 3rem;
    color: var(--accent-pink);
}

.opening-announcement h2 {
    font-size: 2.5rem;
    color: var(--accent-pink);
    margin-bottom: 25px;
    font-weight: 700;
}

.opening-announcement p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 2;
    margin-bottom: 15px;
}

.opening-cta {
    margin-top: 40px;
}

/* お問い合わせページ */
.contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-intro h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.contact-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 2;
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-method-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 244, 179, 0.3);
    transition: all 0.3s ease;
}

.contact-method-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-pink);
}

.contact-method-icon {
    width: 100px;
    height: 100px;
    background: var(--accent-pink-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.contact-method-icon i {
    font-size: 3rem;
    color: var(--accent-pink);
}

.contact-method-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.contact-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-pink);
    text-decoration: none;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.contact-value:hover {
    color: var(--text-dark);
    transform: scale(1.05);
}

.contact-value.email {
    font-size: 1.1rem;
    word-break: break-all;
}

.contact-hours {
    text-align: left;
    margin-bottom: 25px;
}

.contact-hours p {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.contact-hours ul {
    list-style: none;
    padding: 0;
}

.contact-hours li {
    color: var(--text-light);
    line-height: 2;
    padding-left: 20px;
    position: relative;
}

.contact-hours li:before {
    content: "•";
    color: var(--accent-pink);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    line-height: 1.6;
}

/* FAQ */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 244, 179, 0.3);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-pink);
    box-shadow: var(--shadow-hover);
}

.faq-question {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.faq-question i {
    color: var(--accent-pink);
    font-size: 1.5rem;
    min-width: 25px;
    margin-top: 3px;
}

.faq-question h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
}

.faq-answer p {
    color: var(--text-light);
    line-height: 2;
    padding-left: 40px;
}

/* お問い合わせページ - アクセス */
.contact-access-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

.contact-map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contact-access-info {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 244, 179, 0.3);
}

.access-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.access-info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.access-info-item i {
    font-size: 1.8rem;
    color: var(--accent-pink);
    min-width: 30px;
}

.access-info-item h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.access-info-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.access-cta {
    margin-top: 30px;
}

.access-cta .btn {
    width: 100%;
}

.opening-banner {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px;
    border-radius: 25px;
    text-align: center;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
    border: 2px solid var(--accent-pink);
}

.opening-banner i {
    font-size: 3rem;
    color: var(--accent-pink);
    margin-bottom: 20px;
}

.opening-banner h2 {
    font-size: 2rem;
    color: var(--accent-pink);
    margin-bottom: 20px;
    font-weight: 700;
}

.opening-banner p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 2;
}

/* 共通 */
.bg-light {
    background: rgba(255, 254, 247, 0.5);
}

.section {
    padding: 80px 0;
}

/* アクティブナビゲーション */
.nav a.active {
    color: var(--accent-pink);
    font-weight: 600;
}

/* ===================================
   LINEページスタイル
   =================================== */
.line-visual-header {
    text-align: center;
    margin-bottom: 60px;
}

.line-visual-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.line-visual-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.line-flow-visual {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 50px 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
    border: 3px solid var(--accent-color);
}

.flow-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
}

.flow-step {
    flex: 0 0 auto;
    text-align: center;
    position: relative;
    width: 200px;
}

.flow-circle {
    width: 160px;
    height: 160px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    box-shadow: 0 4px 15px rgba(255, 230, 109, 0.4);
}

.flow-circle i {
    font-size: 4rem;
    color: white;
}

.qr-image {
    width: 130px;
    height: 130px;
    border-radius: 10px;
}

.flow-id {
    background: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    color: var(--accent-pink);
    font-size: 1rem;
    box-shadow: var(--shadow);
    display: inline-block;
    margin-bottom: 10px;
}

.line-notification {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    background: #06C755;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

.line-notification i {
    font-size: 2rem;
    color: white;
}

.flow-number {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--accent-pink);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: var(--shadow);
}

.flow-step h3 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1.4;
}

.flow-step > p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
}

.flow-arrow {
    display: flex;
    align-items: center;
    margin-top: 90px;
}

.flow-arrow i {
    font-size: 2rem;
    color: var(--accent-pink);
}

.line-hero {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.line-hero-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

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

.line-intro h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.line-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 2;
}

.line-steps {
    max-width: 800px;
    margin: 0 auto;
}

.line-step {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 244, 179, 0.3);
    margin-bottom: 30px;
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 40px;
    width: 50px;
    height: 50px;
    background: var(--accent-pink);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: var(--shadow);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-pink-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.step-icon i {
    font-size: 2.5rem;
    color: var(--accent-pink);
}

.line-step h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    text-align: center;
}

.line-step > p {
    color: var(--text-light);
    line-height: 1.8;
    text-align: center;
    margin-bottom: 20px;
}

.line-id-box {
    background: var(--primary-color);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    margin-top: 20px;
    border: 2px solid var(--accent-pink);
}

.line-id-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.line-id {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-pink);
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.line-add-button {
    text-align: center;
    margin-top: 20px;
}

.line-add-button a {
    display: inline-block;
    transition: all 0.3s ease;
}

.line-add-button a:hover {
    transform: scale(1.05);
}

.line-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.photo-tips {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    border-left: 4px solid var(--accent-pink);
}

.photo-tips h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.photo-tips h4 i {
    color: var(--accent-color);
    margin-right: 10px;
}

.photo-tips ul {
    list-style: none;
    padding-left: 0;
}

.photo-tips li {
    color: var(--text-light);
    line-height: 2;
    padding-left: 25px;
    position: relative;
}

.photo-tips li:before {
    content: "✓";
    color: var(--accent-pink);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.send-info {
    background: var(--accent-pink-light);
    padding: 15px 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.send-info p {
    color: var(--text-dark);
    margin: 0;
    font-weight: 500;
}

.send-info i {
    color: var(--accent-pink);
    margin-right: 10px;
}

.important-note {
    background: #FFF3CD;
    padding: 15px 20px;
    border-radius: 10px;
    margin-top: 20px;
    border-left: 4px solid #FFC107;
}

.important-note p {
    color: #856404;
    margin: 0;
    font-weight: 500;
}

.important-note i {
    color: #FFC107;
    margin-right: 10px;
}

.line-step-arrow {
    text-align: center;
    margin: 20px 0;
}

.line-step-arrow i {
    font-size: 2rem;
    color: var(--accent-pink);
}

.line-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 244, 179, 0.3);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-pink);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-pink-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.benefit-icon i {
    font-size: 2rem;
    color: var(--accent-pink);
}

.benefit-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.line-notes {
    max-width: 900px;
    margin: 0 auto;
}

.note-item {
    display: flex;
    gap: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 244, 179, 0.3);
}

.note-item i {
    font-size: 1.5rem;
    color: var(--accent-pink);
    min-width: 25px;
    margin-top: 3px;
}

.note-item h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.note-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.line-cta {
    background: var(--accent-pink-light);
    padding: 80px 0;
}

.cta-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.cta-box h2 i {
    color: #06C755;
    margin-right: 15px;
}

.cta-box > p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 2;
}

.line-qr-placeholder {
    background: white;
    padding: 50px;
    border-radius: 20px;
    margin: 40px 0;
    box-shadow: var(--shadow);
}

.qr-icon {
    width: 150px;
    height: 150px;
    background: var(--bg-light);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 3px dashed var(--border-color);
}

.qr-icon i {
    font-size: 4rem;
    color: var(--text-light);
}

.line-qr-placeholder > p {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 10px;
}

.qr-note {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
}

.line-add-button-cta {
    text-align: center;
    margin-top: 10px;
}

.line-add-button-cta a {
    display: inline-block;
    transition: all 0.3s ease;
}

.line-add-button-cta a:hover {
    transform: scale(1.05);
}

.cta-contact {
    margin-top: 40px;
}

.cta-contact > p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.cta-contact .btn {
    margin: 10px;
}

/* LINEページ レスポンシブ */
@media (max-width: 992px) {
    .line-flow-visual {
        padding: 40px 30px;
    }
    
    .flow-row {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .flow-step {
        width: 180px;
    }
    
    .flow-circle {
        width: 140px;
        height: 140px;
    }
    
    .flow-circle i {
        font-size: 3rem;
    }
    
    .qr-image {
        width: 110px;
        height: 110px;
    }
    
    .flow-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .line-visual-header h2 {
        font-size: 2rem;
    }
    
    .line-flow-visual {
        padding: 30px 20px;
    }
    
    .flow-row {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .flow-step {
        width: 100%;
        max-width: 250px;
    }
    
    .flow-circle {
        width: 150px;
        height: 150px;
    }
    
    .flow-circle i {
        font-size: 3.5rem;
    }
    
    .qr-image {
        width: 120px;
        height: 120px;
    }
    
    .flow-arrow {
        display: none;
    }
    
    .line-step {
        padding: 30px 20px;
    }
    
    .step-number {
        left: 20px;
    }
    
    .line-benefits {
        grid-template-columns: 1fr;
    }
    
    .cta-box h2 {
        font-size: 2rem;
    }
    
    .line-qr-placeholder {
        padding: 30px 20px;
    }
    
    .qr-icon {
        width: 120px;
        height: 120px;
    }
    
    .qr-icon i {
        font-size: 3rem;
    }
}

/* ===================================
   レスポンシブデザイン
   =================================== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hours-content {
        grid-template-columns: 1fr;
    }
    
    .access-content {
        grid-template-columns: 1fr;
    }
    
    .contact-methods-center {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* LINEボタンレスポンシブ */
    .line-button span {
        display: none;
    }
    
    .line-button {
        padding: 10px 12px;
        margin-left: 10px;
    }
    
    /* サブページレスポンシブ */
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .philosophy-content {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .facility-item {
        grid-template-columns: 1fr;
    }
    
    .opening-highlight {
        grid-template-columns: 1fr;
    }
    
    .service-detail-item {
        grid-template-columns: 1fr;
    }
    
    .service-detail-item.reverse {
        direction: ltr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .access-info-grid {
        grid-template-columns: 1fr;
    }
    
    .transportation-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-methods-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-access-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .line-button {
        display: flex;
        padding: 8px 16px;
        font-size: 0.85rem;
        margin-left: auto;
        margin-right: 10px;
    }
    
    .line-button span {
        display: inline;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero {
        height: 80vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .phone-number {
        font-size: 2rem;
    }
    
    .contact-methods-center {
        grid-template-columns: 1fr;
    }
    
    .contact-link {
        font-size: 1.2rem;
    }
    
    .email-link {
        font-size: 1rem;
    }
    
    /* サブページレスポンシブ */
    .page-header {
        padding: 100px 0 60px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .opening-info {
        padding: 40px 30px;
    }
    
    .service-number {
        font-size: 3rem;
    }
    
    .service-detail-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .opening-announcement {
        padding: 40px 30px;
    }
    
    .opening-banner {
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .line-button {
        padding: 6px 12px;
        font-size: 0.75rem;
        gap: 5px;
    }
    
    .line-button i {
        font-size: 1.1rem;
    }
    
    .line-button span {
        font-size: 0.75rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .news-list li {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .method-card {
        padding: 30px 20px;
    }
    
    .method-card i {
        font-size: 3rem;
    }
    
    /* サブページレスポンシブ */
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .philosophy-text h3 {
        font-size: 1.6rem;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .opening-info {
        padding: 30px 20px;
    }
    
    .opening-date {
        font-size: 1.5rem;
    }
    
    .services-intro h2 {
        font-size: 2rem;
    }
    
    .service-detail-content h2 {
        font-size: 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .contact-method-card {
        padding: 30px 20px;
    }
    
    .contact-value {
        font-size: 1.2rem;
    }
    
    .contact-access-info {
        padding: 25px;
    }
    
    .opening-announcement {
        padding: 30px 20px;
    }
    
    .opening-announcement h2 {
        font-size: 2rem;
    }
    
    .opening-banner {
        padding: 30px 20px;
    }
    
    .opening-banner h2 {
        font-size: 1.6rem;
    }
}