@charset "UTF-8";

/* ==========================================================================
   Setting
========================================================================== */
:root {
    --white: #FFF;
    --l-gray: #F0F0F0;
    --l-gray2: #FCFBFA;
    --gray: #A0A0A0;
    --d-gray: #646464;
    --dd-gray: #333;
    --black: #50464B;
    --border1: #CBCBCB;
    --border2: #969696;
    --color1-l: #FDBD1A;
    --color1: #FDA11A;
    --color1-d: #F28510;
    --color2-l: #FF7C24;
    --color2: #FF6600;
    --red: #EA4B2D;
    --orange: #FD6C24;
    --l-red: #EAC5C9;
    --blue: #198FD6;
    --green: #296049;
    --font1: "Manrope", sans-serif;
    --side-col-width: max(19.8vw, 17.8125rem);


    --cat-color--1: #FF3713;
    --cat-color--2: #EC753b;
    --cat-color--3: #448ED1;
    --cat-color--4: #296049;
    --cat-color--none: transparent;

    --shop-color--1: #000;
    --shop-color--2: #FFCC99;
    --shop-color--3: #99CC99;
    --shop-color--4: #FF99CC;
    --shop-color--5: #99CCFF;

    --floormap-color--1: #f3c1ca;
    --floormap-color--2: #f5e0b5;
    --floormap-color--3: #ddeab3;
    --floormap-color--4: #e3d2e6;
    --floormap-color--5: #b4d6ea;
}


/* ==========================================================================
   Loading
========================================================================== */
body #container {
    opacity: 0;
}

body.loaded #container {
    opacity: 0;
    animation: fadein .6s cubic-bezier(.39, .575, .565, 1) forwards;
}

/* ==========================================================================
   Animation
========================================================================== */
[class*="iv-"] {
    opacity: 0;
}

.delay02 {
    animation-delay: 0.2s;
}

.delay04 {
    animation-delay: 0.4s;
}

.delay06 {
    animation-delay: 0.6s;
}

.delay08 {
    animation-delay: 0.8s;
}

.delay10 {
    animation-delay: 1.0s;
}

@keyframes fadein {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeout {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/* ==========================================================================
   Base
========================================================================== */
html {
    font-size: 3.475vw;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

@media (min-width: 375px) {
    html {
        font-size: 81.3%;
    }
}

@media (min-width: 576px) {
    html {
        font-size: 87.5%;
    }
}

@media (min-width: 1200px) {
    html {
        font-size: 100%;
    }
}

body {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
    line-height: 2;
    color: var(--black);
}

@media (max-width: 991px) {
    body.gNavOpen {
        height: 100%;
        overflow: hidden;
    }
}


@media (max-width: 991px) {
    .__pc {
        display: none !important;
    }
}

@media (min-width: 992px) {
    .__sp {
        display: none !important;
    }
}

/* ==========================================================================
   Column layout
========================================================================== */
#main {
    position: relative;
    z-index: 44;
}

@media (min-width: 992px) {
    #pageRow {
        display: flex;
        position: relative;
        z-index: 2;
    }

    #mainCol {
        padding-top: 6.4rem;
        flex-basis: 100%;
        width: 100%;
        overflow: hidden;
        position: relative;
    }

    #sideCol {
        flex: 0 0 var(--side-col-width);
        order: -1;
        position: relative;
    }
}


/* ==========================================================================
   ##site-translate-header-wrapper
========================================================================== */
@media (max-width: 991px) {
    #site-translate-header-wrapper {
        z-index: 0 !important;
    }
}

@media (min-width: 992px) {
    #site-translate-header-wrapper {
        margin-left: var(--side-col-width) !important;
    }
}

/* ==========================================================================
   Header
========================================================================== */
#siteHeader {
    width: 100%;
    height: 6rem;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 999;
}

#siteHeader::before {
    content: '';
    background: var(--white);
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    opacity: .9;
    transition: height .3s;
}

#siteHeader.is-fixed::before {
    height: 6rem;
}

