@charset "utf-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 100%;
}

body {
  font-family: Helvetica Neue、Arial、Hiragino Sans、Hiragino Kaku Gothic ProN、Meiryo、sans-serif;
}

img {
  max-width: 100%;
}

ul, ol, li {
  list-style: none;
}

a {
  text-decoration: none;
  color: #fff;
}

/* 共通 */
/* //////////////////// */
/* コンテンツ幅 */
/* //////////////////// */
.menu-wrap, .about-wrap, .location-wrap {
  max-width: 1000px;
  padding: 0 16px;
  text-align: center;
}

/* 見出しH2と画像 */
/* //////////////////// */
.menu-visual, .about-visual, .location-visual {
  padding: 10%;
  background-position: center;
  position: relative;
} 

.menu-visual {
  background-image: url(../img/about.jpg);
}

.about-visual {
  background-image: url(../img/about.jpg);
}

.location-visual {
  background-image: url(../img/location.jpg);
}

.menu h2, .about h2, .lacation h2 {
  color: #fff;
  font-size: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

/* 見出しH3 */
/* //////////////////// */
.menu-wrap h3, .about-wrap h3, .location-wrap h3 {
  display: inline-block;
  font-size: 19px;
  margin: 20px auto 20px auto;
  border-bottom: 5px solid #e03131;
}

/* //////////////////// */
/* //////////////////// */

/* ヘッダー */
/* //////////////////// */
.header-wrap {
  height: 100vh;
  width: 100%;
  background-image: url(../img/mainvisual.jpg);
  background-size: cover;
  background-position: center;
  position: relative;
}

.header-wrap h1 {
  color: #fff;
  font-size: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

/* ハンバーガーメニュー */
/* //////////////////// */
.sp-menu {
  line-height: 96px;
  margin-left: auto;
  margin-right: 16px;
}

.sp-menu #open.hide {
  display: none;
}

.sp-menu #open {
  padding: 4px;
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 1;
  opacity: 0.4;
  border-radius: 20%;
  background-color: #999;
  box-shadow: 2px 2px 2px #777;

  transition-property: all;
  transition-duration: .3s;
}

.sp-menu #open:hover {
  opacity: 0.9;
}

.sp-menu #open, .overlay #close {
  width: 40px;
  line-height: 96px;
  cursor: pointer;
}

.pc-menu {
  display: none;
}

.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background: rgba(255, 255, 255, 0.95);
  text-align: center;
  padding: 64px;
  opacity: 0;
  pointer-events: none;

  transition: opacity .6s;
}

.overlay.show {
  opacity: 1;
  pointer-events: auto;
  background-color: #999;
}

.overlay #close {
  position: absolute;
  top: 16px;
  right: 16px;
}

.overlay li {
  margin-top: 24px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .3s, transform .3s;
}

.overlay.show li {
  opacity: 1;
  transform: none;
}

.overlay.show li:nth-child(1) {
  transition-delay: .1s;
}

.overlay.show li:nth-child(2) {
  transition-delay: .2s;
}

.overlay.show li:nth-child(3) {
  transition-delay: .3s;
}

.overlay.show li:nth-child(4) {
  transition-delay: .4s;
}

.overlay a {
  color: #fff;
  text-shadow: 1px 1px 1px #555;
}

.overlay a:hover {
  font-weight: bold;
}
/* //////////////////// */


/* MENU */
/* //////////////////// */
.menu {
  margin: 10px 0 0 0; 
}

.menu-wrap {
  font-size: 14px;
  text-align: center;
  margin: 10px 0 0 0; 
}

dl {
  display: flex;
  text-align: left;
  flex-wrap: wrap;
}

dt {
  width: 88%;
  text-align: left;
  margin: 15px 0 15px 0;
  border-bottom: 1px dotted #999;
}

dd {
  width: 10%;
  padding-left: 5%;
  margin: 15px 0 15px 0;
  position: relative;
  top: 5px;
}

/* ABOUT */
/* //////////////////// */

.about p {
  font-size: 14px;
  text-align: left;
  line-height: 27px;
  margin: 0em 0 2em 0;
  letter-spacing: 1.3px;
}

.btn {
  width: 150px;
  color: #555;
  display: block;
  font-size: 14px;
  text-align: center;
  padding: 15px 30px;
  margin: 0 auto 60px auto;
  position: relative;

  -webkit-transition: all .3s;
  transition: all .3s;
}

.btn::before {
  content:' ';
  width: 25px;
  height: 25px;
  position: absolute;
  top: 0px;
  left: 0px;
  border-top: 2px solid #e03131;
  border-left: 2px solid #e03131;

  -webkit-transition: all .3s;
  transition: all .3s;
}

.btn::after {
  content:' ';
  width: 25px;
  height: 25px;
  position: absolute;
  top: 25px;
  right: 0px;
  border-right: 2px solid #e03131;
  border-bottom: 2px solid #e03131;

  -webkit-transition: all .3s;
  transition: all .3s;
}

.btn:hover::before {
  width: calc(100% - 2px);
  height: 100%;
}

.btn:hover::after {
  width: calc(100% - 2px);
  top: 0;
  height: 100%;
}

/* LACATION */
/* //////////////////// */
.location-wrap {
  margin: 0 0 80px 0;
}

.location-wrap iframe {
  filter:grayscale(100%);
}

address {
  font-size: 14px;
  text-align: left;
}

address p {
  padding: 1em 0 0 0;
}

/* フッター */
/* //////////////////// */

footer {
  font-size: 12px;
  text-align: center;
  letter-spacing: 1px;
  padding: 0 0 10px 0;
}

@media screen and (min-width: 750px){
  .sp-menu img, .overlay {
    display: none;
  }

  .pc-menu {
    display: block;
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 1;
  }

  .header-list {
    display: flex;
    align-items: flex-start;
    font-size: 14px;
    font-weight: bold;
  }
  
  .header-list li {
    padding: 16px 15px 16px 22px;
    text-shadow: 1px 1px 2px #555;
  }
  
  .header-list a {
    transition: all;
    transition-duration: .3s;
  }
  
  .header-list a:hover {
    color: #e03131;
  }

  .menu {
    margin: 20px 0 0 0; 
  }
  .menu-visual, .about-visual, .location-visual {
    background-attachment: fixed;
  
    /* height: 100%; */
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: center; */
    /* background-size: cover; */
    /* background-repeat: no-repeat; */
  } 

  .menu h2, .about h2, .lacation h2 {
    font-size: 70px;
  }

  .menu-wrap {
    display: flex;
    margin: 60px auto 140px auto;
    justify-content: space-between;
  }

  .menu-wrap h3:nth-child(3) {
    margin-top: 80px;
  }

  .menu-coffee {
    width: 47%;
    padding-left: 40px;
  }

  .menu-food-other {
    width: 47%;
    padding-left: 40px;
    margin-right: 20px;
    border-left: 1px solid #555;
  }

  .menu-wrap h3, .about-wrap h3, .location-wrap h3 {
    font-size: 40px;
    display: inline-block;
    margin: 20px auto 60px auto;
  }

  .about-wrap {
    margin: 60px auto 140px auto;
  }

  .about-text {
    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    margin-bottom: 40px;
  }

  .about-text p {
    width: 90%;
  }

  .location-wrap {
    margin: 80px auto 160px auto;
  }

  address {
    padding-top: 10px;
  }
}
