/*
Theme Name: AIKS
Description:AIKS専用のテーマです
Version:1.0
Author:Cohere.img
*/

html,
body {
    margin: 0;
    padding: 0;
    background-color: #383123;
}

article,
section,
div,
span,
img,
a {
    display: block;
}

h1,
h2,
h3,
h4,
h5,
p,
a,
ul,
li,
span,
table,
tr,
td {
    font-family: "kepler-std-caption", "kepler-std", "a-otf-ryumin-pr6n", serif;
    font-weight: 400;
    font-style: normal;
    color: #fff;
    letter-spacing: 0.075em;
    font-feature-settings: "palt";
    line-height: 1.8em;
}

ul,
li,
ol,
p,
h1,
h2,
h3,
h4,
h5 {
    list-style: none;
    margin: 0;
    padding: 0;
}

a,
a:visited {
    text-decoration: none;
    color: #fff;
}

.margin {
    margin-top: 300px;
}

.inner {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 50px;
    margin: 0 200px;
}

.en p {
    font-size: 0.75em;
}

/*======================================================header======================================================*/

header {
    padding: 50px 100px;
}

.header__inner {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 50px;
}

.logo__header {
    width: fit-content;
}

.logo__header svg {
    height: 100px;
    grid-column: 1 / 2;
}

.nav__pc {
    grid-column: 4 / 6;
}

.recommendedCard__conts {
    border-radius: 25px !important;
}

/*======================================================bookmark======================================================*/

.bookmark__right {
    background-color: #877e6e;
    border-radius: 25px 0 0 25px;
    padding: 25px;
    width: calc(100% + 150px);
}

.bookmark__left {
    background-color: #877e6e;
    border-radius: 0 25px 25px 0;
    padding: 25px;
    width: calc(100% + 150px);
    margin-left: -200px;
}

.bookmark__left .bookmark__number {
    margin-left: 75px;
}

.bookmark__number {
    font-size: 4em;
    letter-spacing: 0em;
    padding-right: 25px;
}

.bookmark {
    display: flex;
    align-items: center;
    height: 80px;
}

.bookmark p {
    line-height: 1em;
}

.bookmark__title p:nth-child(1) {
    font-size: 1.5em;
    border-bottom: solid #fff 1px;
    padding-bottom: 5px;
    margin-bottom: 5px;
    display: block;
}

.bookmark__title {
    width: 100%;
}

/*======================================================btn======================================================*/

.btn {
    border: solid #fff 1px;
    display: inline-block;
    border-radius: 10px;
    padding: 10px 25px;
}

.btn__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn__inner span {
    height: 1px;
    background-color: #fff;
    width: 50px;
}

.btn {
    background-size: 200% 100%;
    background-image: linear-gradient(to right, #877e6e 50%, transparent 50%);
    background-position: right bottom;
    background-repeat: no-repeat;
    transition: background-position 0.5s, background-color 0.5s;
}

.btn:hover {
    background-position: left bottom;
}

.btn span {
    transition: transform 0.5s;
}

.btn:hover span {
    transform: translateX(10px);
}

/*======================================================card======================================================*/

.cat {
    display: flex;
    height: 2em;
    margin-left: 200px;
}

.card .cat {
    margin-left: 0;
}

.cat li {
    display: flex;
    padding: 0px 10px;
    border-radius: 20px;
    border: solid #fff 1px;
    font-size: 0.75em;
    margin-right: 10px;
    align-items: center;
}

.cardTitle__ja,
.cardTitle__en {
    margin-top: 30px;
}

.cardTitle__ja h2 {
    font-size: 1em;
    height: 3em;
    overflow-wrap: break-word;
    text-wrap: balance;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.cardTitle__en p {
    font-size: 0.75em;
}

.price {
    padding: 10px 0;
    border-top: solid #fff 1px;
    border-bottom: solid #fff 1px;
    margin-top: 30px;
}

.price p {
    text-align: center;
}

.priceInfo {
    margin-top: 30px;
}

.priceInfo p {
    font-size: 0.75em;
}

.menuCard__img img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 25px 25px 0 0;
    width: 100%;
    height: 100%;
}

.menu__conts {
    background-color: #877e6e;
    border-radius: 25px; /*===============================後ほど編集================================*/
    padding: 10px;
}

.menu__conts .cardTitle__ja {
    margin-top: 20px;
}

.menu__conts .cardTitle__en {
    margin-top: 10px;
}

.menu__conts .price {
    border-bottom: 0;
    margin-top: 20px;
}

.price {
    display: none; /*======================後ほど削除======================*/
}

.card__Link {
    transition: box-shadow 0.3s;
    border-radius: 25px;
    position: relative;
    height: fit-content; /*===============後ほど編集=================*/
}

.card__Link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 25px;
    box-shadow: inset 0 5px 20px rgba(0, 0, 0, 0.75);
    opacity: 0;
    transition: opacity 0.3s;
}

.card__Link:hover::before {
    opacity: 1;
}

/*======================================================footer======================================================*/

.footer {
    background-color: #877e6e;
}

.footer__inner {
    padding-top: 100px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 50px;
    margin: 0 200px;
}

.footer__logo {
    grid-column: 1 / 3;
    display: flex;
    align-items: center;
}

.footer__logo a {
    width: 50%;
}

.footer__menu__info {
    grid-column: 4 / 6;
}

.footer__menu__info .businessHours {
    width: 175px;
    margin-top: 50px;
}

