/*　
　　　　　　メインビジュアル
　　　　　--------------------------------------------------------------------------*/

/* ----- メイン画像(スライダー設定) ------------------------------------------------*/

#mainvisual {
    position: relative;
    width: 100%;
    margin-top: -150px;
}

#mainvisual .swiper-container {
    height: 40svh;
}

#mainvisual .swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

#mainvisual .swiper-slide .main-img {
    height: 100%;
    object-fit: cover;
}

@media screen and (min-width: 768px) {
    #mainvisual {
        margin-top: -220px;
    }

    #mainvisual .swiper-container {
        height: 70svh;
    }
}

@media screen and (min-width: 1024px) {
    #mainvisual .swiper-container {
        height: 100svh;
    }
}

/*　
　　　　　　お店について
　　　　　--------------------------------------------------------------------------*/

#about {
    padding: 8vw 0 25vw;
    background: url(../images/bg/about-cloud-sp.png) no-repeat center 0 / 100%, url(../images/bg/about-sp-bg.jpg) no-repeat center bottom / cover;
}

#about .container .text-body {
    color: var(--color-white);
    text-shadow: 5px 5px 10px var(--color-black-opacity-30);
}

#about .catch-copy {
    margin: 0 auto 10vw;
    opacity: 0;
    animation: fadeInUp 1.5s ease-out 0.5s forwards;
}

#about .catch-copy span {
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 1.2s ease-out forwards;
    display: inline-block;
}

#about .catch-copy span:nth-child(1) {
    animation-delay: 1s;
}

#about .catch-copy span:nth-child(3) {
    animation-delay: 1.4s;
}

#about .catch-copy span:nth-child(5) {
    animation-delay: 1.8s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    50% {
        opacity: 0.7;
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media screen and (max-width: 767px) {
    #about .catch-copy {
        margin: 0 auto 10vw;
    }
}

@media screen and (min-width: 768px) {
    #about {
        padding: 3vw 0 20vw;
        background: url(../images/bg/about-cloud-pc.png) repeat-x center 0,
            url(../images/bg/about-pc-bg.jpg)no-repeat center top / cover;
    }

    #about .container {
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
        gap: var(--spacing-lg);
    }

    #about .catch-copy {
        margin: 0;
    }

    #about .catch-copy span:nth-of-type(2) {
        padding-top: 70px;
    }

    #about .catch-copy span:nth-of-type(3) {
        padding-top: 140px;
    }

    #about .container .text-body {
        padding-top: 420px;
    }
}

/*　
　　　　　　ごあいさつ
　　　　　--------------------------------------------------------------------------*/

/* ----- 紹介画像 ------------------------------------------------*/

#greeting .img-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: -13vw;
    padding-bottom: 15vw;
    position: relative;
    z-index: 10;
}

#greeting .img-wrapper::after {
    content: '';
    position: absolute;
    top: 45vw;
    left: 45%;
    width: 60vw;
    height: 36.9vw;
    background: url(../images/bg/greeting-deco.png) no-repeat center / contain;
    z-index: -1;
    pointer-events: none;
}

#greeting .img-wrapper img:nth-of-type(1) {
    width: 47%;
    margin-left: 16px;
}

#greeting .img-wrapper img:nth-of-type(2) {
    margin: 25vw 0 12vw;
    width: 45%;
}

#greeting .img-wrapper img:nth-of-type(3) {
    width: 50%;
    margin-left: 46px;
}

@media screen and (min-width: 1024px) {
    #greeting .img-wrapper::after {
        top: 12vw;
    }

    #greeting .img-wrapper img:nth-of-type(1) {
        width: 34%;
        margin: 130px 0 0 -180px;
    }

    #greeting .img-wrapper img:nth-of-type(2) {
        width: 35%;
        margin: 420px 0 0 0;
    }

    #greeting .img-wrapper img:nth-of-type(3) {
        width: 32%;
        margin: 0 -97px 0 0;
    }
}

/* ----- 店主 ------------------------------------------------*/

#greeting {
    padding-bottom: 10vw;
}

#greeting .container {
    padding: 45vw 0 5vw;
    margin-top: -45vw;
    background: url(../images/bg/greeting-bg1.jpg);
    clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 100%);
}

