/*--------------------------------------------------

色

--------------------------------------------------*/

/*
@base-color: #111;
@key-color: #bd0f0f;
*/


/*--------------------------------------------------

 フォント

--------------------------------------------------*/

/* font family
// Win10で 游ゴシックの標準のウェイトをMedium(500) に
// https://app.codegrid.net/entry/2016-choosing-fonts-3 */
@font-face {
	font-family: MyYuGothic;
	font-weight: normal;
	src: local("YuGothic-Medium"), /* for Windows */
		local("Yu Gothic Medium"); /* for Windows Chrome */
}
@font-face {
	font-family: MyYuGothic;
	font-weight: bold;
	src: local("YuGothic-Bold"), /* for Windows */
		local("Yu Gothic"); /* for Windows Chrome */
}

/*
@sans: "Hiragino Kaku Gothic ProN", MyYuGothic, "メイリオ", sans-serif;
@serif: "游明朝", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "ＭＳ明朝", serif;
@maru: "Hiragino Maru Gothic Pro","HG丸ｺﾞｼｯｸM-PRO", "メイリオ", sans-serif;
*/



/*--------------------------------------------------

 アイコンフォント

--------------------------------------------------*/

@font-face {
  font-family: 'icomoon';
  src:  url('../icon/fonts/icomoon.eot?d38lsw');
  src:  url('../icon/fonts/icomoon.eot?d38lsw#iefix') format('embedded-opentype'),
    url('../icon/fonts/icomoon.ttf?d38lsw') format('truetype'),
    url('../icon/fonts/icomoon.woff?d38lsw') format('woff'),
    url('../icon/fonts/icomoon.svg?d38lsw#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-twitter:before {
  content: "\e900";
  color: #fff;
}
.icon-facebook:before {
  content: "\e901";
  color: #fff;
}
.icon-poll:before {
  content: "\e902";
}



/*--------------------------------------------------

 リセット

--------------------------------------------------*/

*,
::before,
::after {
	background-repeat: no-repeat;
	box-sizing: inherit;
}

html {
	box-sizing: border-box;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;

	line-height: 1.6;
	font-size: 16px;
	font-family: "Hiragino Kaku Gothic ProN", MyYuGothic, "メイリオ", sans-serif;
	color: #111;
}

body {
	margin: 0;
}

a:hover {
	opacity: .8;
}



/*--------------------------------------------------

	汎用クラス

--------------------------------------------------*/

@media (max-width: 767px) {
	.hide-sm {display: none!important}
}
@media (min-width: 768px) {
	.hide-lg {display: none!important}
}
.show-sm {display: none;}
@media (max-width: 767px) {
	.show-sm {display: block;}
}

.text-center {
	text-align: center;
}

.mt-0 {margin-top:  0px!important}
.mt-sm {margin-top: 20px!important}
.mt-md {margin-top: 40px!important}
.mt-lg {margin-top: 60px!important}
.mb-0 {margin-bottom:  0px!important}
.mb-sm {margin-bottom: 20px!important}
.mb-md {margin-bottom: 40px!important}
.mb-lg {margin-bottom: 60px!important}
.mv-0 {margin-top:  0px!important; margin-bottom:  0px!important}
.mv-sm {margin-top: 20px!important; margin-bottom: 20px!important}
.mv-md {margin-top: 40px!important; margin-bottom: 40px!important}
.mv-lg {margin-top: 60px!important; margin-bottom: 60px!important}
@media (max-width: 767px) {
	.mt-sm {margin-top: 15px!important}
	.mt-md {margin-top: 25px!important}
	.mt-lg {margin-top: 40px!important}
	.mb-sm {margin-bottom: 15px!important}
	.mb-md {margin-bottom: 25px!important}
	.mb-lg {margin-bottom: 40px!important}
	.mv-sm {margin-top: 15px!important; margin-bottom: 15px!important}
	.mv-md {margin-top: 25px!important; margin-bottom: 25px!important}
	.mv-lg {margin-top: 40px!important; margin-bottom: 40px!important}
}


/*--------------------------------------------------

	object-fit

--------------------------------------------------*/

img[data-fit="cover"] {
	object-fit: cover;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: cover;
}
img[data-fit="contain"] {
	object-fit: contain;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: contain;
}


/*--------------------------------------------------

	html, body, all

--------------------------------------------------*/

html {
	background: url("data:image/gif;base64,R0lGODlhBAAEAIAAAP///+jj3iH5BAAAAAAALAAAAAAEAAQAAAIFTACGy1AAOw==") repeat 50% 0;
}

.body {
	margin: 0 auto;
	padding: 0 0 50px;
	max-width: 1120px;
	background: #fff;
}
.body::before,
.body::after {
	content: "";
	display: table;
	clear: both;
}

.container {
	padding-left: 50px;
	padding-right: 50px;
}
.container.type--gray {
	border-top: 1px solid #bbb;
	border-bottom: 1px solid #bbb;
	padding-top: 40px;
	padding-bottom: 40px;
	background: #efefef;
}
/*.container::before,
.container::after {
	content: "";
	display: table;
	clear: both;
}*/
@media (max-width: 767px) {
	.container {
		padding-left: 15px;
		padding-right: 15px;
	}
	.container.type--gray {
		padding-top: 25px;
		padding-bottom: 25px;
	}
}

.mb-0 {
	margin-bottom: 0!important;
}


/*--------------------------------------------------

	ヘッダー

--------------------------------------------------*/

.header {
	margin: 0 auto;
	max-width: 1120px;
	background: #fff;
}

.header__top {
	display: -webkit-flex;
	-webkit-align-items: center;
	-webkit-justify-content: space-between;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 25px;
}
.header__top__left {
	display: -webkit-flex;
	-webkit-align-items: center;
	-webkit-justify-content: start;
	display: flex;
	align-items: center;
	justify-content: start;
}
.header__top__right {
	display: -webkit-flex;
	-webkit-align-items: center;
	-webkit-justify-content: end;
	display: flex;
	align-items: center;
	justify-content: end;
}

.header__logo {
	display: inline-block;
	margin: 0;
	padding: 0;
	width: 200px;
	height: 40px;
}
.header__top__logo img {
	display: block;
	width: 100%;
	height: 100%;
}

.header__share-btn {
	display: inline-block;
	font-size: 14px;
	width: 7.2em;
	height: 2.8em;
	line-height: 2.8em;
	background: gray;
	text-align: center;
	color: #fff;
	text-decoration: none;
}
.header__share-btn + .header__share-btn {
	margin-left: 10px;
}
.header__share-btn i {
	margin-right: .3em;
}
.header__share-btn.type--tw {
	background: #1da1f3;
}
.header__share-btn.type--fb {
	background: #3b5998;
}
@media (max-width: 767px) {
	.header__top {
		padding: 10px 10px;
	}
	.header__logo {
		width: 125px;
		height: 25px;
	}
	.header__share-btn {
		font-size: 11px;
		width: 6em;
		height: 2.4em;
		line-height: 2.4em;
	}
	.header__share-btn + .header__share-btn {
		margin-left: 5px;
	}
}


.header__main {
	display: block;
	margin: 0;
	padding: 0;
}
.header__main a {
	display: block;
	position: relative;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: 100% 100%;
	background-image: url(../img/common/header-img-lg.jpg);
}
.header__main a::before {
	content: "";
	display: block;
	padding-bottom: 57.64%;
}
.header__main a span {
	display: block;
	height: 0;
	overflow: hidden;
	visibility: hidden;
}
@media (max-width: 767px) {
	.header__main a {
		background-position: 50% 50%;
		background-size: 100% 100%;
		background-image: url(../img/common/header-img-sm.jpg);
	}
	.header__main a::before {
		padding-bottom: 70.625%;
	}
}


/*--------------------------------------------------

	フッター

--------------------------------------------------*/

.footer {
	display: block;
	padding: 10px;
	background: #FD874D;
	color: #fff;
}
.footer p {
	margin: 0;
	padding: 0;
	text-align: center;
	font-size: 11px;
}


/*--------------------------------------------------

	テーマタイトル

--------------------------------------------------*/

.theme-title {
	position: relative;
	margin: 60px 50px;
	padding: 0 50px;
	font-size: 30px;
	line-height: 1.3;
	text-align: center;
	font-weight: bold;
	color: #fff;
}
.theme-title.type--home {
	margin-bottom: .8em;
}
.theme-title::before,
.theme-title::after {
	content: "";
	display: block;
	position: absolute;
	top: 20px;
	width: 100px;
	height: 100%;
}
.theme-title::before {
	left: 0;
	background-image: url(../img/common/theme-title-left-shadow.svg), url(../img/common/theme-title-left-ribbon.svg), linear-gradient(#FD874D, #FD874D);
	background-repeat: no-repeat;
	background-position: 50px bottom, 0 0, 20px 0;
	background-size: 50px 20px, 20px 100%, 80px 100%;
}
.theme-title::after {
	right: 0;
	background-image: url(../img/common/theme-title-right-shadow.svg), url(../img/common/theme-title-right-ribbon.svg), linear-gradient(#FD874D, #FD874D);
	background-repeat: no-repeat;
	background-position: 0 bottom, 80px 0, 0 0;
	background-size: 50px 20px, 20px 100%, 80px 100%;
}
.theme-title span {
	display: block;
	position: relative;
	z-index: 1;
	padding: .4em;
	background: #FD874D;
	box-shadow: 0 2px 2px rgba(0,0,0,.2);
}
@media (max-width: 767px) {
	.theme-title {
		margin: 0 0 1em;
		padding: 0;
		font-size: 24px;
	}
	.theme-title.type--home {
		margin-bottom: .5em;
	}
	.theme-title span {
		box-shadow: none;
	}
	.theme-title::before,
	.theme-title::after {
		display: none;
	}
}


/*--------------------------------------------------

	見出し

--------------------------------------------------*/
.heading {
	margin: 2em 0 1em;
	border-bottom: 3px solid #FD874D;
	padding: 0 .2em .2em;
	line-height: 1.3;
	font-size: 24px;
	font-weight: bold;
}
@media (max-width: 767px) {
	.heading {
		margin: 1.5em 0 1em;
		font-size: 20px;
	}
}

.heading2 {
	margin: 0 0 30px;
	line-height: 1.3;
	text-align: center;
	font-size: 36px;
	letter-spacing: .15em;
	font-family: "Hiragino Maru Gothic Pro","HG丸ｺﾞｼｯｸM-PRO", "メイリオ", sans-serif;
}
.heading2.type--red {
	color: #FD874D;
}
@media (max-width: 767px) {
	.heading2 {
		margin-bottom: 20px;
		font-size: 24px;
	}
}


/*--------------------------------------------------

	ボタン

--------------------------------------------------*/

.nice-btn {
	display: block;
	font-size: 30px;
	margin: 0 auto;
	padding: .7em 1em .6em;
	width: 100%;
	max-width: 20em;
	line-height: 1.3;
	text-align: center;
	font-weight: bold;
	color: #fff;
	text-decoration: none;

	background: #6a0014;
	background: -webkit-linear-gradient(#bd0f0f, #6a0014);
	background: linear-gradient(#bd0f0f, #6a0014);
	border-radius: 10px;
}
@media (max-width: 767px) {
	.nice-btn {
		font-size: 20px;
	}
}


/*--------------------------------------------------

	ホーム

--------------------------------------------------*/

.home-random-entries {
	display: block;
}
.home-random-entries ul {
	-webkit-display: flex;
	display: flex;
	margin: 0 -1px;
	padding: 0;
}
.home-random-entries li {
	list-style: none;
	margin: 0;
	padding: 2px 1px 0;
	width: calc(100% / 7);
}
.home-random-entries a {
	display: block;
	position: relative;
}
.home-random-entries a::before {
	content: "";
	display: block;
	height: 0;
	padding-bottom: 100%;
}
.home-random-entries img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
@media (max-width: 767px) {
	.home-random-entries li {
		width: calc(100% / 3);
	}
	.home-random-entries li:nth-child(7) {
		display: none;
	}
}

.home-period {
	margin: 0;
	padding: 0;
	text-align: center;
	font-size: 24px;
	font-weight: bold;
	color: #FD874D;
}
.home-period dt,
.home-period dd {
	display: inline;
	margin: 0;
	padding: 0;
}
@media (max-width: 960px) {
	.home-period dt,
	.home-period dd {
		display: block;
	}
}
@media (max-width: 767px) {
	.home-period {
		font-size: 20px;
	}
}
@media (max-width: 480px) {
	.home-period {
		font-size: 13px;
	}
}

.home-dots {
	margin: 30px auto;
	border: 0;
	padding: 0;
	width: 128px;
	height: 10px;
	background: url(../img/common/home-dot.svg) repeat-x 50% 50%;
	background-size: auto 100%;
}
@media (max-width: 767px) {
	.home-dots {
		margin: 20px auto;
		width: 64px;
		height: 5px;
	}
}

.home-lead {
	margin: 40px 0;
	line-height: 1.3;
	text-align: center;
	font-size: 40px;
	font-weight: bold;
	color: #FD874D;
	font-family: "Hiragino Maru Gothic Pro","HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO", "Droid Sans", "メイリオ", Meiryo, sans-serif;
}
@media (max-width: 767px) {
	.home-lead {
		margin: 25px 0;
		font-size: 30px;
	}
}

.home-desc {
	margin: 40px 0;
	font-size: 20px;
}
@media (max-width: 767px) {
	.home-desc {
		margin: 25px 0;
		font-size: 14px;
	}
}

.home-next {
	margin: 40px 0;
	border: 10px solid #eee;
	padding: 20px 40px;
	text-align: center;
	line-height: 1.3;
	font-size: 30px;
}
.home-next__txt1 {
	margin: 0;
}
.home-next__txt2 {
	margin: .3em 0 0;
	font-size: 80%;
}
@media (max-width: 767px) {
	.home-next {
		margin: 25px 0;
		border-width: 5px;
		padding: 10px 15px;
		font-size: 18px;
	}
}

.home-result {
	padding: 40px;
	background: #fff;
}

.home-result-sec {
	position: relative;
	overflow: hidden;
	margin: 30px 0 0;
	padding: 30px 0 0;
}
.home-result-sec::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: url(data:image/gif;base64,R0lGODlhCgACAIABALu7u////yH5BAEAAAEALAAAAAAKAAIAAAIFBIKJploAOw==) repeat-x;
}

.home-result-sec__prize {
	margin: 0 auto;
	padding: 0 10px;
	max-width: 660px;
	line-height: 1.3;
	text-align: center;
	font-size: 20px;
	font-weight: bold;
	color: #fff;
	background-image: url(../img/common/ribbon-default.svg), url(../img/common/ribbon-default.svg);
	background-repeat: no-repeat;
	background-position: left 0, right 0;
	background-size: 20px 100%;
}
.home-result-sec__prize span {
	display: block;
	padding: .2em 1em;
	background: #000;
}
.home-result-sec__prize.type--gold {background-image: url(../img/common/ribbon-gold.svg), url(../img/common/ribbon-gold.svg)}
.home-result-sec__prize.type--gold span {background: #e5b321}
.home-result-sec__prize.type--silver {background-image: url(../img/common/ribbon-silver.svg), url(../img/common/ribbon-silver.svg)}
.home-result-sec__prize.type--silver span {background: #aeaeae}
.home-result-sec__prize.type--bronze {background-image: url(../img/common/ribbon-bronze.svg), url(../img/common/ribbon-bronze.svg)}
.home-result-sec__prize.type--bronze span {background: #8b6c45}
.home-result-sec__prize.type--july {background-image: url(../img/common/ribbon-july.svg), url(../img/common/ribbon-july.svg)}
.home-result-sec__prize.type--july span {background: #68abdd}
.home-result-sec__prize.type--user {background-image: url(../img/common/ribbon-user.svg), url(../img/common/ribbon-user.svg)}
.home-result-sec__prize.type--user span {background: #ff95ae}

.home-result-sec__img {
	display: block;
	margin: 20px auto 0;
	width: 100%;
	max-width: 660px;
	height: auto;
}

.home-result-sec__texts {
}

.home-result-sec__title {
	margin: 1em 0 0;
	text-align: center;
	line-height: 1.3;
	font-size: 20px;
	font-weight: bold;
}
.home-result-sec__author {
	margin: 1em 0 0;
	text-align: center;
	line-height: 1.3;
	font-size: 16px;
	font-weight: bold;
}
.home-result-sec__comment {
	margin: 1em 0 0;
	font-size: 16px;
}

.home-result-sec:nth-child(1) {
	margin-top: 0;
	padding-top: 0;
}

@media (min-width: 768px) {
	.home-result-sec:nth-child(1)::before {
		display: none;
	}
	.home-result-sec:nth-child(n+2) .home-result-sec__prize {
		float: right;
		width: 48.5%;
	}

	.home-result-sec:nth-child(n+2) .home-result-sec__img {
		float: left;
		margin-top: 0;
		width: 48.5%;
	}

	.home-result-sec:nth-child(n+2) .home-result-sec__texts {
		float: right;
		width: 48.5%;
	}
}

@media (max-width: 480px) {
	.home-result-sec {
		margin-top: 20px;
		padding-top: 20px;
	}
	.home-result-sec__prize {
		font-size: 15px;
	}
	.home-result-sec__title {
		font-size: 15px;
	}
	.home-result-sec__author {
		font-size: 13px;
	}
	.home-result-sec__comment {
		font-size: 13px;
	}
}


.home-prize {
	display: block;
	margin: 30px 0 0;
	width: 100%;
	height: auto;
}

.home-past {
	margin: 30px 0 0;
	padding: 0;
}
.home-past ul {
	margin: -10px;
	padding: 0;
}
.home-past ul::after {
	content: "";
	display: table;
	clear: both;
}
.home-past li {
	float: left;
	list-style: none;
	margin: 0;
	padding: 10px;
	width: 50%;
}
.home-past li:only-child {
	float: none;
	margin: 0 auto;
}
.home-past li img {
	display: block;
	width: 100%;
	height: auto;
}
@media (max-width: 767px) {
	.home-past {
		margin: 0;
	}
	.home-past ul {
		margin: 0;
	}
	.home-past li {
		float: none;
		margin: 10px auto 0;
		padding: 0;
		width: 100%;
		max-width: 400px;
	}
}

/*--------------------------------------------------

	人気ワーズ

--------------------------------------------------*/

.popular-words {
	margin: 30px 0 0;
	border: 5px solid currentColor;
	padding: .7em;
	text-align: center;
	line-height: 1.3;
	font-size: 16px;
	color: #FD874D;
}
.popular-words li {
	display: inline-block;
	vertical-align: top;
	list-style: none;
	margin: .5em;
	padding: 0;
}
.popular-words a {
	color: inherit;
	text-decoration: none;
}
.popular-words a > span {
	display: block;
}
.popular-words a > span:nth-child(1)::before {content: "#"}
.popular-words a > span:nth-child(2)::before {content: "("}
.popular-words a > span:nth-child(2)::after  {content: ")"}
@media (max-width: 767px) {
	.popular-words {
		margin-top: 20px;
		border-width: 3px;
		font-size: 14px;
	}
}


/*--------------------------------------------------

	応募規約

--------------------------------------------------*/

.container.type--rules {
	border-bottom: none;
	margin-bottom: -50px;
}
.rules h4 {
	margin: 20px 0 15px;
	font-size: 16px;
	font-weight: bold;
}
.rules ul {
	margin: 15px 0;
	padding: 0 0 0 1.5em;
	font-size: 13px;
}
.rules ul li {
	margin: .3em 0;
	padding: 0;
}

.rules__contact {
	margin: 30px 0 0;
	text-align: center;
	line-height: 1.3;
	font-size: 16px;
}
.rules__contact a {
	display: inline-block;
	padding: 1em;
	width: 100%;
	max-width: 500px;
	background: #fff;
	color: #000;
	text-decoration: none;
}
.rules__contact.type--gray a {
	background: #eee;
}
.rules__contact a > span {
	display: block;
}
.rules__contact a > span:nth-child(1) {
	font-weight:  bold;
}
.rules__contact a > span:nth-child(2) {
	margin-top: .3em;
}


/*--------------------------------------------------

	投稿タイル（複雑なレイアウトのやつ）

--------------------------------------------------*/

.entry-tiles {
	margin: 40px 0 0;
}
.entry-tiles__inner {
}
.entry-tiles__item {
	display: block;
	position: relative;
	background: #ccc;
}
.entry-tiles__item::before {
	content: "";
	display: block;
	height: 0;
	padding-bottom: 100%;
}
.entry-tiles__item img {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.entry-tiles__item span {
	position: absolute;
	left: 5px;
	bottom: 5px;
	color: #fff;
	text-shadow: 0 0 3px rgba(0,0,0,1);
	line-height: 1.1;
	font-size: 13px;
}
.entry-tiles__item span::before {
	content: "\e902";
	font-family: icomoon;
	margin-right: .3em;
}

@media (min-width: 768px) {
	/* ワンユニット: 18.4%, 溝: 2% */
	.entry-tiles {
		margin: 0 auto;
		overflow: hidden;
	}
	.entry-tiles::after {
		content: "";
		display: table;

		/* 1-5 */
		margin-top: -81.6%;
	}
	.entry-tiles[data-len="6"]::after,
	.entry-tiles[data-len="7"]::after {margin-top: -61.2%}
	.entry-tiles[data-len="8"]::after,
	.entry-tiles[data-len="9"]::after {margin-top: -40.8%}
	.entry-tiles[data-len="10"]::after,
	.entry-tiles[data-len="11"]::after {margin-top: -20.4%}

	.entry-tiles__inner {
		position: relative;
	}
	.entry-tiles__inner::before {
		content: "";
		display: block;
		padding-bottom: 100%;
	}

	.entry-tiles__item {
		position: absolute;
		left: 0;
		top: 0;
		width: 18.4%;
	}
	.entry-tiles__item:nth-child(2) {
		left: 20.4%;
		width: 38.8%;
	}
	.entry-tiles__item:nth-child(3) {
		left: 61.2%;
	}
	.entry-tiles__item:nth-child(4) {
		left: 81.6%;
	}
	.entry-tiles__item:nth-child(5) {
		top: 20.4%;
	}
	.entry-tiles__item:nth-child(6) {
		left: 61.2%;
		top: 20.4%;
		width: 38.8%;
	}
	.entry-tiles__item:nth-child(7) {
		top: 40.8%;
		width: 38.8%;
	}
	.entry-tiles__item:nth-child(8) {
		left: 40.8%;
		top: 40.8%;
	}
	.entry-tiles__item:nth-child(9) {
		left: 40.8%;
		top: 61.2%;
	}
	.entry-tiles__item:nth-child(10) {
		left: 61.2%;
		top: 61.2%;
	}
	.entry-tiles__item:nth-child(11) {
		left: 81.6%;
		top: 61.2%;
	}

	/* 2足りない場合 */
	.entry-tiles__item:nth-child(7):nth-last-child(3) {
		width: 18.4%;
	}
	.entry-tiles__item:nth-child(8):nth-last-child(2) {
		left: 20.4%;
	}
	.entry-tiles__item:nth-child(9):nth-last-child(1) {
		top: 40.8%;
	}

	/* 3足りない場合 */
	.entry-tiles__item:nth-child(7):nth-last-child(2) {
		left: 20.4%;
		width: 18.4%;
	}
	.entry-tiles__item:nth-child(8):nth-last-child(1) {
		left: 40.8%;
	}

	/* 4足りない場合 */
	.entry-tiles__item:nth-child(6):nth-last-child(2) {
		width: 18.4%;
	}
	.entry-tiles__item:nth-child(7):nth-last-child(1) {
		left: 81.6%;
		top: 20.4%;
		width: 18.4%;
	}

	/* 5足りない場合 */
	.entry-tiles__item:nth-child(6):nth-last-child(1) {
		width: 18.4%;
	}

	/* 6以上足りない場合 */
	.entry-tiles__item:nth-child(2):nth-last-child(-n+4) {
		width: 18.4%;
	}
	.entry-tiles__item:nth-child(3):nth-last-child(-n+3) {
		left: 40.8%;
	}
	.entry-tiles__item:nth-child(4):nth-last-child(-n+2) {
		left: 61.2%;
	}
	.entry-tiles__item:nth-child(5):nth-last-child(1) {
		left: 81.6%;
		top: 0%;
	}
}

@media (max-width: 767px) {
	.entry-tiles {
	}
	.entry-tiles__inner {
		margin: -1px;
	}
	.entry-tiles__inner::after {
		content: "";
		display: table;
		clear: both;
	}
	.entry-tiles__item {
		float: left;
		margin: 1px;
		width: 32%; /* calc使えないブラウザのために一応 */
		width: calc(100% / 3 - 2px);
	}
	.entry-tiles__item:nth-child(1) {
		width: calc(100% / 3*2 - 2.1px); /* 2pxだとまれにずれる */
	}
	.entry-tiles__item:nth-child(7),
	.entry-tiles__item:nth-child(8) {
		width: calc(50% - 2px)
	}
}


/*--------------------------------------------------

	投稿一覧

--------------------------------------------------*/

.entry-list-empty {
	text-align: center;
	font-size: 24px;
}

.entry-list-header {
	display: -webkit-flex;
	-webkit-align-items: center;
	-webkit-justify-content: space-between;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.entry-list-header__count {
	font-size: 16px;
	font-weight: bold;
}

.entry-list-header__sort-btn {
	display: -webkit-flex;
	-webkit-align-items: center;
	display: flex;
	align-items: center;
	padding: 2px;
	background: #d1d1d1;
	border-radius: 5px;
	line-height: 1.3;
	font-size: 14px;
	color: #666;
	text-decoration: none;
}
.entry-list-header__sort-btn span {
	padding: .5em 1em .4em;
	width: 8em;
	border-radius: 3px;
	text-align: center;
	text-decoration: none;
	color: inherit;
}
.entry-list-header__sort-btn span[aria-current="true"] {
	background: #fff;
	color: #111;
	font-weight: bold;
}
@media (max-width: 767px) {
	.entry-list-header {
		display: block;
	}
	.entry-list-header__sort-btn {
		margin-top: 1em;
		width: 100%;
	}
	.entry-list-header__sort-btn span {
		width: 50%;
	}
}


.entry-list {
	margin: 30px auto 0;
}
.entry-list::before,
.entry-list::after {
	content: "";
	display: table;
	clear: both;
}
.entry-list__inner {
	/*margin: -.8%;
	font-size: 0;*/
	display: -webkit-flex;
	-webkit-flex-wrap: wrap;
	display: flex;
	flex-wrap: wrap;
	margin: -15px 0 0 -15px;
}

.entry-list-item {
	display: inline-block;
	vertical-align: top;
	/*margin: .8%;
	width: 23.4%;*/
	
	-webkit-flex: 0 1 calc((100% / 4) - 15px);
	flex: 0 1 calc((100% / 4) - 15px);
	margin: 15px 0 0 15px;
	width: 25%;

	border: 1px solid #ddd;
	padding: 15px;
	color: inherit;
	text-decoration: none;
}
.entry-list-item:hover {
	opacity: 1;
}
.entry-list-item__img-wrap {
	display: block;
	position: relative;
	margin: -15px -15px 0;
	background: #f5f5f5;
}
.entry-list-item__img-wrap:hover {
	opacity: .8;
}
.entry-list-item__img-wrap::before {
	content: "";
	display: block;
	height: 0;
	padding-bottom: 100%;
}
.entry-list-item__img {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.entry-list-item__poll-count {
	position: absolute;
	left: 5px;
	bottom: 5px;
	color: #fff;
	text-shadow: 0 0 3px rgba(0,0,0,1);
	line-height: 1.1;
	font-size: 13px;
}
.entry-list-item__poll-count::before {
	content: "\e902";
	font-family: icomoon;
	margin-right: .3em;
}

.entry-list-item__title {
	display: block;
	margin: 12px 0;
	line-height: 1.4;
	font-size: 14px;
}
.entry-list-item__poll-btn {
	display: block;
	border: 0;
	margin: 0;
	padding: 0;
	width: 100%;
	background: #FD874D;
	height: 2.4em;
	line-height: 2.4;
	text-align: center;
	font-size: 14px;
	font-weight: bold;
	color: #fff;
	cursor: pointer;
	outline: none;
}
.entry-list-item__poll-btn:hover {
	opacity: .8;
}
.entry-list-item__poll-btn::before {
	content: "\e902";
	font-family: icomoon;
	margin-right: .3em;
}
.entry-list-item__poll-btn::after {
	content: "Good";
}
.entry-list-item__poll-btn:disabled {
	background: #fff;
	outline: 1px solid #eee;
	color: #555;
	cursor: default;
}
.entry-list-item__poll-btn:disabled:hover {
	opacity: 1;
}
.entry-list-item__poll-btn:disabled::before {
	color: gold;
}
.entry-list-item__poll-btn:disabled::after {
	content: "Good";
}
@media (max-width: 767px) {
	.entry-list__inner {
		display: -webkit-flex;
		-webkit-flex-wrap: wrap;
		display: flex;
		flex-wrap: wrap;
		margin: -15px 0 0 -15px;
	}

	.entry-list-item {
		-webkit-flex: 0 1 calc((100% / 2) - 15px);
		flex: 0 1 calc((100% / 2) - 15px);
		margin: 15px 0 0 15px;
		padding: 10px 10px 15px;
	}
	.entry-list-item__img-wrap {
		margin: -10px -10px 0;
	}

	.entry-list-item__title {
		font-size: 13px;
	}
	.entry-list-item__poll-btn {
		font-size: 13px;
	}
}
@media (max-width: 480px) {
}


/*--------------------------------------------------

	ページャー

--------------------------------------------------*/

.pager {
	margin: 40px 0 0;
	text-align: center;
	font-size: 14px;
}
.pager__links {
	display: inline-block;
	position: relative;
	padding: 0 2.5em;
}
.pager__prev,
.pager__next {
	display: block;
	position: absolute;
	top: .1em;
	width: 2.3em;
	height: 2.3em;
	line-height: 2.5;
	color: inherit;
	text-decoration: none;
}
.pager__prev:hover,
.pager__next:hover {
	background: #eee;
}
.pager__prev {
	left: 0;
}
.pager__next {
	right: 0;
}
.pager__page {
	display: inline-block;
	margin: .1em;
	padding: 0 .2em;
	min-width: 2.3em;
	height: 2.3em;
	line-height: 2.5;
	border-radius: 3px;
	color: inherit;
	text-decoration: none;
}
.pager__page:hover {
	background: #eee;
}
.pager__page[aria-current] {
	background: #FD874D;
	color: #fff;
}
.pager__page[aria-current]:hover {
	cursor: default;
	opacity: 1;
}
.pager__info {
	margin: .8em 0 0;
}
@media (max-width: 767px) {
	.pager {
		margin-top: 25px;
		font-size: 13px;
	}
	.pager__links {
		
	}
}


/*--------------------------------------------------

	詳細

--------------------------------------------------*/

.entry-images {
}
.entry-images__main {}
.entry-images__main-item {
	margin: 15px 0 0;
}
.entry-images__main-item img {
	display: block;
	margin: 0 auto;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 500px; /* old andrpod */
	max-height: 90vh;
}
.entry-images__prev,
.entry-images__next,
.entry-images__thumb {
	display: none;
}
@media (min-width: 768px) {
	.entry-images__main {
		position: relative;
		min-height: 500px;
		height: 500px;
		height: calc(95vh - 180px);
	}
	.entry-images__main-item {
		position: absolute;
		left: 0;
		top: 0;
		margin: 0;
		width: 100%;
		height: 100%;
		z-index: 1;
		opacity: 0;
		transition: opacity .2s;
	}
	.entry-images__main-item[aria-selected] {
		z-index: 2;
		opacity: 1;
	}
	.entry-images__main-item img {
		display: block;
		width: 100%;
		max-height: 100%;
		height: 100%;
		/*object-fit: contain;*/
	}
	.entry-images__prev,
	.entry-images__next {
		display: block;
		position: absolute;
		z-index: 3;
		top: 50%;
		margin-top: -30px;
		width: 60px;
		height: 60px;
		background: #000;
		opacity: .2;
		cursor: pointer;
	}
	.entry-images__prev:hover,
	.entry-images__next:hover {
		opacity: .3;
	}
	.entry-images__prev {
		left: 0;
	}
	.entry-images__next {
		right: 0;
	}
	.entry-images__prev::before,
	.entry-images__next::before {
		content: "Good";
		display: block;
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		margin: auto;
		width: 0;
		height: 0;
		border-top: 12px solid transparent;
		border-bottom: 12px solid transparent;
	}
	.entry-images__prev::before {border-right: 16px solid #fff}
	.entry-images__next::before {border-left: 16px solid #fff}
	.entry-images__thumb {
		display: -webkit-flex;
		display: flex;
		-webkit-justify-content: center;
		justify-content: center;
		margin: 10px 0 0;
		padding: 10px 5px;
		background: #efefef;
	}
	.entry-images__thumb-item {
		-webkit-flex-shrink: 0;
		flex-shrink: 0;
		position: relative;
		margin: 0 5px;
		width: calc(20% - 10px);
		height: 150px;
		background: #fff;
		cursor: pointer;
	}
	.entry-images__thumb-item:hover {
		opacity: .8;
	}
	.entry-images__thumb-item img {
		display: block;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	.entry-images__thumb-item::after {
		content: "Good";
		display: block;
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		border: 3px solid rgba(0,0,0,.3);
		opacity: 0;
		transition: opacity .2s;
	}
	.entry-images__thumb-item[aria-selected]:hover {
		opacity: 1;
		cursor: default;
	}
	.entry-images__thumb-item[aria-selected]::after {
		opacity: 1;
	}
}


.entry-poll-count {
	margin: 30px 0 0;
	text-align: right;
}
.entry-poll-count > div {
	display: inline-block;
	padding: 0 1em;
	background: #FD874D;
	height: 2em;
	line-height: 2;
	border-radius: 1em;
	font-size: 16px;
	color: #fff;
}
.entry-poll-count .icon-poll {
	margin: 0 .2em 0 .6em;
}
@media (max-width: 767px) {
	.entry-poll-count {
		text-align: center;
	}
}
@media (max-width: 767px) {
	.entry-poll-count {
		margin-top: 20px;
	}
}

.entry-data {
	margin: 0;
	padding: 0;
}
.entry-data > dt {
	margin: 1em 0 .3em;
	font-size: 20px;
	font-weight: bold;
	color: #FD874D;
}
.entry-data > dd {
	margin: .5em 0;
	padding: 0;
	font-size: 16px;
}
@media (max-width: 767px) {
	.entry-data > dt {
		font-size: 16px;
	}
	.entry-data > dd {
		font-size: 13px;
	}
}

.entry-tags {
	margin: 0;
	padding: 0;
}
.entry-tags::before,
.entry-tags::after {
	content: "Good";
	display: table;
	clear: both;
}
.entry-tags__inner {
	margin: -3px;
	font-size: 0;
}
.entry-tags__item {
	display: inline-block;
	margin: 3px;
	border: 1px solid #999;
	padding: 0 .8em;
	border-radius: 3px;
	line-height: 2;
	font-size: 16px;
	color: #111;
	text-decoration: none;
}
.entry-tags__item::before {
	content: "#";
}
@media (max-width: 767px) {
	.entry-tags__inner {
		margin: -2px;
	}
	.entry-tags__item {
		margin: 2px;
		font-size: 13px;
	}
}

.entry-poll-btn {
	margin: 40px 0 0;
	text-align: center;
}
.entry-poll-btn button {
	display: block;
	font-size: 24px;
	margin: 0 auto;
	border: none;
	padding: .7em 1em .6em;
	width: 100%;
	max-width: 20em;
	line-height: 1.3;
	text-align: center;
	font-weight: bold;
	color: #fff;
	text-decoration: none;
	cursor: pointer;

	background: #6a0014;
	background: -webkit-linear-gradient(#bd0f0f, #6a0014);
	background: linear-gradient(#bd0f0f, #6a0014);
	border-radius: 10px;
}
.entry-poll-btn button:hover {
	opacity: .8;
}
.entry-poll-btn button::before {
	content: "\e902";
	font-family: icomoon;
	margin-right: .3em;
	/*opacity: .5;*/
}
.entry-poll-btn button::after {
	content: "Good";
}
.entry-poll-btn button:disabled {
	background: #fff;
	outline: 1px solid #eee;
	color: #555;
	cursor: default;
}
.entry-poll-btn button:disabled:hover {
	opacity: 1;
}
.entry-poll-btn button:disabled::before {
	color: gold;
}
.entry-poll-btn button:disabled::after {
	content: "Good";
}

.entry-poll-btn p {
	margin: 1em 0 0;
	text-align: center;
	font-size: 16px;
}

@media (max-width: 767px) {
	.entry-poll-btn {
		margin-top: 25px;
	}
	.entry-poll-btn button {
		font-size: 20px;
	}
}

.entry-back {
	margin: 40px 0 0;
	text-align: center;
}
.entry-back a {
	display: inline-block;
	border: 2px solid #bbb;
	width: 16em;
	max-width: 100%;
	background: #fff;
	background: -webkit-linear-gradient(#eee, #fff);
	background: linear-gradient(#eee, #fff);
	border-radius: 5px;
	line-height: 2.6;
	font-size: 20px;
	color: #111;
	text-decoration: none;
}
@media (max-width: 767px) {
	.entry-back {
		margin-top: 25px;
	}
	.entry-back a {
		font-size: 16px;
	}
}



.form-policy {
}

.form-table {
	margin: 40px 0 0;
	padding: 25px;
	background: #efefef;
}
.form-table table {
	width: 100%;
	border-collapse: collapse;
}
.form-table th,
.form-table td {
	vertical-align: top;
	padding: 15px;
}
.form-table th.form-required::after,
.form-table th.form-optional::after {
	display: inline-block;
	margin-left: .2em;
	width: 1em;
	/*font-size: 75%;*/
	/*font-weight: normal;*/
	color: red;
}
.form-table th.form-required::after {content: "*"}
.form-table th.form-optional::after {content: ""}


.form-table td > *:first-child {
	margin-top: 0!important;
}
.form-table td > *:last-child {
	margin-bottom: 0!important;
}
.form-table th {
	/*padding-top: 20px;*/
	text-align: right;
	font-size: 20px;
	width: 11em;
	font-weight: bold;
}
.form-table td {
	text-align: left;
}
@media (max-width: 767px) {
	.form-table {
		margin-top: 25px;
	}
	.form-table table,
	.form-table tbody,
	.form-table tr,
	.form-table th,
	.form-table td {
		display: block;
	}
	.form-table {
		padding: 10px 5px;
	}
	.form-table tr {
		margin: 15px 10px;
	}
	.form-table th,
	.form-table td {
		padding: 0;
		width: auto;
		text-align: left;
	}
	.form-table th {
		font-size: 16px;
	}
	.form-table td {
		margin-top: 5px;
	}
}

.form-input {
	margin: 0;
	border: 2px solid #999;
	padding: 5px 3px;
	width: 100%;
	background: #fff;
	font-size: 20px;
}

.form-textarea {
	display: block;
	border: 2px solid #999;
	padding: 0 3px;
	width: 100%;
	height: 7.5em;
	background: #fff;
	line-height: 1.5;
	font-size: 20px;
	resize: none;
}

.form-input-words {
	font-size: 0;
}
.form-input-words input[type="text"] {
	margin: 0 0 3px 3px;
	border: 2px solid #999;
	padding: 5px 3px;
	width: 10em;
	width: calc(100% / 3 - 3px);
	background: #fff;
	font-size: 20px;
}
@media (max-width: 960px) {
	.form-input-words input[type="text"] {
		display: block;
		margin: 0 0 3px;
		width: 15em;
		max-width: 100%;
	}
}

.form-file {
	max-width: 100%;
	font-size: 16px;
}
.form-output {
	padding: 5px;
	background: #f9f9f9;
	font-size: 20px;
	word-break: break-all;
}
.form-output img {
	display: block;
	margin: 0 auto;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
}

@media (max-width: 767px) {
	.form-input,
	.form-textarea,
	.form-output {
		font-size: 16px;
	}
}

.form-input.error,
.form-textarea.error,
.form-output.error {
	background: #fee;
}

.form-notes {
	margin: .5em 0;
	padding: 0;
	line-height: 1.3;
	font-size: 12px;
}
.form-notes li {
	list-style: none;
	margin: .3em 0 0;
	padding: 0 0 0 1em;
	text-indent: -1em;
}
.form-notes li::before {
	content: "*";
}

.form-err {
	margin: 5px 0;
	line-height: 1.3;
	font-size: 13px;
	font-weight: bold;
	color: red;
}

.form-count {}
.form-count.error {
	color: red;
}

.form-btn-wrap {
	margin: 40px 0 0;
	display: -webkit-flex;
	-webkit-flex-direction: row-reverse;
	-webkit-align-items: center;
	-webkit-justify-content: center;
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
	justify-content: center;
}
.form-btn-wrap__col {
	padding: 0 10px;
}
@media (max-width: 767px) {
	.form-btn-wrap {
		margin-top: 25px;
		-webkit-flex-direction: column;
	}
}

.form-btn {
	display: block;
	font-size: 24px;
	border: none;
	margin: .5em 1em;
	padding: .8em 1em .7em;
	width: 14em;
	max-width: 100%;
	line-height: 1.3;
	text-align: center;
	font-weight: bold;
	color: #fff;
	text-decoration: none;
	cursor: pointer;

	background: #6a0014;
	background: -webkit-linear-gradient(#bd0f0f, #6a0014);
	background: linear-gradient(#bd0f0f, #6a0014);
	border-radius: 10px;
	cursor: pointer;
}
.form-btn:hover {
	opacity: .8;
}
.form-btn.type--back {
	border: 1px solid #bbb;
	background: #f5f5f5;
	background: -webkit-linear-gradient(#f5f5f5, #ffffff);
	background: linear-gradient(#f5f5f5, #ffffff);
	color: #111;
}
@media (max-width: 767px) {
	.form-btn {
		font-size: 20px;
	}
}

.form-thanks {
	margin: 50px 0;
	text-align: center;
	font-size: 30px;
}
@media (max-width: 767px) {
	.form-thanks {
		margin: 30px 0;
		font-size: 20px;
	}
}