@charset "UTF-8";

/*///////////////////// font-face 読み込み例 ///////////////////////////*/
@font-face {
    font-family: 'Zen Kaku Gothic New';
    src: url(/fonts/ZenKakuGothicNew-Regular.woff2);
    font-weight: 400;
    font-display: swap;
}
/*Zen Kaku Gothic New 500*/
@font-face {
    font-family: 'Zen Kaku Gothic New';
    src: url(/fonts/ZenKakuGothicNew-Medium.woff2);
    font-weight: 500;
    font-display: swap;
}

/*Jost */
@font-face {
    font-family: 'Allura';
    src: url(/fonts/Allura-Regular.ttf);
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Shippori Mincho';
    src: url(/fonts/ShipporiMincho-Regular.ttf);
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Shippori Mincho';
    src: url(/fonts/ShipporiMincho-Medium.ttf);
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'Shippori Mincho';
    src: url(/fonts/ShipporiMincho-Bold.ttf);
    font-weight: 700;
    font-display: swap;
}

/*///////////////////// header ///////////////////////////*/
.l-header * {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    box-sizing: border-box;
    color: #282828;
}
/*///////////////////// font-face 読み込み例 ///////////////////////////*/
.l-header {
    z-index: 7;
    position: relative;
}
.l-header a:hover {
    opacity: 1;
}
.header__inner {
    width: 100%;
    height: 87px;
    margin: 0 auto;
    padding: 0 30px;
    align-items: center;
}
.header__logo {
    margin-bottom: 5px;
}
.header__logo img {
    max-width: 420px;
    max-height: 35px;
}
.logo__text {
    color: #282828;
    font-size: 12px;
}
.header__left {
    display: block;
}

.header__link__list {
    display: flex;
    align-items: center;
    gap: 0 26px;
}
.heder_link_item a,
.header-nav__link {
    /* position: relative; */
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
}
.header-nav__link:hover {
    color: #282828;
}
.heder_link_item a:before {
    background: #282828;
    content: '';
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: -5px;
    transform-origin: center top;
    transform: scale(0, 1);
    transition: transform .3s;
}
    .heder_link_item a:hover:before {
        transform-origin: center top;
        transform: scale(1, 1);
    }

.heder_link_item {
    position: relative;
}
.header_mega_menu {
    position: absolute;
    top: 87px; /* 親のボタンの下に表示 */
    right: 0;
    width: 100%; /* 画面幅いっぱい */
    background: url(/images/top/mega_menu_bg.webp) center top / cover no-repeat;
    padding: 40px 0;
    visibility: hidden;
    opacity: 0;
    transition: opacity .3s ease;
    z-index: 10;
}

.header_drop_list {
    display: flex;
    justify-content: center;
    gap: 0 20px;
    width: 1140px;
    margin: 0 auto;
}

.header_drop_item a img {
    display: block;
    height: auto;
}
.header_mega_menu.is-active {
    opacity: 1;
    visibility: visible;
}
.header_drop_item a:hover {
    opacity: .8;
}