@charset "utf-8";


@media screen and (max-width: 767px){}
@media screen and (max-width: 600px){}

/*main*/
.main_wrap{
	position: relative;
}


.main_wrap .bg img{
	width: 100%;
}


/*main_section01*/
.main_wrap .main_section01{
	position: relative;
	z-index: 1;
}
.main_wrap .main_section01 .txt{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width: 100%;
	max-width: 60.3125vw;
	height: 100%;
	max-height: 16.375vw;
	text-align: center;
}
.main_wrap .main_section01 .txt img:last-child{
	position: absolute;
	top: 0;
	left: 0;
	max-width: 28.6vw;
	animation: scroll 1s both infinite alternate;
	transform-origin: right center;
}
@keyframes scroll {
	0% {
		transform: translateY(0) rotate(2deg);
	}
	100% {
		transform: translateY(-5px) rotate(-2deg);
	}
}
@media screen and (max-width: 1400px){
	.main_wrap .main_section01 .txt{
		transform: scale(0.8);
		bottom: 4vw;
	}
}
@media screen and (max-width: 767px){
	.main_wrap .main_section01 .txt{
		transform: none;
		bottom: 0;
		max-width: 83.3125vw;
		max-height: 33.375vw;
	}
	.main_wrap .main_section01 .txt img:last-child {
		max-width: 40.8vw;
	}
}
@media screen and (max-width: 420px){
	.main_wrap .main_section01 .txt {
		bottom: -8vw;
	}
}

/*main_section02*/
.main_wrap .main_section02{
	position: relative;
	z-index: 2;
	margin-top: -9.8vw;
}
.main_wrap .main_section02 .txt{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
    bottom: 8vw;
	margin: auto;
	width: 100%;
	max-width: 63.875vw;
	height: 100%;
	max-height: 17.625vw;
	text-align: center;
}
@media screen and (max-width: 1400px){
	.main_wrap .main_section02 .txt{
		transform: scale(0.8);
		bottom: 5vw;
	}
}
@media screen and (max-width: 767px){
	.main_wrap .main_section02 .txt{
		transform: none;
		bottom: 0;
		max-width: 75.875vw;
		max-height: 23.625vw;
	}
}

/*main_section03*/
.main_wrap .main_section03{
	position: relative;
	z-index: 1;
	margin-top: -9.8vw;
}
.main_wrap .main_section03 .txt{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
    bottom: 17vw;
	margin: auto;
	width: 100%;
	max-width: 63.875vw;
	height: 100%;
	max-height: 17.625vw;
	text-align: center;
}
.main_wrap .main_section03 .txt img:last-child{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	animation: scroll 1s both infinite alternate;
	animation-delay: 0.5s;
	transform-origin: center center;
}
.main_wrap .main_section03 .btn{
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	bottom: 10vw;
	max-width: 350px;
	width: 100%;
	background-color: #ffff00;
}
.main_wrap .main_section03 .btn a{
	display: block;
	transition: 0.3s all ease-in-out;
}
body:not(.mobile) .main_wrap .main_section03 .btn a:hover{
	opacity: 0.5;
}
.main_wrap .main_section03 .btn span{
	font-size: 40px;
	padding-top\0: 0.2em;
	display: block;
	color: #20252b;
}
@media screen and (max-width: 1400px){
	.main_wrap .main_section03 .txt{
		transform: scale(0.8);
	}
	.main_wrap .main_section03 .btn{
		bottom: 10vw;
		max-width: 300px;
	}
	.main_wrap .main_section03 .btn span {
		font-size: 30px;
	}
}
@media screen and (max-width: 767px){
	.main_wrap .main_section03 .txt{
		transform: none;
		width: 100%;
		max-width: 84.875vw;
		height: 100%;
		max-height: 46.625vw;
		bottom: 0;
	}
}
@media screen and (max-width: 420px){
	.main_wrap .main_section03 .btn {
		bottom: 1vw;
		max-width: 280px;
	}
}
/*main*/
/*container*/
.container{}
.container nav{
	max-width: 1040px;
	padding: 30px 20px;
	margin: 0 auto 70px;
	width: 100%;
}
.container nav ul{
	display: flex;
	flex-wrap: wrap;
}
.container nav li{
	width: 33.3333%;
}
.container nav li a{
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #20252b;
	font-size: 20px;
	border-left: solid #000 1px;
	line-height: 1.11;
	transition: 0.3s all ease-in-out;
	text-align: center;
}
.container nav li:last-child a{
	border-right: solid #000 1px;
}
.container nav li a::before{
	content: "";
	position: absolute;
	top: -20px;
	left: 0;
	right: 0;
	width: 0;
	height: 0;
	margin: 0 auto;
	border-top: 10px solid #000;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-bottom: 0px solid transparent;
}
body:not(.mobile) .container nav li a:hover{
	opacity: 0.5;
}
@media screen and (max-width: 767px){
	.container nav li{
		float: none;
		width: 100%;
		margin-bottom: 20px;
	}
	.container nav li:last-child{
		margin-bottom: 0;
	}
	.container nav li a{
		border: none!important;
		border-bottom: solid #000 1px!important;
		padding: 20px;
	}
	.container nav li a::before{
		top: 0;
	}
}
@media screen and (max-width: 420px){
	.container nav{
		margin-bottom: 0;
	}
	.container nav li a{
		font-size: 16px;
		padding: 10px;
	}
}
/*container*/

