@charset "UTF-8";
/*基本の水色*/
/*青*/
/*背景色*/
/*ベージュ*/
/*濃いオレンジ*/
/*薄いオレンジ*/
/*スマホメニューの色*/
/*スマホメニューの色*/
.menu-trigger,
nav {
  display: none;
}

.wrapper {
  overflow-x: hidden;
  position: relative;
}

.overlay {
  content: "";
  display: block;
  width: 0;
  height: 0;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

.overlay.open {
  width: 100%;
  height: 100%;
  opacity: 1;
  position: fixed;
}

main {
  padding: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  min-height: 100vh;
}

main.open {
  -webkit-transform: translateX(-350px);
          transform: translateX(-350px);
}

.menu-trigger {
  display: inline-block;
  width: 70px;
  height: 70px;
  vertical-align: middle;
  cursor: pointer;
  position: relative;
  background-color: #FFF;
}

.menu-trigger span {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  left: 15px;
  width: 40px;
  height: 4px;
  background-color: #5EB8E8;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.menu-trigger span:nth-of-type(1) {
  top: 18px;
}

.menu-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(12px) rotate(-45deg);
          transform: translateY(12px) rotate(-45deg);
}

.menu-trigger span:nth-of-type(2) {
  top: 30px;
}

.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}

.menu-trigger span:nth-of-type(3) {
  top: 43px;
}

.menu-trigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-13px) rotate(45deg);
          transform: translateY(-13px) rotate(45deg);
}

.closebtn {
  width: 70px;
  height: 70px;
  vertical-align: middle;
  cursor: pointer;
  position: relative;
  background-color: #FFF;
}
.closebtn span {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 40px;
  height: 4px;
  background-color: #5EB8E8;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.closebtn span:nth-of-type(1) {
  -webkit-transform: translateY(12px) rotate(-45deg);
          transform: translateY(12px) rotate(-45deg);
  top: 18px;
}
.closebtn span:nth-of-type(2) {
  -webkit-transform: translateY(-15px) rotate(45deg);
          transform: translateY(-15px) rotate(45deg);
  top: 43px;
}

nav {
  display: block;
  width: 350px;
  height: 100%;
  padding-top: 20px;
  background-color: #FFF;
  color: #fff;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
  -webkit-transform: translate(350px);
          transform: translate(350px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

nav.open {
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

nav ul {
  margin-left: 20px;
}

nav li {
  color: #fff;
  text-align: center;
  padding: 10px 0;
  border-bottom: 1px #5EB8E8 solid;
}

nav li a {
  display: block;
  padding: 15px;
  text-align: left;
  position: relative;
}
nav li a:after {
  content: "";
  background: url(../images/icon_arrow_blue.svg) 0 0 no-repeat;
  background-size: contain;
  width: 22px;
  height: 23px;
  display: block;
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}