@charset "UTF-8";
/* -----------------------------------------------------------
reset
----------------------------------------------------------- */
* {
	margin: 0;
	padding: 0;
}

html {
	overflow-y: scroll;
}

div, h1, h2, h3, h4, h5, h6, p, dl, dt, dd, ol, ul, li, form, input, textarea, button, table, tr, th, td, article, aside, footer, header, hgroup, nav, section, a, span {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {
	margin: 0;
	padding: 0;
}

address, caption, cite, code, dfn, em, th, var {
	font-style: normal;
	font-weight: normal;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

q:before, q:after {
	content: '';
}

object,
embed {
	vertical-align: top;
}

hr, legend {
	display: none;
	border: none;
}

abbr, acronym, fieldset {
	border: 0;
}

tr, th, td, caption {
	vertical-align: top;
	font-style: normal;
	font-weight: normal;
	text-align: left;
}

ol, ul {
	list-style: none;
}

h1, h2, h3, h4, h5, h6 {
	font-style: normal;
	font-weight: normal;
	font-size: 100%;
}

img {
	border: 0;
	font-size: 0;
	line-height: 0;
	vertical-align: bottom;
}

input[type="text"],
input[type="submit"],
input[type="button"] {
	border-radius: 0;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	appearance: button;
	border: none;
	box-sizing: border-box;
	cursor: pointer;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
	display: none;
}

input[type="submit"]:focus,
input[type="button"]:focus {
	outline-offset: -2px;
	border: 0;
}

input:focus, button:focus {
	outline: 0;
	border: 0;
}

button {
	border-radius: 0;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	appearance: button;
	border: none;
	box-sizing: border-box;
	cursor: pointer;
}

button::-webkit-search-decoration::-webkit-search-decoration {
	display: none;
}

button:focus {
	outline-offset: -2px;
}

button, select, input {
	font-family: 'Noto Sans Japanese','Hiragino Kaku Gothic Pro',sans-serif;
	-webkit-appearance: none;
	appearance: none;
	outline: 0;
	border-radius: 0;
	border: 0;
	margin: 0;
	padding: 0;
	cursor: pointer;
}

button::-ms-expand, select::-ms-expand, input::-ms-expand {
	display: none;
}

label {
	cursor: pointer;
}

/* ease
----------------------------------------*/
/*////////////////////////////////////////

 mixin

////////////////////////////////////////*/
/*////////////////////////////////////////

style.scss

////////////////////////////////////////*/
html {
	font-size: 62.5%;
	height: 100%;
}

html.is-sp {
	font-size: 62.5% !important;
}

body {
	height: 100%;
	background: transparent;
	font-size: 1.6rem;
	line-height: 1.8;
	-webkit-text-size-adjust: 100%;
}

body * {
	box-sizing: border-box;
	font-family: 'Noto Sans JP', 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', 'メイリオ', 'Meiryo', sans-serif;
}

a {
	text-decoration: none;
	color: currentColor;
}

@media screen and (min-width: 641px) {
	a.op-hv {
		transition: 0.3s;
	}
	a.op-hv:hover {
		opacity: 0.7;
	}
}

/*////////////////////////////////////////

汎用class

////////////////////////////////////////*/
@media screen and (min-width: 641px) {
	.SP {
		display: none !important;
	}
}

@media screen and (max-width: 640px) {
	.PC {
		display: none !important;
	}
}

/*////////////////////////////////////////

wrapper

////////////////////////////////////////*/
#wrapper {
	min-width: 1100px;
	height: 100%;
}

@media screen and (max-width: 640px) {
	#wrapper {
		min-width: 320px;
	}
}

/*////////////////////////////////////////

 header & footer

////////////////////////////////////////*/
#lp-header {
	background: #FFF;
	position: fixed;
	width: 100%;
	z-index: 1000;
	top: 0;
	left: 0;
}

#lp-header .inner-wrap {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: center;
	align-items: center;
	max-width: 1100px;
	margin: auto;
	padding: 17px 45px 15px;
}

@media screen and (max-width: 640px) {
	#lp-header .inner-wrap {
		padding: 11px 60px 11px 11px;
	}
}

#lp-header .logo img {
	width: 140px;
}

@media screen and (max-width: 640px) {
	#lp-header .logo img {
		width: 70px;
	}
}

#lp-header .inq-btn {
	display: block;
	font-size: 15px;
	line-height: 40px;
	padding: 0 2em 0 2em;
	color: #000;
	border: 1px solid #c8c8c8;
	border-radius: 3px;
}

#lp-header .inq-btn::after {
	content: '';
	display: inline-block;
	vertical-align: middle;
	margin-left: 0.5em;
	width: 0.9em;
	height: 0.9em;
	background: url(../img/icon-blank-bk.png) no-repeat 50% 0;
	background-size: contain;
	-webkit-transform: translate(0, -0.1em);
	transform: translate(0, -0.1em);
}

@media screen and (max-width: 640px) {
	#lp-header .inq-btn {
		font-size: 12px;
		line-height: 25px;
		padding: 0 1em 0 1em;
		background-position: 0.7em 50%;
	}
}

@media screen and (min-width: 641px) {
	#lp-header .inq-btn {
		transition: 0.3s;
	}
	#lp-header .inq-btn:hover {
		background-color: #efefef;
	}
}

#lp-footer {
	position: relative;
	z-index: 50;
	background: #FFF;
	border-bottom: 4px solid #cf142b;
	text-align: center;
}

#lp-footer .inner-wrap {
	max-width: 1100px;
	margin: auto;
}

#lp-footer .copyright {
	padding: 25px 15px;
	font-size: 12px;
	color: #999;
}

/*////////////////////////////////////////

main-contents

////////////////////////////////////////*/
#main-contents {
	display: block;
	margin-top: 80px;
	overflow: hidden;
}

@media screen and (max-width: 640px) {
	#main-contents {
		margin-top: 50px;
	}
}

#main-contents img {
	max-width: 100%;
}

/*////////////////////////////////////////

sp-menu

////////////////////////////////////////*/
#sp-menu {
	color: #FFF;
}

#sp-menu .menu-btn {
	position: fixed;
	z-index: 2000;
	display: block;
	top: 0;
	right: 0;
	width: 50px;
	height: 50px;
	background: #b42240;
}

#sp-menu .menu-btn span, #sp-menu .menu-btn::before, #sp-menu .menu-btn::after {
	content: '';
	display: block;
	position: absolute;
	width: 18px;
	height: 2px;
	overflow: hidden;
	background: #FFF;
	top: calc(50% - 1px);
	left: calc(50% - 9px);
	transition: 0.3s;
}

