@media screen and (min-width: 768px) {
    .wrap.has-search-form {
        padding-top: 197px;
    }
}

.wrap.is-fixed-search {
    padding-top: 142px;
}

.wrap.is-fixed-search .searchKeywordForm {
    width: 100%;
    position: fixed;
    left: 0;
    top: 58px;
    z-index: 99;
}

.headerWrap {
    position: relative;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
}

@media screen and (min-width: 768px) {
    .headerWrap {
        position: inherit;
    }
}

.headerFlexBox {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 10px 20px;
    width: 100%;
    background-color: var(--white);
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
}

.headerFlexBox::-webkit-scrollbar {
    display: none;
    width: 0;
}

@media screen and (min-width: 768px) {
    .headerFlexBox {
        justify-content: space-between;
        padding: 30px 30px 26px;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 99;
    }
}

.headerFlexBox .logo {
    width: 80px;
}

@media screen and (min-width: 768px) {
    .headerFlexBox .logo {
        width: 110px;
    }
}

.headerFlexBox .logo img {
    width: 100%;
}

@media screen and (min-width: 768px) {
    .headerFlexBox .rightGroup {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
}

.headerFlexBox .naviBox {
    display: none;
    overflow-x: auto;
    white-space: nowrap;
    text-align: right;
    overflow: auto;
}

@media screen and (min-width: 768px) {
    .headerFlexBox .naviBox {
        display: block;
    }
}

.headerFlexBox .naviBox ul {
    display: inline-flex;
    padding: 0 22px;
}

.headerFlexBox .naviBox ul>li {
    flex-shrink: 0;
}

.headerFlexBox .naviBox ul>li+li {
    margin-left: 30px;
}

.headerFlexBox .naviBox ul>li>a,
.headerFlexBox .naviBox ul>li>button {
    display: block;
    font-size: 19px;
    font-weight: 700;
}

.headerFlexBox .searchBox {
    display: none;
    padding: 15px 20px 22px;
    width: 100%;
    background-color: var(--white);
    position: absolute;
    top: 56px;
    left: 0;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

@media screen and (min-width: 768px) {
    .headerFlexBox .searchBox {
        padding: 0;
        max-width: 674px;
        position: absolute;
        top: 50%;
        left: auto;
        right: 280px;
        transform: translateY(-50%);
    }
}

.headerFlexBox .searchBox.visible {
    display: block;
    z-index: 2;
    opacity: 1;
}

.headerFlexBox .searchBoxInner {
    display: flex;
    border: 1px solid #CCCCCC;
    border-radius: 20px;
    position: relative;
}

@media screen and (min-width: 768px) {
    .headerFlexBox .searchBoxInner {
        border-radius: 28px;
    }
}

.headerFlexBox .searchBoxInner.open {
    border-radius: 20px 20px 20px 0;
}

.headerFlexBox .searchBoxInner.open>.filterBox {
    border-radius: 20px 0 0 0;
}

.headerFlexBox .filterBox {
    background-color: #F7F7F7;
    border-right: 1px solid #CCCCCC;
    border-radius: 20px 0 0 20px;
    position: relative;
}

@media screen and (min-width: 768px) {
    .headerFlexBox .filterBox {
        border-radius: 26px 0 0 26px;
    }
}

.headerFlexBox .filterBox.visible {
    border-radius: 20px 0 0 0;
}

@media screen and (min-width: 768px) {
    .headerFlexBox .filterBox.visible {
        border-radius: 26px 0 0 0;
    }
}

.headerFlexBox .filterBox.visible .filterSelector {
    display: block;
    opacity: 1;
}

.headerFlexBox .selectedItem {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 130px;
    height: 40px;
    font-size: 13px;
    font-weight: 700;
    background-color: transparent;
    position: relative;
}

@media screen and (min-width: 768px) {
    .headerFlexBox .selectedItem {
        width: 184px;
        height: 52px;
        font-size: 18px;
    }
}

.headerFlexBox .selectedItem::after {
    content: "";
    display: block;
    width: 28px;
    height: 28px;
    background-image: url(/images/common/icon_arrow_select_button.svg);
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: contain;
    position: absolute;
    right: -3px;
    top: 50%;
    transform: translateY(-50%);
}

@media screen and (min-width: 768px) {
    .headerFlexBox .selectedItem::after {
        right: 0;
    }
}

.headerFlexBox .filterSelector {
    display: none;
    opacity: 0;
    width: 100%;
    text-align: center;
    border-right: 1px solid #CCCCCC;
    background-color: var(--white);
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    z-index: 1;
    transition: opacity 0.3s ease;
}

.headerFlexBox .filterSelector.visible {
    display: block;
    opacity: 1;
}

.headerFlexBox .filterSelector .item {
    padding: 5px 0;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

@media screen and (min-width: 768px) {
    .headerFlexBox .filterSelector .item {
        padding: 13px 0;
        font-size: 18px;
    }
}

.headerFlexBox .filterSelector .item:not(:first-child) {
    border-top: 1px solid #EAE7E7;
}

.headerFlexBox .filterSelector .item:hover {
    color: var(--orange);
}

.headerFlexBox .filterSelector .item.selected {
    color: var(--white);
    background-color: var(--orange);
}

.headerFlexBox .keywordInput {
    padding: 5px 36px 5px 10px;
    width: 100%;
    height: 40px;
    border: 0;
    background-color: transparent;
}

@media screen and (min-width: 768px) {
    .headerFlexBox .keywordInput {
        padding: 12px 24px;
        width: 100%;
        height: 54px;
        border-radius: 0;
    }
}

.headerFlexBox .keywordInput:focus-visible {
    outline: none;
    box-shadow: none;
    outline-offset: 0;
}

.headerFlexBox .searchButton {
    width: 27px;
    height: 27px;
    background-image: url(/images/common/icon_arrow_circle_orange.svg);
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: contain;
    position: absolute;
    top: 50%;
    right: 6px;
    transform: translateY(-50%);
}

@media screen and (min-width: 768px) {
    .headerFlexBox .searchButton {
        width: 43px;
        height: 43px;
        border-radius: 50%;
    }
}

.headerFlexBox .rightBox {
    display: flex;
    align-items: center;
}

@media screen and (min-width: 768px) {
    .headerFlexBox .rightBox {
        margin-left: auto;
        padding-left: 50px;
    }
}

.headerFlexBox .searchBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
}

.headerFlexBox .searchBtn .iconScorp {
    width: 15px;
    height: 15px;
}

.headerFlexBox .translation {
    margin-left: 30px;
    width: 50px;
    text-align: center;
    position: relative;
}

.headerFlexBox .translation a {
    display: flex;
    align-items: center;
    width: 60px;
    font-family: "Outfit", sans-serif;
    font-size: 18px;
    cursor: pointer;
}

.headerFlexBox .translation span {
    margin-left: 5px;
    line-height: 1;
}

.headerFlexBox .languages,
.headerFlexBox .languages_sub {
    display: none;
    padding: 0 10px;
    width: 60px;
    background-color: var(--white);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.12);
    position: absolute;
    left: 0;
    top: -14px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.headerFlexBox .languages.visible,
.headerFlexBox .languages_sub.visible {
    display: block;
    opacity: 1;
}

.headerFlexBox .languages li:last-child a,
.headerFlexBox .languages_sub li:last-child a {
    border: 0;
}

.headerFlexBox .languages a,
.headerFlexBox .languages_sub a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 58px;
    color: #AAAAAA;
    font-family: "Outfit", sans-serif;
    font-size: 18px;
    border-bottom: 1px solid #D5D5D5;
}

.headerFlexBox .languages a:hover,
.headerFlexBox .languages_sub a:hover {
    color: var(--orange);
}

.headerFlexBox .mapButton {
    display: none;
    margin-left: 30px;
    line-height: 1;
}

@media screen and (min-width: 768px) {
    .headerFlexBox .mapButton {
        display: block;
    }
}

.headerFlexBox .mapButton a {
    display: flex;
    align-items: center;
}

@media screen and (min-width: 768px) {
    .headerFlexBox .mapButton span {
        margin-left: 7px;
        font-family: "Outfit", sans-serif;
        font-size: 18px;
        font-weight: 500;
    }
}

.headerFlexBox .menuBtn {
    margin-left: 30px;
    width: 26px;
    height: 26px;
    position: relative;
}

@media screen and (min-width: 768px) {
    .headerFlexBox .menuBtn {
        display: none;
    }
}

.headerFlexBox .menuBtn::before,
.headerFlexBox .menuBtn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0%;
    width: 26px;
    height: 1px;
    background: #333333;
}

