@charset "UTF-8";

/*
	Reset CSS
-----------------------------------------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
html{
	font-size:62.5%;
}
body{
	margin:0 auto;
	padding:0;
	font-size:1.5em;
	font-family: YakuHanJP, 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
	font-feature-settings: "palt";
	overflow-wrap: break-word;
}
p{
	line-height: 1.6;
}
ol, ul{
	list-style: none;
}
@media screen and (min-width:813px){
	/* iPad背景切れ対策 */
	body{
		min-width:1200px;
	}
	/* 電話リンクなし */
	a[href^=tel]{
		pointer-events:none;
	}
}
*,*::before,*::after{
	box-sizing:border-box;
}
img {
	width: 100%;
	border: none;
	vertical-align: top;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
a {
	color: #000;
	text-decoration: none;
	transition: color 0.2s, opacity 0.2s;
}
a:link {
	color: #000;
}
a:visited {
	color: #000;
}
a:hover {
	color: #000;
	opacity: 0.7;
	text-decoration: none;
}
table{
	width:100%;
	border-collapse: collapse;
	border-spacing: 0;
	word-wrap: break-word;
}
/* 表示切替 */
.switch {
	visibility: hidden;
}
.sp{
	display:none;
}
@media screen and (max-width:812px){
	body{
		-webkit-text-size-adjust:100%;
	}
	.pc{
		display:none;
	}
	.sp{
		display:block;
	}
	br.sp{
		display:inline-block;
	}
}


/*
	common
-----------------------------------------------------------------------------------------------*/
:root{
	/* color */
	--bk: #000;
	--wh: #fff;
	--gry: #666;
	--bl: #2377bd;
	--em: #20c6c1;
	--rd: #ec552a;
	--yl: #ffd22c;
	/* font */
	--en: 'Neonderthaw', cursive;
	--num: 'Lato', sans-serif;
	--light: 100;
	--medium: 500;
	--bold: 700;
}

/* テキストリンク */
a.txtLink{
	text-decoration:underline;
	transition:color 0.2s;
}
a[class^="txtLink"]:hover{
	text-decoration:none;
	opacity: 1.0;
}
a.txtLink:hover{
	color:#000;
}

/* flexBox */
.flexBox{
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

/* コンテンツ */
#wrapper{
	min-width: 1400px;
	background: url("../images/bg_wrapper.png") repeat center center;
	position: relative;
}
@media screen and (min-width:812px){
	/* iPad背景切れ対策 */
	#wrapper{
		min-width:1200px;
	}
}
.ctsArea{
	width: 1000px;
	margin: 0 auto;
	padding: 80px 30px;
}
@media screen and (max-width:812px){
	#wrapper{
		min-width: 100%;
	}
	.ctsArea{
		width: 100%;
		max-width: 500px;
		padding: 30px 20px;
	}
}

/* タイトル */
.titLBar{
	margin: 0 0 10px;
	padding: 0 0 0 10px;
	font-size: 1.6rem;
	line-height: 1.2;
	font-weight: var(--bold);
	border-left: 5px solid var(--rd);
}

/* ボタン */
[class^="btnBase"]{
	-ms-justify-content: center;
	justify-content: center;
	padding: 30px 0 0;
}
.btnBase_left{
	-ms-justify-content: flex-start;
	justify-content: flex-start;
}
a[class^="btnBase__item"]{
	display: block;
	width: 380px;
	margin: 0 15px 0 0;
	padding: 25px;
	font-size: 2.0rem;
	color: var(--wh);
	font-weight: var(--bold);
	text-align: center;
	border-radius: 40px;
	box-shadow: 0 0 20px rgba(0,0,0,0.1);
	position: relative;
}
a[class^="btnBase__item"]::after{
	content:' ';
	display:block;
	width:10px;
	height:10px;
	border-top:3px solid var(--wh);
	border-right:3px solid var(--wh);
	transform:translateY(-50%) rotate(45deg);
	transform-origin:0 0;
	position:absolute;
	top:50%;
	right:25px;
	margin:-4px 0 0 0;
}
a[class^="btnBase__item"]::before{
	content: "";
	width: 100%;
	height: 100%;
	border-radius: 50px;
	background: rgba(255, 255, 255, 0.1);
	transform-origin: center;
	transform: scaleX(0);
	position: absolute;
	left: 0;
	top: 0;
	transition: transform 0.3s;
}
a[class^="btnBase__item"]:hover::before{
	transform: scaleX(1);
}
a[class^="btnBase__item"]:last-of-type{
	margin: 0;
}
a[class^="btnBase__item"]:hover{
	opacity: 1.0;
}
.btnBase__item_rd{
	background-color: var(--rd);
}
.btnBase__item_bl{
	background-color: var(--bl);
}
.btnBase__item_em{
	background-color: var(--em);
}
@media screen and (max-width:812px){
	[class^="btnBase"]{
		display: block;
		padding: 25px 0 0;
	}
	a[class^="btnBase__item"]{
		width: 100%;
		max-width: 380px;
		padding: 20px;
		margin: 0 auto 10px auto;
		font-size: 1.6rem;
		box-shadow: 0 0 10px rgb(0 0 0 / 10%);
	}
	a[class^="btnBase__item"]::after{
		right:20px;
		margin:-2px 0 0 0;
	}
	a[class^="btnBase__item"]:last-of-type{
		margin: 0 auto;
	}
}