#sp-menu .menu-btn::before {
	-webkit-transform: translate(0, -7px);
	transform: translate(0, -7px);
}

#sp-menu .menu-btn::after {
	-webkit-transform: translate(0, 7px);
	transform: translate(0, 7px);
}

.menu-open #sp-menu .menu-btn span {
	opacity: 0;
}

.menu-open #sp-menu .menu-btn::before {
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
}

.menu-open #sp-menu .menu-btn::after {
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
}

#sp-menu .menu-wrap {
	position: fixed;
	z-index: 500;
	top: 50px;
	bottom: 100%;
	width: 100%;
	background: rgba(0, 0, 0, 0.9);
	overflow: hidden;
	transition: 0.5s;
	pointer-events: none;
}

.menu-open #sp-menu .menu-wrap {
	bottom: 0;
	pointer-events: auto;
}

#sp-menu .menu-wrap .menu-list {
	padding: 10.66667vw 10vw;
	font-size: 3.73333vw;
}

#sp-menu .menu-wrap .menu-list li {
	border: 0 solid rgba(255, 255, 255, 0.3);
	border-bottom-width: 1px;
}

#sp-menu .menu-wrap .menu-list li:first-child {
	border-top-width: 1px;
}

#sp-menu .menu-wrap .menu-list li a {
	display: block;
	padding: 1em 0.5em;
	background: url(../img/icon-arrow-down-wh.png) no-repeat 98% 50%;
	background-size: 0.8em auto;
}

#sp-menu .menu-wrap .menu-list li a[target="_blank"] {
	background-image: url(../img/icon-blank-wh.png);
}

@media screen and (min-width: 641px) {
	#sp-menu {
		display: none;
	}
}

/*////////////////////////////////////////

fixed-btn

////////////////////////////////////////*/
#fixed-btn {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 100;
	transition: opacity 0.3s;
}

@media screen and (max-width: 640px) {
	#fixed-btn {
		right: 2.66667vw;
		bottom: 2.66667vw;
	}
}

.show-inquiry:not(.menu-open) #fixed-btn {
	opacity: 0;
	pointer-events: none;
}

#fixed-btn a {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
	font-size: 16px;
	line-height: 1.4;
	text-align: center;
	background: #e74472;
	color: #FFF;
	width: 150px;
	height: 150px;
	border-radius: 50%;
}

#fixed-btn a span::after {
	content: '';
	display: inline-block;
	vertical-align: middle;
	margin-left: 0.5em;
	width: 1.1em;
	height: 1.1em;
	background: url(../img/icon-blank-wh.png) no-repeat 50% 0;
	background-size: contain;
	display: block;
	margin: 0.5em auto 0;
}

@media screen and (max-width: 640px) {
	#fixed-btn a {
		width: 21.33333vw;
		height: 21.33333vw;
		font-size: 2.26667vw;
	}
}

@media screen and (min-width: 641px) {
	#fixed-btn a {
		transition: 0.5s cubic-bezier(0.22, 3, 0.8, 1);
	}
	#fixed-btn a:hover {
		-webkit-transform: scale(1.08);
		transform: scale(1.08);
	}
}

/*////////////////////////////////////////

main-sec

////////////////////////////////////////*/
.main-sec {
	position: relative;
	text-align: center;
}

.main-sec::before, .main-sec::after {
	content: '';
	position: absolute;
	z-index: 1;
	pointer-events: none;
}

.main-sec > .inner-wrap {
	max-width: 1100px;
	margin: auto;
	position: relative;
	z-index: 10;
}

@media screen and (max-width: 640px) {
	.main-sec > .inner-wrap {
		max-width: 100%;
		margin-left: 4vw;
		margin-right: 4vw;
	}
}

.main-sec > .inner-wrap.wide {
	max-width: 1400px;
}

@media screen and (max-width: 640px) {
	.main-sec > .inner-wrap.wide {
		max-width: 100%;
	}
}

.main-sec > .inner-wrap.wide .wide-inner {
	display: block;
	margin: 0 4.28571%;
}

@media screen and (min-width: 1401px) {
	.main-sec > .inner-wrap.wide .wide-inner {
		margin: 0 60px;
	}
}

@media screen and (max-width: 640px) {
	.main-sec > .inner-wrap.wide .wide-inner {
		margin: auto;
	}
}

.main-sec .sec-ttl {
	font-weight: 700;
	font-size: 50px;
	margin-bottom: 0.7em;
	line-height: 1.3;
}

@media screen and (max-width: 640px) {
	.main-sec .sec-ttl {
		font-size: 7.33333vw;
	}
}

@media screen and (min-width: 641px) {
	.main-sec .sec-ttl.medium {
		font-size: 40px;
		font-weight: 500;
	}
}

.main-sec .sec-lead {
	font-size: 18px;
}

@media screen and (max-width: 640px) {
	.main-sec .sec-lead {
		font-size: 4vw;
		text-align: justify;
		text-justify: inter-ideograph;
	}
}

.main-sec .sec-lead.large {
	font-size: 22px;
}

@media screen and (max-width: 640px) {
	.main-sec .sec-lead.large {
		font-size: 4.53333vw;
	}
}

.main-sec .notes {
	font-size: 13px;
	text-align: left;
}

@media screen and (max-width: 640px) {
	.main-sec .notes {
		font-size: 2.93333vw;
	}
}

.main-sec .notes li {
	overflow: hidden;
}

.main-sec .notes li span {
	display: block;
	overflow: hidden;
}

.main-sec .notes li span:first-child {
	float: left;
}

.main-sec .trial-btn {
	display: block;
	margin: 40px auto;
	width: 800px;
	font-size: 30px;
	font-weight: 500;
	line-height: 100px;
	color: #FFF;
	background: #e74472;
	border-radius: 6px;
}

.main-sec .trial-btn::after {
	content: '';
	display: inline-block;
	vertical-align: middle;
	margin-left: 0.5em;
	width: 0.7em;
	height: 0.7em;
	background: url(../img/icon-blank-wh.png) no-repeat 50% 0;
	background-size: contain;
}

@media screen and (max-width: 640px) {
	.main-sec .trial-btn {
		width: auto;
		margin: 6.66667vw auto;
		font-size: 4.26667vw;
		line-height: 14.66667vw;
	}
}

.main-sec .inquiry-btn {
	display: block;
	margin: 40px auto;
	width: 550px;
	font-size: 20px;
	font-weight: 500;
	line-height: 70px;
	color: #FFF;
	background: #e74472;
	border-radius: 6px;
}

