/* CSS Document */
html {
	font-size: 62.5%;
}
body {
	font-size: 3.5vw;
	font-family: '游ゴシック', YuGothic, 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'メイリオ', 'Meiryo', sans-serif;
	line-height:1.5;
	color:#262323;
	height: 100%;
}
@media all and (-ms-high-contrast: none) {
	body{
		font-family: 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'メイリオ', 'Meiryo', sans-serif;
	}
}
@media screen and (min-width: 414px){
	body{
		font-size: 1.5em;
	}
}

#wrapper{
	position: absolute;
    top: 0;
	z-index: 1;/*z-indexの数字を大きくすることで描画を#particles-jsよりも上に*/
	width:100%;
	height: 100%;
}
main{
	display: block;
}
a {
	text-decoration:none;
	color: #BF4E7A;
    font-weight: bold;
}
img {
	display: block;
	max-width: 100%;
	margin: 0 auto;
}
p{
	margin-bottom: 1.5em;
}
#page_top{
	position: fixed;
	font-family: 'Manjari', 'M PLUS 1p';
	width: 4.5em;
	height: 4.5em;
	border-radius: 50%;
	background: #4F6E58;
	color: #FFF;
    cursor: pointer;
	text-align: center;
	padding: 2.5em 1em 1em;
	font-size: 1.4em;
	box-shadow: 0 0 10px rgba(62, 84, 67, 0.4);
	right: 2em;
	bottom: -8em;
    transition: 0.5s;
}
#page_top:hover{
    box-shadow: 0 0 10px rgba(62, 84, 67, 0.4);
    transform: scale(1.1);
}
#page_top:after{
	content: '';
	display: block;
	width: 1.3em;
	height: 1.3em;
	border-top: 2px solid currentColor;
	border-left: 2px solid currentColor;
	transform: rotate(45deg);
	position: absolute;
	top: 1.3em;
	left: 0;
	right: 0;
	margin: auto;
}
@media screen and (min-width: 768px){
	#page_top{
		font-size: 1em;
	}
}
.ta_right{
    text-align: right;
}
/*スマホの時に消える(PCでは表示)*/
.nosp{
	display: none;
}
/*PCの時に消える（スマホでは消える）*/
.nopc{
	display:block;
}
br.nopc{
	display:inline;
}
/*変な位置で改行しないようこの単語は繋げて表示する*/
.br{
	display: inline-block;
}
/*スマホの時はセンター揃え（PCでは左揃え）*/
.sp-center{
	text-align: center;
}

@media screen and (min-width: 768px) {
	/*PCの時に消える（スマホでは表示）*/
	.nopc{
		display:none;
	}
	br.nopc{
		display: none;
	}
	/*スマホの時に消える（PCでは表示）*/
	.nosp{
		display: block;
	}
	br.nosp{
		display: inline;
	}
	/*スマホの時はセンター揃え（PCでは左揃え）*/
	.sp-center{
		text-align: left;
	}
	/*PCの時はセンター揃え*/
	.pc-center{
		text-align: center;
	}
}


/***************　　**************/


/***************　 共通パーツ　**************/






/*ボタン*/
.btn{
	display: inline-block;
	background: #BF4E7A;
	font-family: 'M PLUS 1p';
    font-weight: normal;
	border: 1px solid #BF4E7A;
	color: #fff;
	font-size: 1.5em;
	padding: 0.5em 1.5em 0.5em 1.3em;
	margin-top: 0.5em;
	min-width: 8em;
	border-radius: 0.5rem;
	text-align: center;
	position: relative;
	transition: 0.2s;
	letter-spacing: 0.05em;
    box-shadow: 0 2px 15px rgb(137 46 81 / 60%);
}
.btn:hover{
	background: #fff;
	color: #BF4E7A;
}
.btn_close,
.btn_close:hover{
	background: #666666;
	border-color: #666666;
	color: #fff;
    box-shadow: none;
}
/*三角*/

/*枠矢印*/
.btn:after {
    content: "";
    display: inline-block;
    width: 0.5em;
    height: 0.5em;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg) skew(8deg,8deg);
    transform-origin: top right;
    position: absolute;
    top: 50%;
    right: 0.5em;
}
@media screen and (min-width: 768px) {
    .btn + .btn{
        margin-left: 2em;
    }
}

/***************　共通パーツ　**************/
/***************　　ここまで　*************/


