/* ========================================
   ページタイトルセクション
======================================== */
.page-title-section {
    width: 100%;
    height: 300px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 50px;
}

.page-title-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/hedding-bg.png');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.page-title-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

.page-title-img-left,
.page-title-img-right {
    flex: 0 0 200px;
}

.page-title-img-left img,
.page-title-img-right img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

.page-title-text {
    text-align: center;
    flex: 1;
    max-width: 600px;
}

.page-title-english {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.page-title-english::before,
.page-title-english::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: white;
    max-width: 100px;
}

.page-title-english span {
    color: white;
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.page-title-japanese {
    color: #333;
    font-size: 32px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.page-title-japanese .highlight {
    font-size: 48px;
}

/* ハイライトカラー3種類 */
.page-title-japanese .highlight-blue {
    color: #1A84FF;
}

.page-title-japanese .highlight-yellow {
    color: #FABF00;
}

.page-title-japanese .highlight-purple {
    color: #A37FB6;
}

/* ========================================
   料金表セクション
======================================== */
.price-section {
    background-color: white;
    border-radius: 10px;
    padding: 40px;
    margin-bottom: 40px;
}

.price-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 60px;
    margin-bottom: 30px;
}

.price-item {
    display: flex;
    align-items: baseline;
    gap: 10px;
    position: relative;
    padding-left: 30px;
}

.price-item::before {
    content: '●';
    color: #B53925;
    position: absolute;
    left: 0;
    font-size: 18px;
}

.price-label {
    font-size: 18px;
    font-weight: 500;
    color: #333;
}

.price-value {
    font-size: 18px;
    color: #333;
}

.price-subsection {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.price-subsection ul {
    list-style: none;
    padding-left: 50px;
}

.price-subsection li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 16px;
    color: #333;
}

.price-subsection li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #333;
}

.price-note {
    margin-top: 30px;
    padding: 20px;
    background-color: #FFF3E0;
    border-left: 4px solid #FABF00;
    line-height: 1.8;
    color: #333;
}

.price-note p {
    margin-bottom: 5px;
}

/* ========================================
   ビフォーアフター画像セクション
======================================== */
.gallery-section {
    margin-top: 60px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.gallery-item {
    text-align: center;
}

.gallery-item .image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 のアスペクト比 (9/16 = 0.5625) */
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-bottom: 15px;
    background-color: #f5f5f5;
}

.gallery-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* 画像を枠内に収める（切り抜き） */
    /* object-fit: contain; を使用すると画像全体を表示（余白あり） */
}

.gallery-caption {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

/* ========================================
   画像横タイプセクション
======================================== */
.service-horizontal-section {
    background-color: white;
    border-radius: 10px;
    padding: 40px;
    margin-top: 40px;
}

.service-horizontal-content {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.service-horizontal-list {
    flex: 1;
}

.service-horizontal-images {
    flex: 0 0 400px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-horizontal-images img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.service-horizontal-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

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

.service-horizontal-item::before {
    content: '●';
    color: #B53925;
    font-size: 20px;
    flex-shrink: 0;
}

.service-horizontal-label {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    line-height: 1.6;
}

/* ========================================
   レスポンシブ対応
======================================== */
@media (max-width: 768px) {
    .page-title-section {
        height: 250px;
    }

    .page-title-content {
        gap: 30px;
    }

    .page-title-img-left,
    .page-title-img-right {
        flex: 0 0 120px;
    }

    .page-title-english span {
        font-size: 18px;
    }

    .page-title-japanese {
        font-size: 24px;
    }

    .page-title-japanese .highlight {
        font-size: 36px;
    }

    .price-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-horizontal-content {
        flex-direction: column;
        gap: 40px;
    }

    .service-horizontal-images {
        flex: 1;
        width: 100%;
    }

    .service-horizontal-list {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .page-title-img-left,
    .page-title-img-right {
        display: none;
    }

    .page-title-english span {
        font-size: 16px;
    }

    .page-title-japanese {
        font-size: 20px;
    }

    .page-title-japanese .highlight {
        font-size: 28px;
    }

    .price-section {
        padding: 20px;
    }

    .price-subsection ul {
        padding-left: 30px;
    }

    .service-horizontal-section {
        padding: 20px;
    }

    .service-horizontal-item {
        padding: 12px 0;
    }

    .service-horizontal-label {
        font-size: 16px;
    }
}