#greeting .container .wide_inner {
    padding-right: 0;
}

#greeting .greeting-wrapper {
    color: var(--color-white);
    background: url(../images/bg/greeting-bg2.jpg);
    max-width: 1600px;
    position: relative;
    z-index: 10;
    padding: 34vw var(--spacing-sm) 10vw;
    margin-left: auto;
}

#greeting .greeting-wrapper:before {
    content: '';
    position: absolute;
    top: -15vw;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: -1;
    background: url(../images/bg/greerting-tensyu.png) no-repeat 0 0 / 100%;
}

#greeting .greeting-wrapper h2 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-lg);
    position: relative;
    display: inline-block;
}

#greeting .greeting-wrapper h2::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-white);
}

#greeting .greeting-wrapper h2 span {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
}

@media screen and (min-width: 768px) {
    #greeting .container {
        padding-top: 20vw;
        margin-top: -20vw;
    }

    #greeting .greeting-wrapper {
        padding: 5vw 30vw 5vw var(--spacing-lg);
    }

    #greeting .greeting-wrapper:before {
        top: -5vw;
        background: url(../images/bg/greerting-tensyu.png) no-repeat right 0 / 47%, url(../images/bg/greeting-bg2.jpg) repeat center 0;
    }
}

/*　
　　　　　　素材へのこだわり
　　　　　--------------------------------------------------------------------------*/

#commitment {
    background: url(../images/bg/commitment-deco1.png) no-repeat 20% 0 / 40%;
    position: relative;
    z-index: 10;
}

#commitment .section-heading_vertical {
    position: relative;
    padding-top: 5vw;
    z-index: 50;
}

#commitment .container {
    padding-bottom: var(--spacing-5xl);
    margin-top: 10vw;
    background: url(../images/bg/commitment-bg.jpg) repeat;
}

#commitment .commitment-list {
    display: flex;
    flex-direction: column;
    row-gap: var(--spacing-5xl);
    position: relative;
    top: -18vw;
    margin-bottom: -18vw;
}

#commitment .commitment-list .img-wrapper {
    position: relative;
    margin-bottom: var(--spacing-lg);
}

#commitment .commitment-list li:nth-of-type(1) {
    position: relative;
    background: url(../images/bg/commitment-deco2.png) no-repeat 0 100% / 25%;
    z-index: 1;
}

#commitment .commitment-list .img-wrapper .label {
    position: absolute;
    z-index: 10;
    width: fit-content;
    height: 40px;
}

#commitment .commitment-list li:nth-of-type(1) .img-wrapper .label {
    bottom: 15%;
    right: 15%;
}

#commitment .commitment-list li:nth-of-type(2) .img-wrapper .label {
    bottom: 15%;
    left: 20%;
}

#commitment .commitment-list li:nth-of-type(3) .img-wrapper .label {
    bottom: 5%;
    left: 36%;
}

#commitment .commitment-list li:nth-of-type(4) .img-wrapper .label {
    bottom: 15%;
    left: 100%;
    transform: translateX(-100%);
}

#commitment .commitment-list li:nth-of-type(5) .img-wrapper .label {
    top: 15%;
    left: 2%;
}

#commitment .commitment-wrapper {
    height: 800px;
    background: url(../images/bg/sozai-bg2-sp.jpg) no-repeat right bottom;
    background-size: cover;
    padding-bottom: 120px;
}

#commitment .commitment-wrapper .top-bg {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100px;
    background-image: url(../images/bg/sozai-bg1.jpg);
    background-size: 46vw;
    background-repeat: repeat;
    z-index: 100;
}

#commitment .commitment-wrapper .top-bg::before {
    content: "";
    position: absolute;
    background-image: url(../images/bg/sozai-deco.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 47% bottom;
    width: 100%;
    height: 38vw;
    top: 99px;
    z-index: 100;
    display: block;
}

#commitment .commitment-wrapper h2 {
    position: relative;
    font-size: var(--font-size-2xl);
    font-family: var(--font-family-accent);
    text-align: var(--text-align-center);
    top: 55px;
    z-index: 101;
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInFromLeft 1s ease-out 0.5s forwards;
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