.inner-header {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#logo {
    margin: 0 0 2.5%;
    width: 7rem;
    position: relative;
    z-index: 999;
    transition: width .3s;
}

.logo__inner {
    display: block;
    margin: 0;
    color: inherit;
    position: relative;
}

.logo__inner img {
    width: 100%;
    display: inline-block;
    vertical-align: middle;
}


@media(min-width: 992px) {
    #siteHeader {
        height: 8rem;
    }

    #siteHeader::before {
        display: none;
    }

    .inner-header {
        padding: 0 4.8vw;
    }

    #logo {
        width: min(100%, 14.5rem);
        margin-bottom: 0;
        align-self: flex-end;
    }

    #siteHeader.is-fixed #logo a.logo__inner {
        transform: scale(.75);
    }

    #siteHeader #logo::before {
        content: '';
        background: var(--white);
        width: 100%;
        height: 120%;
        border-radius: 1.125rem;
        position: absolute;
        top: -10%;
        left: 0;
        z-index: -1;
        opacity: 0;
        transition: .2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    #siteHeader.is-fixed #logo::before {
        opacity: .9;
    }
}


/* ==========================================================================
   Header menu
========================================================================== */
.gNav {
    width: 100%;
    height: 100%;
    /*background: rgba(255,255,255,.6);*/
    position: fixed;
    top: 0;
    right: 0;
    left: 0;

    display: none;
}

.gNav__inner {
    flex-direction: column;
    width: min(100%, 40rem);
    height: 100dvh;
    padding: 100px calc(4.8vw + var(--gap)) 45px;
    background: var(--l-gray);
    margin: 0 0 0 auto;
    transform: translateX(101%);
    transition: .4s cubic-bezier(0.45, 0, 0.55, 1);
    transition-property: transform;
}

/* OPEN */
.gNav.on .gNav__inner {
    transform: translateX(0);
}


.gNav nav ul {
    display: flex;
    flex-direction: column;
    row-gap: .5em;
    margin: 1.5em 0;
}

.gNav nav ul li a {
    font-size: .875em;
    font-weight: 500;
    letter-spacing: .02em;
    display: flex;
    align-items: center;
    column-gap: 1.75em;
    padding: .5em 0;
}

.gNav nav ul li a[data-en]::before {
    content: attr(data-en);
    font-family: var(--font1);
    font-size: 2em;
}

.gNav nav ul li a:hover {
    color: var(--color1);
}

.gNav nav ul.icon-nav {
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 1rem;
}

.gNav nav ul.icon-nav li {
    min-width: calc((100% - 1rem)/2);
}

.gNav nav ul.icon-nav li a {
    column-gap: 1em;
}

.gNav nav ul.icon-nav li a>span {
    display: flex;
    flex-direction: column;
    row-gap: .5em;
}

.gNav nav ul.icon-nav li a>span>img {
    width: auto;
    height: .9em;
}

.gNav nav ul.icon-nav li .icon {
    width: 3.25em;
}

.gNav nav ul.sub-nav {
    flex-direction: row;
}

.gNav nav ul.sub-nav li {
    display: flex;
}

.gNav nav ul.sub-nav li:not(:last-child)::after {
    content: '|';
    margin: 0 .75em;
}

@media (min-width:768px) {
    .gNav nav ul.sub-nav:not(:last-child)::after {
        margin: 0 1em;
    }
}

@media(max-width: 575px) {
    .gNav nav ul {
        margin: 2em 0;
    }

    .gNav nav ul.main-nav {
        flex-direction: row;
        flex-wrap: wrap;
        column-gap: 6%;
        row-gap: 1.5em;
    }

    .gNav nav ul.main-nav li {
        flex: 0 0 47%;
    }

    .gNav nav ul.main-nav li a {
        flex-direction: column;
        align-items: flex-start;
        row-gap: .25em;
    }

    .gNav nav ul.icon-nav {
        font-size: 1.077em;
        border-bottom: 1px solid currentColor;
        padding-bottom: 2rem;
    }

    .gNav nav ul.sub-nav {
        font-size: 1.077em;
        max-width: 14em;
        margin-left: auto;
        margin-right: auto;
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 0;
    }
}

