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

body {
    font-family: 'Hiragino Kaku Gothic ProN', 'メイリオ', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

a {
    text-decoration: none;
    color: #1a0dab;
}

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

/* ヘッダー */
header {
    background: linear-gradient(to right, #1e0080, #4b0082);
    color: white;
    text-align: center;
    padding: 10px 0;
}

.header-title {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.logo-container {
    margin: 15px auto;
    max-width: 90%;
}

/* メインコンテンツ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.main-visual {
    background: url('../images/main-bg.jpg') no-repeat center center;
    background-size: cover;
    padding: 40px 20px;
    text-align: center;
    color: white;
    margin-bottom: 30px;
    border-radius: 5px;
    position: relative;
}

.main-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
}

.main-visual-content {
    position: relative;
    z-index: 1;
}

.main-title {
    font-size: 2rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.main-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

/* 利用方法セクション */
.how-to-use {
    background-color: white;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.section-title {
    font-size: 1.8rem;
    color: #4b0082;
    text-align: center;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, #1e0080, #4b0082);
}

.step-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 20px;
}

.step {
    flex-basis: calc(33.333% - 20px);
    margin-bottom: 30px;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: -15px;
    background-color: #4b0082;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.step-title {
    font-size: 1.2rem;
    color: #4b0082;
    margin-bottom: 10px;
    padding-left: 25px;
}

.step-description {
    font-size: 0.95rem;
}

/* 選ばれる理由セクション */
.reasons {
    background-color: white;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.reason-list {
    list-style-type: none;
}

.reason-item {
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
}

.reason-item::before {
    content: '•';
    position: absolute;
    left: 10px;
    color: #4b0082;
    font-size: 1.5rem;
}

.reason-title {
    font-size: 1.2rem;
    color: #4b0082;
    margin-bottom: 5px;
}

/* コンセプトセクション */
.concept {
    background-color: #4b0082;
    color: white;
    padding: 30px;
    border-radius: 5px;
    margin-bottom: 30px;
    text-align: center;
}

.concept-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.concept-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* 料金システムセクション */
.price-system {
    background-color: white;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.price-table th, .price-table td {
    padding: 15px;
    text-align: center;
    border: 1px solid #ddd;
}

.price-table th {
    background-color: #f2f2f2;
    font-weight: bold;
}

.price-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.price-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 15px;
}

/* 基本サービスセクション */
.basic-service {
    background-color: white;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.service-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 20px;
}

.service-item {
    flex-basis: calc(50% - 15px);
    margin-bottom: 15px;
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* オプションセクション */
.option-service {
    background-color: white;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.option-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 20px;
}

.option-item {
    flex-basis: calc(50% - 15px);
    margin-bottom: 15px;
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.option-price {
    font-weight: bold;
    color: #4b0082;
}

/* 店舗情報セクション */
.shop-info {
    background-color: white;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.info-table th, .info-table td {
    padding: 15px;
    border: 1px solid #ddd;
}

.info-table th {
    background-color: #f2f2f2;
    font-weight: bold;
    width: 30%;
    text-align: left;
}

/* 対応エリアセクション */
.area-info {
    background-color: white;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.area-list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
}

.area-item {
    flex-basis: calc(33.333% - 15px);
    margin: 0 7.5px 15px;
    background-color: #f9f9f9;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* 注意事項セクション */
.caution {
    background-color: #ffebee;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.caution-title {
    color: #c62828;
    text-align: center;
    margin-bottom: 20px;
}

.caution-list {
    list-style-type: none;
}

.caution-item {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.caution-item::before {
    content: '※';
    position: absolute;
    left: 10px;
    color: #c62828;
}

/* 口コミセクション */
.reviews {
    background-color: white;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.review-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 20px;
}

.review-card {
    flex-basis: calc(33.333% - 20px);
    margin-bottom: 30px;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.review-stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.review-text {
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.review-author {
    font-size: 0.9rem;
    text-align: right;
    color: #666;
}

/* CTA ボタン */
.cta-buttons {
    text-align: center;
    margin: 30px 0;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(to right, #1e0080, #4b0082);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

/* フッター */
footer {
    background: linear-gradient(to right, #1e0080, #4b0082);
    color: white;
    text-align: center;
    padding: 30px 0;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: white;
    margin: 0 15px;
    font-size: 0.9rem;
}

.footer-info {
    font-size: 0.8rem;
    margin-bottom: 20px;
}

.copyright {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* 電話ボタン（モバイル固定） */
.call-button {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #4b0082;
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 1.2rem;
    font-weight: bold;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.call-button a {
    color: white;
    display: block;
}

.call-icon {
    margin-right: 10px;
}

/* FAQセクション */
.faq {
    background-color: white;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.faq-container {
    margin-top: 20px;
}

.faq-item {
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.faq-question {
    font-size: 1.1rem;
    color: #4b0082;
    margin-bottom: 10px;
}

.faq-answer {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* 利用シーンセクション */
.usage-scenes {
    background-color: white;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.scene-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 20px;
}

.scene-item {
    flex-basis: calc(50% - 15px);
    margin-bottom: 30px;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.scene-title {
    font-size: 1.2rem;
    color: #4b0082;
    margin-bottom: 10px;
}

.scene-description {
    font-size: 0.95rem;
    line-height: 1.6;
}

.sub-section-title {
    font-size: 1.3rem;
    color: #4b0082;
    margin: 20px 0 10px;
}

/* レスポンシブ調整 */
@media (max-width: 768px) {
    .scene-item {
        flex-basis: 100%;
    }
    
    .faq-question {
        font-size: 1rem;
    }
    
    .call-button {
        display: block;
        padding: 12px;
    }
    
    .call-button a {
        font-size: 1.1rem;
    }
    
    .main-title {
        font-size: 1.4rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .concept-title {
        font-size: 1.4rem;
    }
    
    .step-container, .service-list, .option-list, .area-list, .review-container {
        flex-direction: column;
    }
    
    .step, .service-item, .option-item, .area-item, .review-card {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
}

/* アニメーション */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

/* SEO強化用追加スタイル */
.seo-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.highlight {
    color: #4b0082;
    font-weight: bold;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 10px 0;
    margin-bottom: 20px;
    list-style: none;
    font-size: 0.9rem;
}

.breadcrumb-item {
    display: flex;
}

.breadcrumb-item + .breadcrumb-item {
    padding-left: 8px;
}

.breadcrumb-item + .breadcrumb-item::before {
    display: inline-block;
    padding-right: 8px;
    content: ">";
    color: #6c757d;
}