/* table */
.tblBase{
	width:100%;
	border-collapse:collapse;
	border-top:1px solid var(--wh);
	border-bottom:1px solid var(--wh);
}
.tblBase th,.tblBase td{
	padding:30px 0;
	font-size: 1.6rem;
	line-height:1.6;
	border-bottom:1px solid var(--wh);
}
.tblBase th{
	width:180px;
	font-size: 1.8rem;
	font-weight: var(--bold);
	color: var(--bl);
	text-align: left;
	vertical-align: top;
}
.tblBase__cts{
	margin-bottom: 40px;
}
.tblBase__cts:last-of-type{
	margin: 0;
}
[class^="tblBase__txt"]{
	width: 410px;
}
[class^="tblBase__ph"]{
	width: 200px;
	margin-left: 30px;
}
.tblBase__txt02{
	width: 310px;
}
.tblBase__ph02{
	width: 300px;
}
@media screen and (max-width:812px){
	.tblBase{
		width:100%;
		border-top:none;
	}
	.tblBase tr,.tblBase th,.tblBase td{
		display:block;
	}
	.tblBase th,.tblBase td{
		width:100%;
		font-size: 1.5rem;
	}
	.tblBase th{
		min-width:auto;
		padding:10px;
		font-size: 1.6rem;
		border-top:1px solid #bec6c6;
		border-bottom:none;
		text-align: center;
		background-color: var(--wh);
	}
	.tblBase td{
		padding:15px 0 25px 0;
		border-bottom:none;
	}
	.tblBase__cts{
		margin-bottom: 25px;
	}
	[class^="tblBase__txt"]{
		width: 100%;
	}
	[class^="tblBase__ph"]{
		width: 60%;
		max-width: 200px;
		margin: 15px auto 0;
	}
	.tblBase__txt02{
		width: 100%;
	}
	.tblBase__ph02{
		width: 100%;
		max-width: 250px;
	}
}

/* list */
.listBase{
	margin: -5px 0 0;
	position:relative;
}
[class^="listBase__item"]{
	padding:5px 0 0 18px;
	position: relative;
}
[class^="listBase__item"]::before {
	content:'●';
	font-size:1.2rem;
	color: var(--em);
	position:absolute;
	top: 8px;
	left:0;
}
.listBase__item_notes{
	padding:5px 0 0 20px;
	color: #f00;
}
.listBase__item_notes::before {
	content:'※';
	font-size:1.6rem;
	color: #f00;
	position:absolute;
	top: 5px;
	left:0;
}


/* フォント */
.ftRed{
	color: #F00;
}

/*
	header
-----------------------------------------------------------------------------------------------*/
#header{
	-ms-justify-content: space-between;
	justify-content: space-between;
	-ms-align-items: center;
	align-items: center;
	padding: 20px 30px;
	background-color: var(--wh);
	position: relative;
}
.header__logoNissei{
	display: block;
	width: 180px;
}
.header__logoLand{
	display: block;
	width: 220px;
}
@media screen and (max-width:812px){
	#header{
		padding: 15px 20px;
	}
	.header__logoNissei{
		width: 110px;
	}
	.header__logoLand{
		width: 150px;
	}
}


