/* ============================================================ */
/* btn */
/* ============================================================ */
button[class^="btn_"] {
  display: -webkit-inline-box;
  display: -moz-inline-box;
}

.btn_bg0 {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 36px;
  background: transparent;
  border: 1px solid;
  border-color: #777;
  border-radius: 3px;
  color: #606060;
  text-align: center;
  line-height: 1.3;
  outline: none;
  -webkit-transition: all .3s;
  transition: all .3s;
  cursor: pointer;
  width: 160px;
}

.btn_bg0 i {
  position: absolute;
  top: 50%;
  right: 15px;
  margin: -0.5em 0 0;
}

.btn_bg0::after {
  position: absolute;
  right: 5px;
  font-family: "icomoon";
  content: "\e315";
}

.btn_gray {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 36px;
  background: #909090;
  border: 1px solid;
  border-color: #909090;
  border-radius: 3px;
  color: #fff;
  text-align: center;
  line-height: 1.3;
  outline: none;
  -webkit-transition: all .3s;
  transition: all .3s;
  cursor: pointer;
  width: 200px;
}

.btn_gray i {
  position: absolute;
  top: 50%;
  right: 15px;
  margin: -0.5em 0 0;
}

.btn_gray02 {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 36px;
  background: #eee;
  border: 1px solid;
  border-color: #ccc;
  border-radius: 3px;
  color: #000;
  text-align: center;
  line-height: 1.3;
  outline: none;
  -webkit-transition: all .3s;
  transition: all .3s;
  cursor: pointer;
}

.btn_gray02 i {
  position: absolute;
  top: 50%;
  right: 15px;
  margin: -0.5em 0 0;
}

.btn_black {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 36px;
  background: #000;
  border: 1px solid;
  border-color: #000;
  border-radius: 3px;
  color: #fff;
  text-align: center;
  line-height: 1.3;
  outline: none;
  -webkit-transition: all .3s;
  transition: all .3s;
  cursor: pointer;
  width: 200px;
}

.btn_black i {
  position: absolute;
  top: 50%;
  right: 15px;
  margin: -0.5em 0 0;
}

/* ============================================================ */
/* #header */
/* ============================================================ */
header {
  width: 100%;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.6);
  position: absolute;
  z-index: 10;
}

header.fixed {
  position: fixed;
  background: rgba(255, 255, 255, 0.9);
}

header .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 50px;
  padding: 0 10px 0 15px;
}

header .header_logo a {
  display: block;
}

header .header_logo a img {
  max-height: 25px;
}

#sp_menu .btn_menu {
  position: absolute;
  top: 6px;
  right: 10px;
  z-index: 100;
  padding: 2px 10px;
}

#sp_menu .btn_menu .menu_icon {
  font-size: 2.2rem;
}

#sp_menu .btn_menu .menu_icon::before {
  font-family: "icomoon";
  content: "\e901";
}

#sp_menu .check {
  display: none;
}

#sp_menu .check:checked + .btn_menu .menu_icon::before {
  font-family: "icomoon";
  content: "\e904";
}

#sp_menu .check:checked ~ .menu {
  visibility: visible;
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
  -webkit-transition: all 0.2s 0.1s cubic-bezier(0, 0, 0.2, 0);
  transition: all 0.2s 0.1s cubic-bezier(0, 0, 0.2, 0);
}

#sp_menu .check:checked ~ .modal {
  opacity: 1;
  -webkit-transition-delay: 0;
          transition-delay: 0;
  visibility: visible;
}

#sp_menu .check ~ .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 97;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: .1;
  visibility: hidden;
  -webkit-transition: visibility 0 linear .2s, opacity .1s;
  transition: visibility 0 linear .2s, opacity .1s;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

#sp_menu .menu {
  overflow-x: hidden;
  overflow-y: auto;
  display: block;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 99;
  width: 70%;
  background: #fff;
  visibility: hidden;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

#sp_menu .menu .gnav ul li {
  position: relative;
  border-bottom: 1px solid #ccc;
  padding: 10px 10px 10px 15px;
}

#sp_menu .menu .gnav > ul > li:first-child {
  padding: 15px;
  font-weight: bold;
}

#sp_menu .menu .gnav > ul > li:first-child a::after {
  content: none;
}

#sp_menu .menu .gnav ul li a {
  display: block;
}

#sp_menu .menu .gnav ul li a::after {
  position: absolute;
  top: 8px;
  right: 10px;
  color: #606060;
  font-size: 2rem;
  font-family: "icomoon";
  content: "\e315";
}

#sp_menu .menu .gnav > ul > li {
  position: relative;
}
#sp_menu .menu .gnav > ul > li > a {
  display: block;
}