.headerFlexBox .menuBtn::before {
    margin-top: -5px;
}

.headerFlexBox .menuBtn::after {
    margin-top: 5px;
}

.headerNavigation {
    padding: 15px 0 25px;
    overflow-x: auto;
    white-space: nowrap;
    text-align: center;
    position: relative;
    z-index: 1;
}

@media screen and (min-width: 768px) {
    .headerNavigation {
        display: none;
    }
}

.headerNavigation .naviFlexBox {
    white-space: nowrap;
    padding: 0 22px;
}

@media screen and (min-width: 768px) {
    .headerNavigation .naviFlexBox {
        text-align: center;
    }
}

.headerNavigation .naviFlexBox li {
    display: inline-block;
    line-height: 1.2;
}

@media screen and (min-width: 768px) {
    .headerNavigation .naviFlexBox li {
        border: 0;
    }
}

.headerNavigation .naviFlexBox li+li {
    margin-left: 20px;
    padding-left: 20px;
    border-left: 1px solid #707070;
}

.headerNavigation .naviFlexBox li:last-child {
    padding-right: 20px;
}

.headerNavigation .naviFlexBox a {
    display: block;
    padding: 0;
    font-size: 15px;
    font-weight: 700;
}

@media screen and (min-width: 768px) {
    .headerNavigation .naviFlexBox a {
        padding: 0 20px;
    }
}

