@charset "utf-8";

/* ============================================
article__header
=============================================== */
.mainVisual {
    background-color: var(--primary-red);
    width: 100%;
}

.mainVisual__sp {
    width: 100%;
    position: relative;
    display: block;
    margin: 0 auto;
}

.mainVisual__pc {
    display: none;
}

/* article__header PC 769px< */

@media screen and (min-width:769px) {
    .mainVisual .mainVisual__sp {
        display: none;
    }

    .mainVisual__pc {
        display: block;
        width: 100%;
    }
}

/* ============================================
article__section section--information
=============================================== */
.section--information{
    margin-top: 60px;
    padding: 0 var(--contntPadding);
}

.cloud_1 {
    animation-duration: 8s;
    position: fixed;
    top: 30%;
}

.section--news,
.section--instagram {
    padding: 50px 25px;
    border:  solid 1.5px var(--primary-black);
    margin: 0 auto;
    position: relative;
    z-index: 50;
    background-color:rgba(248, 246, 246, 0.7)
}

.newsList,
.section--instagram img {
    margin-top: 45px;
}

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

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

.newsList__item span {
    display: block;
    margin-top: 10px;
    font-size: 1.4rem;
}

.section--instagram {
    margin-top: 30px;
}

.section--instagram img {
    width: 300px;
    max-width: 100%;
    display: block;
    margin: 45px auto 0;
}

.section--instagram img:hover {
    opacity: 0.5;
}

.cloud_2 {
    animation-duration: 11s;
}


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

@media screen and (min-width:769px) {
    .section--information{
        margin: 100px auto 0;
        display: flex;
        gap: 30px;
        align-items:center;
        width: var(--contenPCtWidth);
    }

    .cloud_1 {
        position: fixed;
        top: 50%;
    }

    .section--news,
    .section--instagram {
        padding: 80px 25px;
        border:  solid 2px var(--primary-black);
        width: 560px;
        height: 603px;
    }
    
    .newsList,
    .section--instagram img {
        margin-top: 60px;
    }

    .newsList__item time {
        width: 115px;
        padding: 5px 20px;
        font-size: 1.5rem;
    }

    .newsList__item span {
        display: block;
        margin-top: 10px;
        font-size: 1.8rem;
    }

    .section--instagram {
        margin-top: 0;
    }

    .section--instagram img {
        width: 500px;
        max-height: 405px;
        max-width: 100%;
        margin: 60px auto 0;
    }

    .cloud_1 {
        translate: 100% -150%;
    }

    .cloud_2 {
        translate: 100% 180%; 
        animation-duration: 11s;
}
}

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

.commitment__detail {
    margin-top: 45px;
}

.commitment__container {
    margin-top: 60px;
}

.commitment__container:first-of-type {
    margin-top: 45px;
}

.commitment__img {
    max-width: 100%;
    width: 317px;
    display: block;
    margin: 0 auto;
    object-fit: cover;
}

.commitment__box {
    margin-top: 20px;
}

.commitment__title {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
}

.commitment__text {
    margin-top: 40px;
    font-size: 1.4rem;
}

.cloud_3 {
    animation-duration: 10s;
}

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

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

    .commitment__detail {
        margin: 90px auto 0;
        max-width: var(--contenPCtWidth);
        align-items: center;
    }

    .commitment__container {
        display: flex;
        gap: 15px;
        margin-top: 70px;
    }

    .commitment__container:first-of-type {
        margin-top: 90px;
    }

    .commitment__container--style01 {
        flex-direction: row-reverse;
    }

    .commitment__container--style03 {
        flex-direction: row-reverse;
    } 

    .commitment__box {
        min-width: 300px;
        margin-top: 0;
    }

    .commitment__title {
        font-size: 2.3rem;
    }

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


/* ============================================
article__section section--menu
=============================================== */

.section--menu {
    margin-top: 60px;
    background-color: var(--primary-red);
    width: 100%;
}

.section--menu h2 {
    color:var(--primary-white);
}

.menu_animation {
  display: flex;
  align-items: center;
  overflow-x: hidden;
  gap: 20px;
}