.main-sec .inquiry-btn::after {
	content: '';
	display: inline-block;
	vertical-align: middle;
	margin-left: 0.5em;
	width: 0.7em;
	height: 0.7em;
	background: url(../img/icon-blank-wh.png) no-repeat 50% 0;
	background-size: contain;
}

@media screen and (max-width: 640px) {
	.main-sec .inquiry-btn {
		width: 76vw;
		margin: 5.33333vw auto;
		font-size: 3.73333vw;
		line-height: 13.33333vw;
	}
}

/*////////////////////////////////////////

mv

////////////////////////////////////////*/
#mv {
	background: #000;
	overflow: hidden;
	height: 750px;
}

@media screen and (min-width: 1401px) {
	#mv {
		height: 53.57143vw;
	}
}

@media screen and (max-width: 640px) {
	#mv {
		height: 120vw;
	}
}

#mv .mv-carousel {
	content: '';
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
	transition: opacity 1s;
}

.ready #mv .mv-carousel {
	opacity: 1;
}

#mv .mv-carousel .slick-list, #mv .mv-carousel .slick-track {
	height: 100%;
}

#mv .mv-carousel::after {
	content: '';
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url(../img/mv-ttl-bg-pc.png) no-repeat 50% 50%;
	background-size: cover;
}

@media screen and (max-width: 640px) {
	#mv .mv-carousel::after {
		background-image: url(../img/mv-ttl-bg-sp.png);
	}
}

#mv .mv-carousel li {
	background: no-repeat 50% 50% #666;
	background-size: cover;
	height: 100%;
}

#mv .mv-carousel li.slide-01 {
	background-image: url(../img/mv-img-01-pc.jpg);
}

@media screen and (max-width: 640px) {
	#mv .mv-carousel li.slide-01 {
		background-image: url(../img/mv-img-01-sp.jpg);
	}
}

#mv .mv-carousel li.slide-02 {
	background-image: url(../img/mv-img-02-pc.jpg?v=2);
}

@media screen and (max-width: 640px) {
	#mv .mv-carousel li.slide-02 {
		background-image: url(../img/mv-img-02-sp.jpg?v=2);
	}
}

#mv .inner-wrap {
	content: '';
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	max-width: 100%;
	text-align: center;
	color: #FFF;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
	margin-top: -140px;
}

#mv .inner-wrap > * {
	min-height: 0%;
	/* for IE */
}

@media screen and (min-width: 1401px) {
	#mv .inner-wrap {
		margin-top: -10%;
	}
}

@media screen and (max-width: 640px) {
	#mv .inner-wrap {
		margin-top: -10.66667vw;
	}
}

#mv .mv-ttl {
	width: 633px;
	margin-bottom: 25px;
}

@media screen and (min-width: 1401px) {
	#mv .mv-ttl {
		width: 45.21429vw;
	}
}

@media screen and (max-width: 640px) {
	#mv .mv-ttl {
		width: 90.66667vw;
		margin-bottom: 3.33333vw;
	}
}

#mv .mv-ttl .txt {
	display: block;
	font-size: 34px;
	font-weight: 700;
	margin-bottom: 5px;
	letter-spacing: 0.05em;
}

@media screen and (min-width: 1401px) {
	#mv .mv-ttl .txt {
		font-size: 2.42857vw;
	}
}

@media screen and (max-width: 640px) {
	#mv .mv-ttl .txt {
		font-size: 4.53333vw;
	}
}

#mv .mv-list {
	border-top: 2px solid #FFF;
	text-align: left;
	padding-top: 20px;
}

@media screen and (max-width: 640px) {
	#mv .mv-list {
		padding: 2.66667vw 2vw 0;
	}
}

#mv .mv-list span {
	display: inline-block;
	min-width: 9.5em;
	font-size: 18px;
	font-weight: 700;
	padding-left: 0.5em;
}

@media screen and (max-width: 640px) {
	#mv .mv-list span {
		font-size: 3.46667vw;
	}
}

#mv .mv-list span::before {
	content: '';
	display: inline-block;
	vertical-align: -0.1em;
	width: 1em;
	height: 1em;
	margin-right: 0.6em;
	background: url(../img/icon-check-wh.png) no-repeat 50% 50%;
	background-size: contain;
}

#mv .mv-movie-btn {
	display: block;
	margin-top: 25px;
	background: #000;
	font-size: 18px;
	width: 320px;
	line-height: 60px;
	text-align: center;
	border-radius: 6px;
}

@media screen and (max-width: 640px) {
	#mv .mv-movie-btn {
		width: 53.33333vw;
		line-height: 10.66667vw;
		font-size: 3.46667vw;
		margin-top: 3.33333vw;
	}
}

#mv .mv-movie-btn::before {
	content: '';
	display: inline-block;
	vertical-align: -0.1em;
	width: 1em;
	height: 1em;
	margin-right: 0.6em;
	background: url(../img/mv-icon-play.png) no-repeat 50% 50%;
	background-size: contain;
}

@media screen and (min-width: 641px) {
	#mv .mv-movie-btn {
		transition: 0.3s;
	}
	#mv .mv-movie-btn:hover {
		background-color: #e74472;
	}
}

/*////////////////////////////////////////

scroll-icon

////////////////////////////////////////*/
.scroll-icon {
	position: absolute;
	padding: 50px 5px 0;
	z-index: 50;
	background: url(../img/icon-scroll.png) no-repeat 50% 0;
	background-size: contain;
	left: 4.28571%;
	top: 52%;
}

@media screen and (max-width: 640px) {
	.scroll-icon {
		display: none;
	}
}

.scroll-icon span {
	display: block;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.3);
}

.scroll-icon span::after {
	content: '';
	display: block;
	width: 1px;
	height: 150px;
	background: #FFF;
	animation: scroll-icon 3s infinite linear;
}

@keyframes scroll-icon {
	0% {
		-webkit-transform: translate(0, -100%);
		transform: translate(0, -100%);
	}
	100% {
		-webkit-transform: translate(0, 100%);
		transform: translate(0, 100%);
	}
}

/*////////////////////////////////////////

anc

////////////////////////////////////////*/
#anc {
	color: #FFF;
	padding: 120px 0;
	margin-top: -140px;
}

@media screen and (min-width: 1401px) {
	#anc {
		margin-top: -10%;
	}
}

@media screen and (max-width: 640px) {
	#anc {
		padding: 16vw 0;
		margin-top: -10.66667vw;
	}
}

#anc::before {
	content: '';
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #000;
	-webkit-transform: skew(0deg, 11deg);
	transform: skew(0deg, 11deg);
}

