@charset "UTF-8";
.html {
  font-size: 62.5%;
  background: #ede6e2;
}

body {
  background: #ede6e2;
  color: #572e1d;
  font-size: 1.6rem;
  line-height: 1.6em;
  margin: 0;
  font-family: "Kiwi Maru", serif;
}

.img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

@media (min-width: 1200px) {
  .is-sp {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1200px) {
  .is-sp {
    display: none;
  }
}

.inner {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .inner {
    padding: 0 20px;
  }
}
@media (max-width: 767px) {
  .inner {
    padding: 0 16px;
  }
}

.section {
  padding: 100px 0 100px;
  background: #ede6e2;
}
@media (max-width: 767px) {
  .section {
    padding: 70px 0 40px;
  }
}

.section-title {
  font-weight: bold;
  font-size: 3.5rem;
  text-align: center;
  padding-bottom: 50px;
  position: relative;
}
@media (max-width: 767px) {
  .section-title {
    font-size: 2.3rem;
    padding-bottom: 35px;
  }
}
.section-title span {
  font-weight: 500;
  color: #b08323;
}
.section-title::after {
  position: absolute;
  content: "POINT";
  font-family: "Baloo Bhaina 2", cursive;
  bottom: 0%;
  left: 50%;
  font-size: 1.6rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 767px) {
  .section-title::after {
    font-size: 1.4rem;
  }
}

.header {
  width: 100%;
  height: 120px;
  line-height: 120px;
  background-color: #ede6e2;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
@media (max-width: 767px) {
  .header {
    height: 70px;
    background-color: transparent;
  }
}

@media (max-width: 767px) {
  .header-inner {
    display: none;
  }
}

.header-logo {
  display: block;
  text-align: center;
  line-height: 3;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .header-logo {
    display: inline-block;
    text-align: left;
    padding: 16px;
    margin-top: 0;
  }
}
.header-logo a {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.header-logo a:hover img {
  background: url("../img/logohover.png") no-repeat center center/cover;
}
.header-logo img {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  height: 50px;
}
@media (max-width: 767px) {
  .header-logo img {
    height: 40px;
    display: block;
  }
}

.header-nav {
  max-width: 800px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
}
.header-nav li {
  font-size: 1.6rem;
  line-height: 0;
}
.header-nav a {
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.header-nav a:hover, .header-nav a.is-active {
  color: #b08323;
}

.header-inner-sp {
  display: none;
}
@media (max-width: 767px) {
  .header-inner-sp {
    display: block;
  }
}

.hamburger {
  display: block;
  position: fixed;
  z-index: 5;
  right: 15px;
  top: 15px;
  width: 45px;
  height: 45px;
  cursor: pointer;
  text-align: center;
  border-radius: 100px;
  background-color: #fff;
}

.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 7px;
  border-radius: 50px;
  background: #b08323;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 12px;
}

.hamburger span:nth-child(2) {
  top: 22px;
}

.hamburger span:nth-child(3) {
  top: 32px;
}

/* スマホメニューを開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top: 21px;
  left: 7px;
  background: #b08323;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 21px;
  background: #b08323;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* メニュー背景*/
.header-nav-sp {
  position: fixed;
  z-index: 4;
  top: 0;
  left: 0;
  color: #b08323;
  background-color: #572e1d;
  text-align: center;
  width: 100%;
  opacity: 0;
  display: none;
  -webkit-transition: opacity 0.6s ease, visibility 0.6s ease;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  /* クリックでjQueryで追加・削除 */
}
.header-nav-sp ul {
  margin: 0 auto;
  padding: 0;
  width: 100%;
}
.header-nav-sp li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  -webkit-transition: 0.4s all;
  transition: 0.4s all;
}
.header-nav-sp li:last-child {
  padding-bottom: 0;
}
.header-nav-sp li:hover {
  color: #ddd;
}
.header-nav-sp a {
  display: block;
  color: #b08323;
  line-height: 4;
}
.header-nav-sp.active {
  display: block;
  opacity: 100;
}

.top-concept {
  margin-top: 120px;
  background: url("../img/secondarytop.jpg") no-repeat center center/cover;
  height: 400px;
  border-radius: 30px;
  display: grid;
  place-items: center;
}
@media (max-width: 767px) {
  .top-concept {
    margin-top: 70px;
    height: 300px;
    border-radius: 0;
  }
}

.menu {
  background: url("../img/secondarymenu.jpg") no-repeat center center/cover;
  height: 400px;
  border-radius: 30px;
  display: grid;
  place-items: center;
  margin-top: 120px;
}
@media (max-width: 767px) {
  .menu {
    margin-top: 70px;
    height: 300px;
    border-radius: 0;
  }
}

.top-title {
  font-size: 5rem;
  font-weight: 500;
  color: #fff;
}
@media (max-width: 767px) {
  .top-title {
    font-size: 3rem;
  }
}

.top-menu {
  background: url(../img/scondarytop.jpg);
}

.concept-secondary .section-title::after {
  content: "concept";
}

.concept-inner {
  width: 1400px;
  max-width: 100%;
  padding: 0 25px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .concept-inner {
    padding: 0 16px;
  }
}

.concept-wrapper {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .concept-wrapper {
    margin-top: 20px;
  }
}

.concept-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.concept-item:not(:first-child) {
  margin-top: 140px;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .concept-item:not(:first-child) {
    margin-top: 80px;
  }
}
@media (max-width: 767px) {
  .concept-item:not(:first-child) {
    margin-top: 30px;
  }
}
@media (min-width: 768px) and (max-width: 1200px) {
  .concept-item {
    display: block;
  }
}
@media (max-width: 767px) {
  .concept-item {
    display: block;
  }
}

.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .reverse .concept-img img {
    margin-left: auto;
    display: inherit;
  }
}
@media (max-width: 767px) {
  .reverse .concept-img img {
    margin-left: auto;
    display: inherit;
  }
}
@media (max-width: 767px) {
  .reverse .concept-title {
    text-align: right;
    text-align: right;
  }
}

.concept-body1 {
  margin-top: 150px;
  text-align: center;
  position: relative;
}
.concept-body1::before {
  position: absolute;
  content: "";
  top: -100px;
  right: 0;
  width: 200px;
  height: 200px;
  background: url("../img/1.png") no-repeat center center/cover;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .concept-body1::before {
    top: -300px;
    width: 300px;
    height: 300px;
  }
}
@media (max-width: 767px) {
  .concept-body1::before {
    top: -100px;
    width: 100px;
    height: 100px;
  }
}
@media (min-width: 768px) and (max-width: 1200px) {
  .concept-body1 {
    margin-top: 10px;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .concept-body1 {
    margin-top: 10px;
    width: 100%;
  }
}

.concept-body2 {
  margin-top: 150px;
  text-align: center;
  position: relative;
}
.concept-body2::before {
  position: absolute;
  content: "";
  top: -80px;
  left: 0;
  width: 230px;
  height: 150px;
  background: url("../img/2.png") no-repeat center center/cover;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .concept-body2::before {
    top: -200px;
    width: 280px;
    height: 200px;
  }
}
@media (max-width: 767px) {
  .concept-body2::before {
    top: -70px;
    width: 100px;
    height: 70px;
  }
}
@media (min-width: 768px) and (max-width: 1200px) {
  .concept-body2 {
    margin-top: 10px;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .concept-body2 {
    margin-top: 10px;
    width: 100%;
  }
}

.concept-body3 {
  margin-top: 150px;
  text-align: center;
  position: relative;
}
.concept-body3::before {
  position: absolute;
  content: "";
  top: -100px;
  right: 0;
  width: 200px;
  height: 200px;
  background: url("../img/3.png") no-repeat center center/cover;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .concept-body3::before {
    top: -300px;
    width: 300px;
    height: 300px;
  }
}
@media (max-width: 767px) {
  .concept-body3::before {
    top: -100px;
    width: 100px;
    height: 100px;
  }
}
@media (min-width: 768px) and (max-width: 1200px) {
  .concept-body3 {
    margin-top: 10px;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .concept-body3 {
    margin-top: 10px;
    width: 100%;
  }
}

.concept-img {
  width: 150%;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .concept-img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .concept-img {
    width: 100%;
  }
}
.concept-img img {
  width: 100%;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .concept-img img {
    width: 60%;
  }
}
@media (max-width: 767px) {
  .concept-img img {
    width: 80%;
  }
}

.concept-title {
  font-size: 2.5rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
  padding-bottom: 5px;
  display: inline-block;
  position: relative;
}
.concept-title span {
  color: #b08323;
  font-size: 3rem;
}
@media (max-width: 767px) {
  .concept-title span {
    font-size: 2.5rem;
  }
}
.concept-title::before {
  position: absolute;
  bottom: -2px;
  left: 0;
  content: "";
  height: 6px;
  width: 100%;
  border-radius: 10px;
  background: repeating-linear-gradient(45deg, #000, #fff 2px, #b08323 2px, #b08323 4px);
}
@media (max-width: 767px) {
  .concept-title {
    font-size: 1.8rem;
    margin-top: -10px;
    text-align: right;
  }
}

.concept-lead {
  margin-top: 10px;
  -moz-text-align-last: left;
       text-align-last: left;
}
@media (max-width: 767px) {
  .concept-lead {
    margin-top: 10px;
    font-size: 18px;
    line-height: 1.6;
    text-align: left;
  }
}

.secondary-menu .section-title::after {
  content: "MENU";
}

.menu-inner {
  width: 1400px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 25px;
}
@media (max-width: 767px) {
  .menu-inner {
    padding: 16px;
  }
}

.menu-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 60px;
}
@media (max-width: 767px) {
  .menu-items {
    margin-top: 30px;
  }
}

.drink {
  margin-top: 100px;
}
@media (max-width: 767px) {
  .drink {
    margin-top: 60px;
  }
}

@media (min-width: 1200px) {
  .menu-item {
    width: calc(22.5% - 40px);
  }
  .menu-item:not(:nth-child(4n+1)) {
    margin-left: 90px;
  }
  .menu-item:nth-child(n+5) {
    margin-top: 30px;
  }
}
@media (min-width: 768px) and (max-width: 1200px) {
  .menu-item {
    width: calc(33.3% - 20px);
  }
  .menu-item:not(:nth-child(3n+1)) {
    margin-left: 30px;
  }
  .menu-item:nth-child(n+4) {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .menu-item {
    width: calc(50% - 7.5px);
  }
  .menu-item:not(:nth-child(2n+1)) {
    margin-left: 15px;
  }
  .menu-item:nth-child(n+3) {
    margin-top: 20px;
  }
}

.menu-img img {
  width: 100%;
}

.menu-name {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .menu-name {
    margin-top: 0;
    font-size: 1.2rem;
    line-height: 1.5;
  }
}

.menu-cost {
  text-align: center;
}
@media (max-width: 767px) {
  .menu-cost {
    line-height: 1.5;
    font-size: 1.2rem;
  }
}
.menu-cost span {
  font-size: 1.2rem;
}
@media (max-width: 767px) {
  .menu-cost span {
    font-size: 1rem;
  }
}

.top-link {
  display: block;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1;
  opacity: 0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 767px) {
  .top-link {
    bottom: 15px;
    right: 10px;
  }
}
.top-link img {
  width: 80px;
  height: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .top-link img {
    width: 50px;
  }
}
.top-link.add-scrolled {
  opacity: 1;
}

.footer {
  padding: 40px 0 10px;
  background: #572e1d;
}

.footer-wrapper {
  text-align: center;
  color: #fff;
}

.footer-logo img {
  width: 200px;
}
@media (max-width: 767px) {
  .footer-logo img {
    width: 100px;
  }
}

.sns-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  width: 200px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .sns-wrap {
    margin: 0 auto;
  }
}

.footer-sns-item:nth-child(n+2) {
  margin-left: 10px;
}

.footer-sns-item-link {
  font-size: 40px;
  display: block;
  padding: 0.1em 0.5em;
}
@media (min-width: 1200px) {
  .footer-sns-item-link {
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
  }
  .footer-sns-item-link:hover {
    opacity: 0.6;
  }
}
@media (min-width: 768px) and (max-width: 1200px) {
  .footer-sns-item-link {
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
  }
  .footer-sns-item-link:hover {
    opacity: 0.6;
  }
}

.copyright {
  font-size: 1.2rem;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .copyright {
    font-size: 1rem;
    margin-top: 30px;
  }
}