@charset "utf-8";
/*----------------------------------------------------------
  base
----------------------------------------------------------*/
body {
  background: #fff;
  width: 100%;
  margin: 0 auto;
	padding: 0;
  font-family: "source-han-sans-japanese", sans-serif;
  font-weight: 400;
  font-style: normal;
	color: #000;
  letter-spacing: 0.1em;
	position: relative;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  top: 0;
}
body p {
  font-size: 16px;
  line-height: 2.5em;
}
html {
	overflow-x: hidden;
}
.wrapper {
  position: relative;
  width: 100%;
	margin: 0 auto;
  z-index: 1;
}
.inner {
  position: relative;
	max-width: 1080px;
  width: 95%;
	margin: 0 auto;
}
section {
  position: relative;
}
a {
  cursor: pointer;
}
.clear {
	clear: both;
}
.center {
	text-align: center;
	display: block;
}
.pc_only,
.pc_none,
.sp_none,
.sp_only {
  display: none !important;
}
.grecaptcha-badge {
  display: none !important;
}
@media screen and (min-width: 1200px) {

}
@media screen and (min-width: 900px) {
  .pc_only {
    display: block !important;
  }
}
@media screen and (max-width: 899px) {
  .inner {
		width: 95%;
	}
  .pc_none {
    display: block !important;
  }
}
@media screen and (min-width: 600px) {
  .sp_none {
    display: block !important;
	}
	.left {
		float: left;
	}
	.right {
		float: right;
	}
}
@media screen and (max-width: 599px) {
	body {
		font-size: 13px !important;
	}
  body p {
    font-size: 13px !important;
  }
  .sp_only {
    display: block !important;
	}
}
/*-----------------------------------------------
  header
-----------------------------------------------*/
header {
  position: relative;
  background: #000;
  color: #fff;
  width: 100%;
  z-index: 99;
  padding: 30px 0;
  margin-bottom: 60px;
}
header .header__logoBox {
  position: absolute;
  left: 0;
}
@media screen and (max-width: 899px){
  header {
    height: 70px !important;
    padding-top: 20px;
  }
  header .header__logoBox {
    margin-top: 0;
    left: 5px;
  }
}
/* header menu */
header .menulist ul li a {
  font-family: "roboto-condensed", sans-serif;
  font-weight: 400;
  font-size: 16px;
}
@media screen and (min-width: 900px) {
  header .hamburger {
    display: none !important;
  }
  header .menulist ul.main {
    display: flex;
    justify-content: flex-end;
  }
  header .menulist ul.main > li {
    padding-left: 20px;
  }
  header .menulist ul.main > li a {
    position: relative;
    transition: 0.6s;
  }
  header .menulist ul.main > li a::after {
    position: absolute;
    left: 0;
    content: '';
    width: 97%;
    height: 1px;
    background: #000000;
    bottom: -10px;
    opacity: 0;
    visibility: hidden;
    transition: 0.6s;
  }
  header .menulist ul.main > li a:hover::after {
    visibility: visible;
    bottom: -7px;
    opacity: 1;
  }
  header .menulist ul.main > li:last-first {
    padding-left: 0;
  }
}
@media screen and (max-width: 899px) {
  header .menu {
    text-align: center;
  }
  header .menulist {
    height: 100vh;
    padding-top: 50px;
    position: fixed;
    right: -50%;
    transition: all 0.6s;
    top: 0;
    width: 50%;
    z-index: 2;
    background-color: #fff;
  }
  header .menulist nav ul li {
    padding: 20px 40px;
    text-align: left;
  }
  header .menulist ul li.lang {
    text-align: center;
  }
  header .menulist ul li.lang.active::before {
    top: 0;
    right: 0;
    left: 0;
    margin: 12px auto 0;
  }
  /* hamburger */
  .hamburger {
    cursor: pointer;
    height: 60px;
    position: absolute;
    right: 0;
    top: -10px;
    width: 60px;
    z-index: 3;
  }
  .hamburger span {
    background: #626262;
    height: 3px;
    left: 15px;
    position: absolute;
    transition: all 0.6s;
    width: 32px;
  }
  .hamburger_linetop {
    top: 17px;
  }
  .hamburger_linecenter {
    top: 29px;
  }
  .hamburger_linebottom {
    top: 41px;
  }
  /* nav_open */
  .nav_open header .menulist {
    right: 0;
  }
  .nav_open .hamburger_linetop {
    top: 26px;
    transform: rotate(45deg);
  }
  .nav_open .hamburger_linecenter {
    left: 50%;
    width: 0;
  }
  .nav_open .hamburger_linebottom {
    top: 26px;
    transform: rotate(-45deg);
  }
  .nav_open .overlay {
    opacity: 0.8;
    visibility: visible;
  }
  .overlay {
    background-color: #000;
    cursor: pointer;
    height: 100vh;
    left: 0;
    opacity: 0;
    position: fixed;
    top: 0;
    transition: all 0.6s;
    visibility: hidden;
    width: 100vw;
    z-index: 1;
  }
}
@media screen and (max-width: 599px) {
  header .menulist {
    right: -100%;
    width: 100%;
  }
}
/*-----------------------------------------------
  footer
-----------------------------------------------*/
footer {
  position: relative;
  background: #000;
  width: 100%;
  height: 72px;
  margin: 65px auto 0;
  text-align: center;
}
footer .copyright {
  color: #fff;
  font-family: "source-han-sans-japanese", serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.1em;
  line-height: 72px;
}
@media screen and (min-width: 900px) {
}
@media screen and (max-width: 899px) {
}
