@charset "utf-8";
@import url("https://use.typekit.net/iop6dho.css");
/* CSS Document */

/* ---------------------------------------------------------
common
----------------------------------------------------------*/
* {
	-webkit-appearance:none;
}
html{
}
html, body {
	scroll-padding-top: 80px;
	/*overflow-x: hidden;*/
}
::selection {
    background: #000;
    color: #fff;
}
::-moz-selection {
    background: #000;
    color: #fff;
}
body {
	color: #2f2f2f;
	font-size: 20px;
	font-weight: 500;
	min-width: 320px;
}
@media screen and (max-width: 1080px) {
	body {
		font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	}
}
@media screen and (min-width: 1081px) {
	body {
		font-family: "M PLUS Rounded 1c", "Noto Sans JP", "Noto Sans CJK JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	}
}
#mainWrap {
	width: 100%;
	padding: 80px 0 60px 0;
	background: #f3f3f3;
}
p {
	transform: rotate(0.03deg);
}
p.lead{
	text-align: center;
	line-height: 1.8;
}
.textRight{
	text-align: right !important;
}
.attention{
	font-size: 0.8em;
}
.displaySP{
	display: none !important;
}
br.sp{
	display: none;
}
@media screen and (max-width: 1080px) {
	html, body {
		scroll-padding-top: 70px;
		font-size: 18px
	}
	#mainWrap {
		padding-top: 70px;
	}
	header{
		position: fixed;
		z-index: 100;
	}
}

@media screen and (max-width: 767px) {
	html, body {
		scroll-padding-top: 60px;
		font-size: 14px
	}
	#mainWrap {
		padding-top: 60px;
	}
	p.lead{
		text-align: left;
		line-height: 1.6;
	}
	br.pc{
		display: none;
	}
	br.sp{
		display: inline;
	}
}

/* ---------------------------------------------------------
tittle
----------------------------------------------------------*/
h1,h2,h3,h4{
	transform: rotate(0.03deg);
}
/* h1 */
h1 {
	font-size: 35px;
	font-weight: 800;
	text-align: center;
}
@media screen and (max-width: 767px) {
	h1 {
		font-size: 20px;
	}
}
/* ---------------------------------------------------------
BOX
----------------------------------------------------------*/
#mainContent{
	margin: 0 auto; 
	padding-top: 50px;
}
.basicBox{
	width: 1040px;
	margin: auto;
	padding: 0 20px;
}
.maxBox{
	width: 100%;
	min-width: 1080px;
}

@media screen and (max-width: 1080px) {
	.maxBox{
		min-width: 320px;
	}
	.basicBox{
		width: 96vw;
		margin: auto;
		padding: 0 2vw;
	}
}
@media screen and (max-width: 767px) {
	#mainContent{
		margin: 0 auto;
		padding-top: 25px;
	}
	.basicBox{
		width: 92vw;
		margin: auto;
		padding: 0 4vw;
	}
}

/* ---------------------------------------------------------
Button
----------------------------------------------------------*/
.basicButton {
	background: #3dd4ff;
	color: #FFFFFF;
	border-radius: 60px;
	text-align: center;
	padding: 0.5em 0;
	font-weight: 700;
	line-height: 1;
	width: 280px;
	height: 40px;
	margin: 1em auto;
	transform: rotate(0.03deg);
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
}
.basicButton:hover{
	background: #00B3FF;
	color: #FFFFFF;
	cursor: pointer;
}
.mainButton{
	background: #FF3366;
	color: #FFFFFF;
	border-radius: 80px;
	text-align: center;
	font-size: 40px;
	font-weight: 700;
	line-height: 1;
	width: 60%;
	height: 140px;
	margin: 0.2em auto 1em auto;
	transform: rotate(0.03deg);
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
}
.mainButton:hover{
	background: #FF1952;
}
.mainButton i{
	margin-right: 0.2em;
	font-size: 1.2em;
}
.mainButtonCap{
	text-align: center;
	font-size: 1.5em;
	margin-top: 10px;
	margin-bottom: 0;
	font-weight: 700;
	color: #FF3366;
	display: flex;
	justify-content: center;
}
.mainButtonCap::before{
	content: url("../img/common/nanameLeft.png");
	margin-right: 0.4em;
}
.mainButtonCap::after{
	content: url("../img/common/nanameRight.png");
	margin-left: 0.4em;
}

