@charset "UTF-8";

/*========= base ===========*/

*,
*:before,
*:after {
  box-sizing: inherit;
  background-repeat: no-repeat;
}

html {
  font-size: 100%;
}

body {
  font-family: "Helvetica Neue", "Arial", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-weight: 400;
  line-height: 1.7;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
}

ul,
li {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: #fff;
}

a:visited {
  color: #fff;
}

a:hover {
  transition: .3s;
  color: #d00;
}

h1,
h2 {
  filter: drop-shadow(1px 1px 10px #c0c0c0);
}

h1 {
  width: 30%;
}

h2 {
  position: absolute;
  top: 30%;
  width: 100%;
  font-size: 75px;
  text-align: center;
  color: #fff;
}

h3 {
  display: inline-block;
  font-size: 40px;
  border-bottom: 6px solid #d00;
  margin-bottom: 55px;
}

dl {
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  margin-bottom: 0;
}

dt {
  width: 87%;
  text-align: left;
  border-bottom: 1px dotted #000;
  margin: 10px 0;
}

dd {
  width: 13%;
  text-align: right;
  margin: 10px 0;
}

.wrapper {
  max-width: 1000px;
  width: 100%;
  margin: 90px auto 180px auto;
  padding: 0 16px;
  text-align: center;
}

.bg {
  height: 300px;
  background-size: cover;
  background-position: center;
  position: relative;
}

/* animation */
.fade-in {
  --property: opacity;
  --easing: ease;
  --duration: 1s;

  opacity: 0;
  transition:
    var(--property) var(--duration) var(--easing);
}

.fade-in.animated {
  opacity: 1;
}

.clip-animation {
  --property: clip-path;
  --easing: cubic-bezier(0.19, 1, 0.22, 1);
  --duration: 1.5s;
  --stating-path: inset(0 100% 0 0);
  --end-path: inset(0 0 0 0);
  clip-path: var(--stating-path);
  transition:
    var(--property) var(--duration) var(--easing);
  --stating-path: inset(0 100% 0 0);
}

.clip-animation.animated {
  clip-path: var(--end-path);
}

/*========= header ===========*/

.header {
  position: relative;
  background-image: url(../img/mainvisual.jpg);
  background-position: center top;
  background-size: cover;
  color: #fff;
  height: 100vh;
  width: 100%;
  margin-bottom: 20px;
}

.header__nav ul {
  justify-content: flex-end;
  font-size: 14px;
  font-weight: 700;
  padding-right: 25px;
}

.header__nav ul li {
  padding: 20px 15px;
  filter: drop-shadow(1px 1px 2px #000);
}

.header__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*========= menu ===========*/

.menu-section__header {
  background-image: url(../img/menu.jpg);
}

.menu-section__wrapper {
  display: flex;
}

.menu-item {
  width: 50%;
  text-align: center;
  padding: 0 50px;
}

.menu-item--coffee {
  border-right: 1px solid #000;
}

.menu-item--combined dl:first-of-type {
  margin-bottom: 50px;
}

/*========= about ===========*/

.about-section__header {
  background-image: url(../img/about.jpg);
}

.about-section__content {
  font-size: 15px;
}

.about-section__content ul {
  flex-wrap: wrap;
  justify-content: space-between;
}

.about-section__content ul li {
  width: 50%;
  text-align: left;
  padding: 20px;
}

/* button animation */
#read-more {
  width: 160px;
  height: 50px;
  line-height: 3.5;
  display: inline-block;
  color: #000;
  padding: 0;
  margin-top: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

#read-more span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

/* right-line bottom-line move*/
#read-more::before,
#read-more::after {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  background: #e03131;
  transition: all 0.3s ease;
}

/* left-line top-line move*/
#read-more span::before,
#read-more span::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  background: #e03131;
  transition: all 0.3s ease;
}

/* vertical draw */
#read-more::before,
#read-more span::before {
  width: 2px;
  height: 50%;
}

/* border draw */
#read-more::after,
#read-more span::after {
  width: 20%;
  height: 2px;
}

/* vertical hover */
#read-more:hover::before,
#read-more span:hover::before {
  height: 100%;
}

/* border hover */
#read-more:hover::after,
#read-more span:hover::after {
  width: 100%;
}

/*========= location ===========*/

.location-section__header {
  background-image: url(../img/location.jpg);
}

.location-section__info {
  font-size: 14px;
  text-align: center;
}

.location-section__info p {
  margin: 10px 0;
}

iframe {
  height: 400px;
  width: 100%;
  padding-top: 15px;
  filter: grayscale(1);
}

/*========= footer ===========*/

.footer {
  text-align: center;
  width: 100%;
}

.copyright {
  font-size: 8px;
  margin: 170px 0 10px 0;
}

/*========= SP ===========*/

@media only screen and (max-width: 767px) {
  /*========= base ===========*/

  h1 {
    width: 90%;
  }

  h2 {
    top: 20%;
    font-size: 32px;
  }

  h3 {
    font-size: 20px;
    margin: 20px auto;
  }

  .bg {
    height: 95px;
  }

  .wrapper {
    display: block;
    margin: 30px auto;
  }

  dl {
    margin-bottom: 0;
  }


  /*========= header ===========*/

  .header {
    margin-bottom: 10px;
  }

  /*========= menu ===========*/

  .menu-item--coffee {
    border: none;
  }

  .menu-item {
    width: 100%;
    padding: 0;
  }

  .menu-item--combined dl:first-of-type {
    margin-bottom: 0;
  }

  .menu-item--combined dl:last-of-type {
    margin-bottom: 100px;
  }

  /*========= about ===========*/

  .about-section__content {
    margin: 0 auto;
  }

  #read-more {
    margin-bottom: 100px;
  }

  .about-section__content ul li {
    display: block;
    font-size: 14px;
    width: 100%;
    padding: 8px;
  }

  /*========= location ===========*/

  .location-section__content h3 {
    margin: 0 auto 20px auto;
  }

  iframe {
    border: 2px solid #888;
    padding-top: 0;
  }

  .location-section__info {
    font-size: 15px;
  }

  .location-section__info p {
    margin: 15px 0;
  }

  /*========= footer ===========*/

  .copyright {
    margin: 90px 0 10px 0;
  }
}
