@charset "utf-8";
@viewport {
	zoom: 1.0;
	width: extend-to-zoom;
}
body, html, div, p, ul, ol, dl, section, header, footer, h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	position: relative;
	min-width: 0;
	-webkit-margin-before: 0;
	-webkit-margin-after: 0;
	-webkit-margin-start: 0;
	-webkit-margin-end: 0;
	-webkit-padding-before: 0;
	-webkit-padding-after: 0;
	-webkit-padding-start: 0;
	-webkit-padding-end: 0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
img {
	max-width: 100%;
	vertical-align: middle;
}
ul, li {
	list-style-type: none;
}
html {
	-webkit-text-size-adjust: 100%;
	/* iOSフォントサイズ対策 */
}
body, html {
	width: 100vw;
	min-height: 100vh;
	overflow-x: hidden;
}
body {
	min-height: 100%;
	font-family: 'Hiragino Kaku Gothic Pro', 'Yu Gothic', 'Meiryo', 'Osaka', 'MS Gothic', 'Arial', 'Helvetica', sans-serif;
	font-size: 15px;
	line-height: 1.8;
	color: #000000;
	background: #F5F5F5;
}
@media (max-width:768px) { 
	body {
		font-size: 14px;
	}
}
/* 見出し */

h1 {
	font-size: 2em;
	font-weight: bold;
}
h2 {
	font-family: 'Zen Kaku Gothic New';
	font-size: 1.8em;
	font-weight: bold;
	letter-spacing: 2px;
}
h3 {
	font-family: 'Zen Kaku Gothic New';
	font-size: 1.6em;
	font-weight: bold;
	letter-spacing: 2px;
}
h4 {
	font-size: 1em;
	font-weight: bold;
}
h5 {
	font-size: 1em;
	font-weight: bold;
}
h6 {
	font-size: 1em;
	font-weight: bold;
}

@media (max-width:768px) { 
	h2 {
		font-size: 22px;
		line-height: 1.4em;
	}
	h3 { font-size: 18px;}
}
/* 文字 */

p {
	text-align: left;
	line-height: 1.6em;
}
.small {
	font-size: 60%;
}
/* リンク */

a {
	color: #000000;
	text-decoration: none;
	transition: all 0.2s ease;
	cursor: pointer;
}
a img {
	zoom: 1;
	opacity: 1;
	filter: alpha(opacity=100);
	transition: opacity .2s ease-in-out;
	transform: translateX(0);
	-webkit-transform: translateX(0);
	filter: blur(0);
	-webkit-filter: blur(0);
	-webkit-backface-visibility: hidden;
	/* ホバーで画像が動かない用に */
}
a:hover {
	color: #1386B9;
}
/* ボタン */
.btn {
	position: relative;
	display: inline-block;
	width: 100%;
	max-width: 270px;
	padding: 15px 20px;
	background: #EE5D6C;
	color: #fff;
	border: solid 2px #000000;
	border-radius: 5px;
	font-size: 16px;
	font-weight: bold;
	line-height: 100%;
	text-align: center;
	letter-spacing: 0.1em;
	box-sizing: border-box;
	transition: .2s;
	margin-top: 20px;
	white-space: nowrap;
}
.btn-orange {
	background: #FF8000;
}
.btn-blue {
	background: #1386B9;
}
.btn-black {
	background: #000000;
}
.btn:hover {
	background: #1386B9;
	color: #FFF;
}
.footer-btn {
	margin: 30px auto 0;
	text-align: center;
}
.btn-slash .btn {
	margin-top: 10px;
}
.page-jump-btn .btn-orange:hover {
	opacity: .7;
	background: #FF8000;
}
.page-jump-btn .btn-blue:hover {
	opacity: .7;
}
.page-jump-btn .btn-black:hover {
	opacity: .7;
	background: #000000;
}

@media (max-width:768px) {
	.btn { 
		width: 100%;
		max-width: inherit;
	}
	a.btn { font-size: 14px;}
}

/* レイアウト */

.wrapper {
	/* 巨大画面用 */
	max-width: 2000px;
	margin: 0 auto;
}
.container {
	max-width: 1200px;
	margin: auto;
}
.container h1,
.container h2,
.container h3,
.container h4 {
	text-align: center;
}
.display-pc {
	display: block;
}
.display-sp {
	display: none;
}
@media (max-width:768px) {
	.display-pc {
		display: none;
	}
	.display-sp {
		display: block;
	}
}

