<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
@viewport { zoom: 1.0; width: extend-to-zoom; }
div, ul, ol, dl, section, header, footer, p, h1, h2, h3, h4, h5, h6, small, span, * {
	margin: 0; padding: 0; position: relative;
	-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;
}
button { border: none; -webkit-appearance: none; background: none; cursor: pointer; }
img { max-width: 100%; }
ul, li { list-style-type: none; }
html {
	height: 100%;
	-webkit-text-size-adjust: 100%; /* iOSフォントサイズ対策 */
}
html, body {
	margin: 0; padding: 0; width: 100%; max-width: 100%; overflow-x: hidden;
}
body {
	font-family: 'Noto Sans JP', sans-serif;
	background: #F9FBFF;
	color: #4D6175;
	font-size: 14px;
	letter-spacing: 0.1rem;
}
@media (min-width:900px) {
	body {
		background-image: url("https://s3.ap-northeast-1.amazonaws.com/pro.skima-landing/award/202302/pc/body-bg.png");
		background-repeat: repeat-y;
		background-position: center;
		background-size: 100%;
		font-size: 16px;
	}
}
@media (min-width: 1300px) {
	body {
		background-size: calc(100% - 160px);
	}
}

/* レイアウト */
.container {
	width: 100%;
	max-width: 800px;
	margin: auto;
	padding: 0 15px 0 10px;
	position: relative;
	z-index: 1;
}
@media (min-width:800px) {
	.container {
		padding: 0 15px;
	}
}

/* リンク */
a {
	color: #8ED9FF;
	transition: all 0.2s ease;
}
.anchor-marker {
	display: block; font-size: 0; line-height: 0;
	opacity: 0; outline: 0;
	pointer-events: none;
	transform: translateY(-140px);
}

/* ボタン */
.btn {
	position: relative;
	/* z-index: 1; */
	display: inline-block;
	max-width: 350px;
	padding: 15px;
	margin: 0 0 10px;
	text-align: center;
	text-decoration: none;
	font-size: 1.2em;
	font-weight: bold;
	line-height: 1;
	letter-spacing: 1px;
	background: #FFD470;
	color: #4D6175;
	border-radius: 30px;
	border: 2px solid #4D6175;
	box-sizing: border-box;
}
.btn-pink {
	background: #FFC2D1;
}
.btn:before {
	content: ""; display: block;
	width: 100%; height: 100%;
	position: absolute;
	z-index: -1;
	top: 10px; left: 0;
	background: #FFF;
	border-radius: 30px;
	border: 2px solid #4D6175;
	box-sizing: border-box;
}
.btn-container {
	text-align: center;
	position: relative;
	z-index: 1;
}
.btn-container.multi .btn {
	width: 100%;
	margin: 0 0 25px;
}
@media (min-width: 500px) {
	.btn {
		min-width: 350px;
	}
}
@media (hover: hover) {
	.btn:hover {
		background: #ffe2a0;
	}
	.btn-pink:hover {
		background: #ffd7e1;
	}
}
@media (min-width: 700px) {
	.btn-container.multi {
		display: flex;
		margin-left: -10px!important;
		margin-right: -10px!important;
		width: auto;
	}
	.btn-container.multi .btn {
		flex: 1;
		margin: 0 10px;
		min-width: 0;
	}
}

/* ヘッダー */
.page-header {
	position: fixed;
	z-index: 50;
	top: 0; left: 0;
	background-color: #FFB378;
	width: 100%;
}
.page-header__container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	max-width: 1760px;
	padding: 5px 10px;
	margin: auto;
}
.page-header__register-btn {
	display: inline-block;
	text-decoration: none;
	padding: 5px 16px;
	text-align: center;
	border: 1px solid #4D6175;
	background: #fff;
	color: #FFB378;
	letter-spacing: 1px;
	line-height: 1;
	margin: 0 0 0 30px;
}
.page-header__register-btn:hover {
	color: #4D6175;
}
.page-header__logo {
	line-height: 0; font-size: 0;
}
.page-header__logo img {
	height: 30px;
}
@media (min-width: 1200px) {
	.page-header__container {
		padding: 10px;
	}
	.page-header__logo img {
		height: 30px;
	}
}