#anc .anc-list {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
	text-align: center;
}

#anc .anc-list li {
	width: 300px;
	font-size: 16px;
	line-height: 1.4;
	margin: 10px 0;
	border: 0px solid #484848;
}

#anc .anc-list li:nth-of-type(2), #anc .anc-list li:nth-of-type(5) {
	border-width: 0 1px;
}

@media screen and (max-width: 640px) {
	#anc .anc-list li {
		display: -webkit-flex;
		display: flex;
		-webkit-justify-content: center;
		justify-content: center;
		-webkit-align-items: center;
		align-items: center;
		font-size: 3.46667vw;
		width: 50%;
		margin: 1.33333vw 0;
		min-height: 15.33333vw;
	}
	#anc .anc-list li:nth-of-type(2), #anc .anc-list li:nth-of-type(5) {
		border-width: 0;
	}
	#anc .anc-list li:nth-of-type(even) {
		border-width: 0 0 0 1px;
	}
}

#anc .anc-list li a {
	display: block;
	padding: 1em 0 0.5em;
}

@media screen and (max-width: 640px) {
	#anc .anc-list li a {
		padding: 0;
	}
}

#anc .anc-list li a::after {
	content: '';
	display: block;
	margin: 0.5em auto 0;
	width: 1em;
	height: 1em;
	background: url(../img/icon-arrow-down-wh.png) no-repeat 50% 0;
	background-size: contain;
}

#anc .anc-list li a[target="_blank"]::after {
	background-image: url(../img/icon-blank-wh.png);
}

/*////////////////////////////////////////

about

////////////////////////////////////////*/
#about {
	color: #FFF;
	padding-bottom: 200px;
	margin: -1px auto 0;
	z-index: 3;
}

@media screen and (max-width: 640px) {
	#about {
		padding-bottom: 26.66667vw;
	}
}

#about::before {
	content: '';
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #000;
	-webkit-transform: skew(0deg, 11deg);
	transform: skew(0deg, 11deg);
	z-index: 2;
}

#about::after {
	content: '';
	position: absolute;
	width: 37.14286%;
	padding-top: 14.85714%;
	left: 0;
	bottom: 0;
	margin-bottom: -4.85714%;
	background: url(../img/sec-bg-green-left.png) no-repeat 0 0;
	background-size: auto 100%;
	z-index: 1;
	z-index: 1;
}

#about .points {
	margin-top: 80px;
}

@media screen and (max-width: 640px) {
	#about .points {
		margin-top: 13.33333vw;
	}
}

#about .points .points-ttl {
	font-size: 32px;
	font-weight: 500;
	margin-bottom: 1.5em;
}

@media screen and (max-width: 640px) {
	#about .points .points-ttl {
		font-size: 5.6vw;
		margin-bottom: 1em;
	}
}

#about .points .column-wrap {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
}

@media screen and (max-width: 640px) {
	#about .points .column-wrap {
		display: block;
	}
}

#about .points .column-wrap .col-item {
	width: 300px;
	height: 300px;
	background-color: #a8cf52;
	border-radius: 50%;
	color: #000;
	margin: 0 20px;
}

@media screen and (max-width: 640px) {
	#about .points .column-wrap .col-item {
		width: 56vw;
		height: 56vw;
		margin: 0;
	}
	#about .points .column-wrap .col-item:nth-of-type(even) {
		margin: -6.66667vw 0 -6.66667vw auto;
	}
}

#about .points .column-wrap .col-item img {
	display: block;
	width: 26.66667%;
	margin: auto;
	padding-top: 10%;
}

#about .points .column-wrap .col-item figcaption {
	display: inline-block;
	text-align: left;
	font-size: 22px;
	font-weight: 500;
	line-height: 1.6;
}

@media screen and (max-width: 640px) {
	#about .points .column-wrap .col-item figcaption {
		font-size: 4vw;
	}
}

#about .points .column-wrap .col-item:nth-of-type(n+2) figcaption {
	margin-right: -0.8em;
}

/*////////////////////////////////////////

solution

////////////////////////////////////////*/
#solution {
	padding: 180px 0;
	z-index: 2;
}

@media screen and (max-width: 640px) {
	#solution {
		padding: 18.66667vw 0;
	}
}

#solution::before {
	content: '';
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #FFF;
	-webkit-transform: skew(0deg, -11deg);
	transform: skew(0deg, -11deg);
	z-index: 2;
}

#solution::after {
	content: '';
	position: absolute;
	width: 37.14286%;
	padding-top: 14.85714%;
	right: 0;
	bottom: 0;
	margin-bottom: -4.85714%;
	background: url(../img/sec-bg-gray-right.png) no-repeat 0 0;
	background-size: auto 100%;
	z-index: 1;
	z-index: 1;
}

#solution .column-wrap {
	max-width: 1100px;
	margin: 50px auto;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: center;
	align-items: center;
}

@media screen and (max-width: 640px) {
	#solution .column-wrap {
		display: block;
		margin: 10.66667vw auto;
	}
}

#solution .column-wrap .col-item {
	width: 345px;
}

@media screen and (max-width: 640px) {
	#solution .column-wrap .col-item {
		width: auto;
		margin: 10.66667vw auto;
	}
	#solution .column-wrap .col-item:nth-of-type(1) .col-img {
		margin: 6.66667vw auto;
	}
}

#solution .column-wrap .col-ttl {
	font-size: 22px;
	font-weight: 500;
	margin-bottom: 1em;
}

@media screen and (max-width: 640px) {
	#solution .column-wrap .col-ttl {
		font-size: 5.33333vw;
		margin-bottom: 0;
	}
}

#solution .column-wrap .col-txt {
	text-align: justify;
	text-justify: inter-ideograph;
	font-size: 16px;
	margin-top: 1.2em;
}

@media screen and (max-width: 640px) {
	#solution .column-wrap .col-txt {
		font-size: 4vw;
		margin-top: 0;
	}
}

#solution .movie-wrap {
	margin-top: 80px;
	margin-bottom: 80px;
}

@media screen and (max-width: 640px) {
	#solution .movie-wrap {
		margin: 10.66667vw auto;
	}
}

#solution .movie-wrap .movie-btn {
	position: relative;
	display: block;
	height: 550px;
	overflow: hidden;
	background: #000;
}

@media screen and (max-width: 640px) {
	#solution .movie-wrap .movie-btn {
		height: 73.33333vw;
	}
}

#solution .movie-wrap .movie-btn span {
	display: none;
}

#solution .movie-wrap .movie-btn::before {
	content: '';
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url(../img/solution-movie-th-pc.jpg) no-repeat 50% 50%;
	background-size: cover;
}