/* ナビ */
.header-contents {
	display: flex;
	position: fixed;
	top: 0;
	left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
	z-index: 100;
	background: none;
	width: 98%;
	justify-content: space-between;
}
.header-logo,
.nav-menu ul li  {
	background: #FFF;
	border-radius: 5px;
	border: solid 2px #000000;
	margin-top: -15px;
}
.header-logo a,
.nav-menu ul li a {
	display: block;
	padding: 30px 15px 10px;
}
.header-logo a img {
	width: 150px;
}
.nav-menu ul {
	display: flex;
	gap: 10px;
}
.nav-menu ul li {
	position: relative;
	font-weight: bold;
	font-size: 1.1em;
	transition: all .3s;
}
.nav-menu ul li:hover {
	transform: translateY(5px);
}
.nav-menu ul li a {
	padding-right: 40px;
}
.nav-menu ul li a:hover {
	color: #000000;
}
.nav-menu ul li::before,
.nav-menu ul li::after {
	content: "";
	position: absolute;
	top: 53%;
	transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
	right: 15px;
	width: 3px;
    height: 12px;
	border-radius: 9999px;
	background-color: #000000;
	transform-origin: 50% calc(100% - 1px);
}
.nav-menu ul li::before {
  transform: rotate(45deg);
}
.nav-menu ul li::after{
  transform: rotate(-45deg);
}
.nav-menu ul li:last-child {
	background: #EE5D6C;
	color: #FFF;
}
.nav-menu ul li:last-child a {
	color: #FFF;
}
.nav-menu ul li:last-child::before,
.nav-menu ul li:last-child::after {
	background-color: #FFF;
}
.nav-pc {
	display: block;
}
.nav-sp {
	display: none;
}
@media (max-width:768px) {
	.nav-pc {
		display: none;
	}
	.nav-sp {
		display: block;
	}
	.nav-sp ul {
		justify-content: center;
	}
	.header-logo a img {
		width: 100px;
	}
	.nav-menu ul li {
		width: -webkit-fill-available;
		z-index: 1;
		max-width: 130px;
	}
	.nav-menu ul li a {
		padding: 10px 15px 10px;
		font-size: 0.9em;
	}
	.nav-menu ul li::before,
	.nav-menu ul li::after {
		top: 38%;
	}
}
@media (max-width:500px) {
	.header-logo a {
		padding-top: 20px;
	}
}
@media (max-width:400px) {
	.nav-menu ul {
		gap: 5px;
	}
	.nav-menu ul li {
		width: fit-content;
	}
	.nav-menu ul li a {
		padding: 10px 30px 10px 10px;
	}
}

/* FV */
#fv {
	background: #1386B9;
	width: 100%;
	position: relative;
}
#fv .container {
	display: block;
	background-image: url(https://s3.ap-northeast-1.amazonaws.com/pro.skima-landing/award/202512/fv_back.svg);
	width: 100%;
	max-width: none;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding: 40px 0 20px;
}
#fv .container h1 {
	z-index: 10;
}
#fv .container h1 img {
	max-width: 1200px;
	width: 100%;
}
#fv::before,
#fv::after {
	position: absolute;
	content: '';
	background-image: url(https://s3.ap-northeast-1.amazonaws.com/pro.skima-landing/award/202512/fv_side_text.svg);
	top: 0;
	left: 0;
    width: 44px;
    height: 100%;
	z-index: 1;
	background-repeat: repeat-y;
}
#fv::after {
	left: inherit;
	right: 0;
	transform: rotate(180deg);
}
@media (max-width:768px) {
	#fv .container {
		padding: 20px 0;
	}
}
/*イントロ*/
#introduction {
	padding: 50px 10px;
	position: relative
}
#introduction::before {
	position: absolute;
	content: '';
	background-image: url(https://s3.ap-northeast-1.amazonaws.com/pro.skima-landing/award/202512/bk_img01.png);
	top: -50px;
	left: -250px;
	width: 850px;
	height: 490px;
	background-size: 100%;
	background-repeat: no-repeat;
	z-index: -1;
}
#introduction::after {
	position: absolute;
	content: '';
	background-image: url(https://s3.ap-northeast-1.amazonaws.com/pro.skima-landing/award/202512/bk_img02.png);
	top: 500px;
	right: 0;
	width: 670px;
	height: 461px;
	background-size: 100%;
	background-repeat: no-repeat;
	z-index: -1;
}
.item-wrapper {
	display: flex;
	justify-content: space-between;
	align-items:flex-start;
}
.item-container {
	background: #FFF;
	border: solid 2px #000000;
	border-radius: 10px;
	width: 49%;
	padding: 30px 20px;
	position: relative;
}
.item-container:nth-of-type(2) {
	margin-top: 60px;
}
.item-container.scroll-container {
	padding-bottom: 55px;
}
.item-full {
	width: 100%;
}
.btn-scroll {
	position: absolute;
	width: 70px;
	height: 70px;
	background: #FFF;
	border: solid 2px #000000;
	border-radius: 50%;
	bottom: -35px;
	left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
	transition: .3s;
	text-align: center;
}
.btn-scroll:hover {
	background: #1386B9;
}
.btn-scroll a {
	display: block;
	width: 70px;
	height: 70px;
	border-radius: 50%;
}
.scroll-arrow {
	position: relative;
	display: inline-block;
	width: 3px;
	height: 30px;
	margin-right: 11.3px;
	border-radius: 9999px;
	background: #000000;
	margin-top: 16px;
	margin-left: 5px;
}
.scroll-arrow::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 3px;
	height: 15px;
	border-radius: 9999px;
	background: #000000;
	transform: rotate(45deg);
	transform-origin: 50% calc(100% - 2px);
}
.btn-scroll:hover a .scroll-arrow,
.btn-scroll:hover a .scroll-arrow::before{
	background: #FFF;
}
@media (max-width:768px) {
	#introduction {
		padding: 30px 10px 20px;
	}
	.item-wrapper {
		display: block;
	}
	.item-container {
		width: 100%;
		padding: 20px 10px;
	}
	.item-container:nth-of-type(2) {
		margin-top: 20px;
	}
	#introduction .container .item-container.item-full {
		margin-top: 50px;
	}
}

