@charset "UTF-8";


/*----------------------reset----------------------------*/

html, body, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, menu, nav, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	color: #437287;
}
body {
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
	line-height: 1.75;
	letter-spacing: 1px;
	font-size: 16px;
	text-align: left;
}
h1, h2, h3, h4, h5, h6 {
    line-height: 1;
}
li {
	list-style-type: none;
}
a {
	outline: none;
	color: #437287;
	text-decoration: none;
}
img {
  width: 100%;
  vertical-align: middle;
}
.cf {
    zoom: 1;
}
.cf:before, .cf:after {
    content: "";
    display: table;
}
.cf:after {
    clear: both;
}

.nobreak {
	display: inline-block;
}
.hover{
	transition: opacity 0.2s;	
}
.hover:hover{
	opacity: 0.8;
}


/* ----------------------------header ---------------------------- */

.header{
	width: 1200px;
	margin: 0 auto;
	padding-top: 30px;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 2;
}
.header_logo{
	width: 200px;
	float: left;
}
.header_close_btn{
	width: 120px;
	float: right;
	margin-left: 40px;
	display: none;
}
.header_close_btn a{
	display: block;
	font-size: 12px;
	text-align: center;
	padding: 10px 0;
	border: 2px solid #7c9dab;
	line-height: 1;
	border-radius: 18px;
	letter-spacing: 0.5px;
}

.gnav{
	width: 620px;
}
.header .gnav{
	float: right;
}
.gnav ul{
	display: flex;
	justify-content: space-between;
}
.gnav a{
	font-weight: bold;
	display: block;
	padding: 3px 0 10px;
	position: relative;
}
.gnav a:after{
	position: absolute;
	left: 0;
	bottom: 0;
	content: "";
	width: 0;
	height: 2px;
	display: inline-block;
 	-webkit-transition: width .4s cubic-bezier(0.23, 1, 0.32, 1);
 	transition: width .4s cubic-bezier(0.23, 1, 0.32, 1);
}
.gnav a:hover:after,
.gnav a.current:after{
	width: 100%;
}

.gnav01:hover:after,
.gnav01.current:after{
	background: #f87caa;
}
.gnav02:hover:after,
.gnav02.current:after{
	background: #6bb8ef;
}
.gnav03:hover:after,
.gnav03.current:after{
	background: #86ca44;
}
.gnav04:hover:after,
.gnav04.current:after{
	background: #eac900;
}
.gnav05:hover:after,
.gnav05.current:after{
	background: #d291ee;
}


/* ----------------------------section01 ---------------------------- */