/*
	kv
-----------------------------------------------------------------------------------------------*/
#kv{
	position: relative;
	z-index: 10;
}
#kv::before{
	content: '';
	width: 100%;
	height: 119px;
	display: block;
	background: url("../images/about_bg.png") repeat-x top center / contain;
	position: absolute;
	bottom: -1px;
	left: 0;
}
.kv__area{
	max-width: 1200px;
	/*min-height: 711px;*/
	margin: 0 auto;
	padding: 30px 50px 130px;
	text-align: center;
	position: relative;
}
.kv__img{
	width: 44%;
}
[class^="kv__txt"]{
	position: absolute;
}
.kv__txt01{
	width: 17.5%;
	top: 17%;
	left: 13%;
}
.kv__txt02{
	width: 16%;
	top: 19.5%;
	right: 15%;
}
.kv__logo{
	width: 58%;
	margin: -23% auto 0;
	position: relative;
}
.kv__logo01{
	display: block;
	position: relative;
}
.kv__logo01::after{
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background: url("../images/kv_logo01_w.png") no-repeat top center;
	background-size: 100% auto;
	position: absolute;
	top: 0;
	left: 0;
}
/* rollUp */
@keyframes rollUp{
	0%  {height: 100%;}
	100%{height: 0%;}
}
.kv__logo01::after{
	animation: rollUp 5.5s ease 0.5s forwards;
	animation-delay: 4.2s;
}
.kv__logo03{
	display: block;
	width: 60.5%;
	position: absolute;
	top: 32%;
	left: 50%;
	transform: translateX(-50%);
}
.kv__bnr{
	width: 200px;
	position: absolute;
	right: 30px;
	bottom: 100px;
	filter: drop-shadow(0 0 10px rgba(0,0,0,.1));
}
@media screen and (max-width:812px){
	#kv::before{
		height: 40px;
		bottom: -5px;
	}
	.kv__area{
		width: 100%;
		max-width: 450px;
		min-height: 400px;
		padding: 20px 20px 100px;
	}
	.kv__img{
		width: 80%;
	}
	.kv__txt01{
		width: 25%;
		top: 33%;
		left: 1%;
	}
	.kv__txt02{
		width: 22%;
		top: 36%;
		right: 3%;
	}
	.kv__logo{
		width: 95%;
		margin: -20% auto 0;
	}
	.kv__bnr{
		width: 30%;
		max-width: 100px;
		right: 5px;
		bottom: -35px;
	}
}

#scroll{
	display: inline-block;
	position: absolute;
	left: 20px;
	bottom: 0;
	z-index: -1;
}
.scroll__txt{
	font-family: var(--num);
	font-size: 1.6rem;
	font-weight: var(--bold);
	color: var(--bl);
	transform: rotate(-90deg);
}
.scroll__bar{
	display: block;
	height: 160px;
	position: relative;
}
.scroll__bar::after{
	content: '';
	width: 1px;
	height: 130px;
	background-color: var(--bl);
	position: absolute;
	bottom: 0;
	left: 50%;
	animation: scrollDown 1.4s ease-in-out infinite;
}
@keyframes scrollDown {
	0% {
		transform: scale(1, 0);
		transform-origin: 0 0;
	}
	50% {
		transform: scale(1, 1);
		transform-origin: 0 0;
	}
	50.1% {
		transform: scale(1, 1);
		transform-origin: 0 100%;
	}
	100% {
		transform: scale(1, 0);
		transform-origin: 0 100%;
	}
}
@media screen and (max-width:812px){
	#scroll{
		left: 50%;
		transform: translateX(-50%);
	}
	.scroll__txt{
		font-size: 1.4rem;
		transform: rotate(0);
	}
	.scroll__bar{
		height: 60px;
	}
	.scroll__bar::after{
		height: 55px;
	}
}


/*
	about
-----------------------------------------------------------------------------------------------*/
#about{
	margin-bottom: 120px;
	background-color: var(--wh);
	position: relative;
}
#about::before,
#about::after{
	content: '';
	width: 100%;
	height: 119px;
	display: block;
	background: url("../images/about_bg.png") repeat-x top center / contain;
	position: absolute;
	left: 0;
}
#about::before{
	display: none;
	top: -118px;
}
#about::after{
	bottom: -118px;
	transform:rotate(180deg);
}
#about .ctsArea{
	padding: 40px 30px 60px;
}
.about__lead{
	display: block;
	width: 85%;
	margin: 0 auto;
}
.about__txtArea{
	position: relative;
	z-index: 1;
}
.about__txtAreaIn{
	padding: 80px 30px 60px;
}
.about__txtAreaIn .btnBase{
		display: none;
	}