/*受賞者*/
#award-winners {
	background: #1386B9;
	margin: 60px auto;
	position: relative;
}
#award-winners::before {
	position: absolute;
	content: '';
	background-image: url(https://s3.ap-northeast-1.amazonaws.com/pro.skima-landing/award/202512/award-winner.svg);
	background-repeat: no-repeat;
	width: 800px;
	height: 142px;
	background-size: 100%;
	top: 0;
	right: 0;
	z-index: 1;
}
#award-winners::after {
	position: absolute;
	content: '';
	background-image: url(https://s3.ap-northeast-1.amazonaws.com/pro.skima-landing/award/202512/img_stick01.png);
	background-repeat: no-repeat;
	width: 257px;
	height: 176px;
	background-size: 100%;
	top: 45px;
    right: -25px;
	z-index: 1;
}
#award-winners .container {
	content: '';
	padding: 70px 10px;
	background-image: url(https://s3.ap-northeast-1.amazonaws.com/pro.skima-landing/award/202512/sec02_bk.svg);
	width: 100%;
	max-width: none;
}
#award-winners h2,
#award-winners p {
	color: #FFF;
}
.winners-list {
	width: 100%;
	max-width: 1200px;
	margin: 30px auto;
	z-index: 10;
}
.winners-list ul {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	justify-content: center;
}
.winners-list ul li {
	position: relative;
	overflow: hidden;
	width: 200px;
	cursor: pointer;
	border: solid 2px #000000;
	box-sizing: border-box;
	border-radius: 3px;
}
.winners-list ul li .img-caption {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	background-color: rgba(0,0,0,0.5);
	transition: all .3s ease;
	color: #FFF;
	font-size: 14px;
}
.winners-list ul li .img-caption p {
	text-align: center;
	line-height: 1.5em;
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
	width: 100%;
}
.winners-list ul li .img-caption p .caption-name {
	font-size: 1.1em;
	font-weight: bold;
}
.winners-list ul li:hover .img-caption {
	opacity: 1;
}
@media (max-width:768px) {
	#award-winners::before {
		width: 500px;
		height: 45px;
	}
	#award-winners::after {
		display: none;
	}
	.winners-list ul {
		gap: 15px;
	}
	.winners-list ul li {
		width: 160px;
	}
}
@media (max-width:500px) {
	#award-winners .container {
		padding: 50px 10px;
	}
	#award-winners::before {
		width: 350px;
        height: 30px;
	}
}
/*受賞者コメント*/
#comment {
	position: relative;
}
#comment::before {
	content: '';
	position: absolute;
	background-image: url(https://s3.ap-northeast-1.amazonaws.com/pro.skima-landing/award/202512/comment.svg);
	top: -62px;
	left: 0;
	width: 540px;
	height: 70px;
	background-size: 100%;
	background-repeat: no-repeat;
}
.comment-wrapper {
	margin: 30px auto 80px;
	position: relative;
}
.comment-wrapper::before,
.comment-wrapper::after {
	content: '';
	position: absolute;
	background-image: url(https://s3.ap-northeast-1.amazonaws.com/pro.skima-landing/award/202512/bk_img02.png);
	top: -260px;
	right: -65px;
	width: 780px;
	height: 570px;
	background-size: 100%;
	background-repeat: no-repeat;
	z-index: -1;
}
.comment-wrapper::after {
	top: inherit;
	right: inherit;
	bottom: -235px;
    left: -225px;
}
.icon-thumbnail {
	display: flex;
	justify-content: center;
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	flex-wrap: wrap;
	gap: 5px;
}
.comment-slider {
	margin: 0 auto;
}
.comment-container {
	position: relative;
	background: #FFF;
	border: solid 2px #000000;
	border-radius: 10px;
	min-height: 500px;
	padding: 30px 15px;
	margin: 0 auto;
	max-width: 1000px;
	width: 100%;
}
.slider .swiper-wrapper .swiper-slide.mt-70 {
	margin-top: 70px;
}
.award-name {
	position: absolute;
	top: -10px;
	left: -10px;
	padding: 3px 10px;
	background: #000000;
	border-radius: 3px;
	color: #FFF;
}
.award-twice {
	position: absolute;
	width: 66px;
	top: -28px;
    left: -33px;
    z-index: 1;
}
.award-twice + .award-name {
	margin-left: 36px;
}
.creator-profile {
	display: flex;
}
.creator-icon {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: solid 2px #000000;
	box-sizing: border-box;
}
.creator-icon:hover {
	opacity: .8;
}
.creator-detail {
	margin-left: 10px;
}
.creator-detail p img {
	display: inline-block;
}
.creator-tag {
	display: flex;
	gap: 5px;
	margin: 10px 0 15px;
	width: calc(100% - 400px);
	flex-wrap: wrap;
}
.creator-tag li {
	border-radius: 50px;
	border: solid 1px #000000;
	padding: 0 10px;
}
.creator-tag li::before {
	content: '#';
}
.creator-illust {
	width: 420px;
	height: 420px;
	outline: solid 2px #000000;
	outline-offset: -2px;
	border-radius: 10px;
	position: absolute;
    top: -25px;
    right: -25px;
}
.creator-text {
	width: calc(100% - 400px);
}
@media (max-width:768px) {
	#comment::before {
		width: 420px;
		height: 58px;
	}
	.comment-wrapper::before,
	.comment-wrapper::after {
		width: 545px;
		height: 309px;
	}
}
@media (max-width:500px) {
	#comment::before {
		width: 300px;
        height: 45px;
	}
}

