@CHARSET "UTF-8";

.clear:after{
	content:".";
	display:block;
	clear:both;
	height:0;
	line-height:0;
	visibility:hidden;
}

.font-mincho{
	font-family:"Hiragino Mincho Pro", "HG明朝E", "MS 明朝", serif;
}

.font-marugo{
	font-family:"ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO", sans-serif;
}

.m-t-5{
	margin-top:5px;
}

.m-t-10{
	margin-top:10px;
}

.m-t-15{
	margin-top:15px;
}

.m-t-20{
	margin-top:20px;
}

.m-t-25{
	margin-top:25px;
}

.m-t-30{
	margin-top:30px;
}

.m-t-35{
	margin-top:35px;
}

.m-t-40{
	margin-top:40px;
}

.m-t-45{
	margin-top:45px;
}

.m-t-50{
	margin-top:50px;
}

.m-t-55{
	margin-top:55px;
}

.m-t-60{
	margin-top:60px;
}

.m-t-65{
	margin-top:65px;
}

.m-t-70{
	margin-top:70px;
}

.m-t-75{
	margin-top:75px;
}

.m-t-80{
	margin-top:80px;
}

.m-l-5{
	margin-left:5px;
}

.m-l-10{
	margin-left:10px;
}

.m-l-15{
	margin-left:15px;
}

.m-l-20{
	margin-left:20px;
}

.m-l-25{
	margin-left:25px;
}

.m-l-30{
	margin-left:30px;
}

.m-l-35{
	margin-left:35px;
}

.m-l-40{
	margin-left:40px;
}

.m-l-45{
	margin-left:45px;
}

.m-l-50{
	margin-left:50px;
}

.m-l-100{
	margin-left:100px;
}

.m-l-a{
	margin-left:auto;
}

.m-r-a{
	margin-right:auto;
}

.m-t-a{
	margin-top:auto;
}

.m-b-a{
	margin-bottom:auto;
}

.w-p-100{
	width:100%;
}

.w-p-95{
	width:95%;
}

.w-p-90{
	width:90%;
}

.w-p-85{
	width:85%;
}

.w-p-80{
	width:80%;
}

.w-p-75{
	width:75%;
}

.w-p-70{
	width:70%;
}

.w-p-65{
	width:65%;
}

.w-p-60{
	width:60%;
}

.w-p-55{
	width:55%;
}

.w-p-50{
	width:50%;
}

.w-p-45{
	width:45%;
}

.w-p-40{
	width:40%;
}

.w-p-35{
	width:35%;
}

.w-p-30{
	width:30%;
}

.w-p-25{
	width:25%;
}

.w-p-20{
	width:20%;
}

.w-p-15{
	width:15%;
}

.w-p-10{
	width:10%;
}

.w-p-5{
	width:5%;
}

.mw-p-100{
	max-width:100%;
}

.mw-p-95{
	max-width:95%;
}

.mw-p-90{
	max-width:90%;
}

.mw-p-85{
	max-width:85%;
}

.mw-p-80{
	max-width:80%;
}

.mw-p-75{
	max-width:75%;
}

.mw-p-70{
	max-width:70%;
}

.mw-p-65{
	max-width:65%;
}

.mw-p-60{
	max-width:60%;
}

.mw-p-55{
	max-width:55%;
}

.mw-p-50{
	max-width:50%;
}

.mw-p-45{
	max-width:45%;
}

.mw-p-40{
	max-width:40%;
}

.mw-p-35{
	max-width:35%;
}

.mw-p-30{
	max-width:30%;
}

.mw-p-25{
	max-width:25%;
}

.mw-p-20{
	max-width:20%;
}

.mw-p-15{
	max-width:15%;
}

.mw-p-10{
	max-width:10%;
}

.mw-p-5{
	max-width:5%;
}

.h-p-100{
	height:100%;
}

.h-p-95{
	height:95%;
}

.h-p-90{
	height:90%;
}

.h-p-50{
	height:50%;
}

.v-a-t{
	vertical-align:top;
}

.v-a-m{
	vertical-align:middle;
}

.v-a-b{
	vertical-align:bottom;
}

.v-a-tb{
	vertical-align:text-bottom;
}

