@charset "UTF-8";









/*――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――

リセット

――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――*/
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
RESET_start
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
*{
	margin: 0;
	padding: 0;
	line-height: 100%;
	list-style-type: none;
}

h1,h2,h3,h4,h5,h6,
div,p,
span,em,strong,
ul,ol,li,
dl,dt,dd,
a{
	background-repeat: no-repeat;
	background-size: 100% auto;
}

a{
	outline: none;
}

img {
	vertical-align: bottom;
}

.pc{
	display: none!important;
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
RESET_end
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/









/*――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――

共通処理

――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――*/
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
COMMON_start
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
body{
	background-image: url(../svg/bg_script.svg);
	background-size: 200px auto;
	background-attachment: fixed;
	background-position: right top;
	background-repeat: no-repeat;
	background-color: #f0eee4;
	color: #174a55;
	font-family: "IBM Plex Sans JP", sans-serif;
	font-weight: 500;
	font-style: normal;
	-webkit-font-smoothing: antialiased;
	letter-spacing: 0.065em;
	line-height: 1.65em;
	word-break: break-word;
}



/*
画面全体処理
*/
#grandwrapper {
	width: 100%;
	overflow: hidden;
}



/*
汎用ボタン
*/



/*
言語切替
*/
.language {
}



/*
汎用アニメーション
*/
/*一括指定*/
.wp_t_a,
.wp_t_b,
.wp_t_c,
.wp_t_d {
	animation-timing-function: cubic-bezier(.42,0,0,.99);
	animation-direction: normal;
	animation-fill-mode: forwards;
	animation-play-state: running;
	animation-iteration-count: inherit;
}

/*トグルタイプ*/
.wp_t_a_toggle {
	opacity: 0;
	transition-duration: 600ms;
	transition-property: all;
	transition-timing-function: cubic-bezier(.42,0,0,.99);
	transition-delay: 0ms;
	transform-origin: center;
}
.wp_t_a_toggle_active {
	opacity: 1;
}

/*通過タイプ*/
.wp_t_a {
	opacity: 0;
	animation-duration: 800ms;
}
.wp_t_a_active {
	animation-name: anime_wp_t_a;
}
@keyframes anime_wp_t_a {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}
	100%{
		opacity: 1;
		transform: translateY(0px);
	}
}

/*通過タイプ*/
.wp_t_b {
	opacity: 0;
	animation-duration: 800ms;
}
.wp_t_b_active {
	animation-name: anime_wp_t_b;
}
@keyframes anime_wp_t_b {
	0% {
		opacity: 0;
		transform: translateY(-20px);
	}
	100%{
		opacity: 1;
		transform: translateY(0px);
	}
}

/*通過タイプ*/
.wp_t_c {
	opacity: 0;
	animation-duration: 800ms;
}
.wp_t_c_active {
	animation-name: anime_wp_t_c;
}
@keyframes anime_wp_t_c {
	0% {
		opacity: 0;
		transform: translateX(-20px);
	}
	100%{
		opacity: 1;
		transform: translateX(0px);
	}
}

/*通過タイプ*/
.wp_t_d {
	opacity: 0;
	animation-duration: 800ms;
}
.wp_t_d_active {
	animation-name: anime_wp_t_d;
}
@keyframes anime_wp_t_d {
	0% {
		opacity: 0;
		transform: translateX(20px);
	}
	100%{
		opacity: 1;
		transform: translateX(0px);
	}
}



/*
flexの末尾調整用
*/
.emptyflexbox {
	background-color: transparent !important;
	height: 0 !important;
	min-height: 0 !important;
	padding-top: 0 !important;
	padding-bottom: 0 !important;
	margin-top: 0 !important;
	margin-bottom: 0 !important;
	border: none !important;
}
.emptyflexbox::before,
.emptyflexbox::after {
	display: none !important;
}



/*
magnificPopup
*/
/*フェードアニメーション初期設定*/
.mfp-fade.mfp-bg {
	opacity: 0;
	-webkit-transition: all .3s ease-out;
	-moz-transition: all .3s ease-out;
	transition: all .3s ease-out;
}
.mfp-fade.mfp-bg.mfp-ready {
	opacity: .8;
}
.mfp-fade.mfp-bg.mfp-removing {
	opacity: 0;
}
.mfp-fade.mfp-wrap .mfp-content {
	opacity: 0;
	-webkit-transition: all .3s ease-out;
	-moz-transition: all .3s ease-out;
	transition: all .3s ease-out;
}
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
	opacity: 1;
	width: 1000px;
}
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
	opacity: 0;
}
/*ギャラリーモードUI*/
.mfp-arrow-right:after {
    border-left: 17px solid #00ccff !important;
}
.mfp-arrow-right:before {
	border-left: transparent !important;
}
.mfp-arrow-left:after {
    border-right: 17px solid #00ccff !important;
}
.mfp-arrow-left:before {
	border-right: transparent !important;
}
.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
	font-size: 40px;
	color: #00ccff !important;
}
.mfp-counter {
	color: #00ccff !important;
}



/*
カルーセル：メイン
*/
/*アロー*/
.swiper-button-next:after,
.swiper-button-prev:after {
	background-size: 100% auto;
	background-repeat: no-repeat;
	background-position: center center;
	font-size: 0 !important;
	width: 50px;
	height: 100px;
}
.swiper-button-next:after {
	background-image: url(../svg/arrow_carousel_r.svg);
}
.swiper-button-prev:after {
	background-image: url(../svg/arrow_carousel_l.svg);
}

/*ページネーション*/
.swiper-pagination-bullet {
	border-radius: inherit !important;
	width: 40px !important;
	height: 6px !important;
}
.swiper-pagination-bullet-active {
	background-color: #6642f4 !important;
}



/*
追加文字スタイル
*/
.plsm {
	letter-spacing: 0em;
}
.sizel_1 {
	font-size: 0.9em;
}
.sizel_2 {
	font-size: 0.8em;
}
.sizel_3 {
	font-size: 0.7em;
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
COMMON_end
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/









/*――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――

ローディング

――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――*/
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
LOADING_start
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
#loading{
	z-index: 999;
	background-color: #e9e7f3;
	box-sizing: border-box;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition-duration: 1000ms;
	transition-property: all;
	transition-timing-function: cubic-bezier(.42,0,0,.99);
	transition-delay: 0ms;
	transform-origin: bottom;
}



/*
SVG格納要素指定
*/
#loading > div {
	opacity: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -90px 0 0 -90px;
	display: inline-block;
	width: 180px;
	height: 180px;
	transition-duration: 600ms;
	transition-property: all;
	transition-timing-function: cubic-bezier(.42,0,0,.99);
	transition-delay: 0ms;
	transform-origin: center;
}

/*SVGオブジェクト全体のサイズ*/
#loading > div svg {
    width: 100%;
    height: 100%;
}

/*シンボル*/
#loading > div svg .load_logo {
	fill: #B5A9F4;
}

/*テキスト*/
#loading > div svg .load_text {
	fill: #27197C;
}

/*アニメーション用汎用設定*/
#loading > div svg .load_logo {
	animation-duration: 6000ms;
	animation-delay: 0;
	animation-timing-function: linear;
	animation-direction: normal;
	animation-fill-mode: forwards;
	animation-play-state: running;
	animation-iteration-count: infinite;
}



/*
ロード中演出
*/
#loading.start > div {
	opacity: 1;
	transform: scale(1);
}

#loading.start > div svg .load_logo {
	animation-name: common_anime_startloading;
}

@keyframes common_anime_startloading {
	0% {
		opacity: 1;
	}
	50% {
		opacity: 0.2;
	}
	100%{
		opacity: 1;
	}
}



/*
フェードアウト演出
*/
#loading.remove > div {
	opacity: 0;
	transform: scale(0);
	animation-name: common_anime_removeloading;
}
@keyframes common_anime_removeloading {
	0% {
		opacity: 1;
		transform: scale(1);
	}
	100%{
		opacity: 0;
		transform: scale(0);
	}
}



/*
削除
*/
/*アニメーション停止*/
#loading.remove > div,
#loading.destroy > div svg .load_logo {
	animation-name: none;
}
/*不可視化・クリック非対象に*/
#loading.destroy{
	opacity: 0;
	pointer-events: none;
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　LOADING_end
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/







/*――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――

フッター

――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――*/
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
footer_start
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
#grandfooter {
	position: relative;
	margin: 150px 0 0 0;
}



/*
ロゴ
*/
#grandfooter .symbol h2 {
	position: absolute;
	top: -80px;
	left: 50%;
	margin: 0 0 0 -47.5px;
	background-image: url(../images/logo_soyogifractal_symbol2l.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% auto;
	width: 95px;
	height: 104.5px;
	text-indent: -9999px;
}



/*
ディープリンク
*/
#grandfooter .deeplinks {
	background-image: url(../images/sp_footer_bg.png);
	background-position: top center;
	background-size: auto 600px;
	background-repeat: repeat-x;
	width: 100%;
	padding: 100px 0 30px 0;
}

#grandfooter .deeplinks ul {}

#grandfooter .deeplinks ul li {
	text-align: center;
	margin: 30px 0 0;
}

#grandfooter .deeplinks ul li a {
	color: #ffffff;
	text-decoration: none;
	font-size: 20px;
	font-family: "Chakra Petch", sans-serif;
	font-weight: 500;
	font-style: normal;
}



/*
権利表記
*/
#grandfooter .copyright {
	background-color: #1b1d24;
	color: #787487;
	font-size: 13px;
	text-align: center;
	padding: 50px 0;
}



