@charset "utf-8";

* {
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
	box-sizing: border-box;
}
.jp *,
.en * { font-family: "Shippori Mincho", serif; }
.ko * {
    font-family: "Noto Sans KR", serif;
    font-optical-sizing: auto;
    font-weight: 500;
}
.zh-Hans * {
    font-family: "Noto Sans SC", serif;
    font-optical-sizing: auto;
    font-weight: 500;
}
.zh-Hant * {
    font-family: "Noto Sans TC", serif;
    font-optical-sizing: auto;
    font-weight: 500;
}
html {
	font-size: 10px;
}
body {
	font-size: 1.8rem;
	line-height: 1.6;
}
/*
p, th, td, a, strong, span, small, b {
	font-weight: 600;
}
*/
#wrapper {
    padding-left: 160px;
	position: relative;
	color: #FFF;
    background-color: #000;
}
/* header */
#header {
    width: 160px;
    height: 100vh;
    padding-bottom: 100px;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #FFF;
    color: #222;
}
.header-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.header-inner > div {
    padding: 3rem 0;
}
.header-inner .menu01 {
    border-bottom: 1px solid #000;
}
.header-logo a {
    display: block;
    padding: 0 1.6rem;
    margin-bottom: 1.6rem;
}
.header-logo img {
    width: 100%;
    height: auto;
}
.global-nav ul li a {
    padding: 1rem;
    display: block;
    text-align: center;
    font-size: 14px;
    position: relative;
}
.global-nav ul li:not(:last-of-type):not(:nth-last-of-type(2)) a::before {
    content: "";
    width: 8px;
    height: 1px;
    display: block;
    background-color: #000;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}
.global-nav ul li.reserve a {
    margin: 1rem 1.6rem 0;
    padding: 0.5rem 1.6rem;
    border: 1px solid #707070;
    border-radius: 100rem;
    transition: all .3s ease-in;
    
    &:hover {
        color: #FFF;
        background-color: #707070;
    }
}
#header > .lang-btn {
    text-align: center;
    font-size: 14px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}
#header > .lang-btn select,
#header > .lang-btn option {
    width: 80px;
    padding: 1.6rem 0;
    font-family: "Lato", serif;
    font-weight: 700;
    cursor: pointer;
}

#header > .lang-btn {
	position: relative;
}
#header > .lang-btn::after{
	content: "";
	background: #000;
	height: calc(tan(60deg) * 8px / 2);
	width: 10px;
	clip-path: polygon(0 0, 100% 0, 50% 100%);
	position: absolute;
	right: 5px;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
}
#sp-btn,
#sp-header {
	display: none;
}
@media ( max-width:1180px ){
    #wrapper {
        padding-top: 64px;
        padding-left: 0;
    }
    #header {
        width: 100%;
        height: auto;
        padding: 0;
        z-index: 9999;
    }
    #header .header-inner {
        height: 100vh;
        padding: 64px 4rem 0;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 100%;
        right: -100%;
        background-color: #FFF;
        transition: all .6s ease-in;
        overflow: auto;
    }
    #header .header-inner.active {
        left: 0;
        right: 0;
    }
    #header .header-inner > div {
        padding: 4rem 2rem;
    }
    #header .header-inner .header-top,
    #header .header-inner .global-nav {
        max-width: 200px;
        width: 100%;
        margin: auto;
    }
    #sp-header {
        width: 100%;
        max-height: 64px;
        display: flex;
        justify-content: space-between;
        z-index: 1;
        position: relative;
    }
    #sp-header .header-logo {
        display: flex;
        gap: 1.6rem;
    }
    #sp-header .header-logo a {
        display: block;
        padding: 1rem;
        margin-bottom: 0;
    }
    #sp-header .header-logo a img {
        max-height: 50px;
        width: auto;
    }
    #sp-btn {
        height: 100%;
        margin: auto 0;
        padding: 0 0.4rem;
        display: flex;
        align-items: center;
        z-index: 9999;
        transition: all .3s ease-in;
    }
    #sp-btn .inner {
        position: relative;/*ボタン内側の基点となるためrelativeを指定*/
        cursor: pointer;
        width: 50px;
        height:46px;
        border-radius: 5px;
    }
    /*ボタン内側*/
    #sp-btn span{
        display: inline-block;
        transition: all .4s ease-in;/*アニメーションの設定*/
        position: absolute;
      }
    #sp-btn span:nth-of-type(1),
    #sp-btn span:nth-of-type(2),
    #sp-btn span:nth-of-type(3) {
        height: 2px;
        background: #000;
        width: 80%;
        left: 0;
        right: 0;
        margin: auto;
     }
    #sp-btn.active span:nth-of-type(1),
    #sp-btn.active span:nth-of-type(2),
    #sp-btn.active span:nth-of-type(3) {
        background: #000;
     }
    #sp-btn span:nth-of-type(1) {
      top:8px; 
    }
    #sp-btn span:nth-of-type(2) {
      top:16px; 
    }
    #sp-btn span:nth-of-type(3) {
      top:24px;
    }
    #sp-btn span:last-of-type {
        top: 30px;
        left: 0;
        right: 0;
        text-align: center;
        font-size: 10px;
        font-family: arial;
        text-transform: uppercase;
        color: #000;
    }
    #sp-btn.active span:last-of-type {
        color: #000000;
    }
    /*activeクラスが付与されると線が回転して×になり、Menu表記をしている2つ目の要素が透過して消える*/
    #sp-btn.active span:nth-of-type(1) {
        top: 8px;
        left: 0;
        transform: translateY(6px) rotate(-45deg);
        width: 50%;
    }
    #sp-btn.active span:nth-of-type(2) {
      opacity: 0;
    }
    #sp-btn.active span:nth-of-type(3){
        top: 20px;
        left: 0;
        transform: translateY(-6px) rotate(45deg);
        width: 50%;
    }
    #header > .lang-btn {
        position: absolute;
        left: auto;
        right: 1.6rem;
        bottom: -5rem;
    }
    #header > .lang-btn select {
        width: 80px;
        padding: 0.5em 0 .5em 2em;
        background-color: #FFF;
        border-radius: 24px;
        /* font-size: .875em; */
        text-align: left;
        /* text-align: -webkit-center; */
        /* display: -webkit-box; */
        display: box;
        box-pack:center;
        /* -webkit-box-pack:center; */
    }
}

