@charset "UTF-8";

/* ----------------------------------


    共通

    
---------------------------------- */

:root {
    /* 基本色 */
    --main-color: #185869;
    --bg-color: #FEFEFE;
    --font-color: #06303B;
    --hover-color: #4b8594;

    /* Font-size */
    /* sub-page*/
    --font-h3-size: 28px;
    /* ツアープラン */
    --font-Ttl-sub-size: 14px;
    /*ツアープラン ルビ */
    --font-Ttl-size: 22px;
    /* カミングスーン */
    --font-p-size: 16px;
    /* p */
    --basefont-size-SP: clamp(0.813rem, 0.679rem + 0.67vw, 1rem);
}

body {
    font-family: 'Libre Caslon Text', 'Noto Serif JP', serif;
    width: 100%;
    touch-action: manipulation;
    background-color: #101010;
    color: #fff;
}

ul {
    list-style: none;
}

li {
    padding: 0;
    margin: 0;
}

img {
    vertical-align: bottom;
}

a {
    text-decoration: none;
    color: #000;
    word-wrap: break-word;
}

a:hover {
    color: var(--font-color);
}

input {
    caret-color: var(--bk-color);
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

p {
    text-wrap: pretty;
}

ol,
ul {
    padding: 0;
}

p,
dl,
ol,
ul {
    margin: 0;
    margin: 0;
}

dd {
    margin-bottom: 0;
}

input:focus {
    outline: none;
}

/* ---------------------

 Main

--------------------- */
.All_Wrap {
    width: 100%;
    overflow-x: hidden;
    position: relative;
}
main {
    margin-top: 120px;
}
@media screen and (max-width: 768px) {
    main {
        margin-top: 75px;
    }
}
.container-fluid {
    padding: 0 10.24%;
    position: relative;
}
@media screen and (max-width: 768px) {
    .container-fluid {
        padding: 0 15px;
    }
}
.Section_Margin {
    margin-top: 176px;
}
@media screen and (max-width: 768px) {
    .Section_Margin {
        margin-top: 120px;
    }
}
.Section_padding {
    padding-top: 176px;
}
@media screen and (max-width: 768px) {
    .Section_padding {
        padding-top: 120px;
    }
}

/* Background */
#Particlesjs_PC{
    width: 100vw;
    height: 100vh;
    position: fixed;
    z-index: -1;
}
@media screen and (max-width: 768px) {
    #Particlesjs_PC {
        display: none;
    }
}
#Particlesjs_SP {
    display: none;
}
@media screen and (max-width: 768px) {
    #Particlesjs_SP {
        display: block;
        width: 100vw;
        height: 100vh;
        position: fixed;
        z-index: -1;
    }
}

/* Ttl */
.Sec_Ttl {
    font-size: 18px;
    font-weight: 400;
    padding: 0 1px 2px;
    display: inline-block;
    border-bottom: 1px solid #fff;
    margin-bottom: 72px;
    letter-spacing: 1px;
}
@media screen and (max-width: 768px) {
    .Sec_Ttl {
        font-size: 16px;
        margin-bottom: 48px;
    }
}
.Sec_Sub_Ttl {
    font-size: 24px;
    font-family: 400;
    letter-spacing: 3px;
    margin-bottom: 64px;
}
@media screen and (max-width: 768px) {
    .Sec_Sub_Ttl {
        font-size: 18px;
        margin-bottom: 48px;
    }
}

/* br */
@media screen and (max-width: 768px) {
    .PC_Br {
        display: none;
    }
}
.SP_Br {
    display: none;
}
@media screen and (max-width: 768px) {
    .SP_Br {
        display: block;
    }
}