/*
ページの先頭に戻る
*/
#grandfooter .btt {
	position: absolute;
	bottom: 45px;
	right: 20px;
}

#grandfooter .btt a {
	display: block;
	background-image: url(../svg/arrow_btt.svg);
	background-position: center 20px;
	background-size: 15px auto;
	background-color: #ffffff;
	color: #1b1d24;
	padding: 40px 15px 15px 15px;
	font-size: 12px;
	text-decoration: none;
	writing-mode: vertical-rl;
	border: 1px #dad8e6 solid;
	border-radius: 100px;
	transition-duration: 600ms;
	transition-property: all;
	transition-timing-function: cubic-bezier(.42,0,0,.99);
	transition-delay: 0ms;
	transform-origin: center;
}
#grandfooter .btt a:hover {
	background-position: center 20px;
	color: #6642f4;
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
footer_end
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/







/*――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――

コーディング用

――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――*/
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
コーディング用_start
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
/*
body::after {
	opacity: 0.5;
	z-index: -1;
	content: "";
	display: block;
	position: absolute;
	top: 70px;
	left: 0;
	background-image: url(../../PC_そよぎコン_トップ.png);
	background-position: top center;
	background-repeat: no-repeat;
	width: 100%;
	height: 17500px;
}
*/
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
コーディング用_end
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/









/*――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――

トップページ

――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――*/
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
トップページ：汎用_start
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
/*
汎用ボックス：通常
*/
.set_normal {
	margin: 0 0 100px 0;
}

/*見出し*/
.set_normal .subtitle {
	position: relative;
	text-align: center;
	margin: 0 0 40px 0;
	padding: 0 0 20px 0;
}
.set_normal .subtitle h2 {
	width: 140%;
	margin: 0 0 15px 0;
	font-size: 36px;
	font-family: "Zen Old Mincho", serif;
	font-weight: 900;
	font-style: normal;
	line-height: 1.2em;
	transform-origin: center;
	transform: scaleX(0.6) translateX(-23.4%);
}
.set_normal .subtitle p {
	font-size: 10px;
	font-family: "Chakra Petch", sans-serif;
	font-weight: 700;
	font-style: normal;
	letter-spacing: 0.065em;
}
.set_normal .subtitle::after {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 50%;
	background-image: url(../svg/icon_hr_subtitle.svg);
	width: 40px;
	height: 3px;
	margin: 0 0 0 -20px;
}

/*リード文*/
.set_normal .read {
	box-sizing: border-box;
	width: 100%;
	margin: 0 auto 40px auto;
	padding: 0 20px;
}
.set_normal .read p {
	margin: 0 0 1em 0;
	font-size: 14px;
	letter-spacing: 0.035em;
	line-height: 1.65em;
	text-align: justify;
}



/*
汎用ボックス：部門ごとの説明
*/
.set_categories {
	background-color: #ffffff;
	background-position: -60px 30px;
	background-size: 300px auto;
	background-repeat: no-repeat;
	background-attachment: fixed;
	margin: 60px auto;
	padding: 30px 0;
	border-top: 10px #f0eee4 solid;
	border-bottom: 10px #f0eee4 solid;
	box-shadow: 0 0 10px rgba(2, 14, 33, 0.3);
}
.set_categories > div {
	width: 100%;
	margin: 0 auto 40px auto;
}
.set_categories#illustcategories {
	background-image: url(../svg/bg_illust.svg);
}
.set_categories#talkcategories {
	background-image: url(../svg/bg_talk.svg);
}
.set_categories#songcategories {
	background-image: url(../svg/bg_song.svg);
}



/*
汎用ボックス：部門ごとの説明：見出し
*/
.set_categories .subtitle {
	position: relative;
	text-align: center;
	margin: 0 auto 40px auto;
	padding: 70px 0 0 0;
}
.set_categories .subtitle h2 {
	width: 140%;
	margin: 0 0 15px 0;
	font-size: 35px;
	font-family: "Zen Old Mincho", serif;
	font-weight: 900;
	font-style: normal;
	line-height: 1.2em;
	transform-origin: center;
	transform: scaleX(0.6) translateX(-23.4%);
}
.set_categories .subtitle p {
	color: #8fb4bc;
	font-size: 10px;
	font-family: "Chakra Petch", sans-serif;
	font-weight: 700;
	font-style: normal;
	letter-spacing: 0.065em;
}
.set_categories .subtitle::after {
	content: "";
	display: block;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100% auto;
	position: absolute;
	top: 0;
	left: 50%;
	width: 70px;
	height: 70px;
	margin: 0 0 0 -35px;
}
#illustcategories.set_categories .subtitle::after {
	background-image: url(../svg/icon_illust.svg);
}
#talkcategories.set_categories .subtitle::after {
	background-image: url(../svg/icon_talk.svg);
}
#songcategories.set_categories .subtitle::after {
	background-image: url(../svg/icon_song.svg);
}



/*
汎用ボックス：部門ごとの説明：小見出し
*/
.set_categories > div > h3 {
	position: relative;
	width: 93%;
	margin: 0 auto 15px auto;
	padding: 0 0 10px 0;
}
.set_categories > div > h3 span {
	display: block;
	width: 140%;
	margin: 0 0 0 19.4%;
	font-size: 20px;
	font-family: "Zen Old Mincho", serif;
	font-weight: 900;
	font-style: normal;
	line-height: 1.2em;
	transform-origin: left;
	transform: scaleX(0.6) translateX(-23.4%);
}
.set_categories > div > h3::before {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	background-color: #8fb4bc;
	width: 100%;
	height: 2px;
	border-radius: 100px;
}



/*
汎用ボックス：部門ごとの説明：賞金
*/
.set_categories .prize {}
.set_categories .prize > ul > li {
	width: 93%;
	margin: 0 auto 20px auto;
}
.set_categories .prize > ul > li > .title {
	z-index: 2;
	position: relative;
	background-size: 180px auto;
	background-position: center top;
	text-align: center;
}
.set_categories .prize > ul > li > .title h4,
.set_categories .prize > ul > li > .title h5,
.set_categories .prize > ul > li > .title p strong {
	display: block;
	width: 140%;
	font-family: "Zen Old Mincho", serif;
	font-weight: 900;
	font-style: normal;
	line-height: 1.2em;
	transform-origin: center;
	transform: scaleX(0.6) translateX(-23.4%);
}
.set_categories .prize > ul > li > .title h5 {
	font-size: 20px;
}
.set_categories .prize > ul > li > .title h4 {
	font-size: 35px;
}
.set_categories .prize > ul > li > .title p {
	display: inline-block;
	background-color: #ffffff;
	min-width: 80px;
	margin: 6px 0 0 0;
	padding: 0px 0;
	font-size: 18px;
	line-height: 1em;
	border-radius: 100px;
}

/*賞金詳細*/
.set_categories .prize > ul > li > .detail {
	z-index: 1;
	position: relative;
	top: -10px;
	box-sizing: border-box;
	background-color: #ffffff;
	padding: 10px 20px;
	border-radius: 10px;
}
.set_categories .prize > ul > li > .detail > div {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0px auto 10px auto;
	text-align: center;
}
.set_categories .prize > ul > li > .detail > div strong {
	display: inline-block;
	font-size: 55px;
	font-family: "Chakra Petch", sans-serif;
	font-weight: 500;
	font-style: normal;
	vertical-align: middle;
	transform: translateX(27%);
}
.set_categories .prize > ul > li > .detail > div span {
	display: inline-block;
	font-size: 35px;
	font-family: "Zen Old Mincho", serif;
	font-weight: 900;
	font-style: normal;
	line-height: 1.2em;
	transform-origin: left;
	transform: scaleX(0.6) translateX(43%);
	vertical-align: middle;
}
.set_categories .prize > ul > li > .detail > ul {
	flex: 1;
	box-sizing: border-box;
}
.set_categories .prize > ul > li > .detail > ul li {
	background-size: 8px auto;
	background-position: 0;
	margin: 0;
	padding: 5px 0 5px 20px;
	font-size: 13px;
	font-weight: 700;
}
.set_categories .prize > ul > li > .detail > ul li:last-child {
	margin: 0;
}

/*賞金差分表現*/
.set_categories .prize > ul > li.prize_1 > .title {
	background-image: url(../svg/prize_frame_1.svg);
}
.set_categories .prize > ul > li.prize_2 > .title {
	background-image: url(../svg/prize_frame_2.svg);
}
.set_categories .prize > ul > li.prize_3 > .title {
	background-image: url(../svg/prize_frame_3.svg);
}
.set_categories .prize > ul > li.prize_1 > .title h4,
.set_categories .prize > ul > li.prize_1 > .title h5,
.set_categories .prize > ul > li.prize_1 > .title p,
.set_categories .prize > ul > li.prize_1 > .detail {
	color: #f79100;
}
.set_categories .prize > ul > li.prize_2 > .title h4,
.set_categories .prize > ul > li.prize_2 > .title h5,
.set_categories .prize > ul > li.prize_2 > .title p,
.set_categories .prize > ul > li.prize_2 > .detail {
	color: #6c93ab;
}
.set_categories .prize > ul > li.prize_3 > .title h4,
.set_categories .prize > ul > li.prize_3 > .title h5,
.set_categories .prize > ul > li.prize_3 > .title p,
.set_categories .prize > ul > li.prize_3 > .detail {
	color: #9e9075;
}
.set_categories .prize > ul > li.prize_1 > .detail > ul li {
	background-image: url(../svg/prize_arrow_1.svg);
}
.set_categories .prize > ul > li.prize_2 > .detail > ul li {
	background-image: url(../svg/prize_arrow_2.svg);
}
.set_categories .prize > ul > li.prize_3 > .detail > ul li {
	background-image: url(../svg/prize_arrow_3.svg);
}
.set_categories .prize > ul > li.prize_1 > .title p,
.set_categories .prize > ul > li.prize_1 > .detail {
	border: 2px #f79100 solid;
}
.set_categories .prize > ul > li.prize_2 > .title p,
.set_categories .prize > ul > li.prize_2 > .detail {
	border: 2px #6c93ab solid;
}
.set_categories .prize > ul > li.prize_3 > .title p,
.set_categories .prize > ul > li.prize_3 > .detail {
	border: 2px #9e9075 solid;
}
.set_categories .prize > ul > li.prize_1 > .detail > div {
	border-bottom: 1px #f79100 solid;
}
.set_categories .prize > ul > li.prize_2 > .detail > div {
	border-bottom: 1px #6c93ab solid;
}
.set_categories .prize > ul > li.prize_3 > .detail > div {
	border-bottom: 1px #9e9075 solid;
}

