@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/

/* カテゴリページ アイキャッチ画像の切り替え */
.p-termHead__thumbImg--sp {
    display: none;
}

.l-topTitleArea__img--sp {
    display: none;
}

@media (max-width: 768px) {
    .p-termHead__thumbImg--pc {
        display: none;
    }

    .p-termHead__thumbImg--sp {
        display: block;
    }

    .l-topTitleArea__img--pc {
        display: none;
    }

    .l-topTitleArea__img--sp {
        display: block;
    }
}

/* 子カテゴリ一覧ブロック */
.child-categories-block {
    margin: 40px 0;
}

.child-categories-block__title {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    color: #c44a2c;
    font-family: serif;
}

.child-categories-block__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 0 auto;
    max-width: 1200px;
}

.child-categories-block__item {
    display: block;
    text-decoration: none;
    color: inherit;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.child-categories-block__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.child-categories-block__item-inner {
    background: #f5f5f5;
    padding: 0;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 300px;
    overflow: hidden;
}

.child-categories-block__image {
    width: 100px;
    height: 100px;
    margin: 30px auto 20px;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.child-categories-block__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.child-categories-block__name {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
    padding: 15px 20px;
    color: #fff;
    font-family: serif;
    background: #b19a5d;
    width: 100%;
}

.child-categories-block__desc {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    padding: 0 20px 20px;
    color: #666;
    text-align: left;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .child-categories-block__title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .child-categories-block__grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .child-categories-block__item-inner {
        min-height: 250px;
        padding: 0;
    }

    .child-categories-block__image {
        width: 100px;
        height: 100px;
    }

    .child-categories-block__name {
        font-size: 16px;
    }
}