/* ---------------------

Opening

--------------------- */
.Opening {
    display: none;
    width: 100vw;
    height: 100vh;
    position: fixed;
    overflow: hidden;
    z-index: 1000;
}
.Opening_Active .Opening {
    display: block;
}
.Opening_Active .Opening::before {
    content: "";
    width: 100vw;
    height: 100vh;
    background-color: #101010;
    position: absolute;
    top: 0;
    animation: Opening 2s 3s forwards;
    z-index: 999;
}
@keyframes Opening {
    0% {
        top: 0;
    }

    75% {
        filter: blur(100px);
        will-change: filter;
    }

    100% {
        top: -150vh;
    }
}
@media screen and (max-width: 768px) {
    @keyframes Opening {
        0% {
            top: 0;
        }
    
        75% {
            filter: blur(20px);
            will-change: filter;

        }
    
        100% {
            top: -150vh;
            opacity: .3;
        }
    }
}
.Opening_Active .Opening_Logo {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1000;
    animation: OpeningLogo 3.4s forwards;
}
@keyframes OpeningLogo {
    0% {
        opacity: 0;
        filter: blur(2px);
        will-change: filter;
    }
    3% {
        opacity: 0;
        filter: blur(2px);
    }
    35% {
        opacity: 1;
        filter: blur(0);
    }
    50% {
        opacity: 1;
        filter: blur(0);
    }

    100% {
        opacity: 0;
        filter: blur(2px);
    }
}
.Opening_Logo img {
    width: 25vw;
    max-width: 250px;
    height: auto;
}
@media screen and (max-width: 768px) {
    .Opening_Logo img {
        width: 35vw;
    }
}


/* ---------------------

Header

--------------------- */
#Header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}
.Header_Wrap {
    height: 120px;
    width: calc(100% - 8%);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
@media screen and (max-width: 768px) {
    .Header_Wrap {
        height: 75px;
    }
}
.Header_Wrap h1 img {
    width: 110px;
    height: auto;
}
@media screen and (max-width: 768px) {
    .Header_Wrap h1 img {
        width: 70px;
    }
}
.Header_Wrap .Header_Nav {
    display: flex;
    column-gap: 48px;
}
@media screen and (max-width: 900px) {
    .Header_Wrap .Header_Nav {
        column-gap: 32px;
    }
}
.Header_Wrap .Header_Nav li a {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}
.Header_Wrap .Header_Nav li a::after {
    content: "";
    display: block;
    width: 0;
    height: 1px;
    position: absolute;
    bottom: -2px;
    left: 0;
    transition: all .4s ease;
}
.Header_Wrap .Header_Nav li a:hover::after {
    width: 100%;
    background-color: #fff;
    position: absolute;
    bottom: -2px;
    left: 0;
}
@media screen and (max-width: 768px) {
    .Header_Wrap nav {
        display: none;
    }
}
#Header_Ham {
    display: none;
}
@media screen and (max-width: 768px) {
    #Header_Ham {
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        margin: auto;
        width: 45px;
        height: 10px;
    }
    #Header_Ham span::before,
    #Header_Ham span::after {
        content: "";
        width: 100%;
        height: 1px;
        background-color: #fff;
        transition: transform .3s ease;
    }
    #Header_Ham span::before {
        position: absolute;
        top: 0;
        left: 0;
    }
    .Ham_Active #Header_Ham span::before {
        transform: translateY(4px) rotate(-25deg) ;
    }
    #Header_Ham span::after {
        position: absolute;
        bottom: 0;
        left: 0;
    }
    .Ham_Active #Header_Ham span::after {
        transform: translateY(-5px) rotate(25deg);
    }
}