@media screen and (max-width: 640px) {
	#solution .movie-wrap .movie-btn::before {
		background-image: url(../img/solution-movie-th-sp.jpg);
	}
}

#solution .movie-wrap .movie-btn::after {
	content: '';
	position: absolute;
	width: 100px;
	height: 100px;
	box-sizing: border-box;
	top: 54%;
	left: 49.8%;
	margin: -50px 0 0 -50px;
	border: 2px solid #FFF;
	border-radius: 50%;
	background: url(../img/icon-play.png) no-repeat 55% 50%;
	background-size: 30% auto;
}

@media screen and (max-width: 640px) {
	#solution .movie-wrap .movie-btn::after {
		width: 16vw;
		height: 16vw;
		margin: -8vw 0 0 -8vw;
		top: 55%;
		left: 50%;
	}
}

@media screen and (min-width: 641px) {
	#solution .movie-wrap .movie-btn::before, #solution .movie-wrap .movie-btn::after {
		transition: 0.5s;
	}
	#solution .movie-wrap .movie-btn:hover::before {
		opacity: 0.8;
		-webkit-transform: scale(1.03);
		transform: scale(1.03);
	}
	#solution .movie-wrap .movie-btn:hover::after {
		-webkit-transform: scale(1.2);
		transform: scale(1.2);
	}
}

/*////////////////////////////////////////

install

////////////////////////////////////////*/
#install {
	padding: 160px 0 50px;
	z-index: 1;
}

@media screen and (max-width: 640px) {
	#install {
		padding: 18.66667vw 0;
	}
}

#install::before {
	content: '';
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #eaeaea;
	-webkit-transform: skew(0deg, -11deg);
	transform: skew(0deg, -11deg);
}

#install .column-wrap {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: flex-start;
	align-items: flex-start;
	margin: 50px 15px 0;
}

@media screen and (max-width: 640px) {
	#install .column-wrap {
		display: block;
		margin: 10.66667vw auto 0;
	}
}

#install .column-wrap .col-item {
	position: relative;
	width: 205px;
}

@media screen and (max-width: 640px) {
	#install .column-wrap .col-item {
		width: auto;
	}
}

#install .column-wrap .col-item:not(:last-child)::after {
	content: '';
	position: absolute;
	background: url(../img/install-icon-arrow-pc.png) no-repeat 50% 50%;
	background-size: contain;
	width: 38px;
	height: 30px;
	top: 140px;
	right: -55px;
}

@media screen and (max-width: 640px) {
	#install .column-wrap .col-item:not(:last-child)::after {
		display: block;
		position: static;
		width: 12vw;
		height: 12vw;
		margin: 5.33333vw auto;
		background-image: url(../img/install-icon-arrow-sp.png);
	}
}

#install .column-wrap .col-item img {
	display: block;
	padding: 0 8px;
}

@media screen and (max-width: 640px) {
	#install .column-wrap .col-item img {
		width: 38vw;
		margin: auto;
		padding: 0;
	}
}

#install .column-wrap .col-item figcaption {
	display: block;
	font-size: 18px;
	line-height: 1.5;
	white-space: nowrap;
	margin-top: 1em;
}

@media screen and (max-width: 640px) {
	#install .column-wrap .col-item figcaption {
		font-size: 4vw;
	}
}

@media screen and (min-width: 641px) {
	#install .column-wrap .col-item:nth-of-type(1) {
		margin-top: 100px;
	}
	#install .column-wrap .col-item:nth-of-type(2) {
		margin-top: 50px;
	}
	#install .column-wrap .col-item:nth-of-type(4) img {
		padding: 60px 0 0;
	}
}

@media screen and (max-width: 640px) {
	#install .column-wrap .col-item:nth-of-type(4) img {
		width: 44vw;
	}
}

/*////////////////////////////////////////

detection

////////////////////////////////////////*/
#detection {
	padding: 150px 0 180px;
	z-index: 2;
}

@media screen and (max-width: 640px) {
	#detection {
		padding: 18.66667vw 0;
	}
}

#detection::before {
	content: '';
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #FFF;
	-webkit-transform: skew(0deg, 11deg);
	transform: skew(0deg, 11deg);
	z-index: 1;
}

#detection::after {
	content: '';
	position: absolute;
	width: 37.14286%;
	padding-top: 14.85714%;
	right: 0;
	bottom: 0;
	margin-bottom: -4.85714%;
	background: url(../img/sec-bg-green-right.png) no-repeat 0 0;
	background-size: auto 100%;
	z-index: 1;
	margin-bottom: -10%;
	z-index: 2;
}

#detection .sec-ttl span {
	font-size: 0.9em;
	font-weight: normal;
}

@media screen and (max-width: 640px) {
	#detection .sec-ttl span {
		font-size: 0.75em;
	}
}

#detection .lead-img {
	margin-top: 70px;
}

@media screen and (max-width: 640px) {
	#detection .lead-img {
		margin-top: 8vw;
	}
}

#detection .column-wrap {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: stretch;
	align-items: stretch;
	max-width: 1100px;
	margin: 70px auto;
}

@media screen and (max-width: 640px) {
	#detection .column-wrap {
		display: block;
		margin: 9.33333vw auto;
	}
}

#detection .column-wrap .col-item {
	width: 530px;
	background: #eaeaea;
}

@media screen and (max-width: 640px) {
	#detection .column-wrap .col-item {
		width: auto;
	}
	#detection .column-wrap .col-item + .col-item {
		margin-top: 4vw;
	}
}

#detection .column-wrap .col-item dt {
	background: #000;
	color: #FFF;
	font-size: 22px;
	padding: 0.5em;
}

@media screen and (max-width: 640px) {
	#detection .column-wrap .col-item dt {
		font-size: 5.33333vw;
		padding: 0.3em;
	}
}

#detection .column-wrap .col-item dd {
	padding: 40px;
	font-size: 16px;
	text-align: left;
}

@media screen and (max-width: 640px) {
	#detection .column-wrap .col-item dd {
		padding: 4vw;
		font-size: 3.46667vw;
	}
}

#detection .column-wrap .col-item .precon-list li {
	margin-bottom: 1em;
	padding-left: 1em;
}

@media screen and (max-width: 640px) {
	#detection .column-wrap .col-item .precon-list li {
		margin-bottom: 0.5em;
	}
}

#detection .column-wrap .col-item .precon-list li::before {
	content: '•';
	display: inline-block;
	min-width: 1em;
	margin-left: -1em;
}

#detection .column-wrap .col-item .precon-txt {
	background: #FFF;
	padding: 1em;
	margin-top: 2em;
}