@media(min-width: 576px) {
    .gNav__inner {
        padding-right: 60px;
        padding-left: 60px;
    }
}

@media(min-width: 992px) {
    .gNav__inner {
        width: calc(30.25rem + 9.8vw + 2.25rem);
        padding: 3rem 9.8vw 3rem 60px;
        margin: 0 0 0 auto;
        transition-duration: .5s;
    }

    .gNav__inner form,
    .gNav nav ul.main-nav {
        padding-right: calc(2.25rem*1.5 + 1rem);
    }
}



/* Nav Btn */
.gNav__buttons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 99;
}

.gNav__buttons>div>* {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 2.25rem;
    height: 3.5rem;
    position: relative;
}

.gNav__buttons [data-label]::after {
    content: attr(data-label);
    display: block;
    font-size: .688rem;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
}

.gNav__buttons button {
    border: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
}

.gNav__buttons svg {
    display: block;
    width: 100%;
}

.gNav__buttons .search-btn svg {
    width: 84%;
}

.gNav__buttons .action-btn {
    color: #48a04c;
}

.gNav__buttons .action-btn svg {}


.nav-btn>div>div {
    width: 100%;
    aspect-ratio: 3/2;
    margin-top: 30%;
    position: relative;
}

.nav-btn i {
    display: block;
    background: currentColor;
    width: 90%;
    height: .3em;
    border-radius: 1em;
    position: absolute;
    right: 0;
    left: 0;
    margin: 0 auto;
    transform: translateY(-50%);
    transition: top .3s .3s, width .3s .3s, transform .3s;
}

/*
.nav-btn i:nth-of-type(1){
    top: 50%;
}*/
.nav-btn i:nth-of-type(1) {
    top: 30%;
}

.nav-btn i:nth-of-type(2) {
    top: 70%;
}

.nav-btn.on i {
    border-radius: 2px;
    transition: top .3s, width .3s, transform .3s .3s;
}

/*
.nav-btn.on i:nth-of-type(1){
    transform: translateY(-50%) scaleX(0);
}*/
.nav-btn.on i:nth-of-type(1) {
    width: 75%;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.nav-btn.on i:nth-of-type(2) {
    width: 75%;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}

@media(min-width: 992px) {
    .gNav__buttons {
        flex-direction: column;
        gap: .75rem;
        position: fixed;
        top: 3.5rem;
        right: 9.8vw;
    }

    .gNav__buttons::before {
        content: '';
        background: var(--white);
        width: calc(150% + 1rem);
        height: calc(115% + 1rem);
        border-radius: 1.125rem;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: -1;
        opacity: 0;
        transition: opacity .3s;
    }

    #siteHeader.is-fixed .gNav__buttons::before {
        opacity: .9;
    }

    .nav-btn {
        order: -1;
        margin-bottom: 3px;
    }

    .gNav__buttons>.nav-btn>* {
        height: 2rem;
    }

    .gNav__buttons>.search-btn>* {
        height: 3rem;
    }

    .gNav__buttons>.floor-btn>* {
        height: 2.75rem;
    }

    .gNav__buttons>.action-btn>* {
        height: 3.25rem;
    }

    .nav-btn>div>div {
        margin-top: 0;
    }
}


/* ==========================================================================
   Breadcrumb
========================================================================== */
.breadcrumb {
    color: var(--border2);
    overflow: hidden;
    margin-top: 1rem;
}

.breadcrumb ol {
    display: flex;
    list-style: none;
    font-size: .813rem;
    font-weight: 500;
    line-height: 1.25;
    white-space: nowrap;
    font-feature-settings: "palt";
}

.breadcrumb ol li {
    display: flex;
    align-items: center;
}

.breadcrumb ol li:not(:first-child)::before {
    content: '＞';
    display: inline-block;
    margin: 0 .25em;
}

.breadcrumb ol li>a,
.breadcrumb ol li>span {
    display: block;
}

.breadcrumb ol li:last-child {
    overflow: hidden;
}