/* スライダーサムネイル */
.slider-thumbnail .swiper-slide {
	transition: all .5s;
	width: 100px!important;
	border-radius: 3px;
	border: solid 2px #C2C2CC;
	cursor: pointer;
	margin: 0 5px;
}
.slider-thumbnail .swiper-slide img {
	width: 100px;
}
.slider-thumbnail .swiper-slide.swiper-slide-thumb-active {
	border: solid 2px #EE5D6C;
}
.swiper {
	width: 100%;
	margin: 90px auto 100px;
	overflow: visible;
}
.swiper.slider-thumbnail {
	margin: 0;
}
/* 矢印 */
.arrow-box {
	position: absolute;
	max-width: 1150px;
	width: 100%;
	margin: 0 auto;
	left: 50%;
	transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
	top: 50%;
	z-index: 2;
}
.swiper-button-prev,
.swiper-button-next {
	height: 50px;
	width: 50px;
}
.swiper-button-prev::after,
.swiper-button-next::after {
	content: "";
	position: absolute;
	background-repeat: no-repeat;
	background-size: contain;
	height: 50px;
	width: 50px;
	margin: auto;
}
.swiper-button-prev::after {
	left: 0;
	background-image: url(https://s3.ap-northeast-1.amazonaws.com/pro.skima-landing/award/202512/slider-arrow.svg);
	transform: rotateZ(180deg)!important;
}
.swiper-button-next::after {
	right: -10px;
	background-image: url(https://s3.ap-northeast-1.amazonaws.com/pro.skima-landing/award/202512/slider-arrow.svg);
}
.swiper-button-next, .swiper-button-prev {
    svg {
        display: none;
    }
}

@media (max-width:1023px) {
	.swiper {
		margin-bottom: 0;
	}
	.comment-container {
		width: 96%;
	}
	.creator-text,
	.creator-tag {
		width: calc(100% - 300px);
	}
	.creator-illust {
		width: 330px;
		height: 330px;
		right: -15px
	}
	.comment-container .footer-btn {
		margin-top: 0;
	}
	.arrow-box {
		position: inherit;
		max-width: 150px;
		top: 35px;
        right: 0;
	}
	.swiper-button-prev,
	.swiper-button-next,
	.swiper-button-prev::after,
	.swiper-button-next::after {
		width: 40px;
		height: 40px;
	}
	.award-twice {
		left: -5px;
		top: -40px;
	}
	.award-twice + .award-name {
		margin-left: 65px;
		top: -23px;
	}
	.slider .swiper-wrapper .swiper-slide.mt-70 {
		margin-top: 0;
	}
}
@media (max-width:768px) {
	.swiper {
		margin-top: 85px;
	}
	.comment-wrapper {
		margin-bottom: 0;
	}
	.comment-container {
		padding-bottom: 50px;
	}
	.arrow-box {
		top: 55px;
		max-width: 110px;
	}
	.swiper-button-prev,
	.swiper-button-next,
	.swiper-button-prev::after,
	.swiper-button-next::after {
		width: 30px;
		height: 30px;
	}
	.creator-text,
	.creator-tag {
		width: 100%;
	}
	.creator-illust {
		position: inherit;
		margin-left: auto;
		margin-top: -10px;
		right: 0;
	}
}
@media (max-width:650px) {
	.slider-thumbnail .swiper-slide,
	.slider-thumbnail .swiper-slide img {
		width: 63px!important;
	}
}
/* キャンペーン */
#campaign {
	background: #1386B9;
}
#campaign::before {
	position: absolute;
	content: '';
	background-image: url(https://s3.ap-northeast-1.amazonaws.com/pro.skima-landing/award/202512/campaign.svg);
	background-repeat: no-repeat;
	width: 580px;
	height: 74px;
	background-size: 100%;
	top: -2px;
	right: 0;
	z-index: 1;
}
#campaign  .container {
	padding: 50px 10px;
	content: '';
	padding: 70px 10px;
	background-image: url(https://s3.ap-northeast-1.amazonaws.com/pro.skima-landing/award/202512/sec04_bk.svg);
	width: 100%;
	max-width: none;
}
#campaign h2 {
	color: #FFF;
}
.h-band {
	background: #000000;
	border-radius: 3px;
	padding: 3px 5px;
	color: #FFF;
	display: inline-block;
	font-size: 22px;
}
.campaign-wrapper {
	background: #FFF;
	border: solid 2px #000000;
	border-radius: 10px;
	padding: 30px 20px;
	width: 100%;
	max-width: 1200px;
	margin: 20px auto;
	position: relative;
}
.campaign-wrapper::before {
	position: absolute;
    content: '';
    background-image: url(https://s3.ap-northeast-1.amazonaws.com/pro.skima-landing/award/202512/img_stick02.png);
    background-repeat: no-repeat;
    width: 365px;
    height: 195px;
    background-size: 100%;
	top: -75px;
    left: -115px;
    z-index: 1;
}
.page-jump-btn .btn {
	margin: 10px 10px 0 10px;
	position: relative;
}
.page-jump-btn .btn::before {
	position: absolute;
	display: inline-block;
	content: "";
	width: 3px;
	height: 20px;
	border-radius: 9999px;
	background: #FFF;
	right: 15px;

}
.page-jump-btn .btn::after {
	content: "";
	position: absolute;
	bottom: 9px;
	right: 15px;
	width: 3px;
	height: 13px;
	border-radius: 9999px;
	background: #FFF;
	transform: rotate(45deg);
	transform-origin: 50% calc(100% - 2px);
}

.campaign-container {
	border: solid 2px #000000;
	padding: 50px 20px 30px;
	border-radius: 5px;
	position: relative;
	margin: 60px 0;
}
.campaign-container::after {
	position: absolute;
    content: '';
    background-image: url(https://s3.ap-northeast-1.amazonaws.com/pro.skima-landing/award/202512/img_stick03.png);
    background-repeat: no-repeat;
    width: 302px;
    height: 213px;
    background-size: 100%;
	bottom: -41px;
    right: -115px;
    z-index: 1;
}
.campaign-container:last-child::after {
	display: none;
}
.campaign-container:last-child::before {
		position: absolute;
    content: '';
    background-image: url(https://s3.ap-northeast-1.amazonaws.com/pro.skima-landing/award/202512/img_stick04.png);
    background-repeat: no-repeat;
    width: 255px;
    height: 173px;
    background-size: 100%;
	bottom: -41px;
    left: -115px;
    z-index: 1;
}
.balloon-wrapper {
	position: absolute;
	top: -25px;
	left: 50%;
	transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
.balloon {
	display: inline-block;
	padding: 5px 15px;
	position: relative;
	background-color: #FF8000;
	border: 2px solid #000000;
	border-radius: 5px;
	font-size: 1.2em;
	color: #FFF;
	min-width: 270px;
	text-align: center;
}
.balloon:before,
.balloon:after {
	content: '';
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -15px;
	border-top: 15px solid #000000;
	border-right: 15px solid transparent;
	border-left: 15px solid transparent;
}
.balloon:after {
	bottom: -13px;
	border-top: solid 15px #FF8000;
}
.balloon-buyer {
	background: #1386B9;
}
.balloon-buyer:after {
	border-top: solid 15px #1386B9;
}
.campaign-container .btn-black {
	margin: 30px auto;
	display: block;
}
.campaign-gray {
	background: #F5F5F5;
	padding: 20px 10px;
	border-radius: 5px;
}
.campaign-flow {
	display: flex;
	gap: 30px;
	margin-top: 15px;
}
.campaign-flow-inner {
	background: #FFF;
	border-radius: 0 0 3px 3px;
	flex: 1;
	position: relative;
}
.campaign-flow-inner::after {
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	right: -25px;
	border-top: 40px solid transparent;
	border-bottom: 40px solid transparent;
	border-left: 25px solid #FFF;
}
.campaign-flow-inner:last-child::after {
	display: none;
}
.h-flow {
	background: #FF8000;
	color: #FFF;
	font-weight: bold;
	text-align: center;
	padding: 10px 0;
	border-radius: 3px 3px 0 0;
}
.h-flow-blue {
	background: #1386B9;
}
.flow-text {
	padding: 20px 10px;
}
.campaign-flow-inner img {
	max-width: 350px;
	width: 95%;
    margin: 20px auto 0;
    display: block;
}
.important-points {
	margin: 20px 0 50px;
	text-indent: -1em;
	padding-left: 1em;
}
.illust-detail {
	display: flex;
	margin: 20px auto;
	justify-content: space-between;
	gap: 20px;
}
.illust-detail-left,
.illust-detail-right {
	width: 50%;
}
.chara-container {
	display: flex;
	gap: 15px;
	justify-content: space-between;
}
.chara-container li {
	width: 160px;
	height: auto;
	border: solid 1px #9F9F9F;
	border-radius: 3px;
}
.chara-container li img {
	border-radius: 3px;
}
.color-code-container {
	display: flex;
	width: 100%;
	margin-bottom: 5px;
}
.color-code {
	background: #5552cc;
	color: #FFF;
	font-weight: bold;
	width: 50%;
	border-radius: 3px 0 0 3px;
	padding: 20px 10px;
	text-align: center;
}
.color-code:nth-of-type(2) {
	background: #f24444;
	border-radius: 0 3px 3px 0;
}
.color-code-simple {
	background: #FFF;
	border: solid 1px #9F9F9F;
	border-radius: 3px;
	padding: 10px;
	margin-top: 5px;
}
.color-code-simple p {
	text-align: center;
}
.color-code-simple p a {
	color: #12A6E8;
	border-bottom: solid 1px #12A6E8;
}
.illust-ng-ok {
	display: flex;
	gap: 20px;
}
.illust-ng,
.illust-ok {
	display: flex;
	border: solid 1px #9F9F9F;
	border-radius: 3px;
	padding: 10px 20px;
	background: #FFF;
}
.illust-ng img,
.illust-ok img {
	width: 184px;
	object-fit: contain;
}
.illust-ng ul li,
.illust-ok ul li {
	text-indent: -1em;
	padding-left: 1em;
}
.img-9kk {
	max-width: 750px;
	width: 100%;
	margin: 15px auto;
	text-align: left;
}
.text-slash {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}
.text-slash::before,
.text-slash::after {
	content: "";
	width: 22px;
	height: 2px;
	background-color: #000;
	margin: 0px 4px 4px;
	border-radius: 5px;
}
.text-slash::before {
	transform: rotate(55deg);
}
.text-slash::after {
	transform: rotate(-55deg);
}
.banner-9kk {
	width: 100%;
	margin: 30px auto 0;
	text-align: center;
}
.banner-9kk p img {
	width: 100px;
	margin-right: 5px;
}
.banner-9kk-link {
	display: flex;
	align-items: center;
    justify-content: center;
	margin-top: 10px;
	font-weight: bold;
	font-size: 1.3em;
	display: inline-block;
	line-height: 1.3;
}
.banner-9kk-link a {
	color: #1386B9;
	border-bottom: solid 2px #1386B9;
}
.banner-9kk-link a:hover {
	color: #EE5D6C;
	border-bottom: solid 2px #EE5D6C;
}
.banner-9kk-link a::before {
  transform: rotate(45deg);
}
.banner-9kk-link a::after {
  transform: rotate(-45deg);
}
.banner-9kk-link a:hover:before,
.banner-9kk-link a:hover:after {
	background: #1386B9;
}
.text-link-9kk {
	color: #1386B9;
	border-bottom: solid 1px #1386B9;
}
.text-link-9kk:hover {
	color: #EE5D6C;
	border-bottom: solid 1px #EE5D6C;
}
@media (max-width:1100px) {
	.campaign-wrapper::before {
		width: 250px;
		height: 135px;
		top: -55px;
		left: -90px;
	}
	.campaign-container::after {
		width: 253px;
		height: 180px;
	}
}
@media (max-width:900px) {
	.campaign-wrapper::before {
		left: -138px;
	}
	.campaign-flow {
		display: block;
	}
	.campaign-flow-inner {
		margin-bottom: 50px;
	}
	.campaign-flow-inner:last-child {
		margin-bottom: 0;
	}
	.campaign-flow-inner::after {
		left: 50%;
		transform: translateX(-50%);
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		right: inherit;
		top: inherit;
		bottom: -65px;
		border-top: 25px solid #FFF;
		border-right: 40px solid transparent;
		border-bottom: 40px solid transparent;
		border-left: 40px solid transparent;
	}
	.illust-detail {
		display: block;
	}
	.illust-detail-left,
	.illust-detail-right {
		width: 100%;
	}
	.chara-container {
		justify-content: center;
		margin-bottom: 15px;
	}
	.illust-ng,
	.illust-ok {
		padding: 10px;
	}
	.illust-ng-ok {
		display: block;
	}
	.illust-ng {
		margin-bottom: 15px;
	}
}
@media (max-width:768px) {
	#campaign .container {
		padding: 50px 10px;
	}
	.campaign-wrapper {
		padding: 30px 10px;
	}
	.campaign-wrapper::before {
		display: none;
	}
	.page-jump-btn .btn {
		margin: 10px 5px;
		width: 46%;
		padding: 15px 0;
	}
	.page-jump-btn .btn.btn-black {
		width: 100%;
		margin: 15px 0 20px;
	}
	#campaign::before {
		width: 390px;
		height: 53px;
	}
	.h-band {
		font-size: 16px;
	}
	.illust-ng,
	.illust-ok {
		display: block;
	}
	.illust-ng .mt-20,
	.illust-ok .mt-20 {
		margin: 0;
	}
	.illust-ng img,
	.illust-ok img {
		width: 100px;
		display: block;
		margin: 0 auto;
	}
	.campaign-container {
		padding: 50px 10px 20px;
	}
	.campaign-container:last-child {
		margin: 60px 0 10px;
	}
	.campaign-container::after {
		display: none;
	}
	.campaign-container:last-child::before {
		display: none;
	}
}
@media (max-width:500px) {
	#campaign::before {
		width: 320px;
		height: 40px;
	}
}
@media (max-width:420px) {
	.page-jump-btn .btn {
		width: 100%;
		margin: 10px 0 5px;
	}
}
/* まとめ */
#round-up .container {
	position: relative;
	padding: 50px 10px;
}
#round-up .container::before,
#round-up .container::after {
	position: absolute;
	content: '';
	background-image: url(https://s3.ap-northeast-1.amazonaws.com/pro.skima-landing/award/202512/bk_img01.png);
	left: -500px;
    top: -90px;
	width: 850px;
	height: 490px;
	background-size: 100%;
	background-repeat: no-repeat;
	z-index: -1;
}
#round-up .container::after {
	left: inherit;
    top: inherit;
	background-image: url(https://s3.ap-northeast-1.amazonaws.com/pro.skima-landing/award/202512/bk_img02.png);
	bottom: -195px;
    right: -510px;
	width: 780px;
	height: 570px;
}