.infoButton {
	background: #3dd4ff;
	color: #FFFFFF;
	border-radius: 60px;
	text-align: center;
	font-weight: 700;
	font-size: 26px;
	line-height: 1;
	width: 44%;
	height: 80px;
	margin: 0 3%;
	transform: rotate(0.03deg);
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	float: left;
}
.infoButton i{
	margin-right: 0.2em;
	font-size: 1.2em;
	font-weight: inherit;
}
.infoButton:hover{
	background: #00B3FF;
	color: #FFFFFF;
	cursor: pointer;
}
.infoButton.line{
	background: #48e366;
}
.infoButton.line:hover{
	background: #23B400;
}
.infoButton.line::before{
	content: '';
	background: url("../img/common/LineLogo.png");
	width: 1.8em;
	height: 1.5em;
	display: inline-block;
	background-size: contain;
	vertical-align: middle;
	background-repeat: no-repeat;
}

@media screen and (max-width: 1080px) {
	.infoButton {
		font-size: 1.1em;
	}
}

@media screen and (max-width: 767px) {
	.basicButton {
		font-size: 1.2em;
	}
	.mainButton{
		width: 90%;
		font-size: 1.8em;
		height: 70px;
	}
	.mainButtonCap {
		font-size: 1.2em;
	}
	.mainButtonCap::before {
		content: '';
		background: url(../img/common/nanameLeft.png) no-repeat;
		background-size: 1.2em;
		width: 1.2em;
	}
	.mainButtonCap::after {
		content: '';
		background: url("../img/common/nanameRight.png") no-repeat;
		background-size: 1.2em;
		width: 1.2em;
	}
	.infoButton {
		height: 50px;
		font-size: 4.4vw;
		width: 48%;
		margin: 0 4% 0 0;
	}
	.infoButton.line {
		margin: 0;
	}
}
/* ---------------------------------------------------------
Banner
----------------------------------------------------------*/
.basicBanner {
	width: 100%;
}
.basicBanner:hover {
	opacity: 0.8;
}

/* ---------------------------------------------------------
header
----------------------------------------------------------*/
header{
	width: 100%;
	min-width: 1080px;
	height: 80px;
	background: #ffea00;
	position: fixed;
	z-index: 999;
}
header nav .logo #logo_sp{
	display: none
}
header nav .logo #logo{
	font-size: 0.7em;
	line-height: 1.8;
	text-decoration: none;
	color: #2F2F2F !important;
	font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	font-weight: bold;
}
header nav .logo #logo img{
	width: 180px;
}
header nav > div{
	float: left;
	display: flex;
	align-items: center;
	position: absolute;
	left: 20px;
	top: 8px;
}
header nav ul#mainMenu{
	font-size: 16px;
	font-weight: 800;
	float: left;
	height: 100%;
	position: absolute;
	right: 20px;
}
header nav ul#mainMenu li{
	transform: rotate(0.03deg);
	margin-left: 2em;
	float: left;
	height: 100%;
	text-align: center;
}
header nav ul#mainMenu li a{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	box-sizing: border-box;
	color: #2f2f2f;
	text-decoration: none;
}
header nav ul#mainMenu li a:hover,
header nav ul#mainMenu li a.on{
	transform: scale(1.07);
}
header nav ul#mainMenu li.bt_kaitori{
	width: 160px;
	margin-top: 16px;
	margin-left: 2em;
	background: #FF3366;
	height: 46px;
	border-radius: 40px;
}
header nav ul#mainMenu li.bt_kaitori a{
	color: #FFFFFF;
	font-size: 16px;
	font-weight: 500;
}
header nav ul#mainMenu li.bt_kaitori:hover{
	background: #FF1952;
}
header nav ul#mainMenu li.bt_kaitori:hover a{
	color: #ffffff;
	transform: scale(1.00);
}
@media screen and (max-width: 1280px) {
	header nav ul#mainMenu{
		font-size: 14px;
	}
	header nav ul#mainMenu li{
		margin-left: 1em;
	}
}
@media screen and (max-width: 1080px) {
	header{
		height: 70px;
	}
	header nav .logo #logo{
		display: none;
	}
	header nav .logo #logo_sp{
		font-size: 12px;
		height: 100%;
		display: block;
		text-decoration: none;
		color: #2F2F2F !important;
		font-family: "Noto Sans JP", "Noto Sans CJK JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	}
	header nav .logo #logo_sp img{
		width: 160px;
	}
	header nav .logo{
		left: 20px;
	}
	header nav .logo #logo img{
		height: 40px;
	}
	header nav ul#mainMenu{
		display: none;
	}
}