.footer__menu__info .shopInfo {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.businessHours {
    grid-column: 1 / 2;
    display: flex;
    justify-content: space-between;
    width: 175px;
}

.businessHours ul:nth-child(1) {
    padding-right: 30px;
    border-right: solid #fff 1px;
}

.mainVisual__info .shopInfo .reservation {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    width: 175px;
}

.reservation ul {
    display: flex;
    justify-content: space-between;
}

.reservation ul li:nth-child(1) {
    padding-right: 15px;
    border-right: solid #fff 1px;
}

.holiday {
    grid-column: 2 / 3;
    width: 180px;
}

.holiday p:nth-child(1) {
    padding-bottom: 5px;
    margin-bottom: 5px;
    border-bottom: solid #fff 1px;
}

.footer__menu__info .shopInfo a .sns {
    display: flex;
    margin-top: 50px;
}

.shopInfo > a::after,
.footer__info__2 > a::after {
    content: "";
    display: block;
    width: 100%;
    border-bottom: solid hsl(0, 0%, 100%) 1px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.2s ease-in-out;
}

.shopInfo > a:hover::after,
.footer__info__2 > a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.footer__menu__info .shopInfo a .sns .sns__icon {
    margin-right: 10px;
}

.footer__info__1 {
    grid-column: 1 / 2;
}

.footer__info__1 .reservation {
    margin-top: 50px;
    width: 175px;
}

.footer__info__2 {
    grid-column: 2 / 3;
}

.footer__info__2 .holiday {
    margin-top: 50px;
}

.footer__info__2 .contact__btn {
    margin-top: 50px;
}

.footer__info__2 .contact__btn .btn {
    width: calc(100% - 50px);
    background-image: linear-gradient(to right, #383123 50%, transparent 50%);
}

.copyright {
    grid-column: 2 / 5;
    margin-bottom: 10px;
}

.copyright p {
    text-align: center;
}

/*======================================================fade-in======================================================*/

.fade-in {
    opacity: 0;
    transition-duration: 500ms;
    transition-property: opacity, transform;
}

.fade-in-up {
    transform: translate(0, 50px);
}

.scroll-in {
    opacity: 1;
    transform: translate(0, 0);
}

/*======================================================loading======================================================*/

.loader {
    z-index: 99999;
    background-color: #383123;
    position: absolute;
    width: 100%;
    height: 100%;
}

.loadAnim {
    min-height: 20em;
    position: relative;
    text-align: center;
    padding: 0;
    transform: translateZ(1px); /* chrome 3d transform bug fix */
    margin-top: 35%;
}

.loading {
    background: #f0f0f0; /* ここで$lightの具体的な値に置き換えてください */
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: 50% 50%;
    transform: translate(-50%, -50%);
}

#loading {
    width: 0em;
    height: 0em;
    top: 100%;
    transform-origin: 50% 50%;
    border-radius: 4em;
    transform: translate(-50%, -50%) rotateX(60deg);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    border: 0em solid rgba(240, 240, 240, 0.5); /* 仮の$lightの値をRGBAに変換 */
    animation: loadingripple 2s infinite;
    background: rgba(240, 240, 240, 0.5); /* 仮の$lightの値をRGBAに変換 */
}

#loading::before {
    position: absolute;
    top: 50%;
    left: 50%;
    content: "";
    display: block;
    width: 0.1em;
    height: 0.1em;
    border: 0em solid rgba(240, 240, 240, 0.5); /* 仮の$lightの値をRGBAに変換 */
    border-radius: 4em;
    transform: translate(-50%, -50%);
    background: #f0f0f0; /* 仮の$lightの値 */
    animation: loadingripple2 2s infinite;
}

#loading::after {
    position: absolute;
    top: 0;
    left: 50%;
    content: "";
    display: block;
    width: 0.5em;
    height: 0.5em;
    opacity: 0;
    background: #f0f0f0; /* 仮の$lightの値 */
    border-radius: 1em;
    border-top-left-radius: 0;
    transform: rotateX(-60deg) translate(-50%, 3em) rotateZ(45deg);
    animation: loadingdrop 2s infinite;
}

@keyframes loadingdrop {
    0% {
        opacity: 0;
        transform: rotateX(-60deg) translate(-50%, -16em) rotateZ(45deg);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    15% {
        opacity: 1;
    }
    35% {
        transform: rotateX(-60deg) translate(-50%, -0.5em) rotateZ(45deg);
        opacity: 1;
    }
    36%,
    100% {
        transform: rotateX(-60deg) translate(-50%, -0.5em) rotateZ(45deg);
        opacity: 0;
    }
}

@keyframes loadingripple {
    0%,
    35% {
        width: 0;
        height: 0;
        border-width: 0;
    }
    65% {
        background: rgba(240, 240, 240, 0.5); /* 仮の$lightの値をRGBAに変換 */
        border-width: 0.3em;
    }
    85%,
    100% {
        background: rgba(240, 240, 240, 0); /* 仮の$lightの値をRGBAに変換 */
        width: 8em;
        height: 8em;
        border-width: 0;
    }
}

@keyframes loadingripple2 {
    0%,
    45% {
        width: 0;
        height: 0;
        border-width: 0;
    }
    70% {
        background: rgba(240, 240, 240, 1); /* 仮の$lightの値をRGBAに変換 */
        border-width: 0.5em;
    }
    90%,
    100% {
        background: rgba(240, 240, 240, 0); /* 仮の$lightの値をRGBAに変換 */
        width: 4em;
        height: 4em;
        border-width: 0;
    }
}