/* Hamburger Inside */
.Ham_Inside {
    display: none;
}
.Ham_Active {
    pointer-events: none;
    overflow: hidden;
}
@media screen and (max-width: 768px) {
    main, footer {
        transition: visibility .3s ease, opacity .3s ease;
    }
    .Ham_Active #Header {
        pointer-events: auto;
    }
    .Ham_Active main,
    .Ham_Active footer {
        opacity: 0;
        visibility: visible;
    }
    .Ham_Inside {
        display: block;
        opacity: 0;
        visibility: hidden;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100svh;
    }
    .Ham_Active .Ham_Inside {
        opacity: 1;
        visibility: visible;
        z-index: 10;
        pointer-events: auto;
    }
    .Ham_Inside .Ham_Wrap {
        width: 100%;
        height: 100%;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .Ham_Active .Ham_Inside .Ham_List li a {
        color: #fff;
        display: inline-block;
        margin-bottom: 32px;
        font-size: 22px;
        font-weight: 400;
        letter-spacing: 2px;
        animation: HamAnime .8s 0s ease forwards;
    }
    @keyframes HamAnime {
        0% {
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    }
    .Ham_Inside .Ham_List li:last-of-type a {
        margin-bottom: 0;
    }
    .Ham_Wrap span {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        margin:  0 auto;
        padding-top: 16px;
        padding-bottom: 32px;
        text-align: center;
        font-size: 14px;
        width: 100%;
        background-image: url(../img/Ham_Img.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    
}

/* ---------------------

Hero

--------------------- */
.Hero_Wrap {
    position: relative;
}
.Hero_Copy_Wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: calc(100vh - 120px); 
}
.Hero_Copy {
    font-size: 70px;
    font-weight: 500;
    letter-spacing: 2px;
    line-height: 102px;
    height: 320px;
    position:absolute;
    top: 0;
    bottom: 80px;
    left: 140px;
    margin: auto 0;
    z-index: 10;
    opacity: 0;
}
.Opening_Text.Hero_Copy {
    animation: HeroCopy 1s .2s ease forwards;
}
@keyframes HeroCopy {
    0% {
        opacity: 0;
        filter: blur(2px);
        will-change: filter;
    }
    5% {
        opacity: 0;
        filter: blur(2px);
    }
    100% {
        opacity: 1;
        filter: blur(0);
    }
}
@media screen and (max-width: 1024px) {
    .Hero_Copy {
        height: 297px;
        left: 80px;
        font-size: 64px;
        bottom: 120px;
    }
}
@media screen and (max-width: 767px) {
    .Hero_Copy {
        height: 297px;
        left: 15px;
        line-height: 1.9;
        font-size: clamp(1.625rem, 0.691rem + 4.92vw, 3rem);
    }
}
.Hero_Img_Wrap {
    display: flex;
    height: 100%;
    width: auto;
}
/* .Hero_Anime_01 {
    display: flex;
    align-items: flex-start;
    flex-shrink: 0;
    animation: Hero_Anime_01 100s linear infinite;
}
@media screen and (max-width: 767px) {
    .Hero_Anime_01 {
        animation: Hero_Anime_01 50s linear infinite;
    }
}
@keyframes Hero_Anime_01 {
    0% {
        transform: translateX(120%);
    }
    100% {
        transform: translateX(-120%);
    }
}
@media screen and (max-width: 767px) {
    @keyframes Hero_Anime_01 {
        0% {
            transform: translateX(115%);
        }
        100% {
            transform: translateX(-120%);
        }
    }
}
.Hero_Anime_02 {
    display: flex;
    align-items: flex-start;
    flex-shrink: 0;
    margin-left: 40%;
    animation: Hero_Anime_02 100s linear infinite -50s;
}
@media screen and (max-width: 767px) {
    .Hero_Anime_02 {
        animation: Hero_Anime_02 50s linear infinite -25s;
    }
}
@keyframes Hero_Anime_02 {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-240%);
    }
}
@media screen and (max-width: 767px) {
    @keyframes Hero_Anime_02 {
        0% {
            transform: translateX(0%);
        }
        100% {
            transform: translateX(-235%);
        }
    }
}
.Hero_Img_01 {
    width: 24.74vw;
    height: auto;
    margin-top: 2%;
    flex-shrink: 0;
}
@media screen and (max-width: 767px) {
    .Hero_Img_01 {
        width:  147px;
        margin-top: 14%;
    }
}
.Hero_Img_02 {
    width: 54.22vw;
    height: auto;
    margin-top: 12%;
    margin-left: 6%;
    flex-shrink: 0;
}
@media screen and (max-width: 767px) {
    .Hero_Img_02 {
        width:  335px;
        margin-top: 22%;
    }
}
.Hero_Img_03 {
    width: 23.57vw;
    height: auto;
    margin-top: 6%;
    margin-left: 8%;
    flex-shrink: 0;
    position: relative;
    z-index: 3;
}
@media screen and (max-width: 767px) {
    .Hero_Img_03 {
        width:  150px;
        margin-top: 20%;
    }
}
.Hero_Img_04 {
    width: 15.88vw;
    height: auto;
    margin-top: 2%;
    margin-left: -2%;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}
@media screen and (max-width: 767px) {
    .Hero_Img_04 {
        width:  100px;
        margin-top: 15%;
    }
}
.Hero_Img_05 {
    width: 25.47vw;
    height: auto;
    margin-top: 11%;
    margin-left: -1%;
    flex-shrink: 0;
}
@media screen and (max-width: 767px) {
    .Hero_Img_05 {
        width:  152px;
        margin-top: 29%;
    }
}
.Hero_Img_06 {
    width: 43.26vw;
    height: auto;
    margin-top: 15%;
    margin-left: -3%;
    flex-shrink: 0;
}
@media screen and (max-width: 767px) {
    .Hero_Img_06 {
        width:  258px;
        margin-top: 34%;
    }
}
.Hero_Img_07 {
    width: 36.31vw;
    height: auto;
    margin-top: 8%;
    margin-left: 5%;
    flex-shrink: 0;
}
@media screen and (max-width: 767px) {
    .Hero_Img_07 {
        width:  216px;
        margin-top: 25%;
    }
} */
.Hero_Img_Animation01 {
    display: flex;
    align-items: flex-start;
    flex-shrink: 0;
    animation: Hero_Img_Animation01 50s -25s linear infinite;
    margin-top: 50vh;
    padding: 0 28px;
}
@media screen and (max-width: 767px) {
    .Hero_Img_Animation01 {
        margin-top: 68vw;
        padding: 0 16px;
    }
}
@media screen and (max-width: 380px) {
    .Hero_Img_Animation01 {
        margin-top: 55vw;
    }
}
.Hero_Img_Animation02 {
    display: flex;
    align-items: flex-start;
    flex-shrink: 0;
    animation: Hero_Img_Animation02 50s linear infinite;
    margin-top: 50vh;
    padding: 0 28px;
}
@media screen and (max-width: 767px) {
    .Hero_Img_Animation02 {
        margin-top: 68vw;
        padding: 0 16px;
    }
}
@media screen and (max-width: 380px) {
    .Hero_Img_Animation02 {
        margin-top: 55vw;
    }
}
@keyframes Hero_Img_Animation01 {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}
@keyframes Hero_Img_Animation02 {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-200%);
    }
}
.Hero_Img_Animation01 img {
    width: 100%;
    height: auto;
    margin-right: 56px;
}
@media screen and (max-width: 767px) {
    .Hero_Img_Animation01 img {
        width: auto;
        height: 59vh;
        margin-right: 32px;
    }
}
.Hero_Img_Animation01 img:last-of-type {
    margin-right: 0;
}
.Hero_Img_Animation02 img {
    width: 100%;
    height: auto;
    margin-right: 56px;
}
@media screen and (max-width: 767px) {
    .Hero_Img_Animation02 img {
        width: auto;
        height: 59vh;
        margin-right: 32px;
    }
}
.Hero_Img_Animation02 img:last-of-type {
    margin-right: 0;
}