.p-t-0{
	padding-top:0 !important;
}

.p-b-0{
	padding-bottom:0 !important;
}

.flex{
	display:-moz-box;
	display:-ms-flexbox;
	display:-webkit-flex;
	display:flex;
}

.flex-wrap{
	-webkit-flex-wrap:wrap;
	-ms-flex-wrap:wrap;
	flex-wrap:wrap;
}

.flex.center{
	-webkit-justify-content:center;
	-ms-justify-content:center;
	justify-content:center;
}

.flex.left{
	-webkit-justify-content:flex-start;
	-ms-justify-content:flex-start;
	justify-content:flex-start;
}

.flex.right{
	-webkit-justify-content:flex-end;
	-ms-justify-content:flex-end;
	justify-content:flex-end;
}

.flex.space-between{
	-webkit-justify-content:space-between;
	-ms-justify-content:space-between;
	justify-content:space-between;
}

.flex.space-around{
	-webkit-justify-content:space-around;
	-ms-justify-content:space-around;
	justify-content:space-around;
}

.flex.top{
	-webkit-align-items:flex-start;
	-ms-align-items:flex-start;
	align-items:flex-start;
}

.flex.middle{
	-webkit-align-items:center;
	left:838px;
	-ms-align-items:center;
	align-items:center;
}

.flex.bottom{
	-webkit-align-items:flex-end;
	-ms-align-items:flex-end;
	align-items:flex-end;
}

.flex.baseline{
	-webkit-align-items:baseline;
	-ms-align-items:baseline;
	align-items:baseline;
}

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

a.text{
	text-decoration:underline;
}

a.hover{
	transition:all 0.3s;
}

a.hover:hover{
	opacity:0.8;
}

.align-center{
	text-align:center;
}

.align-left{
	text-align:left;
}

.align-right{
	text-align:right;
}

.italic{
	font-style:italic;
}

.bold{
	font-weight:bold;
}

.inline{
	display:inline;
}

.block{
	display:block;
}

.inline-block{
	display:inline-block;
}

input[type="checkbox"].trigger{
	display:none;
}

.border-bottom{
	border-bottom:1px solid #a0a0a0;
}

html, body, #wrapper, #header, #nav, #main, #footer{
	width:100%;
	max-width:1920px;
	min-width:320px;
	margin-left:auto;
	margin-right:auto;
}

html{
	font-size:10px;
	background-color:#ffffff;
	box-sizing:border-box;
	word-break:break-all;
}

*, *::before, *::after{
	box-sizing:inherit;
	word-break:inherit;
}

body{
	text-align:left;
	font-size:1.4rem;
	color:#363636;
	font-family:-apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
}

.container{
	margin-left:auto;
	margin-right:auto;
	position:relative;
	max-width:1440px;
	width:100%;
}

.br{
	display:block;
}

.pc-only{
	
}

.md-only{
	display:none;
}

.sp-only{
	display:none;
}

button{
	cursor:pointer;
}

button.style-reset{
	border:none;
	background:none;
	box-shadow:none;
}

a.blink{
	animation:blink 1.5s linear infinite normal;
	-webkit-animation:blink 1.5s linear infinite normal;
	-moz-animation:blink 1.5s linear infinite normal;
	-o-animation:blink 1.5s linear infinite normal;
}

a.blink:hover{
	animation:none;
	-webkit-animation:none;
}

.text-marker{
	background:linear-gradient(transparent 80%, #f44336 80%);
}

.text-marker.yellow{
	background:linear-gradient(transparent 80%, #def436 80%);
}

@keyframes blink{
	0%{
		opacity:1;
	}
	25%{
		opacity:0.3;
	}
	50%{
		opacity:0.8;
	}
	75%{
		opacity:0.9;
	}
	100%{
		opacity:1;
	}
}

@media ( max-width:1023px){
	.container{
		padding-left:2%;
		padding-right:2%;
	}
	
	.row{
		margin-left:-2%;
		margin-right:-2%;
	}
	
	.br{
		display:inline !important;
	}
	
	.pc-only{
		display:none !important;
	}
	
	br.pc-only{
		margin-left:-1em;
	}
	
	.sp-only{
		display:block;
	}
	
	
}

@media ( max-width:424px){
	
}

@media ( max-width:374px){
	
}

#wrapper{
}

#header .header-top{
	padding:8px 0;
	background:#000;
	text-align:center;
	height:120px;
}