/***************　クリック開閉メニュー　**************/
header{
	background:  #BF4E7A;
	color: #fff;
	position: fixed;
	width: 100%;
	min-height: 60px;
	z-index: 1000;
	top: 0;
}
header a{
	color: #fff;
}
.logo{
	display: block;
	max-width: 220px;
	margin: auto;
}
.menu_btn{
	position: absolute;
	display: block;
	cursor: pointer;
	width: 60px;
	height: 60px;
	border-left: 1px solid #FFF;
	background: #BF4E7A;
	border: none;
	top:0;
	right: 0;
	z-index: 100;
	padding: 15px;
	outline: none;
	transition: 0.5s;
}
.menu_btn:before,
.menu_btn:after,
.menu_btn span:before{
	content: "";
	width: 30px;
	height: 2px;
	background: #fff;
	position: absolute;
	left: 15px;
	transition: 0.5s;
}
.menu_btn:before{
	top: 17px;
}
.menu_btn:after{
	bottom: 17px;
}
.menu_btn span:before{
	top: 29px;
}
.menu_btn.active:before{
	transform: translateY(12px) rotate(45deg);
}
.menu_btn.active:after{
	transform: translateY(-12px) rotate(-45deg);
}
.menu_btn.active span:before{
	opacity: 0;
}
.menu_btn span{
	color: transparent;
}
.menu_area{
	padding: 0 20px;
}
.menu a{
	display: inline-block;
	color: #fff;
}
.menu_area nav{
	display: none;
	position: absolute;
	width: 100%;
	background: #BF4E7A;
	padding: 80px 20px 20px;
	top: 0;
	left: 0;
	z-index: 10;
	overflow: visible;
	overflow-y: auto;
	height: 100vh;
}
.menu_area nav ul{
	list-style: none;
}
.menu_area nav ul li{
	padding: 0.75em;
	text-align: center;
	font-size: 2em;
	font-family: 'Manjari', 'M PLUS 1p';
	line-height: 1;
}
.menu_area nav ul li span{
	font-size: 0.5em;
	display: block;
}

main{
	margin-top: 60px;
}

/***************　クリック開閉メニュー　ここまで　*************/



/***************　　**************/
.area{
	padding: 6em 1em;
}
@media screen and (min-width: 768px) {
    .area{
        padding: 7em 1em;
    }
}
.inner{
	width: 100%;
	max-width: 970px;
	margin: 0 auto;
}
.page_title{
	background: #ffe2e2;
	color: #BF4E7A;
	padding: 2.5em 1em 1.7em;
}
.page_title h1{
	font-size: 3em;
	max-width: 970px;
	margin: auto;
	font-family: 'Manjari', 'M PLUS 1p';
	letter-spacing: 2px;
	line-height: 1;
}
.page_title h1 span{
	font-size: 0.4em;
	margin-left: 1em;
}
section.area h2{
	text-align: center;
	font-size: 3em;
	font-family: 'Manjari', 'M PLUS 1p';
    margin-bottom: 0.5em;
    line-height: 1;
}
section.area h2 span{
	font-size: 0.4em;
	margin-left: 1.5em;
    display: inline-block;
}
section.area h2.ja_title{
	font-size: 2.2em;
	margin-bottom: 1em;
}
section.area h3{
	font-size: 2.4em;
	text-align: center;
}
/***************　　ここまで　*************/



/***************　mv　**************/
#sakura{ 
	position:fixed;/*描画固定*/
	z-index:-1;/*描画を一番下に*/
	width: 100%;
	height: 100%;
	
	top: 0;
}

.mv{
	text-align: center;
    color: #BF4E7A;
    background-color: #ffe2e2;
	padding-top: 5em;
	padding-bottom: 4em;
	font-family: 'M PLUS 1p';
	position: relative;
	overflow: hidden;
    z-index: -2;
}
@media screen and (min-width: 768px){
	.mv::after{
		background-size: 160px;
	}
}
.mv .inner{
	position: relative;
	z-index: 1;
}
.main_title{
    position: relative;
    margin-bottom: 2em;
}
.sub_title{
    background: #4F6E58;
    color: #fff;
    font-size: 1.8em;
    max-width: 6em;
    font-family: 'M PLUS 1p';
    transform: rotate(-6deg);
    position: absolute;
    right: 0.1em;
    bottom: -0.5em;
    padding: 0 0.3em;
    margin: auto;
}
.info_day{
	font-size: 1.5em;
	letter-spacing: 2px;
}
.info_day strong{
	font-size: 1.5em;
	font-weight: normal;
}
.info_event{
	font-size: 1.8em;
}
.info_web{
    font-size: 2.2em;
}