/* ナビ */
@media (max-width: 1200px) {
	.page-header__nav {
		display: none;
	}
	.side-nav {
		background-color: #FFB378;
		width: 300px;
		height: 100%;
		position: fixed;
		top: 0; bottom: 0; right: -300px;
		padding: 60px 30px;
		z-index: 100;
		transition: .2s;
	}
	.side-nav.open {
		right: 0;
	}
	.side-nav .page-header__nav-link {
		display: block;
		margin: 0 0 15px;
	}
	.side-nav .page-header__register-btn {
		display: block;
		margin: 30px auto 0;
		width: 80%;
		padding: 15px;
	}
	.side-nav-icon {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 40px; height: 40px;
		padding: 5px;
		cursor: pointer;
	}
	.side-nav .close-icon {
		position: absolute;
		top: 5px; right: 15px;
	}
}
@media (min-width: 1201px) {
	.side-nav, .side-nav-icon {
		display: none;
	}
}
.page-header__nav-link {
	display: inline-block;
	text-decoration: none;
	color: #4D6175;
	padding: 5px 5px 5px 25px;
	margin: 0 10px;
	background-position: left center;
	background-size: 18px;
	background-repeat: no-repeat;
	background-image: url("https://s3.ap-northeast-1.amazonaws.com/pro.skima-landing/award/202302/pc/nav-icon01.svg");
}
@media (hover: hover) {
	.page-header__nav-link:hover {
		filter: brightness(31) saturate(0);
	}
}
.page-header__nav-link:nth-child(2) {
	background-image: url("https://s3.ap-northeast-1.amazonaws.com/pro.skima-landing/award/202302/pc/nav-icon02.svg");
}
.page-header__nav-link:nth-child(3) {
	background-image: url("https://s3.ap-northeast-1.amazonaws.com/pro.skima-landing/award/202302/pc/nav-icon03.svg");
}
.page-header__nav-link:nth-child(4) {
	background-image: url("https://s3.ap-northeast-1.amazonaws.com/pro.skima-landing/award/202302/pc/nav-icon04.svg");
}

/* FV */
.fv {
	padding: 80px 0 0;
}
.fv-head {
	text-align: center;
	padding: 0 10px;
	margin: 50px auto 85px;
	width: 100%;
	max-width: 1070px;
}
@media (max-width: 800px) {
	.fv-intro {
		width: 100%;
		max-width: 600px;
		margin: 0 auto;
	}
	.fv-intro__btn {
		text-align: center;
		margin: 30px 0 0;
	}
	.fv-head {
		margin: 0 auto 30px;
	}
}
@media (min-width: 801px) {
	.fv-intro {
		display: flex;
		flex-wrap: wrap;
	}
	.fv-intro__head {
		flex: 0 0 45%;
	}
	.fv-intro__copy {
		flex: 1;
		padding: 10px 0 0 2.4rem;
		font-size: 1.11rem;
	}
	.fv-intro__btn {
		flex: 0 0 100%;
		margin: -52px 0 0 ;
	}
}

/* SKIMAアワード開催記念企画 */
.sect-plan::before {
	content: "";
	display: inline-block;
	width: 100%;
	height: 130px;
	background: url("https://s3.ap-northeast-1.amazonaws.com/pro.skima-landing/award/202302/sect-plan-mask.svg");
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	top: 0px;
}
.sect-plan::after {
	content: "";
	display: inline-block;
	width: 100%;
	height: 149px;
	background: url("https://s3.ap-northeast-1.amazonaws.com/pro.skima-landing/award/202302/sect-plan-mask.svg");
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	bottom: -1px;
	transform: scale(-1, -1);
}
.sect-plan {
	padding: 55px 0 174px 0;
	background: url("https://s3.ap-northeast-1.amazonaws.com/pro.skima-landing/award/202302/sect-plan-bg.png")  center top;
	background-size: 23px;
	z-index: 2;
}
.sect-plan__h {
	width: 100%;
	max-width: 600px;
	margin: 0 0 60px auto;
}
@media (min-width: 700px) {
	.sect-plan {
		margin-top: 60px;
	}
	.sect-plan::after {
	}
}