@media screen and (max-width: 640px) {
	#detection .column-wrap .col-item .precon-txt {
		margin-top: 1em;
	}
}

@media screen and (min-width: 641px) {
	#detection .column-wrap .col-item .result-graph {
		margin: -10px 0 0 -10px;
	}
}

#detection .con-txt {
	font-size: 22px;
	font-weight: 500;
}

@media screen and (max-width: 640px) {
	#detection .con-txt {
		font-size: 4.53333vw;
	}
}

#detection .con-txt span {
	display: inline-block;
	border-bottom: 2px solid #a8cf52;
}

#detection .con-caption {
	font-size: 13px;
	margin-top: 2em;
}

@media screen and (max-width: 640px) {
	#detection .con-caption {
		font-size: 2.93333vw;
	}
}

/*////////////////////////////////////////

system

////////////////////////////////////////*/
#system {
	color: #a8cf52;
	z-index: 3;
	padding: 200px 0 180px;
}

@media screen and (max-width: 640px) {
	#system {
		padding: 18.66667vw 0;
	}
}

#system::before {
	content: '';
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #000;
	-webkit-transform: skew(0deg, 11deg);
	transform: skew(0deg, 11deg);
	z-index: 2;
}

#system::after {
	content: '';
	position: absolute;
	width: 37.14286%;
	padding-top: 14.85714%;
	left: 0;
	bottom: 0;
	margin-bottom: -4.85714%;
	background: url(../img/sec-bg-black-left.png) no-repeat 0 0;
	background-size: auto 100%;
	z-index: 1;
	z-index: 1;
}

#system .lead-img {
	width: 455px;
	margin: 70px auto 0;
}

@media screen and (max-width: 640px) {
	#system .lead-img {
		margin: 9.33333vw auto 0;
		width: 77.33333vw;
	}
}

#system .lead-img figcaption {
	font-size: 16px;
	margin-top: 2em;
}

@media screen and (max-width: 640px) {
	#system .lead-img figcaption {
		font-size: 2.93333vw;
	}
}

/*////////////////////////////////////////

scene

////////////////////////////////////////*/
#scene {
	padding: 180px 0;
}

@media screen and (max-width: 640px) {
	#scene {
		padding: 18.66667vw 0;
	}
}

#scene::before {
	content: '';
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #FFF;
	-webkit-transform: skew(0deg, 11deg);
	transform: skew(0deg, 11deg);
	z-index: 2;
}

#scene .column-wrap {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: flex-start;
	align-items: flex-start;
	margin-top: 70px;
}

@media screen and (max-width: 640px) {
	#scene .column-wrap {
		display: block;
		margin-top: 9.33333vw;
	}
}

#scene .column-wrap + .column-wrap {
	margin-top: 100px;
}

@media screen and (max-width: 640px) {
	#scene .column-wrap + .column-wrap {
		margin-top: 16vw;
	}
}

#scene .column-wrap .col-ttl {
	position: relative;
	width: 100%;
	font-size: 30px;
	font-weight: 500;
	line-height: 1.5;
	margin-bottom: 1.5em;
}

@media screen and (max-width: 640px) {
	#scene .column-wrap .col-ttl {
		font-size: 5.33333vw;
	}
}

#scene .column-wrap .col-ttl::after {
	content: '';
	display: block;
	width: 1em;
	height: 2px;
	background: #000;
	margin: 0.6em auto 0;
}

#scene .column-wrap .col-item {
	position: relative;
	width: 50%;
	border-left: 1px solid #FFF;
}

@media screen and (max-width: 640px) {
	#scene .column-wrap .col-item {
		width: auto;
		border: none;
	}
	#scene .column-wrap .col-item + .col-item {
		margin-top: 4vw;
	}
}

#scene .column-wrap .col-item figcaption {
	position: absolute;
	width: 100%;
	bottom: 0;
	right: 0;
	background: #000;
	color: #FFF;
	font-size: 18px;
	padding: 0.5em;
}

@media screen and (max-width: 640px) {
	#scene .column-wrap .col-item figcaption {
		font-size: 4vw;
		padding: 0.3em;
	}
}

#scene .column-wrap .col-txt {
	width: 100%;
	margin-top: 3em;
	font-size: 18px;
}

@media screen and (max-width: 640px) {
	#scene .column-wrap .col-txt {
		font-size: 4vw;
		text-align: justify;
		text-justify: inter-ideograph;
		margin-top: 1em;
	}
}

/*////////////////////////////////////////

plan

////////////////////////////////////////*/
#plan {
	padding: 220px 0 180px;
}

@media screen and (max-width: 640px) {
	#plan {
		padding: 18.66667vw 0;
	}
}

#plan::before {
	content: '';
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #000;
	-webkit-transform: skew(0deg, -11deg);
	transform: skew(0deg, -11deg);
	z-index: 2;
}

#plan::after {
	content: '';
	position: absolute;
	width: 37.14286%;
	padding-top: 14.85714%;
	right: 0;
	bottom: 0;
	margin-bottom: -4.85714%;
	background: url(../img/sec-bg-green-right.png) no-repeat 0 0;
	background-size: auto 100%;
	z-index: 1;
	z-index: 1;
}

#plan .table-wrap {
	margin: 60px auto 0;
	text-align: left;
}

@media screen and (max-width: 640px) {
	#plan .table-wrap {
		margin: 5.33333vw auto 0;
	}
}

#plan .table-wrap .table-txt {
	font-size: 16px;
	margin-bottom: 0.5em;
}

@media screen and (max-width: 640px) {
	#plan .table-wrap .table-txt {
		font-size: 3.46667vw;
	}
	#plan .table-wrap .table-txt.SP {
		color: #fff;
	}
}

#plan .plan-wrap {
	color: #a8cf52;
}

#plan .plan-wrap .table-wrap {
	position: relative;
	max-width: 860px;
}

#plan .plan-wrap .table-wrap .time {
	position: absolute;
	right: 0;
	top: -2em;
	color: #fff;
	font-size: 0.8em;
}

#plan .compare-wrap {
	color: #e74472;
	margin-top: 100px;
}