#header .header-bottom{
	padding:8px 0;
}

#header .header-bottom .container{
	height:50px;
}

#header .header-bottom .flex{
	height:100%;
}

#header .header-bottom h1.title{
	text-align:center;
	font-weight:bold;
	font-size:1.6rem;
	letter-spacing:2px;
	z-index:2;
	line-height:40px;
}

#nav{
	z-index:1;
}

#nav .nav-list{
	max-width:1200px;
	margin-left:auto;
	margin-right:auto;
	height:50px;
}

#nav .nav-list .item{
	font-size:1.4rem;
	font-weight:bold;
}

#nav .nav-list .item a{
	padding:5px 10px;
}

#nav .nav-list .item a:hover{
	text-decoration:underline;
}

#footer{
	font-size:1.6rem;
	text-align:center;
	padding:50px 0 15px;
	background:black;
	color:white;
	line-height:1.8;
}

#footer .logo{
	margin-right:50px;
}

#footer .footer-nav{

}

#footer .footer-nav .inner{
	
}

#footer .footer-nav .nav-list{
	max-width:1200px;
	margin-left:auto;
	margin-right:auto;
}

#footer .footer-nav .nav-list .item a{
	padding:10px 10px;
	font-size:1.6rem;
	display:block;
}


#footer .risk{
	line-height:1.8;
	text-align:left;
}


#footer .copyright{
}

#footer .fix-footer{
	position:fixed;
	bottom:0;
	width:100%;
	right:0;
	left:0;
	margin:0 auto;
	max-width:1920px;
}

#footer .fix-footer .button-top{
	display:block;
	position:absolute;
	right:15px;
	bottom:15px;
}

#main{
	
}

.fix-right{
	z-index:999;
	position:sticky;
	top:5px;
	padding:0 30px;
}

.fix-right .inner{
	position:relative;
}

.fix-right .nav-list{
	position:absolute;
	top:15px;
	right:0;
}

.fix-right .nav-list .item{
	margin-bottom:5px;
	opacity:0.7;
	/*transition:all 0.3s;*/
}

.fix-right .nav-list .item:hover{
	opacity:1;
}

.page .contents-bg{
	padding-top:50px;
	padding-bottom:50px;
}

.page .contents-title{
	color:#fff;
	font-size:4.5rem;
	text-align:center;
	margin-bottom:50px;
	display:flex;
	align-items:center;
	justify-content:center;
	letter-spacing:1px;
	font-weight:bold;
}

.page .contents-title.bar{
	background:url("../img/base/title_bg.png") center top no-repeat;
	padding:15px 0 60px;
	height:162px;
	
}

.page .contents-title.black{
	color:black;
}

.page .page-head{
	background-position:center top;
	background-repeat:no-repeat;
	background-size:cover;
	text-align:center;
	background-image:url("../img/base/header_bg.jpg");
}

.page .page-head .container{
	padding-top:30px;
	padding-bottom:30px;
	align-content:space-evenly;
	min-height:400px;
}

.page .page-head .title{
	color:#fff;
	font-size:5.5rem;
	line-height:1.4;
	font-weight:bold;
	
}

.page .page-head .message{
	color:#fff;
	font-size:4.2rem;
	line-height:1.4;
	font-weight:bold;
}

.page .page-head .message .strong{
	font-size:1.2em;
}

.page .page-head .button-entry{
	margin-left:auto;
	margin-right:auto;
}

/*
.page .button-entry a{
	display:inline-block;
	background:#e5007f;
	padding:20px 140px;
	font-size:3.0rem;
	color:#fff;
	font-weight:bold;
}
*/

.page .entry{
	background:url("../img/index/entry_bg.png") center top /cover no-repeat;
	color:white;
}

.page .entry .logo{
	margin-right:50px;
}

.page .entry .body{
	text-align:left;
}

.page .entry .body .text{
	line-height:1.8;
	font-size:2.0rem;
}


.page .entry .shop-info{
	margin-top:30px;
	font-size:4.0rem;
}