.section_inner{
	padding: 0 20px;
	margin: 0 auto;
	width: 100%;
}
.section_wrap{
	padding: 0 20px;
	margin: 0 auto;
	width: 100%;
	max-width: 1040px;
}






/*section01*/
.sec01{
	margin-bottom: 80px;
}
.sec01 .ttl_txt{
	font-size: 30px;
	color: #20252b;
	font-weight: bold;
}
.sec01 .read_txt{
	font-size: 20px;
	color: #20252b;
	font-weight: bold;
}
.sec01 .bg_wrap {
	position: relative;
}
.sec01 .bg_wrap .bg{
	position: relative;
	overflow: hidden;
}
.sec01 .bg_wrap .bg img{
	width: 100%;
}
.sec01 .bg_wrap .bg::before,
.sec01 .bg_wrap .bg::after{
	position: absolute;
	left: 0;
	right: 0;
	display: block;
	content: '';
	width: 120%;
	background-color: #fff;
	height: 10vw;
	transform: rotate(-5.7105931374996deg);
}
.sec01 .bg_wrap .bg::before{
	transform-origin: left bottom;
}
.sec01 .bg_wrap .bg::after{
	transform-origin: left top;
}



.sec01 .bg_wrap .txt_contentn_wrap{
	position: absolute;
	top: 32%;
	width: 100%;
}
.sec01 .bg_wrap .ttl_txt{
	font-size: 30px;
	color: #fff;
	font-weight: bold;
	line-height: 1.4;
}
.sec01 .bg_wrap .read_txt{
	font-size: 18px;
	color: #fff;
	font-weight: bold;
	line-height: 2.5;
}

.sec01 .img_wrap{
	position: absolute;
	bottom: -8%;
	left: 0;
	right: 0;
	width: 100%;
}
.sec01 .img_wrap p{
	float: left;
}
.sec01 .img_wrap .img01{
	width: 21%;
	margin-right: 2%;
}
.sec01 .img_wrap .img02{
	width: 21%;
	margin-right: 2%;
}
.sec01 .img_wrap .img03{
	width: 21%;
	margin-right: 2%;
}
.sec01 .img_wrap .img04{
	width: 28.9%;
	margin-top: -10%;
}