.about__txt{
	font-size: 1.8rem;
	font-weight: var(--bold);
	text-align: center;
	line-height: 3.0;
}
[class^="about__illust"]{
	width: 26%;
	max-width: 360px;
	content: '';
	display: block;
	position: absolute;
	filter: drop-shadow(0 0 10px rgba(0,0,0,.1));
	z-index: -1;
}
.about__illust01{
	top: 8%;
	left: 0;
}
.about__illust02{
	right: 0;
	bottom: 3%;
}
[class^="about__txt_em"]{
	font-size: 2.3rem;
	color: var(--wh);
	line-height: 1.5;
}
.about__txt_em01{
	text-shadow:
		3px 3px 2px var(--bl), -3px -3px 2px var(--bl),
		-3px 3px 2px var(--bl),  3px -3px 2px var(--bl),
		3px 0px 2px var(--bl), -3px -0px 2px var(--bl),
		0px 3px 2px var(--bl),  0px -3px 2px var(--bl);
}
.about__txt_em02{
	text-shadow:
		3px 3px 2px var(--rd), -3px -3px 2px var(--rd),
		-3px 3px 2px var(--rd),  3px -3px 2px var(--rd),
		3px 0px 2px var(--rd), -3px -0px 2px var(--rd),
		0px 3px 2px var(--rd),  0px -3px 2px var(--rd);
}
.about__fukidahi{
	display: block;
	width: 13%;
	max-width: 180px;
	position: absolute;
	top: 17%;
	right: 12%;
	cursor: pointer;
	filter: drop-shadow(0 0 10px rgba(0,0,0,.1));
	z-index: 10;
}
@media screen and (max-width:812px){
	#about{
		margin-bottom: 40px;
	}
	#about::before,
	#about::after{
		height: 40px;
	}
	#about::before{
		top: -35px;
	}
	#about::after{
		bottom: -35px;
	}
	#about .ctsArea{
		padding: 40px 20px;
	}
	.about__lead{
		width: 100%;
		max-width: 450px;
	}
	.about__txtArea::before{
		content: '';
		display: block;
		width: 100%;
		height: 100%;
		background-color: rgba(255,255,255,.6);
		position: absolute;
		top: 0;
		left: 0;
	}
	.about__txtAreaIn{
		padding: 40px 20px;
	}
	.about__txtAreaIn .btnBase{
			display: block;
	}
	.about__txt{
		max-width: 450px;
		margin: 0 auto;
		font-size: 1.6rem;
		line-height: 2.0;
		text-align: left;
	}
	[class^="about__illust"]{
		width: 40%;
		max-width: 180px;
	}
	.about__illust01{
		top: 5%;
	}
	.about__illust02{
		bottom: 3%;
	}
	[class^="about__txt_em"]{
		padding: 0 5px;
		font-size: 1.7rem;
	}
	.about__fukidahi{
		display: none;
	}
}

.schedule{
	padding: 15px;
	text-align: center;
	background-color: #f00;
}
.schedule__txtArea{
	-ms-justify-content: center;
	justify-content: center;
	-ms-align-items: center;
	align-items: center;
	color: var(--wh);
	font-weight: var(--bold);
}
.schedule__tit{
	display: inline-block;
	width: 100px;
	padding: 10px;
	font-size: 1.6rem;
	color: var(--bl);
	background-color: var(--wh);
	border-radius: 18px;
	line-height: 1.0;
}
.schedule__txt{
	-ms-align-items: center;
	align-items: center;
	font-size: 5.0rem;
}
.schedule__txt span{
	font-size: 3.8rem;
}
.schedule__num{
	font-family: var(--num);
	margin: 0 10px;
	font-size: 6.5rem;
	line-height: 1;
}
[class^="schedule__yobi"]{
	-ms-justify-content: center;
	justify-content: center;
	-ms-align-items: center;
	align-items: center;
	width: 40px;
	height: 40px;
	font-size: 2.0rem;
	border-radius: 50%;
}
.schedule__yobi01{
	background-color: var(--em);
}
.schedule__yobi02{
	background-color: var(--rd);
}
.schedule__notes{
	margin-top: 5px;
	font-size: 1.6rem;
	color: var(--wh);
	font-weight: var(--bold);
}
@media screen and (max-width:812px){
	.schedule__titArea{
		width: 100%;
		margin-bottom: 8px;
	}
	.schedule__tit{
		padding: 6px;
		font-size: 1.4rem;
	}
	.schedule__txt{
		font-size: 3.5rem;
		line-height: 1.2;
	}
	.schedule__txt span{
		font-size: 2.5rem;
	}
	.schedule__num{
		margin: 0 6px;
		font-size: 3.8rem;
	}
	[class^="schedule__yobi"]{
		width: 25px;
		height: 25px;
		font-size: 1.2rem;
	}
	.schedule__notes{
		font-size: 1.3rem;}
	}

