/*******************
 body
********************/
body {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
}
body.hidden {
  overflow: hidden;
}
/******************
 header 
 footer
*******************/
header {
  height: 66px;
  position: fixed;
  z-index: 102;
  background: #fff;
  width: 100%;
  border-bottom: 1px solid #eee;
  align-content: center;
}
header h1 img {
  width: 200px;
}
@media (max-width: 389px) {
  header h1 img {
    width: 175px;
  }
}
/******************
 pc nav
******************/
.pc_nav {
  position: fixed;
  top: 15px;
  right: 300px;
  z-index: 100;
}
.pc_nav nav ul {
  display: flex;
  list-style: none;
}
.pc_nav nav ul li {
  text-align: center;
  padding-left: 30px;
  padding-right: 30px;
}
.pc_nav nav ul li a {
  text-decoration: none;
}
.pc_nav nav ul li a span {
  display: block;
  letter-spacing: 0.1em;
}
.pc_nav nav ul li a span:nth-of-type(1) {
  font-size: 14px;
  color: #000;
}
.pc_nav nav ul li a span:nth-of-type(2) {
  font-size: 10px;
  color: #39a8be;
}
@media (max-width: 1100px) {
  .pc_nav {
    display: none;
  }
}
/********************
 main-menu
********************/
.main-menu {
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 110;
  background: #fff;
  right: -9999px;
  top: 0;
  transition: 0.5s all;
  z-index: 102;
  overflow: auto;
}
.main-menu.open {
  right: 0;
}
.main-menu .flex {
  display: flex;
  flex-wrap: wrap;
  height: 100%;
}
.main-menu .flex-item {
  width: calc(100% / 3);
  width: -webkit-calc(100% / 3);
  height: 100%;
}
.main-menu .flex-item .main-menu-bg {
  width: 100%;
  height: 100%;
  background: #055160;
}
.main-menu .main-menu-logo {
  padding-top: 50px;
  max-width: 250px;
  margin: 0 auto 80px;
}
.main-menu .main-menu-logo img {
  width: 100%;
  filter: invert(1);
}
.main-menu .main-menu-info {
  background: #055160;
  color: #fff;
}
.main-menu .shop-info {
  margin-bottom: 50px;
  text-align: center;
  border: 1px solid #fff;
  margin-left: 30px;
  margin-right: 30px;
  padding-top: 30px;
  padding-bottom: 30px;
}
.main-menu .shop-info h3 {
  font-size: 16px;
}
.main-menu .shop-info a {
  color: #fff;
  text-decoration: none;
}
.main-menu .item-box .item-link {
  width: 100%;
  height: calc(100vh / 3);
  height: -webkit-calc(100vh / 3);
  min-height: 200px;
  position: relative;
  z-index: 1;
}
.main-menu .item-box .item-link:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0, 0.2);
  z-index: 2;
}
.main-menu .item-box #menu-curtain {
  background: url("assets/images/header/curtain.jpg");
  background-size: cover;
  background-position: center;
}
.main-menu .item-box #menu-role {
  background: url("assets/images/header/blind.jpg");
  background-size: cover;
  background-position: center;
}
.main-menu .item-box #menu-rag {
  background: url("assets/images/header/rag.jpeg");
  background-size: cover;
  background-position: center;
}
.main-menu .item-box .item-link a {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-decoration: none;
}
.main-menu .item-box .item-link a span {
  display: block;
  text-align: center;
  color: #fff;
}
.main-menu .item-box .item-link a span:nth-of-type(2) {
  font-size: 12px;
}
.main-menu .main-nav-box {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.main-menu .main-nav {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
.main-menu .main-nav ul {
  padding: 0;
  margin: 0;
}
.main-menu .main-nav ul li {
  list-style: none;
  margin-bottom: 30px;
}
.main-menu .main-nav ul li a {
  text-decoration: none;
}
.main-menu .main-nav ul li a span {
  display: inline-block;
}
.main-menu .main-nav ul li a span:nth-of-type(1) {
  font-size: 16px;
  color: #000;
}
.main-menu .main-nav ul li a span:nth-of-type(2) {
  font-size: 10px;
  color: #39a8be;
  margin-left: 15px;
}
@media (max-width: 991px) {
  .main-menu .main-nav-box {
    text-align: center;
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .main-menu .flex-item:nth-of-type(1) {
    width: 100%;
    height: auto;
  }
  .main-menu .flex-item:nth-of-type(2) {
    width: 50%;
    height: auto;
  }
  .main-menu .flex-item:nth-of-type(3) {
    width: 50%;
    height: auto;
  }
  .main-menu .main-nav {
    position: static;
    transform: translate(0, 0);
  }
  .main-menu .flex-item:nth-of-type(1) {
    order: 2;
  }
  .main-menu .flex-item:nth-of-type(2) {
    order: 0;
  }
  .main-menu .flex-item:nth-of-type(3) {
    order: 1;
  }
}
@media (max-width: 767px) {
  .main-menu .flex-item:nth-of-type(2) {
    width: 100%;
    height: auto;
  }
  .main-menu .flex-item:nth-of-type(3) {
    width: 100%;
    height: auto;
  }
  .main-menu .flex-item:nth-of-type(2) {
    order: 1;
  }
  .main-menu .flex-item:nth-of-type(3) {
    order: 0;
  }
}
/********************
 fixed_reserve
*********************/
.fixed_reserve {
  position: fixed;
  right: 80px;
  top: 0px;
  z-index: 100;
}
.fixed_reserve .reserve_icon a {
  width: 200px;
  background: #d97676;
  display: inline-block;
  padding-top: 15px;
  padding-bottom: 15px;
  text-decoration: none;
  letter-spacing: 0.1em;
}
.fixed_reserve .reserve_icon a span {
  display: block;
  text-align: center;
  color: #fff;
}
.fixed_reserve .reserve_icon a span:nth-of-type(1) {
  font-size: 14px;
}
.fixed_reserve .reserve_icon a span:nth-of-type(2) {
  font-size: 10px;
}
@media (max-width: 767px) {
  .fixed_reserve {
    right: 80px;
    top: 0px;
  }
  .fixed_reserve .reserve_icon a {
    width: 80px;
    height: 66px;
    align-content: center;
  }
  .fixed_reserve .reserve_icon a span:nth-of-type(1) {
    font-size: 10px;
  }
  .fixed_reserve .reserve_icon a span:nth-of-type(2) {
    display: none;
  }
}
/*********************************
 bugger_btn
**********************************/
.bugger_btn {
  position: fixed;
  width: 80px;
  height: 66px;
  background: #39a8be;
  top: 0;
  right: 0;
  z-index: 103;
}
.bugger_btn span:nth-of-type(1) {
  width: 40px;
  height: 1px;
  background: #fff;
  transform: translate(20px, 32px);
  display: block;
  transition: 0.2s all;
}
.bugger_btn span:nth-of-type(2) {
  width: 40px;
  height: 1px;
  background: #fff;
  transform: translate(20px, 33px);
  display: block;
  transition: 0.2s all;
}
.bugger_btn.active span:nth-of-type(1) {
  transform: rotate(45deg) translate(38px, 8px);
  transition: 0.2s all;
}
.bugger_btn.active span:nth-of-type(2) {
  transform: rotate(-45deg) translate(-8px, 38px);
  transition: 0.2s all;
}
/**********************************
 footer
***********************************/
footer .footer_bg {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #eee;
}
footer .footer_bg h2 img {
  width: 200px;
}
footer .footer_bg h2 {
  margin-bottom: 30px;
}
footer .copyright {
  background: #39a8be;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
  color: #fff;
  letter-spacing: 0.1em;
  font-size: 14px;
}
footer h3 {
  font-size: 16px;
  letter-spacing: 0.1em;
  font-weight: bold;
}
footer .box p:nth-of-type(1) {
  margin-bottom: 10px;
  color: #888;
  font-size: 14px;
}
footer .box p:nth-of-type(2) a {
  color: #000;
  font-weight: bold;
  text-decoration: none;
}
footer .box p:nth-of-type(3) {
  margin-bottom: 10px;
  color: #000;
  font-size: 14px;
}
footer .box p:nth-of-type(4) {
  margin-bottom: 10px;
  color: #000;
  font-size: 14px;
}
footer .box p:nth-of-type(5) {
  margin-bottom: 10px;
  color: #000;
  font-size: 14px;
}
footer .footer_menu {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #74c6d6;
}
footer .footer_menu ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin-bottom: 0;
  justify-content: center;
}
footer .footer_menu ul li a {
  color: #000;
  text-decoration: none;
  font-size: 14px;
}
footer .footer_menu ul li:not(:last-child):after {
  content: "/";
  display: inline-block;
  margin-right: 5px;
  margin-left: 5px;
  font-size: 14px;
}
@media (max-width: 767px) {
  footer .copyright {
    font-size: 10px;
  }
}
/**************************
 breadcrumb
***************************/
.breadcrumb a {
  color: #000;
  text-decoration: none;
}
.breadcrumb {
  justify-content: end;
  font-size: 12px;
  padding-bottom: 10px;
  padding-top: 10px;
  margin-bottom: 0;
}