.menu__topImg {    
  margin-top: 45px;    
  display: flex;      
  justify-content: center;    
  animation-name: menuanimation;    
  animation-timing-function: linear;    
  animation-duration: 10s; 
  animation-delay: 1s;   
  animation-iteration-count: infinite;    
  animation-fill-mode: both; 
  gap: 20px;   
} 

/* animation */
@keyframes menuanimation{
  from{
    transform:translateX(0%)
  }
    to{
    transform:translateX(-100%);
  }
}

.imgItem {
    width: 69.2px;
    height: 69.2px;
}

.btn--menu {
    margin: 45px auto 0;
    width: 150px;
}

.btn {
    display: block;
    background-color: var(--primary-black);
    color: var(--primary-white);
    padding: 10px 20px 10px 5px;
    text-align: center;
    font-size: 1.4rem;
    border-radius: 4px;
    line-height: 1;
    position: relative;
    transition: 0.4s;
}

.btn::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url(../images/icon-arrow.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    right: 10px;
    /* top: 16px; */
    top: 50%;
    transform:translateY(-50%);
}

.btn:hover {
    opacity:0.5 ;
}

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

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

    .menu_animation {
        gap: 25px;
    }

    .menu__topImg {
        margin-top: 90px;
        gap: 25px;
    }

    .imgItem {
        width: 139px;
        height: 139px;  
    }

    .btn--menu {
        margin: 90px auto 0;
        width: 200px;
    }

    .btn {
        padding: 20px 35px 20px 10px;
        font-size: 1.8rem;
    }

    .btn::after {
        width: 30px;
        height: 30px;
        right: 15px;
    }
}

@media screen and (min-width:1024px) {
    .imgItem {
        width: 202px;
        height: 202px;
    }
}


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

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

.cloud_4 {
    animation-duration: 14s;
}

.storeInfo {
    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;
    width: var( --contentWidth);
}

.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 {
        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;
    }
}


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

.storeImg {
    margin-top: 45px;
    max-width: 100%;
    display: block;
    margin: 45px auto 0px;
    text-align: center;
}

.storeImg__interior {
    margin-top: 30px;
}

.address__text {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    align-items: center;
    justify-content: center;
}

.address__text img {
    width: 15px;
}

.address__text p {
    font-size: 1.3rem;
}

.adress iframe {
    width: 100%;
    height: 300px;
    display: block;
    margin: 10px auto 0px;
}

.cloud_5 {
    animation-duration: 12s;
}

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

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

    .storeImg {
        margin-top: 90px;
        display: flex;
        justify-content: center;
        gap: 30px;
    }

    .storeImg__exterior,
    .storeImg__interior {
        max-width: 100%;
    }

    .storeImg__interior {
        margin-top: 0;
    }

    .address__text {
        margin-top: 40px;
    }

    .spBr {
        display: none;
    }

    .address__text p {
        font-size: 1.8rem;
    }

    .adress iframe {
        width: 100%;
        margin: 25px auto 0px;
        height: 400px;
    }
}


/* ============================================
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;
    } 
}

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

.loading__video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    position: fixed;
    z-index: 200;
    animation-name: fadein;
    animation-duration: 3s;
    animation-timing-function:linear;
}

.loading__text {
    font-size: 2.1rem;
    font-weight: 600;
    line-height: 1.8;
    text-align: center;
    color: var(--primary-white);
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 300;
    animation-name: textfadein;
    animation-delay: 1s;
    animation-duration: 2s;
    animation-timing-function: ease-in;
}

@keyframes textfadein {
   0% {
     opacity: 0;
   }
   50% {
    opacity: 0.5;
   }
   100% {
    opacity: 1;
   }
}

/* end of loding */
.loading__video.loaded {
    display: none;
}

.loading__text.loaded {
      display: none;
}

/* fadein container */
.container {
    opacity: 0;
}
.container.open {
    opacity: 1;
}

/* loading view PC 769px< */

@media screen and (min-width:769px) {
    .loading__video {
        width: 100%;
        height: 100vh;
    }

    .loading__text {
        font-size: 3.2rem;
        line-height: 1.8;
    }
}



    