@media screen and (max-width: 767px) {
	header{
		height: 60px;
	}
	header nav .logo{
		left: 2vw;
	}
	header nav #logo_sp{
		display: block;
	}
	header nav .logo #logo_sp img{
		width: 140px;
	}
}
/* ---------------------------------------------------------
slider
----------------------------------------------------------*/
.slider{
	padding-bottom: 1em;
}
.slider .sliderList{
	display: block;
	width: 300px;
	height: 530px;
	cursor: default;
	margin: 0 20px
}
.slider.short .sliderList{
	height: 450px;
}
.slider .sliderList .sliderImg{
	position: relative;
	width: 100%;
	height: 300px;
	overflow: hidden;
	text-align: center;
	border-radius: 30px 30px 0 0;
}
.slider .sliderList .sliderImg img{
	position: absolute;
	display: block;
	margin: auto;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.slider .sliderList .sliderBox{
	padding: 15px 0.6em;
	height: 200px;
	background: #E5E5E5;
	border-radius: 0 0 30px 30px;
	position: relative;
}
.slider.short .sliderList .sliderBox{
	height: 120px;
}
.slider .sliderList .sliderBox .sliderTag{
	background: #3dd4ff;
	border-radius: 40px;
	display: inline-block;
	font-size: 0.7em;
	padding: 0.2em 0.5em;
	font-weight: 500;
	color: #fff;
	margin-bottom: 0.4em;
	margin-right: 0.4em;
	transform: rotate(0.03deg);
	text-decoration: none;
}
.slider .sliderList .sliderBox .sliderTag.noneLink{
	background: #A8A8A8;
}
.slider .sliderList .sliderBox .sliderTag:hover{
	background: #00B3FF;
}.slider .sliderList .sliderBox .sliderTag.noneLink:hover{
	cursor: default;
	background: #A8A8A8;
}
.slider .sliderList .sliderBox .brandName{
	font-size: 0.75em;
	margin-bottom: 0.1em;
	font-weight: 700;
	transform: rotate(0.03deg);
}
.slider .sliderList .sliderBox .name{
	font-size: 0.85em;
	transform: rotate(0.03deg);
}
.slider .sliderList .sliderBox .priceBox{
	width: 100%;
	margin: auto;
	position: absolute;
    bottom: 15px;
    left: 0;
	text-align: center;
}
.slider .sliderList .sliderBox .priceTitle{
	text-align: center;
	font-size: 0.7em;
	color: #555555;
	margin-bottom: 0.4em;
	transform: rotate(0.03deg);
}
.slider .sliderList .sliderBox .price{
	width: 90%;
	margin: auto;
	text-align: center;
	font-size: 1.4em;
	font-weight: 800;
	background: #fff;
	border-radius: 60px;
	color: #FF3366;
	transform: rotate(0.03deg);
	margin-bottom: 0;
}
.slick-dots{
	position: relative !important;
	margin: 0.4em auto 0 auto !important;
	width: 90% !important;
}
.slick-dots li button{
	width: inherit !important;
}
.slick-dots li button:before {
	font-size: 14px !important;
}
.slick-dotted.slick-slider {
    margin-bottom: 40px !important;
}
.slick-arrow:before{
	content:""!important;
	width: 100%!important;
    height: 100%!important;
    position: absolute;
    top: 0;
    left: 0;
}
.slick-prev{
	left: 50px !important;
	width: 60px !important;
    height: 60px !important;
	z-index: 2;
}
.slick-next{
	right: 50px !important;
	width: 60px !important;
    height: 60px !important;
	z-index: 1;
}
.slick-next:before{
    background: url(../img/common/arrow_r.png) no-repeat !important;
    background-size: contain !important;
  }

.slick-prev:before{
    background: url(../img/common/arrow_l.png) no-repeat !important;
    background-size: contain !important;
}
.slick-current {
	transition: 0.5s;
	transform: scale(1);
	opacity: 1;
}
@media screen and (max-width: 1080px) {
	.slider .sliderList{
		width: 270px;
		height: 500px;
		margin: 0 15px
	}
	.slider .sliderList .sliderImg{
		height: 270px;
		border-radius: 20px 20px 0 0;
	}
	.slick-prev{
		left: 20px !important;
		width: 40px !important;
		height: 40px !important;
	}
	.slick-next{
		right: 20px !important;
		width: 40px !important;
		height: 40px !important;
	}
}
@media screen and (max-width: 767px) {
	.slider .sliderList{
		width: 50vw;
		height: 91vw;
		margin: 0 2vw;
	}
	.slider.short .sliderList{
		height: 74vw;
	}
	.slider .sliderList .sliderImg{
		position: relative;
		width: 100%;
		height: 50vw;
		border-radius: 20px 20px 0 0;
	}
	.slider .sliderList .sliderBox{
		padding: 2vw;
		height: 37vw;
		border-radius: 0 0 20px 20px;
	}
	.slider.short .sliderList .sliderBox{
		height: 20vw;
	}
	.slider .sliderList .sliderBox .priceBox{
		bottom: 2vw;
	}
	.slick-dotted.slick-slider {
		margin-bottom: 40px !important;
	}
	.slick-dots{
		bottom: -15px !important;
	}
	.slick-dots li {
		width: 16px !important;
		margin: 0 !important;
	}
	.slick-dots li button:before {
		font-size: 10px !important;
	}
}

/* ---------------------------------------------------------
text style
----------------------------------------------------------*/
p {
	margin-bottom: 1.0em;
}
small{
	font-size:10px;
	line-height: 1 !important;	
}
strong {
	font-weight: bold;
}

.hidden {
	display: none;
}

/* ---------------------------------------------------------
a
----------------------------------------------------------*/
a{
	cursor: pointer;
}
/*
a {
	color: #02102e;
	text-decoration:none;
}
a:visited {
	text-decoration:none;
}
a:hover {
	color: #007fc9;
	text-decoration:none;
}
a:active {
	color: #007fc9;
}

/* ---------------------------------------------------------
PrArea
----------------------------------------------------------*/
.prSection{
	margin-bottom: 80px
}
.prSection .tellDisp{
	text-align: center;
	font-size: 3em;
	color: #FF3366;
	font-weight: 900;
	display: block;
	width: 9em;
    margin: 0 auto 0.8em auto;
	text-decoration: none;
}
.prSection .tellDisp::before{
	content: '';
	background: url("../img/common/freeDial.png");
	width: 0.9em;
    height: 0.75em;
	display: inline-block;
	background-size: contain;
	background-repeat: no-repeat;
}
.prSection .tellDisp span{
	font-size: 0.34em;
    font-weight: 600;
	display: block;
    line-height: 0.4;
}
.prSection .prArea{
	background: #fff;
	border-radius: 30px;
	padding: 2em 2em;
}
.prSection .prArea h2{
	text-align: center;
	color: #2f2f2f;
	font-size: 26px;
	margin-bottom: 0.5em;
	font-weight: 700;
}
.prSection .prArea .infoBox{
	padding: 0.8em 2em;
	margin-bottom: 2em;
}
.prSection .prArea .infoBox:last-child{
	margin-bottom: 0;
	padding-bottom: 0;
}
.prSection .prArea .infoBox .tel{
	width: 44%;
	margin: 0 3%;
	float: left;
}
.prSection .prArea .infoBox .tel a::before{
	content: '';
	background: url("../img/common/freeDial_small.png");
	width: 1.5em;
    height: 1.2em;
	display: inline-block;
	background-size: contain;
	background-repeat: no-repeat;
}
.prSection .prArea .infoBox .tel .infoButton{
	width: 100%;
	float: none;
	margin: 0;
}
.prSection .prArea .infoBox .tel .telCap{
	font-size: 0.7em;
	margin: 0.3em 0 0 0;
	text-align: center;
}
.prSection .prArea .infoBox .tel .telCap .sp{
	display: none;
}

@media screen and (max-width: 767px) {
	.prSection{
		margin-bottom: 40px;
	}
	.prSection .tellDisp{
		font-size: 2.2em;
	}
	.prSection .prArea{
		border-radius: 20px;
		padding: 1em 4%;
	}
	.prSection .prArea .infoBox{
		padding: 0;
	}
	.prSection .prArea h2{
		font-size: 1.2em;
	}
	.prSection .prArea .infoBox .tel{
		margin: 0;
		width: 48%;
	}
	.prSection .prArea .infoBox .tel a{
		font-size: 3.8vw;
	}
	.prSection .prArea .infoBox .tel .telCap .sp{
		display: inherit;
	}
}

/* ---------------------------------------------------------
footer
----------------------------------------------------------*/
footer{
	background: #ffea00;
	padding:50px 0 0 0;
	margin: 0;
}
footer.slim{
	padding:20px 0 0 0;
}
footer .logo_sp{
	display: none;
}
footer .logo{
	display: block;
	margin: 50px auto 30px auto;
    width: 256px;
}
footer .logo img{
	width: 100%;
}
footer .copy{
	text-align: center;
	font-size: 0.8em;
	font-weight: 500;
	padding-bottom: 0.6em;
	margin: 0;
}

@media screen and (max-width: 1080px) {
	footer .logo{
	}
}

@media screen and (max-width: 767px) {
	footer{
		padding:30px 0 0 0;
	}
	footer.slim{
		padding:10px 0 0 0;
	}
	footer .logo{
		display: none;
	}
	footer .logo_sp{
		display: block;
		width: 40vw;
		margin: 20px auto 20px auto;
	}
	footer .logo_sp img{
		width: 100%;
	}
	footer .copy{
		font-size: 0.7em;
	}
}

/* ---------------------------------------------------------
terms
----------------------------------------------------------*/
.terms{
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 0.8em;
	transform: rotate(0.03deg);
	margin-bottom: 1em;
}
.terms a{
	padding: 0 0.5em;
	color: #4D4D4D;
	text-decoration: none;
}
.terms a:hover{
	text-decoration: underline;
}

.verification{
	margin-bottom: 2em;
}
.verification p{
	font-size: 0.9em;
	text-align: center;
}
.verification a{
	text-decoration: underline;
}

/* ---------------------------------------------------------
pageTop
----------------------------------------------------------*/
#page-top {
    position: fixed;
	z-index: 9999;
    bottom: 30px;
    right: 30px;
	margin-bottom: 0;
}
#page-top a {
    background: #3dd4ff;
    text-decoration: none;
    color: #fff;
    width: 2em;
	height: 2em;
	font-size: 1.6em;
    text-align: center;
    display: flex;
	justify-content: center;
	align-items: center;
    border-radius: 200px;
	opacity: 0.8;
}
#page-top a:hover {
    text-decoration: none;
    background: #3dd4ff;
	opacity: 1;
}
@media screen and (max-width: 767px) {
	#page-top {
		display: none !important;
		bottom: 4vw;
		right: 4vw;
	}
	
}