@media screen and (max-width: 1400px){
	.sec01 .ttl_txt{
		font-size: 26px;
	}
	.sec01 .read_txt{
		font-size: 18px;
	}
	.sec01 .bg_wrap .ttl_txt{
		font-size: 26px;
	}
	.sec01 .bg_wrap .read_txt{
		font-size: 16px;
	}
	
	.sec01 .bg_wrap .txt_contentn_wrap {
		top: 24%;
	}
}

@media screen and (max-width: 1280px){
	.sec01 .img_wrap .img01 {
		width: 16%;
		margin-right: 4%;
	}
	.sec01 .img_wrap .img02 {
		width: 16%;
		margin-right: 4%;
	}
	.sec01 .img_wrap .img03 {
		width: 16%;
		margin-right: 4%;
	}
	.sec01 .img_wrap .img04 {
		width: 21.9%;
	}
	.sec01 .bg_wrap .bg::before,
	.sec01 .bg_wrap .bg::after {
		height: 4vw;
		transform: rotate(-2deg);
	}
}

@media screen and (max-width: 900px){
	.sec01 > .section_inner {
		margin-bottom: 30px;
	}
	.sec01 .bg_wrap .bg::before,
	.sec01 .bg_wrap .bg::after{
		content: none;
	}
	.sec01 .bg_wrap .txt_contentn_wrap{
		top: 20px;
	}
	
}
@media screen and (max-width: 767px){
	.sec01 {
		margin-bottom: 60px;
	}
	.sec01 .bg_wrap {
		background-image: url(../images/top/lineup_bg.jpg);
		background-repeat: no-repeat;
		background-position: center center;
		background-size: cover;
		padding: 20px 0;
	}
	.sec01 .bg_wrap .bg{
		display: none;
	}
	.sec01 .bg_wrap .txt_contentn_wrap{
		position: relative;
		top: 0;
		margin-bottom: 30px;
	}
	.sec01 .img_wrap{
		position: relative;
		bottom: 0;
	}
	.sec01 .img_wrap .img04{
		margin-top: 0;
	}
}
@media screen and (max-width: 420px){
	.sec01 .ttl_txt {
		font-size: 24px;
	}
	.sec01 .read_txt {
		font-size: 13px;
	}
	.sec01 .bg_wrap .ttl_txt {
		font-size: 24px;
	}
	.sec01 .img_wrap .img01{
		width: 21%;
		margin-right: 2%;
	}
	.sec01 .img_wrap .img02{
		width: 21%;
		margin-right: 2%;
	}
	.sec01 .img_wrap .img03{
		width: 21%;
		margin-right: 2%;
	}
	.sec01 .img_wrap .img04{
		width: 28.9%;
		margin-top: -10%;
	}
	.sec01 .bg_wrap .read_txt {
		font-size: 13px;
	}
	.sec01 .bg_wrap .txt_contentn_wrap {
		margin-bottom: 80px;
	}
}
@media screen and (max-width: 374px){
	.sec01 .ttl_txt {
		font-size: 22px;
	}
	.sec01 .read_txt {
		font-size: 12px;
		text-align: left;
	}
	.sec01 .read_txt br{
		display: none;
	}
	.sec01 .bg_wrap .ttl_txt {
		font-size: 22px;
	}
	.sec01 .bg_wrap .read_txt {
		font-size: 12px;
		line-height: 1.8;
	}
}

/*section01*/




/*section02*/
.sec02{}
.sec02 .ttl_txt{
	font-size: 24px;
	font-weight: bold;
	line-height: 1.2;
	color: #20252b;
}
.sec02 li {
	float: left;
	width: 32%;
	margin-right: 2%;
}
.sec02 li:last-child {
	margin-right: 0;
}
.sec02 li .img{
	margin-bottom: 35px;
}
.sec02 li .sub_ttl_txt{
	font-size: 26px;
	color: #20252b;
	font-weight: bold;
	line-height: 1.2;
	margin-bottom: 20px;
}
.sec02 li .sub_read_txt{
	font-size: 16px;
	color: #20252b;
	font-weight: bold;
	line-height: 2.142857142857143;
}

