@charset "utf-8";


/* COMMON */

main {
    overflow: hidden;
    position: relative;
    margin: 80px 0 0;
}

.container {
    max-width: 1100px;
    width: calc(100% - 40px);
    margin: 0 auto;
}

.flexBox {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contents {
    padding: 5% 0;
}

.botCap {
    background: #fff;
    padding: 6rem 0;
    font-size: 1.2rem;
}

.fontEBGaramond {
    font-family: 'EB Garamond', sans-serif;
    
}

.mTit {
    margin: 0 0 5rem;
    text-align: center;
}

.mTit span {
    display: block;
    line-height: 1;
}

.mTit .jp {
    font-size: 1.6rem;
}

.mTit .en {
    font-size: 4rem;
    font-weight: 500;
    margin: 0 0 1rem;
}

@media screen and (max-width: 768px) {
    .mTit {
        margin: 0 0 4rem;
    }

    .mTit .jp {
        font-size: min(4vw, 1.6rem);
    }

    .mTit .en {
        font-size: min(10vw, 4rem);
    }
}


/* END COMMON */









/* HEADER */
header {
    height: 80px;
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    caret-color: transparent;
}

header .row01 {
    height: 100%;
}

header .logo {
    line-height: 1;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

header .groupR {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    line-height: 1;
}

header .menuMap {
    gap: 40px;
    margin-right: 40px;
}

header .menuMap li a {
    position: relative;
    color: #000;
    font-size: 1.2rem;
    line-height: 1;
    font-family: "Noto Serif JP", sans-serif;
}

header .menuMap li a::after {
    margin-left: 5px;
    position: absolute;         
    top: calc(50% - 1px); 
    padding: 2px;
    border: solid #000;
    border-width: 0 1px 1px 0;     
    content: '';
    display: inline-block;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}



@media screen and (min-width: 1001px) {
    header .menuMap li a:hover {
        text-decoration: underline;
        text-underline-offset: 5px;
    }
}


header .menuMapSp {
    display: none;
}

@media screen and (max-width: 1200px) {
    header .logo {
        width: 260px;
    }
}

@media screen and (max-width: 1000px) {
    header {
        background: #ffffff;
    }

    header .logo {
        width: 208px;
    }

    header .menuMapPc {
        display: none;
    }

    header .menuMapSp {
        display: flex;
    }


    header .menuMap {
        margin: 2rem 0 0;
        gap: 0;
    }

    header .menuMap li {
        width: 49%;
        padding: 0;
    }

    header .menuMap li a {
        display: block;
        color: #ffffff;
        background: #4e7191;
        text-align: center;
        padding: 3.5vw 0;
        font-size: 3.8vw;        
    }

    header .menuMap li a::after {
        border-color: #ffffff;
        margin-left: 10px;
    }
}

/* LOGO CENTER */

.logoCenter {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    line-height: 1;
    max-width: 232px;
    width: 90%;
    transition: all 0.3s;
}

.logoCenter img {
    width: 100%;
    display: block;
}

@media screen and (max-width: 1000px) {
    .logoCenter {
        display: none;
    }
}

/* END LOGO CENTER */





/* MENU */
.menu {
    overflow: auto;
    position: fixed;
    z-index: 99;
    top: 80px;
    right: 0;
    width: 25%;
    height: calc(100vh - 80px);
    background: #dcdcf0;
    font-family: 'Jost', sans-serif;
    padding: 3% 5%;
    border-top: 1px solid #aeaeae;
    /*border-left: 1px solid #aeaeae;*/
    transform: translateX(100%);
    z-index: 2;
    transition: all 0.2s;
}

.menu .list li {
    padding: 1.2rem 0;
}

.menu .list a {
    display: inline-block;
    position: relative;    
    line-height: 1;
    font-size: 1.8rem;
}


.menu .list .disable {
    pointer-events: none;
    color: #999999;
}

.menu .list a::after {
    content: '';    
    background: #000;
    height: 1px;
    width: 0;
    position: absolute;
    left: 0;
    bottom: -4px;
    transition: all 0.3s;
}

.menu .list a.is-active::after {
    width: 100%;
}

.menu .list a.is-active {
    pointer-events: none;
}

.menu.is-open {
    transform: translateX(0);
}

@media screen and (min-width: 1001px) {
    .menu .list a:hover::after {
        width: 100%;
    }
}

@media screen and (max-width: 1000px) {
    .menu {
        width: 100%;
        background: #ffffff;
        padding: 5% 20px;
    }

    .menu .list li {
        position: relative;
        padding: 2.5vw 0;
    }

    .menu .list li::after {
        position: absolute;
        right: 0;
        top: calc(50% - 1vw);
        padding: 3px;
        border: solid #000;
        border-width: 0 1px 1px 0;     
        content: '';
        display: inline-block;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    .menu .list a {
        font-size: 4vw;
    }


}

/* END MENU */

/* TOP PAGE */
.topPage main {
    margin: 0;
}

.topPage header {
    background: rgba(220, 220, 240, 0.8);
}

.topPage .logoCenter {
    position: fixed;
    left: 0;
    right: 0;
    margin: 0 auto;
    max-width: 500px;
}

.topPage .logoCenter.scrolled {
    max-width: 232px;
    top: 40px;
}

.topPage .bgOverlay {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 95;
    background: hsla(0, 0%, 100%, 0.8);
    backdrop-filter: blur(12px);
    transition: all 0.3s;
}

.topPage .bgOverlay.scrolled {
    visibility: hidden;    
    opacity: 0;
    pointer-events: none;
}

.topPage .bgOverlay.is-open {
    backdrop-filter: blur(20px) !important;
    visibility: visible !important;
    opacity: 1 !important;
}

@media screen and (max-width: 1000px) {
    .topPage .header {
        background: #dcdcf0;
    }

    .topPage .bgOverlay {
        visibility: hidden;    
        opacity: 0;
        pointer-events: none;
    }

    .topPage main {
        margin-top: 80px;
    }
}

/* END TOP PAGE */







/* BTN MENU */
.btnMenu {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.btnMenu a {
    width: 28px;
    height: 18px;
    display: block;
    position: relative;
}

.btnMenu span {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #000;
    transition: .4s;
}

.btnMenu span:nth-of-type(1) {
    top: 0;
}

.btnMenu span:nth-of-type(2) {
    top: 8px;
}

.btnMenu span:nth-of-type(3) {
    top: 16px;
}

.btnMenu.is-close span:nth-of-type(1) {
    top: 8px;
    transform: rotate(45deg);
}

.btnMenu.is-close span:nth-of-type(2) {
    opacity: 0;
}

.btnMenu.is-close span:nth-of-type(3) {
    top: 8px;
    transform: rotate(-45deg);
}

@media screen and (max-width: 768px) {
    .btnMenu a {
        width: 36px;
        height: 24px;
    }
}

/* END BTN MENU */




/* END HEADER */

















/* footer */
footer {
    color: #000;
}

footer .gr01 {
    background: #DCE6E9;
    padding: 8rem 0;
    line-height: 1;
}

footer .gr01 .btnEntry {
    align-items: center;
    justify-content: center;
    max-width: 250px;    
    width: 100%;
    height: 60px;
    margin: 0 auto 4rem;
    background: linear-gradient(to right, #6796a6, #4f7292);
    text-align: center;
    position: relative;
    color: #ffffff;
    font-size: 2.2rem;
    transition: all 0.2s;
}

footer .gr01 .btnEntry::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    line-height: 0;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transition: all 0.2s;

    border-style: solid;
    border-color: transparent;
    border-top-color: transparent;
    border-left-color: #ffffff;
    border-width: 4px 0 4px 8px;
}

footer .gr01 .btnEntry:hover {
    background: #ffffff;
    color: #000;
}

footer .gr01 .btnEntry:hover::after {
    border-left-color: #000;
}


footer .gr01 .telTit {
    text-align: center;
    font-size: 2rem;
    margin: 0 0 2rem
}

footer .gr01 .num {
    align-items: center;
    justify-content: center;
    gap: 20px;
}

footer .gr01 .num a {
    font-size: 6.4rem;
}

footer .gr01 .num a::before {
    display: inline-block;
    content: '';
    width: 60px;
    height: 34px;
    background: url(../img/common/ic_tel.svg) no-repeat center center / 100% 100%;
}

footer .gr01 .num p {
    font-size: 1.2rem;
    line-height: 1.6;
}

footer .gr01 .logoMarumi {
    max-width: 463px;
    width: 100%;
    margin: 5rem auto 8rem;
}

footer .gr01 .logoMarumi a {
    transition: all 0.2s;
}

footer .gr01 .logoMarumi a:hover {
    opacity: 0.8;
}

footer .gr01 .listLogo01 {
    justify-content: center;
    gap: 10px;    
}

footer .gr01 .listLogo01 a {
    transition: all 0.2s;
}

footer .gr01 .listLogo01 a:hover {
    opacity: 0.8;
}

footer .gr01 .listLogo02 {
    margin: 5rem auto 0;
    padding: 5rem 0 0;
    border-top: 1px solid #7c7a79;
    justify-content: center;
    gap: 10px;
}

footer .gr01 .listLogo02 a {
    transition: all 0.2s;
}

footer .gr01 .listLogo02 a:hover {
    opacity: 0.8;
}

footer .gr02 {
    background: #24292F;
    color: #ffffff;
    font-size: 1.2rem;
    padding: 4rem 0;
}

footer .gr02 ul {
    gap: 20px;
}

footer .gr02 ul li a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

footer .gr02 ul li a:hover {
    text-decoration: none;
}

footer .gr02 .copyR {
    font-family: 'Noto Sans JP', sans-serif;
}

@media (max-width: 1000px) {
    footer {
        padding: 0 0 80px;
    }

    footer .gr01 {
        padding: 4rem 0 0;
    }

    footer .gr01 .btnEntry {
        font-size: min(4.5vw, 2.2rem);
    }

    footer .gr01 .num {
        display: block;
    }

    footer .gr01 .num a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
        font-size: 10vw;
        text-align: center;
    }

    footer .gr01 .num a::before {
        width: 10vw;
        height: 6vw;
    }

    footer .gr01 .num p {
        text-align: center;
        margin: 1rem 0 0;
    }

    footer .gr01 .num p br {
        display: none;
    }

    footer .gr01 .logoMarumi {
        margin: 2rem auto 4rem;
    }

    footer .gr01 .listLogo01 {
        gap: 0;
        justify-content: space-between;
    }

    footer .gr01 .listLogo01 li {
        width: 49%;
        text-align: center;
    }

    footer .gr01 .listLogo01 li a {
        display: block;
    }

    footer .gr01 .listLogo01 li img {
        width: 100%;
    }

    footer .gr01 .listLogo02 {
        gap: 0;
        justify-content: flex-start;
        padding-top: 2rem;
        margin-top: 2rem;
    }

    footer .gr01 .listLogo02 li {
        width: 49%;
        margin: 0 2% 2% 0;
        text-align: center;
    }

    footer .gr01 .listLogo02 li:nth-child(2n) {
        margin: 0 0 2% 0;
    }

    footer .gr01 .listLogo02 li a {
        display: block;
    }

    footer .gr01 .listLogo02 li img {
        width: 100%;
    }

    footer .gr02 {
        background: none;
        padding: 0;
    }

    footer .gr02 .container {
        width: 100%;
    }

    footer .gr02 ul {
        width: 100%;
        background: #dce6e9;
        padding: 20px;
        gap: 3vw;
    }

    footer .gr02 ul li a {
        color: #000;
        font-size: min(3vw, 1.4rem);
    }

    footer .gr02 .copyR {
        width: 100%;
        background: #24292f;
        padding: 2rem;
        text-align: center;
        font-size: 1rem;
    }


    
}
/* end footer */

/* BUTTON FIX SP */
.btnFixSp {
    display: none;
}

@media (max-width: 1000px) {
    .btnFixSp {
        display: block;
        position: fixed;
        z-index: 90;
        bottom: 0;
        left: 0;
        width: 100%;
    }

    .btnFixSp .col04 li {        
        width: 25%;
    }

    .btnFixSp .col03 li {        
        width: calc(100% / 3);
    }


    .btnFixSp li a {
        height: 80px;
        background-color: #EAE8E8;
        color: #000;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        text-align: center;
        border-right: 1px solid #3c4144;
    }

    .btnFixSp .btnOutline {
        background: #EAE8E8 url(../img/common/ic_fix_01.svg) no-repeat center top 20px / 22px auto;
    }

    .btnFixSp .btnMap {
        background: #EAE8E8 url(../img/common/ic_fix_02.svg) no-repeat center top 20px / 30px auto;
    }

    .btnFixSp .btnOrder {
        background: #858683 url(../img/common/ic_fix_03.svg) no-repeat center top 20px / 30px auto;
    }

    .btnFixSp .btnReserve {
        background: #4E7191 url(../img/common/ic_fix_04.svg) no-repeat center top 20px / 28px auto;
    }

    .btnFixSp li:last-child a {
        border-right: 0;
    }
}




/* PAGETOP */
#pageTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 100%;
    background: #fff;
    text-align: center;
    cursor: pointer;
    z-index: 95;
    display: none;
    box-shadow: 0px 0px 2rem 0px rgba(0, 0, 0, .3);
    caret-color: transparent
}

#pageTop:after {
    content: '';
    background: #000;
    mask: url("../img/common/pagetop.svg") no-repeat top left/100% 100%;
    -webkit-mask: url("../img/common/pagetop.svg") no-repeat top left/100% 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    height: 18px;
    width: 34px;
    display: block;
}

#pageTop:hover {
    background: #537896;
}

#pageTop:hover:after {
    background: #fff;
}

@media screen and (max-width: 768px) {
    #pageTop {
        right: 10px;
        bottom: 90px;
    }
}

/* END PAGETOP */

