@charset "UTF-8";
/*===============================================*/
/*  humbergermenu.css */
/*===============================================*/
#humberger,
#humberger2 {
  -moz-box-sizing: initial;
  -webkit-box-sizing: initial;
  box-sizing: initial;
  display: block;
  width: 28px;
  padding: 15px 13px 9px 13px;
  background-color: #000069;
  cursor: pointer;
  z-index: 10001;
}

#humberger2 {
  position: absolute !important;
  right: 15px;
  top: 0;
  margin-top: 15px !important;
}

.icon-bar {
  -moz-box-sizing: initial;
  -webkit-box-sizing: initial;
  box-sizing: initial;
  height: 2px;
  background: #fff;
  display: block;
  margin-bottom: 6px;
  -webkit-transition: all 400ms cubic-bezier(1, 0, 0, 1);
  -moz-transition: all 400ms cubic-bezier(1, 0, 0, 1);
  -o-transition: all 400ms cubic-bezier(1, 0, 0, 1);
  transition: all 400ms cubic-bezier(1, 0, 0, 1);
  /* easeInOutExpo */
  -webkit-transition-timing-function: cubic-bezier(1, 0, 0, 1);
  -moz-transition-timing-function: cubic-bezier(1, 0, 0, 1);
  -o-transition-timing-function: cubic-bezier(1, 0, 0, 1);
  transition-timing-function: cubic-bezier(1, 0, 0, 1);
  /* easeInOutExpo */
}

/**
* ドロワー開放時のスタイル
**/
body.drawer-opened #page {
  left: -240px;
  box-shadow: 1px 0 2px #000;
  -webkit-box-shadow: 1px 0 2px #000;
}

body.drawer-opened .fixed-content {
  left: -240px;
}

body.drawer-search-opened .header__search__box {
  right: 0;
  overflow-y: scroll;
}

body.drawer-opened #drawernav {
  left: 0;
}

body.drawer-opened #humberger .icon-bar,
body.drawer-opened #humberger2 .icon-bar {
  background: #444;
}

body.drawer-opened #humberger .icon-bar:nth-child(1),
body.drawer-search-opened #humberger2 .icon-bar:nth-child(1) {
  transform: translate(0, 8px) rotate(45deg);
  -webkit-transform: translate(0, 8px) rotate(45deg);
  top: -2px;
}

body.drawer-opened #humberger .icon-bar:nth-child(2),
body.drawer-search-opened #humberger2 .icon-bar:nth-child(2) {
  opacity: 0;
}

body.drawer-opened #humberger .icon-bar:nth-child(3),
body.drawer-search-opened #humberger2 .icon-bar:nth-child(3) {
  transform: translate(0, -8px) rotate(-45deg);
  -webkit-transform: translate(0, -8px) rotate(-45deg);
  top: 2px;
}

body.drawer-opened #overlay,
body.drawer-search-opened #overlay {
  visibility: visible;
  z-index: 10000;
  opacity: 0.8;
  right: -240px;
}

/**/
#drawernav,
.header__search__box {
  position: fixed;
  top: 0;
  left: -80%;
  width: 80%;
  max-width: 500px;
  height: 100%;
  background: #fff;
  color: #000;
  z-index: 10001;
  -webkit-transition: all 400ms cubic-bezier(1, 0, 0, 1);
  -moz-transition: all 400ms cubic-bezier(1, 0, 0, 1);
  -o-transition: all 400ms cubic-bezier(1, 0, 0, 1);
  transition: all 400ms cubic-bezier(1, 0, 0, 1);
  /* easeInOutExpo */
  -webkit-transition-timing-function: cubic-bezier(1, 0, 0, 1);
  -moz-transition-timing-function: cubic-bezier(1, 0, 0, 1);
  -o-transition-timing-function: cubic-bezier(1, 0, 0, 1);
  transition-timing-function: cubic-bezier(1, 0, 0, 1);
  /* easeInOutExpo */
}

.header__search__box {
  z-index: 20000;
  left: unset;
  right: -80%;
}

#drawernav {
  background: #f5f5ff;
}

#drawernav dl {
  background: #FFF;
}

@media screen and (max-width: 1080px) {
  #drawernav dl:first-child {
    display: block;
  }
}

.drawernav__term {
  padding: 17px 0 17px 30px;
  color: #FFF;
  font-size: 16px;
  /*background: #000;*/
  background: -moz-linear-gradient(90deg, #8b008b, #2255ee);
	background: -webkit-linear-gradient(90deg, #8b008b, #2255ee);
	background: -o-linear-gradient(90deg, #8b008b, #2255ee);
	background: -ms-linear-gradient(90deg, #8b008b, #2255ee);
	background: linear-gradient(90deg, #8b008b, #2255ee);
}

#drawernav ul {
  list-style: none;
  padding: 0;
}

#drawernav ul li {
  line-height: 50px;
  border-bottom: 1px solid #ccccff;
}

#drawernav ul li:last-child {
  border-bottom: none;
}

#drawernav ul li:last-child a {
  background: #e5e5ff;
}

#drawernav ul li a {
  position: relative;
  color: #220055;
  display: block;
  padding: 0 0 0 30px;
  text-decoration: none;
  font-size: 14px;
}