/* footer */
#footer {
    background-color: #FFF;
    color: #222;
}
#copy {
    padding: 4rem 2rem;
    font-size: 12px;
    text-align: center;
}
/* section */
.section {
    height: 100vh;
}
.bk-wh.section {
    background-color: #FFF;
    color: #222;
}
.bk-gray.section {
    background-color: #868686;
    color: #FFF;
}
.section-inner {
    display: flex;
    flex-wrap: wrap;
}
.section-inner > * {
    width: 100%;
}
.section-inner > .left-contents,
.section-inner > .right-contents {
    width: 50%;
}
.top-section {
    position: relative;
    overflow: hidden;
}
.top-section h1 {
    position: absolute;
    z-index: 2;
    max-width: 240px;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: auto;
    text-align: center;
    color: #FFF;
    z-index: 999;
}
.top-section h1 div {
    padding: 3rem 0;
    font-size: 24px;
    
    &:first-of-type {
        border-bottom: 1px solid #FFF;
    }
}
.top-section h1 a {
    display: block;
    margin-top: 1.6rem;
    transition: all .3s ease-in;
    
    &:hover {
        opacity: 0.6;
    }
}
.top-section h1 small {
    padding-left: 0.25rem;
}
.top-section h1 img {
    width: 100%;
}

.section:not(.top-section) .section-inner {
    opacity: 0;
    transition: all .6s ease-in;
}
.section.scrollin .section-inner {
    opacity: 1;
}

