@charset "UTF-8";

/*///////////////////// font-face 読み込み ///////////////////////////*/
/*Zen Kaku Gothic Antique 400*/
@font-face {
    font-family: 'Zen Kaku Gothic Antique';
    src: url(/fonts/ZenKakuGothicAntique-Regular.woff2);
    font-weight: 400;
    font-display: swap;
}
/*Zen Kaku Gothic Antique 500*/
@font-face {
    font-family: 'Zen Kaku Gothic Antique';
    src: url(/fonts/ZenKakuGothicAntique-Medium.woff2);
    font-weight: 500;
    font-display: swap;
}
/*Zen Kaku Gothic Antique 700*/
@font-face {
    font-family: 'Zen Kaku Gothic Antique';
    src: url(/fonts/ZenKakuGothicAntique-Bold.woff2);
    font-weight: 700;
    font-display: swap;
}
/*Raleway 700*/
@font-face {
    font-family: 'Raleway';
    src: url(/fonts/Raleway-Bold.ttf);
    font-weight: 700;
    font-display: swap;
}
/*///////////////////// font-face 読み込み ///////////////////////////*/

html {
    scroll-padding-top: 90px;
}

.org-header * {
    font-family: "Zen Kaku Gothic Antique", sans-serif;
}

.org-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: #fff;
    box-shadow: 0 3px 6px rgba(38, 50, 56, 0.18);
}
    .org-header__inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 80px;
        padding: 0 10px 0 20px;
    }
        .org-header__logo {
            margin: 0;
        }
            .org-header__logo-link {
                display: block;
                color: #504434;
                font-size: 24px;
                font-weight: 700;
                line-height: 1;
                letter-spacing: 0;
                text-decoration: none;
            }
            .org-header__logo-link:hover {
                opacity: 1;
            }
        .org-header__right {
            display: flex;
            align-items: center;
            gap: 23px;
            height: 100%;
            padding-block: 8px;
            box-sizing: border-box;
        }
            .org-header__nav {
                height: 100%;
            }
                .org-header__list {
                    display: flex;
                    align-items: center;
                    gap: 23px;
                    height: 100%;
                    margin: 0;
                    padding: 0;
                    list-style: none;
                }
                    .org-header__item,
                    .org-header__item--search,
                    .org-header__item--about {
                        display: flex;
                        align-items: center;
                        height: 100%;
                    }
                    .org-header__item--search,
                    .org-header__item--about {
                        position: relative;
                    }
                        [class*="org-header__link"] {
                            display: flex;
                            align-items: center;
                            gap: 8px;
                            color: #504434;
                            font-size: 16px;
                            font-weight: 700;
                            line-height: 1;
                            letter-spacing: 0.05em;
                            text-decoration: none;
                            white-space: nowrap;
                            position: relative;
                        }
                        [class*="org-header__link"]:hover {
                            opacity: 1;
                        }
                            .org-header__link--search::after {
                                content: "";
                                display: block;
                                margin: auto;
                                width: 12px;
                                height: 7px;
                                background: url(/images/top/icon_arrow--header.svg) no-repeat center center / contain;
                                transform: rotate(0deg);
                                transition: 0.4s;
                            }
                            .org-header__item--search:hover .org-header__link--search::after,
                            .org-header__item--about:hover .org-header__link--search::after {
                                transform: rotate(180deg);
                                transition: 0.4s;
                            }
                        .org-header__search-menu {
                            display: flex;
                            visibility: hidden;
                            position: absolute;
                            top: 50px;
                            left: 0;
                            z-index: 110;
                            flex-direction: column;
                            gap: 20px;
                            width: 361px;
                            padding: 20px;
                            background-color: #faf7f2;
                            border-radius: 12px;
                            box-sizing: border-box;
                            opacity: 0;
                            pointer-events: none;
                            transform: translateY(-8px);
                            transition:
                                opacity 0.4s ease,
                                transform 0.4s ease,
                                visibility 0s linear 0.4s;
                        }
                        .org-header__item--search:hover .org-header__search-menu,
                        .org-header__item--search:focus-within .org-header__search-menu {
                            visibility: visible;
                            opacity: 1;
                            pointer-events: auto;
                            transform: translateY(0);
                            transition-delay: 0s;
                        }
                            .org-header__search-group {
                                display: flex;
                                flex-direction: column;
                                gap: 8px;
                                width: 100%;
                            }
                                .org-header__search-ttl {
                                    margin: 0;
                                    color: #504434;
                                    font-size: 16px;
                                    font-weight: 400;
                                    line-height: 1;
                                    letter-spacing: 0.05em;
                                }
                                .org-header__search-list {
                                    display: flex;
                                    gap: 6px;
                                    width: 100%;
                                    margin: 0;
                                    padding: 8px 0 0;
                                    list-style: none;
                                    border-top: 1px solid #cfd8dc;
                                }
                                    .org-header__search-link {
                                        display: flex;
                                        align-items: center;
                                        justify-content: center;
                                        width: 103px;
                                        height: 30px;
                                        color: #504434;
                                        font-size: 12px;
                                        font-weight: 500;
                                        line-height: 1.5;
                                        letter-spacing: 0.05em;
                                        text-decoration: none;
                                        white-space: nowrap;
                                        background-color: #e0f4d8;
                                        border-radius: 9999px;
                                        box-sizing: border-box;
                                    }
                        .org-header__about-menu {
                            display: flex;
                            visibility: hidden;
                            position: absolute;
                            top: 50px;
                            left: 0;
                            z-index: 110;
                            flex-direction: column;
                            width: 202px;
                            padding: 24px 20px;
                            background-color: #faf7f2;
                            border-radius: 12px;
                            box-sizing: border-box;
                            opacity: 0;
                            pointer-events: none;
                            transform: translateY(-8px);
                            transition:
                                opacity 0.4s ease,
                                transform 0.4s ease,
                                visibility 0s linear 0.4s;
                        }
                        .org-header__item--about:hover .org-header__about-menu,
                        .org-header__item--about:focus-within .org-header__about-menu {
                            visibility: visible;
                            opacity: 1;
                            pointer-events: auto;
                            transform: translateY(0);
                            transition-delay: 0s;
                        }
                            .org-header__about-list {
                                display: flex;
                                flex-direction: column;
                                gap: 16px;
                                width: 100%;
                                margin: 0;
                                padding: 0;
                                list-style: none;
                            }
                                .org-header__about-item + .org-header__about-item {
                                    padding-top: 20px;
                                    border-top: 1px solid #cfd8dc;
                                }
                                    .org-header__about-link {
                                        display: flex;
                                        align-items: center;
                                        justify-content: space-between;
                                        gap: 8px;
                                        width: 100%;
                                        padding: 0 8px;
                                        color: #504434;
                                        font-size: 16px;
                                        font-weight: 700;
                                        line-height: 1;
                                        letter-spacing: 0.05em;
                                        text-decoration: none;
                                        box-sizing: border-box;
                                    }
                                    .org-header__about-link:hover {
                                        opacity: 1;
                                    }
                                        .org-header__about-txt {
                                            position: relative;
                                            flex: 0 0 auto;
                                        }
                                        .org-header__about-txt::after {
                                            position: absolute;
                                            right: 0;
                                            bottom: -5px;
                                            left: 0;
                                            width: 100%;
                                            height: 2px;
                                            content: "";
                                            background-color: currentColor;
                                            transition: transform 0.4s ease;
                                            transform: scaleX(0);
                                            transform-origin: left center;
                                        }
                                        .org-header__about-link:hover .org-header__about-txt::after {
                                            transform: scaleX(1);
                                        }
                                        .org-header__about-arrow {
                                            display: block;
                                            flex-shrink: 0;
                                            width: 5px;
                                            height: 8px;
                                            background: url(/images/top/icon_arrow--green.svg) no-repeat center center / contain;
                                        }
            .org-header__utility {
                display: flex;
                align-items: flex-start;
                gap: 4px;
                margin: 0;
                padding: 0;
                list-style: none;
            }
                [class*="org-header__utility-btn"] {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    width: 50px;
                    height: 50px;
                    padding: 0 5px;
                    font-size: 12px;
                    font-weight: 700;
                    line-height: 1.2;
                    letter-spacing: 0.05em;
                    text-align: center;
                    text-decoration: none;
                    border-radius: 8px;
                    box-sizing: border-box;
                }
                .org-header__utility-btn--history {
                    color: #fff;
                    background-color: #70ba4d;
                    border: 1px solid #70ba4d;
                }
                .org-header__utility-btn--favorite {
                    color: #fff;
                    background-color: #b93030;
                    border: 1px solid #b93030;
                }
                .org-header__utility-btn--member {
                    color: #fff;
                    background-color: #504434;
                    border: 1px solid #504434;
                }
                .org-header__utility-btn--login {
                    color: #504434;
                    background-color: #fff8db;
                }