/* ---------------------

About

--------------------- */
#About {
    margin-top: 160px;
}
.About_Box {
    padding: 0 11.71vw;
}
@media screen and (max-width: 768px) {
    .About_Box {
        padding: 0;
    }
}
.About_Box p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 2px;
    line-height: 1.9;
}
@media screen and (max-width: 768px) {
    .About_Box p {
        font-size: 14px;
    }
}

.About_Box p:first-of-type {
    margin-bottom: 28px;
}
@media screen and (max-width: 768px) {
    .About_Box p {
        font-size: 14px;
        line-height: 2.2;
    }
}
.About_Img {
    width: 28.77vw;
    height: 19.47vw;
    margin-top: -84px;
}
@media screen and (max-width: 768px) {
    .About_Img {
        width: 215px;
        height: 146px;
        display: block;
        margin-top: 64px;
    }
}
.About_Img img {
    width: 28.77vw;
    height: auto;
    position: absolute;
    right: 0;
}
@media screen and (max-width: 768px) {
    .About_Img img {
        width: 215px;
        height: auto;
    }
}

/* ---------------------

Drink

--------------------- */
#Drink {
    position: relative;
}
.Drink_Box {
    padding: 0 160px;
    display: flex;
    justify-content: right;
} 
@media screen and (max-width: 768px) {
    .Drink_Box {
        padding: 0;
        text-align: right;
        padding-top: 54.93vw;
    }
    .Drink_Case {
        margin-top: 48px;
    }
}
.Drink_Box .Drink_Case p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 2px;
    line-height: 1.9;
}
@media screen and (max-width: 768px) {
    .Drink_Box .Drink_Case p {
        font-size: 14px;
        line-height: 2.2;
    }
}
.Drink_Box .Drink_Case p wbr {
    display: none;
}
@media screen and (max-width: 768px) {
    .Drink_Box .Drink_Case p wbr {
        display: block;
    }
}
.Drink_Menu {
    margin-top: 56px;
}
.Drink_Menu_Img {
    width: 55.49vw;
    height: auto;
}
@media screen and (max-width: 768px) {
    .Drink_Menu_Img {
        width: 100vw;
        height: auto;
        position: absolute;
        top: 0;
        left: 0;
    }
}
/* Menu */
@media screen and (max-width: 768px) {
    .Drink_Menu {
        width: 100%;
    }
}
.Drink_Menu_Box_First {
    display: flex;
    justify-content: right;
    padding-right: 11.71vw;
    margin-top: -40px;
}
@media screen and (max-width: 768px) {
    .Drink_Menu_Box_First {
        margin-top: 0;
        display: block;
        width: 100%;
        padding-right: 0;
    }
}
.Drink_Menu_Box_Second {
    margin-top: 96px;
}
@media screen and (max-width: 768px) {
    .Drink_Menu_Box_Second {
        margin-top: 80px;
    }
}
.Drink_Menu_Box_Last {
    margin-top: 96px;
    display: flex;
    justify-content: right;
}
@media screen and (max-width: 768px) {
    .Drink_Menu_Box_Last {
        margin-top: 80px;
    }
}
.Drink_Menu_Case {
    display: flex;
}
@media screen and (max-width: 768px) {
    .Drink_Menu_Case {
        width: 100%;
        padding: 0 15px;
    }
}
.Drink_Menu_Box_First .Drink_Menu_Case {
    align-items: flex-end;
}
@media screen and (max-width: 768px) {
    .Drink_Menu_Box_First .Drink_Menu_Case {
        flex-direction: column-reverse;
    }
}
.Drink_Menu_Box_Second .Drink_Menu_Case {
    align-items: center;
}
@media screen and (max-width: 768px) {
    .Drink_Menu_Box_Second .Drink_Menu_Case {
        flex-direction: column;
        width: 100%;
    }
}
.Drink_Menu_Box_Last .Drink_Menu_Case {
    align-items: center;
}
@media screen and (max-width: 768px) {
    .Drink_Menu_Box_Last .Drink_Menu_Case {
        flex-direction: column-reverse;
    }
}
.Drink_Menu_Box_First .Drink_Menu_Box_Text {
    margin-right: 80px;
    max-width: 27.67vw;
}
@media screen and (max-width: 768px) {
    .Drink_Menu_Box_First .Drink_Menu_Box_Text {
        width: 100%;
        max-width: none;
        margin-right: 0;
    }
}
.Drink_Menu_Box_Second .Drink_Menu_Box_Text {
    margin-left: 80px;
    max-width: 27.67vw;
}
@media screen and (max-width: 768px) {
    .Drink_Menu_Box_Second .Drink_Menu_Box_Text {
        width: 100%;
        max-width: none;
        margin-left: 0;
    }
}
.Drink_Menu_Box_Last .Drink_Menu_Box_Text {
    margin-right: 80px;
    max-width: 27.67vw;
}
@media screen and (max-width: 768px) {
    .Drink_Menu_Box_Last .Drink_Menu_Box_Text {
        width: 100%;
        max-width: none;
        margin-right: 0;
    }
}
.Drink_Menu_Box_Text h4 {
    font-size: 20px;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
    .Drink_Menu_Box_Text h4 {
        font-size: 20px;
        line-height: 1.5;
    }
}
.Drink_Menu_Box_Text h4 span {
    display: block;
    font-size: 13px;
    margin-top: 3px;
}
@media screen and (max-width: 768px) {
    .Drink_Menu_Box_Text h4 span {
        font-size: 12px;
        margin-top: 6px;
    }
}
.Drink_Menu_Box_Text p {
    font-size: 15px;
    letter-spacing: 1px;
}
@media screen and (max-width: 768px) {
    .Drink_Menu_Box_Text p {
        font-size: 14px;
        line-height: 1.7;
    }
}
.Drink_Menu_Box_Price {
    font-size: 15px;
    text-align: right;
    margin-top: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid #fff;
    letter-spacing: 2px;
}
.Drink_Menu_Box_First .Drink_Menu_Box_Price {
    margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
    .Drink_Menu_Box_Price {
        font-size: 15px;
        text-align: right;
        margin-top: 24px;
        padding-bottom: 12px;
        border-bottom: 1px solid #fff;
        letter-spacing: 2px;
    }
}
.Drink_Menu_Box_First img {
    width: 20.35vw;
    height: auto;
}
@media screen and (max-width: 768px) {
    .Drink_Menu_Box_First img {
        width: 100%;
        margin-bottom: 40px;
    }
}
.Drink_Menu_Box_Second img {
    width: 26.35vw;
    height: auto;
}
@media screen and (max-width: 768px) {
    .Drink_Menu_Box_Second img {
        width: 100%;
        margin-bottom: 40px;
    }
}
.Drink_Menu_Box_Last img {
    width: 34.4vw;
    height: auto;
}
@media screen and (max-width: 768px) {
    .Drink_Menu_Box_Last img {
        width: 100%;
        margin-bottom: 40px;
    }
}
/* Menu下の流れる文字文字 */
.Text_Loop {
    margin-top: 160px;
    display: flex;
}
@media screen and (max-width: 768px) {
    .Text_Loop {
        margin-top: 120px;
    }
}
.Text_Loop p {
    font-size: 150px;
    white-space: nowrap;
    color: #555;
    opacity: .15;
    padding-left: 40px;
    line-height: 1;
}
@media screen and (max-width: 768px) {
    .Text_Loop p {
        font-size: 88px;
    }
}
.Text_Loop p:first-of-type {
    animation: Text_Loop_01 60s -30s linear infinite;
}
@keyframes Text_Loop_01 {
    0% {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}
.Text_Loop p:last-of-type {
    animation: Text_Loop_02 60s linear infinite;
}
@keyframes Text_Loop_02 {
    0% {
        transform: translateX(0);
    }
    to {
        transform: translateX(-200%);
    }
}

/* ---------------------

Menu

--------------------- */
@media screen and (max-width: 768px) {
    #Menu {
        position: relative;
    }
    .Menu_Wrap {
        display: flex;
        flex-direction: column-reverse;
    }
}
.Menu_Box {
    margin-left: 11.71vw;
}
@media screen and (max-width: 768px) {
    .Menu_Box {
        margin-left: 0;
    }
}
.Menu_Box p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 2px;
    line-height: 1.9;
    margin-bottom: 64px;
}
@media screen and (max-width: 768px) {
    .Menu_Box p {
        font-size: 14px;
        line-height: 2.2;
        margin-bottom: 0;
        letter-spacing: 1px;
    }
}
.Menu_Img {
    text-align: right;
}
@media screen and (max-width: 768px) {
    .Menu_Img {
        height: 54.93vw;
        margin-bottom: 48px;
    }
}
.Menu_Img img {
    width: 55.49vw;
    height: auto;
}
@media screen and (max-width: 768px) {
    .Menu_Img img {
        width: 100vw;
        position: absolute;
        top: 0;
        left: 0;
    }
}
.Food_Menu {
    height: 184px;
    width: 100%;
    position: relative;
    margin-bottom: 80px;
}
@media screen and (max-width: 768px) { 
    .Food_Menu {
        margin-bottom: 0;
    } 
}
.Food_Menu dl {
    position: absolute;
    top: 0;
    left: 16vw;
    right: 0;
    margin: 0 auto;
    width: 300px;
}
@media screen and (max-width: 768px) {
    .Food_Menu dl {
        position: relative;
        width: 100%;
        left: initial;
        font-size: 14px;
        margin-top: 48px;
    }
}
.Food_Menu dl .Food_Menu_Box {
    display: flex;
    justify-content: space-between;
    padding-bottom: 16px;
    width: 300px;
}
@media screen and (max-width: 768px) {
    .Food_Menu dl .Food_Menu_Box {
        position: relative;
        width: 100%;
    }
}
.Food_Menu dl .Food_Menu_Box:last-of-type {
    margin-bottom: 0;
}