/*過去のSKIMAアワード*/
.look-back {
	background-color: #fff;
	border-radius: 10px;
	position: relative;
	padding: 20px 30px;
	margin: 50px auto;
	width: 100%;
	max-width: 570px;
	border: solid 2px #000000;
}
.link {
	padding: 0 20px;
	font-weight: bold;
	border-right: solid 1px #34495E;
}
.link:last-child {
	border: none;
}
.comment h5 {
	display: inline-block;
}
.rank-icon {
	width: 20px;
	vertical-align: sub;
	margin-right: 5px;
	
}

@media (max-width:768px) {
	.look-back { 
		max-width: 100%;
		margin: 20px 0;
		padding: 20px 0;
	}
	.text-link {
		font-size: 15px;
	}
	.look-back li.link {
		padding: 0 15px;
	}
}
.comment .item {
	margin: 10px;
}
.comment .item:first-child {
	background-color: #fff;
	text-align: left;
	padding: 20px;
	width: 100%;
}
.white-box .comment .item:first-child {
	background-color: #E8F9FF;
}
.gainen {
    position: absolute;
    max-width: 120px;
    right: -50px;
    bottom: -25px;
}

@media (max-width:768px) {
	.comment .item:first-child {width: initial;}
	.look-back .flex-container, footer .flex-container { display: flex;}
	.look-back li { font-size: 20px;}
	.gainen {
		width: 100px;
		right: -18px;
		bottom: -17px;
	}
}
@media (max-width:340px) {
.look-back .flex-container { display: block; border: none;}
.look-back li {border: none;}
}