/*賞金詳細リンク*/
.set_categories .prize .more {
	width: 100%;
	margin: 0 auto;
	text-align: center;
}
.set_categories .prize .more a {
	display: inline-block;
	background-image: url(../svg/prize_arrow_more.svg);
	background-position: left center;
	background-repeat: no-repeat;
	background-size: 10px auto;
	color: #174a55;
	margin: 30px 0 0 0;
	padding: 10px 0 10px 30px;
	text-decoration: none;
}



/*
汎用ボックス：部門ごとの説明：参考資料
*/
.set_categories .document {}

/*画像資料*/
.set_categories .document .doc_image {}
.set_categories .document .doc_image figure {
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	background-color: #dad8e6;
	width: 93%;
	margin: 5px auto;
	padding: 5px;
	border-radius: 10px;
}
.set_categories .document .doc_image figure img {
	width: 100%;
	border-radius: 6px;
	box-shadow: 0 0 10px rgba(2, 14, 33, 0.3);
}
.set_categories .document .doc_image figure figcaption {
	box-sizing: border-box;
	background-color: #ffffff;
	width: 100%;
	margin: 10px 0 0 0;
	padding: 1em 0;
	font-size: 10px;
	text-align: center;
	border-radius: 6px;
}



/*
リスト共通
*/
.list_a,
.list_b,
.list_c {
	width: 93%;
	margin: 0 auto 30px auto;
}
.list_a li,
.list_b li,
.list_c li {
	box-sizing: border-box;
	background-color: #ffffff;
	background-position: 30px center;
	width: 100%;
	margin: 0 0 10px 0;
	padding: 15px 25px 15px 70px;
	font-size: 13px;
	line-height: 1.4em;
	border-radius: 10px;
	border: 1px #b9c8cc solid;
}
.list_a li:last-child,
.list_b li:last-child,
.list_c li:last-child {
	margin: 0;
}
.list_a li a,
.list_b li a,
.list_c li a {
	color: #f410bc;
	text-decoration: none;
}

/*通常リスト*/
.list_a {}
.list_a li {
	background-image: url(../svg/arrow_btn_a.svg);
	background-size: 11px auto;
	border: none;
}

/*数字リスト*/
.list_b {}
.list_b li {
	list-style-type: decimal;
	list-style-position: inside;
	padding: 15px 25px;
}

/*注釈リスト*/
.list_c {}
.list_c li {
	background-image: url(../svg/icon_guide.svg);
	background-size: 20px auto;
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
トップページ：汎用_end
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
トップページ：キービジュアル_start
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
/*
基本レイアウト
*/
#top #vis {
	position: relative;
	background-color: #ffe157;
	width: 100%;
	height: 500px;
}



/*
プロジェクトロゴ
*/
#top #vis > h3 {
	z-index: 3;
	position: absolute;
	top: 15px;
	left: 15px;
	background-image: url(../images/logo_soyogifractal_1l.png);
	background-position: center center;
	background-repeat: no-repeat;
	width: 120px;
	height: 31px;
	text-indent: -9999px;
}



/*
ロゴ
*/
#top #vis .logo {
	z-index: 2;
	position: absolute;
	top: 363px;
	left: 0;
	background-image: url(../images/vis_title_bg.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 690px auto;
	width: 100%;
	height: 87px;
}
#top #vis .logo .soyogicon {
	top: -21px;
	background-image: url(../images/vis_title_soyogicon.png);
	width: 120px;
	height: 33px;
	margin: 0 0 0 -60px;
}
#top #vis .logo h1 {
	top: 11px;
	background-image: url(../images/vis_title_main.png);
	width: 270px;
	height: 64px;
	margin: 0 0 0 -135px;
}
#top #vis .logo h2 {
	top: 74px;
	background-image: url(../images/vis_title_sub.png);
	width: 200px;
	height: 32px;
	margin: 0 0 0 -100px;
}
#top #vis .logo .soyogicon,
#top #vis .logo h1,
#top #vis .logo h2 {
	position: absolute;
	left: 50%;
	background-position: center center;
	background-repeat: no-repeat;
	text-indent: -9999px;
}

/*アニメーション*/
#top #vis .logo,
#top #vis .logo .soyogicon,
#top #vis .logo h1,
#top #vis .logo h2 {
	opacity: 0;
	transition-duration: 1000ms;
	transition-property: all;
	transition-timing-function: cubic-bezier(.42,0,0,.99);
	transition-delay: 2000ms;
	transform-origin: center;
}
#top #vis .logo .soyogicon,
#top #vis .logo h1,
#top #vis .logo h2 {
	transition-delay: 2800ms;
}
#top #vis .logo .soyogicon {
	transform: translateY(-40px);
}
#top #vis .logo h2 {
	transform: translateY(40px);
}
#top #vis.active .logo {
	opacity: 1;
}
#top #vis.active .logo .soyogicon,
#top #vis.active .logo h1,
#top #vis.active .logo h2 {
	opacity: 1;
	transform: translateY(0);
}



/*
オブジェクト
*/
#top #vis .object {
	z-index: 1;
	position: relative;
	width: 100%;
	height: 500px;
	overflow: hidden;
}
#top #vis .object span {
	position: absolute;
	left: 50%;
	display: block;
	background-size: 100% auto;
	background-position: center center;
	background-repeat: no-repeat;
}

/*蝶*/
#top #vis .object span.papillon {
	z-index: 1;
	top: 0px;
	background-image: url(../images/vis_papillon.png);
	width: 800px;
	height: 800px;
	margin: 0 0 0 -400px;
}

/*円*/
#top #vis .object span.circle {
	z-index: 2;
	top: 0px;
	background-image: url(../images/vis_circle.png);
	width: 1000px;
	height: 280px;
	margin: 0 0 0 -500px;
}

/*パーティクル*/
#top #vis .object span.star {
	z-index: 3;
	top: 0px;
	background-image: url(../images/vis_star.png);
	width: 800px;
	height: 247px;
	margin: 0 0 0 -400px;
}

/*そよぎ*/
#top #vis .object span.keyart {
	z-index: 4;
	top: 20px;
	background-image: url(../images/chara_soyogi_bastup.png);
	width: 590px;
	height: 556px;
	margin: 0 0 0 -198px;
}

/*アニメーション*/
#top #vis .object span {
	opacity: 0;
	transition-duration: 2000ms;
	transition-property: all;
	transition-timing-function: cubic-bezier(.42,0,0,.99);
	transform-origin: center;
}
#top #vis .object span.papillon {
	transition-delay: 600ms;
	transform: translateY(0px) rotate(180deg);
}
#top #vis.active .object span.papillon {
	opacity: 1;
	transform: translateY(-200px) rotate(0deg);
}
#top #vis .object span.circle {
	transition-delay: 1200ms;
	transform: translateY(-100px);
}
#top #vis.active .object span.circle {
	opacity: 1;
	transform: translateY(0);
}
#top #vis .object span.star {
	transition-delay: 1400ms;
	transform: scale(0.5);
}
#top #vis.active .object span.star {
	opacity: 1;
	transform: scale(1);
}
#top #vis .object span.keyart {
	transition-delay: 1400ms;
	transform: translateX(-100px);
}
#top #vis.active .object span.keyart {
	opacity: 1;
	transform: translateX(0);
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
トップページ：キービジュアル_end
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
トップページ：リード_start
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
/*
基本レイアウト
*/
#top #read {
	position: relative;
	box-sizing: border-box;
	background-color: #ffffff;
	margin: 40px auto;
	padding: 20px 0;
	text-align: center;
}



/*
詳細
*/
#top #read .detail {
	z-index: 2;
	position: relative;
}

/*タイトルテキスト*/
#top #read .detail h3 {
	color: #947f28;
	width: 140%;
	margin: 0 0 20px 0;
	font-size: 23px;
	font-family: "Zen Old Mincho", serif;
	font-weight: 900;
	font-style: normal;
	line-height: 1.2em;
	transform-origin: center;
	transform: scaleX(0.6) translateX(-23.4%);
}
#top #read .detail h3 span {
	font-size: 13px;
}