@media screen and (max-width: 1400px){
	.sec02 li .sub_ttl_txt {
		font-size: 22px;
	}
	.sec02 li .sub_read_txt {
		font-size: 15px;
	}
}

@media screen and (max-width: 900px){
	.sec02 ul{
		width: 100%;
		max-width: 320px;
		margin: 0 auto;
	}
	.sec02 li{
		float: none;
		width: 100%;
		margin-bottom: 30px;
		margin-right: 0;
	}
	.sec02 li:last-child{
		margin-bottom: 0;
	}
}

@media screen and (max-width: 420px){
	.sec02 .ttl_txt {
		font-size: 22px;
	}
	.sec02 li {
		margin-bottom: 40px;
	}


	.sec02 li .sub_ttl_txt {
		font-size: 20px;
	}
	.sec02 li .sub_read_txt {
		font-size: 12px;
	}
	.sec02 li .img {
		margin: 0 auto 20px;
		width: 240px;
	}
	.sec02 li .sub_ttl_txt{
		margin-bottom: 10px;
	}

}

@media screen and (max-width: 374px){
	.sec02 li .sub_ttl_txt {
		font-size: 18px;
	}
	.sec02 li .sub_read_txt {
		font-size: 11px;
		line-height: 1.8;
	}
}
/*section02*/

.more_line{
	padding: 60px 0;
}
.more_line hr{
	width: 1px;
	margin: 0 auto;
	display: block;
	height: 180px;
	background-color: #000;
}

@media screen and (max-width: 767px){

	.more_line hr{
		height: 100px;
	}
}





/*section03*/
.sec03{
	margin-bottom: 80px;
}
.sec03 .ttl_txt{
	font-size: 30px;
	color: #20252b;
	font-weight: bold;
}
.sec03 .read_txt{
	font-size: 16px;
	color: #20252b;
	font-weight: bold;
}
.sec03 .bg_wrap {
	position: relative;
	overflow: hidden;
}
.sec03 .bg_wrap .bg{
	position: relative;
}
.sec03 .bg_wrap .bg p{
	float: left;
	width: 50%;
}
.sec03 .bg_wrap .bg img{
	width: 100%;
}
.sec03 .bg_wrap::before,
.sec03 .bg_wrap::after{
	position: absolute;
	left: 0;
	right: 0;
	display: block;
	content: '';
	width: 120%;
	background-color: #fff;
	height: 10vw;
	transform: rotate(-5.7105931374996deg);
	z-index: 1;
}
.sec03 .bg_wrap::before{
	transform-origin: left bottom;
}
.sec03 .bg_wrap::after{
	transform-origin: left top;
}



.sec03 .bg_wrap .txt_contentn_wrap{
	position: absolute;
	top: 20%;
	width: 100%;
}
.sec03 .bg_wrap .ttl_txt{
	font-size: 30px;
	color: #fff;
	font-weight: bold;
	line-height: 1.4;
}
.sec03 .bg_wrap .read_txt{
	font-size: 16px;
	color: #fff;
	font-weight: bold;
	line-height: 2.5;
}