/* ---------------------

Price

--------------------- */
#Price {
    padding: 120px 0;
    position: relative;
}
@media screen and (max-width: 768px) {
    #Price {
        padding: 80px 0;
    }
}
.Price_BG {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    clip-path: inset(0);
}
.Price_BG_Inner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url(../img/Price.webp);
    background-size: cover;
    background-position: center;
    z-index: -1;
}
.Price_Box {
    text-align: center;
}
.Price_Box h2 {
    font-size: 28px;
    letter-spacing: 3px;
    font-weight: 400;
    margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
    .Price_Box h2 {
        font-size: 22px;
        letter-spacing: 2px;
        }
}
.Price_Box p {
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 52px;
    line-height: 2;
}
@media screen and (max-width: 768px) {
    .Price_Box p {
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 40px;
    }
}
.Price_Box dl {
    display: flex;
    justify-content: center;
}
.Price_Case {
    display: flex;
    padding: 24px 64px;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
}
@media screen and (max-width: 768px) {
    .Price_Case {
        justify-content: center;
        padding: 24px 15px;
        width: 100%;
    }
}
.Price_Box dl dt,
.Price_Box dl dd {
    font-size: 16px;
    letter-spacing: 2px;
}
@media screen and (max-width: 768px) {
    .Price_Box dl dt,
    .Price_Box dl dd  {
        font-size: 14px;
        letter-spacing: 0;
    }
}
.Price_Box dl dt {
    margin-right: 113px;
}
@media screen and (max-width: 768px) {
    .Price_Box dl dt {
        margin-right: 24px;
    }
}

