/* ===================
    header-container
   =================== */

.header-container a {
  text-decoration: none;
  cursor: pointer;
}
header {
  width: 100%;
  margin: 0;
}
.globalnav-wrap {
  position: fixed; left: 0; top:0;
  width: 100%;
  height: 50px;
  padding: 0 15px;
  z-index: 1000;
  display: flex;
  align-items: center;
}
.globalnav-wrap.globalnav-home {
  display: none;
}
.globalnav-wrap.add-bg {
  background-color: rgba(0,0,0,0.75);
}
.globalnav-wrap.globalnav-home.add-bg {
  display: flex;
}
.globalnav-wrap h1.site-id {
  margin: 0;
  width: 115px;
}
.nav-button-wrap {
  display: block;
  position: absolute;
  right: 0px;
  top: 3px;
  z-index: 1000;
  cursor: pointer;
  padding: 15px 8px;
  height: 53px;
}
.nav-button,
.nav-button span {
  display: inline-block;
  transition: all 0.3s;
}
.nav-button {
  z-index: 20;
  width: 25px;
  height: 19px;
  position: relative;
}
.nav-button span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #FFF;
  border-radius: 4px;
}
.nav-button span:nth-of-type(1) {
  top: 0;
}
.nav-button span:nth-of-type(2) {
  top: 8px;
}
.nav-button span:nth-of-type(3) {
  bottom: 0;
}
.active .nav-button span:nth-of-type(1) {
  transform: translateY(10px) rotate(-45deg);
}
.active .nav-button span:nth-of-type(2) {
  opacity: 0;
}
.active .nav-button span:nth-of-type(3) {
  transform: translateY(-6px) rotate(45deg);
}
.globalnav a {
  display: inline-block;
  font-family: 'Rajdhani', sans-serif;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #FFF;
  font-size: 1.6rem;
  letter-spacing: .05em;
  position: relative;
}
.globalnav a.current {
  color: #0094d6;
}
.globalnav a.current::after {
  content:"";
  display:block;
  width: 100%; height: 1px;
  background: #0094d6;
  position: absolute; bottom:0;
  animation-duration: .2s;
  animation-name: nav-hover;
}
.globalnav .contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 40px;
  padding-right: 40px;
}

#about {
	display: flex;
}
@media only screen and (max-width: 767px) {

  .globalnav-wrap.open {
    background-color: rgba(0,0,0,0.9);
  }
  .globalnav {
    position: absolute;
    left: 0;
    top: 50px;
    background-color: rgba(0,0,0,0.9);
    width: 100%;
    height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 20px 40px 40px;
  }
  .globalnav,
  .globalnav.close {
    display: none;
  }
  .globalnav-wrap.open .globalnav {
    display: block;
  }
  .globalnav li {
    width: 100%;
    text-align: center;
    margin-bottom: 17px;
  }
  .globalnav li.contact {
     margin-top: 30px;
  }
  .globalnav a {
    padding: 15px 0 8px;
  }
}
@media print, screen and (min-width: 768px) {
  .globalnav-wrap {
    height: 80px;
    padding: 0 0 0 30px;
  }
  .nav-button-wrap {
    display: none;
  }
  .globalnav-wrap h1.site-id {
    width: 155px;
    margin-right: auto;
    padding-bottom: 10px;
  }
  .globalnav-wrap h1.site-id a:hover img {
	  transition: .2s;
    opacity: 0.5;
  }
  .globalnav-wrap.open .globalnav ul,
  .globalnav ul {
    display: flex;
    align-items: center;
  }
  .globalnav ul li {
    display: inline-block;
    margin: 0 15px;
  }
  .globalnav a {
    padding: 10px 0;
  }
  .globalnav a:not(.btn-fill):hover {
    color: #0094d6;
  }
  .globalnav a:not(.btn-fill):hover::after {
    content:"";
    display:block;
    width: 100%; height: 1px;
    background: #0094d6;
    position: absolute; bottom:0;
    animation-duration: .2s;
    animation-name: nav-hover;
  }
}
@media print, screen and (min-width: 896px){
  .globalnav ul li {
    display: inline-block;
    margin: 0 20px;
  }
  .globalnav a.btn-fill:hover {
    color: #0094d6;
  }
}
@keyframes nav-hover {
  from { left: -10px;}
  to { left: 0;}
}

/* ===================
    footer-container
   =================== */