#present{
	margin-top: 180px;
	padding: 60px 60px 40px;
	background-color: #fce5df;
	background-image:
		radial-gradient(rgba(255,255,255,.4) 20%, transparent 20%),
		radial-gradient(rgba(255,255,255,.4) 20%, transparent 20%);
	background-size: 20px 20px;
	background-position: 0 0, 10px 10px;
	border-radius: 50px;
	position: relative;
}
#present::before,
#present::after{
	content: '';
	display: block;
	position: absolute;
	bottom: 60px;
	z-index: 1;
}
#present::before{
	width: 129px;
	height: 159px;
	background: url("../images/present_chara01.png") no-repeat top center / cover;
	left: -60px;
}
#present::after{
	width: 125px;
	height: 160px;
	background: url("../images/present_chara02.png") no-repeat top center / cover;
	right: -60px;
}
.present__tit{
	margin-top: -100px;
	text-align: center;
	position: relative;
	z-index: 10;
}
.present__tit::before{
	content: '';
	width: 147px;
	height: 98px;
	display: block;
	background: url("../images/present_ico.svg") no-repeat top center / cover;
	position: absolute;
	top: -98px;
	left: 50%;
	transform: translateX(-50%);
	z-index: -1;
}
.present__tit_in{
	display: inline-block;
	padding: 5px 30px;
	font-size: 2.6rem;
	color: var(--wh);
	font-weight: var(--bold);
	background-color: var(--rd);
	border-radius: 10px;
	line-height: 1.2;
	border: 4px solid var(--wh);
	position: relative;
}
.present__tit_in::before,
.present__tit_in::after{
	content: '';
	width: 85px;
	height: 80px;
	background: url("../images/present_flag.svg") no-repeat top center / cover;
	position: absolute;
	bottom: -20px;
	z-index: -1;
}
.present__tit_in::before{
	left: -45px;
}
.present__tit_in::after{
	right: -45px;
	transform: rotate(180deg);
}
.present__tit_num{
	padding: 0 5px;
	font-family: var(--num);
	font-size: 6.0rem;
}
.present__tit_em{
	font-size: 5.0rem;
}
@media screen and (max-width:812px){
	#present{
		margin-top: 130px;
		padding: 20px 20px 30px;
		border-radius: 20px;
		position: relative;
		z-index: 10;
	}
	#present::before,
	#present::after{
		bottom: 30px;
		z-index: 10;
	}
	#present::before{
		width: 80px;
		height: 99px;
		left: -18px;
	}
	#present::after{
		width: 77px;
		height: 100px;
		right: -18px;
	}
	.present__tit{
		margin-top: -70px;
	}
	.present__tit::before{
		width: 80px;
		height: 53px;
		top: -55px;
	}
	.present__tit_in{
		padding: 5px 20px 10px;
		font-size: 1.8rem;
		border: 2px solid var(--wh);
	}
	.present__tit_in::before,
	.present__tit_in::after{
		bottom: -15px;
	}
	.present__tit_in::before{
		left: -35px;
	}
	.present__tit_in::after{
		right: -35px;
	}
	.present__tit_num{
		font-size: 3.5rem;
	}
	.present__tit_em{
		font-size: 2.6rem;
	}
}

.class{
	-ms-justify-content: center;
	justify-content: center;
	margin-top: 50px;
}
.class__item{
	-ms-justify-content: center;
	justify-content: center;
	-ms-align-items: center;
	align-items: center;
	-ms-align-content: center;
	align-content: center;
	width: 170px;
	height: 170px;
	margin-right: 20px;
	font-size: 2.2rem;
	font-weight: var(--bold);
	text-align: center;
	background-color: var(--wh);
	line-height: 1.3;
}
.class__item span{
	font-size: 1.8rem;
}
.class__item:nth-of-type(1){
	border: 6px solid var(--em);
	border-radius: 93px 46px 46px 46px;
}
.class__item:nth-of-type(2){
	border: 6px solid var(--rd);
	border-radius: 70px;
}
.class__item:nth-of-type(3){
	border: 6px solid var(--yl);
	border-radius: 47px 34px 65px 34px;
}
.class__item:nth-of-type(4){
	border: 6px solid var(--bl);
	border-radius: 54px 82px 54px 82px;
}
@media screen and (max-width:812px){
	.class{
		max-width: 500px;
		-ms-justify-content: space-between;
		justify-content: space-between;
		margin: 30px auto 0;
	}
	.class__item{
		width: calc((100% - 10px)/2);
		height: auto;
		margin: 0 0 10px;
		padding: 20px;
		font-size: 1.6rem;
	}
	.class__item span{
		width: 100%;
		font-size: 1.3rem;
	}
}

