@charset "utf-8";

/* ============================================
common
=============================================== */
:root {
    --primary-black:#2B2B2B;
    --primary-red:#D20000;
    --primary-white:#FFFFFF;
    --contentWidth:80.6%;
    --contntPadding:2.5%
}

html {
    font-size: 62.5%;
}

body {
    font-family: 
        "Noto Sans JP",
        sans-serif,
        Arial;
    font-style: normal;
    font-weight: 400;
    color: var(--primary-black,);
    line-height: 1.5;
    background-color: #F8F6F6;
    overflow-x: hidden;
}

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

.topic {
    font-family: "Noto Sans JP";
    font-size: 2rem;
    color: var(--primary-red);
    text-align: center;
    font-weight: 700;
}

section {
    padding: 50px 10px;
    width: var(--contentWidth);
    margin: 0 auto;
    z-index: 10;
}

.cloud {
    width: 200px;
    display: block;
    pointer-events: none;
    overflow-x: hidden;    
    translate: 100% 0;    
    animation-name: animation;     
    animation-timing-function:ease-in;     
    animation-iteration-count:infinite;    
    position: absolute;      
    z-index: 1;
}

@keyframes animation{
  from{
    transform: translateX(250%);
  }
    to{
   transform: translateX(-250%);
  }
}


/* common PC 769px< */

@media screen and (min-width:769px) {
    :root {
        --contenPCtWidth:80.5%;
        --contntPCPadding:2.1%
    }

    .topic {
        font-size: 2.8rem;     
    }

    .section {
        padding: 80px 10px;
    }

    .cloud {
        width: 400px;
    }
}


/* ============================================
header
=============================================== */
.header {
    width: 100%;
    height:80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    background-color: var(--primary-red);
    position: sticky;
    top: 0;
    left: 0;
    z-index: 100;
}

.header__logo img {
    width: 130px;
    height: 49px;
}

/* .spnavの初期表示 */

.spnav {
    background-color: var(--primary-white);
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 13px;
    left: 0;
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.4s;
    opacity: 0.95;
}

.spnav__header {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    background-color: var(--primary-red);
}

.spnav__logo {
    width: 130px;
    height: 49px;
}

.spnav__list {
    color: var(--primary-black);
    font-size: 2rem;
    width: var(--contentWidth);
    margin: 10px auto 0;
}

.spnav__item {
    padding: 30px 0 ;
    position: relative;
    border-bottom: solid 1px var(--primary-black);
}

.spnav__item a {
    margin-left: 40px;
}

.spnav__item::before {
    content: "";
    display: inline-block;
    background-image: url(../images/spnav_icon.svg);
    background-size: contain;
    background-repeat:no-repeat;
    background-position: center;
    position: absolute;
    top: 42%;
    width: 16px;
    height: 16px;
}

.spnav__btn,
.header__btn {
    display: block;
    width: 23px;
    height: 17px;
}

/* .spnav activeがついた時 */
.spnav.active {
    transform: translateX(0);
}

/* header PC 769px< */

@media screen and (min-width:769px) {
    .header {
        height:100px;
        padding: 10px 30px;
    }

    .spnav__header {
        display:none;
    }

    .spnav {
        background-color: transparent;
        width: auto;
        height: auto;
        padding: 0;
        position: static;
        transform: translateX(0);
    }

    .spnav__list {
        display: flex;
        gap: 60px;
        align-items: center;
        margin-top: 0;
        color: var(--primary-white);
        font-size: 1.4rem;
        font-weight: 500;
        width: auto;
    }

    .spnav__item {
        position: static;
        writing-mode: vertical-lr;
        border-bottom: 0px 
    }

    .spnav__item::before {
        display:none;
    }

    .spnav__item:hover {
        opacity: 0.5;
    }

    .header__btn {
        display: none;
    }
}


