@charset "utf-8";

/* * {
    border: 2px solid red;
} */

/* ------------ VAR ------------ */
:root {
    --color-black: #212121;
    --color-white: #ffffff;
    --color-lightgrey: #eceff1;
    --color-gray: #808080;
    --color-darkgray: #505050;
    --color-lightblue: #70B3CD;
    --color-blue: #154889;
    --color-red: #F75239;
    --weight-normal: 500;
    --weight-bold: 700;
    --padding-normal: 150px;
}

@media screen and (max-width: 560px) {
    :root {
        --padding-normal: 120px;
    }
}


/* ------------ SET ------------ */
html,
body {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-black);
    font-weight: var(--weight-normal);
}

table {
    border-spacing: 0;
    border-collapse: collapse;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

a {
    color: var(--color-black);
    transition: all 0.4s ease;
    text-decoration: none;

}

/* a:hover {
    color: var(--color-red);
} */

* {
    font-size: 100%;
}

ul {
    list-style: none;
}

@media screen and (max-width: 560px) {}

/* ------------ COMMON ------------ */
.container {
    padding-left: 40px;
    padding-right: 40px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.title-section {
    display: grid;
    text-align: center;
    padding-top: 100px;
}

.title-section .ja {
    font-size: 2.5rem;
    font-weight: var(--weight-bold);
    color: var(--color-blue);
    line-height: 1.5;
}

.title-section .en {
    font-size: 1.25rem;
    color: var(--color-blue);
    line-height: 1.5;
}

.button {
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 80px;
    padding-bottom: 100px;
}

.button-link {
    position: relative;
    display: block;
    border-radius: 30px;
}

.button-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    width: 240px;
    height: 60px;
    font-size: 1.25rem;
    font-weight: var(--weight-bold);
    color: var(--color-blue);
    border: 2px solid var(--color-blue);
    border-radius: 30px;
    transition: all 0.4s ease;
}

.button-inner:hover {
    background-color: rgba(112, 179, 205, 0.3);
}

.button-inner .text {
    margin-left: 50px;
}

.button-inner img {
    width: 2rem;
    margin-right: 20px;
    padding-bottom: 2px;
}

@media screen and (max-width: 1060px) {
    .title-section .ja {
        font-size: 2.25rem;
    }

    .container {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media screen and (max-width: 560px) {

    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .title-section .ja {
        font-size: 2rem;
    }

    .title-section .en {
        font-size: 1rem;
    }

    .button-inner {
        width: 160px;
        height: 45px;
    }

    .button .button-inner .text {
        font-size: 0.875rem;
        margin-left: 28px;
    }

    .button-inner img {
        width: 1.5rem;
        margin-right: 14px;
        padding-bottom: 2px;
    }

}


/* ------------ SUB-HEADER ------------ */

.sub-header-bg {
    background-color: var(--color-blue);
    position: relative;

}

.sub-header-bg::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/sub_bg.jpg);
    background-size: cover;
    background-position: center;
    filter: grayscale(1);
    mix-blend-mode: overlay;
    opacity: 0.3;

}

.header-box .title {
    align-items: center;
}

.sub-header-bg .header-box .title h1 {
    font-size: 2.5rem;
    color: var(--color-white);
    line-height: 1.5;
    text-align: center;
    /* margin-top: 20px; */
    text-shadow: 1px 1px 2px var(--color-black);
}

@media screen and (max-width: 1060px) {
    .sub-header-bg .header-box .title h1 {
        font-size: 2rem;
    }

    .header-box .title .dummy {
        height: 3.75rem;
    }
}

@media screen and (max-width: 560px) {
    .sub-header-bg .header-box .title h1 {
        font-size: 1.75rem;
    }

    .header-box .title .dummy {
        height: 2.75rem;
    }
}

/* ------------ HEADER ------------ */
header * {
    position: relative;
}

header {
    position: relative;
    display: grid;

}

.header-bg {
    background-image: url(../images/main_bg1.jpg);
    background-size: cover;
    background-position: center;
    height: 100vh;
}

.header-box {
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr auto 1fr;
    padding: 20px 40px 20px 40px;
}

.information {
    background-color: rgba(144, 144, 144, 0.5);
    box-shadow: 2px 2px 2px var(--color-darkgray);
    border-radius: 5px;
    padding-left: 20px;
}

.information .schedule {
    font-size: 1.25rem;
    color: var(--color-white);
    font-weight: var(--weight-bold);
    text-align: center;
    text-shadow: 1px 1px 2px var(--color-black);
    line-height: 1.6;
    padding-top: 15px;
    padding-right: 20px;
    padding-bottom: 20px;
}

.information .text {
    border-bottom: 2px solid var(--color-white);
    box-shadow: 0px 2px 0px var(--color-darkgray);
    margin-right: 20px;
    text-align: center;
}

.information p {
    font-size: 2rem;
    line-height: 1.5;
    color: var(--color-white);
    font-weight: var(--weight-bold);
    text-shadow: 1px 1px 2px var(--color-black);
    padding-top: 10px;

}

.logo img {
    width: 200px;
}

.navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 10px;
    padding: 6px;
    background-color: rgba(144, 144, 144, 0.5);
    box-shadow: 2px 2px 2px var(--color-darkgray);
    border-radius: 5px;


}

