@charset "utf-8";
/* CSS Document */

html {
	font-size: 62.5%;
}
body {
	font-family:"游ゴシック Medium",YuGothic,YuGothicM,"Hiragino Kaku Gothic ProN","Hiragino Kaku Gothic Pro",メイリオ,Meiryo,sans-serif;
	font-size: 1.6rem;
	margin: 0;
	background-color: #222;
	background-image: url(../img/bg_black.jpg);
	background-attachment: fixed;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
}
body::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.24);
	z-index: -1;
}
h1, figure {
	margin: 0;
}
h2, h3, h4, p, table, dl {
	color: #fff;
}
h1 {
	font-family: serif;
}
h2 {
	margin: 64px 0 24px;
	font-family: serif;
	font-size: 1.6em;
	line-height: 1.8;
}
h3 {
	margin: 48px 0 8px;
	font-family: serif;
	line-height: 2.0;
}
img {
	vertical-align: bottom;
}
img, video {
	max-width: 100%;
}
picture {
	width: 100%;
}
p {
	line-height: 2.2;
}
a {
	color: #fff;
	text-decoration: none;
}
table, th, td {
	border-collapse: collapse;
    border: 1px solid #555;
}
	th {
		text-align: left;
		background-color: rgba( 255, 255, 255, 0.1 );
		font-weight: normal;
	}
	th, td {
		padding: 16px;
	}

.mt0 {
	margin-top: 0!important;
}

#wrapper {
	max-width: 800px;
	margin: auto;
}
	#wrapper > img {
		display: block;
	}

.youtubeWrap {
	background-color: #000;
	margin: auto;
	padding: 0 2%;
}
.youtube {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
}
	.youtube iframe {
		position: absolute;
		top: 0;
		right: 0;
		width: 100% !important;
		height: 100% !important;
	}
	  
.snsArea {
	background-color: #fff;
	display: flex;
	justify-content: center;
	text-align: center;
}
	.snsArea a {
		display: block;
		width: 32%;
	}
	.snsArea a img {
		width: 72%;
	}

.fixedBnr {
    position: fixed;
    bottom: 8px;
	right: 8px;
    z-index: 3;
    transition: .3s;
	max-width: 400px;
	width: 100%;
	opacity: 0;
  	visibility: hidden;
}
	.fixedBnr a {
		display: block;
	}
	.fixedBnr a + a {
		margin-top: 4px;
	}
	.active {
		opacity: 1;
		visibility: visible;
	}
	/* .fixedBnr {
		position: fixed;
		bottom: 0;
		right: 0;
		left: 0;
		margin: auto;
		z-index: 3;
		transition: .3s;
		max-width: 800px;
		width: 100%;
	}
	.fixedBnrFlex {
		display: flex;
		width: 100%;
	}
	.fixedBnrFlex a {
		width: calc(100% / 3);
		color: #fff;
		display: flex;
		justify-content: center;
		align-items: center;
		padding: 8px 0;
	}
	.fixedBnr i {
		font-size: 24px;
		margin-right: .5em;
	}
	.fixedBnr .bnrPhone {
		background-color: #032869;
	}
	.fixedBnr .bnrTrial {
		background-color: #032869;
	}
	.fixedBnr .bnrLine {
		background-color: #06c655;
	}
	.fixedBnr .bnrLine img {
		width: 32px;
		margin-right: .5em;
	} */

footer {
	text-align: center;
}
	footer p {
		font-size: 13px;
		margin: 0;
		padding: 1em;
		/* padding: 1em 1em 7em; */
	}

@media screen and (max-width: 767px) {
	.snsArea a img {
		/* width: 40%; */
	}

	.fixedBnr {
		bottom: 8px;
		right: 8px;
		left: 8px;
		max-width: calc(100% - 16px);
	}
	/* .fixedBnr a {
        flex-direction: column;
        padding: 8px;
    }
	.fixedBnr a p {
        margin: 0;
		font-size: 14px;
    }
	.fixedBnr i {
		margin: 4px 0;
	}
	.fixedBnr i,
	.fixedBnr .bnrLine img {
		margin-right: 0;
	} */

	footer p {
		padding-bottom: 24vw;
	}
}


/* ----- hamburger start ----- */
.hamburger {
	display : block;
	position: fixed;
	z-index : 5;
	right: calc(50% - 380px);
	top   : 12px;
	width : 42px;
	height: 42px;
	cursor: pointer;
	text-align: center;
	mix-blend-mode: difference;
}
.hamburger span {
	display : block;
	position: absolute;
	width   : 30px;
	height  : 2px ;
	left    : 6px;
	background : #fff;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition   : 0.3s ease-in-out;
	transition        : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
	top: 10px;
}
.hamburger span:nth-child(2) {
	top: 20px;
}
.hamburger span:nth-child(3) {
	top: 30px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
	top : 16px;
	left: 6px;
	background :#fff;
	-webkit-transform: rotate(-45deg);
	-moz-transform   : rotate(-45deg);
	transform        : rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
	top: 16px;
	background :#fff;
	-webkit-transform: rotate(45deg);
	-moz-transform   : rotate(45deg);
	transform        : rotate(45deg);
}

nav.globalMenuSp {
	position: fixed;
	z-index : 2;
	top  : 0;
	left : 0;
	color: #fff;
	background: rgba(0,0,0,0.9);
	text-align: center;
	width: 100%;
	opacity: 0;
	transition: opacity .6s ease, visibility .6s ease;
	pointer-events: none;
}

nav.globalMenuSp ul {
	margin: 0 auto;
	padding: 0;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}

nav.globalMenuSp ul li {
	list-style-type: none;
	padding: 0;
	width: 50%;
	box-shadow : 0 0 0 1px #888 inset;
	height: calc(100svh / 3);
	box-sizing: border-box;
}
nav.globalMenuSp ul li:last-child {
	padding-bottom: 0;
	width: 100%;
}
nav.globalMenuSp ul li:hover a {
	color: #f9fba9;
	background: rgba(0,0,0,0.64);
}
nav.globalMenuSp ul li a {
	color: #fff;
	text-decoration :none;
	transition: .4s all;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
}
nav.globalMenuSp ul li a i {
	font-size: 16px;
	margin-right: .5em;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
	opacity: 100;
	pointer-events: inherit;
	z-index: 4;
}

@media screen and (max-width: 800px) {
	.hamburger {
		top: 4px;
		right : 6px;
	}
}
/* ----- hamburger end ----- */