/*賞金総額*/
#top #read .totalprize p {
    display: flex;
    align-items: center;
    justify-content: center;
}
#top #read .totalprize span {
	display: inline-block;
	color: #efc500;
	font-size: 25px;
	font-family: "Zen Old Mincho", serif;
	font-weight: 900;
	font-style: normal;
	transform-origin: center;
	transform: scaleX(0.6);
}
#top #read .totalprize strong {
	position: relative;
	background: linear-gradient(0deg, #e39900, #f2cf00);
	background: -webkit-linear-gradient(90deg, #e39900, #f2cf00);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-size: 110px;
	font-family: "Chakra Petch", sans-serif;
	font-weight: 500;
	font-style: normal;
	letter-spacing: -0.05em;
	transform: translateX(-7px);
}



/*
パーティクル
*/
#top #read .object .star {
	z-index: 1;
	position: absolute;
	top: 50%;
	left: 0;
	display: block;
	background-image: url(../images/read_bg.png);
	background-size: auto 100%;
	background-position: center center;
	width: 100%;
	height: 97px;
	margin: -113.5px 0 0 0;
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
トップページ：リード_end
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
トップページ：募集部門_start
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
/*
基本レイアウト
*/
#top #compatitioncat {}



/*
リスト
*/
#top #compatitioncat .list {
	/*
	display: flex;
	align-items: start;
	justify-content: center;
	*/
	margin: 60px 0 0 0;
}
#top #compatitioncat .list li {
	position: relative;
	box-sizing: border-box;
	background-color: #ffffff;
	width: 280px;
	margin: 0 auto 30px auto;
	padding: 40px 0 30px 0;
	text-align: center;
	border: 4px #f0eee4 solid;
	box-shadow: 0 0 10px rgba(2, 14, 33, 0.3);
	border-radius: 10px;
}

/*アンカー*/
#top #compatitioncat .list a {
	text-decoration: none;
	color: #174a55;
}
#top #compatitioncat .list a:hover {
	color: #00ccff;
}
#top #compatitioncat .list a:hover::before {
	top: -50px;
}
#top #compatitioncat .list a:hover::after {
	background-position: center 20px;
}
#top #compatitioncat .list a,
#top #compatitioncat .list a::before,
#top #compatitioncat .list a::after {
	transition-duration: 600ms;
	transition-property: all;
	transition-timing-function: cubic-bezier(.42,0,0,.99);
	transition-delay: 0ms;
	transform-origin: center;
}

/*アイコン*/
#top #compatitioncat .list li a::before {
	position: absolute;
	top: -20px;
	left: 50%;
	content: "";
	display: block;
	background-color: #ffffff;
	width: 40px;
	height: 40px;
	margin: 0 0 0 -20px;
	border: 4px #f0eee4 solid;
	box-shadow: 0 0 10px rgba(2, 14, 33, 0.3);
	border-radius: 100px;
}
#top #compatitioncat .list li:nth-of-type(1) a::before {
	background-image: url(../svg/icon_illust.svg);
}
#top #compatitioncat .list li:nth-of-type(2) a::before {
	background-image: url(../svg/icon_talk.svg);
}
#top #compatitioncat .list li:nth-of-type(3) a::before {
	background-image: url(../svg/icon_song.svg);
}

/*テキスト*/
#top #compatitioncat .list h3 {
	width: 140%;
	margin: 0 0 8px 0;
	font-size: 25px;
	font-family: "Zen Old Mincho", serif;
	font-weight: 900;
	font-style: normal;
	transform-origin: center;
	transform: scaleX(0.6) translateX(-23.4%);
}
#top #compatitioncat .list h4 {
	color: #8fb4bc;
	font-size: 10px;
	font-family: "Chakra Petch", sans-serif;
	font-weight: 500;
	font-style: normal;
}

/*アロー*/
#top #compatitioncat .list a::after {
	position: absolute;
	bottom: 0;
	left: 0;
	box-sizing: border-box;
	content: "";
	display: block;
	background-color: #00dddd;
	background-image: url(../svg/arrow_bottom.svg);
	background-size: 15px auto;
	background-position: center 7px;
	background-repeat: no-repeat;
	width: 100%;
	padding: 10px 0;
	border-radius: 0 0 10px 10px;
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
トップページ：募集部門_end
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
トップページ：募集期間_start
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
/*
期間表記
*/
#top #period .span {
	width: 93%;
	margin: 0 auto;
}
#top #period .span p {
	box-sizing: border-box;
	background-color: #ffffff;
	padding: 25px;
	font-size: 14px;
	text-align: center;
	line-height: 1.6em;
	border-radius: 10px;
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
トップページ：募集期間_end
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
トップページ：審査員_start
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
/*
基本レイアウト
*/
#top #judges {}



/*
リスト
*/
#top #judges .judgeslist {
	/*
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	*/
	width: 93%;
	margin: 0 auto;
}

#top #judges .judgeslist li {
	box-sizing: border-box;
	position: relative;
	width: 278px;
	margin: 0 auto 20px auto;
	border-radius: 10px;
}

#top #judges .judgeslist li::before {
	content: "";
	z-index: 1;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	background-color: #ffffff;
	text-align: center;
	border: 4px #f0eee4 solid;
	box-shadow: 0 0 10px rgba(2, 14, 33, 0.3);
	border-radius: 10px;
}



/*
梶さんエリアレイアウト
*/
/*
#top #judges .judgeslist li:first-child {
	width: 100%;
	height: 369px;
}
#top #judges .judgeslist li:first-child > div {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#top #judges .judgeslist li:first-child figure {
	flex-basis: 278px;
	height: 369px;
	border-radius: 10px 0 0 10px;
}
#top #judges .judgeslist li:first-child > div .detail {
	flex: 1;
	text-align: center;
}
#top #judges .judgeslist li:first-child > div .detail .comment a {
	position: inherit;
	margin: 0 auto;
}
	*/



/*
ボックス
*/
/*外側*/
#top #judges .judgeslist li > div {
	z-index: 2;
	position: relative;
}



/*
お写真
*/
#top #judges .judgeslist li figure {
	overflow: hidden;
	width: 278px;
	height: 235px;
	border-radius: 10px 10px 0 0;
}
#top #judges .judgeslist li figure img {
	width: 100%;
	height: auto;
}



/*
詳細
*/
#top #judges .judgeslist li > div .detail {
	padding: 15px 0 25px 0;
	text-align: center;
}

/*見出し共通*/
#top #judges .judgeslist li > div .detail h4,
#top #judges .judgeslist li > div .detail h3 {
	color: #947f28;
	width: 140%;
	font-family: "Zen Old Mincho", serif;
	font-weight: 900;
	font-style: normal;
	letter-spacing: 0em;
	line-height: 1.2em;
	transform-origin: center;
	transform: scaleX(0.6) translateX(-23.4%);
}

/*審査種別*/
#top #judges .judgeslist li > div .detail h4 {
	margin: 0 0 5px 0;
	font-size: 17px;
}

/*お名前*/
#top #judges .judgeslist li > div .detail h3 {
	margin: 0 0 15px 0;
	font-size: 35px;
}

/*Xアカウント*/
#top #judges .judgeslist li > div .detail .x {
	margin: 15px auto 15px auto;
}
#top #judges .judgeslist li > div .detail .x::before {
	content: "";
	display: block;
	background-image: url(../svg/icon_sns_x.svg);
	background-repeat: no-repeat;
	background-position: center center;
	width: 21px;
	height: 19px;
	margin: 0px auto 10px auto;
}
#top #judges .judgeslist li > div .detail .x a {
	color: #174a55;
	font-size: 12px;
	text-decoration: none;
}

/*審査員コメントボタン*/
#top #judges .judgeslist li > div .detail .comment a {
	width: 180px;
	margin: 0 auto;
	padding: 15px 0;
	display: block;
	background-color: #00dddd;
	color: #ffffff;
	font-size: 13px;
	font-weight: 900;
	text-align: center;
	border-radius: 100px;
	text-decoration: none;
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
トップページ：審査員_end
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
トップページ：賞金_start
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
/*
基本レイアウト
*/
#top #prize {
	width: 93%;
	margin: 0 auto 100px auto;
}
#top #prize > div {
	margin: 0 0 40px 0;
}



/*
テーブル
*/
#top #prize > div table {
	width: 100%;
	margin: 0 0 10px 0;
	border-collapse: separate;
	border-spacing: 0;
	border-radius: 10px;
	border: 2px #174a55 solid;
	overflow: hidden;
}
#top #prize > div table th,
#top #prize > div table td {
	box-sizing: border-box;
	padding: 16px 10px;
	font-size: 12px;
	text-align: center;
	border: 1px #174a55 solid;
}
#top #prize > div table th {
	background-color: #b5cace;
}
#top #prize > div table td:nth-of-type(2) {
	width: 60px;
}
#top #prize > div table td:nth-of-type(3) {
	width: 85px;
}

/*共通賞専用*/
#top #prize > div.prize_common table td:nth-of-type(2) {
	width: 60px;
}
#top #prize > div.prize_common table td:nth-of-type(3) {
	width: auto;
}



