@charset "utf-8";
/*==========================
mainVisual
==========================*/
.container {
    position: relative;
    overflow: hidden;
}

.mainVisual {
    width: 100%;
    height: 100vh;
    position: relative;
}

.slideshow__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    filter: blur(8px);
    transition: opacity 2s ease-in-out, filter 2s ease-in-out; 
    object-position: 40% 50%;
    animation: pan-animation 10s linear infinite;
}

/*==========================
slideshow.active
==========================*/
.slideshow__img.active {
    opacity: 1;
    filter: blur(0);
    animation-play-state: running;
}

@keyframes pan-animation {
    0% {
        object-position: 40% 50%;
    }

    100% {
        object-position: 70% 50%;;
    }
}

/* slideshow.active responsive_1440px- */
@media screen and (min-width:1440px) {
    .slideshow__img {
        animation: zoom-out-animation 10s linear infinite;
        object-position: center;
    }

    .slideshow__img.active {
        animation-play-state: running;        
    }

    @keyframes zoom-out-animation {
        0% {
            transform: scale(1.3);
        }

        100% {
            transform: scale(1);
        }
    }
}

/*==========================
about-history
==========================*/
.section--about {
    background-color: var(--primary--darkGray);
    position: relative;
    overflow: hidden;
}

.section--about .topic__en {
    color: var(--primary--smokeGray);
}

.section--about .topic__ja {
    color: var(--primary--lightGray);
}

/* item_scroll animation */
.about__item,
.about__item-2,
.about__item-3,
.txt__container,
.store__front{
    opacity: 0;
    /* transform: translateY(80px); */
    transition: opacity 1.5s ease, transform 1.5s ease;
}

.is_show {
    opacity: 1;
    /* transform: translateY(0); */
}

.history--1 {
    width: 400px;
    margin: 40px auto 0;
}

.section--about .lead {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    position: absolute;
    right: 8%;
    top: 100px;
    z-index: 1;
}

.section--about .lead__txt {
    writing-mode: vertical-rl;
    color: var(--primary--lightGray);
    padding: 14px 6px;
    border-radius: 8px;
    font-size: 1.8rem;
    line-height: 1;
    letter-spacing: 0.2em;
    background-color: rgba(50, 50, 50, 0.7);
    white-space: nowrap;
}

.txt--history {
    color: #FFF;
    background-color: rgba(50, 50, 50, 0.7);
    padding: 20px;
    border-radius: 8px;
    text-align: justify;
    position: relative;
    z-index: 10;
}

.about__item-2,
.about__item-3 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.history--2 {   
    width: 275px;
    margin-right: -100px;
    margin-top: 20px;
}

.txt--history_2 {
    width: 63%;
    margin-right: -41px;
}

.history--3 {
    width: 220px;
    margin-left: -43px;
}

.txt--history_3 {
    width: 65%;
    display: block;
    margin-left: -36px;
}

/*==========================
about-phylosophy
==========================*/
.section--philosophy {
    background-color: var(--primary-white);
    position: relative;
    overflow: hidden;
}

.section--philosophy .lead {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    position: absolute;
    left: 8%;
    top: 60px;
    z-index: 1;
}

.section--philosophy .lead__txt {
    writing-mode: vertical-rl;
    color: var(--primary--black);
    background-color: rgba(248, 248, 248, 0.6);
    padding: 14px 6px;
    border-radius: 8px;
    font-size: 1.8rem;
    line-height: 1;
    letter-spacing: 0.2em;
    white-space: nowrap;
}

.philosophy--1 {
    width: 400px;
    margin: 20px auto 0;
}

.section--philosophy .about__item-2 {
    flex-direction: row-reverse;
} 

.txt--philosophy {
    color: var(--primary--black);
    background-color: rgba(248, 248, 248, 0.6);
    padding: 20px;
    border-radius: 8px;
    text-align: justify;
    z-index: 10;
    position: relative;
}

.philosophy--2 {
    width: 275px;
    margin-top: -22px;
}

.txt--philosophy_2 {
    width: 72%;
    margin-right: -30px;
}

