@charset "UTF-8";
/* CSS Document */

        /* リセットCSS */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f8f8;
        }

        /* ヘッダー */
        .header-top {
            background-color: #f48fb1;
            color: white;
            padding: 0.5rem 0;
            font-size: 0.9rem;
        }

        .header-top-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .phone-info {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .phone-number {
            color: white;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
        }

        .phone-number:hover {
            text-decoration: underline;
        }

        .reservation-note {
            font-size: 0.9rem;
        }

        .social-links a {
            color: white;
            font-size: 1.2rem;
            margin-left: 1rem;
            transition: color 0.3s;
        }

        .social-links a:hover {
            color: #ffeb3b;
        }

        .header {
            background-color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .header-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .logo img {
            width: 260px;
            height:auto;
            border-radius: 4px;
            display: flex;
            align-items: center;
        }

/* ハンバーガーメニューボタン */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    width: 40px;
    height: 40px;
    position: relative;
}

.hamburger-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 16px;
}

.hamburger-icon span {
    position: absolute;
    left: 0;
    display: block;
    height: 2px;
    width: 100%;
    background: #f48fb1;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.hamburger-icon span:nth-child(1) {
    top: 0;
}

.hamburger-icon span:nth-child(2) {
    top: 7px;
}

.hamburger-icon span:nth-child(3) {
    top: 14px;
}

/* × に変換 */
.nav-toggle.active .hamburger-icon span:nth-child(1) {
    top: 7px;
    transform: rotate(45deg);
}

.nav-toggle.active .hamburger-icon span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger-icon span:nth-child(3) {
    top: 7px;
    transform: rotate(-45deg);
}
/* ナビゲーション */
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 2rem;
    flex-wrap: wrap;
}

.nav {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.nav a {
    color: #333;
    text-decoration: none;
    padding: 0.5rem 0.8rem;
    border-radius: 4px;
    transition: all 0.3s;
    font-weight: 500;
    white-space: nowrap;
    font-size: 0.9rem;
}

.nav a:hover {
    background-color: #f48fb1;
    color: white;
}

/* PCでメニューが収まらない時の調整 */
@media (min-width: 769px) and (max-width: 1200px) {
    .header-inner {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .nav {
        justify-content: center;
        gap: 1rem;
    }
    
    .nav a {
        font-size: 0.85rem;
        padding: 0.4rem 0.6rem;
    }
}

@media (min-width: 1201px) {
    .nav {
        gap: 2rem;
    }
    
    .nav a {
        font-size: 1rem;
        padding: 0.5rem 0.5rem;
    }
}


img.image-left {
	float: left;
	width: 300px;
	height: auto;
	margin: 0 20px 20px 0;
}
img.image-right {
	float: right;
	width: 300px;
	height: auto;
	margin: 0 0 20px 20px;
}

@media (max-width: 480px) {
img.image-left {
	float: none;
	width: 90%;
	height: auto;
	margin: 10px auto;
}
img.image-right {
	float: none;
	width: 90%;
	height: auto;
	margin: 10px auto;
}
}


        /* メインコンテンツ */
        .main-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        }
        /* セクション */
        .section {
            background: white;
            border-radius: 8px;
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
			line-height: 1.7rem;
        }

        .section-title {
            font-size: 1.8rem;
            color: #f48fb1;
            margin-bottom: 1.5rem;
            text-align: center;
            position: relative;
            padding-bottom: 0.5rem;
        }

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






        /* トップに戻るボタン */
        .scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: #f48fb1;
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            font-size: 1.2rem;
            z-index: 1000;
        }

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

        .scroll-to-top:hover {
            background-color: #ec407a;
            transform: translateY(-2px);
        }

        /* フッター */
        .footer {
            background-color: #333;
            color: white;
            padding: 3rem 0 2rem;
            margin-top: 3rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .footer-main {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            color: #f48fb1;
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .footer-phone {
            background: #f48fb1;
            padding: 1.5rem;
            border-radius: 8px;
            text-align: center;
            margin-bottom: 1rem;
        }

        .footer-phone .reservation-text {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            font-weight: bold;
        }

        .footer-phone-number {
            color: white;
            text-decoration: none;
            font-size: 1.8rem;
            font-weight: bold;
            display: block;
        }

        .footer-phone-number:hover {
            text-decoration: underline;
        }

        .footer-nav {
            display: flex;
            justify-content: center;
            gap: 2rem;
            padding-top: 2rem;
            border-top: 1px solid #555;
        }

        .footer-nav a {
            color: white;
            text-decoration: none;
        }

        .footer-nav a:hover {
            color: #f48fb1;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 1rem;
            border-top: 1px solid #555;
            margin-top: 2rem;
            color: #999;
        }
/* フッター内のサービスリスト */
.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.footer-section li a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 0.2rem 0;
    transition: color 0.3s;
}

.footer-section li a:hover {
    color: #f48fb1;
    text-decoration: none;
}

/* より自然な見た目にする場合 */
.footer-section ul li {
    display: block;
    margin-bottom: 0.3rem;
}

.footer-section ul li:last-child {
    margin-bottom: 0;
}
        /* レスポンシブデザイン */
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }

            .nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: white;
                flex-direction: column;
                padding: 1rem;
                box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            }

            .nav.active {
                display: flex;
            }

            .nav a {
                padding: 0.8rem 1rem;
                border-bottom: 1px solid #f0f0f0;
            }

            .nav a:last-child {
                border-bottom: none;
            }

            .header-inner,
            .header-top-inner {
                padding: 0 1rem;
            }

            .main-content {
                padding: 1rem;
            }

            .section {
                padding: 1.5rem;
            }
            .footer-nav {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }

            .phone-info {
                flex-direction: column;
                gap: 0.5rem;
                text-align: center;
            }

            .header-top-inner {
                flex-direction: column;
                gap: 0.5rem;
            }
        }

        @media (max-width: 480px) {
            .section-title {
                font-size: 1.5rem;
            }

            .logo {
                width: 150px;
                height: 50px;
            }
        }