/* SKIMAアワード開催記念企画 : 項目 */
.plan-block {
	width: 600px;
	max-width: 100%;
	background-color: #FFF;
	margin-bottom: 60px;
	padding: 15px;
	border-radius: 15px;
	border: 2px solid #34495E;
}
.plan-block::before {
	content: "";
	display: block;
	position: absolute;
	top: 10px;
	left: 10px;
	width: 100%;
	height: 100%;
	background-color: #FFC2D1;
	border: 2px solid #34495E;
	border-radius: 20px;
	z-index: -1;
}
@media (max-width: 750px) {
	.plan-block {
		padding: 50px 10px 20px;
		line-height: 1.5rem;
	}
	.plan-block::before {
		top: 5px;
		left: 5px;
	}
}
@media (min-width:751px) {
	.plan-block {
		padding: 30px 30px 15px;
	}
}
@media (max-width:1000px) {
	.plan-block {
		margin: 0 auto 60px;
	}
}
@media (min-width:1001px) {
	.plan-block:nth-child(2){
		margin-left: auto;
	}
}
.plan-block:nth-child(2)::before {
	background-color: #FFD470;
}
.plan-block::after {
	content: ""; display: block;
	width: 80px; height: 80px;
	position: absolute;
	top: -2%; left: 0;
	border-radius: 100px;
	border: 2px solid #34495E;
	background-color: #FFC2D1;
	background-image: url("https://s3.ap-northeast-1.amazonaws.com/pro.skima-landing/award/202302/pc/sect-plan-no1.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 90%;
	transform: translateX(-40%) translateY(-40%);
}
.plan-block:nth-child(2)::after {
	background-color: #FFD470;
	background-image: url("https://s3.ap-northeast-1.amazonaws.com/pro.skima-landing/award/202302/pc/sect-plan-no2.png");
}
.plan-block:nth-child(3)::after {
	background-image: url("https://s3.ap-northeast-1.amazonaws.com/pro.skima-landing/award/202302/pc/sect-plan-no3.png");
}
.plan-block__h {
	font-size: 1.2em;
	font-weight: bold;
	margin-bottom: 20px;
	text-align: center;
	line-height: 1;
}
.plan-block__h span {
	display: inline-block;
	position: relative;
}
.plan-block__h ::after,
.plan-block__h span::before {
	content: ""; display: inline-block;
	vertical-align: middle;
	width: 30px; height: 30px;
	margin: 0 10px 20px;
	background-image: url("https://s3.ap-northeast-1.amazonaws.com/pro.skima-landing/award/202302/plan-pink-brackets.png");
	background-repeat: no-repeat;
	background-size: contain;
}
.plan-block:nth-child(2) .plan-block__h span::after,
.plan-block:nth-child(2) .plan-block__h span::before {
	background-image: url("https://s3.ap-northeast-1.amazonaws.com/pro.skima-landing/award/202302/plan-yellow-brackets.png");
}
.plan-block__h span::after {
	margin: 20px 5px 0;
	transform: rotate(180deg);
}
.plan-block__foot {
	margin: 30px 0 0;
	text-align: right;
}
.plan-block__foot-link {
	display: inline-block;
	text-decoration: none;
	color: #4D6175;
	position: relative;
	left: 16px;
	letter-spacing: 0;
	font-size: 14px;
	font-weight: bold;
}
.plan-block__foot-link:after {
	content: "";
	width: 18px;
	height: 18px;
	display: inline-block;
	position: relative;
	top: 10px;
	background: url("https://s3.ap-northeast-1.amazonaws.com/pro.skima-landing/award/202302/check-link-icon.svg");
	background-repeat: no-repeat;
	background-size: 10px;
	margin-left: 7px;
}
.plan-block__foot-link:hover {
	transform: translateY(-5px);
}
@media (max-width:700px) {
	.plan-block__foot {
		text-align: center;
	}
}
@media (max-width:680px) {
	.plan-block::after {
		width: 60px; height: 60px;
		transform: translateX(-6%) translateY(-40%);
	}
}
@media (max-width:500px) {
	.plan-block__h {
		margin-bottom: 30px;
	}
	.plan-block__h span::before {
		width: 20px;
		height: 20px;
		position: absolute;
		top: -35%;
		left: -20%;
	}
	.plan-block__h span::after {
		width: 20px;
		height: 20px;
		position: absolute;
		right: -20%;
		top: 0;
	}
}
@media (max-width:360px) {
	.plan-block__h span::before { left: -11%;}
	.plan-block__h span::after { right: -10%; top: 11%;	}
}

/* アワード受賞者一覧：導入部分*/
.winners-sect {
	margin: -100px 0 0;
	z-index: 2;
}
.winners-sect__head {
	padding: 100px 0 120px;
	width: 100%;
	max-width: 980px;
	margin: auto;
	background-image: url("https://s3.ap-northeast-1.amazonaws.com/pro.skima-landing/award/202302/sp/sect-winners-bg.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
}
.winners-sect__head.rookie {
	background-image: url("https://s3.ap-northeast-1.amazonaws.com/pro.skima-landing/award/202302/sp/sect-rookie-bg.png");
}
.winners-sect__head-h {
	text-align: center;
}
.winners-sect__head-h img {
	width: 700px;
}
.winners-icons {
	display: flex;
	gap: 12px;
	justify-content: center;
	margin: 10px auto;
	width: 100%;
	max-width: 850px;
}
.winners-icons__item a {
	display: block;
	line-height: 0;
}
.winners-sect__head-h-sub {
	display: block;
	font-size: .9rem;
	font-weight: normal;
	margin: -15px 0 30px;
}
.rookie .winners-sect__head-h-sub {
	margin-top: 0;
}
.rookie .winners-sect__head-h img {
	margin-bottom: 10px;
}
@media (hover:hover) {
    .winners-icons__item:hover {
        filter: brightness(108%) saturate(120%);
        transition: .2s;
    }
}

@media (max-width: 800px) {
	.winners-sect__head-h {
		width: 100%;
		max-width: 400px;
		margin: 10px auto;
	}
	.winners-sect__head {
		padding: 20px 0 25px;
	}
	.winners-icons {
		width: 100%;
		max-width: 400px;
		flex-wrap: wrap;
		gap: 5px;
		justify-content: space-around;
		padding: 0 5px;
	}
	.winners-icons__item {
		flex: 0 0 47%;
		margin: 0 0 15px;
	}
}
@media (min-width: 801px) {
	.winners-icons__item {
		flex: 0 0 23%;
	}
}
@media (min-width: 700px) {
	.winners-sect__head {
		background-image: url("https://s3.ap-northeast-1.amazonaws.com/pro.skima-landing/award/202302/pc/sect-winners-bg.png");
		background-size: cover;
	}
	.winners-sect__head.rookie {
		background-image: url("https://s3.ap-northeast-1.amazonaws.com/pro.skima-landing/award/202302/pc/sect-rookie-bg.png");
	}
}

/* アワード受賞者一覧：受賞者コメント */
.comments-head small {
    text-align: center;
	display: block;
	font-size: 12px;
	font-weight: normal;
	margin: 5px 0 15px 0;
}
.comments-head img {
	height: 80px;
}
@media (min-width:800px) {
	.comments-head small {
		font-size: .9rem;
        margin: 20px 0 35px 0;
    }
	.comments-head img {
		height: 120px;
	}
}

/* 受賞者一覧　項目 */
.comment-block {
	border: #4D6175 2px solid;
	background-color: #FFF;
	margin-bottom: 52px;
	padding: 5px;
}
.comment-block::after {
	content: "";
	display: block;
	position: absolute;
	top: 5px;
	left: 5px;
	width: 100%;
	height: 100%;
	background-color: #FFF;
	border: 2px solid #34495E;
	z-index: -1;
}
.comment-block__avatar {
	display: flex;
	align-items: center;
	margin-bottom: 16px;
}

.avatar-head {
    flex: 0 0 30%;
    margin-right: 20px;
}

.avatar {
    border: #34495E 2px solid;
    border-radius: 100px;
}
.comment-block__name {
	font-size: 22px;
	font-weight: bold
}
.comment-block__comment {
	flex: 0 0 100%;
	letter-spacing: 0.1em;
	padding: 10px;
	margin-top: 37px;
	background-color: #FFC2D1;
	border-radius: 15px;
}
.comment-block__comment::before {
	content: "";
	border: 15px solid transparent;
	border-top: 29px solid #FFC2D1;
	position: absolute;
	left: 6%;
	bottom: 99%;
	transform: scale(1, -1);
}
.blue .comment-block__comment {
	background-color: #8ED9FF;
}
.blue .comment-block__comment::before {
	content: "";
	border: 15px solid transparent;
	border-top: 29px solid #8ED9FF;
	position: absolute;
	left: 6%;
	bottom: 99%;
	transform: scale(1, -1);
}
@media (hover: hover) {
    .avatar-head:hover {
        opacity: 0.8;
    }
}
@media (max-width:750px) {
	.comment-block__main {
		padding: 5px;
	}
	.comment-block__image {
		width: 330px;
		max-width: 99%;
		margin: 30px auto;
	}
	.comment-block__name {
		font-size: 18px;
	}
}
@media (min-width:751px) {
	.comment-block {
		display: flex;
		flex-wrap: wrap;
		padding: 20px 20px;
	}
	.comment-block::after {
		top: 10px;
		left: 10px;
	}
	.comment-block__main {
		flex: 1 1 auto;
		padding: 0 30px 0 0;
	}
	.avatar {
		width: 120px;
	}
	.comment-block__image {
		flex: 0 0 330px;
	}
	.comment-block__comment {
		padding: 20px 30px;
	}
}
.comment-block__main .btn {
	width: 100%;
	min-width: 0;
}

/* クーポン企画 */
.sect-coupon {
	padding: 130px 0 100px 0;
	margin: 60px 0;
	background-color: #FFC2D1;
	background-image: url("https://s3.ap-northeast-1.amazonaws.com/pro.skima-landing/award/202302/sect-coupon-pattern.png");
	background-size: 15px;
	background-position: top 10px center;
}
.sect-coupon::after {
	content: ""; display: block;
	width: 100%; height: 100px;
	max-width: 1920px;
	position: absolute;
	top: -1px; left: 0; right: 0;
	margin: auto;
	background-image: url("https://s3.ap-northeast-1.amazonaws.com/pro.skima-landing/award/202302/sect-coupon-mask.svg");
	background-repeat: no-repeat;
	background-size: contain;
}
@media (min-width:700px) {
	.sect-coupon {
		padding: 200px 0;
		margin: 100px 0;
	}
}
.coupon-info {
	background: #FFF;
	border: #4D6175 2px solid;
	border-radius: 15px;
}
.coupon-info.blue {
	margin: 0 0 160px;
}
.coupon-info::after {
	content: ""; display: block;
	width: 100%; height: 100%;
	position: absolute;
	top: 5px; left: 5px;
	background: #8ed9ff;
	border: 2px solid #34495E;
	border-radius: 15px;
	z-index: -1;
}
.coupon-info.orange::after {
	background: #ffd470;
}
.coupon-info.blue .coupon-info__head-h {
	text-align: right;
}
@media (min-width: 1100px) {
	.coupon-info.blue .coupon-info__head-h {
		transform: translateX(70px);
	}
	.coupon-info.orange .coupon-info__head-h {
		transform: translateX(-70px);
	}
}
.coupon-info__head-h {
	margin: -78px 0 0;
}
.coupon-info__body p:not(last-of-type) {
	margin-bottom: 1em;
}
.coupon-info__body strong {
	color: #FFB378;
	font-size: 1.15em;
	font-weight: bold;
}
.coupon-info__body img {
	margin: 2rem 0;
}
.coupon-info__body a:hover {
	color: #4D6175;
}
.coupon-info__foot {
	border-top: 2px dashed #4D6175;
}
.coupon-info__foot-h {
	text-align: center;
	max-width: 95px;
	width: 100%;
	background-color: #FFB378;
	color: #FFFFFF;
	font-size: 1em;
	font-weight: bold;
	padding: 2px 12px;
	margin-bottom: 10px;
}
.coupon-info__foot-text {
	font-size: 14px;
	letter-spacing: 0.1rem;
	color: #748595;
	line-height: 1.2rem;
}
.coupon-info__foot-text li {
	margin-bottom: 7px;
	text-indent: -1em;
	padding-left: 1em;
}
@media (max-width:700px) {
	.coupon-info__body img {
		margin: 1.5rem 0;
	}
}
@media (max-width: 710px) {
	.coupon-info__body {
		padding: 0 15px;
        text-align: center;
	}
	.coupon-info__body br.hide {
		display: none;
	}
	.coupon-info__foot {
		padding: 30px 0;
		margin: 30px 15px 0;
	}
	.coupon-info__head-h img {
		width: 100%;
	}
}
@media (max-width:400px) {
	.coupon-info__body {
		padding: 0 10px;
	}
	.coupon-info__foot {
		margin: 10px;
	}
}
@media (min-width: 711px) {
	.coupon-info__body {
		text-align: center;
		width: 100%;
		max-width: 640px;
		margin: auto;
	}
	.coupon-info__foot {
		padding: 30px 0;
		margin: 30px 30px 0;
	}
	.coupon-info::after {
		top: 10px; left: 10px;
	}
	.coupon-info__head-h img {
		height: 170px;
	}
}

/* SKIMAってなに？ */
.sect-about-gainen {
	display: block;
	margin: 2rem auto 5rem;
	width: 100%;
	max-width: 470px;
}
.about-award {
	margin: 170px 0 0;
}
@media (min-width:850px) {
	.sect-about-gainen {
		margin: 5rem auto 7rem;
	}
}
@media (max-width:700px) {
	.about-award { margin-top: 130px; }
}
.about-block {
	position: relative;
	background: #fff;
	border: #4D6175 2px solid;
	background-color: #FFF;
}
.about-block::before {
	content: "";
	display: block;
	width: 100%; height: 100%;
	position: absolute;
	z-index: -1;
	top: 5px; left: 5px;
	background: #FFB378;
	border: #4D6175 2px solid;
}
.about-skima::after {
	content: ""; display: block;
	width: 120px; height: 110px;
	position: absolute;
	bottom: -30px; right: 10px;
	background-image: url("https://s3.ap-northeast-1.amazonaws.com/pro.skima-landing/award/202302/pc/sect-about-illust.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}
.about-block__head {
	margin: -60px 0 0 -30px;
}
.about-block__head img {
	width: 90%;
	max-width: 500px;
}
.about-block__gainen {
	text-align: center;
	margin: -60px 0 0;
}
.about-skima__body {
	width: 100%;
	max-width: 800px;
	padding: 0 10px;
	margin: 0 auto 2rem auto;
}
.about-skima__body .btn {
	margin-top: 3rem;
}
.about-block__body .btn-container {
	margin-top: 40px;
	margin-bottom: 20px;
}
.about-block__body p:not(last-of-type) {
	margin: 0 0 1em;
}
@media (max-width:850px) {
	.about-block__head img {
		max-width: 317px;
		width: 100%;
		margin: 20px 0 20px 23px;
	}
}
@media (max-width:800px) {
	.about-skima {
		padding-bottom: 60px;
	}
	.about-block__body {
		padding: 10px 15px 15px;
	}
	.about-skima__body br {
		display: none;
	}
}
@media (min-width:801px) {
	.about-block__body {
		padding: 15px 30px 30px;
	}
	.about-skima__body {
		text-align: center;
	}
	.about-block::before {
		top: 10px; left: 10px;
	}
	.about-skima::after {
		bottom: -30px; right: -20px;
		width: 190px; height: 170px;
	}
}
@media (max-width:400px) {
	.about-block__body {
		padding: 5px 10px;
	}
}

/* フッター */
.page-footer {
	background: #4D6175;
	color: #fff;
	text-align: center;
	padding: 2rem 0;
	margin: 3rem 0 0;
	position: relative;
	z-index: 60;
}
.page-footer__logo {
	width: 150px;
}
.page-footer__copyright {
	font-size: .9rem;
	margin: 2rem 0;
}

/* シェア */
.share {
	text-align: center;
	margin: 5rem 0 2rem 0;
}
.share-h {
	font-size: 1.1rem;
	font-weight: bold;
	margin: 0 0 1rem;
}
ul.share-icons {
	margin: 1rem 0;
}
ul.share-icons li {
	display: inline-block;
	vertical-align: top;
	margin: 0 10px;
}
ul.share-icons a {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #ABABAB;
	border-radius: 5px;
	padding: 5px;
	width: 45px; height: 45px;
	box-sizing: border-box;
	cursor: pointer;
}
ul.share-icons a.share-fb { background: #1877F2; }
ul.share-icons a.share-tw { background: #0F1419; }
ul.share-icons a.share-line { background: #00b900;}
ul.share-icons a:not(.share-line) img {
	width: 90%;
}
@media (hover: hover) {
	ul.share-icons a:hover {
		opacity: .8;
	}
}

/* TOPへ戻るボタン*/
.return-top-btn__head {
    display: flex;
    align-items: center;
    justify-content: center;
	width: 60px;
    height: 60px;
	position:fixed;
	right: 10px;
	bottom: 10px;
	z-index: 99;
    background-color: #F9FBFF;
    border-radius: 100px;
    transition: .2s;
}
.return-top-btn__head img {
    height: 40px;
}
.return-top-btn__head:hover {
	opacity: 0.8;
}

/* 枠 */
.page-frame {
	display: none;
}
@media (min-width: 1300px) {
	.page-frame {
		display: block;
		position: fixed;
		top: 0; left: 0;
		width: 100%; height: 100vh;
		z-index: 2;
		pointer-events: none;
	}
	.page-frame::after,
	.page-frame::before {
		content: ""; display: block;
		height: 100%; width: 80px;
		background: #F9FBFF;
		position: absolute;
		top: 0;
		z-index: 50;
		background-image:url("https://s3.ap-northeast-1.amazonaws.com/pro.skima-landing/award/202302/pc/fv-03.png");
		background-size: 30px;
		background-repeat: no-repeat;
		background-position: center;
	}
	.page-frame::before {
		left: 0;
		transform: rotate(180deg)
	}
	.page-frame::after {
		right: 0;
	}
}

/* 受賞者：詳細 */
.info-detail__item {
	padding-bottom: 10px;
	display: flex;
	align-items: flex-start;
}
.info-details {
	margin-bottom: 18px;
}
.info-detail__h {
	font-size: 16px;
	font-weight: bold;
	color: #FFF;
	padding: 5px 12px;
	margin-right: 9px;
	background-color: #8ED9FF;
	line-height: 1;
	flex: 0 0 auto;
}
.info-detail__h p {
	flex: 1 0 auto;
}
.bg-pink { background-color: #FFC2D1; }
.comment-block.blue .info-details {
	margin-bottom: 50px;
}
@media (max-width:750px) {
	.info-details {
		margin-bottom: 19px;
	}
	.direction-column {
		flex-direction: column;
	}
	.comment-block.blue .info-details {
		margin-bottom: 15px;
	}
}

@media (max-width:380px) {
	.info-detail__h {
		font-size: 13px;
		padding: 5px;
	}
}

/* アワード受賞者一覧：ランクアイコン */
.rank-icon-p {
	display: flex;
	align-items: center;
}
.rank-icon-p::before {
	content: "";
	width: 25px;
	top: 1px;
	height: 21px;
	display: inline-block;
	position: relative;
	background: url("https://s3.ap-northeast-1.amazonaws.com/pro.skima-landing/award/202302/pc/sect-winners-rank-p.png");
	background-repeat: no-repeat;
	background-size: 22px;
}
.rank-icon-b {
	display: flex;
	align-items: center;
}
.rank-icon-b::before {
	content: "";
	width: 25px;
	top: 1px;
	height: 21px;
	display: inline-block;
	position: relative;
	background: url("https://s3.ap-northeast-1.amazonaws.com/pro.skima-landing/award/202302/pc/sect-rookie-rank-b.png");
	background-repeat: no-repeat;
	background-size: 22px;
}
.rank-icon-s {
	display: flex;
	align-items: center;
}
.rank-icon-s::before {
	content: "";
	width: 25px;
	top: 1px;
	height: 21px;
	display: inline-block;
	position: relative;
	background: url("https://s3.ap-northeast-1.amazonaws.com/pro.skima-landing/award/202302/pc/sect-rookie-rank-s.png");
	background-repeat: no-repeat;
	background-size: 22px;
}
.br-pc { display: block;}
.br-sp { display: none;}
@media (max-width:700px) {
	.br-pc { display: none;}
}
@media (max-width:500px) {
	.br-sp { display: block;}
	.pt-10-sp { padding-top: 10px;}
}
.pt-30 { padding-top: 30px;}
.center { text-align: center;}


@keyframes fadeOut {
	from {opacity: 0.7;} to {opacity: 0;}
}
.js__copy-alert {
	display: block; position: fixed;
	z-index: 90;
	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;
}
</pre></body></html>