/* ---------------------------------------------------------
flow
----------------------------------------------------------*/
#flow{
	padding-top: 70px;
	padding-bottom: 80px;
}
#flow h1{
	margin-bottom: 60px;
}
#flow .flowPt{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}
#flow .flowPt h2{
	position: relative;
	width: 230px;
	height: 208px;
	background: #ffea00;
	border-radius: 20px;
	text-align: center;
	z-index: 1;
}
#flow .flowPt h2 img{
	display: block;
	margin: auto;
	padding-top: 50px;
}
#flow .flowPt h2 span{
	display: block;
	font-size: 1.1em;
	font-weight: 800;
	margin-top: 0.5em;
}
#flow .flowPt > div{
	position: relative;
	width: 830px;
	height: 266px;
	background: #FFFFFF;
	border-radius: 20px;
	z-index: 0;
	margin-left: -20px;
	display: flex;
}
#flow #flow1 .flowLeft,
#flow #flow3 .flowLeft{
	width: 50%;
	border-radius: 20px 0 0 20px;
}
#flow #flow1 .flowRight,
#flow #flow3 .flowRight{
	width: 46%;
	transform: rotate(0.03deg);
	font-size: 1em;
	font-weight: 500;
	padding: 1em 2%;
	line-height: 1.8;
	display: flex;
	justify-content: center;
	align-items: center;
}
#flow #flow2 .flowLeft,
#flow #flow4 .flowLeft{
	width: 44%;
	transform: rotate(0.03deg);
	font-size: 1em;
	font-weight: 500;
	padding: 1em 2% 1em 4%;
	line-height: 1.8;
	display: flex;
	justify-content: center;
	align-items: center;
}
#flow #flow2 .flowRight,
#flow #flow4 .flowRight{
	width: 51%;
	border-radius: 0 20px 20px 0;
}
#flow .bg1{
	background: url("../img/top/bg_woman_01.jpg") 20% 20%;
	background-size: cover;
}
#flow .bg2{
	background: url("../img/top/bg_draver.jpg") 70% 20%;
}
#flow .bg3{
	background: url("../img/top/bg_satei.jpg") 0 0;
}
#flow .bg4{
	background: url("../img/top/bg_money.jpg") 70% 20%;
}
#flow .arrow{
	display: block;
	margin: 20px auto;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 16px 14px 0 14px;
	border-color: #a9a9a9 transparent transparent transparent;
}

