@charset "UTF-8";
#toggle {
  position: fixed;
  font-family: kiro, sans-serif;
  padding-top: 18px;
  font-style: normal;
  letter-spacing: 2px;
  color: #b4a0c8;
  text-align: center;
  width: 90px;
  height: 90px;
  top: 0;
  right: 0px;
  background: url("../img/bg_menu.png") no-repeat center top;
  background-size: 100%;
}

#toggle-box {
  position: relative;
  width: 28px;
  height: 24px;
  cursor: pointer;
  margin-left: 30px;
}

#toggle-box > span {
  width: 100%;
  height: 2px;
  left: 0;
  display: block;
  background: #b4a0c8;
  position: absolute;
  transition: transform 0.6s ease-in-out, top 0.5s ease, bottom 0.5s ease;
}

#toggle-box > span:nth-child(1) {
  top: 25%;
  transform: translatey(-30%);
}

#toggle-box > span:nth-child(2) {
  top: 25%;
  transform: translatey(-50%);
}

#toggle-box > span:nth-child(3) {
  bottom: 25%;
}

#toggle {
  z-index: 1000;
}

#nav-content {
  z-index: 900;
  overflow: auto;
  height: 100%;
  background: #967869;
  color: #fff;
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  transition: transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}
#nav-content a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.6s ease;
}
#nav-content a:hover {
  opacity: 0.7;
}

.is-open {
  overflow: hidden;
}

.is-open #toggle-box > span:nth-child(1) {
  top: 50%;
  transform: rotate(45deg) translatey(-50%);
}

.is-open #toggle-box > span:nth-child(2) {
  width: 0;
}

.is-open #toggle-box > span:nth-child(3) {
  top: 50%;
  transform: rotate(-45deg) translatey(-50%);
}

.is-open #nav-content {
  z-index: 999;
  transform: translateX(0);
}

#menu {
  position: fixed;
  z-index: 990;
}

.overlay {
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: 2000;
  animation: fadeIn 0.5s ease 0s 1 normal;
}

html,
body {
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
  -webkit-text-size-adjust: 100%;
  font-family: "zen-maru-gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.1em;
  line-height: 1.8;
  color: #6e6464;
  text-align: justify;
}

a {
  color: #6e6464;
  text-decoration: none;
  transition-duration: 0.3s;
}

a:hover {
  opacity: 0.7;
  transition-duration: 0.3s;
}

main {
  overflow: hidden;
}

#nav-content {
  width: 90%;
  padding: 15% 0;
}
#nav-content h2 a {
  display: block;
  width: 65%;
  margin-left: 10%;
}
#nav-content h2 span {
  font-size: 13px;
}
#nav-content ol {
  margin: 0 10% 0% 10%;
}
#nav-content ol li {
  font-size: 4.2vw;
  font-weight: 600;
  margin-bottom: 5%;
}
#nav-content ol li a {
  display: block;
  padding: 1% 0;
}
#nav-content ol li dl dt {
  margin-bottom: 1%;
  font-size: 4.6vw;
}
#nav-content ol li dl dd {
  font-size: 3.2vw;
  margin-left: 5%;
  margin-bottom: 1%;
}
#nav-content ul {
  margin: 0 10% 3% 10%;
  padding-bottom: 3%;
}
#nav-content ul li {
  display: table;
  width: 100%;
  margin-bottom: 5%;
}
#nav-content ul li .pht {
  display: table-cell;
  width: 40%;
}
#nav-content ul li .pht div {
  width: 110px;
  height: 80px;
  border-radius: 6px;
  overflow: hidden;
}
#nav-content ul li p {
  display: table-cell;
  vertical-align: middle;
  font-size: 14px;
  font-weight: 600;
  padding: 0 0 0 5%;
}

#contactBtn {
  position: fixed;
  width: 100%;
  bottom: 0;
  z-index: 900;
}
#contactBtn ul {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #b4a0c8;
}
#contactBtn ul li {
  width: 33.3333333333%;
  text-align: center;
  font-size: 4vw;
  font-weight: 500;
  position: relative;
  display: inline-block;
  background: #b4a0c8;
}
#contactBtn ul li a {
  display: block;
  padding: 18% 0;
  color: #fff;
}
#contactBtn ul li a:hover {
  opacity: 1;
}
#contactBtn ul li:nth-child(1)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 50%;
  background-color: #d0c4dc;
  position: absolute;
  top: 25%;
  right: 0px;
}
#contactBtn ul li:nth-child(2)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 30px;
  background-color: #d0c4dc;
  position: absolute;
  top: 25%;
  right: 0px;
}

.wrapper {
  width: 85%;
  margin: 0 auto;
}

footer {
  background-color: #967869;
  padding: 10% 0 20% 0;
}
footer #name .footerlogo {
  text-align: center;
  margin-bottom: 20px;
}
footer #name .footerlogo img {
  width: 60%;
}

/* スクロールCSS */
.fade-in {
  opacity: 0;
  transition-duration: 500ms;
  transition-property: opacity, transform;
}

.fade-in-up {
  transform: translate(0, 50px);
}

.fade-in-down {
  transform: translate(0, -50px);
}

.fade-in-left {
  transform: translate(-50px, 0);
}

.fade-in-right {
  transform: translate(50px, 0);
}

.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}/*# sourceMappingURL=common_sp.css.map */