/*
見出し
*/
#top #prize > div > h3 {
	position: relative;
	display: flex;
	align-items: center;
	margin: 0 0 20px 0;
}
#top #prize > div > h3 span {
	flex: 1;
	position: relative;
	display: inline-block;
	width: 140%;
	padding: 0px;
	font-size: 24px;
	font-family: "Zen Old Mincho", serif;
	font-weight: 900;
	font-style: normal;
	line-height: 1.2em;
	transform-origin: left;
	transform: scaleX(0.6) translateX(-8.4%);
}
#top #prize > div > h3::before {
	content: "";
	display: inline-block;
	background-color: #174a55;
	background-repeat: no-repeat;
	background-position: center center;
	flex-basis: 40px;
	width: 40px;
	height: 40px;
	margin: 0 20px 0 0;
	border-radius: 100px;
}
#top #prize > div.prize_illust > h3::before {
	background-image: url(../svg/icon_illust.svg);
}
#top #prize > div.prize_talk > h3::before {
	background-image: url(../svg/icon_talk.svg);
}
#top #prize > div.prize_song > h3::before {
	background-image: url(../svg/icon_song.svg);
}
#top #prize > div.prize_common > h3::before {
	background-image: url(../svg/icon_kaji.svg);
}



/*
注釈
*/
#top #prize > div > dl {
	width: 100%;
	font-size: 12px;
}

#top #prize > div > dl dt {}

#top #prize > div > dl dd {
	margin: -1em 0 0.5em 2.2em;
}



/*
共通賞
*/
#top #prize > div.prize_common {}

#top #prize > div.prize_common .detail {
	margin: 20px 0 0 0;
}

/*見出し*/
#top #prize > div.prize_common .detail h3 {
	position: relative;
	width: 100%;
	margin: 0 auto 15px auto;
	padding: 0 0 10px 0;
}
#top #prize > div.prize_common .detail h3 span {
	display: block;
	width: 140%;
	margin: 0 0 0 19.4%;
	font-size: 20px;
	font-family: "Zen Old Mincho", serif;
	font-weight: 900;
	font-style: normal;
	line-height: 1.2em;
	transform-origin: left;
	transform: scaleX(0.6) translateX(-23.4%);
}
#top #prize > div.prize_common .detail h3::before {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	background-color: #8fb4bc;
	width: 100%;
	height: 2px;
	border-radius: 100px;
}

/*リスト*/
#top #prize > div.prize_common .detail ol {
	width: 100%;
	margin: 0;
}
#top #prize > div.prize_common .detail ol li {
	background-color: transparent;
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
トップページ：賞金_end
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
トップページ：注意事項_start
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
#top #caution {
	box-sizing: border-box;
	background-color: #174a55;
	color: #f0eee4;
	padding: 60px 0;
}



/*
見出し
*/
#top #caution .subtitle {
	margin: 0 0 40px 0;
	text-align: center;
}
#top #caution .subtitle h2 {
	width: 140%;
	font-size: 36px;
	font-family: "Zen Old Mincho", serif;
	font-weight: 900;
	font-style: normal;
	line-height: 1.2em;
	transform-origin: center;
	transform: scaleX(0.6) translateX(-23.4%);
}



/*
約款
*/
#top #caution .cautionlist {
	width: 80%;
	margin: 0 auto;
}

#top #caution .cautionlist li {
	list-style-type: disc;
	margin: 0 0 10px 1.8em;
	font-size: 10px;
	line-height: 1.65em;
}
#top #caution .cautionlist li a {
	color: #00ccff;
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
トップページ：注意事項_end
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/









/*――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――

下層

――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――*/
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
下層：汎用_start
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
/*
キービジュアル
*/
#sub #vis {
	position: relative;
	background-color: #ffe157;
	margin: 0 0 40px 0;
	padding: 15px 0;
}

/*コンクールロゴ*/
#sub #vis .logo {}
#sub #vis .logo h1 {
	background-image: url(../images/logo_soyogicon_1l.png);
	width: 250px;
	height: 77px;
	margin: 10px auto 0 auto;
	text-indent: -9999px;
}

/*プロジェクトロゴ*/
#sub #vis > h3 {
	z-index: 3;
	background-image: url(../images/logo_soyogifractal_1l.png);
	background-position: center center;
	background-repeat: no-repeat;
	width: 150px;
	height: 32px;
	margin: 0 auto;
	text-indent: -9999px;
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
下層：汎用_end
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
下層汎用フッター_start
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
/*
リンクリスト
*/
#officiallinks .officiallinks {
	display: flex;
	justify-content: space-between;
	width: 1000px;
	margin: 0 auto;
}

#officiallinks .officiallinks a {
	display: block;
	position: relative;
	top: 0;
	width: 320px;
	height: 145px;
	text-indent: -9999px;
	filter: drop-shadow(0 0 6px rgba(16, 10, 38, 0.2));
	/*負荷軽減*/
	transform: translateZ(0);
	transition-duration: 600ms;
	transition-property: all;
	transition-timing-function: cubic-bezier(.42,0,0,.99);
	transition-delay: 0ms;
	transform-origin: center;
}
#officiallinks .officiallinks a:hover {
	top: -5px;
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
下層汎用フッター_end
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/









/*――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――

下層（プライバシーポリシー）

――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――*/
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
プライバシーポリシー：汎用_start
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
/*
基本レイアウト
*/
#sub.pp {}

#sub.pp .set_normal {
	width: 100%;
	margin: 0 auto;
}



/*
リードテキスト
*/
#sub.pp .set_normal .read {
	margin: 0 0 100px 0;
}



/*
詳細レイアウト
*/
#sub.pp .set_normal .detail {}

#sub.pp .set_normal .detail .secbox {
	width: 93%;
	margin: 0 auto 60px auto;
}

/*見出し*/
#sub.pp .set_normal .detail .secbox h2 {
	width: 140%;
	margin: 0 0 20px 0;
	font-size: 30px;
	font-family: "Zen Old Mincho", serif;
	font-weight: 900;
	font-style: normal;
	line-height: 1.2em;
	transform-origin: left;
	transform: scaleX(0.6) translateX(-0%);
}

/*基本段落*/
#sub.pp .set_normal .detail .secbox p {
	margin: 0 0 1em 0;
	font-size: 14px;
	letter-spacing: 0.065em;
	line-height: 1.65em;
}
#sub.pp .set_normal .detail .secbox p:last-child {
	margin: 0;
}



/*
リスト要素
*/
#sub.pp .set_normal .detail .secbox ol li {
	list-style-type: decimal;
	list-style-position: outside;
	margin: 10px 0 10px 3em;
}

#sub.pp .set_normal .detail .secbox > ol {
	margin: 20px auto;
}
#sub.pp .set_normal .detail .secbox > ol > li {
	box-sizing: border-box;
	padding: 20px;
	font-size: 13px;
	line-height: 1.65em;
	border: 1px #174a55 solid;
	border-radius: 10px;
}



/*
タイトル付き箇条書きリスト
*/
#sub.pp .set_normal .detail .secbox dl dt {
	margin: 15px 0;
}
#sub.pp .set_normal .detail .secbox dl dt:first-child {
	margin: 0 0 15px 0;
}



/*
住所表記
*/
#sub.pp .set_normal .detail .secbox address {
	box-sizing: border-box;
	background-color: #e3e0cf;
	margin: 20px 0 0 0;
	padding: 1em;
	font-style: normal;
	border-radius: 10px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

#sub.pp .set_normal .detail .secbox address .mail {
	margin: 15px 0 0 0;
}
#sub.pp .set_normal .detail .secbox address .mail em {
	background-color: #f0eee4;
	line-height: 1em;
	margin: 0 10px 0 0;
	padding: 2px 6px;
	font-style: normal;
	border-radius: 3px;
}



/*
アップデート表記
*/
#sub.pp .set_normal .update {
	margin: 60px 0 0 0;
	padding: 30px 0;
	text-align: right;
	border-top: 1px #174a55 solid;
	border-bottom: 1px #174a55 solid;
}



/*
特設ページトップへ
*/
#sub .specialbtt {
	margin: 100px auto;
}
#sub .specialbtt a {
	display: block;
	background-color: #1b1d24;
	color: #ffffff;
	width: 240px;
	margin: 0 auto;
	padding: 25px 30px;
	text-decoration: none;
	text-align: center;
	line-height: 1em;
	border-radius: 100px;
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
プライバシーポリシー：汎用_end
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/









/*――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――

作品一覧

――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――*/
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
作品一覧：汎用_start
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
/*
作品一覧：ページタイトル
*/
.userentrys .subtitle {
	position: relative;
	text-align: center;
	margin: 0 0 40px 0;
	padding: 0 0 30px 0;
}
.userentrys .subtitle h2 {
	margin: 0 0 15px 0;
	font-size: 36px;
	font-family: "Zen Old Mincho", serif;
	font-weight: 900;
	font-style: normal;
	line-height: 1.2em;
	transform-origin: center;
	transform: scaleX(0.6);
}
.userentrys .subtitle p {
	font-size: 10px;
	font-family: "Chakra Petch", sans-serif;
	font-weight: 700;
	font-style: normal;
	letter-spacing: 0.065em;
}
.userentrys .subtitle::after {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 50%;
	background-image: url(../svg/icon_hr_subtitle.svg);
	width: 80px;
	height: 4px;
	margin: 0 0 0 -40px;
}



/*
作品一覧：リード
*/
.userentrys > .read {
	width: 90%;
	margin: 0 auto 60px auto;
}
.userentrys > .read p {
	margin: 0 0 1em 0;
	font-size: 15px;
	letter-spacing: 0.065em;
	line-height: 1.65em;
}
.userentrys > .read p strong {
	color: #00a9cd;
}
.userentrys > .read p a {
	color: #ea0285;
}



/*
作品一覧：切り替えタブ
*/
.userentrys .tab {
	margin: 0 0 70px 0;
	padding: 45px 0 0 0;
	overflow: hidden;
}