@media screen and (min-width:769px){
    .section--menu {
        margin-top: 100px;
}
    


/* ============================================
article__section section--storeInfo
=============================================== */
.section--storeInfo {
    margin-top: 60px;
}

.topic--storeInfo {
    position: relative;
    z-index:3 ;
}

.cloud_4 {
    animation-duration: 14s;
}

.storeInfo {
    width: var(--contentWidth);
    margin: 45px auto 0;
    padding: 5px;
    border:  solid 1.5px var(--primary-black);
    background-color:rgba(248, 246, 246, 0.7);
    position: relative;
    z-index: 20;
}

.storeInfo__list {
    border-bottom: 1px solid var(--primary-black);
    display: block;
    padding: 10px 20px;
}

.storeInfo__list:last-of-type {
    border-bottom: 0;
}

.storeInfo__item {
    font-size: 1.2rem;
    font-weight: 400;
    display: block;
    width: 100px;
    padding: 5px 20px;
    border-radius: 4px;
    background-color: var(--primary-black);
    text-align: center;
    color:var(--primary-white)
}

.storeInfo__text {
    font-size: 1.4rem;
    margin-top: 10px;
}

.storeImg__exterior {
    width: 270px;
}

.storeImg__interior {
    width: 270px;
}

/* article__section section--storeInfo PC 769px< */

@media screen and (min-width:769px) {
    .section--storeInfo {
        margin-top: 100px;
    }

    .storeInfo {
        width: var(--contenPCtWidth);
        margin: 90px auto 0;
        padding: 10px 0;
        border:  solid 2px var(--primary-black);
    }

    .storeInfo__list {
        display: flex;
        gap: 30px;
        align-items: baseline;
        padding: 20px;
    }

    .storeInfo__item {
        font-size: 1.5rem;
        width: 125px;
    }

    .storeInfo__text {
        font-size: 1.8rem;
        margin-top: 0;
    }
}


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

.footerNav {
    background-color:var(--primary-red);
    padding: 50px 10px;
}

.footer__logo img {
    width: 317px;
    display: block;
    margin: 0 auto;
}
   
.footer__address address{
    color: var(--primary-white);
    margin-top: 10px;
    text-align: center;
    font-size: 1rem;
}

.footernav__list {
    text-align: center;
    margin-top: 40px;
    /* display: flex;
    flex-wrap: wrap;
    width: var(--contentWidth); */
}

.footernav__item {
    color: var(--primary-white);
    margin-top: 20px;
    font-size: 1.2rem;
}

.footernav__item:first-of-type {
    margin-top: 40px;
}

.footernav__item:hover {
        text-decoration: underline;
        color: var(--primary-white);
    }

.sns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    border: 1px solid var(--primary-white);
    padding: 20px;
    width: 80.7%;
    margin: 40px auto 0;
    text-align: center;
    border-radius: 4px;
    line-height: 1;
    background-color: var(--primary-red);
    position: relative;
    transition: 0.4s;
}

.sns img {
    width: 20px;
    display: block;
}

.sns p {
    color: var(--primary-white);
    font-size: 1.4rem;
    font-weight: 500;
}

.sns:hover {
    opacity:0.5 ;
}

.footer_copy {
    margin: 40px 0 20px;
}

.copy {
    text-align: center;
    position: relative;
}

.copy::before {
    content: '';
    display: block;
    position: absolute;
    top: -10px;
    background-color: var(--primary-black);
    color: var(--primary-black);
    width: 100%;
    height: 1px;
}

.copy small {
    font-size: 1rem;
} 

/* fotter PC 769px< */

@media screen and (min-width:769px) {

    .footer__logo img {
        width: 547px
    }

    .footer__address address{
        font-size: 1.5rem;
    }

    .footernav__list {
        margin-top: 60px;
        display: flex;
        justify-content: center;
        gap: 50px;  
    }

    .footernav__item {
        margin-top: 0;
        font-size: 1.8rem;
        font-weight: 500;
    }

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

    .footernav__item:hover {
        text-decoration: underline;
        color: var(--primary-white);
    }

    .sns {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 30px;
        border: 1.5px solid var(--primary-white);
        padding: 25px 0;
        width: var(--contenPCtWidth);
        margin: 60px auto 0 ;
    }

    .sns p {
        color: var(--primary-white);
        font-size: 1.7rem;
        font-weight: 500;
}

    .footer_copy {
        margin: 50px 0 30px;
    }

    .copy {
        margin-top: 50px;
    }

    .copy::before {
        top: -20px;
    }

    .copy small {
    font-size: 1.5rem;
} 
}

