@charset "UTF-8";

/*共通部分
ーーーーーーーーーーーーーーーーーーーーーーーー*/
html{
    font-size: 100%;
}
body{
    font-family: 'Oswald', sans-serif;
    font-family: 'Sawarabi Gothic', sans-serif;
    line-height: 1.7;
    color: #333333;
    font-size: 0.9rem;
}
a{
    color: #333333;
    text-decoration: none;
}
img{
    max-width: 100%;
}
li{
    list-style: none;
}
h2{
  padding: 20px;
  font-size: 20px;
}
/*
フェード表示させる要素に使用するためのクラス
*/
.fadein {
  opacity : 0;
  transform: translateY(20px);
  transition: all 1s;
}

/*------------------------------------------------
ヘッダー
------------------------------------------------*/
#header{
    position: fixed;  /*上部に固定--*/
    top: 0;
    left: 0;
    width: 100%;  /*幅を１００％で固定*/
    height: 50px;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: space-between;
    padding: 4px 60px;
    position: fixed;
    z-index: 10;
}

/*-----------------------------
ハンバーガーメニュー--------------*/

#navi {
  display: block;
  position: fixed;
  top: 0;
  left: -300px;
  bottom: 0;
  width: 300px;
  color: #fff;
  padding: 60px 25px;
  background-color: #121212;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: all .5s;
  z-index: 20;
  opacity: 0;
}
#navi a {
  color: #fff;
  }
.open #navi {
  left: 0;
  opacity: 1;
}
#navi ul {
  margin: 0;
  padding: 0;
}
#navi ul.nav-menu {
  margin-bottom: 60px;
  border-top: solid 1px #fff;
  }
#navi ul.nav-menu li {
  position: relative;
  margin: 0;
  padding: 20px 0;
  border-bottom: solid 1px #fff;
}
#navi ul.nav-sns li {
  padding: 5px 0;
}
.toggle_btn {
  display: block;
  position: fixed;
  top: 15px;
  right: 45px;
  width: 30px;
  height: 30px;
  transition: all .5s;
  cursor: pointer;
  z-index: 20;
}
.toggle_btn span {
  display: block;
  position: absolute;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #333;
  border-radius: 4px;
  transition: all .5s;
}
.toggle_btn span:nth-child(1) {
  top: 4px;
}
.toggle_btn span:nth-child(2) {
top: 14px;
}
.toggle_btn span:nth-child(3) {
  bottom: 4px;
}
.open .toggle_btn span {
  background-color: #fff;
}
.open .toggle_btn span:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(-315deg);
  transform: translateY(10px) rotate(-315deg);
}
.open .toggle_btn span:nth-child(2) {
  opacity: 0;
}
.open .toggle_btn span:nth-child(3) {
  -webkit-transform: translateY(-10px) rotate(315deg);
  transform: translateY(-10px) rotate(315deg);
}
#mask {
  display: none;
  transition: all .5s;
}
.open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .8;
  z-index: 10;
  cursor: pointer;
}
  
h1{
    font-size: 24px;
    font-family: 'Oswald', sans-serif;
}
#main{
    margin-top: 50px; /*ヘッダーの高さ分、一時的なマージンを付加*/
}
/*video--------------------------------
-------------------------------------*/
#main-video{
  width: 100%;
}

.sec-title{
  text-align: center;
  font-size: 24px;
  font-family: 'Oswald', sans-serif;
}

/*スライダー-----------------------------
-------------------------------------*/
.slider{
  width: 100%;
  margin: 0% auto;
  overflow: hidden;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.slider-content{
  min-width: 100%;
  animation: sliderAnime 20s ease-in-out infinite;
}
@keyframes sliderAnime{
  0%{

  }
  10%{
      transform: translateX(0);
  }
  20%{
      transform: translateX(-100%);
  }
  30%{
      transform: translateX(-100%);
  }
  40%{
      transform: translateX(-200%);
  }
  50%{
      transform: translateX(-200%);
  }
  60%{
      transform: translateX(-300%);
  }
  70%{
      transform: translateX(-300%);
  }
  80%{
      transform: translateX(-400%);
  }
  90%{
      transform: translateX(-400%);
  }
  100%{
      transform: translateX(0);
  }
} 
.slider__img{
  max-width: 100%;
  min-width: 100%;
}
/*------------------------------------------
#category-----------------------------------*/
#category {
  max-width: 1240px;
  padding: 100px 16px 50px 16px;
  margin: -50px auto 10px auto;
}
.category-name{
  font-family: 'Oswald', sans-serif;
}

/*
グリッドレイアウト
*/
#category .grid {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin: 0 auto;
}
#category .grid .item {
  transition: all  0.3s ease;
  box-shadow: 0 0 8px 4px #ccc;
}
#category .grid img{
  vertical-align: top;
}
#category .grid .item-content {
  padding: 30px;
}
#category .grid .category-name {
  font-size: 0.75rem;
  margin-bottom: 20px;
  font-size: large;
}
#category .grid .category-text {
  font-weight: bold;
  margin-bottom: 20px;
}
#category .item1{
  margin: 30px 45px;
  width: 300px;
}

#contact{
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
.btn{
  width: 209px;
  padding: 14px 0 16px 0;
  font-size: 16px;
  position: relative;
  text-align: center;
  text-decoration: none;
  display: block;
  margin: 0 auto;
  color: #fff;
  background: #444;
  line-height: 1;
  border-radius: 50px;
  transition: all .2s;
}
.btn:hover{
  opacity: 0.6;
}
.footer{
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
.footer-store{
  display: flex;
  justify-content: space-around;
  background-color: #EEEEEE;
}
.logo{
  height: 190px;
  padding: 13px 4%;
  text-align: center;
}
.footer img{
  width: 200px;
}

.address{
  margin: 0 auto;
  display: flex;
  flex-flow: column;
  padding: 40px;
}
.post{
  font-size: 1rem;
}
.address1{
  font-size: 1.5rem;
}
.phone{
  font-size: 1.5rem;
}
.access iframe{
  width: 100%;
  vertical-align: bottom;
}
.footer-info{
    height: 90px;
    background-color: #70707070;
    color: #FFFFFF;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.copyright{
  width: 30%;
  margin: 0 auto;
  text-align: center;
  padding: 40px;
}
.sns-icon{
  margin: 0 auto;
  padding: 20px 40px;
  text-align: right;
}
.sns-icon img{
  width: 5%;
}
/*-----------------------------
sp---------------------------*/
@media screen and (max-width: 600px) {
  .sec-title{
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  #header{
    padding: 15px 9px;
  }
  .toggle_btn{
    right: 20px;
  }
  #main-video{
    width: 100%;
    height: 100vh;
    object-fit: cover;
  }
/*----------------------
category---------------*/
  #category{
    padding: 80px 16px;
  }
  #category .grid .item-content{
    padding: 16px;
  }
/*------------------------
footer-------------------*/
  .footer{
    padding: 20px;
  }
  .footer-store{
    flex-direction: column;
  }
  .footer-store, .footer-info{
    width: 100%;
  }
  .post, .address1, .phone{
    font-size: 1.5rem;
  }

.sns-icon img{
  width: 12px;
}
}