.philosophy--3 {
    width: 220px;
}

.txt--philosophy_3 {
    width: 65%;
    margin-left: -20px;
}

/* about-history&philosophy responsive */
@media screen and (min-width: 430px) {
    .about__item,
    .about__item-2 {
        justify-content: space-between;
        max-width: 1440px;
        margin: 0 auto;
    }

    .section--philosophy .about__item {
        display: flex;
        flex-direction: column;
    }

    .section--philosophy .history--1 {
        margin: 40px 0 0 auto;
    }

    .txt--history_2 {
        width: 66%;
    }

    .txt--philosophy_2 {
        margin: 80px 0 0;
    }

    .txt--philosophy_3 {
        margin-left: 0;
    }

    .section--philosophy .about__item-2 {
        flex-direction: row;
        margin-top: 40px;
    }

    .section--philosophy .about__item-3 {
        flex-direction: row-reverse;
    }
}
@media screen and (min-width: 540px) {
    .txt--history_2 {
        width: 72%;
    }

    .txt--history_3 {
        width: 70%;
    }

    .about__item-3 {
        margin-top: 25px;
    }
}

@media screen and (min-width: 600px) {
    .history--2 {
        width: 340px;
    }

    .history--3 {
        width: 280px;
    }

    .about__item-3 {
        margin-top: 0px;
    }
}
@media screen and (min-width: 768px) {
    .section--about .lead {
        right: 15%;
    }
    
    .about__item-2,
    .about__item-3 {
        margin-top: -50px;
    }

    .history--2 {
        margin-top: 0;
    }

    .about__item {
        margin-bottom: 56px;
    }

    .section--philosophy .lead {
        left: 15%;
    }

    .txt--philosophy_2 {
        margin-top: 10px;
    }

}

@media screen and (min-width: 820px) {
    .about__item {
        display: flex;
        justify-content: center;
        align-items: flex-end;
    }
    
    .history--1 {
        width: 660px;

    }

    .history--2 {
        width: 380px;
    }

    .txt--history,
    .txt--philosophy     {
        width: 60%;
    }

    .txt--history_1 {
        width: 75%;
        margin-left: -100px;
    }

    .txt--philosophy_1 {
        width: 75%;
        margin-right: -115px;
    }

    .txt--philosophy_2 {
        margin-left: -20px;
    }

    .txt--philosophy_3 {
        margin-right: -20px;
    }

    .history--2 {
        margin-right: 0;
    }

    .history--3 {
        margin-left: 0;
        width: 320px;
    }

    .section--philosophy .about__item {
        flex-direction:row-reverse;
    }

}

@media screen and (min-width: 900px) {
    .history--1 {
        width: 825px;
    }

    .history--2 {
        width: 405px;
    }

    .history--3 {
        width: 350px;
    }

    .about__item {
        margin-bottom: 70px;
    }
}

@media screen and (min-width: 1024px) {
    .section--about .lead {
        right: 15%;
    }

    .section--philosophy .lead {
        left: 15%;
    }

    .history--3 {
        width: 420px;
    }
}

@media screen and (min-width: 1200px) {
    .section--about .lead__txt,
    .section--philosophy .lead__txt {
        font-size: 2.4rem;
    }

    .section--about .lead {
        top: 200px;
    }

    .txt--history,
    .txt--philosophy {
        width: 700px;
        font-size: 1.8rem;
    }

    .history--2,
    .history--3 {
        width: 590px;
    }

    .about__item {
        margin-bottom: 100px;
    }
}

@media screen and (min-width: 1440px) {
    .lead__txt {
        font-size: 3.2rem;
    }
    
    .txt--history,
    .txt--philosophy {
        font-size: 1.8rem;
    }

    .about__item, .about__item-2 {
        justify-content: center;
    }

    .txt--history_1 {
        margin-top: 470px;
    }

    .txt--philosophy_3 {
        margin-top: 240px;
        margin-right: -140px;
    }

    .about__item {
        align-items: center;
    }

    .about__item-2,
    .about__item-3 {
        margin-top: -120px;
    }

    .section--philosophy .about__item  {
        align-items: end;
    }
}

