/*
Top Menu Section Styles for Beauty Clinic Theme
美容クリニックテーマ - 私たちについて　メニューセクション専用スタイル
*/

.subtitle-explanation {
    margin: 40px 0;
}

.about-text {
    padding-left: 0;
    font-family: 'Shippori Mincho', serif;
    font-size: 14px;
    line-height: 1.8;
}

/* 特徴セクション */
.feature-section {
    padding: 60px 0;
    background: #DCCC94;
    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 #DCCC94;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.feature-main-title {
    font-family: 'Shippori Mincho', serif;
    font-size: 14px;
    font-weight: 700;
    color: #868686;
    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: #DCCC94;
}

.feature-sub-text {
    font-family: 'Shippori Mincho', serif;
    font-size: 12px;
    font-weight: 400;
    color: #868686;
    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: #DCCC94;
    letter-spacing: 0.1em;
    margin-bottom: 40px;
    margin-top: 0;
    text-align: center;
}

.store-info-item {
    display: flex;
    border-bottom: 1px solid #DCCC94;
    min-height: 50px;
    align-items: center;
}

.store-info-label {
    color: #868686;
    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: #868686;
    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;
}

.access-image-1.mobile {
    width: 100%;
    text-align: right;
    margin: 25px 0;
    display: block;
}

.access-image-1.pc {
    display: none;
}

.access-image-2 {
    display: flex;
    align-items: flex-end;
    width: 100%;
}

/* お問い合わせセクション */
.reservation-text {
    padding-left: 0;
    letter-spacing: 0.1em;
}

@media screen and (min-width: 960px) {
	/* 960px以上に適用されるCSS（PC用） */
    .about-text {
        font-size: 24px;
        grid-column: 1;
        grid-row: 1;
        padding-left: 0;
        margin-bottom: 0;
        align-self: start;
    }

    .subtitle-explanation {
        padding: 40px 0;
    }

    .subtitle-text {
        display: grid !important;
        grid-template-columns: 1.4fr 1fr;
        grid-template-rows: auto auto;
        gap: 30px 40px;
        max-width: 1200px;
        margin: 0 auto;
        min-height: 500px;
    }

    .about-image-1 {
        grid-area: 1 / 2 / 3 / 3;
        width: 100%;
        text-align: left;
        padding-right: 0;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .about-image-2 {
        grid-area: 2 / 1 / 3 / 3;
        width: 100%;
        padding-left: 0;
        margin: 0;
        align-self: end;
        position: relative;
        display: block;
    }

    .about-image-1 img, 
    .about-image-2 img {
        width: 100%;
        height: auto;
        max-width: 400px;
    }

    .section-sub-title.section-sub-title.white,
    .section-sub-title.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;
    }

    .access-img-area {
        display: flex;
        gap: 70px;
        justify-content: center;
        padding: 50px 0;
    }

    .access-image-1.mobile {
        display: none;
    }

    .access-image-1.pc {
        display: block;
    }

    .access-image-1.pc img {
        width: 425px;
        height: auto;
        margin-top: 20px;
    }

    .access-image-2 img {
        width: 425px;
        height: auto;
        margin-top: 90px;
    }
}