/* ---------------------

Access

--------------------- */
#Access {
    background: #101010;
    padding-bottom: 64px;
}
@media screen and (max-width: 768px) {
    #Access {
        padding-bottom: 0;
    }
}
.Access_Img {
    text-align: right;
}
.Access_Img img {
    width: 78.11vw;
}
@media screen and (max-width: 768px) {
    .Access_Img img {
        width: 100%;
    }
}
.Access_Wrap {
    position: relative;
}
@media screen and (max-width: 768px) {
    .Access_Text_Case p {
        font-size: 14px;
        font-weight: 400;
        letter-spacing: 1px;
    }
}
.Access_Text {
    background: #101010;
    padding: 64px 72px 0 10.24%;;
    position: absolute;
    bottom: 0;
    display: flex;
}
@media screen and (max-width: 768px) {
    .Access_Text {
        display: block;
        position: relative;
        padding: 30px 30px 0 30px;
        margin-right: 15px;
        margin-top: -64px;
    }
}
.Access_Text_Box:last-of-type {
    margin-left: 120px;
}
@media screen and (max-width: 768px) {
    .Access_Text_Box:last-of-type {
        margin-left: 0;
        margin-top: 29px;
    }
}
.Access_Text_Case_Margin {
    margin-top: 28px;
}
.Access_Ttl {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    padding-bottom: 14px;
    border-bottom: 1px solid #fff;
    margin-bottom: 14px;
}
.Access_Address {
    font-size: 15px;
    letter-spacing: 1px;
}
@media screen and (max-width: 768px) {
    .Access_Address {
        line-height: 1.6;
        font-size: 14px;
    }
}
.Access_Address span {
    font-size: 14px;
}
@media screen and (max-width: 768px) {
    .Access_Address span {
        font-size: 13px;
    }
}
.Access_Text dl > div {
    display: flex;
}
@media screen and (max-width: 768px) {
    .Access_Text dl > div {
        margin-top: 2px;
    }
}
.Access_Text dl > div dt {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 2px;
}
@media screen and (max-width: 768px) {
    .Access_Text dl > div dt {
        font-size: 14px;
    }
}
.Access_Text dl > div dt::after {
    content: "：";
    font-size: 15px;
}
@media screen and (max-width: 768px) {
    .Access_Text dl > div dt::after {
        font-size: 14px;
    }
}
.Access_Text dl > div dd {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 2px;
}
@media screen and (max-width: 768px) {
    .Access_Text dl > div dd {
        font-size: 14px;
    }
}
.Access_Link a {
    display: block;
    padding: 26px 120px;
    border: 1px solid #fff;
    color: #fff;
    margin-top: 38px;
    position: relative;
}
.Access_Link a:hover {
    color: #101010;
}
.Access_Link a span {
    position: relative;
    z-index: 10;
}
.Access_Link a::after {
    content: "";
    width: 0;
    height: 100%;
    background: #fff;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    transition: all .4s;
    z-index: 9;
}
.Access_Link a:hover::after {
    width: 100%;
}
@media screen and (max-width: 768px) {
    .Access_Link a {
        padding: 24px 0;
        text-align: center;
        margin-top: 32px;
    }
}