.breadcrumb ol li:last-child>a,
.breadcrumb ol li:last-child>span {
    overflow: hidden;
    text-overflow: ellipsis;
}

@media(min-width: 992px) {
    .breadcrumb {
        margin-top: 4.5rem;
    }
}

/* ==========================================================================
   Page header
========================================================================== */
#page-header {
    display: flex;
    align-items: center;
    width: 100%;
    height: calc(25vw + 1.25rem);
    position: relative;
}

#page-header .bg-object {
    width: 100%;
    height: 100%;
    background: url(../img/illust/page-header_sp.svg) no-repeat center bottom / 100%;
    position: absolute;
    left: 0;
    bottom: 0;
}

#page-header._type2 .bg-object {
    width: 45%;
    background: url(../img/illust/page-header2_sp.svg) no-repeat right 0 top 16% / 100%;
    left: auto;
    right: 3%;
}

#page-header .container {
    padding-bottom: 7%;
}

#page-header .en_ttl {
    display: block;
    line-height: 1;
    font-weight: 800;
}

#page-header .ttl {
    display: block;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: .05em;
    margin-top: .5em;
}

@media(min-width: 768px) {
    #page-header {
        height: calc(16vw + 2rem);
        text-align: center;
    }

    #page-header._type2 {
        height: calc(12vw + 2rem);
    }

    #page-header._type2 .container {
        padding-bottom: 0;
    }

    #page-header .bg-object {
        background-image: url(../img/illust/page-header.svg);
    }

    #page-header._type2 .bg-object {
        width: 40vw;
        aspect-ratio: 8 / 9;
        height: auto;
        background: url(../img/illust/page-header2.svg) no-repeat left 0 top 15% / 120%;
        top: -15rem;
        right: 0;
        bottom: auto;
    }
}


/* ==========================================================================
   Main footer
========================================================================== */
#footer-guide {
    margin-top: 0 !important;
    padding-top: calc(25vw + 2rem);
    position: relative;
    z-index: -1;
}

#footer-guide::before {
    content: '';
    display: block;
    width: 100%;
    height: 38vw;
    background: url(../img/illust/footer-guide_line_sp.svg) no-repeat center bottom / 110%;
    position: absolute;
    top: 0;
}

main.no--footer-guide__line #footer-guide {
    padding-top: 2rem;
    margin-top: calc(4.75vw + 3rem) !important;
}

main.no--footer-guide__line #footer-guide::before {
    display: none;
}

#footer-guide ul {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    row-gap: 1.25rem;
    line-height: 1.375;
    font-weight: 500;
}

#footer-guide ul li a {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--white);
    border-radius: .75rem;
    padding: .75rem;
}

#footer-guide ul li a h4,
#footer-guide ul li a h5 {
    font-weight: 900;
    position: relative;
}

#footer-guide ul li a h4::after,
#footer-guide ul li a h5::after {
    content: '';
    display: block;
    margin: .5em auto;
    width: 5em;
    height: 1px;
    background: currentColor;
}

#footer-guide ul li a span {
    display: block;
    font-size: .846em;
}

#footer-guide ul li a:hover {
    color: var(--color1);
    animation: pulse 1s;
    box-shadow: 0 0 0 .5em transparent;
}

@media (min-width: 576px) {
    #footer-guide {
        margin-top: calc(4.75vw + 3rem) !important;
        padding-top: calc(14vw + 2rem);
    }

    #footer-guide::before {
        background-image: url(../img/illust/footer-guide_line.svg);
        height: 24.5vw;
        background-size: 138%;
    }
}