@media screen and (max-width: 1080px) {
	#flow .flowPt h2{
		width: 22%;
		padding: 0;
	}
	#flow .flowPt > div{
		width: 80%;
	}
	#flow .flowPt > div div{
		width: 50%;
	}
	#flow #flow2 .flowLeft,
	#flow #flow4 .flowLeft{
		padding-left: 3.5vw;
	}
	#flow .bg1{
		background: url("../img/top/bg_woman_01.jpg") 30% 20%;
	}
	#flow .bg2{
		background: url("../img/top/bg_draver.jpg") 50% 20%;
	}
	#flow .bg3{
		background: url("../img/top/bg_satei.jpg") 0 20%;
	}
	#flow .bg4{
		background: url("../img/top/bg_money.jpg") 50% 20%;
	}
}

@media screen and (max-width: 767px) {
	#flow{
		padding-top: 30px;
		padding-bottom: 30px;
	}
	#flow h1{
		    margin-bottom: 20px;
	}
	#flow .flowPt{
		display: block;
	}
	#flow .flowPt h2{
		display: flex;
		justify-content: center;
		align-items: center;
		width: 50vw;
		height: 2.2em;
		font-size: 1.1em;
		margin: 0 auto -1em auto;
	}
	#flow .flowPt h2 img{
		display: none;
	}
	#flow .flowPt h2 span{
		margin: 0;
	}
	#flow .flowPt > div{
		margin: 0;
		width: 100%;
		height: inherit;
		font-size: 0.95em;
	}
	#flow #flow2 .flowLeft,
	#flow #flow4 .flowLeft{
		width: 60%;
		padding: 2em 1em 1em 1em;
		line-height: 1.4;
	}
	#flow #flow2 .flowRight,
	#flow #flow4 .flowRight{
		width: 40%;
	}
	#flow #flow1 .flowLeft,
	#flow #flow3 .flowLeft{
		width: 40%;
	}
	#flow #flow1 .flowRight,
	#flow #flow3 .flowRight{
		width: 60%;
		padding: 2em 1em 1em 1em;
		line-height: 1.4;
	}
	#flow .bg1{
		background-size: cover;
	}
	#flow .bg2{
		background-size: cover;
	}
	#flow .bg3{
		background-size: cover;
	}
	#flow .bg4{
		background-size: cover;
	}
	#flow .arrow{
		margin: 0.8em auto;
		border-style: solid;
		border-width: 12px 10px 0 10px;
	}
	
}