.userentrys .tab ul {
	position: relative;
	/*
	bottom: -20px;
	display: flex;
	align-items: start;
	justify-content: center;
	*/
}
.userentrys .tab li {
	/*
	position: relative;
	bottom: -10px;
	box-sizing: border-box;
	background-color: #ffffff;
	background-image: url(../svg/arrow_btn_a_bottom.svg);
	background-size: 24px auto;
	background-position: center 120px;
	width: 280px;
	margin: 0 10px;
	padding: 40px 0 65px 0;
	text-align: center;
	border: 4px #f0eee4 solid;
	box-shadow: 0 0 10px rgba(2, 14, 33, 0.3);
	border-radius: 30px;
	cursor: pointer;
	*/
	position: relative;
	bottom: -10px;
	box-sizing: border-box;
	background-color: #ffffff;
	width: 90%;
	margin: 38px auto;
	padding: 40px 0 33px 0;
	text-align: center;
	border: 4px #f0eee4 solid;
	box-shadow: 0 0 10px rgba(2, 14, 33, 0.3);
	border-radius: 30px;
	cursor: pointer;
}
.userentrys .tab li,
.userentrys .tab li::before,
.userentrys .tab li a {
	transition-duration: 600ms;
	transition-property: all;
	transition-timing-function: cubic-bezier(.42,0,0,.99);
	transition-delay: 0ms;
	transform-origin: center;
}
.userentrys .tab li:hover,
.userentrys .tab li:hover a,
.userentrys .tab li.active,
.userentrys .tab li.active a {
	bottom: 0;
	color: #00ccff;
}
.userentrys .tab li:hover::before {
	top: -50px;
}
.userentrys .tab li a {
	color: #174a55;
	text-decoration: none;
}

/*アイコン*/
.userentrys .tab li::before {
	position: absolute;
	top: -40px;
	left: 50%;
	content: "";
	display: block;
	background-color: #ffffff;
	width: 60px;
	height: 60px;
	margin: 0 0 0 -30px;
	border: 4px #f0eee4 solid;
	box-shadow: 0 0 10px rgba(2, 14, 33, 0.3);
	border-radius: 100px;
}
.userentrys .tab li:nth-of-type(1)::before {
	background-image: url(../svg/icon_illust.svg);
}
.userentrys .tab li:nth-of-type(2)::before {
	background-image: url(../svg/icon_talk.svg);
}
.userentrys .tab li:nth-of-type(3)::before {
	background-image: url(../svg/icon_song.svg);
}

/*テキスト*/
.userentrys .tab li h3 {
	margin: 0 0 15px 0;
	font-size: 35px;
	font-family: "Zen Old Mincho", serif;
	font-weight: 900;
	font-style: normal;
	transform-origin: center;
	transform: scaleX(0.6);
}
.userentrys .tab li h4 {
	color: #8fb4bc;
	font-size: 10px;
	font-family: "Chakra Petch", sans-serif;
	font-weight: 500;
	font-style: normal;
}



/*
作品一覧：基本スタイル
*/
.listcontainer {
	position: relative;
}
.listcontainer .listbox {
	background-color: #ffffff;
	width: 100%;
	margin: 0 0 130px 0;
	padding: 30px 0;
}

/*見出し*/
.listcontainer .listbox > .tabtitle {
	position: relative;
	text-align: center;
	margin: 60px auto 60px auto;
	padding: 80px 0 0 0;
}
.listcontainer .listbox > .tabtitle h3 {
	margin: 0 0 15px 0;
	font-size: 40px;
	font-family: "Zen Old Mincho", serif;
	font-weight: 900;
	font-style: normal;
	line-height: 1.2em;
	transform-origin: center;
	transform: scaleX(0.6);
}
.listcontainer .listbox > .tabtitle p {
	color: #8fb4bc;
	font-size: 10px;
	font-family: "Chakra Petch", sans-serif;
	font-weight: 700;
	font-style: normal;
	letter-spacing: 0.065em;
}
.listcontainer .listbox > .tabtitle::after {
	content: "";
	display: block;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100% auto;
	position: absolute;
	top: 0;
	left: 50%;
	width: 80px;
	height: 80px;
	margin: 0 0 0 -40px;
}
.listcontainer .listbox#tab_illust > .tabtitle::after {
	background-image: url(../svg/icon_illust.svg);
}
.listcontainer .listbox#tab_talk > .tabtitle::after {
	background-image: url(../svg/icon_talk.svg);
}
.listcontainer .listbox#tab_song > .tabtitle::after {
	background-image: url(../svg/icon_song.svg);
}



/*
作品一覧：グリッドボックス：基本スタイル
*/
.gridbox{
	box-sizing: border-box;
	margin: 60px auto;
	width: 90%;
	/*
	column-count: 3;
	column-gap: 0;
	*/
}
.gridbox > li {
	/*
	-webkit-column-break-inside: avoid;
	page-break-inside: avoid;
	break-inside: avoid;
	*/
	background-color: #ffffff;
	margin: 0 0.5em 1em 0.5em;
	padding: 30px;
	border: 4px #f0eee4 solid;
	border-radius: 12px;
	text-align: justify;
	transition-duration: 300ms;
	transition-property: all;
	transition-timing-function: cubic-bezier(.42,0,0,.99);
	transition-delay: 0ms;
	transform-origin: center;
}



/*
作品一覧：グリッドボックス：ラベル
*/
.gridbox > li > h5 {
	display: inline-block;
	background-color: #ffe157;
	padding: 8px 10px 5px 10px;
	font-size: 12px;
	margin: 0 0 15px 0;
}



/*
作品一覧：グリッドボックス：プロフィール
*/
.gridbox > li > .profile {
	display: flex;
	align-items: center;
	justify-content: start;
	margin: 0 0 15px 0;
}

.gridbox > li > .profile figure {
	background-color: #ebebeb;
	flex-basis: 60px;
	width: 60px;
	height: 60px;
	margin: 0 10px 0 0;
	border-radius: 100px;
}
.gridbox > li > .profile h5 {
	flex: 1;
	font-size: 14px;
	line-height: 1.3em;
	letter-spacing: 0.065em;
}



/*
作品一覧：グリッドボックス：作品名
*/
.gridbox > li > h4 {
	margin: 15px 0;
	padding: 10px 0 10px 15px;
	font-size: 16px;
	font-weight: 700;
	border-left: 3px #174a55 solid;
	border-radius: 3px;
}



/*
作品一覧：グリッドボックス：説明文
*/
.gridbox > li > .description {
	font-size: 12px;
	letter-spacing: 0.065em;
	line-height: 1.4em;
}



/*
作品一覧：グリッドボックス：サムネイル要素
*/
.gridbox .embeded {
	width: 100%;
	margin: 15px auto;
}


/*イラスト*/
.gridbox .embeded .illust video {
	width: 100%;
}


/*埋め込みビデオ*/
.gridbox .embeded .illust img {
	width: 100%;
}


/*YouTube*/
.gridbox .embeded .youtube {
	position: relative;
	width: 100%;
	height: 0;
	padding: 0 0 56.25% 0;
	border-radius: 6px;
	overflow: hidden;
}
.gridbox .embeded .youtube iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}


/*ニコニコ*/
.gridbox .embeded .nicovideo {
	position: relative;
	width: 100%;
	height: 0;
	padding: 0 0 56.25% 0;
	border: 1px #000000 solid;
	border-radius: 6px;
	overflow: hidden;
}
.gridbox .embeded .nicovideo iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}



/*
作品一覧：グリッドボックス：リンク
*/
.gridbox > li > a {
	display: block;
	background-color: #00dddd;
	color: #174a55;
	width: 100%;
	padding: 10px 0;
	font-size: 10px;
	font-weight: 600;
	text-align: center;
	line-height: 1em;
	letter-spacing: 0.065em;
	text-decoration: none;
	border: 0;
	border-radius: 100px;
	cursor: pointer;
}



/*
作品一覧：遷移バナー
*/
.transitionbanner {
	width: 100%;
	margin: 100px auto;
}

.transitionbanner a {
	display: block;
	background-repeat: no-repeat;
	width: 300px;
	height: 300px;
	margin: 0 auto;
	text-indent: -9999px;
	border: 6px #ffffff solid;
	border-radius: 20px;
	box-shadow: 0 0 10px rgba(2, 14, 33, 0.3);
}

.result .transitionbanner a {
	background-image: url(../images/sp_banner_result.png);
}

.result.top .transitionbanner a {
	background-image: url(../images/sp_banner_resultlist.png);
}

/*
.transitionbanner a {
	position: relative;
	display: block;
	width: 100%;
	top: 0;
	transition-duration: 600ms;
	transition-property: all;
	transition-timing-function: cubic-bezier(.42,0,0,.99);
	transition-delay: 0ms;
	transform-origin: center;
}
.transitionbanner a > img {
	width: 100%;
}
	*/

/*無効化*/
.transitionbanner a.cs {
	pointer-events: none;
}

/*ホバー*/
.transitionbanner a:hover{
	top: -10px;
}



/*
作品一覧：注釈
*/
.annotation {
	background-color: #174a55;
	color: #f0eee4;
	width: 100%;
	padding: 60px 0;
}

.annotation h3 {
	margin: 0 auto 35px auto;
	font-size: 25px;
	font-family: "Zen Old Mincho", serif;
	font-weight: 900;
	font-style: normal;
	text-align: center;
	line-height: 1.2em;
	transform-origin: center;
	transform: scaleX(0.6);
}

