@charset "utf-8";

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
menu, figure {
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
	font-family: inherit;
	font-style: inherit;
	font-weight: inherit;
}
html {
	-webkit-text-size-adjust: none;
}
img {
	vertical-align: text-bottom;
	-ms-interpolation-mode: bicubic;
}
a {
	-webkit-tap-highlight-color: transparent;
}
i {
	font-style: normal;
}
strong {
	font-weight: bold;
}

ol, ul {
	list-style: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}
hr {
	height: 0;
	margin: 0;
	padding: 0;
	border: 0;
	border-top: 1px solid #ccc;
}
caption, th, td {
	font-weight: normal;
	text-align: left;
	vertical-align: top;
}
blockquote::before, blockquote::after,
q::before, q::after {
	content: "";
}

blockquote, q {
	quotes: "" "";
}
a:focus {
	overflow: hidden;
	outline: none;
}
option {
	padding-right: 10px;
}
header,article,aside,section,footer,
nav,menu,details,hgroup,summary {
	display: block;
}
sup {
	font-size: 0.6em;
	vertical-align: super;
}
picture {
	display: block;
}
picture > img,
picture > source {
	display: block;
	width: 100%;
}
*,
*::before,
*::after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
/*------------------------------------------------*/
.swiper-container {
	overflow: hidden;
	user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}

/*------------------------------------------------*/
:root {
	--color_base: #02C12E;
	
	--font_zen: 'Zen Maru Gothic', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}
::placeholder {
	color: var(--color_base);
}
html {
	font-size: 2.6vw;
	background: #fff;
	color: var(--color_base);
	position: relative;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-tap-highlight-color:rgba(0,0,0,0);
	overscroll-behavior: none;
}
@media screen and (min-width: 751px) {
	html {
		font-size: 62.5%;/* 10px */
	}
}
@media screen and (max-width: 750px) {
	html {
		font-size: 2.6vw;
		-webkit-tap-highlight-color:rgba(0,0,0,0);
	}
}

body {
	font-family: var(--font_zen);
	font-weight: 900;
	font-style: normal;
	font-size: 1.3rem;
	line-height: 1.8;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
html.start,
html.loading-delay {
	pointer-events: auto;
}
html.start #bodyContainer,
html.loading-delay #bodyContainer {
}
#bodyContainer {
	position: relative;
}
a {
	text-decoration: none;
	transition: opacity 0.2s;
	display: inline-block;
	vertical-align: top;
	color: inherit;
	-webkit-touch-callout: none;
}
button {
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
	color: inherit;
	transition: opacity 0.2s;
}

@media (hover: hover) {
	a[href]:hover,
	button:hover {
		opacity: 0.6;
	}
}
@media (hover: none) {
	a[href]:active,
	button:active {
		opacity: 0.6;
	}
}

section {
	position: relative;
}

@media screen and (min-width: 751px) {
	.pcv {
		display: block;
	}
	.spv {
		display: none;
	}
}
@media screen and (max-width: 750px) {
	.pcv {
		display: none;
	}
	.spv {
		display: block;
	}
}