.prize{
	margin-top: 30px;
}
.prize__item{
	width: calc(100%/3);
	padding: 15px 0;
	text-align: center;
	background: url("../images/present_prize_bg.png") no-repeat center center;
	background-size: 90%;
	position: relative;
}
.prize__item::before,
.prize__item::after{
	content:' ';
	display:block;
	width:10px;
	height:50px;
	background-color: #999;
	position: absolute;
	top: 102px;
	right: -5px;
	z-index: 1;
}
.prize__item::after{
	transform: rotate(90deg);
}
.prize__item:last-of-type::before,
.prize__item:last-of-type::after{
	display: none;
}
.prize__ph{
	width: auto;
	height: 180px;
	margin: 0 auto;
	position: relative;
	z-index: 10;
}
.prize__tit{
	margin-top: 10px;
	font-size: 2.0rem;
	font-weight: var(--bold);
}
.prize__ph img{
	width: auto;
	height: 100%;
	filter: drop-shadow(0 0 10px rgba(0,0,0,.1));
}
@media screen and (max-width:812px){
	.prize{
		margin-top: 15px;
	}
	.prize__item{
		width: 100%;
		padding: 0;
		margin: 0;
		background-size: contain;
	}
	.prize__item{
		margin: 0 0 55px;
	}
	.prize__item:last-of-type{
		margin: 0 0 0;
	}
	.prize__item::before,
	.prize__item::after{
		width:8px;
		height:40px;
		top: auto;
		right: 48%;
		bottom: -50px;
	}
	.prize__ph{
		width: 100%;
		max-width: 350px;
		height: auto;
	}
	.prize__tit{
		font-size: 1.8rem;
	}
	.prize__ph img{
		width: 80%;
		max-width: 400px;
		height: auto;
	}
}


/*
	概要
-----------------------------------------------------------------------------------------------*/
.apply__area{
	margin-bottom: 80px;
}
.apply__area:last-of-type{
	margin-bottom: 0;
}
.apply__tit{
	margin-bottom: 30px;
	text-align: center;
}
[class^="apply__tit_txt"]{
	display: inline-block;
	padding: 0 20px;
	font-size: 4.5rem;
	font-weight: var(--bold);
	line-height: 1.0;
	position: relative;
}
[class^="apply__tit_txt"]::before,
[class^="apply__tit_txt"]::after{
	content: '';
	width: 13px;
	height: 100%;
	position: absolute;
	bottom: 0;
}
[class^="apply__tit_txt"]::before{
	left: -30px;
	transform: rotate(-45deg);
}
[class^="apply__tit_txt"]::after{
	right: -30px;
	transform: rotate(225deg);
}
.apply__tit_txt01::before{
	background: url("../images/pattern_nami_bl.png") repeat-x center center / cover;
}
.apply__tit_txt01::after{
	background: url("../images/pattern_nami_yl.png") repeat-x center center / cover;
}
.apply__tit_txt02::before{
	background: url("../images/pattern_nami_rd.png") repeat-x center center / cover;
}
.apply__tit_txt02::after{
	background: url("../images/pattern_nami_em.png") repeat-x center center / cover;
}
.apply__tit_en{
	display: block;
	font-family: var(--en);
	font-size: 3.0rem;
	color: var(--gry);
}
.apply__box{
	padding: 60px;
	border-radius: 50px;
	background-color: #e0f2f9;
	position: relative;
}
@media screen and (max-width:812px){
	.apply__area{
		margin-bottom: 40px;
	}
	.apply__tit{
		margin-bottom: 20px;
	}
	[class^="apply__tit_txt"]{
		padding: 0 15px;
		font-size: 2.8rem;
		line-height: 1.2;
	}
	.apply__tit_en{
		font-size: 2.0rem;
	}
	.apply__box{
		padding: 30px 20px;
		border-radius: 20px;
	}
}