.sec03 .bg_wrap .left{
	float: left;
	width: 50%;
}
.sec03 .bg_wrap .left .img_wrap{
	width: 76%;
}
.sec03 .bg_wrap .left .img_wrap .ss01{
	width: 43.94736842105263%;
	float: left;
}
.sec03 .bg_wrap .left .img_wrap .ss02{
	width: 41.84210526315789%;
	float: right;
}
.sec03 .bg_wrap .left .txt_ss_wrap{
	width: 76%;
}
.sec03 .bg_wrap .left .txt_ss_wrap .sub_ttl_txt{
	color: #fff;
	font-size: 30px;
}
.sec03 .bg_wrap .left .txt_ss_wrap .sub_read_txt{
	color: #fff;
	font-size: 16px;
	line-height: 2;
}
.sec03 .bg_wrap .right{
	float: right;
	width: 50%;
}
.sec03 .bg_wrap .right .txt_ss_wrap{
	width: 76%;
	margin: 0 auto;
	text-shadow: 0 0 10px #fff,0 0 10px #fff,0 0 10px #fff,0 0 20px #fff,0 0 20px #fff;
}
.sec03 .bg_wrap .right .txt_ss_wrap .sub_ttl_txt{
	color: #000;
	font-size: 30px;
	letter-spacing: -0.05em;
}
.sec03 .bg_wrap .right .txt_ss_wrap .sub_read_txt{
	color: #000;
	font-size: 16px;
	line-height: 2;
	letter-spacing: -0.05em;
}


@media screen and (max-width: 1400px){
	.sec03 .ttl_txt{
		font-size: 26px;
	}
	.sec03 .bg_wrap .left .txt_ss_wrap .sub_ttl_txt{
		font-size: 26px;
	}
	.sec03 .bg_wrap .left .txt_ss_wrap .sub_read_txt{
		font-size: 16px;
	}
	.sec03 .bg_wrap .right .txt_ss_wrap .sub_ttl_txt{
		font-size: 26px;
	}
	.sec03 .bg_wrap .right .txt_ss_wrap .sub_read_txt{
		font-size: 15;
	}
}


@media screen and (max-width: 1280px){
	.sec03 .bg_wrap .left .img_wrap {
		width: 55%;
	}
	.sec03 .bg_wrap::before,
	.sec03 .bg_wrap::after{
		height: 4vw;
		transform: rotate(-2deg);
	}
	
}

@media screen and (max-width: 900px){
	.sec03 > .section_inner {
		margin-bottom: 30px;
	}
	.sec03 .bg_wrap::before,
	.sec03 .bg_wrap::after{
		content: none;
	}
	.sec03 .bg_wrap .bg{
		display: none;
	}
	.sec03 .bg_wrap .txt_contentn_wrap{
		position: relative;
	}
	.sec03 .bg_wrap .txt_contentn_wrap::before,
	.sec03 .bg_wrap .txt_contentn_wrap::after{
		position: absolute;
		top: 0;
		bottom: 0;
		width: 50%;
		content: '';
		display: block;
		background-position: center center;
		background-repeat: no-repeat;
		background-size: cover;
		z-index: 1;
	}
	.sec03 .bg_wrap .txt_contentn_wrap::before{
		left: 0;
		background-image: url(../images/top/smoothvip_bg01.jpg);
	}
	.sec03 .bg_wrap .txt_contentn_wrap::after{
		right: 0;
		background-image: url(../images/top/smoothvip_bg02.jpg);
	}
	.sec03 .bg_wrap .txt_contentn_wrap .section_wrap{
		position: relative;
		padding: 20px;
		z-index: 2;
	}
	.sec03 .bg_wrap .left,
	.sec03 .bg_wrap .right{
		padding: 20px;
	}
	.sec03 .bg_wrap .left .img_wrap{
		width: 100%;
	}
	.sec03 .bg_wrap .left .txt_ss_wrap{
		width: 100%;
	}
	.sec03 .bg_wrap .right .txt_ss_wrap{
		width: 100%;
	}
}

@media screen and (max-width: 767px){
	.sec03 .bg_wrap .txt_contentn_wrap .section_wrap{
		padding: 0;
	}
	.sec03 .bg_wrap .left,
	.sec03 .bg_wrap .right{
		float: none;
		width: 100%;
		background-repeat: no-repeat;
		background-position: center center;
		background-size: cover
	}
	.sec03 .bg_wrap .left{
		background-image: url(../images/top/smoothvip_bg01.jpg);
	}
	.sec03 .bg_wrap .right{
		background-image: url(../images/top/smoothvip_bg02.jpg);
	}
	.sec03 .bg_wrap .txt_contentn_wrap::before,
	.sec03 .bg_wrap .txt_contentn_wrap::after{
		content: none;
	}
	.sec03 .bg_wrap .left .img_wrap {
		max-width: 380px;
		margin: 0px auto;
	}
	.sec03 .bg_wrap .left .txt_ss_wrap{
		text-align: center;
	}
	.sec03 .bg_wrap .right .txt_ss_wrap{
		text-align: center;
	}
}