.footer-container .cv-section {
  padding-bottom: 40px;
}
.footer-container .cv-section h1 {
  padding: 30px 0 20px;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.5;
}
.footer-container .cv-section .link-wrapper {
  margin: 0 20px;
}
.footer-container .cv-section .link-wrapper li + li {
  margin-top: 10px;
}
@media print, screen and (min-width: 768px){ 
  .footer-container .cv-section h1 {
    padding: 40px 0 30px;
    font-size: 1.8rem;
  }
  .footer-container .cv-section .link-wrapper {
    margin: 0 40px;
    display: flex;
    justify-content: space-between;
  }
  .footer-container .cv-section .link-wrapper li {
    width: calc((100% - 30px) / 2);
  }
  .footer-container .cv-section .link-wrapper li + li {
    margin-top: 0;
  }
}
@media print, screen and (min-width: 890px){
  .footer-container .cv-section .link-wrapper {
    margin: 0 auto;
    width: 810px;
  }
  .footer-container .cv-section .link-wrapper li {
    width: 390px;
  }
}

footer {
  padding: 30px 0 40px;
  text-align: center;
}
footer .warnax-info h1 {
  font-size: 1.4rem;
}
footer .warnax-info h1 img {
  width: 160px;
  display: block;
  margin: 0 auto 5px;
}
footer .warnax-info address {
  font-style: normal;
  margin: 20px 0 40px;
}
footer .warnax-info address a {
  text-decoration: none;
}
footer .warnax-info address a.link-tel {
  color: #FFF;
}
footer .warnax-info address a:hover {
  text-decoration: underline;
}
footer .sns-section {
  padding-top: 30px;
}
footer .sns {
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .sns li {
  width: 40px; height: 40px;
  position: relative;
  padding: 0;
}
footer .sns li a {
  width: 100%; height: 100%;
  display: block;
  position: relative;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  cursor: pointer;
}
@font-face {
  font-family: 'icomoon';
  src: url('../fonts/icomoon.eot?ea2byb');
  src: url('../fonts/icomoon.eot?ea2byb#iefix') format('embedded-opentype'),
    url('../fonts/icomoon.ttf?ea2byb') format('truetype'),
    url('../fonts/icomoon.woff?ea2byb') format('woff'),
    url('../fonts/icomoon.svg?ea2byb#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
}
.icon-youtube,.icon-facebook,.icon-instagram,.icon-twitter,.link-tel-icon::before {
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 22px;
}
footer .sns li:before {
  position: absolute; top:50%; left: 50%;
	transform: translate(-50% , -50%);
}
footer .sns li.icon-youtube:before {
  content: "\ea9d";
  color: #FFF;
}
footer .sns li.icon-facebook:before {
  content: "\ea90";
  color: #FFF;
}
footer .sns li.icon-instagram:before {
  content: "\ea92";
  color: #FFF;
}
footer .sns li.icon-twitter:before {
  content: "\ea96";
  color: #FFF;
}
footer .sns li:hover:before {
  color: #0093d6;
  transition: .2s;
}
footer .copyright {
  color: #8f8f8f;
  font-size: 1.2rem;
  margin-top: 10px;
}
@media print, screen and (min-width: 768px){
  footer {
    padding: 50px 0 40px;
  }
  footer .warnax-info {
    text-align: left;
    margin-bottom: 10px;
  }
  footer .warnax-info h1 {
    font-size: 1.6rem;
  }
  footer .warnax-info h1 img {
    width: 140px;
    display: inline-block;
    margin: 0 20px 10px 0;
  }
}
@media print, screen and (min-width: 1366px) { 
  footer .contents-inner {
    display: flex;
    align-items: flex-end;
  }
  footer .warnax-info {
    width: 900px;
    margin-right: auto;
  }
  footer .sns-section {
  }
}

.page-top {
  position: fixed; bottom: 10px; right: 10px;
  z-index: 1000;
  border: 1px solid #FFF;
  background-color: rgba(0,0,0,0.75);
  width: 40px; height: 40px;
  border-radius: 20px;
}
.page-top a {
  display: block;
  width: 40px; height: 40px;
  border-radius: 20px;
  text-indent:-999em;
  position: relative;
}
.page-top a::after {
	content:"";
	display:block;
	width: 9px; height: 14px;
	background:url("../img/cmn/page_top.svg") no-repeat top center;
  background-size: 100%;
  position: absolute; top:50%; left: 47.5%;
  transform: translate(-50% , -50%);
  cursor: pointer;
  transition: .2s;
}
.page-top a:hover {
  background-color: rgba(255,255,255,0.2);
}
.page-top a:hover::after {
  top:40%;
}

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