.page .entry .button-group{
	text-align:center;
	margin-top:50px;
	
}


.page .entry .entry-bg .shop-info .time{
	font-size:2rem;
}

.page .adsbanner{
	text-align:center;
}

.page-index .page-head{
	background-image:url("../img/index/header_bg.jpg");
	height:800px;
	background-size:1920px;
}

.page-index .page-head .container{
	height:100%;
	align-content:space-evenly;
}

.page-index .page-head .title{
	display:flex;
	align-items:center;
	justify-content:center;
}

.page-index .page-head .message{
	width:100%;
	text-align:center;
}

.page-index .page-head .message .text{
	max-width:800px;
	margin-left:auto;
	margin-right:auto;
	font-size:2.6rem;
	color:white;
	line-height:2;
	font-weight:normal;
}

.page-index .index1 .button-list{
	justify-content:center;
}

.page-index .index1 .button-list .item{
	padding:10px 25px;
	max-width:450px;
	width:33%;
}

.page-index .index1 .button-list .item a{
	display:flex;
	justify-content:center;
	align-items:center;
	width:100%;
	height:60px;
	font-size:1.8rem;
	color:#fff;
	background:#3ea7ff;
	line-height:100%;
	text-align:center;
	font-weight:bold;
}


.page-index .index2{
	background:url("../img/index/message_bg1.jpg") center top /cover no-repeat;
	padding-top:80px;
	padding-bottom:80px;
}

.page-index .index2 .inner-bg{
	background:url("../img/index/message_bg2.jpg") center top /cover no-repeat;
	padding:80px 50px;
	color:white;
	max-width:1332px;
	margin-left:auto;
	margin-right:auto;
	text-align:center;
}

.page-index .index2 .inner-bg .head{
	font-size:5rem;
	line-height:1.2;
	font-weight:bold;
}

.page-index .index2 .inner-bg .body{
	font-size:3rem;
	line-height:2;
	margin-top:50px;
}


.page-index .overview .item-list{
	justify-content:center;
}

.page-index .overview .item-list .item{
	padding:30px;
	text-align:left;
	border-radius:15px;
	overflow:hidden;
	position:relative;
	margin-bottom:50px;
	background:#F0F0F0;
}

.page-index .overview .item-list .item .icon{
	position:absolute;
	left:0;
	top:0;
}

.page-index .overview .item-list .item .head{
	color:#C80201;
	font-size:4rem;
	font-weight:bold;
	padding:20px 0 50px 100px;
	line-height:1.2;
}

.page-index .overview .item-list .item .body{
	font-size:2.6rem;
	line-height:2;
	text-align:left;
}


.page-index .banner-overview{
	background:url("../img/index/catchcopy_bg.jpg") center top /cover no-repeat;
	
}

/* index3 */
.page-index .index3 .contents-list{
	justify-content:center;
	max-width:1024px;
	margin-left:auto;
	margin-right:auto;
}

.page-index .index3 .contents-list .item{
	padding:0 18px 15px;
	box-sizing:content-box;
	width:100%;
	max-width:280px;
	counter-increment:no;
}

.page-index .index3 .contents-list .item .head{
	padding:8px 15px;
	font-size:2.0rem;
	font-weight:bold;
	line-height:1.6;
	margin-bottom:15px;
}

.page-index .index3 .contents-list .item .head:before{
	content:counter(no) '.';
}

.page-index .index3 .contents-list .item .body{
}

.page-index .index3 .contents-list .item .body .photo{
	margin-bottom:5px;
	background:#000;
	padding-top:100%;
	border-radius:300px;
}

.page-index .index3 .contents-list .item .body .detail{
	padding:5px;
	font-size:1.4rem;
	line-height:1.8;
}

/* index4*/

/* faq*/

.page-index .faq .contents-list{
	justify-content:center;
	margin-left:auto;
	margin-right:auto;
}

.page-index .faq .contents-list .item{
	margin-bottom:50px;
	border-radius:15px;
	overflow:hidden;
	color:white;
}

.page-index .faq .contents-list .item .icon{
	margin-right:15px;
}

.page-index .faq .contents-list .item .head{
	font-size:2.8rem;
	font-weight:bold;
	line-height:1.2;
	background:url("../img/index/faq_q_bg.png");
	padding:15px 30px;
}

