@charset "UTF-8";

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
common
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
:root{
    --primary-white: #F5F4F1;
    --primary-gray: #1B1818;
    --primary-red: #AD2D27;
}

html{
    font-size: 62.5%;
}

body {
    font-family: "Noto Sans JP",
    Arial;
    color: var(--primary-gray);
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    background-image: url("../images/bg.webp");
    background-repeat: repeat;
    background-size: cover;
}

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

/* common pc */
@media screen and (min-width: 769px) {
    .spBr {
        display: none;
    }
}
/* pc 769px */

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
footer
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.footer{
    margin: 60px 0 20px;
}

.flow {
  overflow: hidden;
}

.flow__track {
  display: flex;
  width: max-content;
  animation: flow 60s linear infinite;
}

.flow__track img {
  width: 300px;
}

@keyframes flow {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.footer__group{
    padding: 40px 6% 0;
}

.footer__navList{
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 1.3rem;
}

.footer__storeInfo{
    font-size: 1.3rem;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer__storeMapLink{
    font-size: 1.1rem;
    text-decoration: underline;
}

.footer__telBtn{
    text-decoration: underline;
}

.footer__logo{
    display: block;
    margin: 60px auto 0;
    max-width: 120px;
    height: auto;
}

.copy{
    margin-top: 20px;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 500;
}

/* footer pc */

@media screen and (min-width: 769px) {
    .flow__track{
        margin-top: 160px;
    }

    .flow__track img{
        width: 100%;
        max-width: 630px;
        height: auto;
    }

    .footer__group {
        margin: 80px 0 150px;
        padding: 0 10%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 60px;
    }

    .footer__logo {
        margin: 0;
        order: 1;
        max-width: 150px;
    }

    .footer__storeInfo {
        margin: 0;
        order: 2;
        font-size: 1.5rem;
        gap: 25px;
    }

    .footer__storeMapLink{
        font-size: 1.5rem;
    }

    .footer__navList {
        order: 3;
        display: grid;
        grid-template-columns: repeat(2, auto);
        gap: 20px 40px;
    }

    .footer__navItem{
        font-size: 1.5rem;
    }

    .copy{
        margin-top: 0;
        font-size: 1.5rem;
    }

}/* pc 769px */