@media (min-width: 768px) {
    #footer-guide {
        margin-top: calc(4.75vw + 6rem) !important;
        padding-top: 2rem;
    }

    #footer-guide::before {
        top: auto;
        bottom: calc(100% - 9vw);
    }

    #footer-guide ul {
        flex-direction: row;
        flex-wrap: wrap;
        row-gap: 2.5rem;
        column-gap: 4%;
    }

    #footer-guide ul li {
        width: calc((100% - 4% *2) /3);
    }

    #footer-guide ul li a {
        border-radius: 1.125rem;
        padding: 1.25rem .75rem;
        height: 100%;
    }

    #footer-guide ul li a span {
        font-size: .875em;
        line-height: 1.7;
    }

    #footer-guide ul li a h4::after,
    #footer-guide ul li a h5::after {
        margin: .75em auto;
    }

    #footer-guide ul li._large {
        width: 100%;
    }

    #footer-guide ul li._large a {
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    #footer-guide ul li._large h4 {
        width: 25%;
        height: 7rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #footer-guide ul li._large h4::after {
        width: 1px;
        height: 7rem;
        margin: 0;
        position: absolute;
        top: 0;
        right: 0;
    }

    #footer-guide ul li._large span {
        width: 75%;
        padding: 0 6.5%;
        text-align: left;
    }
}

@media (min-width: 992px) {
    #footer-guide {
        margin-top: calc(4.75vw + 7rem) !important;
    }

    #footer-guide ul {
        column-gap: 6%;
    }

    #footer-guide ul li {
        width: calc((100% - 6% *2) /3);
    }

    #footer-guide ul li._large h4 {
        width: 35%;
    }

    #footer-guide ul li._large span {
        width: 65%;
        padding: 0 7.5%;
    }
}


/* ==========================================================================
   Footer
========================================================================== */
#siteFooter {
    background: var(--white);
    font-weight: 500;
    line-height: 1.75;
    letter-spacing: .16em;
    text-align: center;
    padding: 5rem 0;
    clear: both;
    overflow: hidden;
    position: relative;
}

#siteFooter #footer-logo {
    width: 18.75rem;
    margin: 3rem auto 1rem;
}

#siteFooter .address {
    margin: 0;
}

#siteFooter .hour {
    display: inline-block;
    border: 1.5px solid currentColor;
    border-radius: .75rem;
    margin: 3rem 0 2rem;
    padding: 1.5rem 2rem 1.25rem;
    position: relative;
}

#siteFooter .hour .ttl {
    background: var(--white);
    line-height: 2;
    letter-spacing: .16em;
    padding: 0 .384em 0 .4em;
    position: absolute;
    top: -1.125em;
    left: 50%;
    transform: translateX(-50%);
}

#siteFooter .hour sub {
    display: block;
    font-family: sans-serif;
    letter-spacing: 0;
    line-height: 1.5;
}

#siteFooter .hour sub a {
    display: inline-block;
}

#siteFooter .phone .tel {
    line-height: 1.5;
    letter-spacing: .16em;
}

#siteFooter .phone sub {
    display: block;
    font-size: .813rem;
    line-height: 1.5;
}

@media (min-width:768px) {
    #siteFooter {
        text-align: left;
    }

    #siteFooter #footer-logo {
        margin: .5rem 0;
    }

    #siteFooter .hour {
        text-align: left;
        margin: 1.5rem 0 1rem;
        padding: 1.5rem 2.5rem 1.25rem;
    }

    #siteFooter .hour .ttl {
        left: 1.5em;
        transform: none;
    }
}

@media (min-width:1200px) {
    #siteFooter {
        letter-spacing: .2em;
    }
}



.fNav {
    font-size: min(1rem, 2.8vw);
    margin: 2.5rem 0 0;
}

.fNav ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
}

.fNav ul li:not(:last-child)::after {
    content: '|';
    margin: 0 .75em;
}

.fNav ul li a:hover {
    color: var(--color1);
}

.copyright {
    font-size: .813em;
    font-weight: 400;
    letter-spacing: .04em;
    margin: 0;
    padding: 1em 0 0;
    text-align: center;
}


@media (max-width:767px) {
    .fNav {
        letter-spacing: 0;
    }
}

@media (min-width:768px) {
    .fNav ul {
        justify-content: flex-end;
    }

    .fNav ul li:not(:last-child)::after {
        margin: 0 1em;
    }

    .fNav ul li a {
        letter-spacing: .16em;
    }
}

@media (min-width:992px) {
    .fNav {
        margin: 2.5rem 0 -2vw;
    }

    .copyright {
        padding: 0;
    }
}