/* ---------------------

Contact

--------------------- */
#Contact {
    background-color: #101010;
    text-align: center;
}
#Contact h2 {
    font-size: 28px;
    letter-spacing: 3px;
    font-weight: 400;
    margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
    #Contact h2 {
        font-size: 22px;
        margin-bottom: 28px;
        letter-spacing: 2px;
    }
}
#Contact p {
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 64px;
}
@media screen and (max-width: 768px) {
    #Contact p {
        font-size: 14px;
        line-height: 1.9;
        margin-bottom: 40px;
    }
}
.Contact_Btn_Wrap {
    display: flex;
    justify-content: space-between;
}
@media screen and (max-width: 768px) {
    .Contact_Btn_Wrap {
        flex-direction: column;
    }
}
.Contact_Mail_Btn,
.Contact_Tel_Btn {
    width: 48%;
    padding: 40px 0;
    display: inline-block;
    border: 1px solid #fff;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 3px;
    color: #fff;
    vertical-align: center;
    position: relative;
}
.Contact_Mail_Btn::before,
.Contact_Tel_Btn::before {
    content: "";
    height: 100%;
    width: 0;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    transition: all .5s ease;
}
@media screen and (max-width: 768px) {
    .Contact_Mail_Btn,
    .Contact_Tel_Btn {
        width: 100%;
        padding: 24px 0;
        font-size: 18px;
        letter-spacing: 2px;
    }
    .Contact_Tel_Btn {
        margin-top: 24px;
    }
}
.Contact_Mail_Btn:hover .Contact_Btn_Text,
.Contact_Tel_Btn:hover .Contact_Btn_Text {
    color: #101010;
    position: relative;
    z-index: 10;
    font-weight: 500;
} 
.Contact_Mail_Btn:hover::before,
.Contact_Tel_Btn:hover::before {
    width: 100%;
}
.Contact_Mail_Btn span:first-of-type {
    position: relative;
    display: inline-block;
    width: 25px;
    height: 20px;
    margin-right: 20px;
    margin-bottom: -2px;
    mask-image: url("../img/mail.svg");
    mask-repeat: no-repeat;
    mask-position: start;
    mask-size: 100%;
    -webkit-mask-image: url("../img/mail.svg");
    -webkit-position: start;
    -webkit-mask-size: 100%;
    -webkit-repeat: no-repeat;
    background-color: #fff;
}
@media screen and (max-width: 768px) {
    .Contact_Mail_Btn span:first-of-type {
        margin-bottom: -3px;
    }
}
.Contact_Tel_Btn span:first-of-type {
    position: relative;
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 18px;
    margin-bottom: -4px;
    mask-image: url("../img/telephone.svg");
    mask-repeat: no-repeat;
    mask-position: start;
    mask-size: 100%;
    -webkit-mask-image: url("../img/telephone.svg");
    -webkit-position: start;
    -webkit-mask-size: 100%;
    -webkit-repeat: no-repeat;
    background-color: #fff;
}
.Contact_Mail_Btn:hover span:first-of-type,
.Contact_Tel_Btn:hover span:first-of-type {
    background-color: #101010;
}
@media screen and (max-width: 768px) {
    .Contact_Tel_Btn span:first-of-type {
        margin-bottom: -6px;
    }
}