/*//////////////////// hover（共通クラス） ////////////////////*/
/* 画像付き：枠内で少し拡大 */
.org-img-hover {
    color: inherit;
    text-decoration: none;
}

.org-img-hover__media {
    overflow: hidden;
}

.org-img-hover__media img,
.org-img-hover > img {
    transition: transform 0.4s ease;
}

.org-img-hover:hover {
    opacity: 1;
    color: inherit;
    text-decoration: none;
}

.org-img-hover:hover .org-img-hover__media img,
.org-img-hover:hover > img {
    transform: scale(1.05);
}

/* テキストリンク：下線が左から */
.org-txt-hover {
    position: relative;
    text-decoration: none;
}

.org-txt-hover::after {
    position: absolute;
    right: 0;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    content: "";
    background-color: currentColor;
    transition: transform 0.4s ease;
    transform: scaleX(0);
    transform-origin: left center;
}

.org-txt-hover:hover {
    opacity: 1;
    text-decoration: none;
}

.org-txt-hover:hover::after {
    transform: scaleX(1);
}

/* テキストボタン：色反転 */
.org-btn-hover {
    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease,
        opacity 0.3s ease;
    --org-btn-hover-fg: #fff;
    --org-btn-hover-bg: #504434;
}

.org-btn-hover::after {
    transition: filter 0.3s ease;
}

.org-btn-hover:hover {
    color: var(--org-btn-hover-fg);
    text-decoration: none;
    background-color: var(--org-btn-hover-bg);
    opacity: 1;
}

.org-btn-hover:hover::after {
    filter: invert(1);
}

.org-header__search-link.org-btn-hover {
    --org-btn-hover-fg: #fff;
    --org-btn-hover-bg: #70ba4d;
}

.org-header__utility-btn--history.org-btn-hover {
    --org-btn-hover-fg: #70ba4d;
    --org-btn-hover-bg: #fff;
}

.org-header__utility-btn--favorite.org-btn-hover {
    --org-btn-hover-fg: #b93030;
    --org-btn-hover-bg: #fff;
}

.org-header__utility-btn--member.org-btn-hover {
    --org-btn-hover-fg: #504434;
    --org-btn-hover-bg: #fff;
}

.org-header__utility-btn--login.org-btn-hover {
    --org-btn-hover-fg: #fff;
    --org-btn-hover-bg: #504434;
}