.annotation .list {
	width: 300px;
	margin: 0 auto;
}
.annotation .list li {
    margin: 0 0 1.5em 1.5em;
    list-style-type: disc;
	line-height: 1.65em;
    font-size: 14px;
}
.annotation .list li a {
	color: #00dddd;
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
作品一覧：汎用_end
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/









/*――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――

下層（結果発表トップ）

――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――*/
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
結果発表トップ：キービジュアルエリア_start
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
/*
ページ全体
*/
#sub.result.top {
	background-image: url(../svg/bg_script.svg), url(../images/result_pattern_bg_1.png);
	background-repeat: no-repeat, repeat;
}



/*
背景
*/
#sub.result.top #vis {
	background-color: transparent;
	background-image: url(../images/result_vis_circle.png);
	background-size: 730px auto;
	background-repeat: no-repeat;
	background-position: center 0px;
	height: 550px;
}



/*
ロゴ
*/
#sub.result.top #vis .logo {
	z-index: 3;
	position: relative;
}

/*イベントロゴ*/
#sub.result.top #vis .logo h1 {
	position: absolute;
	top: 360px;
	left: 0;
	background-image: url(../images/result_vis_soyogiconlogo.png);
	background-position: center center;
	background-size: 720px auto;
	background-repeat: no-repeat;
	width: 100%;
	height: 116px;
	margin: 0;
}

/*結果発表ロゴ*/
#sub.result.top #vis .logo h2 {
	position: absolute;
	top: 500px;
	left: 0;
	background-image: url(../images/result_pagetitle.png);
	background-position: center center;
	background-size: 270px auto;
	background-repeat: no-repeat;
	width: 100%;
	height: 59px;
	margin: 0;
	text-indent: -9999px;
}



/*
アートワーク
*/
#sub.result.top #vis .bg {
	z-index: 2;
	position: relative;
}

#sub.result.top #vis .bg span {
	position: absolute;
	left: 50%;
	display: block;
	background-position: center center;
	background-repeat: no-repeat;
}

#sub.result.top #vis .bg .star {
	z-index: 1;
	background-image: url(../images/result_vis_star.png);
	background-size: 100% auto;
	top: -100px;
	width: 800px;
	height: 407px;
	margin: 0 0 0 -420px;
}

#sub.result.top #vis .bg .character {
	z-index: 2;
	background-image: url(../images/result_vis_soyogi_bastup.png);
	background-size: 100% auto;
	background-position: top center;
	top: 20px;
	width: 596px;
	height: 435px;
	margin: 0 0 0 -210px;
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
結果発表トップ：キービジュアルエリア_end
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
結果発表トップ：リード_start
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.soyogiconresult #intro {
	width: 90%;
	margin: 100px auto;
	text-align: center;
}

.soyogiconresult #intro p {
	margin: 0 0 1em 0;
	text-align: left;
	font-size: 15px;
	line-height: 1.85em;
}

.soyogiconresult #intro a {
	box-sizing: border-box;
	position: relative;
	top: 0;
	display: block;
	background: linear-gradient(0deg, #b38842, #d8c16c);
	color: #5b4725;
	width: 100%;
	margin: 30px auto 0 auto;
	padding: 20px 0px;
	font-size: 16px;
	text-decoration: none;
	border-radius: 100px;
	transition-duration: 600ms;
	transition-property: all;
	transition-timing-function: cubic-bezier(.42,0,0,.99);
	transition-delay: 0ms;
	transform-origin: center;
}
.soyogiconresult #intro a:hover {
	top: -5px;
	letter-spacing: 0.2em;
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
結果発表トップ：リード_end
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
結果発表トップ：応募総数制御_start
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
#totalnumberofworks {
	margin: 0 0 100px 0;
}



#totalnumberofworks .subtitle {
	padding: 0;
}



/*
応募総数
*/
/*カウントアップ処理一式*/
@property --count {
	syntax: "<integer>";
	inherits: false;
	initial-value: 0;
}

.soyogiconresult .totalnum {
	margin: 40px auto;
}
.soyogiconresult .countup {
	/*カスタム処理*/
	counter-set: countup var(--count);
	animation-fill-mode: forwards;
	animation-timing-function: cubic-bezier(0.2, 0.1, 0.2, 1);
	font-variant-numeric: tabular-nums;
	/*文字スタイル*/
	background: linear-gradient(0deg, #00c9c6, #00e5e4);
	background: -webkit-linear-gradient(90deg, #00c9c6, #00e5e4);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-align: center;
	font-size: 110px;
	font-family: "Chakra Petch", sans-serif;
	font-weight: 500;
	font-style: normal;
	text-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.soyogiconresult .countup.active {
	animation: countup 2s 1;
	animation-fill-mode: forwards;
}
.soyogiconresult .countup::after {
	content: counter(countup);
}
@keyframes countup {
	100% {
		--count: 343;
	}
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
結果発表トップ：応募総数制御_end
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
結果発表トップ：汎用_start
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
/*
セクションタイトル
*/
.soyogiconresult .subtitle {
	position: relative;
	text-align: center;
	padding: 120px 0 0 0;
}
.soyogiconresult .subtitle h2 {
	display: block;
	margin: 0 0 15px 0;
	font-size: 32px;
	font-family: "Zen Old Mincho", serif;
	font-weight: 900;
	font-style: normal;
	line-height: 1.2em;
	transform-origin: center;
	transform: scaleX(0.6);
}
.soyogiconresult .subtitle p {
	color: #8fb4bc;
	font-size: 11px;
	font-family: "Chakra Petch", sans-serif;
	font-weight: 600;
	font-style: normal;
	letter-spacing: 0.065em;
}



/*
結果発表セクションレイアウト
*/
.soyogiconresult #cat_illust,
.soyogiconresult #cat_talk,
.soyogiconresult #cat_song {
	margin: 0 0 120px 0;
}



/*
結果発表セクションタイトル
*/
.soyogiconresult #cat_illust .subtitle,
.soyogiconresult #cat_talk .subtitle,
.soyogiconresult #cat_song .subtitle {}

/*アイコン*/
.soyogiconresult #cat_illust .subtitle::after,
.soyogiconresult #cat_talk .subtitle::after,
.soyogiconresult #cat_song .subtitle::after {
	content: "";
	display: block;
	position: absolute;
	top: 0px;
	left: 50%;
	background-color: #ffffff;
	width: 90px;
	height: 90px;
	margin: 0 0 0 -45px;
	border: 4px #f0eee4 solid;
	box-shadow: 0 0 10px rgba(2, 14, 33, 0.3);
	border-radius: 100px;
}
.soyogiconresult #cat_illust .subtitle::after {
	background-image: url(../svg/icon_illust.svg);
}
.soyogiconresult #cat_talk .subtitle::after {
	background-image: url(../svg/icon_talk.svg);
}
.soyogiconresult #cat_song .subtitle::after {
	background-image: url(../svg/icon_song.svg);
}

/*見出しテキスト*/
.soyogiconresult #cat_illust .subtitle h2,
.soyogiconresult #cat_talk .subtitle h2,
.soyogiconresult #cat_song .subtitle h2 {}

/*欧文*/
.soyogiconresult #cat_illust .subtitle p,
.soyogiconresult #cat_talk .subtitle p,
.soyogiconresult #cat_song .subtitle p {}



/*
ボックス余白調整
*/
.soyogiconresult .award_1,
.soyogiconresult .award_2,
.soyogiconresult .award_3 {
	position: relative;
	top: -50px;
	margin: 0 0 60px 0;
}


/*
受賞ランク表記制御
*/
/*共通背景スタイル*/
.soyogiconresult .reward {
	box-sizing: border-box;
	position: relative;
	background-size: 260px auto;
	background-position: center top;
	min-height: 154px;
	padding: 9px 0 0 0;
	text-align: center;
}

/*共通文字スタイル*/
.soyogiconresult .reward h3,
.soyogiconresult .reward h4,
.soyogiconresult .reward h5 {
	display: block;
	font-family: "Zen Old Mincho", serif;
	font-weight: 900;
	font-style: normal;
	line-height: 1.2em;
	transform-origin: center;
	transform: scaleX(0.6);
}
.soyogiconresult .reward h5 {
	margin: 0 0 10px 0;
	font-size: 20px;
}
.soyogiconresult .reward h4 {
	margin: 0 0 45px 0;
	font-size: 37px;
}
.soyogiconresult .reward h3 {
	margin: 0 0 20px 0;
	font-size: 40px;
}

/*最優秀賞*/
.soyogiconresult .award_1 .reward {
	background-image: url(../svg/prize_frame_1.svg);
}
.soyogiconresult .award_1 .reward h4,
.soyogiconresult .award_1 .reward h5 {
	color: #f79100;
}

/*優秀賞*/
.soyogiconresult .award_2 .reward {
	background-image: url(../svg/prize_frame_2.svg);
}
.soyogiconresult .award_2 .reward h4,
.soyogiconresult .award_2 .reward h5 {
	color: #6c93ab;
}

/*その他共通*/
.soyogiconresult .award_3 .reward {
	background-image: url(../svg/prize_frame_3.svg);
}
.soyogiconresult .award_3 .reward h4,
.soyogiconresult .award_3 .reward h5 {
	color: #9e9075;
}



/*
副賞スタイル
*/
.soyogiconresult .subprize {
	margin: 0 0 30px 0;
}
.soyogiconresult .subprize li {
	background-color: #d1eff7;
	width: 85%;
	margin: 10px auto;
	padding: 7px 15px;
	text-align: center;
	border-radius: 100px;
}
.soyogiconresult .subprize li span {
	display: inline-block;
	font-size: 17px;
	font-family: "Zen Old Mincho", serif;
	font-weight: 900;
	font-style: normal;
	line-height: 1.2em;
	transform-origin: center;
	transform: scaleX(0.6);
}



