@charset "UTF-8";
/*---------------------------------------------------------- */
/* color */
/*---------------------------------------------------------- */
/*---------------------------------------------------------- */
/* width */
/*---------------------------------------------------------- */
/*---------------------------------------------------------- */
/* breakpoints */
/*---------------------------------------------------------- */
/*---------------------------------------------------------- */
/* font */
/*---------------------------------------------------------- */
/*---------------------------------------------------------- */
/* other */
/*---------------------------------------------------------- */
/* フェードインアニメーションの定義 */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#toggle {
  display: block;
  cursor: pointer;
  text-align: center;
  width: 28px;
  height: 19px;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10001;
  -moz-transition: all 0.3s !important;
  -o-transition: all 0.3s !important;
  -webkit-transition: all 0.3s !important;
  transition: all 0.3s !important;
}

.trigger {
  display: inline-block;
  -moz-transition: all 0.3s !important;
  -o-transition: all 0.3s !important;
  -webkit-transition: all 0.3s !important;
  transition: all 0.3s !important;
  position: relative;
  width: 28px;
  height: 19px;
}
.trigger div {
  display: block;
  -moz-transition: all 0.3s !important;
  -o-transition: all 0.3s !important;
  -webkit-transition: all 0.3s !important;
  transition: all 0.3s !important;
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #83cfda, #82d1b4);
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
}
.trigger div:nth-of-type(1) {
  top: 0;
}
.trigger div:nth-of-type(2) {
  top: 8px;
}
.trigger div:nth-of-type(2)::after {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #83cfda, #82d1b4);
  -moz-transition: all 0.3s !important;
  -o-transition: all 0.3s !important;
  -webkit-transition: all 0.3s !important;
  transition: all 0.3s !important;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
}
.trigger div:nth-of-type(3) {
  bottom: -1px;
}
.trigger.active div:nth-of-type(1) {
  -webkit-transform: translateY(8px) scale(0);
  transform: translateY(8px) scale(0);
}
.trigger.active div:nth-of-type(2) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.trigger.active div:nth-of-type(2)::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.trigger.active div:nth-of-type(3) {
  -webkit-transform: translateY(-8px) scale(0);
  transform: translateY(-8px) scale(0);
  background: linear-gradient(to right, #333, #333);
}

.toggleWrap {
  display: block;
  background-color: #fff;
  padding: 0px 15px 50px 15px;
  position: fixed;
  top: 0;
  width: 70%;
  height: 100%;
  overflow-y: scroll;
  z-index: 10000;
  right: -100%;
  /* 初期状態で画面外に配置 */
  transition: right 0.5s ease-in-out;
}
.toggleWrap.animation {
  right: 0;
}
.toggleWrap.hide {
  right: -100%;
}

.mainNav {
  padding: 80px 0 0 20px;
  text-align: left;
  position: relative;
  z-index: 100000;
}
.mainNav li {
  list-style-type: none;
  line-height: 1.2;
  padding: 15px 0;
  border-bottom: 1px #ccc dotted;
}
.mainNav a {
  text-decoration: none;
  font-size: 15px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  color: #333;
}
.mainNav a span {
  font-size: 10px;
  color: #3DBFBA;
  margin-left: 20px;
  position: relative;
}
.mainNav a span:before {
  content: "";
  width: 10px;
  border-top: 1px #ccc solid;
  position: absolute;
  top: 50%;
  left: -15px;
}

.no-scroll {
  overflow: hidden;
}

.trigger {
  display: block;
}
.trigger span {
  top: 16px;
  height: 1px;
}
.trigger span:nth-of-type(2)::after {
  height: 1px;
}
