/* 共通スタイル */
body{
  font-family: 'noto Sans JP', sans-serif;
  background-color:#fff;
  color: #161616;
}

.title{
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.container{
  max-width: 1280px;
  width: 90%;
  margin: 0 auto;
}

.bth{
  font-size: 18px;
  border: solid 1px #161616;
  border-radius: 100px;
  display: inline-block;
  width: 270px;
  line-height: 60px;
  text-align: center;
  transition: .2s;
  color: #161616;
}

.bth:hover{
  color: #e5dbb5;
  border: solid 1px #8e6e49;
  transition: .2s;
}

/* header */
#header{
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  margin-top: 20px;
  color: #161616;
}

/*非アクティブ */
#hmb{
  width: 32px;
  height: 28px;
  cursor: pointer;
  position: relative;
  z-index: 30;
}

#hmb span{
  width: 32px;
  height: 3px;
  display: block;
  background-color: #000;
  border-radius: 2px;
  position: absolute;
  transition: .2s;
}

#hmb span:first-child{top:0}

#hmb span:nth-child(2){top:12px}

#hmb span:last-child{top:24px}

nav{
  position: fixed;
  top: 0;
  right: 0;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 20px;
  background-color:#fff;
  z-index: 20;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition-property:all;
  transition-duration:.2s;
}

nav ul li a{
  display: block;
  margin-bottom: 16px;
}

/*アクティブ */
.active #hmb span:first-child{
  top: 12px;
  transform: rotate(45deg);
}

.active #hmb span:nth-child(2){
  opacity: 0;
}

.active #hmb span:last-child{
  top: 12px;
  transform: rotate(-45deg);
}

.active nav{
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}

/* main*/
.slider-container {
  position: relative;
  width: 90%;
  margin: 0 auto;
  max-width: 1280px;
  height: 640px;
  position: relative;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide.active {
  opacity: 1;
}

.main h1{
  font-size: 70px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
}

.main p{
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-left: 20px;
}

.main .title{
  position: absolute;
  bottom: 100px;
  margin-left: 20px;
}

/* about */
.about{
  padding: 50px 0;
}

.about .row{
  display: flex;
  justify-content: space-between;
}

.about .col{
  width: 48%;
}

.about h2{
  font-size: 48px;
  font-weight: 700;
  line-height: 1.6;
}

.about .text{
  font-size: 18px;
  line-height: 1.8;
  padding: 50px 0;
}

/* menu */
.menu{
  padding: 40px 0;
}

.menu img{
  width: 100%;
  height: 300px;
  object-fit: cover;
  margin-bottom: 10px;
}

.menu .row{
  display: flex;
  justify-content: space-between;
}

.menu .col{
  width: 32%;
}

.menu h3{
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.menu .info  div{
  display: flex;
  justify-content: space-between;
}

.menu p{
  font-size: 15px;
  font-weight: 500s;
}
/* location */ 
.location{
  padding: 40px 0;
}

.location .row{
  display: flex;
  justify-content: space-between;
  margin: 50px 0;
}

.location .col{
  width: 48%;
}

.location h2{
  font-size: 55px;
  font-weight: 700;
  margin: 10px 0;
}

.location h3{
  font-size: 40px;
  font-weight: 500;
  width: 170px;
  height: 50px;
  background-color: #161616;
  color: #fff;
  line-height: 40px;
  text-align: center;
}

.location h4{
  font-size: 30px;
  font-weight: 400;
  margin: 10px 0;
}

.location p{
  font-size: 20px;
  font-weight: 400;
}

/*NEWS */
.news{
  padding: 50px 0;
}

.news .row{
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.news .col:first-child{
  width: 40%;
}

.news .col:last-child{
  width: 56%;
}

.news h1{
  font-size: 48px;
  font-weight: 700;
}

.news .heading{
  font-size: 14px;
  margin-bottom: 40px;
}

.news li{
  border-bottom: solid 1px #333;
  padding: 20px 0;
  font-size: 15px;
}

.news li span{
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}


/* flex*/
.flex{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 60px;
}

.column-a{
  background-image: url(./imges/cafe.jpg);
  background-position: center;
  background-size: cover;
  height: 270px;
  width: 24%;
}

.column-b{
  background-image: url(./imges/cafe2.jpg);
  background-position: center;
  background-size: cover;
  height: 270px;
  width: 18%;
}

.column-c{
  background-image: url(./imges/cafe3.jpg);
  background-position: center;
  background-size: cover;
  height: 270px;
  width: 24%;
}

.column-d{
  background-image: url(./imges/cafe4.jpg);
  background-position: center;
  background-size: cover;
  height: 270px;
  width: 28%;
}

/* footer */
footer{
  text-align: center;
  margin: 90px 0;
}

.sns_link{
  display: flex;
  justify-content: center;
}

.sns_logo{
  height: 50px;
  width: 50px;
  margin: 20px 10px;
}

.logo{
  font-size: 36px;
  font-weight: 700;
  color: #161616;
}

.copyright{
  font-size: 12px;
  margin-top: 40px;
}

/* スマホ用スタイル */
@media screen and (max-width:768px) {
  /* main */
  .main h1{
    font-size: 35px;
  }

  .slider-container {
    position: relative;
    width: 90%;
    margin: 0 auto;
    max-width: 1280px;
    height: 500px;
    position: relative;
    overflow: hidden;
  }

  /* about */
  .about .row{
    flex-wrap: wrap;
  }

  .about .col{
    width: 100%;
  }

  .about h2{
    font-size: 28px;
  }

  /* menu */
.menu .row{
  flex-wrap: wrap;
  gap: 24px;
}

.menu .col{
  width: 100%;
}

  /* location */
  .location .row{
    flex-wrap: wrap;
  }
  
  .location .col{
    width: 100%;
  }

  .location h2{
    font-size: 35px;
    font-weight: 700;
  }
  
  .location h3{
    font-size: 30px;
    font-weight: 500;
  }
  
  .location h4{
    font-size: 25px;
    font-weight: 400;
  }
  
  .location p{
    font-size: 20px;
    font-weight: 300;
  }

  .location_image{
    margin-top: 20px;
  }

  /* news*/
  .news .row{
    flex-wrap: wrap;
  }
 
  .news .col:first-child{
    width: 100%;
  }

  .news .col:last-child{
    width: 100%;
  }
}