#commitment .commitment-wrapper h2 span {
    color: var(--color-blue);
}

@media screen and (min-width: 768px) {
    #commitment {
        background: url(../images/bg/commitment-deco1.png) no-repeat 30% 0 / 22%;
    }

    #commitment .commitment-list .img-wrapper .label {
        height: 80px;
    }

    #commitment .commitment-list .text-body {
        padding: 0 var(--spacing-2xl);
    }

    #commitment .commitment-wrapper {
        background: url(../images/bg/sozai-bg2.jpg) no-repeat;
        height: 1400px;
        padding-bottom: 250px;
    }

    #commitment .commitment-wrapper .top-bg::before {
        top: 219px;
        background-position: 47% bottom;
        height: 254px;
    }

    #commitment .commitment-wrapper .top-bg {
        height: 220px;
        background-size: auto;
    }

    #commitment .commitment-wrapper h2 {
        top: 80px;
        opacity: 0;
        transform: translateX(-50px);
        animation: slideInFromLeft 1s ease-out 0.5s forwards;
    }
}

/*　
　　　　　　お品書き
　　　　　--------------------------------------------------------------------------*/

#menu {
    background: url(../images/bg/menu-deco.png) no-repeat;
    background-size: 100%;
}

#menu .section-heading_vertical {
    margin-bottom: var(--spacing-lg)
}

#menu .menu-wrapper {
    display: flex;
    flex-direction: column;
    row-gap: var(--spacing-5xl);
    margin-bottom: var(--spacing-5xl);
}

#menu .menu-item {
    display: flex;
    flex-direction: column;
    row-gap: var(--spacing-xl);
}

#menu .menu-images {
    position: relative;
    margin-bottom: var(--spacing-md)
}

#menu .swiper-slide {
    height: 300px;
    border-radius: var(--border-radius-lg);
}

#menu .swiper-slide img {
    object-fit: cover;
    height: 100%;
}

#menu .menu-time {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-xs);
}

#menu .time-icon {
    position: absolute;
    top: -32px;
    left: -16px;
    z-index: 10;
    width: 100px;
    height: fit-content;
}

#menu .menu-list {
    display: flex;
    flex-direction: column;
    row-gap: var(--spacing-lg);
}

#menu .menu-list li {
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--color-blue);
}

#menu .menu-list li:first-child {
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--color-blue);
}

#menu .dish-name {
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-2xs);
}

#menu .dish-price {
    font-size: var(--font-size-md);
    margin-bottom: var(--spacing-sm);
}

#menu .reservation-wrapper .btn-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-3xl);
}

#menu .calendar .more-btn {
    margin: 0 auto var(--spacing-2xl);
}

@media screen and (min-width: 768px) {
    #menu .swiper-slide {
        height: 650px;
    }

    #menu .time-icon {
        width: 150px;
        top: -52px;
        left: -32px;
    }

    #menu .reservation-wrapper .btn-area {
        flex-direction: row;
        justify-content: center;
    }
}

/*　
　　　　　　KUZAEMON CLUB
　　　　　--------------------------------------------------------------------------*/

#kuzaemon-club {
    background: url(../images/bg/kuzaemon-sp-bg.png) no-repeat 0 0 / 100%;
}

#kuzaemon-club .club-wrapper h3 {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-lg);
}

#kuzaemon-club .club-list {
    display: flex;
    flex-direction: column;
    row-gap: var(--spacing-md);
}

@media screen and (min-width: 1024px) {
    #kuzaemon-club {
        background: url(../images/bg/kuzaemon-pc-bg.png) no-repeat 0 0 / 100%;
    }
}

/*　
　　　　　　アクセス
　　　　　--------------------------------------------------------------------------*/

#access .map-wrapper {
    position: relative;
    overflow-y: hidden;
    width: 100%;
    padding-top: 75%;
    margin-bottom: var(--spacing-lg);
}

#access .map-wrapper iframe {
    position: absolute;
    top: -150px;
    left: 0;
    width: 100%;
    height: calc(100% + (150px * 2));
}

#access .access-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: var(--spacing-lg);
}

@media screen and (min-width: 768px) {
    #access .map-wrapper {
        padding-top: 48%;
    }
}