/* パンくずリスト */
.breadcrumb {
    background: #f8f9fa;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-item:hover {
    color: #f48fb1;
}

.breadcrumb-item.current {
    color: #f48fb1;
    font-weight: 500;
}

.breadcrumb-separator {
    margin: 0 0.8rem;
    color: #999;
    font-size: 0.8rem;
}

.breadcrumb-item i {
    font-size: 0.9rem;
}

/* ページヘッダー */
.page-header {
    background: linear-gradient(135deg, #f48fb1, #ec407a);
    color: white;
    padding: 3rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}


.page-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.page-title {
    margin: 0 0 1.5rem 0;
    font-weight: 300;
}

.title-main {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.title-sub {
    display: block;
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    opacity: 0.9;
    text-transform: uppercase;
}

.page-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .breadcrumb-inner {
        padding: 0 1rem;
        font-size: 0.8rem;
    }
    
    .breadcrumb-separator {
        margin: 0 0.5rem;
    }
    
    .page-header {
        padding: 2rem 0;
    }
    
    .page-header-inner {
        padding: 0 1rem;
    }
    
    .title-main {
        font-size: 2rem;
    }
    
    .title-sub {
        font-size: 1rem;
    }
    
    .page-description {
        font-size: 1rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {

    
    .breadcrumb-item i {
        font-size: 1rem;
    }
    
    .title-main {
        font-size: 1.8rem;
    }
    
    .title-sub {
        font-size: 0.9rem;
    }
    
    .page-description br {
        display: none;
    }
}



/* 公式LINE登録セクション - コンパクト版 */
.line-compact-section {
    background: linear-gradient(135deg, #00c300, #00b300);
    color: white;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 12px;
}

.line-compact-container {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.line-compact-content {
    flex: 2;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.line-compact-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.line-compact-text h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #ffeb3b;
}

.line-compact-text p {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    opacity: 0.9;
}

.compact-discount {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.compact-discount span {
    background: rgba(255,255,255,0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.line-compact-qr {
    flex: 1;
    text-align: center;
}

.compact-qr-code {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 8px;
    padding: 8px;
    margin: 0 auto 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.compact-qr-code img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.compact-line-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #00c300;
    color: white;
    padding: 0.6rem 1.2rem;
    text-decoration: none;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    transition: background 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.compact-line-btn:hover {
    background: #00a300;
    color: white;
    text-decoration: none;
}

.compact-line-btn i {
    font-size: 1rem;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .line-compact-container {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .line-compact-content {
        flex-direction: column;
        text-align: center;
    }
    
    .compact-discount {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .line-compact-section {
        padding: 1.5rem;
    }
    
    .line-compact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .compact-qr-code {
        width: 80px;
        height: 80px;
    }
    
    .compact-discount {
        flex-direction: column;
        gap: 0.5rem;
    }
}