/* ---------------------------------------------------------
genre
----------------------------------------------------------*/
#genre{
	background: #ffea00;
	padding: 80px 0;
}
#genre h1{
	margin-bottom: 30px;
}
#genre .basicBox > div{
	margin-top: 40px;
	text-align: left;
}
#genre .genrePt{
	margin-right: 20px;
	margin-bottom: 15px;
	width: 156px;
	float: left;
}
#genre .genrePt img{
	width: 100%;
}
#genre .genrePt:nth-of-type(6n){
	margin-right: 0;
}
#genre .genrePt a.on,
#genre .genrePt span:first-child{
	height: 156px;
	background: #FFFFFF;
	border-radius: 20px 20px 20px 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}
#genre .genrePt a.on{
	border-radius: 20px 20px 5px 20px;
	cursor: pointer;
}
#genre .genrePt a.on:hover{
	transform: scale(1.07);
	transition: 0.3s;
}
#genre .genrePt span:first-child img,
#genre .genrePt a.on img{
	width: 70%;
	max-height: 128px;
	display: block;
	margin: auto;
}
#genre .genrePt a.on .triangular{
	position: absolute;
	bottom: 5px;
	right: 5px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 0 20px 20px;
	border-color: transparent transparent #3dd4ff transparent;
}
#genre .genrePt span:last-child{
	display: block;
	text-align: center;
	transform: rotate(0.03deg);
	font-size: 0.8em;
	font-weight: 600;
	padding-top: 0.5em;
}
@media screen and (max-width: 1080px) {
	#genre .genrePt{
		margin-right: 2%;
		margin-bottom: 15px;
		width: 15%;
	}
	#genre .genrePt a.on,
	#genre .genrePt span:first-child{
		height: 14vw;
	}
}

@media screen and (max-width: 767px) {
	#genre{
		padding: 30px 0 20px 0;
	}
	#genre .basicBox{
		padding: 0 4vw;
		width: 92vw;
	}
	#genre h1{
		margin-bottom: 20px;
	}
	#genre .genrePt{
		margin-right: 4vw;
		margin-bottom: 0.4em;
		width: 20vw;
		border-radius: 10px;
	}
	#genre .basicBox > div{
		margin-top: 25px;
	}
	#genre .genrePt:nth-of-type(6n){
		margin-right: 4vw;
	}
	#genre .genrePt:nth-of-type(4n){
		margin-right: 0;
	}
	#genre .genrePt a.on,
	#genre .genrePt span:first-child{
		height: 20vw;
	}
	#genre .genrePt span:last-child{
		font-size: 0.6em;
		line-height: 1.3;
    	font-weight: 800;
	}
	#genre .genrePt a.on .triangular{
		bottom: 3px;
		right: 3px;
		border-style: solid;
		border-width: 0 0 15px 15px;
	}
}
/* ---------------------------------------------------------
パンくず
----------------------------------------------------------*/
.breadcrumb{
	font-size: 0.7em;
	display: block;
	transform: rotate(0.03deg);
	padding: 0.5em 20px;
	background-color: #FFFDDF;
	color: #5F5F5F;
}
.breadcrumb li{
	display: inline;
}
.breadcrumb li i{
	margin-left: 0.6em;
	margin-right: 0.4em;
	font-size: 0.8em;
	color: #5F5F5F;
}
.breadcrumb li a{
	color: inherit;
}
.breadcrumb li a:hover{
	color: crimson;
	text-decoration: none;
}
.breadcrumb li:last-child{
	color: crimson;
	font-weight: 700;
}
@media screen and (max-width: 767px) {
	.breadcrumb{
		font-size: 0.8em;
		padding: 0.5em 3vw;
	}
}