/*==========================
menu
==========================*/

.menuVisual {
    max-width: 1000px;
    margin: 30px auto 0;
}

.menuVisual__slideshow {
    display: flex;
}

/* slider */
.menu__slideshow__img {
    width: 250px;
    height: 180px;
    aspect-ratio: 25 /18;
    object-fit: cover;
    margin: 0 10px;
    border-radius: 8px;
}

.menu__category {
    margin: 40px auto 0;
}
.menu__list {
    display: flex;
    max-width: 800px;
    margin: 0 auto;
    justify-content: center;
    gap: 19px;
}

.menu__item {
    text-align: center;
}

.category__name {
    font-size: 1.6rem;
}

.category__img {
    width: 100%;
    height: auto;
    aspect-ratio: 8 / 7;
    object-fit: cover;
    box-shadow: 1px 3px 4px 0px rgba(0, 0, 0, 0.25);
    margin-top: 5px;
    border-radius: 8px;
}

.menu__list_2 {
    margin-top: 40px;
}

/* menu responsive_768px- */
@media screen and (min-width: 768px) {
    .menuVisual {
        max-width: 1000px;
        margin: 40px auto 0;
    }
    .category__name {
        font-size: 1.8rem;
    }

    .menu__slideshow__img {
        width: 375px;
        height: 270px;
    }
}

/* menu responsive_1024px- */
@media screen and (min-width: 1024px) {
    .menuVisual {
        max-width: 1410px;
    }
    
    .category__name {
        font-size: 2rem;
    }
}

/* menu responsive_1440px- */
@media screen and (min-width: 1440px) {  
    .menuVisual {
        max-width: 1410px;
        margin: 50px auto 0;
    }

    .menu__slideshow__img {
        width: 450px;
        height: 324px;
        margin: 0 15px;
    }

    .menu__category {
        display: flex;
        gap: 30px;
        justify-content: center;
    }

    .menu__list {
        margin: 0;
    }

    .menu__list_2 {
        margin-top: 0 ;
    }

    .menu__list {
        gap: 30px;
    }

    .menu__item {
        width: 300px;
    }

    .menu__category {
        margin: 50px auto 0;
    }

    .category__name {
       font-size: 2rem;
    }
}

/* news */
.section--news {
    background-color: var(--primary--darkGray);
}

.section--news .topic__en {
    color: var(--primary--smokeGray);
}

.section--news .topic__ja {
    color: var(--primary--lightGray);
}

.news__container {
    max-width: 800px;
    margin: 0 auto;
}

.news__list {
    margin: 20px auto 0;
    display: flex;
    justify-content: center;
    gap: 19px;
}

.news__item {
    flex: 1;
    min-width: 0;
}

.news__img {
    width: 100%;
    height: auto;
    aspect-ratio: 8 / 7;
    object-fit: cover;
    border-radius: 8px;
}

.news__title,
.news__time {
    color: var(--primary--lightGray);
    margin-top: 5px;
}

.news__item:nth-child(3),
.news__item:nth-child(4) {
    display: none;
}

/* news responsive_768px- */
@media screen and (min-width: 768px) {
    .news__title,
    .news__time {
        font-size: 1.8rem;
    }
}
/* news responsive_1024px- */
@media screen and (min-width: 1024px) {
    .news__list {
        margin: 50px auto 0;
    }

    .news__title,
    .news__time {
        font-size: 2rem;
    }
}

/* news responsive_1440px- */
@media screen and (min-width: 1440px) {
    .news__container {
        max-width: 1290px;
    }
    
    .news__item:nth-child(3),
    .news__item:nth-child(4) {
        display: block; 
    }

    .news__list {
        gap: 30px;
    }

    .news__item {
        width: 300px;
    }
}

/* order */
.txt__container {
    max-width: 800px;
    background-color: var(--primary--lightGray);
    padding: 20px;
    margin: 30px auto 0;
    border-radius: 8px;
}

