@charset "UTF-8";
.clearfix::after {
    content: "";
    display: block;
    clear: both;
}
html{
	font-size: 62.5%;
}
body {
    color: #444;
		font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    line-height: 1.8rem;
		font-size: 1.6rem;
		line-height: 1.4;
    letter-spacing: 0.2em;
}
img {
    vertical-align: middle;
}
a{
	color: #51c2ff;
}
#wrap{
	height: 100vh;
}
#contents{
	padding-top: 120px;
	min-height: calc(100vh - 45px);
  box-sizing: border-box;
}
.inner {
    max-width: 1040px;
    box-sizing: border-box;
    padding: 0 20px;
    margin: 0 auto;
}
.box{
	margin: 30px 50px;
	padding: 70px 0;
	text-align: center;
}
h1{
	font-size: 4.8rem;
	font-weight: bold;
	margin-bottom: 10px;
}
h1+p {
		font-size: 2.5rem;
}
h2{
	color: #3e3a39;
	letter-spacing: 10px;
	font-size: 3.7rem;
	font-weight: bold;
	margin-bottom: 40px;
}
h2 span{
	padding-left: 10px;
	position: relative;
	z-index: 2;
	border-bottom: 6px solid #1AC9FC;
	padding-bottom: 10px;
	display: inline-block;
	box-sizing: border-box;
}
h2 span:nth-of-type(2){
	margin-top: 40px;
}
h2+p{
	font-size: 2.0rem;
	line-height: 1.8;
	margin-bottom: 65px;
}
/* #header */
#header {
	width: 100%;
	background: #fff;
	position: fixed;
	z-index: 100;
	box-sizing: border-box;
}
#header .inner{
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 100%;
	height: 120px;
}
#header .logo {
	display: inline-block;
	width: 50%;
}
#header .logo a {
	text-decoration: none;
	display: inline-block;
	height: 58px;
	background: url(../img/logo.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: left center;
	text-indent: 150%;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
}
#header .logo.use_shop a {
	background: url(../img/logo_shop.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: left center;
}
/* #nav */
#nav,
#nav ul{
	margin: 0;
	position: relative;
}
#nav li{
	display: inline-block;
}
#nav li a{
	text-decoration: none;
	color: #3e3a39;
	font-weight: bold;
	padding: 12px 16px;
}
#nav li a:hover{
	border-bottom: 5px solid #1AC9FC;
}
#nav li.btn {
	margin-left: 16px;
}
#nav li.btn a{
	background: #ff7070;
	color: #fff;
	border-radius: 5px;
}
#nav li.btn a:hover{
	border-bottom: none;
	opacity: .6;
}
/* ハンバーガーボタン */

.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
}

.menu-trigger {
  position: absolute;
  width: 34px;
  height: 28px;
  right: 20px;
  display: none;
  top: -10px;
  bottom: 0;
  margin: auto;
}

.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #1AC9FC;
  border-radius: 4px;
}
.menu-trigger.use_shop span {
  background-color: #ff7070;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}

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

.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}

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

.menu-trigger.active span:nth-of-type(2) {
  left: 50%;
  opacity: 0;
  -webkit-animation: active-menu-bar02 0.8s forwards;
  animation: active-menu-bar02 0.8s forwards;
}

@-webkit-keyframes active-menu-bar02 {
  100% {
    height: 0;
  }
}

@keyframes active-menu-bar02 {
  100% {
    height: 0;
  }
}

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

/* #footer */
#footer{
	background:#65A2FB;
	color: #fff;
	text-align: center;
	width: 100%;
	padding: 10px;
	box-sizing: border-box;
	height: 45px;
}
#footer.use_shop{
	background:#ff7070;
}
/* 汎用 */
.flex {
    display: flex;
}
.center {
    text-align: center!important;
}
.red{
	color: #FF0000!important;
}