/*応募方法*/
#entry.apply__box{
	background-image: linear-gradient(#f6f6f6 1px, transparent 0),linear-gradient(90deg, #f6f6f6 1px, transparent 0);
	background-size: 15px 15px;
}
.entry__txtArea{
	position: relative;
	z-index: 1;
}
[class^="entry__em"]{
	display: inline-block;
	margin-bottom: 10px;
	padding: 10px;
	font-size: 3.0rem;
	color: var(--wh);
	font-weight: var(--bold);
	line-height: 1.0;
	filter: drop-shadow(4px 4px 0 rgba(0,0,0,.1));
}
.entry__em_bl{
	background-color: var(--bl);
}
.entry__em_rd{
	background-color: var(--rd);
}
.entry__em_em{
	background-color: var(--em);
}
.entry__em_yl{
	background-color: var(--yl);
}
.entry__txt{
	padding-top: 15px;
	font-size: 1.6rem;
	font-weight: var(--bold);
	line-height: 2.0;
}
.entry__ph{
	width: 37%;
	position: absolute;
	top: 60px;
	right: 60px;
	filter: drop-shadow(0 0 10px rgba(0,0,0,.1));
}
@media screen and (max-width:812px){
	.entry__tit{
		text-align: center;
	}
	[class^="entry__em"]{
		margin-bottom: 8px;
		padding: 10px 8px;
		font-size: 1.7rem;
	}
	.entry__txt{
		padding-top: 5px;
		font-size: 1.5rem;
	}
	.entry__ph{
		width: 60%;
		max-width: 220px;
		margin: 15px auto 0 ;
		position: static;
	}
}


/*
	優秀賞作品発表
-----------------------------------------------------------------------------------------------*/
#award{
	background: url("../images/bg_award.png") repeat center center;
	position: relative;
}
[class^="award__illust"]{
	width: 22%;
	max-width: 360px;
	content: '';
	display: block;
	position: absolute;
	top: -70px;
}
.award__illust01{
	left: 0;
}
.award__illust02{
	right: 0;
}
.award__tit{
	margin-bottom: 50px;
}
@media screen and (max-width:812px){
	[class^="award__illust"]{
		width: 30%;
		max-width: 360px;
		content: '';
		display: block;
		position: absolute;
		top: -25px;
	}
	.award__tit{
		margin-bottom: 20px;
	}
}

.anker__list{
	-ms-justify-content: space-between;
	justify-content: space-between;
	margin-bottom: 60px;
}
.anker__item{
	width: calc((100% - 60px)/4);
}
[class^="anker__btn"]{
	display: block;
	padding: 20px 20px 40px;
	font-size: 1.8rem;
	font-weight: var(--bold);
	text-align: center;
	background-color: var(--wh);
	border-radius: 10px;
	position: relative;
}
[class^="anker__btn"]::before{
	content: "";
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	position: absolute;
	left: 50%;
	bottom: 12px;
	transform: translateX(-50%);
}
.anker__btn01{
	border: 6px solid var(--em);
}
.anker__btn01::before{
	border-top: 10px solid var(--em);
}
.anker__btn02{
	border: 6px solid var(--rd);
}
.anker__btn02::before{
	border-top: 10px solid var(--rd);
}
.anker__btn03{
	border: 6px solid var(--yl);
}
.anker__btn03::before{
	border-top: 10px solid var(--yl);
}
.anker__btn04{
	border: 6px solid var(--bl);
}
.anker__btn04::before{
	border-top: 10px solid var(--bl);
}
@media screen and (max-width:812px){
	.anker__list{
		margin-bottom: 20px;
	}
	.anker__item{
		width: calc((100% - 10px)/2);
		margin-bottom: 10px;
	}
	[class^="anker__btn"]{
		display: block;
		padding: 10px 10px 20px;
		font-size: 1.4rem;
		border-width: 4px;
	}
	[class^="anker__btn"]::before{
		border-left: 8px solid transparent;
		border-right: 8px solid transparent;
		border-top-width: 8px;
		bottom: 5px;
	}
}

.award__area{
	margin-bottom: 80px;
}
.award__area:last-of-type{
	margin-bottom: 0;
}
.award__groupTit{
	width: 550px;
	margin: 0 auto 30px;
}
@media screen and (max-width:812px){
	.award__area{
		margin-bottom: 40px;
	}
	.award__groupTit{
		width: 100%;
		margin: 0 auto 20px;
	}
}