.headerNavigation .naviFlexBox span {
    padding-left: 5px;
    font-size: 16px;
    font-weight: 700;
}

@media screen and (min-width: 768px) {
    .headerNavigation .naviFlexBox span {
        font-size: 19px;
    }
}

.hamburgerWrapper {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    padding: 0 0 0 40px;
    width: 100vw;
    height: 100vh;
    opacity: 0;
    transition: opacity 0.5s ease;
}

@media screen and (min-width: 768px) {
    .hamburgerWrapper {
        display: none !important;
    }
}

.hamburgerWrapper.visible {
    display: block;
    opacity: 1;
}

.hamburgerBg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

.hamburgerContent {
    margin: 0 0 0 auto;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    position: relative;
    z-index: 1;
}

.hamburgerHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px 10px 10px;
    background-color: var(--orange);
}

.hamburgerHeader .closeBtn {
    width: 20px;
    height: 20px;
    background-color: transparent;
    position: relative;
}

.hamburgerHeader .closeBtn::before,
.hamburgerHeader .closeBtn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1px;
    height: 19px;
    background: var(--white);
}

.hamburgerHeader .closeBtn::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.hamburgerHeader .closeBtn::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.hamburgerBody {
    margin-top: 34px;
    height: calc(100% - 90px);
    overflow-y: auto;
}

.hamburgerList {
    padding-bottom: 60px;
}

.hamburgerItem {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 25px;
    border-top: 1px solid #EAE7E7;
}

.hamburgerItem>a {
    display: flex;
    align-items: center;
    font-size: 19px;
    font-weight: 700;
}

.hamburgerItem>span {
    display: flex;
    align-items: center;
    font-size: 19px;
    font-weight: 700;
}

.hamburgerItem .subMenuBtn {
    width: 28px;
    height: 28px;
    position: relative;
}

.hamburgerItem .subMenuBtn::before,
.hamburgerItem .subMenuBtn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1px;
    height: 28px;
    background: #333333;
}

.hamburgerItem .subMenuBtn::before {
    margin-top: -4px;
    transform: translate(-50%, -50%) rotate(90deg);
}

.hamburgerItem .subMenuBtn::after {
    margin-top: 4px;
    transform: translate(-50%, -50%) rotate(-90deg);
}

.hamburgerItem .subMenu {
    display: none;
    margin: 25px -25px 0;
    padding: 20px 0 0 25px;
    width: calc(100% + 50px);
    border-top: 1px solid #EAE7E7;
}

.hamburgerItem.visible .subMenuBtn::before {
    margin: 0;
}

.hamburgerItem.visible .subMenuBtn::after {
    display: none;
}

.hamburgerItem.visible .subMenu {
    display: block;
}

.hamburgerItem.visible .subMenu a {
    display: block;
    position: relative;
}

.hamburgerItem.visible .subMenu a::after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-right: 1px solid #707070;
    border-bottom: 1px solid #707070;
    position: absolute;
    right: 25px;
    top: 10px;
    transform: rotate(-45deg);
}

