/*********************
general
**********************/
body.hidden {
  overflow: hidden;
}
.m-plus-1 {
  font-family: "M PLUS 1", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}
/**********************
 header
 **********************/
header .header-pc-menu {
  text-align: center;
  padding-top: 50px;
  padding-bottom: 50px;
  background: #ded9d1;
}
header .header-pc-menu ul {
  padding: 0;
  margin-bottom: 0;
  display: flex;
  justify-content: center;
  list-style: none;
}
header .header-pc-menu ul li {
  padding-left: 30px;
  padding-right: 30px;
}
header .header-pc-menu ul li a {
  color: #4d4240;
  font-size: 20px;
  text-decoration: none;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  header .header-pc-menu {
    display: none;
  }
}
@media (max-width: 600px) {
  header .header-title-area span {
    font-size: 14px;
    transform: translate(120px, 0);
    top: 36px;
  }
  header .header-title-area img {
    max-width: 70px;
  }
}
/*****************************
 bugger_btn
*****************************/
.bugger_btn_open {
  position: fixed;
  bottom: 30px;
  z-index: 100;
  display: none;
  transition: 0.5s all;
}
.bugger_btn_close {
  position: fixed;
  bottom: 30px;
  z-index: 100;
  display: none;
  transition: 0.5s all;
}
.bugger_btn_open img {
  width: 60px;
}
.bugger_btn_close img {
  width: 60px;
}
.bugger_btn_open.active {
  right: -100%;
  transform: rotate(360deg);
}
.bugger_btn_close.active {
  right: 30px;
  transform: rotate(360deg);
}
.bugger_btn_open {
  right: 30px;
  transform: rotate(-360deg);
}
.bugger_btn_close {
  right: -100%;
  transform: rotate(-360deg);
}
@media (max-width: 767px) {
  .bugger_btn_open {
    display: block;
  }
  .bugger_btn_close {
    display: block;
  }
}
/*******************************
 main-nav
********************************/
.main-nav {
  position: fixed;
  top: 0;
  right: -100%;
  max-width: 300px;
  width: 100%;
  z-index: 99;
  height: 100vh;
  background: #cec2ae;
  transition: 0.5s all;
}
.main-nav.active {
  right: 0;
  transition: 0.5s all;
}
.main-nav nav {
  padding-top: 100px;
}
.main-nav ul {
  list-style: none;
}
.main-nav ul li {
  border-bottom: 1px solid #eee;
  padding-top: 15px;
  padding-bottom: 15px;
}
.main-nav ul li a {
  color: #000;
  text-decoration: none;
}
@media (max-width: 640px) {
  .main-nav {
    max-width: 100%;
  }
}
/***************************
 footer
***************************/
footer {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #ded9d1;
}
footer h2 img {
  width: 150px;
}
footer h2 {
  text-align: center;
  margin-bottom: 80px;
}
footer h2 p:nth-of-type(2) {
  font-size: 16px;
}
footer .banner-wrap img {
  width: 100%;
}
footer .banner-wrap .banner-title {
  text-align: center;
  font-size: 14px;
  margin-bottom: 15px;
}
footer .copyright {
  margin-top: 50px;
  text-align: center;
  font-size: 12px;
}
footer .p_link {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
}
footer .p_link a {
  color: #000;
  text-decoration: none;
}
@media (max-width: 767px) {
  footer .mb {
    margin-bottom: 15px;
  }
}
