@charset "UTF-8";

/*///////////////////// font-face 読み込み例 ///////////////////////////*/
/*Zen Maru Gothic 400*/
@font-face {
    font-family: "Zen Maru Gothic";
    src: url(/fonts/ZenMaruGothic-Regular.woff) format('woff');
    font-weight: 400;
    font-display: swap;
}
/*Zen Maru Gothic 500*/
@font-face {
    font-family: "Zen Maru Gothic";
    src: url(/fonts/ZenMaruGothic-Medium.woff) format('woff');
    font-weight: 500;
    font-display: swap;
}
/*Zen Maru Gothic 700*/
@font-face {
    font-family: "Zen Maru Gothic";
    src: url(/fonts/ZenMaruGothic-Bold.woff) format('woff');
    font-weight: 700;
    font-display: swap;
}

/* Kiwi Maru Regular */
@font-face {
    font-family: "Kiwi Maru";
    src: url(/fonts/KiwiMaru-Regular.ttf) format('truetype');
    font-weight: 400;
    font-display: swap;
}

/*///////////////////// font-face 読み込み例 ///////////////////////////*/

.org-header * {
    font-family: "Zen Maru Gothic", sans-serif;
}

.org-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 3;
    width: 100%;
    background-color: transparent;
    transition: background-color 0.3s ease;
}

.org-header.is-scrolled {
    background-color: #fff;
}

.org-header--sub {
    position: sticky;
    background-color: #fff;
}

.org-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    width: 100%;
    max-width: 1920px;
    min-height: 80px;
    margin: 0 auto;
    padding: 0 15px 0 30px;
    background-color: transparent;
}

.org-header--sub .org-header__inner,
.org-header.is-scrolled .org-header__inner {
    background-color: #fff;
}

.org-header__identity {
    flex-shrink: 0;
    min-width: 0;
}

.org-header__logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    text-decoration: none;
    color: inherit;
}

.org-header__logo {
    flex-shrink: 0;
    width: 159px;
    height: 55px;
    margin: 0;
    line-height: 0;
}

.org-header__logo img {
    display: block;
    width: 159px;
    height: 55px;
    object-fit: contain;
}

.org-header__brand {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
    justify-content: flex-end;
    flex-shrink: 0;
    min-width: 0;
}

.org-header__shop-name {
    margin: 0;
    color: #004680;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.org-header__company-name {
    margin: 0;
    color: #1f1f1f;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
}

.org-header__right {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 32px;
}

.org-header__gnavi {
    flex-shrink: 0;
}

.org-header__gnavi-list {
    display: flex;
    align-items: center;
    gap: 32px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.org-header__gnavi-item {
    margin: 0;
}

[class*="header__gnavi-link--"] {
    position: relative;
    display: inline-block;
    color: #1f1f1f;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
}

[class*="header__gnavi-link--"]::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 1px;
    background-color: currentColor;
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 0.3s ease;
}

[class*="header__gnavi-link--"]:hover {
    opacity: 1;
}

[class*="header__gnavi-link--"]:hover::after {
    transform: scaleX(1);
    transform-origin: left center;
}

[class*="header__contact-btn--"] {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 180px;
    height: 50px;
    border-radius: 9999px;
    --btn-hover-bg: #ffffff;
    background-color: #004680;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    isolation: isolate;
    box-sizing: border-box;
    border: 1px solid transparent;
    transition: color 0.25s ease, border-color 0.25s ease;
}

[class*="header__contact-btn--"]:hover {
    opacity: 1;
    color: #004680;
    border-color: currentColor;
    transition: color 0.25s ease 0.2s, border-color 0.25s ease 0.2s;
}

[class*="header__contact-btn--"]::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    z-index: 0;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    border-radius: inherit;
    background-color: var(--btn-hover-bg);
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 0.45s ease;
    backface-visibility: hidden;
}

[class*="header__contact-btn--"]:hover::before {
    transform: scaleX(1);
    transform-origin: left center;
}

.header__contact-icon--mail {
    position: relative;
    z-index: 1;
    display: block;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: currentColor;
    transition: color 0.25s ease;
}

[class*="header__contact-btn--"]:hover .header__contact-icon--mail {
    transition: color 0.25s ease 0.2s;
}

.header__contact-label--mail {
    position: relative;
    z-index: 1;
    display: block;
    transition: color 0.25s ease;
}

[class*="header__contact-btn--"]:hover .header__contact-label--mail {
    transition: color 0.25s ease 0.2s;
}