/*#sp_menu .menu .gnav > ul > li.menu-item-has-children > a:after {
  transform: rotate(90deg);
}
#sp_menu .menu .gnav > ul > li.menu-item-has-children > a.open:after {
  transform: rotate(-90deg);
}*/
#sp_menu .menu .gnav > ul > li > .sub-menu {
  display: none;
  margin-left: -15px;
  margin-right: -10px;
  padding-top: 10px;
}
#sp_menu .menu .gnav > ul > li > .sub-menu li {
  border-bottom: 0px !important;
}
#sp_menu .menu .gnav > ul > li > .sub-menu .sub-menu {
  display: block;
  position: relative;
}
#sp_menu .menu .gnav > ul > li > .sub-menu a[href="#"]:hover {
  cursor: default !important;
}
#sp_menu .menu .gnav > ul > li > .sub-menu a[href="#"]:after {
  display: none;
}

#sp_menu .menu .btn_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#sp_menu .menu .btn_list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 10px 10px 20px;
}

#sp_menu .menu .btn_list li:first-child {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  margin: 20px 10px 5px;
}

#sp_menu .menu .btn_list li a {
  color: #777;
}

#sp_menu .menu .btn_list li a i {
  font-size: 2rem;
}

/* ============================================================ */
/* #visual */
/* ============================================================ */
#visual {
  position: relative;
  margin-bottom: 30px;
}

#visual .ttl_main {
  position: absolute;
  top: 40px;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 15px;
  color: #fff;
  text-align: center;
}

#visual .ttl_main > * {
  margin: 5px 0;
}

#visual .ttl_main h1 {
  font-size: 2.6rem;
  font-weight: 300;
  line-height: 1.2;
}

#visual figure {
  position: relative;
  overflow: hidden;
}

#visual figure.blur {
  overflow: hidden;
  height: 50px;
  -webkit-filter: blur(10px);
          filter: blur(10px);
  margin: 0;
}

#visual figure.main {
  height: 100px;
}

#visual figure.main img {
  top: 50px;
}

#visual figure img {
  position: absolute;
  top: 100px;
  left: 50%;
  width: auto;
  max-width: 100%;
  min-height: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#visual figure::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  content: "";
}

#visual figure.shadow10::before {
  background: rgba(0, 0, 0, 0.1);
}

#visual figure.shadow15::before {
  background: rgba(0, 0, 0, 0.15);
}

#visual figure.shadow20::before {
  background: rgba(0, 0, 0, 0.2);
}

#visual figure.shadow25::before {
  background: rgba(0, 0, 0, 0.25);
}

#visual figure.shadow30::before {
  background: rgba(0, 0, 0, 0.3);
}

/* ============================================================ */
/* footer */
/* ============================================================ */
footer {
  margin-top: 40px;
  border-top: 1px solid #ccc;
}

footer .inner {
  margin: 30px 15px;
}

footer .inner:last-child {
  margin: 0 auto;
}

footer ul {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

footer ul li {
  width: 50%;
  margin-bottom: 20px;
  box-sizing: border-box;
}
footer ul ul {
  margin-top: 10px !important;
}
footer ul li ul li {
  margin-bottom: 5px;
  width: 100%;
}

footer ul .nav_home {
  width: 100%;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ccc;
}

footer ul li a.disabled {
  cursor: text !important;
}

footer ul ul {
  display: block;
  margin-top: 15px;
}

footer ul ul li {
  margin-bottom: 15px;
  line-height: 1.4;
}

footer ul ul li a {
  color: #777;
  font-size: 0.9em;
  /*padding-left: 1rem;*/
}


footer .footer_bottom {
  background: #000;
}

footer .footer_bottom .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 0;
  color: #fff;
}

.footer_copyright {
  display: block;
  text-align: center;
}
.footer_copyright img {
  max-height: 36px;
  margin: 15px 0 8px;
}

.footer_copyright p {
  font-size: 1.2rem;
  line-height: 1.5;
  text-align: center;
}
.footer_copyright p:last-child {
  margin-top: 10px;
}

.footer_iso {
  display: block;
  margin-bottom: 10px;
  padding-left: 15px;
  padding-right: 15px;
  text-align: center;
}
.footer_iso .ic_ISO {
  margin: 0 auto 10px;
  width: 110px;
}
.footer_iso .ic_ISO img {
  height: auto;
  width: 100%;;
}
.footer_iso .ic_ISO span {
  color: #fff !important;
  display: block;
  font-size: 11px;
  text-align: center;
}
.footer_iso p {
  color: #fff !important;
  display: block;
  font-size: 12px !important;
  font-weight: 300;
  line-height: 1.3;
  margin: 0;
}

