@charset "UTF-8";

@font-face {
    font-family: "Zen Kaku Gothic New";
    src: url(/fonts/ZenKakuGothicNew-Regular.woff2);
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: "Zen Kaku Gothic New";
    src: url(/fonts/ZenKakuGothicNew-Medium.woff2);
    font-weight: 500;
    font-display: swap;
}
@font-face {
    font-family: "Zen Kaku Gothic New";
    src: url(/fonts/ZenKakuGothicNew-Bold.woff2);
    font-weight: 700;
    font-display: swap;
}
@font-face {
    font-family: "Afacad Flux";
    src: url(/fonts/AfacadFlux-Regular.woff2);
    font-weight: 400;
    font-display: swap;
}
.l-header {
    padding: 9px 15px 10px 10px;
    z-index: 6;
    background: #FFF9FA;
}
.org-header {
    width: 100%;
    height: 70px;
    position: sticky;
    top: 0;
    left: 0;
    transition: .4s;
}
.scroll-fixed {
    background: transparent;
}
.org-header--top {
    position: fixed;
}
.header__logo img {
    max-width: 100%;
    width: 100%;
    max-height: 100%;
    height: 100%;
    object-fit: cover;
}
.header__inner {
    display: flex;
    margin: 0;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}
.header__logo {
    display: block;
    width: 171px;
    height: 50px;
}
.header__logo-link {
    width: 100%;
    height: 100%;
    display: flex;
}
.header__logo-link:hover {
    opacity: 1;
}
.header__right {
    display: flex;
    gap: 19px;
    align-items: center;
}
.header__navi-list {
    display: flex;
    gap: 20px;
}
.header__navi-item {
    position: relative;
}
.header__navi-link {
    color: #40331F;
    font-family: "Zen Kaku Gothic New";
    font-size: 15px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0.7px;
    display: flex;
    gap: 4px;
    align-items: center;
    position: relative;
}
.header__navi-link::after {
    content: "";
    position: absolute;
    background: #DE1F4B;
    width: 100%;
    height: 1px;
    left: 0;
    bottom: -3px;
    transform-origin: left top;
    transform: scale(0, 1);
    transition: transform .3s;
}
.header__navi-link:hover {
    opacity: 1;
}
.header__navi-link:hover::after {
    transform: scale(1, 1);
    transition: transform .3s;
}
.header__plus {
    width: 11px;
}
.js-pull-down-btn .header__plus::before {
    content: "";
    position: absolute;
    background: #DE1F4B;
    width: 11px;
    height: 1px;
    top: 7px;
    right: 0;
    transition: rotate .3s;
    rotate: 90deg;
}
.js-pull-down-btn .header__plus::after {
    content: "";
    background: #DE1F4B;
    position: absolute;
    width: 11px;
    height: 1px;
    transform: none;
    transform-origin: 0;
    top: 7px;
    right: 0px;
}
.is-pull-down-open .header__plus::before {
    transition: rotate .3s;
    rotate: 0deg;
}
.header-pull-down-menu {
    visibility: hidden;
    opacity: 0;
    transition: .4s;
    display: flex;
    flex-direction: column;
    gap: 1px;
    position: absolute;
    right: -36px;
    margin: auto;
    top: 30px;
}
.header-pull-down-menu.is-pull-down-open {
    visibility: visible;
    opacity: 1;
}
.pull__down-item {
    width: 150px;
    height: 41px;
}
.pull__down-link {
    color: #DE1F4B;
    font-family: "Zen Kaku Gothic New";
    font-size: 16px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0.8px;
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #FFF9FA;
}
.pull__down-link:hover {
    opacity: 1;
    color: #FFF;
    background: #DE1F4B;
}
.header__contact-list {
    display: flex;
    gap: 5px;
}
.header__contact-item {
    width: 118px;
    height: 40px;
}
[class*="header__contact-link--"] {
    border-radius: 9999px;
    color: #FFF;
    font-family: "Zen Kaku Gothic New";
    font-size: 15px;
    font-weight: 500;
    line-height: 100%;
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    padding-top: 12px;
}
.header__contact-link--reservation {
    background: #E88A4F;
}
.header__contact-link--mail {
    background: #DE1F4B;
}
.header__contact-link--reservation:hover {
    color: #E88A4F;
    background: #FFF;
    border: 1px solid #E88A4F;
    opacity: 1;
}
.header__contact-link--mail:hover {
    color: #DE1F4B;
    background: #FFF;
    border: 1px solid #DE1F4B;
    opacity: 1;
}
.l-contents .contact-card {
    top: 20px;
}