#drawernav ul li a:before {
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
  width: 7px;
  height: 7px;
  margin: auto;
  border-top: 1px solid #444;
  border-right: 1px solid #444;
  cursor: pointer;
}

#drawernav ul li a:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
  background: #ccccff;
}

#drawernav h4 {
  margin-top: 10px;
  padding: 0 10px;
  font-size: 12px;
}

#drawernav h1 {
  position: absolute;
  top: 16px;
  left: 18px;
  width: 50%;
}
#drawernav h1 img {
  width: 100%;
  height: auto;
}

.fixed-content {
  right: inherit;
  width: 100%;
  z-index: 2;
  -webkit-transition: all 400ms cubic-bezier(1, 0, 0, 1);
  -moz-transition: all 400ms cubic-bezier(1, 0, 0, 1);
  -o-transition: all 400ms cubic-bezier(1, 0, 0, 1);
  transition: all 400ms cubic-bezier(1, 0, 0, 1);
  /* easeInOutExpo */
  -webkit-transition-timing-function: cubic-bezier(1, 0, 0, 1);
  -moz-transition-timing-function: cubic-bezier(1, 0, 0, 1);
  -o-transition-timing-function: cubic-bezier(1, 0, 0, 1);
  transition-timing-function: cubic-bezier(1, 0, 0, 1);
  /* easeInOutExpo */
}

#overlay {
  visibility: hidden;
  z-index: -1;
  opacity: 0;
  background: #000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  -webkit-transition: all 400ms cubic-bezier(1, 0, 0, 1);
  -moz-transition: all 400ms cubic-bezier(1, 0, 0, 1);
  -o-transition: all 400ms cubic-bezier(1, 0, 0, 1);
  transition: all 400ms cubic-bezier(1, 0, 0, 1);
  /* easeInOutExpo */
  -webkit-transition-timing-function: cubic-bezier(1, 0, 0, 1);
  -moz-transition-timing-function: cubic-bezier(1, 0, 0, 1);
  -o-transition-timing-function: cubic-bezier(1, 0, 0, 1);
  transition-timing-function: cubic-bezier(1, 0, 0, 1);
  /* easeInOutExpo */
}

/*accordion--------------------*/
.open {
  display: block;
}

.spNav {
  margin-bottom: 25px;
  width: 100%;
  padding: 0;
}

.spNav li {
  position: relative;
  list-style: none;
}

.spNav > li > a {
  display: block;
  text-decoration: none;
  cursor: pointer;
  position: relative;
}

.spNav > li > a h5 {
  padding: 5px 0;
  font-size: 14px;
  line-height: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  transition: all .3s;
}

.spNav > li > a h5::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  width: 0;
  height: 1px;
  background-color: #fff;
  transition: .4s;
}

.spNav > li > ul {
  display: none;
  height: auto;
  padding: 0 0;
}

.spNav li ul li {
  position: relative;
  height: auto;
  color: #fff;
  font-size: 14px;
  line-height: 14px !important;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.spNav li ul li:before {
  content: '';
  position: absolute;
  top: 4px;
  left: 34px;
  width: 7px;
  height: 11px;
  background: url("../img/common_icon_line.gif") left top no-repeat;
}

.spNav li ul li a {
  padding: 6px 0 6px 45px !important;
  font-size: 13px !important;
}

.spNav li ul li a.over {
  color: #c30012;
}

.spNav li .accordion_icon,
.spNav li .accordion_icon span {
  display: inline-block;
  transition: all .3s;
  box-sizing: border-box;
}

.spNav li .accordion_icon {
  position: absolute;
  width: 11px;
  height: 11px;
  top: 14px;
  right: 15px;
}

.spNav li .accordion_icon + p {
  line-height: 30px;
}

#drawernav ul li a.toggle:before {
  content: none;
}

#drawernav ul li a.toggle:hover span {
  background-color: #FFF;
}

.spNav li .accordion_icon span {
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #000;
}

.spNav li .accordion_icon span:nth-of-type(1) {
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
}

.spNav li .accordion_icon span:nth-of-type(2) {
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
}

/**/
.hmenu li .accordion_icon span:nth-of-type(1) {
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
}

.hmenu li .accordion_icon span:nth-of-type(2) {
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
}

.hmenu li .accordion_icon.active span:nth-of-type(1) {
  display: none;
}

.hmenu li .accordion_icon.active span:nth-of-type(2) {
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

/*contactBtn----*/
.contactBtn a {
  -moz-border-radius: 25px;
  -webkit-border-radius: 25px;
  border-radius: 25px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  margin: 0 30px;
  padding: 10px 0;
  background-color: #C30012;
  color: #fff;
  font-size: 14px;
  line-height: 26px;
  text-align: center;
}
.contactBtn a:hover {
  text-decoration: none;
}