@media screen and (max-width: 420px){
	.sec03 .ttl_txt {
		font-size: 24px;
	}
	.sec03 .bg_wrap .left .txt_ss_wrap .sub_ttl_txt{
		font-size: 24px;
	}
	.sec03 .bg_wrap .left .img_wrap {
		max-width: 280px;
	}
	.sec03 .bg_wrap .left .txt_ss_wrap .sub_read_txt {
		font-size: 13px;
	}
	.sec03 .bg_wrap .right .txt_ss_wrap .sub_ttl_txt {
		font-size: 24px;
	}
	.sec03 .bg_wrap .right .txt_ss_wrap .sub_read_txt {
		font-size: 13px;
	}
}

@media screen and (max-width: 374px){
	.sec03 .ttl_txt {
		font-size: 22px;
	}
	.sec03 .bg_wrap .left .txt_ss_wrap .sub_ttl_txt {
		font-size: 22px;
	}
	.sec03 .bg_wrap .left .txt_ss_wrap .sub_read_txt {
		font-size: 12px;
		line-height: 1.8;
	}
	.sec03 .bg_wrap .right .txt_ss_wrap .sub_ttl_txt {
		font-size: 22px;
	}
	.sec03 .bg_wrap .right .txt_ss_wrap .sub_read_txt {
		font-size: 12px;
		line-height: 1.8;
	}
}


/*section03*/





/*section04*/
.sec04{
	margin-bottom: 100px;
}
.sec04 .ttl_txt {
    font-size: 30px;
    color: #20252b;
    font-weight: bold;
}
.lists{
	max-width:680px;
	margin:0 auto;
	width:62.962962963%;
}
.sec04 li{
	float: left;
	width: 47.058%;
	margin-right: 5.88%;
}
.sec04 li:last-child{
	margin-right: 0;
}
.sec04 li .icon{
	margin-bottom: 20px;
}
.sec04 li .txt{
	margin-bottom: 20px;
	font-size: 24px;
	color: #8d1113;
	font-weight: bold;
	line-height: 1.25;
}



@media screen and (max-width: 1400px){
	.sec04 .ttl_txt{
		font-size: 26px;
	}
	.sec04 li .txt{
		font-size: 22px;
	}
}
@media screen and (max-width: 600px){
	.sec04 li{
		float: none;
		width: 100%;
		margin-right: 0;
		margin-bottom: 30px;
	}
	.sec04 li:last-child{
		margin-bottom: 0;
	}
	.sec04 li .txt {
		font-size: 18px;
		margin-bottom: 10px;
	}
	.sec04 li .icon {
		margin-bottom: 10px;
	}
}
@media screen and (max-width: 420px){
	.sec04 {
		margin-bottom: 50px;
	}
	.sec04 .ttl_txt {
		font-size: 24px;
		letter-spacing: -0.08em;
	}
	
}
@media screen and (max-width: 374px){
	.sec04 .ttl_txt {
		font-size: 22px;
	}
}
/*section04*/





/*section05*/
.sec05{
	background-repeat: repeat;
	background-position: center center;
	background-size: auto;
	background-image: url(../images/common/bg.jpg);
	padding-top: 60px;
	padding-bottom: 80px;
}
.sec05 .ttl_txt {
    font-size: 30px;
    color: #20252b;
    font-weight: bold;
}

.sec05 .guidelines {
	background-color: #fff;
	padding: 40px;
	height: 590px;
	overflow-y: scroll;
}