@media screen and (min-width: 411px){
    .sub_title{
        font-size: 5vw;
        right: 0.2em;
        left: auto;;
        bottom: -0.1em;
    }
	.info_day strong{
		font-size: 2em;
	}
}
@media screen and (min-width: 800px){
    .sub_title{
        font-size: 2.5em;
        left: auto;;
        bottom: 0.2em;
    }
	.info_day strong{
		font-size: 2em;
	}
}
/***************　mv　ここまで　*************/

/***************　about　**************/
.organizer{
	border-bottom: 2px solid #4F6E58;
	margin: 3em	auto;
}
.organizer th,
.organizer td{
	padding: 0.5em 1em;
	border-top: 2px solid #4F6E58;
}
.organizer th{
	min-width: 8em;
	vertical-align: middle;
}
.btn_area{
	text-align: center;
}
.btn_area ul,
.btn_area ol{
	list-style: none;
}
.btn_area li{
    margin-bottom: 1em;
}

.twitter_area {
    max-width: 400px;
    height: 600px;
    overflow: auto;
    margin: 5em auto;
}
/***************　about　ここまで　*************/


/***************　method　**************/
.method_area{
	position: relative;
	padding-top: 10vw;
	padding-bottom: 10vw;
}
.method{
	background: #ffe2e2;
	border-radius: 10px;
}

.method ol{
	list-style: none;
}
.method li{
	padding: 2em 1em;
	position: relative;
}
.method li + li{
	border-top: 6px solid #BF4E7A;
}
.method li + li:before{
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	background: #ffe2e2;
	border-right: 5px solid #BF4E7A;
	border-bottom: 5px solid #BF4E7A;
	transform: rotate(45deg);
	position: absolute;
	left: 0;
	right: 0;
	top: -15px;
	margin: auto;
}
.method ol h3{
	background: #BF4E7A;
	color: #fff;
	text-align: center;
	font-size: 1.8em;
	line-height: 1;
	padding: 0.5em;
	border-radius: 1em;
	width: 8em;
	margin: auto;
}

.method p{
	padding: 1em 1em 0;
	text-align: center;
	margin: 0;
}
.method p + p{
	padding-top: 0;
}
.method p strong{
	color: #BF4E7A;
}
.method p.step_txt{
	font-size: 1.8em;
	color: #4F6E58;
	padding: 1em 0 0.6em;
	margin: 0;
}
.method ol div.icon{
	width: 65%;
	margin: 0 auto 1em;
	text-align: center;
}
.method ol div.icon i{
	color: #4F6E58;
}
.method li .btn{
	display: block;
	margin: auto;
	font-size: 1.5em;
	margin-top: 1em;
}


@media screen and (min-width: 768px){
	.method_area{
		position: relative;
		padding-top: 50px;
		padding-bottom: 70px;
	}
	.method_area:before{
		width: 100%;
	}
	.method{
		margin-top: 50px;
		padding-top: 0;
	}
	.method ol{
		display: flex;
		justify-content: center;
		margin: 0 -0.4%;
	}
	.method li{
		flex: 0 0 25%;
		max-width: 25%;
	}
	.method li + li{
		border-top: none;
		border-left: 6px solid #BF4E7A;
	}
	.method li + li:before{
		transform: rotate(-45deg);
		width: 30px;
		height: 30px;
		top: 0;
		bottom: 0;
		left: -20px;
		right: auto;
	}
	.method li h3{
		margin-top: -1.8em;
		width: 6em;
		padding: 0.3em;
	}
	.method p{
		text-align: left;
	}
	.method p.step_txt{
		text-align: center;
	}
	.method ol div{
		width: auto;
	}
	.method li .btn{
		font-size: 1.2em;
	}
}
/***************　　ここまで　*************/