.navigation li a {
    text-decoration: none;
    color: var(--color-white);
    /* font-size: 0.75rem; */
    font-weight: var(--weight-bold);
    text-shadow: 1px 1px 2px var(--color-black);

}

.navigation li a:hover {
    color: var(--color-lightblue);
}

header .svg {
    width: 17px;
    height: 17px;
    margin-left: 5px;
    margin-bottom: 2px;
}


header .instagram a {
    display: block;
    position: relative;
    top: 1px;
    left: 5px;
    width: 17px;
    height: 17px;
    background-image: url(../images/Instagram_Glyph_White.svg);
    filter: drop-shadow(1px 1px 2px var(--color-black));
    transition: all 0.4s ease;
}

header .instagram a:hover {
    background-image: url(../images/Instagram_Glyph_Blue.svg);
}



@media screen and (max-width: 1060px) {
    .header-box {
        display: grid;
        gap: 30px;
        grid-template-columns: 1fr auto 1fr;
        padding: 20px 30px 20px 30px;
    }

    .navigation li a {
        font-size: 0.75rem;
    }

    .header-box .information p {
        font-size: 1.75rem;
    }

    .information .schedule {
        font-size: 1.2rem;
    }

    .header-box .title h1 {
        font-size: 2.5rem;
    }

    .logo img {
        width: 175px;
    }

    header .instagram a {
        width: 13px;
        height: 13px;
    }

}

@media screen and (max-width: 560px) {
    .header-box {
        display: grid;
        gap: 20px;
        grid-template-columns: 1fr;
        padding: 20px 20px 20px 20px;
    }

    .header-box .navigation-container {
        order: -2;
    }

    .header-box .information {
        order: 2;
    }

    .navigation li a {
        font-size: 0.75rem;
    }

    .header-box h1 {
        margin: 0 auto;
    }

    .header-box .title {
        order: 2;
    }

    .header-box .title h1 {
        margin-top: 0px;
    }

    .header-box .logo {
        margin: 0 auto;
    }

    .header-box .title .dummy {
        height: 2.75rem;
    }

    .logo img {
        width: 150px;
    }

    header .instagram a {
        width: 13px;
        height: 13px;
    }



}


/* ------------ HOME MAIN ------------ */

.top {
    position: relative;
}


.block-home-main {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    height: 100vh;
}

/* ------------ HOME ABOUT ------------ */
.block-home-about {
    display: grid;
    grid-template-columns: 55% 1fr;
    gap: 100px;
    margin-top: 80px;
}

.block-home-about:nth-child(odd) {
    grid-template-columns: 1fr 55%;
}

.block-home-about:nth-child(odd) .text {
    order: -1;
    grid-template-columns: 1fr 55%;
}

.block-home-about .text {
    margin-top: 30px;
}

.block-home-about h3 {
    font-size: 1.75rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.img-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;

}

.block-home-about .photo {
    aspect-ratio: 3 / 2;
    object-fit: cover;
    border-radius: 20px;
}

.img-container .photo21 {
    aspect-ratio: 1.5 / 2;
    object-fit: cover;
    border-radius: 20px 0 0 20px;
}

.img-container .photo22 {
    aspect-ratio: 1.5 / 2;
    object-fit: cover;
    border-radius: 0 20px 20px 0;
}

@media screen and (max-width: 1060px) {
    .block-home-about {
        display: grid;
        grid-template-columns: 50% 1fr;
        gap: 50px;
        margin-top: 100px;
    }

    .block-home-about:nth-child(odd) {
        grid-template-columns: 1fr 50%;
    }

    .block-home-about:nth-child(odd) .text {
        order: -1;
        grid-template-columns: 1fr 50%;
    }

    .block-home-about .text {
        margin-top: 0px;
    }

    .block-home-about h3 {
        font-size: 1.625rem;
    }
}