.section-inner h2 {
    font-size: 24px;
    padding-bottom: 3rem;
    margin-bottom: 1.2rem;
    letter-spacing: 1.6px;
    position: relative;
    
    &::after {
        content: "";
        width: 1px;
        height: 18px;
        background-color: #FFF;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
    }
}
.section-inner p {
    font-size: 16px;
    line-height: 2.0;
}
.section-inner h2 + p {
    margin-bottom: 1.6rem;
}
.section-inner p strong {
    font-size: 18px;
    line-height: 1.8;
    font-weight: 400;
    letter-spacing: 1.6px;
}
.section-inner .button {
    max-width: 240px;
    width: 100%;
    margin: 3.6rem auto 0;
    padding: 1.6rem;
    display: block;
    border: 1px solid #FFF;
    font-size: 16px;
    transition: all .3s ease-in;
    
    &:hover {
        background-color: #FFF;
        color: #000;
    }
}
.flex.center {
    padding: 0 4rem;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.flex.center img {
    max-width: 240px;
    margin: 0 auto 3rem;
}

#access.section {
    height: auto;
}
#access h2 {
    text-align: center;
    padding: 9.6rem 1.6rem;
    margin-bottom: 0;
    font-size: 24px;
    letter-spacing: 0;
    
    &::after {
        background-color: #000;
        bottom: 6.4rem;
    }
}
#access .right-contents {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
#access .right-contents img {
    height: 70vh;
}
#access .left-contents .inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4rem;
}
#access .left-contents .inner div {
    text-align: center;
}
#access .left-contents .inner div img {
    display: block;
    margin: 1.6rem auto;
}
#access .left-contents .inner .button {
    max-width: 240px;
    width: 100%;
    margin: 3.2rem auto 0;
    padding: 1.6rem;
    display: block;
    border: 1px solid #000;
    font-size: 16px;
    transition: all .3s ease-in;
    
    &:hover {
        background-color: #000;
        color: #FFF;
    }
}
#access .sns {
    display: flex;
    gap: 2.4rem;
    justify-content: center;
    align-items: center;
}
#access .sns a {
    max-width: 24px;
    width: 100%;
    display: block;
    color: #7E7E7E;
    line-height: 0;
    transition: all .3s ease-in;
    
    &:hover {
        opacity: 0.4;
    }
}
#access .sns a svg path {
    fill: #7E7E7E;
}
#access address {
    padding: 8rem 2rem 0;
    text-align: center;
}
#access address .address {
    margin-bottom: 1.6rem;
    line-height: 1.6;
}
#access address .tell {
    margin-bottom: 1.2rem;
}
#access address .tell a {
    font-size: 24px;
}
#access address .shop-info {
    font-size: 15px;
    line-height: 1.6;
}
/* mask-slide */
.mask-slide .wrapper {
    position: relative;
    
    &::before {
        content: "";
        height: 100vh;
        display: block;
        margin: auto;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        background-color: rgb(0 0 0 / 15%);
        z-index: 998;
    }
}
.mask-slide .slide-item {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    object-fit: cover; /* 画像をスライドのサイズにフィットさせる */
    object-position: center; /* 画像の中央を表示 */
    overflow: hidden;
    opacity: 0;
    z-index: 1;
}
.mask-slide .slide-item img {
    width: 100vh;
    position: absolute;
    transform: translate(-4%, 0);
}
.mask-slide .slide-item.aria_hidden {
    animation: 1.3s ease-in mask forwards;
    opacity: 1;
    z-index: 3;
}
.mask-slide .slide-item.aria_vissible {
    width: 100%;
    transition: all 1s ease-out;
    opacity: 1;
    z-index: 2;
}
@media screen and (max-width: 1180px) {
    .section:not(.top-section) {
        height: auto;
    }
    .top-section {
        height: calc(100vh - 64px);
    }
    .section-inner {
        flex-direction: column;
    }
    .top-section .section-inner > .left-contents,
    .top-section .section-inner > .right-contents {
        width: 100%;
        height: calc((100vh - 64px)/2);
    }
    .top-section h1 {
        max-width: 180px;
        top: -10px;
    }
    .top-section h1 div {
        font-size: 20px;
    }
    .section-inner > .left-contents,
    .section-inner > .right-contents {
        width: 100%;
        height: 100vh;
    }
    .section:not(.top-section):not(.bk-gray) .section-inner > .left-contents {
        order: 2;
    }
    .section:not(.top-section):not(.bk-gray) .section-inner > .right-contents {
        order: 1;
    }
    #access  .section-inner > .left-contents {
        order: 1;
        height: auto;
    }
    #access  .section-inner > address {
        order: 2;
        height: auto;
        padding: 5.6rem 2rem;
    }
    #access  .section-inner > .right-contents {
        order: 3;
        height: auto;
    }
    #access .right-contents img {
        height: auto;
        width: 100vw;
    }
    .top-section .mask-slide .slide-item img {
        width: 100vw;
        height: auto;
        top: 25%;
        left: auto;
        transform: translate(0, -50%); /* 中央配置 */
    }
    .section:not(.top-section) .mask-slide .slide-item img {
        width: 100vw;
        height: auto;
        top: 50%;
        left: auto;
        transform: translate(0, -50%); /* 中央配置 */
    }
}
@media screen and (max-width: 780px){
    .section:not(.top-section) .mask-slide .slide-item img {
        width: auto;
        height: 100vh;
        top: 50%;
        left: auto;
        transform: translate(0, -50%); /* 中央配置 */
    }
}
.column-box {
    max-width: 400px;
    width: 100%;
    display: flex;
    gap: 15%;
    margin-top: 2.4rem;
}
.en .column-box {
    max-width: 480px;
    gap: 5%;
}
.column-box > div {
    flex: 1;
}
.column-box > div dl {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    column-gap: 1.6rem;
    
    &:not(:last-of-type) {
        margin-bottom: 0.5rem;
    }
}
.column-box > div dl * {
    font-size: 16px;
    font-weight: 400;
}
.column-box > div dl dd {
    margin: 0 0 0 auto;
}
@keyframes mask {
    from {
        width: 100%;
      }

      to {
        width: 0%;
      }
}




/* etc */
.max-img { width: 100%; }
.inline { display: inline-block; }
.space { margin-bottom: 4rem!important; }
.no-space { margin-bottom: 0!important; }
.center { text-align: center; }