.page-index .faq .contents-list .item .body{
	font-weight:bold;
	line-height:1.8;
	font-size:2.2rem;
	background:url("../img/index/faq_a_bg.png");
	padding:15px 30px;
}


/* index6 */

.page-index .index6 .contents-list{
	justify-content:center;
}

.page-index .index6 .contents-list .item{
	padding:0 40px 30px;
	box-sizing:content-box;
	width:calc(100% - 40px * 2);
	counter-increment:no;
	max-width:250px;
}

.page-index .index6 .contents-list .item .head{
	padding:0 5px;
	font-size:2.0rem;
	font-weight:bold;
	line-height:1.6;
	margin-bottom:15px;
}

.page-index .index6 .contents-list .item .head:before{
	content:counter(no) '.';
}

.page-index .index6 .contents-list .item .body{
}

.page-index .index6 .contents-list .item .body .photo{
	padding-top:125%;
	background:#000;
}

.page-index .index6 .contents-list .item .body .detail{
	padding:5px;
	font-size:1.4rem;
	line-height:1.8;
}

/* merit */
.page-index .merit{
	background:url("../img/index/merit_bg.jpg") center top /cover no-repeat;
}

.page-index .merit .contents-list{
	width:100%;
}

.page-index .merit .contents-list .item{
	padding:50px;
	width:100%;
	counter-increment:no;
	position:relative;
	background:white;
	border-radius:15px;
	margin-bottom:80px;
	margin-top:30px;
}

.page-index .merit .contents-list .item::before{
	content:'0' counter(no);
	background:#c80201;
	border-radius:50%;
	padding:10px;
	display:block;
	font-size:3.6rem;
	font-weight:bold;
	position:absolute;
	top:-40px;
	left:0;
	right:0;
	margin:0 auto;
	color:white;
	width:80px;
	height:80px;
	text-align:center;
	line-height:50px;
}

.page-index .merit .contents-list .item .head{
	font-size:3.4rem;
	font-weight:bold;
	line-height:1.6;
	margin-bottom:15px;
	text-align:center;
}

.page-index .merit .contents-list .item .body{

}

.page-index .merit .contents-list .item .body .detail{
	font-size:2.6rem;
	line-height:2.0;
	text-line-through-color:left;
	text-align:left;
}

.page-index .contents-bg.banner{
}

.page-index .contents-bg.banner .container{
	height:700px;
	align-content:space-around;
}

.page-index .contents-bg.banner .message{
	color:#fff;
	font-size:2.6rem;
	line-height:1.8;
}


.page-index .system .system-table{
	margin-left:auto;
	margin-right:auto;
	width:100%;
	font-size:2rem;
	line-height:1.4;
	table-layout:fixed;
	background:#fff;
}

.page-index .system .system-table th,
.page-index .system .system-table td{
	border:1px solid white;
	vertical-align:middle;
	padding-top:30px;
	padding-bottom:30px;
	padding-left:30px;
	padding-right:30px;
	color:white;
	font-size:2.6rem;
}

.page-index .system .system-table th{
	white-space:nowrap;
	font-weight:bold;
	width:12%;
	background:#C80201;
}

.page-index .system .system-table td{
	width:34%;
	background:black;
}

.page-index .system .system-table td.detail{
	position:relative;
	border-right:none;
}

.page-index .system .system-table td.desc{
	border-left:none;
}

/* page contact */

.page-contact .message{
	font-size:1.6rem;
	line-height:1.6;
	text-align:center;
}

.page-contact .contact-table{
	width:100%;
	margin-left:auto;
	margin-right:auto;
	font-size:2rem;
	line-height:1.4;
	table-layout:fixed;
	border:1px solid black;
}

.page-contact .contact-table .title,
.page-contact .contact-table .detail{
	padding:12px 30px;
	vertical-align:top;
	border:1px solid #373737;
	
}

.page-contact .contact-table .title{
	white-space:nowrap;
	font-weight:bold;
	width:30%;
	background:#C80201;
	color:white;
}

.page-contact .contact-table .detail{
	padding-left:12px;
	padding-right:12px;
	width:70%;
	background:#bcbcbc;
}