/* ---------------------

Footer

--------------------- */
#Footer {
    background-color: #101010;
    position: relative;
}
.Footer_Logo {
    text-align: center;
}
.Footer_Logo img {
    width: 108px;
    height: auto;
}
.Footer_Copy {
    padding: 72px 0;
    text-align: center;
    position: relative;
    z-index: 2;
    font-size: 15px;
}
@media screen and (max-width: 768px) {
    .Footer_Copy {
        font-size: 14px;
    }
}
.Footer_Img {
    width: 100%;
    height: auto;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
}
@media screen and (max-width: 500px) {
    .Footer_Img {
        min-width: 768px;
        left: -113px;
        right: 0;
        margin: 0 auto;
    }
}

/* ---------------------

Animation

--------------------- */
.Animation_Trigger {
    opacity: 0;
    
}
.Animation_Trigger_Active {
    animation: AnimationTrigger 1s ease forwards;
}
@keyframes AnimationTrigger {
    0% {
        opacity: 0;
        filter: blur(3px);
        transform: translateY(20px);
        will-change: filter,transform;
    }
    100% {
        transform: translateY(0);;
        opacity: 1;
    }
}

.Right_Animation_Trigger {
    opacity: 0;
}
.Right_Animation_Trigger_Active {
    animation: Right_Animation_Trigger 1.3s ease forwards;
}
@keyframes Right_Animation_Trigger {
    0% {
        opacity: 0;
        filter: blur(5px);
        transform: translateX(40px);
        will-change: filter,transform;
    }
    100% {
        transform: translateX(0);;
        opacity: 1;
    }
}

.Left_Animation_Trigger {
    opacity: 0;
}
.Left_Animation_Trigger_Active {
    animation: Left_Animation_Trigger 1.3s ease forwards;
}
@keyframes Left_Animation_Trigger {
    0% {
        opacity: 0;
        filter: blur(5px);
        transform: translateX(-40px);
        will-change: filter,transform;
    }
    100% {
        transform: translateX(0);;
        opacity: 1;
    }
}