.txt--order {
    margin-top: 20px;
    text-align: justify;
}

.txt--order:first-of-type {
    margin-top: 0;
}

.txt--order:last-of-type {
    font-weight: 800;
}

.tel {
    margin-top: 20px;
    text-align: center;
}

.tel__icon {
    width: 24px;
    height: 24px;
}

.tel__number {
    font-size: 2rem;
}

.shop__info--order {
    width: 265px;
    margin: 20px auto 0;
}



/* order responsive_768px- */
@media screen and (min-width:768px) {
    .txt__container {
        padding: 30px 56px;
    }
}

/* order responsive_1024px- */
@media screen and (min-width:1024px) {
    .tel {
        margin-top: 10px;
    }
    
    .tel__icon {
        width: 28px;
        height: 28px;
    }
   
    .tel__number {
        font-size: 2.4rem;
    }

    .shop__info--order {
        width: 341px;
        margin: 30px auto 0;
    }

}

/* faq */
.section--faq {
    background-color: var(--primary--lightGray);
}

.faq__container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.faq__item {
    margin: 30px auto 0 ;
}

.question {
    cursor: pointer;
    padding: 10px 3.5%;
    background-color: var(--primary--lightYellow);
    position: relative;
}

.question::after {
    content: '';
    display: block;
    background-image: url(../images/logo/icon_triangle_2.svg);
    width: 24px;
    height: 24px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    right: 3.5%;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.4s;
}

.question.active::after {
    content: '';
    display: block;
    background-image: url(../images/logo/icon_triangle.svg);
    width: 24px;
    height: 24px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    right: 3.5%;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.4s;
}

.answer {
    display: none;
    padding: 10px 8.8%;
    background-color: #fff;
}

.answer__txt {
    text-align: justify;
}

.faq__question__prefix {
    color: var(--primary--darkGray);
    font-size: 1.8rem;
    font-weight: 800;
}

.link {
    border-bottom: 2px dotted #333; 
}

/* faq responsive_1024px- */
@media screen and (min-width:1024px) {
    .txt__container {
        margin: 50px auto 0;
    }   

    .faq__item:first-of-type {
        margin-top: 0;
    }
    
    .faq__list {
        margin-top: 50px;
    }

    .question {
        padding: 12.5px 20px;
    }

    .faq__question__prefix {
        font-size: 2rem;
        font-weight: 800;
    }

    .faq__question__txt {
        font-size: 2rem;
        font-weight: 600;
    }

    .answer {
        padding: 10px 50px;
    }

    .answer__txt {
        font-size: 1.8rem;
    }
}

/* access & parking */
.store__front {
    display: block;
    margin: 30px auto 0;
    aspect-ratio: 17 / 12;
    object-fit: cover;
    object-position: top;
    border-radius: 8px;
}

.shop__details__list {
    width: fit-content;
    margin: 16px auto 0;
}

.shop__detail-item {
    display: flex;
}

dt {
    font-weight: 500;
    white-space: nowrap;
}

dd {
    margin-left: 3px;
}

.map {
    display: block;
    width: 100%;
    max-width: 800px;
    height: auto;
    aspect-ratio: 17 / 12;
    margin: 50px auto 0;
    border-radius: 8px;
}

.access-routes-list {
    width: fit-content;
    margin: 16px auto 0;
}

/* access & parking responsive_1024px- */
@media screen and (min-width:1024px) {
    .store__front {
        margin: 50px auto 0;
    }

    .shop__details__list {
        margin: 16px auto 0;
    }

    .map {
        margin: 50px auto 0;
    }

    .access-routes-list {
        margin: 10px auto 0;
    }
}

/* access & parking responsive_1440px- */
@media screen and (min-width:1440px) {
    .shop__info--access {
        display: flex;
        width: 800px;
        margin: 50px auto;
        align-items: center;
    }

    .store__front {
        width: 390px;
        aspect-ratio: 130/93;
        margin: 0 20px 0 0;
    }

    .shop__details__list {
        margin: 0;
    }
}