/* フッター */
footer {
	text-align: center;
	background-color: #1386B9;
	z-index: 150;
	padding: 20px 0;
	border-radius: 30px 30px 0 0;
}
footer h5 {
	margin: 30px 0 0 0;
	color: #fff;
}
.flex-container {
	display: flex;
	justify-content: center;
}
footer .flex-container img {
	margin: 10px;
}
footer .logo {
	margin: 30px 0;
}
footer small {
	text-align: center;
	color: #fff;
	display: block;
}
.helvetica {
	font-family: helvetica
}
/* SNSシェアのとこ */
@keyframes fadeOut {
	from {opacity: 0.7;} to {opacity: 0;}
}
.js__copy-alert {
	display: block; position: fixed;
	padding: 15px;
	background: rgba(54, 63, 72, .9);
	color: #fff;
	text-align: center;
	line-height: 100%;
	bottom: 45px; left: 0; right: 0;
	font-size: 16px;
	width: 500px;
	max-width: 95%;
	margin: auto;
	animation-delay: 4s;
	animation-name: fadeOut;
	animation-duration: 1s;
	z-index: 2000;
}
.logo { 
	max-width: 150px;
}
@media (max-width:768px) {
    .logo { max-width: 120px;}
    }

/* TOPへ戻る */
#top-jump {
	display: none;
}
@media (max-width:768px) {	
	#top-jump {
		display: block;
		position: fixed;
        bottom: 40px;
        right: 35px;
		z-index: 200;
	}
	#top-jump a {
		position: absolute;
		width: 50px;
		height: 50px;
		background: #FF8000;
		border: solid 2px #000000;
		border-radius: 50%;
		bottom: -20px;
		left: 50%;
		transform: translateX(-50%);
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		transition: .3s;
		text-align: center;
	}
	#top-jump .scroll-arrow {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		-webkit-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
		height: 25px;
		margin-top: 0;
		margin-left: 0;
		background: #FFF;
	}
	#top-jump .scroll-arrow::before {
		content: "";
		position: absolute;
		top: 0;
		left: calc(50% - 1px);
		width: 3px;
		height: 15px;
		border-radius: 9999px;
		background-color: #FFF;
		transform: rotate(-45deg);
		transform-origin: 50% 2px;
	}
}


/* 補足クラス */
.center {
	text-align: center;
}
.pink {
	color: #EE5D6C;
}
.blue {
	color: #1386B9;
}
.strong {
	font-weight: bold;	
}
.b-under {
	border-bottom: solid 2px #EE5D6C;
}
.font80 {
	font-size: 80%;
}
.font90 {
	font-size: 90%;
}
.font100 {
	font-size: 100%!important;
}
.font110 {
	font-size: 110%!important;
}
.font120 {
	font-size: 120%!important;
}
.font130 {
	font-size: 130%;
}
.font140 {
	font-size: 140%;
}
.ellipsis {
	width: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.mt-10 {
	margin-top: 10px;
}
.mt-20 {
	margin-top: 20px;
}
.mt-30 {
	margin-top: 30px;
}
.mb-10 {
	margin-bottom: 10px;
}
.mb-20 {
	margin-bottom: 20px;
}

hr { margin-bottom: 20px;}

/* 文字選択スタイル */

::-moz-selection {
	color: #fff;
	background: #EE5D6C;
}
::selection {
	color: #fff;
	background: #EE5D6C;
}