.hamburgerItem .subMenuList>li+li {
    margin-top: 10px;
}

.hamburgerItem .subMenuList>li>a,
.hamburgerItem .subMenuList>li>span {
    font-size: 16px;
}

.hamburgerItem .subsubMenuList {
    margin-top: 10px;
}

.hamburgerItem .subsubMenuList>li+li {
    margin-top: 10px;
}

.hamburgerItem .subsubMenuList>li>a {
    display: block;
    padding: 0 50px 0 14px;
    font-size: 16px;
}

.hamburgerItem .subsubMenuList>li>a::before {
    content: "";
    display: block;
    width: 8px;
    height: 1px;
    border-top: 1px solid #707070;
    position: absolute;
    left: 0;
    top: 14px;
}

.eatMenuContent {
    display: none;
    padding: 40px 50px;
    width: 100%;
    max-width: 1100px;
    background-color: #fff;
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.16);
}

.eatMenuContent.is-open {
    display: block;
}

.eatMenuContent .eatMenu .eatMenuButtons {
    display: flex;
}

.eatMenuContent .eatMenu .eatMenuButtons li+li {
    margin-left: 25px;
}

.eatMenuContent .eatMenu .eatMenuButtons li a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    width: 210px;
    height: 72px;
    font-size: 16px;
    font-weight: 700;
    border: 1px solid #D5D5D5;
    border-radius: 4px;
    position: relative;
}

.eatMenuContent .eatMenu .eatMenuButtons li a::after {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    position: absolute;
    right: 17px;
    top: 50%;
    transition: transform 0.3s ease;
    transform: translateY(-50%) rotate(-45deg);
}

.eatMenuContent .eatMenu .eatMenuButtons li a:hover {
    color: var(--white);
    background-color: var(--orange);
}

.eatMenuContent .eatMenu .eatMenuButtons li a:hover::after {
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: translateY(-50%) translateX(3px) rotate(-45deg);
}

.eatMenuContent .eatGenre {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #D5D5D5;
}

.eatMenuContent .eatGenre .eatGenreTitle {
    font-size: 16px;
    font-weight: 700;
}

.eatMenuContent .eatGenre .eatGenreButtons {
    margin-top: 20px;
}

.eatMenuContent .eatGenre .eatGenreButtons li {
    display: inline-block;
}

.eatMenuContent .eatGenre .eatGenreButtons li::after {
    content: "　";
}

.eatMenuContent .eatGenre .eatGenreButtons li a {
    font-size: 14px;
    font-weight: 400;
}

.eatMenuContent .eatGenre .eatGenreButtons li a:hover {
    color: var(--orange);
    font-weight: 700;
}

.searchKeywordForm {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: #F8F8F8;
}

@media screen and (min-width: 768px) {
    .searchKeywordForm {
        width: 100%;
        position: fixed;
        left: 0;
        top: 109px;
        z-index: 1;
    }
}

.searchKeywordForm.is-hidden {
    display: none;
}

.searchKeywordFormInner {
    padding: 0;
    width: 100%;
    max-width: 678px;
    position: relative;
}

.searchKeywordFormInner::after {
    content: "";
    display: block;
    width: 1px;
    height: 30px;
    border-left: 1px solid #EAE7E7;
    position: absolute;
    right: 44px;
    top: 50%;
    transform: translateY(-50%);
}

@media screen and (min-width: 768px) {
    .searchKeywordFormInner::after {
        right: 48px;
    }
}

.searchKeywordForm .keywordInput {
    padding: 7px 60px 7px 15px;
    width: 100%;
    font-size: 13px;
    background-color: var(--white);
    border: 1px solid #D5D5D5;
    border-radius: 10px;
}

@media screen and (min-width: 768px) {
    .searchKeywordForm .keywordInput {
        font-size: 18px;
    }
}

.searchKeywordForm .keywordInput:focus-visible {
    outline: none;
    box-shadow: none;
    outline-offset: 0;
}

.searchKeywordForm .searchButton {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
}

.searchKeywordForm .searchButton .iconScorpOrange {
    width: 16px;
    height: 15px;
}

@media screen and (min-width: 768px) {
    .searchKeywordForm .searchButton .iconScorpOrange {
        width: 19px;
        height: 17px;
    }
}

.headerScrollNavi {
    display: none;
}