.sec05 .sub_ttl {
	background-color: #000;
	font-size: 20px;
	color: #fff;
	line-height: 1.2;
	padding: 8px 10px;
	margin-bottom: 15px;
}

.sec05 span{
	display: inline-block;
}
.sec05 .txt {
	font-size: 14px;
	letter-spacing: -.05em;
}
.sec05 .txt .bold {
	font-weight: bold;
}
.sec05 .txt .mini {
	font-size: 12px;
}
.sec05 .txt .kome {
	padding-left: 1em;
	text-indent: -1em;
}
.sec05 .txt a {
	color: #00b7ee;
	text-decoration: underline;
}



.sec05 .form_wrap form dl{
	margin-bottom: 10px;
	font-weight: bold;
}
.sec05 .form_wrap form dl:last-child{
	margin-bottom: 0;
}
.sec05 .form_wrap form dl::after {
	clear: both;
	content: '';
	display: block;
}
.sec05 .form_wrap form dl dt {
	float: left;
	width: 180px;
}
.sec05 .form_wrap form dl dd {
	float: right;
	width: calc(100% - 190px);
}
.sec05 .form_wrap form dl dt,
.sec05 .form_wrap form dl dd {
	background-color: #fff;
	padding: 10px;
	line-height: 30px;
	font-size: 16px;
	color: #20252b;
}
.sec05 .form_wrap form dl dt{
	border-left: solid #000 4px;
	line-height\0: 25px;
	padding-top\0: 15px;
}
.sec05 .form_wrap form dl select{
	max-width: 240px;
	width: 100%;
	height: 30px;
	padding: 3px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	outline: none;
	background: transparent;
}
.sec05 .form_wrap form dl p input{
	max-width: 500px;
	width: 100%;
	height: 30px;
	padding: 2px 4px;
}

.sec05 .form_wrap .box{}

.sec05 .form_wrap .box dl{
	display: table;
	border-collapse: collapse;
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
	font-weight: bold;
}
.sec05 .form_wrap .box dl dt,
.sec05 .form_wrap .box dl dd{
	display: table-cell;
	text-align: center;
	vertical-align: middle;
	border: solid #000 1px;
	padding: 10px;
}
.sec05 .form_wrap .box dl dt{
	width: 57.5%;
	line-height: 20px;
	color: #373c40;
	font-size: 20px;
	padding-top\0: 13px;
	padding-bottom\0: 7px;
}
.sec05 .form_wrap .box dl dd{
	width: 42.5%;
	font-size: 18px;
	color: #8d1113;
	line-height: 20px;
	background-color: #ffffff;
}
.sec05 .form_wrap .box .btn{
	margin: 0 auto;
	width: 100%;
	max-width: 260px;
	background-color: #8d1113;
	transition: 0.3s all ease-in-out;
}
.sec05 .form_wrap .box .btn button{
	display: block;
	color: #ffffff;
	font-size: 20px;
	line-height: 1;
	background: none;
	border: 0;
	text-align: center;
	width: 100%;
	padding: 10px;
	font-weight: bold;
	letter-spacing: 0.05em;
	cursor: pointer;
}
body:not(.mobile) .sec05 .form_wrap .box .btn:hover{
	opacity: 0.5;
}