@media screen and (max-width: 560px) {
    #about .inline-block {
        display: inline-block;
    }

    .block-home-about {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 80px;
    }


    .block-home-about:nth-child(odd) {
        grid-template-columns: 1fr;
        margin-top: 60px;
    }

    .block-home-about:nth-child(odd) .text {
        order: 0;
    }

    .block-home-about .photo {
        aspect-ratio: 3 / 2;
        object-fit: cover;
        border-radius: 20px;
    }

    .block-home-about .text {
        margin-top: 20px;
    }

    .block-home-about h3 {
        text-align: center;
    }
}


/* ------------ HOME MENU ------------ */
.menu-box {
    background-color: var(--color-lightgrey);
}

.block-home-menu {
    margin-top: 50px;
}

.block-home-menu .comment {
    font-size: 1.25rem;
    font-weight: var(--weight-bold);
    text-align: center;
}

.block-home-menu h3 {
    font-size: 1.5rem;
    font-weight: var(--weight-bold);
    color: var(--color-blue);
    margin-top: 50px;
    margin-bottom: 20px;
    border-bottom: 4px solid var(--color-blue);
    padding-bottom: 5px;
}

.block-home-menu-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    list-style: none;
    gap: 20px;
}

.block-home-menu-list .item {
    width: 250px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 10px;
    /* margin-bottom: 15px; */

}


@media screen and (max-width: 1060px) {
    .block-home-menu-list {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        list-style: none;
        gap: 20px;
    }
}

@media screen and (max-width: 560px) {
    .menu-box .title-section {
        padding-top: 50px;
    }

    .block-home-menu-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        list-style: none;
        gap: 20px;
    }

    .block-home-menu h3 {
        text-align: center;
        line-height: 1.5;
    }

    .block-home-menu h3 .inline-block {
        display: inline-block;
    }
}

/* ------------ FOOTER ------------ */

footer {
    background-color: var(--color-blue);
    color: var(--color-white);
    text-align: center;
    font-size: 0.9rem;
    padding: 10px;
}

.list-breadcrumbs {
    display: flex;
    justify-content: flex-end;
    list-style: none;
    font-size: 0.8rem;
    padding: 5px 20px;
    gap: 5px;
    flex-wrap: wrap;
    color: var(--color-blue);

}

.list-breadcrumbs a {
    text-decoration: none;
    color: var(--color-blue);
}

.list-breadcrumbs a:hover {
    background-color: rgba(112, 179, 205, 0.3);
}

.list-breadcrumbs li::after {
    content: '>';
    padding-left: 5px;
}

.list-breadcrumbs li:last-child:after {
    display: none;
}

/* ------------ CONTROL ------------ */

.control {
    background-color: var(--color-lightgrey);
}

.control h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.control-button {
    display: block;
    width: 30px;
    height: 30px;
    margin-left: 10px;
    border: 1px solid var(--color-lightgrey);
    border-radius: 5px;

}

#passwordArea,
#secretContent {
    display: none;
    margin-top: 20px;
}

#passwordArea {
    margin-left: 20px;
}

#passwordArea input {
    border: 2px solid var(--color-gray);
}


#passwordArea button {
    border: 2px solid var(--color-gray);
    margin-left: 30px;
    padding: 1px 10px 1px 10px;
    background-color: var(--color-white);
    border-radius: 5px;
    transition: all 0.4s ease;
}

#passwordArea button:hover {
    background-color: rgba(112, 179, 205, 0.3);
}

#secretContent {
    padding: 20px;
}

#secretContent .link-button {
    border: 2px solid var(--color-gray);
    padding: 1px 10px 1px 10px;
    background-color: var(--color-white);
    border-radius: 5px;
    transition: all 0.4s ease;
    margin-right: 10px;
}

#secretContent .link-button:hover {
    background-color: rgba(112, 179, 205, 0.3);
}


/* ------------ ABOUT MAIN ------------ */
.block-about {
    display: grid;
    grid-template-columns: 55% 1fr;
    gap: 100px;
    margin-top: 100px;
}

.block-about:nth-child(even) {
    grid-template-columns: 1fr 55%;
}

.block-about:nth-child(even) .text {
    order: -1;
    /* grid-template-columns: 1fr 55%; */
}