/* ---------------------------------------------------------
underLayer
----------------------------------------------------------*/
.underLayer #mainWrap.yellow{
	background: #ffea00;
}
.underLayer h1{
	padding: 60px 0 20px 0;
	font-size: 3em;
}
.underLayer .hilight{
	font-size: 1em;
	line-height: 2.2;
	margin-bottom: 2em;
	letter-spacing: 2;
}
.underLayer .hilight .large{
	font-size: 1.5em;
	font-weight: 800;
}
.underLayer .underBasicBox{
	background: #fff;
    border-radius: 30px;
    padding: 40 70px;
    margin-top: 40px;
    width: 900px;
	margin: auto;
}
.underLayer .underBasicBox .container{
	margin-bottom: 50px;
}
.underLayer .underBasicBox h2{
    text-align: center;
	font-size: 1.3em;
    padding: 1em 0;
}
.underLayer .underBasicBox h3{
    margin-left: 6px;
    padding-left: 6px;
    margin-bottom: 1.5em;
}
.underLayer .underBasicBox h4{
	margin-bottom: 0.4em;
    display: table;
    line-height: 1.2;
    font-size: 0.85em;
}

@media screen and (max-width: 1080px) {
	.underLayer h1{
		font-size: 2.5em;
	}
	.underLayer .underBasicBox{
		width: 84vw;
		margin: 30px auto 0 auto;
		padding: 5vw;
	}
	
}

@media screen and (max-width: 767px) {
	.underLayer h1{
		padding: 30px 0 20px 0;
		font-size: 1.8em;
	}
	.underLayer p.lead{
		margin: 0 4vw 2em 4vw;
	}
	.underLayer .hilight{
		font-size: 3.4vw;
		text-align: center;
	}
	.underLayer .underBasicBox{
		width: 86vw;
		border-radius: 10px;
		padding: 20px 4vw;
	}
	.underLayer .underBasicBox .container{
		margin-bottom: 30px;
	}
	.underLayer .underBasicBox h2{
		font-size: 1.2em;
	}
	.underLayer .underBasicBox h3{
		font-size: 1.1em;
		margin-bottom: 1.2em;
	}
	.underLayer .underBasicBox h4{
		    font-size: 1em;
	}
}

/* ---------------------------------------------------------
modal
----------------------------------------------------------*/
.modal{
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
	left: 0;
    width: 100%;
	z-index: 10000;
}
.modal .lead{
	margin: 0 0 2em 0 !important;
}
.modal__bg{
    background: rgba(0,0,0,0.8);
    height: 100vh;
    position: absolute;
    width: 100%;
}
.modal__content{
    background: #fff;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
	padding:0 0 30px 0;
	width: 960px;
	z-index: 9999;
}
a.js-modal-close{
	background: #3dd4ff;
	color: #FFFFFF;
	border-radius: 60px;
	padding: 1em 0;
	text-align: center;
	font-weight: 700;
	line-height: 1;
	width: 280px;
	margin: 2em auto 0.5em auto;
	transform: rotate(0.03deg);
	text-decoration: none;
	display: block;
}
a.js-modal-close:hover{
	background: #00B3FF;
	color: #FFFFFF;
}
.no_scroll {
	overflow: hidden;
	/*height: 100vh;*/
}

@media screen and (max-width: 1080px) {
	.modal__content {
		width: 92vw;
	}
}

@media screen and (max-width: 767px) {
	.modal__content {
		padding-bottom: 15px;
	}
	a.js-modal-close{
		margin: 1em auto 0.5em auto;
	}
}