.awardList{
	-ms-justify-content: center;
	justify-content: center;
}
.awardList__item{
	width: calc((100% - 40px)/3);
	margin: 0 20px 0 0;
	text-align: center;
	position: relative;
}
.awardList__item:last-of-type{
	margin: 0;
}
.awardList__item::before {
	content: "";
	width: 75px;
	height: 88px;
	background: url("../images/ico_award.png") no-repeat center center /cover;
	position: absolute;
	top: -15px;
	left: -15px;
	z-index: 10;
}
.awardList_pic{
	border: 6px solid var(--wh);
	filter: drop-shadow(0 0 10px rgba(0,0,0,.1));
	position: relative;
}
.awardList_pic::before {
	content: '';
	width: 25px;
	height: 25px;
	background: url(../images/ico_zoom.svg) no-repeat;
	position: absolute;
	right: 8px;
	bottom: 8px;
}
.awardList__tit{
	margin: 15px auto 20px;
	font-size: 2.2rem;
	font-weight: var(--bold);
	text-align: center;
	color: #1f2e5a;
	line-height: 1.2;
}
.awardList__name{
	margin: 0 auto;
	padding: 15px;
	font-size: 2.0rem;
	font-weight: var(--bold);
	text-align: center;
	background-color: rgba(255,255,255,0.7);
	border-radius: 10px;
}
.awardList__name span{
	font-size: 1.5rem;
}
@media screen and (max-width:812px){
.awardList{
	-ms-justify-content: center;
	justify-content: center;
}
	.awardList__item{
		width: calc((100% - 15px)/2);
		margin: 0 15px 20px 0;
	}
	.awardList__item:nth-of-type(2n){
		margin: 0 0 20px 0;
	}
	.awardList__item:last-of-type{
		margin: 0;
	}
	.awardList__item::before {
		width: 45px;
		height: 54px;
		top: -10px;
		left: -10px;
	}
	.awardList_pic{
		border: 4px solid var(--wh);
	}
	.awardList_pic::before {
		width: 18px;
		height: 18px;
		right: 5px;
		bottom: 5px;
	}
	.awardList__tit{
		margin: 10px auto;
		font-size: 1.8rem;
	}
	.awardList__name{
		padding: 10px;
		font-size: 1.6rem;
		border-radius: 5px;
	}
	.awardList__name span{
		font-size: 1.3rem;
	}
}

#greeting{
	width: 75%;
	margin: 80px auto 0;
}
@media screen and (max-width:812px){
	#greeting{
		width: 90%;
		max-width: 380px;
		margin: 25px auto 0;
	}
}


/*
	pageTop
-----------------------------------------------------------------------------------------------*/
.pageTop{
	-ms-justify-content: center;
	justify-content: center;
	-ms-align-items: center;
	align-items: center;
	width:80px;
	height:80px;
	margin: 0 0 30px 0;
	background-color: var(--bl);
	border-radius: 50%;
	filter: drop-shadow(0 0 10px rgba(0,0,0,.1));
	position: absolute;
	right: 30px;
	z-index: 99;
}
.pageTop::after{
	content:' ';
	display:block;
	width:12px;
	height:12px;
	border-top: 3px solid var(--wh);
	border-left: 3px solid var(--wh);
	transform:rotate(45deg);
}
@media screen and (max-width:812px){
	.pageTop{
		width:60px;
		height:60px;
		margin: 0 0 15px 0;
		right: 15px;
	}
	.pageTop::after{
		width:10px;
		height:10px;
	}
}


/*
	footer
-----------------------------------------------------------------------------------------------*/
#footer{
	padding: 30px;
	background-color: var(--wh);
}
.footer__top{
	-ms-justify-content: space-between;
	justify-content: space-between;
	-ms-align-items: center;
	align-items: center;
	margin: 0 0 15px;
}
.footer__btm{
	-ms-justify-content: space-between;
	justify-content: space-between;
	-ms-align-items: center;
	align-items: center;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}
a.footer__txtLink{
	padding: 0 0 0 20px;
	position: relative;
}
.footer__txtLink::before{
	content: "";
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background: var(--bk);
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
}
.footer__txtLink::after{
	content: "";
	width: 4px;
	height: 4px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	position: absolute;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	left: 5px;
}
.footer__copyright{
	font-size: 1.2rem;
}
@media screen and (max-width:812px){
	#footer{
		padding: 15px 20px;
		text-align: center;
	}
	.footer__top{
		display: block;
		margin: 0 0 15px;
	}
	.footer__btm{
		display: block;
	}
	a.footer__txtLink{
		display: inline-block;
		margin: 10px 0 0;
	}
	.footer__copyright{
		margin: 10px 0 0;
	}
}

#footer__list li{
	margin: 0 15px 0 0;
	padding: 0 20px 0 0;
	font-size: 1.3rem;
	position: relative;
}
#footer__list li:last-of-type{
	margin: 0 0 0 0;
	padding: 0 0 0 0;
}
#footer__list li::after{
	content:'|';
	position: absolute;
	right: 0;
}
#footer__list li a{
	text-decoration: underline;
}
#footer__list li a:hover{
	opacity: 1.0;
	text-decoration: none;
}
#footer__list li:last-of-type::after{
	content:none;
}
@media screen and (max-width:812px){
	#footer__list{
		-ms-justify-content: center;
		justify-content: center;
	}
}