.section01 {
	position: relative;
	z-index: 1;
	padding: 0 0 80px;
	background: url( "../images/bg_content_sec01.png" ) center center / 24px 24px repeat;
}
.section01 h1{
	width: 100%;
	background: url( "../images/confetti_sec01.png" ) center 100px / 1400px auto no-repeat,
				url( "../images/bg_ttl_sec01.png" ) center center / 30px 30px repeat;
	padding: 85px 0 10px;
}
.section01 h1 img{
	width: 1040px;
	display: block;
	margin: 0 auto;
}
.section01 h1 + *{
	width: 1200px;
	margin: -110px auto 0;
	position: relative;
	z-index: 2;
}
.nocampaign{
	background: #fff;
	box-shadow: 0 2px 10px rgba(210,182,216,0.4);
	padding: 95px 0;
	text-align: center;
}
.nocampaign img{
	width: 520px;
}
.section01_list{
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.section01_list li{
	width: 380px;
	background: #fff;
	margin-right: 30px;
	box-shadow: 0 2px 10px rgba(210,182,216,0.4);
}
.section01_list li:nth-child(3n){
	margin-right: 0;
}
.section01_list li:nth-child(n+4){
	margin-top: 30px;
}
.section01_list a{
	display: block;
	height: 100%;
}
.section01_list p{
	padding: 20px;
	box-sizing: border-box;
	font-weight: bold;
}
.section01_list p span{
	font-size: 12px;
	font-weight: normal;
}
.section01_register{
	width: 470px;
	margin: 50px auto 0;
}
.section01_register > p{
	width: 464px;
	margin: 0 auto;
}
.section01_register_btn{
	margin: 20px 0 0;
	border-radius: 54px;
	box-shadow: 0 2px 10px rgba(210,182,216,0.4);
	position: relative;
}
.section01_register_btn:before,
.section01_register_btn:after{
	position: absolute;
	content: "";
	display: inline-block;
	width: 102px;
	height: 143px;
	bottom: -3px;
}
.section01_register_btn:before{
	left: -122px;
	background: url( "../images/kumahon_register01_01.png" ) center center / contain no-repeat;
}
.section01_register_btn:after{
	right: -122px;
	background: url( "../images/kumahon_register01_02.png" ) center center / contain no-repeat;
}

.section01_register_btn a{
	border-radius: 54px;
    display: block;
	padding: 20px 0;
	text-align: center;
    background: #f87caa;
    box-shadow: 0px -3px 0 1px rgba(240, 101, 153, 1) inset;
	border: 5px solid #fff;
}
.section01_register_btn a img{
	width: 369px;
}


/* ----------------------------section02 ---------------------------- */

.section02{
	position: relative;
	z-index: 2;
	padding-top: 75px;
	margin-top: -75px;
}

.section02 h1{
	width: 100%;
	background: url( "../images/confetti_sec02.png" ) center center / 1400px auto no-repeat,
				url( "../images/bg_ttl_sec02.png" ) center center / 30px 30px repeat;
	border-top: 10px solid #fff;
	border-bottom: 10px solid #fff;
}
.section02 h1 img{
	width: 992px;
	display: block;
	margin: -60px auto 0;
}
.section02_body{
	padding: 80px 0 100px;
	background: url( "../images/bg_content_sec02.png" ) center center / 24px 24px repeat;
}
.section02_list{
	width: 1200px;
	margin: 0 auto;
}

.section02_list_each{
	display: flex;
	margin-top: 80px;
	justify-content: flex-start;
	position: relative;
}
.section02_list_each:after{
	position: absolute;
	content: "";
	display: inline-block;
}
.section02_list_each:first-child:after{
	top: 15px;
	right: 0;
	width: 179px;
	height: 218px;
	background: url( "../images/kumahon_sec02_01.png" ) center center / contain no-repeat;
}
.section02_list_each:nth-child(2):after{
	top: 18px;
	left: 35px;
	width: 121px;
	height: 227px;
	background: url( "../images/kumahon_sec02_02.png" ) center center / contain no-repeat;
}
.section02_list_each:nth-child(3):after{
	top: 15px;
	right: 0;
	width: 179px;
	height: 230px;
	background: url( "../images/kumahon_sec02_03.png" ) center center / contain no-repeat;
}
.section02_list_each:nth-child(4):after{
	top: 18px;
	left: -45px;
	width: 218px;
	height: 216px;
	background: url( "../images/kumahon_sec02_04.png" ) center center / contain no-repeat;
}
.section02_list_each:nth-child(5):after{
	top: 15px;
	right: 0;
	width: 173px;
	height: 227px;
	background: url( "../images/kumahon_sec02_05.png" ) center center / contain no-repeat;
}


.section02_list_each:first-child{
	margin-top: 0;
}
.section02_list_each:nth-child(even){
	flex-flow: row-reverse;
}
.section02_list_img{
	width: 486px;
	height: 270px;
	display: block;
}
.section02_list_each:nth-child(odd) .section02_list_img{
	margin-right: 40px;
}
.section02_list_each:nth-child(even) .section02_list_img{
	margin-left: 40px;
}

.section02_list_txt{
	width: 520px;
	height: 270px;
	display: table;
	background: url( "../images/bg_txt_sec02.png" ) center center / contain no-repeat;
	padding: 0 45px;
	box-sizing: border-box;
	position: relative;
}
.section02_list_txt_inner{
	display: table-cell;
	vertical-align: middle;
}
.section02_list_txt_inner p{
	margin-top: 20px;
	line-height: 1.5;
}
.section02_list_txt_btn {
	width: 430px;
	display: flex;
	justify-content: space-between;
	flex-flow: row-reverse;
	position: absolute;
	bottom: -19px;
	right: 42px;
}

.section02_list_txt_btn li{
	border-radius: 54px;
	box-shadow: 0 2px 6px rgba(182,189,216,0.4);
	position: relative;
}
.section02_list_txt_btn a{
	border-radius: 25px;
    display: block;
	width: 204px;
	padding: 12px 0;
	line-height: 1;
    background: #6bb8ef;
    box-shadow: 0px -2px 0 1px rgba(90, 171, 229, 1) inset;
	border: 3px solid #fff;
	text-align: center;
	position: relative;
}
.section02_list_txt_btn .entry a{
    background: #fff34c;
    box-shadow: 0px -2px 0 1px rgba(241, 229, 62, 1) inset;
}
.section02_list_txt_btn a:after{
	position: absolute;
	content: "";
	top: 0;
	bottom: 0;
	right: 17px;
	margin: auto 0;
	width: 8px;
	height: 13px;
	background: url( "../images/arrow_02_r.png" ) center center / contain no-repeat;
}
.section02_list_txt_btn .entry a:after{
	background: url( "../images/arrow_01.png" ) center center / contain no-repeat;
}

.section02_list_txt_btn a img{
	height: 20px;
	width: auto;
	display: inline-block;
	padding-right: 8px;
}



/* ----------------------------section03 ---------------------------- */

.section03{
	position: relative;
	z-index: 3;
	padding-top: 75px;
	margin-top: -75px;
}

.section03 h1{
	width: 100%;
	background: url( "../images/confetti_sec03.png" ) center center / 1400px auto no-repeat,
				url( "../images/bg_ttl_sec03.png" ) center center / 30px 30px repeat;
	border-top: 10px solid #fff;
	border-bottom: 10px solid #fff;
}
.section03 h1 img{
	width: 890px;
	display: block;
	margin: -60px auto 0;
}
.section03_body{
	padding: 80px 0;
	background: url( "../images/bg_content_sec03.png" ) center center / 24px 24px repeat;
}
.section03_list{
	width: 1055px;
	margin: 0 auto;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	position: relative;
}
.section03_list:before{
	position: absolute;
	content: "";
	top: 80px;
	right: 20px;
	width: 105px;
	height: 65px;
	background: url( "../images/star_01.png" ) center center / contain no-repeat;
}
.section03_list:after{
	position: absolute;
	content: "";
	bottom: 200px;
	left: 40px;
	width: 81px;
	height: 48px;
	background: url( "../images/star_02.png" ) center center / contain no-repeat;
}
.section03_list_each{
	width: 280px;
	margin-right: 30px;
}
.section03_list_each:nth-child(n+4){
	margin-top: 30px;
}
.section03_list_each:nth-child(4){
	margin-left: 155px;
}
.section03_list_each:nth-child(6){
	margin-right: 0;
}

.section03_list_each p{
	text-align: center;
	font-size: 12px;
	margin-top: 10px;
}

/* ----------------------------section04 ---------------------------- */

.section04{
	position: relative;
	z-index: 4;
	padding-top: 75px;
	margin-top: -75px;
}

.section04 h1{
	width: 100%;
	background: url( "../images/confetti_sec04.png" ) center center / 1400px auto no-repeat,
				url( "../images/bg_ttl_sec04.png" ) center center / 30px 30px repeat;
	border-top: 10px solid #fff;
	border-bottom: 10px solid #fff;
}
.section04 h1 img{
	width: 790px;
	display: block;
	margin: -60px auto 0;
}
.section04_body{
	padding: 80px 0;
	background: url( "../images/bg_content_sec04.png" ) center center / 24px 24px repeat;
	overflow: hidden;
}
.section04_list{
	width: 1230px;
	margin: 0 auto;
}
.section04_list li{
	padding: 8px;
	box-sizing: border-box;
	background: url( "../images/bg_txt_sec04.png" ) center center / 6px 6px repeat;
	border-radius: 20px;
	position: relative;
}
.section04_list li:after{
	position: absolute;
	content: "";
	margin: 0 auto;
	right: 0;
	left: 0;
	bottom: -80px;
}
.section04_list li.male:after{
	width: 101px;
	height: 102px;
	background: url( "../images/ico_male.png" ) center center / contain no-repeat;
}
.section04_list li.female:after{
	width: 67px;
	height: 102px;
	background: url( "../images/ico_female.png" ) center center / contain no-repeat;
}


.section04_list li p{
	padding: 30px;
	background: #fff;
	border-radius: 12px;
	font-size: 20px;
	height: 100%;
	box-sizing: border-box;
}
.section04_list li p span{
	font-size: 16px;
}

/* ----------------------------section05 ---------------------------- */

.header .gnav li:last-of-type {
	display: none;
}
.section05{
	position: relative;
	z-index: 5;
	width: 900px; /* width: 1230px; */
	margin: 60px auto 50px auto;
	padding: 50px 0 50px 0;
	background: #ffffff;
	border-radius: 10px;
	display: none;
}
.section05 h1{
	margin: 0 0 30px 0;
	text-align: center;
	color: #62b1e6;
}
.section05_body{
	overflow: hidden;
}
.section05_list{
}
.section05_list li{
	position: relative;
	margin: 0 40px 5px 40px;
	padding: 10px 20px 10px 20px;
}
.section05_list li .term{
	display: block;
}
.section05_list li .name{
	display: block;
	font-size: 20px;
	text-decoration: underline;
}
.section05_list li .name .external{
	padding: 0 24px 0 0;
	background: url( "../images/ico_external.png") right center / 16px 16px no-repeat;
	color: #62b1e6;
}

/* ----------------------------footer ---------------------------- */

.footer_inner{
	padding: 60px 0 160px;
	background: url( "../images/bg_footer.png") center top / 1px 4px repeat;
}
.btn_top{
	background: #fff;
}
.btn_top a{
	display: block;
	height: 50px;
	background: url( "../images/ico_top.png") center center / 30px 22px no-repeat #bad4f3;
}
.footer_register_btn{
	width: 460px;
	margin: 0 auto 40px;
}
.footer_register_btn a{
	border-radius: 54px;
    display: block;
	padding: 20px 0;
    background: #f87caa;
    box-shadow: 0px -3px 0 1px rgba(240, 101, 153, 1) inset;
	text-align: center;
	line-height: 1;
}
.footer_register_btn a img{
	width: 369px;
}

.footer_close_btn{
	width: 200px;
	margin: 60px auto 0;
	display: none;
}
.footer_close_btn a{
	display: block;
	font-size: 18px;
	text-align: center;
	padding: 15px 0;
	border: 2px solid #7c9dab;
	line-height: 1;
	border-radius: 26px;
}
.footer p{
	font-size: 12px;
	text-align: center;
}
.footer p{
	font-size: 12px;
	text-align: center;
}
.footer_gnav{
	background: #fff;
	padding: 30px 0;
	position: fixed;
	bottom: -120px;
	left: 0;
	width: 100%;
	z-index: 99;
	box-shadow: 0 2px 10px rgba(50,50,50,0.4);
	transition: bottom 0.5s;
	display: flex;
	justify-content: center; 
	align-items: center;
}
.footer_gnav.open{
	bottom: 0;
}
.footer_gnav_register_btn{
	margin-left: 60px;
	width: 260px;
}
.footer_gnav_register_btn a{
	border-radius: 54px;
    display: block;
	padding: 16px 0;
    background: #f87caa;
    box-shadow: 0px -2px 0 1px rgba(240, 101, 153, 1) inset;
	text-align: center;
	line-height: 1;
	position: relative;
}
.footer_gnav_register_btn a:after {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    right: 24px;
    margin: auto 0;
    width: 9px;
    height: 15px;
    background: url(../images/arrow_03.png) center center / contain no-repeat;
}
.footer_gnav_register_btn a img{
	width: 167px;
	display: inline-block;
    padding-right: 4px;
}


/* ----------------------------parameter ---------------------------- */


.member .section01_register,
.member .entry,
.member .section02_list_each_forecast .section02_list_txt_btn,
.member .footer_register_btn,
.member .footer_gnav_register_btn{
	display: none;
}
.member .section01_list li a{
	pointer-events: none;
}
.member .header_close_btn,
.member .footer_close_btn{
	display: block;
}