@media screen and (max-width: 1400px){
	.sec05 .ttl_txt{
		font-size: 26px;
	}
	.sec05 .sub_ttl{
		font-size: 18px;
	}
	.sec05 .form_wrap .box dl dt{
		font-size: 18px;
	}
	.sec05 .form_wrap .box dl dd {
		font-size: 16px;
	}
	.sec05 .form_wrap .box .btn button{
		font-size: 16px;
	}
}
@media screen and (max-width: 600px){
	.sec05 .form_wrap form dl dt{
		display: block;
		width: 100%;
		float: none;
		border-bottom: 1px dotted #eee;
	}
	.sec05 .form_wrap form dl dd{
		float: none;
		width: 100%;
	}
	
	.sec05 .form_wrap .box dl dt,
	.sec05 .form_wrap .box dl dd{
		display: block;
		width: 100%;
	}
	.sec05 .form_wrap .box dl dt{
		border-bottom: 0;
	}
	
}
@media screen and (max-width: 420px){
	.sec05 {
		padding-top: 50px;
		padding-bottom: 50px;
	}
	.sec05 .ttl_txt {
		font-size: 24px;
	}
	.sec05 .guidelines {
		height: 400px;
		padding: 20px;
	}
	.sec05 .form_wrap .box dl dt {
		font-size: 14px;
	}
	.sec05 .form_wrap .box dl dd {
		font-size: 14px;
	}
	
	.sec05 .txt {
		font-size: 12px;
		letter-spacing:normal;
	}
	.sec05 .txt .mini {
		font-size: 10px;
	}
}
/*section05*/








/*section06*/
.sec06{
	padding-top: 90px;
	padding-bottom: 100px;
	background-image: url(../images/common/vip_bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}
.sec06 .ttl_txt {
    font-size: 30px;
    color: #20252b;
    font-weight: bold;
}
.sec06 li{
	float: left;
	width: 47.058%;
	margin-right: 5.88%;
}
.sec06 li:last-child{
	margin-right: 0;
}
.sec06 li .icon{
	margin-bottom: 20px;
}
.sec06 li .txt{
	margin-bottom: 20px;
	font-size: 24px;
	color: #8d1113;
	font-weight: bold;
	line-height: 1.25;
}

@media screen and (max-width: 1400px){
	.sec06 .ttl_txt{
		font-size: 26px;
	}
	.sec06 li .txt{
		font-size: 22px;
	}
}

@media screen and (max-width: 600px){
	.sec06{
		padding-top: 40px;
		padding-bottom: 40px;
	}
	.sec06 li{
		float: none;
		width: 100%;
		margin-right: 0;
		margin-bottom: 30px;
	}
	.sec06 li:last-child{
		margin-bottom: 0;
	}
	.sec06 li .txt {
		font-size: 18px;
		margin-bottom: 10px;
	}
	.sec06 li .icon {
		margin-bottom: 10px;
	}
}

@media screen and (max-width: 420px){
	.sec06 .ttl_txt {
		font-size: 24px;
		letter-spacing: -0.08em;
	}
}
/*section06*/









.links_tgt{
	margin-top: -50px;
	padding-top: 50px;
}
@media screen and (max-width: 900px){
	.links_tgt{
		margin-top: -20px!important;
		padding-top: 20px!important;
	}
}

@media screen and (max-width: 767px){
	.links_tgt{
		margin-top: 0!important;
		padding-top:0!important;
		padding-top: 20px !important;
	}
}







/*float_bnner*/
.float_bnner{
	position: absolute;
	top: 300px;
	right: 20px;
	z-index: 100;
	transition: 0.5s all ease-in-out;
	transition-property: padding;
}
.float_bnner p{
	position: relative;
}
.float_bnner .close{
	position: absolute;
	top: 0;
	right: 0;
	height: 15px;
	width: 15px;
	display: block;
	background-color: #fff;
}
.float_bnner .close::before,
.float_bnner .close::after{
	content: '';
	display: block;
	width: 90%;
	height: 1px;
	left: 50%;
	top: 50%;
	background-color: #000;
	position: absolute;
}
.float_bnner .close::before{
	transform: translate(-50%,-50%) rotate(45deg);
}
.float_bnner .close::after{
	transform: translate(-50%,-50%) rotate(-45deg);
}

@media screen and (max-width: 1100px){
	.float_bnner{
		width: 180px;
	}
}
@media screen and (max-width: 600px){
	.float_bnner{
		display: none;
	}
}
/*float_bnner*/

.error_red{
	color: red;
}





















