/* ===== aboutページ固有のスタイル ===== */

/* ページタイトルセクション - 背景画像のみ */
.page-title__bg {
    background: url('../images/about-bg.jpg') no-repeat center;
}

.page-title__bg::before {
    background-color: rgba(0, 0, 0, 0.5);
}

/* パンくずリストのスタイルはstyle.cssに統一されました */

/* コンセプトセクション */
.concept {
    padding: var(--spacing-2xl) 0;
}

.concept__content {
    max-width: 800px;
    margin: 0 auto;
}

.concept__text {
    line-height: 1.8;
    font-size: var(--font-md);
}

/* コンセプトセクションのヘッダー特別スタイル */
.concept-header {
    position: relative;
    max-width: 800px;
    background-color: #fff;
    padding: 40px 20px;
    margin: 30px auto 30px;
    border: 1px solid #f5f5f5;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.concept-header::before,
.concept-header::after {
    display: none;
}

.corner-diamond {
    position: absolute;
    width: 100px;
    height: 60px;
    background-color: var(--color-main);
    opacity: 0.2;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    z-index: -1;
}

.corner-diamond--left {
    top: -30px;
    left: -50px;
    transform: rotate(45deg);
}

.corner-diamond--right {
    bottom: -30px;
    right: -50px;
    transform: rotate(45deg);
}

.concept-header .section-header__title {
    position: relative;
    z-index: 1;
}

.concept-header .section-header__subtitle {
    position: relative;
    z-index: 1;
}

/* グラデーション背景付きセクションヘッダー */
.concept .section-header__title {
    font-size: var(--font-3xl);
    margin-bottom: 30px;
}

.section-header__title {
    font-size: var(--font-3xl);
}

/* グラデーション背景スタイルはstyle.cssに統一 */

/* サービス詳細セクション */
.service-detail {
    padding: var(--spacing-2xl) 0;
}

.service-detail.cleaning {
    /* background-color: rgba(220, 0, 12, 0.05); */
}

.service-detail.tidying {
    background-color: var(--color-white);
}

.service-detail__content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.service-detail__image {
    flex: 0 0 50%;
}

.service-detail__image img {
    width: 100%;
    height: auto;
}

.service-detail__text {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail__catchphrase {
    font-size: var(--font-2xl);
    color: var(--color-main);
    margin-bottom: var(--spacing-md);
    font-weight: bold;
}

/* 特徴カード */
.feature-cards {
    margin-top: var(--spacing-2xl);
}

.feature-cards__heading {
    font-size: var(--font-2xl);
    text-align: center;
    margin-bottom: var(--spacing-xl);
    position: relative;
    padding-bottom: var(--spacing-md);
}

.feature-cards__heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--color-main);
}

.feature-cards__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.feature-card {
    background-color: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card__image {
    height: 200px;
    overflow: hidden;
}

.feature-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-card__image img {
    transform: scale(1.05);
}

.feature-card__title {
    padding: var(--spacing-md) var(--spacing-md) 0;
    font-size: var(--font-lg);
    font-weight: bold;
    color: var(--color-main);
}

.feature-card__text {
    padding: var(--spacing-sm) var(--spacing-md) var(--spacing-md);
    font-size: var(--font-sm);
    line-height: 1.6;
}

/* レスポンシブ対応 */
@media (max-width: 1200px) {
    .feature-cards__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .page-title__heading {
        font-size: var(--font-4xl);
    }

    .service-detail__content {
        flex-direction: column;
    }

    .service-detail__image,
    .service-detail__text {
        flex: 0 0 100%;
    }
}

@media (max-width: 768px) {
    .page-title__bg {
        height: 200px;
    }

    .page-title__heading {
        font-size: var(--font-3xl);
    }

    .page-title__subheading {
        font-size: var(--font-lg);
    }

    .feature-cards__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .page-title__bg {
        height: 150px;
    }

    .page-title__heading {
        font-size: var(--font-2xl);
    }


    .concept__text {
        font-size: var(--font-sm);
    }

    .service-detail__catchphrase {
        font-size: var(--font-xl);
    }
}