/*
受賞者情報
*/
.soyogiconresult .winner {
	margin: 0 auto;
	text-align: center;
}

/*アイコン*/
.soyogiconresult .winner > figure {
	width: 60px;
	height: 60px;
	margin: 20px auto;
	border-radius: 100px;
	overflow: hidden;
}
.soyogiconresult .winner > figure img {
	width: 100%;
	height: auto;
}

/*お名前*/
.soyogiconresult .winner h4 {
	font-size: 16px;
}



/*
作品表示まわり：汎用
*/
.soyogiconresult .work {
	box-sizing: border-box;
	background-color: #ffffff;
	margin: 0 auto;
	padding: 10px;
	text-align: center;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.soyogiconresult #cat_illust .work a {
	display: flex;
	align-items: center;
	height: 100%;
}



/*
作品表示まわり：イラスト
*/
.soyogiconresult #cat_illust .work {
	/*
	height: 400px;
	*/
}
.soyogiconresult #cat_illust .work img {
	box-sizing: border-box;
	display: inline-block;
	max-width: 100%;
	max-height: 400px;
	margin: 0 auto;
}

/*作品表示まわり：イラスト：動画タイプ専用*/
.soyogiconresult #cat_illust .work.type_sp_1 video {
	width: 100%;
	height: 100%;
	margin: 0 auto;
}

/*作品表示まわり：イラスト：最優秀賞専用*/
.soyogiconresult #cat_illust .award_1 .work {
	width: 300px;
	height: 429px;
}
.soyogiconresult #cat_illust .award_1 .work img {
	width: 100%;
	max-height: inherit;
}

/*作品表示まわり：イラスト：優秀賞専用*/
.soyogiconresult #cat_illust .award_2 .work {
	width: 300px;
	height: 300px;
}
.soyogiconresult #cat_illust .award_2 .work img {}



/*
作品表示まわり：トーク＆ソング
*/
.soyogiconresult #cat_talk .award_3 .work,
.soyogiconresult #cat_song .award_3 .work,
.soyogiconresult #cat_talk .award_3 .work iframe,
.soyogiconresult #cat_song .award_3 .work iframe {
	width: 100%;
}



/*
最優秀賞専用
*/
.soyogiconresult .award_1 .detail {
	background-image: url(../images/result_pattern_bg_2.png);
	background-repeat: repeat;
	background-size: 400px auto;
	background-color: #ffffff;
	width: 100%;
	margin: 0 auto 60px auto;
	padding: 140px 0 60px 0;
	border-radius: 0;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/*作品*/
.soyogiconresult .award_1 .work {
    position: relative;
    bottom: -100px;
}
.soyogiconresult #cat_talk .award_1 .work,
.soyogiconresult #cat_song .award_1 .work,
.soyogiconresult #cat_talk .award_1 .work iframe,
.soyogiconresult #cat_song .award_1 .work iframe {
	width: 90%;
	/*
	height: 169px;
	*/
}

/*背景パネル*/
.soyogiconresult .award_1 .wrapper {
	position: relative;
}
.soyogiconresult .award_1 .wrapper .current {
	z-index: 2;
	position: relative;
}
.soyogiconresult .award_1 .bgobj {
	z-index: 1;
	position: absolute;
	bottom: 10%;
	right: 0;
	background-image: url(../images/result_prize_bg.png), linear-gradient(120deg, #edeaff, #e7f6ff, #edeaff);
	background-position: center center;
	background-size: 3200px, auto;
	width: 100%;
	height: 60%;
}



/*
優秀賞専用
*/
.soyogiconresult .award_2 {
	box-sizing: border-box;
	position: relative;
	background-image: url(../images/result_pattern_bg_3.png);
	background-repeat: repeat;
	background-size: 400px auto;
	background-color: #f9f8f2;
	padding: 0 0 60px 0;
}

/*作品*/
.soyogiconresult .award_2 .work {
    position: relative;
    bottom: 40px;
}
.soyogiconresult #cat_talk .award_2 .work,
.soyogiconresult #cat_song .award_2 .work,
.soyogiconresult #cat_talk .award_2 .work iframe,
.soyogiconresult #cat_song .award_2 .work iframe {
	/*
	width: 600px !important;
	height: 353px !important;
	*/
}



/*
その他専用
*/
.soyogiconresult .award_3 {
	box-sizing: border-box;
	position: relative;
	background-image: url(../images/result_pattern_bg_3.png);
	background-repeat: repeat;
	background-size: 400px auto;
	background-color: #f9f8f2;
	padding: 40px 0 20px 0;
}

.soyogiconresult .award_3 .current {
	display: flex;
	align-items: start;
	justify-content: center;
	flex-wrap: wrap;
}
.soyogiconresult .award_3 .current > div {
	width: 320px;
	margin: 0 20px 40px 20px;
}

.soyogiconresult .award_3 .winner h4 {
	font-size: 15px;
}

.soyogiconresult .award_3 .winner > figure {
	margin: 20px auto;
}



/*
審査員特別賞専用
*/
.soyogiconresult .award_3.award_judges .current > div {
	width: auto;
}

/*作品*/
.soyogiconresult .award_judges .work {
	width: 90%;
	height: auto;
}
.soyogiconresult .award_judges .work img {
	max-width: fit-content;
}

/*作品：トーク＆ソング*/
.soyogiconresult #cat_talk .award_judges .work,
.soyogiconresult #cat_song .award_judges .work,
.soyogiconresult #cat_talk .award_judges .work iframe,
.soyogiconresult #cat_song .award_judges .work iframe {
	/*
	width: 300px;
	height: 169px;
	*/
}



/*
フラクタル賞専用
*/
.soyogiconresult .award_3.award_fractal .current > div {
	width: auto;
}

/*作品*/
.soyogiconresult .award_fractal .work {
	width: 90%;
	height: auto;
}
.soyogiconresult .award_fractal .work img {
	max-width: fit-content;
}

/*作品：トーク＆ソング*/
.soyogiconresult #cat_talk .award_fractal .work,
.soyogiconresult #cat_song .award_fractal .work,
.soyogiconresult #cat_talk .award_fractal .work iframe,
.soyogiconresult #cat_song .award_fractal .work iframe {
	/*
	width: 464px;
	height: 273px;
	*/
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
結果発表トップ：汎用_end
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
結果発表トップ：参加賞_start
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
#participation {
	background-color: #ffffff;
	background-image: url(../images/result_pattern_bg_2.png);
	background-size: 300px auto;
	background-repeat: repeat;
	margin: 0 0 100px 0;
	padding: 0 0 40px 0;
}



#participation .subtitle {
	margin: 0 0 60px 0;
	padding: 60px 0 0 0;
}



#participation .winnerlist {
	width: 85%;
	margin: 0 auto;
}

#participation .winnerlist li {
	margin: 20px 0;
	padding: 20px;
	text-align: center;
	border-bottom: 1px #cfcfcf dotted;
}
#participation .winnerlist li:last-child {
	border: none;
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
結果発表トップ：参加賞_end
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
結果発表トップ：審査員コメント_start
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
#judgescomments {}



/*
タイトル
*/
#judgescomments .subtitle {
	margin: 0 0 60px 0;
	padding: 60px 0 0 0;
}



/*
大枠
*/
.commentlist .judeges_box {
	position: relative;
	box-sizing: border-box;
	background-image: url(../images/result_judges_bg.png);
	background-repeat: no-repeat;
	background-size: auto 100%;
	background-position: left center;
	background-color: #ffffff;
	width: 100%;
	margin: 0 auto 60px auto;
	padding: 110px 30px 30px 30px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}



/*
写真
*/
.commentlist .judeges_box .photo {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: -30px;
	left: 50%;
	width: 120px;
	height: 120px;
	margin: 0 0 0 -60px;
	overflow: hidden;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.commentlist .judeges_box .photo img {
	position: relative;
}
.commentlist .judeges_box.set_1 .photo img {
	top: 21px;
	width: 101%;
}
.commentlist .judeges_box.set_2 .photo img {
	width: 100%;
}
.commentlist .judeges_box.set_3 .photo img {
	width: 100%;
}
.commentlist .judeges_box.set_4 .photo img {
	width: 100%;
}



/*
お名前・肩書
*/
.commentlist .judeges_box .profile h4,
.commentlist .judeges_box .profile h3 {
	font-family: "Zen Old Mincho", serif;
	font-weight: 900;
	font-style: normal;
	line-height: 1.2em;
	transform-origin: left;
	transform: scaleX(0.6);
}
.commentlist .judeges_box .profile h4 {
	margin: 0 0 15px 0;
	font-size: 20px;
}
.commentlist .judeges_box .profile h3 {
	margin: 0 0 40px 0;
	font-size: 40px;
}



/*
コメント
*/
.commentlist .judeges_box .comment p {
	margin: 0 0 1em 0;
	font-size: 14px;
	line-height: 1.75em;
}
.commentlist .judeges_box .comment p:last-child {
	margin: 0;
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
結果発表トップ：審査員コメント_end
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/









/*――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――

下層（xxxx）

――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――*/
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
xxxx：汎用_start
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
/*
コンテンツ
*/

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
xxxx：汎用_end
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/









/*――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――

下層（xxxx）

――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――*/
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
xxxx：汎用_start
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
/*
コンテンツ
*/

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
xxxx：汎用_end
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/