/***************　　**************/
.deadline{
	font-family: 'M PLUS 1p';
	text-align: center;
	margin-top: 1em;
	padding-bottom: 1em;
	font-size: 1.5em;
	font-weight: bold;
}
.deadline strong{
	font-size: 1.5em;
}
.circle_gift{
	margin-top: 3em;
}
.circle_gift ol {
	list-style: none;
	padding-left: 1em;
	max-width: 24em;
	margin: auto;
}
.circle_gift ol li{
	font-size: 1.5em;
	counter-increment: gift;
}
.circle_gift ol li::before{
    content: counter(gift);
	margin-right: 0.5em;
	font-weight: bold;
}

/***************　　ここまで　*************/

/***************　　**************/

.mystery_flow{
	
}
.mystery_flow ol{
	list-style: none;
}
.mystery_flow ol li{
	counter-increment: myster_flow;
	padding: 2em 1em 1em;
	border-radius: 1em;
	background: #ffe2e2;
	text-align: center;
	max-width: 46em;
	margin: auto;
}
.mystery_flow ol li + li{
	margin-top: 3em;
	position: relative;
}
.mystery_flow ol li + li::before{
	content: "";
    display: block;
	width: 0;
	height: 0;
    border-width: 1em;
	border-style: solid;
	border-color: #4F6E58 transparent;
	border-bottom: none;
    position: absolute;
	margin: auto;
	top: -2em;
	left: 0;
	right: 0;
}
.mystery_flow ol li h3{
	font-family: 'M PLUS 1p';
	font-size: 1.5em;
	margin-bottom: 0.5em;
}
/***************　　ここまで　*************/

/***************　　**************/
/***************　　ここまで　*************/
.faq_list dl{
	background:  #ffe2e2;
	border-radius: 1em;
}
.faq_list dl + dl{
	margin-top: 2em;
}
.faq_list dl dt{
	font-size: 1.5em;
    display: flex;
	padding: 1.5rem 1.5rem;
	cursor: pointer;
	border-radius: 1em;
	line-height: 1.3;
}
.faq_list dl dt::before{
	content: '\f138';
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	margin-right: 0.5em;
}
.faq_list dl.area_open dt::before{
	content: '\f13a';
}
.faq_list dl dd{
	border-top: 2px solid #BF4E7A;
	padding: 1em 1em 1.5em;
	margin: 0 1em;
	display: none;
}
.pop_img{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 1em 0;
}
.pop_img img{
    flex: 0 0 48%;
    max-width: 48%;
}

/***************　LIST　**************/
.circle_list_area{
	overflow-x: auto;
}
#circle_list{
	width: 850px;
	margin: auto;
}
#circle_list th,
#circle_list td{
	padding: 0.5em 1.5em;
}
#circle_list th{
	background: #BF4E7A;
	color: #fff;
	position: relative;
}
#circle_list td a{
	display: inline-block;
	max-width: 24px;
	background: #BF4E7A;
	border-radius: 4px;
	margin: auto;
}
#circle_list td a + a{
	margin-left: 1em;
}
#circle_list tr td:nth-child(3),
#circle_list tr td:nth-child(4),
#circle_list tr td:nth-child(5){
	text-align: center;
} 
#circle_list th + th{
	border-left: 1px solid #FF8EAA;
}
#circle_list td + td{
	border-left: 1px solid #FF8EAA;
}
#circle_list tr:nth-child(2n+1) td {
	background:  #ffe2e2;
}
#circle_list tr:nth-child(2n) td {
	background: #fff;
}
.tablesorter-header::after{
	font-family: "Font Awesome 5 Free";
	font-weight: bold;
	position: absolute;
	color: #fff;
	width: 1em;
	height: 1em;
	line-height: 1;
	right: 0.2em;
	top: 0;
	bottom: 0;
	margin: auto;
}
.tablesorter-headerUnSorted::after{
	content: '\f0dc';
}
#circle_list th.tablesorter-headerAsc,
#circle_list th.tablesorter-headerDesc{
	background: #4F6E58;
}
.tablesorter-headerAsc::after{
	content: '\f0dd';
}
.tablesorter-headerDesc::after{
	content: '\f0de';
}
.sorter-false::after{
	content: none;
}
/***************　LIST　ここまで　*************/


/***************　　**************/
.img_area{
    padding: 1em 0 2em;
}
/***************　　ここまで　*************/



/***************　　**************/
/***************　　ここまで　*************/


/***************　　**************/
/***************　　ここまで　*************/


/***************　footer　**************/
footer{
	background: #BF4E7A;
	color: #fff;
	padding: 1em;
	text-align: center;
	font-size: 0.8em;
}
/***************　footer　ここまで　*************/