@media screen and (max-width: 640px) {
	#plan .compare-wrap {
		margin-top: 16vw;
	}
	#plan .compare-wrap .swipe-icon {
		display: inline-block;
		width: 16.66667vw;
		vertical-align: middle;
	}
	#plan .compare-wrap .compare-table {
		position: relative;
	}
	#plan .compare-wrap .compare-table::after {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		bottom: 0;
		width: 28.53333vw;
		background: url(../img/compare-table-sp.png) no-repeat 0 0 #000;
		background-size: auto 100%;
	}
	#plan .compare-wrap .compare-table .scroll-wrap {
		overflow-x: scroll;
		-webkit-overflow-scrolling: touch;
		margin-right: -4vw;
		position: relative;
	}
	#plan .compare-wrap .compare-table .scroll-wrap img {
		max-width: initial;
		width: 220.53333vw;
		padding-right: 4vw;
	}
	#plan .compare-wrap .compare-table .scroll-wrap::after {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		bottom: 0;
		width: 28.53333vw;
		background: #000;
	}
}

#plan .notes {
	margin-top: 1em;
}

/*////////////////////////////////////////

support

////////////////////////////////////////*/
#support {
	padding: 180px 0 110px;
}

@media screen and (max-width: 640px) {
	#support {
		padding: 18.66667vw 0;
	}
}

#support .support-lead {
	font-size: 30px;
	font-weight: 500;
	margin-bottom: 1em;
}

@media screen and (max-width: 640px) {
	#support .support-lead {
		font-size: 5.33333vw;
	}
}

#support .support-img {
	width: 960px;
	margin: 60px auto 0;
	text-align: right;
}

@media screen and (max-width: 640px) {
	#support .support-img {
		width: auto;
		margin: 8vw auto 0;
	}
}

#support .support-img figcaption {
	display: block;
	font-size: 13px;
	margin-top: 1em;
}

@media screen and (max-width: 640px) {
	#support .support-img figcaption {
		font-size: 2.93333vw;
	}
}

#support .support-img figcaption a {
	display: inline-block;
	border-bottom: 1px solid #000;
}

#support .support-img figcaption a::after {
	content: '';
	display: inline-block;
	vertical-align: middle;
	margin-left: 0.5em;
	width: 0.8em;
	height: 0.8em;
	background: url(../img/icon-blank-bk.png) no-repeat 50% 0;
	background-size: contain;
}

/*////////////////////////////////////////

products

////////////////////////////////////////*/
#products {
	background: url(../img/products-bg.jpg) no-repeat 50% 0;
	background-size: cover;
	padding-top: 3.57143%;
}

@media screen and (max-width: 640px) {
	#products {
		padding-top: 4vw;
	}
}

#products::after {
	content: '';
	position: absolute;
	width: 37.14286%;
	padding-top: 14.85714%;
	right: 0;
	bottom: 0;
	margin-bottom: -4.85714%;
	background: url(../img/sec-bg-pink-right.png) no-repeat 0 0;
	background-size: auto 100%;
	z-index: 1;
	margin-bottom: -10%;
	z-index: 1;
}

#products .inner-wrap {
	max-width: 100%;
	margin: 0 4.28571%;
	background-color: #FFF;
	padding-top: 100px;
	z-index: auto;
}

@media screen and (max-width: 640px) {
	#products .inner-wrap {
		padding: 13.33333vw 4vw 0;
	}
}

#products .inner-wrap:nth-last-of-type(1) {
	padding-bottom: 170px;
}

@media screen and (max-width: 640px) {
	#products .inner-wrap:nth-last-of-type(1) {
		padding-bottom: 18.66667vw;
	}
}

#products .product-ttl {
	font-size: 30px;
	font-weight: 500;
}

@media screen and (max-width: 640px) {
	#products .product-ttl {
		font-size: 5.33333vw;
	}
}

#products .product-icon {
	margin: 50px auto;
}

@media screen and (max-width: 640px) {
	#products .product-icon {
		margin: 5.33333vw auto;
	}
}

#products .product-icon li {
	display: inline-block;
	width: 100px;
	padding: 0 24px;
	box-sizing: content-box;
}

@media screen and (max-width: 640px) {
	#products .product-icon li {
		width: 16vw;
		padding: 0 4vw;
	}
}

#products .product-icon li:not(:first-child) {
	border-left: 1px solid #c8c8c8;
}

#products .column-wrap {
	max-width: 980px;
	margin: 1.5em auto;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
}

@media screen and (max-width: 640px) {
	#products .column-wrap {
		display: block;
		margin: 1.5em 5.33333vw;
	}
}

#products .column-wrap .col-item.detail {
	flex: 2;
	text-align: left;
}

#products .column-wrap .specs {
	font-size: 18px;
	font-weight: 500;
}

@media screen and (max-width: 640px) {
	#products .column-wrap .specs {
		font-size: 4vw;
	}
}

#products .column-wrap .specs li {
	padding-left: 1.5em;
	margin-top: 0.3em;
}

#products .column-wrap .specs li::before {
	content: '';
	display: inline-block;
	vertical-align: -0.1em;
	width: 1em;
	height: 1em;
	margin: 0 0.5em 0 -1.5em;
	background: url(../img/icon-check-bk.png) no-repeat 0 50%;
	background-size: contain;
}

#products .column-wrap .specs li sup {
	font-size: 0.7em;
}

#products .column-wrap .notes {
	margin: 0.6em 0 0 2.2em;
}

#products .column-wrap .price {
	margin-top: 40px;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
	-webkit-align-items: center;
	align-items: center;
}

@media screen and (max-width: 640px) {
	#products .column-wrap .price {
		margin: 8vw auto;
		display: block;
		width: 53.33333vw;
	}
}

#products .column-wrap .price dt {
	font-size: 36px;
	font-weight: 500;
	line-height: 1;
}

@media screen and (min-width: 641px) {
	#products .column-wrap .price dt {
		padding-right: 30px;
		font-size: 42px;
	}
	#products .column-wrap .price dt img {
		height: 60px;
		width: auto;
	}
}

@media screen and (max-width: 640px) {
	#products .column-wrap .price dt {
		margin-bottom: 2vw;
		padding-bottom: 2vw;
		text-align: center;
	}
}

#products .column-wrap .price dd {
	font-size: 16px;
	line-height: 1.2;
	border: 0 solid #c8c8c8;
}

@media screen and (min-width: 641px) {
	#products .column-wrap .price dd {
		border-left-width: 1px;
		padding-left: 30px;
	}
}

@media screen and (max-width: 640px) {
	#products .column-wrap .price dd {
		border-top-width: 1px;
		text-align: center;
		padding-top: 3.33333vw;
	}
}

#products .column-wrap .price dd strong {
	display: inline-block;
	font-size: 2em;
	margin-right: 0.2em;
}

#products .column-wrap .price dd .yen {
	font-size: 0.8em;
}

#products .bonxgrip .col-item.img {
	width: 296px;
	margin-right: 100px;
}

