/*
Top Menu Section Styles for Beauty Clinic Theme
美容クリニックテーマ - 私たちについて　メニューセクション専用スタイル（水色テーマ #49bfd8）
*/

.subtitle-explanation {
    margin: 40px 0;
}

.about-text {
    padding-left: 0;
    font-family: 'Shippori Mincho', serif;
    font-size: 14px;
    line-height: 1.8;
    color: #333333 !important;
}

/* モバイル版 - 画像配置 */
.subtitle-text {
    position: relative;
}

/* ABOUT画像スライダー（モバイル版） */
.about-image-1 {
    width: 90%;
    margin: 0 auto;
    margin-bottom: 30px;
    z-index: 2;
    position: relative;
}

.about-image-1 .about-slide-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease, opacity 1.5s ease;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.about-image-1 .about-slide-image:first-child {
    position: relative; /* 最初の画像は高さを確保 */
}

.about-image-1 .about-slide-image.active {
    opacity: 1;
    z-index: 2;
}

.about-image-1 .about-slide-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.about-image-2 {
    width: 85%;
    padding-left: 7%;
    position: relative;
    z-index: 1;
}

.about-image-2 img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-image-2 img:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

/* 特徴セクション */
.feature-section {
    padding: 60px 0;
    background: #49bfd8; /* 水色に変更 */
    margin: 0 calc(50% - 50vw);
}

.section-sub-title.white {
    font-family: 'Shippori Mincho', serif;
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 0.1em;
    margin-bottom: 40px;
    margin-top: 0;
    text-align: center;
}

.features-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 400px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-card {
    background: #FFFFFF;
    margin: 0 7%;
    padding: 18px 17px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #49bfd8; /* 水色に変更 */
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(73, 191, 216, 0.2); /* 水色の影に変更 */
}

.feature-main-title {
    font-family: 'Shippori Mincho', serif;
    font-size: 14px;
    font-weight: 700;
    color: #333333 !important;
    letter-spacing: 0.05em;
    margin-bottom: 7px;
    margin-top: 0;
    position: relative;
    padding-bottom: 10px;
}

.feature-main-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 1px;
    background: #49bfd8; /* 水色に変更 */
}

.feature-sub-text {
    font-family: 'Shippori Mincho', serif;
    font-size: 12px;
    font-weight: 400;
    color: #333333 !important;
    letter-spacing: 0.05em;
    line-height: 1.6;
    margin: 0;
}

/* 店舗概要セクション */
.store-info-section {
    margin: 80px 0 0 0;
}

.section-sub-title.gold {
    font-family: 'Shippori Mincho', serif;
    font-size: 16px;
    font-weight: 700;
    color: #49bfd8; /* 水色に変更 */
    letter-spacing: 0.1em;
    margin-bottom: 40px;
    margin-top: 0;
    text-align: center;
}

.store-info-item {
    display: flex;
    border-bottom: 1px solid #49bfd8; /* 水色に変更 */
    min-height: 50px;
    align-items: center;
}

.store-info-label {
    color: #333333 !important;
    font-family: 'Shippori Mincho', serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding: 15px 12px;
    width: 100px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.store-info-value {
    font-family: 'Shippori Mincho', serif;
    font-size: 12px;
    font-weight: 500;
    color: #333333 !important;
    letter-spacing: 0.05em;
    line-height: 1.6;
    padding: 15px;
    flex-grow: 1;
}

/* アクセスセクション */
.access-section {
    margin: 80px 0 0 0;
}

.access-content {
    /* コンテンツ全体のレイアウト */
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.access-map {
    /* GoogleMap iframeのコンテナ */
    overflow: hidden;
}

.access-map iframe {
    /* iframe自体のスタイル */
    width: 100%;
    height: 200px;
    border: none;
}

/* お問い合わせセクション */
.reservation-text {
    padding-left: 0;
    letter-spacing: 0.1em;
}

@media screen and (min-width: 960px) {
    /* 960px以上に適用されるCSS（PC用） */
    
    /* 私たちについて - PC版（TOPページと同じ70%縮小版） */
    .subtitle-explanation {
        padding: 70px 0 70px 0;
        margin-bottom: 0;
    }

    .about-text {
        font-size: 14px;
        padding: 0;
        line-height: 2.2;
        padding-top: 70px;
    }

    .subtitle-text {
        display: grid !important;
        grid-template-columns: 55% 45%;
        gap: 0 28px;
        max-width: 980px;
        margin: 0 auto;
        align-items: start;
    }
    
    .subtitle-text .about-text {
        grid-column: 2 / 3;
        grid-row: 1;
        padding-left: 0;
        margin-bottom: 28px;
    }
    
    /* 画像1（メインビジュアル） - 左側全体を占める */
    .subtitle-text .about-image-1 {
        grid-column: 1 / 2;
        grid-row: 1 / 4;
        width: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        z-index: 1;
        position: relative;
    }
    
    .subtitle-text .about-image-1 .about-slide-image {
        width: 100%;
        height: auto;
        max-width: 100%;
        border-radius: 8px;
        box-shadow: 0 11px 34px rgba(0, 0, 0, 0.15);
    }

    .subtitle-text .about-image-1 .about-slide-image:hover {
        transform: translateY(-6px);
        box-shadow: 0 14px 42px rgba(0, 0, 0, 0.2);
    }
    
    /* 画像2（サブビジュアル） - 右側、テキストの下 */
    .subtitle-text .about-image-2 {
        grid-column: 2 / 3;
        grid-row: 2;
        width: 100%;
        padding: 0;
        margin: 0;
        margin-bottom: 21px;
        position: relative;
        z-index: 2;
    }
    
    .subtitle-text .about-image-2 img {
        width: 100%;
        max-width: 280px;
        height: auto;
        border-radius: 8px;
        box-shadow: 0 11px 34px rgba(0, 0, 0, 0.15);
    }

    .subtitle-text .about-image-2 img:hover {
        transform: translateY(-6px);
        box-shadow: 0 14px 42px rgba(0, 0, 0, 0.2);
    }

    .section-sub-title.white,
    .section-sub-title.gold {
        font-size: 32px;
    }

    .features-cards {
        max-width: 80%;
        gap: 30px;
    }

    .feature-card {
        padding: 25px 40px;
    }

    .feature-main-title {
        font-size: 24px;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .feature-sub-text {
        font-size: 20px;
    }
    
    .store-info-table {
        width: 80%;
        margin: 0 auto;
    }

    .store-info-label {
        font-size: 20px;
        width: 30%;
    }

    .store-info-value {
        font-size: 20px;
        line-height: 2.5;
    }

    .access-content {
        max-width: 80%;
    }

    .access-map iframe {
        height: 472px;
    }
}

/* 大画面PC（70%縮小版） */
@media screen and (min-width: 1400px) {
    /* ABOUT US - 大画面PC */
    .subtitle-text {
        max-width: 1120px;
    }

    .subtitle-text .about-image-2 img {
        max-width: 315px;
    }
}