/* basicA（スクロールあり） */
.basicA .modal__content{
	border-radius: 5px;
	padding-bottom: 0;
	background: none;
}
.basicA .modal__content h1{
	background: #D8D8D8;
	font-size: 1.4em;
	height: 10vh;
	font-weight: 600;
	border-radius: 30px 30px 0 0;
	display: flex;
	justify-content: center;
	align-items: center;
	transform: none;
	padding: 0;
}
.basicA .modal__content h1 span{
	display: block;
	transform: rotate(0.03deg);
}
.basicA .modal__content .modalWrap{
	overflow-y: auto;
	max-height: 74vh;
	background: #fff;
	border-radius: 0 0 30px 30px;
}
.basicA .modal__content .modalWrap h2{
	font-size: 1.1em;
	font-weight: 800;
	margin-bottom: 0.6em;
}
.basicA .modal__content  .modalWrap{
	width: 90%;
	margin: 0 auto 0 auto;
	padding: 2vh 5%;
}
.basicA .modal__content  .modalWrap ul{
	list-style: disc;
	font-size: 0.9em;
	margin-left: 1.5em;
	margin-bottom: 1.5em;
}
.basicA .modal__content  .modalWrap ul li{
	transform: rotate(0.03deg);
	margin-bottom: 0.6em;
	line-height: 1.4;
}
.basicA .modal__content .modalWrap > img{
	display: block;
	margin: 40px auto 40px auto;
}
.basicA .modal__content .modalWrap > p{
	width: 100%;
	line-height: 1.8;
    font-size: 0.95em;
	text-align: left;
}
.basicA .modal__content a.js-modal-close {
	height: 2.5vh;
    width: 280px;
    margin: 2vh auto 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
}

@media screen and (max-width: 1080px) {
	.basicA .modal__content .modalWrap > img{
		width: 100%;
	}
}

@media screen and (max-width: 767px) {
	.basicA .modal__content{
		left: 50%;
		top: 4vh;
		transform: translate(-50%,0);
		padding: 0;
	}
	.basicA .modal__content h1{
		display: block;
		padding: 6%;
		height: inherit;
		text-align: left;
		font-size: 1.2em;
	}
	.basicA .modal__content .modalWrap{
		max-height: 57vh;
	}
	.basicA .modal__content .modalWrap > img{
		margin: 20px auto 20px auto;
	}
	
}

/* extraA（スクロールなし） */
.extraA .modal__content{
	border-radius: 30px;
	overflow: hidden;
}
.extraA .modal__content h1{
	background: #ffea00;
	margin-bottom: 0 !important;
	padding: 30px 0;
	position: static;
}
.extraA .modal__content > div{
	width: 92%;
	margin: 30px auto;
}
.extraA .modal__content > div > img{
	display: block;
	margin-right: 4%;
	width: 40%;
	float: left;
}
.extraA .modal__content > div > p{
	float: left;
	width: 56%;
	line-height: 1.8;
    font-size: 0.95em;
}

@media screen and (max-width: 1080px) {
	.extraA .modal__content h1{
		padding: 4vw;
	}
	.extraA .modal__content h1 img{
		width: 100%;
	}
}

@media screen and (max-width: 767px) {
	.extraA .modal__content h1{
		margin: 0 auto;
		padding: 6vw 6% 4vw 6%;
		position: static !important;
		width: 88% !important;
	}
	.extraA .modal__content > div{
		margin: 15px auto;
	}
	.extraA .modal__content > div > img{
		margin-right: 0;
		float: none;
		width: 100%;
	}
	.extraA .modal__content > div > p{
		float: none;
		width: 100%;
		margin-top: 15px;
	}
}
/* ---------------------------------------------------------
下部固定ボタン(SP)
----------------------------------------------------------*/
@media screen and (min-width: 768px) {
	#bottomMenu{
		display: none !important;
	}
}
#bottomMenu{
	background:rgba(0,0,0,0.70);
	position: fixed;
	bottom: 0;
	width: 92%;
	z-index: 99;
	padding: 10px 4%;
}
#bottomMenu .infoButton{
	background: #FF1952;
	margin-right: 0 !important;
}
#bottomMenu .line{
	background: #48e366;
	margin-right: 4% !important;
}
/* ---------------------------------------------------------
スクロールバー(PC)
----------------------------------------------------------*/
@media screen and (min-width: 1081px) {
	::-webkit-scrollbar {
		width: 6px;
	}
	::-webkit-scrollbar:hover {
		width: 10px;
	}
	::-webkit-scrollbar-track {
		border-radius: 10px;
	}
	::-webkit-scrollbar-thumb {
		background: #A2A2A2;
		/*background: linear-gradient(to top, #5bbee5 0%, #52ddae 100%);*/
		border-radius: 10px;
		box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
	}
}