@media screen and (max-width: 640px) {
	#products .bonxgrip .col-item.img {
		width: 40vw;
		margin: auto;
	}
}

@media screen and (min-width: 641px) {
	#products .bonxgrip .col-item.detail {
		margin-top: -40px;
	}
}

#products .product-tm {
	font-size: 16px;
}

@media screen and (max-width: 640px) {
	#products .product-tm {
		margin: 0 12vw;
		font-size: 2.93333vw;
		text-align: left;
		padding-left: 1em;
		text-indent: -1em;
	}
}

/*////////////////////////////////////////

inquiry

////////////////////////////////////////*/
#inquiry {
	padding: 150px 0 70px;
}

@media screen and (max-width: 640px) {
	#inquiry {
		padding: 18.66667vw 0;
	}
}

#inquiry::before {
	content: '';
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #a8cf52;
	-webkit-transform: skew(0deg, 11deg);
	transform: skew(0deg, 11deg);
	z-index: 2;
}

#inquiry::after {
	content: '';
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #a8cf52;
	z-index: 1;
	top: 50%;
}

#inquiry .inquiry-ttl {
	font-size: 30px;
	font-weight: 700;
	margin: 2em auto 0.5em;
}

@media screen and (max-width: 640px) {
	#inquiry .inquiry-ttl {
		font-size: 5.33333vw;
	}
}

#inquiry .pagetop-btn {
	position: absolute;
	display: block;
	width: 70px;
	bottom: 30px;
	right: 30px;
	z-index: 50;
}

@media screen and (max-width: 640px) {
	#inquiry .pagetop-btn {
		width: 14.66667vw;
		right: 2.66667vw;
		bottom: 4vw;
	}
}

/*////////////////////////////////////////

sec-bg-img

////////////////////////////////////////*/
.sec-bg-img {
	position: relative;
	width: 100%;
	padding-top: 40%;
	background-repeat: no-repeat;
	background-size: cover;
	margin: -10.21429% 0;
	z-index: -5;
}

.sec-bg-img.sec-bg-img-01 {
	background-image: url(../img/sec-bg-img-01.jpg);
	background-position: 50% 30%;
}

@media screen and (max-width: 640px) {
	.sec-bg-img.sec-bg-img-01 {
		background-size: auto 150%;
	}
}

.sec-bg-img.sec-bg-img-02 {
	background-image: url(../img/sec-bg-img-02.jpg);
	background-position: 50% 15%;
}

@media screen and (max-width: 640px) {
	.sec-bg-img.sec-bg-img-02 {
		background-size: auto 120%;
	}
}

/*////////////////////////////////////////

mfp

////////////////////////////////////////*/
.mfp-bg, .mfp-wrap {
	z-index: 9999;
}

.mfp-auto-cursor .mfp-content {
	max-width: 1000px;
}

/*////////////////////////////////////////

scroll-in anime

////////////////////////////////////////*/
/* 汎用 */
.scroll-in:not(.appeard) {
	transition-delay: 0s;
}

.scroll-in.up-in {
	opacity: 0;
	transform: translateY(40px);
	transition: 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.scroll-in.up-in.appeared {
	opacity: 1;
	transform: translate(0, 0);
	transition-delay: 0s;
}

.scroll-in.zoom-in {
	opacity: 0;
	transform: scale(0.6);
	transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.scroll-in.zoom-in.appeared {
	opacity: 1;
	transform: scale(1);
	transition-delay: 0s;
}

.scroll-in.appeared.td-01 {
	transition-delay: 0.1s;
}

.scroll-in.appeared.td-02 {
	transition-delay: 0.2s;
}

.scroll-in.appeared.td-03 {
	transition-delay: 0.3s;
}

.scroll-in.appeared.td-04 {
	transition-delay: 0.4s;
}

.scroll-in.appeared.td-05 {
	transition-delay: 0.5s;
}

.scroll-in.appeared.td-06 {
	transition-delay: 0.6s;
}

.scroll-in.appeared.td-07 {
	transition-delay: 0.7s;
}

.scroll-in.appeared.td-08 {
	transition-delay: 0.8s;
}

.scroll-in.appeared.td-09 {
	transition-delay: 0.9s;
}

.scroll-in.appeared.td-10 {
	transition-delay: 1s;
}

.scroll-in.appeared.td-10 {
	transition-delay: 1s;
}

@media screen and (max-width: 640px) {
	.scroll-in.appeared.td-pc {
		transition-delay: 0s;
	}
}

@media screen and (min-width: 641px) {
	.scroll-in.appeared.td-sp {
		transition-delay: 0s;
	}
}

/* 個別セクション */
/* install column anime
----------------------------------------*/
@media screen and (min-width: 641px) {
	#install .column-wrap.scroll-in .col-item {
		opacity: 0;
		transform: translateY(40px);
		transition: 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	#install .column-wrap.scroll-in .col-item::after {
		opacity: 0;
		transform: translateX(-40px);
		transition: 0.7s cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	#install .column-wrap.scroll-in.appeared .col-item, #install .column-wrap.scroll-in.appeared .col-item::after {
		opacity: 1;
		transform: translate(0, 0);
		transition-delay: 0s;
	}
	#install .column-wrap.scroll-in.appeared .col-item:nth-of-type(1) {
		transition-delay: 0s;
	}
	#install .column-wrap.scroll-in.appeared .col-item:nth-of-type(1)::after {
		transition-delay: 0.3s;
	}
	#install .column-wrap.scroll-in.appeared .col-item:nth-of-type(2) {
		transition-delay: 0.3s;
	}
	#install .column-wrap.scroll-in.appeared .col-item:nth-of-type(2)::after {
		transition-delay: 0.6s;
	}
	#install .column-wrap.scroll-in.appeared .col-item:nth-of-type(3) {
		transition-delay: 0.6s;
	}
	#install .column-wrap.scroll-in.appeared .col-item:nth-of-type(3)::after {
		transition-delay: 0.9s;
	}
	#install .column-wrap.scroll-in.appeared .col-item:nth-of-type(4) {
		transition-delay: 0.9s;
	}
}

@media screen and (max-width: 640px) {
	#install .col-item.scroll-in {
		opacity: 0;
		transform: translateY(40px);
		transition: 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	#install .col-item.scroll-in::after {
		opacity: 0;
		transform: translateY(-40px);
		transition: 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	#install .col-item.scroll-in.appeared, #install .col-item.scroll-in.appeared::after {
		opacity: 1;
		transform: translate(0, 0);
		transition-delay: 0s;
	}
	#install .col-item.scroll-in.appeared::after {
		transition-delay: 0.5s;
	}
}