.block-about .photo {
    border-radius: 20px;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

.block-about .text {
    margin-top: 30px;
}

.block-about .text .inline-block {
    display: inline-block;
}

.block-about h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

@media screen and (max-width: 1060px) {
    .block-about {
        display: grid;
        grid-template-columns: 50% 1fr;
        gap: 50px;
        margin-top: 100px;
    }

    .block-about h3 {
        font-size: 1.75rem;

    }

    .block-about:nth-child(even) {
        grid-template-columns: 1fr 50%;
    }

    .block-about:nth-child(even) .text {
        order: -1;
    }

    .block-about .text {
        margin-top: 0px;
    }
}


@media screen and (max-width: 560px) {
    .block-about {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 80px;
    }

    .block-about:nth-child(even) {
        grid-template-columns: 1fr;
        margin-top: 60px;
    }

    .block-about:nth-child(even) .text {
        order: 1;
    }

    .block-about .photo {
        aspect-ratio: 3 / 2;
        object-fit: cover;
        border-radius: 20px;
    }

    .block-about .text {
        margin-top: 20px;
    }

    .block-about .text h3 {
        text-align: center;
        font-size: 1.5rem;
    }
}

/* ------------ ABOUT SHOP ------------ */

.block-about-shop {
    background-color: var(--color-lightgrey);
    margin-top: 100px;
}

.block-about-shop .block-home-menu {
    border-bottom: 3px solid var(--color-blue);
}

.block-about-shop-item {
    display: grid;
    grid-template-columns: 55% 1fr;
    gap: 100px;
    margin-top: 100px;
}

.block-about-shop-item:nth-child(odd) {
    grid-template-columns: 1fr 55%;
    margin-bottom: 60px;
}

.block-about-shop-item:nth-child(odd) .text {
    order: -1;
}

.block-about-shop nav {
    margin-top: 100px;

}


.block-about-shop-item .photo {
    border-radius: 20px;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

.block-about-shop-item .text {
    margin-top: 30px;
}

.block-about-shop-item h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.block-about-shop .map iframe {
    max-width: 100%;
    max-height: 100%;
    margin-top: 20px;
}

@media screen and (max-width: 1060px) {

    .block-about-shop .title-section .ja {
        font-size: 2rem;
    }

    .block-about-shop-item {
        display: grid;
        grid-template-columns: 50% 1fr;
        gap: 50px;
        margin-top: 100px;
    }

    .block-about-shop-item:nth-child(odd) {
        grid-template-columns: 1fr 50%;
        margin-bottom: 60px;
    }

    .block-about-shop-item:nth-child(odd) .text {
        order: -1;
    }

    .block-about-shop-item .text {
        margin-top: 0px;
    }

    .block-about-shop .map iframe {
        max-width: 100%;
        max-height: 250px;
        margin-top: 20px;
    }

    .block-about-shop-item h3 {
        font-size: 1.75rem;
        margin-bottom: 20px;
        line-height: 1.5;
    }
}

@media screen and (max-width: 560px) {
    .block-about-shop .title-section {
        padding-top: 50px;
    }

    .block-about-shop .title-section .ja {
        font-size: 1.75rem;
    }

    .block-about-shop-item {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0px;
        margin-top: 60px;
    }

    .block-about-shop-item .text {
        margin-top: 20px;
    }

    .block-about-shop-item .text .inline-block {
        display: inline-block;
    }

    .block-about-shop-item:nth-child(odd) {
        grid-template-columns: 1fr;
    }

    .block-about-shop-item:nth-child(odd) .text {
        order: 1;
    }

    .block-about .photo {
        aspect-ratio: 3 / 2;
        object-fit: cover;
        border-radius: 20px;
    }

    .block-about-shop-item h3 {
        font-size: 1.5rem;
        margin-bottom: 20px;
        line-height: 1.3;
        text-align: center;
    }
}

/* ------------ MENU MAIN ------------ */

.block-menu-main {
    margin-bottom: 80px;
}

.block-menu-main h2 {
    margin-bottom: 50px;
    border-bottom: 3px solid var(--color-blue);
}

.block-menu-main .comment {
    font-size: 1.5rem;
    font-weight: var(--weight-bold);
    text-align: center;
    margin-bottom: 30px;
}

.block-menu-main .menu-table {
    display: flex;
    justify-content: center;
}

.block-menu-main .menu-table img {
    width: 960px;
}

@media screen and (max-width: 1060px) {
    .block-menu-main .title-section .ja {
        font-size: 2rem;
    }

    .block-menu-main .comment {
        font-size: 1.375rem;
    }
}

@media screen and (max-width: 560px) {
    .block-menu-main .title-section {
        padding-top: 80px;
        padding-bottom: 5px;
    }

    .block-menu-main .title-section .ja {
        font-size: 1.75rem;
    }

    .block-menu-main .title-section .inline-block {
        display: inline-block;
    }

    .block-menu-main .comment {
        font-size: 1.25rem;

    }
}