@charset "utf-8";
/*---------------------------------------------------------
Theme Name: Romancer Store
Author: Voyager Japan
Description: 理想書店テーマ
Version: 3.0
Text Domain: romancer-store
Domain Path: /languages/

---------------------------------------------------------*/
:root {
	--green: #31948d;
	--green-light: #d5ebe8;
	--yellow: #9e8d56;
	--yellow-light: #f2efe1;
	--red: #f25857;

	--link: #2c81bf;
	--link-hover: #004f88;
}

html, body {
	margin: 0;
	padding: 0;
	width: 100%;
	font-size: 14px;
	-webkit-overflow-scrolling: touch;
	overflow-scrolling: touch;
}
body {
	position: relative;
	color: #222;
	font-family: "dnp-shuei-mgothic-std", "Lucida Grande", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
	line-height: 1.6;
	overflow-x: hidden;
	overflow-y: auto;
}
*::-ms-backdrop, body {/* IE11対策 テキスト下に隙間が出来る問題 */
	font-family: "Lucida Grande", "メイリオ", sans-serif;
}
@media screen and (min-width:750px) {
	html, body {
		font-size: 19px;/* 要検討 */
	}
}
@media screen and (min-width:1024px) {
	html, body {
		font-size: 16px;
	}
}
#st-ami {
	width: 100%;
}

/* PCのみ、SPのみ */
@media screen and (max-width:1023px) {
	.ONLYPC {
		display: none !important;
	}
}
@media screen and (min-width:1024px) {
	.ONLYSP {
		display: none !important;
	}
}

@-webkit-keyframes redraw {
	from {
		min-width: 0px;
	}
	to {
		min-width: 1px;
	}
}
@keyframes redraw {
	from {
		min-width: 0px;
	}
	to {
		min-width: 1px;
	}
}

/* メニュー開閉などのチェックボックス用 */
input.inputForFunction {
	position: absolute;
	left: -100vw;
}
/* 一部スタイルリセット */
ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
label {
	margin: 0;
}
a {
	color: var(--link);
}
a:hover,
a:active {
	text-decoration: none;
	color: var(--link-hover);
}
input[type="text"],
input[type="search"] {
	padding: 0;
	border: none;
	border-radius: 0;
	outline: none;
	background: none;
}
button,
input[type="submit"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	padding: 0;
	border: none;
	outline: none;
	background: transparent;
}
button,
input {
	font-size: 16px;
}
/* imgすべてblock */
img {
	display: block;
	width: 100%;
}

main {
	overflow-x: hidden;
	overflow-y: visible;
}

/* youtube iframeのレスポンシブ */
.youtube-container {
	position: relative;
	margin: 1rem auto;
	padding-bottom: 56.25%;
	width: 100%;
	height: 0;
	overflow: hidden;
}
.youtube-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
@media screen and (min-width:750px) {
	.youtube-container {
		padding-bottom: 396px;
		width: 704px;
	}
}

/* ページターゲット */
.pageTarget {
	display: block;
	position: relative;
	top: -80px;
	height: 0;
}
.pageTarget-publication {
	top: calc(-4.5rem - 80px);
}
@media screen and (min-width:1024px) {
	.pageTarget {
		top: -130px;
	}
	.pageTarget-publication {
		top: calc(-3.5rem - 130px);
	}
}

/* トップへ戻るボタン */
.buttonToTop {
	display: block;
	position: fixed;
	right: 1rem;
	bottom: 1rem;
	width: 0rem;
	height: 0rem;
	background-color: rgba(0, 0, 0, 0.4);
	border-radius: 100%;
	border: solid 1px rgba(255, 255, 255, 0.7);
	opacity: 0;
	-webkit-transition: opacity .2s, width 0s .2s, height 0s .2s;
	transition: opacity .2s, width 0s .2s, height 0s .2s;
}
.buttonToTop::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width: 1rem;
	height: 1rem;
	border-top: solid 4px #fff;
	border-right: solid 4px #fff;
	-webkit-transform: translateY(20%) rotate(-45deg);
	transform: translateY(20%) rotate(-45deg);
}
.buttonToTop-show {
	width: 3.5rem;
	height: 3.5rem;
	opacity: 1;
	-webkit-transition: opacity .6s;
	transition: opacity .6s;
	z-index: 1;
}
@media screen and (max-width:1023px) {
	.buttonToTop.buttonToTop-front {
		display: none;
	}
}

/* ボタン */
.button {
	position: relative;
	display: table;
	margin: auto;
	padding: .2em 0;
	border-radius: 200px;
	color: #fff;
	font-size: 1.2em;
	text-align: center;
	-webkit-transition: color .2s, background-color .2s, border-color .2s;
	transition: color .2s, background-color .2s, border-color .2s;
}
.button::before,
.button::after {
	content: "";
	position: absolute;
	display: block;
	top: 0;
	bottom: 0;
	margin: auto;
	width: .6em;
	height: .6em;
	border-top: solid 2px #fff;
	border-right: solid 2px #fff;
	border-radius: 2px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg)
}
.button::before {
	right: 1em;
}
.button::after {
	right: 1.4em;
}
.button-leftArrow::before,
.button-leftArrow::after {
	right: auto;
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg)
}
.button-leftArrow::before {
	left: 1em;
}
.button-leftArrow::after {
	left: 1.4em;
}

.button-large {
	padding: .5em 0;
	width: 80%;
	max-width: 500px
}
.button-redFill {
	background-color: var(--red);
	border: solid 2px var(--red);
}
.button-redFill:hover,
.button-redFill:active {
	background-color: #fff;
	color: var(--red);
}
.button-redFill:hover::before,
.button-redFill:hover::after,
.button-redFill:active::before,
.button-redFill:active::after {
	border-color: var(--red);
}
.button-goldFill {
	background-color: var(--yellow);
	border: solid 2px var(--yellow);
}
.button-goldFill:hover,
.button-goldFill:active {
	background-color: #fff;
	color: var(--yellow);
}
.button-goldFill:hover::before,
.button-goldFill:hover::after,
.button-goldFill:active::before,
.button-goldFill:active::after {
	border-color: var(--yellow);
}
.button-greenFill {
	background-color:var(--green);
	border: solid 2px var(--green);
}
.button-greenFill:hover,
.button-greenFill:active {
	background-color: #fff;
	color: var(--green);
}
.button-greenFill:hover::before,
.button-greenFill:hover::after,
.button-greenFill:active::before,
.button-greenFill:active::after {
	border-color: var(--green);
}
.button-lightGreenFill {
	background-color: #82C91D;
	border: solid 2px #82C91D;
}
.button-lightGreenFill:hover,
.button-lightGreenFill:active {
	background-color: #fff;
	color: #82C91D;
}
.button-lightGreenFill:hover::before,
.button-lightGreenFill:hover::after,
.button-lightGreenFill:active::before,
.button-lightGreenFill:active::after {
	border-color: #82C91D;
}
.button-whiteFill-yellow{
	background-color: #fff;
	border: solid 2px #fff;
	color: var(--yellow);
}
.button-whiteFill-yellow:hover,
.button-whiteFill-yellow:active {
	background-color: var(--yellow);
	color: #fff;
}
.button-whiteFill-yellow::before,
.button-whiteFill-yellow::after {
	border-color: var(--yellow);
}
.button-whiteFill-yellow:hover::before,
.button-whiteFill-yellow:hover::after,
.button-whiteFill-yellow:active::before,
.button-whiteFill-yellow:active::after {
	border-color: #fff;
}
.button-greenStroke {
	background-color: #fff;
	border: solid 2px var(--green);
	color: var(--green);
}
.button-greenStroke::before,
.button-greenStroke::after {
	border-color: var(--green);
}
.button-greenStroke:hover,
.button-greenStroke:active {
	background-color: var(--green);
	color: #fff;
}
.button-greenStroke:hover::before,
.button-greenStroke:hover::after,
.button-greenStroke:active::before,
.button-greenStroke:active::after {
	border-color: #fff;
}
.button-blackStroke {
	background-color: #fff;
	border: solid 2px #444;
	color: #444;
}
.button-blackStroke::before,
.button-blackStroke::after {
	border-color: #444;
}
.button-blackStroke:hover,
.button-blackStroke:active {
	background-color: #444;
	color: #fff;
}
.button-blackStroke:hover::before,
.button-blackStroke:hover::after,
.button-blackStroke:active::before,
.button-blackStroke:active::after {
	border-color: #fff;
}
.button-goldStroke {
	background-color: #fff;
	border: solid 2px var(--yellow);
	color: var(--yellow);
}
.button-goldStroke::before,
.button-goldStroke::after {
	border-color: var(--yellow);
}
.button-goldStroke:hover,
.button-goldStroke:active {
	background-color: var(--yellow);
	color: #fff;
}
.button-goldStroke:hover::before,
.button-goldStroke:hover::after,
.button-goldStroke:active::before,
.button-goldStroke:active::after {
	border-color: #fff;
}

/* 作品スタイル */
.bookCover {
	-webkit-box-shadow: 0 1px 3px 0 rgba(0,0,0,.6);
	box-shadow: 0 1px 3px 0 rgba(0,0,0,.6);
}
.bookCover[src$="loading.gif"] {
	-webkit-box-shadow: none;
	box-shadow: none;
}
.commonGenre {
	display: table;
	padding: 0em .3em;
	border: solid 1px;
	font-size: .75em;
	-webkit-font-feature-settings: "palt" 1;
	font-feature-settings: "palt" 1;
}
.commonTitle {
	margin-bottom: 0;
	font-size: 1.15em;
	-webkit-font-feature-settings: "palt" 1;
	font-feature-settings: "palt" 1;
}
.commonAuthor {
	margin-bottom: .2em;
	font-size: .9rem;
	-webkit-font-feature-settings: "palt" 1;
	font-feature-settings: "palt" 1;
	line-height: 1.2;
}
.commonPrice {
	line-height: 1;
	margin-bottom: .2rem;
}
.commonPrice::after {
	content: "（税込）";
	display: inline-block;
	margin-left: .2em;
	font-size: .75em;
	font-weight: normal;
	-webkit-font-feature-settings: "palt" 1;
	font-feature-settings: "palt" 1;
}
.commonDate {
	display: block;
	color: #c0c0c0;
	font-size: .85rem;
}
.commonDate::before {
	content: "発売日";
	display: inline-block;
	margin-right: 5px;
	padding: 0 .4em;
	border-radius: 3px;
	background-color: #ccc;
	color: #fff;
	font-size: .9em;
	line-height: 1.4;
}
@media screen and (min-width:750px) {
	.commonTitle {
		font-size: 1.2em;
	}
}
@media screen and (min-width:1024px) {
	.commonTitle {
		font-size: 1rem;
	}
	.commonAuthor {
		font-size: .9rem;
	}
	.commonPrice {
		font-size: 1rem;
	}
	.commonPrice::after {
		font-size: .8em;
	}
	*::-ms-backdrop, .commonPrice::after {/* IE11対策 */
		font-size: 14px;
	}
	.commonGenre,
	.commonDate {
		font-size: .8em;
	}
}

/* swiper.js 共通設定 */
/* ページネーションバレット */
.slider_paginationStyle {
	text-align: center;
}
.swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	border: solid 2px var(--yellow);
	background-color: #fff;
	opacity: 1;
}
.swiper-pagination-bullet-active {
	background-color: var(--yellow);
}
@media screen and (min-width:750px) {
	.swiper-pagination-bullet {
		width: 15px;
		height: 15px;
		border: solid 3px var(--yellow);
	}
}
@media screen and (min-width:1024px) {
	.swiper-pagination-bullet {
		width: 12px;
		height: 12px;
		border: solid 2px var(--yellow);
	}
}

/* bookSlide基本設定 */
.bookSlider {
	position: relative;
	padding: 0 3% 3%;
	width: 100%;
	overflow: hidden;
}
.bookSlider_item {
	position: relative;
	margin: 0 3%;
	padding-bottom: 3%;
	width: 32%;
	height: auto;
}
.coverSlider .bookSlider_item {
	margin: 0;
}
.bookList .bookSlider_item {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 31.2%;
	flex: 0 0 31.2%;
	margin: 0 1% 1rem;
}
.bookList .bookSlider_item:nth-of-type(3n + 4)::before {
	content: "";
	display: block;
	position: absolute;
	top: -1rem;
	left: 0;
	width: 313%;
	height: 1px;
	background-color: #ddd;
}
.bookSlider_item-large {
	width: 40%;
}
@media screen and (min-width:750px) {
	.bookSlider_item {
		width: 24%;
	}
	.bookList .bookSlider_item {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 23%;
		flex: 0 0 23%;
	}
	.bookList .bookSlider_item:nth-of-type(3n + 4)::before {
		content: none;
	}
	.bookList .bookSlider_item:nth-of-type(4n + 5)::before {
		content: "";
		display: block;
		position: absolute;
		top: -1rem;
		left: 0;
		width: 425%;
		height: 1px;
		background-color: #ddd;
	}
	.bookSlider_item-large {
		width: 30%;
	}
}
@media screen and (min-width:1024px) {
	.bookList .bookSlider_item {
		width: 18%;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 18%;
		flex: 0 0 18%;
	}
	.bookList .bookSlider_item:nth-of-type(4n + 5)::before {
		content: none;
	}
	.bookList .bookSlider_item:nth-of-type(5n + 6)::before {
		content: "";
		display: block;
		position: absolute;
		top: -21px;
		left: 0;
		width: 545%;
		height: 1px;
		background-color: #ddd;
	}
}
.bookSlider_img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
}
.bookSlider_coverLink {
	display: block;
	position: relative;
	margin: 0 auto .7rem;
	padding-bottom: 138%;
	width: 100%;
	height: 0;
}
.bookSlider_coverLink-small {
	margin: 0 auto .7rem;
	padding-bottom: 100%;
	width: 74%;
}
.bookSlider_cover {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
}
.bookSlider_title {
	display: table-cell;
	height: 2.4em;
	line-height: 1.2;
	vertical-align: middle;
}
.bookList .bookSlider_title {
	padding-bottom: .2rem;
	height: auto;
}
.bookSlider_author {
	display: inline-block;
	margin-bottom: .4rem
}
.bookSlider_price {
	display: block;
	font-size: 1.1rem;
}
.rankingFrame .bookSlider_price {
	text-align: right;
}
.bookSlider_date {
	text-align: center;
}
.bookSlider_genre {
	margin-bottom: .2em;
}
@media screen and (min-width:1024px) {
	.bookList .bookSlider_title {
		height: 2.4em;
		font-size: 1.2rem;
	}
	.bookSlider_price {
		
	}
	.bookSlider_date {
		
	}
	.bookSlider_genre {
		
	}
}

.bookList {
	display: -webkit-box;
	display:     -ms-flexbox;
	display:         flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0 auto 1.5rem;
	width: 96%;
}
@media screen and (min-width:750px) {
	.bookList {
		width: 92%;
	}
}

/* ------------------------------------------------
ヘッダー
------------------------------------------------ */
/* CI */
.CI {
	position: relative;
	padding: 2px 10px;
	width: 100%;
	background-color: #f0f0f0;
	font-size: 12px;
	text-align: right;
}
.CI_copy,
.CI_link {
	display: inline-block;
	vertical-align: middle;
}
.CI_logo {
	fill: #222;
	width: 97px;
	height: 13px;
	enable-background:new 0 0 321 31;
}
@media screen and (min-width:1024px) {
	.CI-TOP {
		margin-bottom: 76px;
	}
}

/* Global Navigation */
.globalNav {
	position: -webkit-sticky;
	position:         sticky;
	top: 0;
	z-index: 3;
}
.globalNav_main {
	position: relative;
	width: 100%;
	background-color: #fff;
	border-bottom: solid 1px #ddd;
}

@media screen and (min-width:1024px) {
	.globalNav.globalNav-TOP {
		position: absolute;
		top: 24px;
		left: 0;
		right: 0;
		margin: auto;
		padding: 0;
		width: 100%;
	}
	.globalNav_main {
		padding: 0;
		width: 100%;
	}
	.globalNav_main.globalNav_main-fixed {
		position: fixed;
		top: 0;
	}
	*::-ms-backdrop, .globalNav_main {/* IE11対策 */
		animation: redraw 1s infinite;
	}
}
@media screen and (min-width:1300px) {
	.globalNav_main {
		padding: 0 calc(50% - 650px) 0;
	}
}

.SPHeader {
	display: -webkit-box;
	display:     -ms-flexbox;
	display:         flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 0 5px;
	height: 70px;
}
.SPHeader_smallItem {
	width: 16%;
	text-align: center;
}
.SPHeader_largeItem {
	margin-left: 1%;
	margin-right: 3%;
	width: 47vw;
}
.SPHeader_icon {
	display: block;
	font-size: 32px;
}
.SPHeader_label {
	display: block;
	margin-top: 2px;
	color: #222;
	font-size: 12px;
	line-height: 1;
	-webkit-font-feature-settings: "palt" 1;
	font-feature-settings: "palt" 1;
}
@media screen and (min-width:750px) {
	.SPHeader_smallItem {
		width: 10%;
		text-align: center;
	}
	.SPHeader_largeItem {
		margin-left: 1%;
		margin-right: 3%;
		width: 66vw;
	}
}
@media screen and (min-width:1024px) {
	.SPHeader {
		margin: 0 24rem 0 0;
		padding: 0 0 0;
		height: 76px;
	}
	.SPHeader_smallItem {
		width: auto;
	}
	.SPHeader_largeItem {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 300px;
		flex: 0 0 300px;
		margin: 0 0 0 10px;
		width: 300px;
	}
	.SPHeader_icon {
		margin-top: -2px;
		font-size: 38px;
	}
	.SPHeader_label {
		margin-top: -3px;
	}
	*::-ms-backdrop, .SPHeader_label {/* IE11対策 */
		margin-top: 0;
	}
}

.headerLogo {
	position: relative;
	display: block;
}
.headerLogo_img {
	display: inline-block;
	width: 100%;
	max-width: 150px;
}
@media screen and (min-width:1024px) {
	.headerLogo_img {
		max-width: 170px;
	}
}

.headerNews {

}
.headerNews_button {
	position: relative;
	display: block;
}
.headerNews_button:hover .headerNews_icon,
.headerNews_button:hover .SPHeader_label,
.headerNews_button:active .headerNews_icon,
.headerNews_button:active .SPHeader_label {
	opacity: .6;
}
.headerNews_notice {
	position: absolute;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	top: -.7em;
	left: 1.9rem;
	right: 0;
	margin: auto;
	width: 1.8em;
	height: 1.8em;
	background-color: var(--red);
	border: solid 2px #fff;
	border-radius: 100%;
	color: #fff;
	font-size: .8rem;
	font-weight: bold;
	line-height: 1.8;
	z-index: 1;
	-webkit-animation: flash-red 2.5s linear infinite;
	animation: flash-red 2.5s linear infinite;
}
@-webkit-keyframes flash-red {
	0% {
		-webkit-box-shadow:
			0 0 0 0 #fff,
			0 0 0 0 #f25857;
		box-shadow:
			0 0 0 0 #fff,
			0 0 0 0 #f25857;
	}
	40% {
		-webkit-box-shadow:
			0 0 0 0 #fff,
			0 0 0 0 #f25857;
		box-shadow:
			0 0 0 0 #fff,
			0 0 0 0 #f25857;
	}
	62% {
		-webkit-box-shadow:
			0 0 0 0 #fff,
			0 0 0 1px #f25857;
		box-shadow:
			0 0 0 0 #fff,
			0 0 0 1px #f25857;
	}
	90% {
		-webkit-box-shadow:
			0 0 0 1px rgba(255, 255, 255, 1),
			0 0 0 2px rgba(242, 88, 87, 0);
		box-shadow:
			0 0 0 1px rgba(255, 255, 255, 1),
			0 0 0 2px rgba(242, 88, 87, 0);
	}
	100% {
		-webkit-box-shadow:
			0 0 0 2px rgba(255, 255, 255, 0),
			0 0 0 2px rgba(242, 88, 87, 0);
		box-shadow:
			0 0 0 2px rgba(255, 255, 255, 0),
			0 0 0 2px rgba(242, 88, 87, 0);
	}
}
@keyframes flash-red {
	0% {
		-webkit-box-shadow:
			0 0 0 0 #fff,
			0 0 0 0 #f25857;
		box-shadow:
			0 0 0 0 #fff,
			0 0 0 0 #f25857;
	}
	40% {
		-webkit-box-shadow:
			0 0 0 0 #fff,
			0 0 0 0 #f25857;
		box-shadow:
			0 0 0 0 #fff,
			0 0 0 0 #f25857;
	}
	62% {
		-webkit-box-shadow:
			0 0 0 0 #fff,
			0 0 0 1px #f25857;
		box-shadow:
			0 0 0 0 #fff,
			0 0 0 1px #f25857;
	}
	90% {
		-webkit-box-shadow:
			0 0 0 1px rgba(255, 255, 255, 1),
			0 0 0 2px rgba(242, 88, 87, 0);
		box-shadow:
			0 0 0 1px rgba(255, 255, 255, 1),
			0 0 0 2px rgba(242, 88, 87, 0);
	}
	100% {
		-webkit-box-shadow:
			0 0 0 2px rgba(255, 255, 255, 0),
			0 0 0 2px rgba(242, 88, 87, 0);
		box-shadow:
			0 0 0 2px rgba(255, 255, 255, 0),
			0 0 0 2px rgba(242, 88, 87, 0);
	}
}
@-webkit-keyframes flash-red-ie {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}
	70% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}
	100% {
		-webkit-transform: scale(1.5);
		transform: scale(1.5);
		opacity: 0;
	}
}
@keyframes flash-red-ie {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}
	70% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}
	100% {
		-webkit-transform: scale(1.5);
		transform: scale(1.5);
		opacity: 0;
	}
}
_:-ms-lang(x)::-ms-backdrop, .headerNews_notice {
	-webkit-animation: none;
	animation: none;
}
_:-ms-lang(x)::backdrop, .headerNews_notice {
	-webkit-animation: none;
	animation: none;
}
_:-ms-lang(x)::-ms-backdrop, .headerNews_notice::before {
	content: "";
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: solid 1px #f25857;
	border-radius: 100%;
	-webkit-animation: flash-red-ie 1.6s linear infinite;
	animation: flash-red-ie 1.6s linear infinite;
}
_:-ms-lang(x)::backdrop, .headerNews_notice::before {
	content: "";
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: solid 1px #f25857;
	border-radius: 100%;
	-webkit-animation: flash-red-ie 1.6s linear infinite;
	animation: flash-red-ie 1.6s linear infinite;
}
.headerNews_icon {
	color: #444;
}
.headerNews_extra {
	position: absolute;
	top: 0;
	right: 49%;
	bottom: 0;
	-webkit-transition: all .6s;
	transition: all .6s;
}
.headerNews_balloon {
	position: absolute;
	display: table;
	top: 50%;
	right: 0;
	margin: auto;
	padding: .4rem .7rem;
	width: 100%;
	border-radius: 3px;
	background-color: var(--yellow-light);
	color: #222;
	text-align: left;
	line-height: 1.2;
	table-layout: fixed;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.headerNews_balloon:hover,
.headerNews_balloon:hover .headerNews_text::before,
.headerNews_balloon:hover .headerNews_text::after,
.headerNews_balloon:active,
.headerNews_balloon:active .headerNews_text::before,
.headerNews_balloon:active .headerNews_text::after{
	background-color: #bea765;
	background-color: var(--yellow);
	color: #fff
}
.headerNews_balloon::before {
	content: "";
	position: absolute;
	display: block;
	top: 0;
	left: 100%;
	bottom: 0;
	margin: auto;
	width: 0;
	height: 0;
	border: solid 6px;
	border-color: transparent;
	border-left: solid 13px var(--yellow-light);
}
.headerNews_balloon:hover::before {
	border-left: solid 13px #bea765;
	border-left: solid 13px var(--yellow);
}
.headerNews_date {
	display: block;
	line-height: 1.6;
	font-size: 11px;
	white-space: nowrap;
	overflow: hidden;
}
.headerNews_text {  /* ※お知らせタイトルが一行になったときに「…」が表示される */
	display: block;
	position: relative;
	height: 2.4em;
	font-size: 12px;
	font-weight: bold;
	text-align: justify;
	text-justify: inter-ideograph;/* IE11 Edge */
	overflow: hidden;
}
.headerNews_text::after {
	content: "";
	display: inline-block;
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: var(--yellow-light);
}
.headerNews_text::before {
	content: "…";
	position: absolute;
	display: block;
	right: 0;
	bottom: 0;
	width: 1em;
	background-color: var(--yellow-light);
}
@media screen and (min-width:750px) {
	.headerNews_extra {
		right: 30%;
	}
	.headerNews_date {
		font-size: 14px;
	}
	.headerNews_text {
		height: 1.2em;
		font-size: 17px;
	}
}
@media screen and (min-width:1024px) {
	.headerNews {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 90px;
		flex: 0 0 90px;
		position: relative;
		width: 90px;
	}
	.headerNews_extra {
		right: 100%;
		width: 300px;
	}
	.headerNews_balloon {
		padding: .35rem .7rem;
	}
	.headerNews_date {
		font-size: 13px;
	}
	.headerNews_text {
		height: 2.3em;
		font-size: 14px;
	}
}
/* 消えるアニメーション */
.headerNews_extra {
	-webkit-transition: width .6s, opacity .2s;
	transition: width .6s, opacity .2s;
}
.headerNews-hidden .headerNews_extra {
	width: 0;
	opacity: 0;
	-webkit-transition: width .6s, opacity .2s .3s;
	transition: width .6s, opacity .2s .3s;
}
.headerNews_date,
.headerNews_text {
	-webkit-transition: opacity .4s .6s;
	transition: opacity .4s .6s;
}
.headerNews-hidden .headerNews_date,
.headerNews-hidden .headerNews_text {
	opacity: 0;
	-webkit-transition: opacity .2s;
	transition: opacity .2s;
}

/* ヘッダー検索欄 */
.headerSearch {

}
.headerSearch_button {
	display: block;
	cursor: pointer;
}
.headerSearch_icon {
	color: #31948D;
}
.headerSearchReset { /* 閉じる */
	display: block;
	cursor: pointer;
}
.headerSearchReset::after {
	content: "";
	opacity: 0;
}
#headerSearchSwitch:checked ~ .globalNav_main .SPHeader .headerSearchReset::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	padding-top: 70px;
	width: 16%;
	height: 0;
	background-color: #fff;
	opacity: .7;
}
#headerSearchSwitch:checked ~ .globalNav_main .SPHeader .headerSearchReset::after {
	position: absolute;
	top: 71px;
	left: 0;
	right: 0;
	width: 100%;
	height: 100vh;
	background-color: #000;
	opacity: .3;
	-webkit-transition: opacity .4s;
	transition: opacity .4s;
}
@media screen and (min-width:750px) {
	#headerSearchSwitch:checked ~ .globalNav_main .SPHeader .headerSearchReset::before {
		width: 10%;
	}
}
@media screen and (min-width:1024px) {
	.headerSearch {
		-webkit-box-flex: 1;
		-ms-flex: 1 1 auto;
		flex: 1 1 auto;
		width: 1%
	}
	.headerSearch_button {
		display: none;
	}
}

.search {
	display: -webkit-box;
	display:     -ms-flexbox;
	display:         flex;
	background-color: #fff;
	border-radius: 50em;
}
.headerSearch .search {
	position: absolute;
	top: -100vh;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 96%;
	border: solid 3px #fff;
	-webkit-box-shadow: 0 .15em .5em 0 rgba(0,0,0,.4);
	box-shadow: 0 .15em .5em 0 rgba(0,0,0,.4);
	z-index: -10;
	opacity: 0;
	-webkit-transition: z-index 0s .2s, opacity .2s, margin-top .2s, top 0s .2s;
	transition: z-index 0s .2s, opacity .2s, margin-top .2s, top 0s .2s;
}
.headerSearch .search::before {
	content: "";
	position: absolute;
	display: block;
	top: -1.3rem;
	right: 21%;
	width: 0;
	height: 0;
	border-left: solid .6rem transparent;
	border-right: solid .6rem transparent;
	border-bottom: solid 1.3rem #fff;
	opacity: 1;
	-webkit-transform-origin: right bottom;
	transform-origin: right bottom;
}
/* 検索欄開く */
#headerSearchSwitch:checked ~ .globalNav_main .SPHeader .search {
	top: 71px;
	margin-top: 1.5rem;
	z-index: 1;
	opacity: 1;
	-webkit-transition: opacity .2s, margin-top .2s;
	transition: opacity .2s, margin-top .2s;
}

input.search_input {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	width: 1em;
	min-width: 0;
	padding: 0 0 0 1.4em;
	border-radius: 50em 0 0 50em;
	font-family: "Lucida Grande", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
	font-size: 1.2rem;
}
*::-ms-backdrop, input.search_input {/* IE11対策 テキスト下に隙間が出来る問題 */
	font-family: "Lucida Grande", "メイリオ", sans-serif;
}
.searchButton {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 4.8rem;
	flex: 0 0 4.8rem;
	height: 3.6rem;
	border-radius: 0 3px 3px 0;
	border-radius: 0 50em 50em 0;
	background-color: var(--green);
	line-height: 1;
	cursor: pointer;
}
.searchButton_icon {
	color: white;
	font-size: 1.9rem;
}
@media screen and (min-width:750px) {
	.headerSearch .search::before {
		content: "";
		position: absolute;
		display: block;
		right: 12%;
	}
}
@media screen and (min-width:1024px) {
	.headerSearch .search {
		position: relative;
		left: 0;
		top: 0;
		width: 100%;
		border: solid 3px var(--green);
		-webkit-box-shadow: none;
		box-shadow: none;
		opacity: 1;
		z-index: 0;
		-webkit-transition: none;
		transition: none;
	}
	.headerSearch .search::before {
		content: none;
	}
	input.search_input {
		padding: 0 0 0 1em;
		font-size: 1rem;
	}
	.searchButton {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 3.2rem;
		flex: 0 0 3.2rem;
		height: 2.3rem;
		-webkit-box-shadow: 1px 0 0 1px var(--green);
		box-shadow: 1px 0 0 1px var(--green);
	}
	.searchButton_icon {
		font-size: 1.4rem;
	}
}

.menuOpener_button {
	display: block;
	cursor: pointer;
}
.menuOpener_icon {
	color: #444;
}

/* SPメニュー */
.globalNav_sub {
	position: fixed;
	top: 0;
	right: -100%;
	width: 86%;
	max-width: 460px;
	height: 100%;
	background-color: #fff;
	overflow-y: auto;
	z-index: 5;
	-webkit-transition: right .3s;
	transition: right .3s;
	-webkit-overflow-scrolling: touch;
	overflow-scrolling: touch;
}
#menuSwitch:checked ~ .globalNav_sub {
	right: 0;
}
.headerMenuReset {
	display: block;
	position: fixed;
	top: 0;
	left: 100%;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.7);
	opacity: 0;
	-webkit-transition: opacity .3s, left 0s .3s;
	transition: opacity .3s, left 0s .3s;
}
#menuSwitch:checked ~ .headerMenuReset {
	left: 0;
	opacity: 1;
	z-index: 4;
	cursor: pointer;
	-webkit-transition: opacity .3s;
	transition: opacity .3s;
}
.headerMenuReset_icon {
	display: block;
	padding: 2% 2% 0 0;
	width: 14%;
	width: calc(100% - 460px);
	min-width: 14%;
	color: #fff;
	font-size: 36px;
	text-align: right;
	opacity: 0;
	-webkit-transition: opacity .2s .3s;
	transition: opacity .2s .3s;
}
#menuSwitch:checked ~ .headerMenuReset .headerMenuReset_icon {
	opacity: 1;
}
@media screen and (min-width:1024px) {
	.globalNav_sub {
		position: static;
		width: auto;
		max-width: none;
		height: auto;
		background-color: transparent;
		-webkit-transition: none;
		transition: none;
	}
}

/* アカウント情報 */
/* ログアウト中 */
.account-logout {
	width: 86%;
	margin: 1rem auto;
	overflow: hidden;
}
.account_logoutItem {
	float: left;
	width: 49%;
}
.account_logoutItem:first-of-type {
	margin-right: 2%;
}
.account_button {
	padding: .4em .6em .4em 0;
	width: 100%;
	font-size: .9rem;
}

/* ログイン中 */
.account-login {
	padding: .5em 6% 0 6%;
	background-color: var(--green-light);
}
.account_status {
	padding-left: 1%;
	border-bottom: solid 1px #fff;
}

/* ログイン関係とメニューアイテム */
.menu_item,
.account_loginItem {
	padding: .3em 0 .3em 1%;
	font-size: 1.2rem;
}
.account_loginItem + .account_loginItem {
	border-top: solid 1px #fff;
}
.menu_item + .menu_item {
	border-top: solid 1px #eee;
}
.menu_link,
.account_loginLink {
	position: relative;
	display: block;
	color: #222;
	font-weight: bold;
}
.footerMenu_link::before,
.menu_link::before,
.account_loginLink::before {
	content: "";
	position: absolute;
	display: block;
	top: 0;
	right: 4%;
	bottom: 0;
	margin: auto;
	width: .6rem;
	height: .6rem;
	border-top: solid 2px var(--green);
	border-right: solid 2px var(--green);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
@media screen and (min-width:1024px) {
	.account {
		-webkit-box-sizing: content-box;
		box-sizing: content-box;
		position: absolute;
		display: -webkit-box;
		display:     -ms-flexbox;
		display:         flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-ms-flex-line-pack: center;
		align-content: center;
		top: 0;
		right: 0;
		margin: .5em 1em;
		padding: 0 0 0 1em;
		width: 21rem;
		height: 60px;
		height: calc(76px - 1em);
		background-color: transparent;
		border-left: solid 1px #ddd;
	}
	.account.account-fixed {
		position: fixed;
	}
	.account_loginItem,
	.account_button {
		font-size: .9rem;
	}
	/* ログアウト中 */
	.account_button {
		padding: .65em .6em .65em 0;
		width: 100%;
		font-size: .9rem;
	}
	/* ログイン中 */
	/* ログイン状態 */
	.account_status {
		-webkit-box-flex: 1;
		-ms-flex: 1 1 100%;
		flex: 1 1 100%;
		margin-bottom: 6px;
		border: none;
		font-size: .9rem;
		font-weight: bold;
		line-height: 1;
	}
	.account_loginItem {
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
		padding: .3em .5em .3em 1.2em;
		padding: 0 .5em 0 0;
		border-radius: 50em;
		background-color: #fff;
		-webkit-font-feature-settings: "palt" 1;
		font-feature-settings: "palt" 1;
	}
	.account_loginItem + .account_loginItem {
		border-top: none;
		margin-left: 5px;
	}
	.account_loginLink {
		display: block;
		padding: .3em .3em .3em .2em;
		text-align: center;
	}
	/* My本棚 */
	.account_loginItem-shelf {
		background-color: var(--red);
		border: solid 1px var(--red);
	}
	.account_loginItem-shelf .account_loginLink {
		color: #fff;
	}
	.account_loginItem-shelf .account_loginLink::before {
		border-color: #fff;
	}
	.account_loginItem-shelf:hover {
		background-color: #fff;
	}
	.account_loginItem-shelf:hover .account_loginLink {
		color: var(--red);
	}
	.account_loginItem-shelf:hover .account_loginLink::before {
		border-color: var(--red);
	}
	/* アカウント */
	.account_loginItem.account_loginItem-account {
		border: solid 1px var(--green);
	}
	.account_loginItem-account .account_loginLink {
		color: var(--green);
	}
	.account_loginItem.account_loginItem-account:hover {
		background-color: var(--green);
	}
	.account_loginItem-account:hover .account_loginLink {
		color: #fff;
	}
	.account_loginItem-account:hover .account_loginLink::before {
		border-color: #fff;
	}
	/* ログアウトボタン */
	.account_loginItem.account_loginItem-logout {
		border: solid 1px #999;
	}
	.account_loginItem-logout .account_loginLink {
		color: #999;
	}
	.account_loginItem-logout .account_loginLink::before {
		border-color: #999;
	}
	.account_loginItem.account_loginItem-logout:hover {
		background-color: #999;
	}
	.account_loginItem-logout:hover .account_loginLink {
		color: #fff;
	}
	.account_loginItem-logout:hover .account_loginLink::before {
		border-color: #fff;
	}
}
@media screen and (min-width:1300px) {
	.account {
		padding: 0 calc(50% - 650px) 0 1em;
	}
}

/* メニュー項目 */
.menu_heading {
	margin: 0;
	padding: .2em 0 .2em 4%;
	background-color: var(--green);
	color: #fff;
	font-size: 14px;
	font-weight: bold;
}
.menu_content {
	padding: .2rem 6%;
}
.menu_itemImg {
	position: relative;
	margin: 14px 0;
	border: solid 1px #ddd;
}
.menu_more {
	margin-bottom: 1.6rem
}
.menu_more_button {
	background-color: var(--red);
}
@media screen and (min-width:1024px) {
	.PCNav {

	}
	.globalNav-TOP .PCNav {
		position: absolute;
		top: 417px;
		width: 100%;
	}
	.PCNav.PCNav-fixed {
		position: fixed;
		top: 77px;
		z-index: 10
	}
	.menu {
		display: -webkit-box;
		display:     -ms-flexbox;
		display:         flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		width: 100%;
		background-color: #fff;
		border-bottom: solid 1px #ddd;
	}
	.menu_section {
		-webkit-box-flex: 1;
		-ms-flex: 1 1 325px;
		flex: 1 1 325px;
		padding: .6rem 0;
		max-width: 325px;
		height: 2.6rem;
		background-color: #fff;
		text-align: center;
	}
	.menu_section:hover {
		background-color: var(--green-light);
	}
	.menu_section.menu_section-top.menu_section-current:hover {
		background-color: #fff;
	}
	.menu_heading {
		display: block;
		position: relative;
		height: 1.4rem;
		border-right: dotted 1px #888;
		background-color: transparent;
		color: #444;
		font-size: 1rem;
		line-height: 1.1;
	}
	.menu_section-current .menu_heading {
		color: #31948D;
		font-weight: bold;
	}
	.menu_section:first-of-type .menu_heading {
		border-left: dotted 1px #888;
	}
	.menu_section-current:hover .menu_heading::before {
		content: none;
	}
	.menu_section-current .menu_heading::before,
	.menu_section-current.menu_section-top .menu_heading::before {
		content: "";
		display: block;
		position: absolute;
		left: 2rem;
		right: 2rem;
		bottom: -7px;
		width: auto;
		height: 3px;
		background-color: var(--green);
		border-radius: 10px;
	}
	.menu_content {
		display: -webkit-box;
		display:     -ms-flexbox;
		display:         flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		position: absolute;
		left: 200%;
		right: 0;
		margin: .6rem auto 0;
		padding: 0 2rem;
		width: 100%;
		max-width: 1300px;
		max-height: 0;
		background-color: var(--green);
		overflow: hidden;
		opacity: 0;
		-webkit-transition: margin 0s .4s, opacity .2s .2s, left 0s .4s, max-height .6s, padding .6s .1s;
		transition: margin 0s .4s, opacity .2s .2s, left 0s .4s, max-height .6s, padding .6s .1s;
	}
	.menu_section:hover .menu_content::before {/* 吹き出し */
		content: "";
		display: block;
		position: absolute;
		bottom: 99%;
		width: 0;
		border-left: solid .4rem transparent;
		border-right: solid .4rem transparent;
		border-bottom: solid .7rem var(--green);
	}
	.menu_section:nth-of-type(2) .menu_content::before {
		left: 37.5%;
	}
	.menu_section:nth-of-type(3) .menu_content::before {
		left: 62.5%;
	}
	.menu_section:nth-of-type(4) .menu_content::before {
		left: 87.5%;
	}
	.menu_section:hover .menu_content {
		left: 0;
		padding: 2rem;
		max-height: 20rem;
		overflow: visible;
		z-index: 1;
		opacity: 1;
		-webkit-transition: margin .2s, opacity .2s;
		transition: margin .2s, opacity .2s;
	}
	.menu_content > * {
		opacity: 0;
	}
	.menu_section:hover .menu_content > * {
		opacity: 1;
	}
	/* ドロップダウン中身 */
	.menu_item {
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
		position: relative;
		padding: .5rem;
		font-size: 1.2rem;
	}
	.menu_item + .menu_item {
		border-top: none;
		border-left: dotted 1px #fff;
	}
	.menu_link {
		position: static;
		color: #fff;
		font-weight: normal;
	}
	.menu_link::after {
		content: "";
		position: absolute;
		display: block;
		left: 0;
		right: 0;
		bottom: 0;
		margin: auto;
		width: 0;
		height: 2px;
		background-color: #fff;
		opacity: 0;
		-webkit-transition: width 0s .2s, opacity .2s;
		transition: width 0s .2s, opacity .2s;
	}
	.menu_link:hover {
		color: #fff;
		font-weight: bold;
	}
	.menu_link:hover::after {
		width: 80%;
		opacity: 1;
		-webkit-transition: width .2s;
		transition: width .2s;
	}
	.menu_link::before {
		content: none;
	}
	.menu_itemImg {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 28%;
		flex: 0 0 28%;
		margin:0 .5rem 1rem;
		border: none;
		-webkit-box-shadow: 0 0 0 0px #fff;
		box-shadow: 0 0 0 0px #fff;
		-webkit-transition: -webkit-box-shadow .2s;
		transition: -webkit-box-shadow .2s;
		transition:         box-shadow .2s;
		transition: box-shadow .2s, -webkit-box-shadow .2s;
	}
	.menu_itemImg:hover {
		-webkit-box-shadow: 0 0 0 2px #fff;
		box-shadow: 0 0 0 2px #fff;
	}
	.menu_more {
		-webkit-box-flex: 1;
		-ms-flex: 1 0 100%;
		flex: 1 0 100%;
		margin: 1rem 0 0;
	}
	.menu_more_button {
		background-color: #fff;
		color: #222;
	}
	.menu_more_button::before,
	.menu_more_button::after {
		border-color: #222;
	}
}

/* ------------------------------------------------
フッター
------------------------------------------------ */
/* フッター */
.footer {

}
.footerLinks,
.footerMenu {
	padding: .2rem 6%;
	background-color: #4B4C4D;
}
.footerMenu_item {
	padding: .6em 0 .6em 1%;
	border-bottom: solid 1px #888;
}
.footerMenu_link {
	position: relative;
	display: block;
	color: #fff;
	font-size: 1rem;
}
.footerMenu_link:hover {
	color: #fff;
	text-decoration: underline;
}
.footerMenu_link::before {
	content: "";
	position: absolute;
	display: block;
	top: 0;
	right: 4%;
	bottom: 0;
	margin: auto;
	width: .6rem;
	height: .6rem;
	border-top: solid 2px var(--green);
	border-right: solid 2px var(--green);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.footerMenu_link::before {
	border-color: #fff;
}
.footerLinks_item {
	padding: .2em 0 .2em 1%;
}
.footerLinks_link {
	color: #fff;
	font-size: .9rem;
}
@media screen and (min-width:1024px) {
	.footerMenu {
		display: -webkit-box;
		display:     -ms-flexbox;
		display:         flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		padding: .8rem 0;
		background-color: #4B4C4D;
	}
	.footerMenu_item {
		-webkit-box-flex: 0;
		-ms-flex: 0 1 15%;
		flex: 0 1 15%;
		padding: 0em 0;
		max-width: 210px;
		border-bottom: none;
		text-align: center;
	}
	.footerMenu_item + .footerMenu_item {
		border-left: solid 1px #fff;
	}
	.footerMenu_link::before {
		content: none;
	}
	.footerLinks {
		position: absolute;
		margin: auto;
		padding: .3rem 1rem;
		left: 0;
		right: 0;
		bottom: 0;
		width: 100%;
		max-width: 1300px;
		height: 2rem;
		background-color: transparent;
	}
	.footerLinks_item {
		padding: 0 1rem 0 0;
		display: inline-block;
		height: 1rem;
		line-height: 1;
	}
	.footerLinks_item + .footerLinks_item {
		padding-left: 1rem;
		border-left: solid 1px #888;
	}
	.footerLinks_link {
		color: #666;
	}
}

/* フッター コーポレート・アイデンティティ */
.footerCI {
	padding-top: 6%;
	background-color: #222;
}
.footerCI_voyager {
	display: block;
	margin: auto;
	width: 50%;
	max-width: 280px;
}
.footerCI_voyagerLogo {
	display: block;
	width: 100%;
	fill: #fff;
	enable-background:new 0 0 321 31;
}
.footerCI_voyagerCopy {
	display: block;
	color: #fff;
	font-family: "dnp-shuei-ymincho-std", serif;
	text-align: center;
}
.footerCI_section {
	margin: 1.5rem auto;
	width: 90%;
}
.footerCI_heading {
	color: #fff;
	font-size: .9rem;
	font-weight: normal;
}
.footerCI_content {
	position: relative;
	margin: 0 0 .5rem 1rem;
	padding: .5rem 0 1px;
	border-left: solid 1px #fff;
	overflow: hidden;
}
.footerCI_item {
	margin-left: 1rem;
	margin-bottom: 10px;
}
.footerCI_item:hover {
	opacity: .8
}
.footerCI_copyright {
	padding: .2rem 0 .6rem;
	background-color: #fff;
	color: #666;
	font-size: .7rem;
	text-align: center;
}
@media screen and (min-width:750px) {
	.footerCI {
		padding-top: 2rem;
	}
	footer .footerCI_item {
		float: left;
		width: 47%;
	}
}
@media screen and (min-width:1024px) {
	.footerCI_voyager {
		max-width: 220px;
	}
	.footerCI_voyagerCopy {
		font-size: 1.1rem;
	}
	.footerCI_section {
		display: -webkit-box;
		display:     -ms-flexbox;
		display:         flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		margin: 1rem auto;
		max-width: 1000px;
	}
	.footerCI_heading {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 11rem;
		flex: 0 0 11rem;
		font-size: 1rem;
		text-align: center;
	}
	.footerCI_content {
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
	}
	.footerCI_copyright {
		padding: .2rem calc(50% - 650px) .4rem 1rem;
		height: 2rem;
		font-size: .9rem;
		text-align: right;
	}
	.footerCI_copyright::after {
		content: "";
		display: inline-block;
		width: 1rem;
	}
}

/* ------------------------------------------------
トップページ
------------------------------------------------ */
/* トップ メインコンテンツ */
.topCatch {
	padding-top: 6%;
	background-color: #f3fffe;
	background-image: url(./images/bg_main_na.png);
	background-size: 130px;
}
.topCatch_logo {
	margin-bottom: 5%;
}
.topCatch_img {
	margin: auto;
	width: 56%;
	max-width: 400px;
}
@media screen and (min-width:750px) {
	.topCatch {
		padding-top: 40px;
	}
	.topCatch_logo {
		margin-bottom: 20px;
	}
}
@media screen and (min-width:1024px) {
	.topCatch {
		display: -webkit-box;
		display:     -ms-flexbox;
		display:         flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		position: relative;
		margin: 0 0 3rem 0;
		padding: 10px 0 0;
		background-size: 200px;
	}
	.topCatch_intro {
		-webkit-box-flex: 1;
		-ms-flex: 1 1 auto;
		flex: 1 1 auto;
		position: relative;
		padding-top: 22px;
		width: 40%;
		max-width: 480px;
		text-align: center;
	}
	.topCatch_img {
		margin: auto;
		width: 74%;
		max-width: 310px;
	}
}

/* はじめての方へボタン */
.aboutButton {
	position: fixed;
	display: block;
	right: 1rem;
	bottom: 1rem;
	padding: .9em 1.3em;
	border-radius: 20em;
	background-color: var(--green);
	-webkit-box-shadow: 0 .15em .5em 0 rgba(0,0,0,.4);
	box-shadow: 0 .15em .5em 0 rgba(0,0,0,.4);
	text-align: center;
	z-index: 2;
	-webkit-transition: padding .2s;
	transition: padding .2s;
}
.aboutButton_text,
.aboutButton_icon {
	float: left;
	display: block;
	height: 1em;
	color: #fff;
	line-height: 1.2;
}
.aboutButton_icon {
	font-size: 1rem;
}
.aboutButton_text {
	margin-left: .5em;
	max-width: 8em;
	font-size: 1rem;
	white-space: nowrap;
	overflow: hidden;
	opacity: 1;
	-webkit-transition: opacity .2s, max-width .2s;
	transition: opacity .2s, max-width .2s;
}
@media screen and (max-width:1023px) {
	.aboutButton-circle {
		padding: 1em 1.2em;
	}
	.aboutButton-circle .aboutButton_icon {
		font-size: 1.5rem;
	}
	.aboutButton-circle .aboutButton_text {
		margin-left: 0;
		max-width: 0;
		opacity: 0;
	}
}
@media screen and (min-width:1024px) {
	.aboutButton {
		position: absolute;
		display: block;
		left: 0;
		right: 0;
		bottom: 6.8rem;
		margin: auto;
		padding: .3em 1.8em;
		width: 74%;
		max-width: 300px;
		border: solid 2px var(--green);
		border-radius: 20em;
		-webkit-box-shadow: none;
		box-shadow: none;
		text-align: center;
	}
	.aboutButton:hover {
		background-color: #fff;
	}
	.aboutButton::before,
	.aboutButton::after {
		content: "";
		position: absolute;
		display: block;
		top: 0;
		bottom: 0;
		margin: auto;
		width: .6em;
		height: .6em;
		border-top: solid 2px #fff;
		border-right: solid 2px #fff;
		border-radius: 2px;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg)
	}
	.aboutButton::before {
		right: 1em;
	}
	.aboutButton::after {
		right: 1.4em;
	}
	.aboutButton:hover::before,
	.aboutButton:hover::after {
		border-color: var(--green);
	}
	.aboutButton_text,
	.aboutButton_icon {
		float: none;
		display: inline-block;
		height: auto;
		vertical-align: middle;
		line-height: 1.6;
	}
	.aboutButton_icon {
		font-size: 1.3rem;
	}
	.aboutButton_text {
		font-size: 1.2rem;
	}
	.aboutButton:hover .aboutButton_text,
	.aboutButton:hover .aboutButton_icon {
		color: var(--green);
	}
}

/* トップ 作品ピックアップ */
.topCatch_recommend {

}
.topCatch_recommend::after {/* 薄緑のバー */
	content: "";
	display: block;
	position: absolute;
	left: 0;
	margin-top: -5.4rem;
	padding-bottom: 5.4rem;
	width: 100%;
	background-color: rgba(45, 177, 170, 0.21);
}
.topCatch_recommendTitle {
	display: table;
	position: relative;
	margin: 0 auto 1rem auto;
	padding: .3em 0;
	width: 84%;
	-webkit-box-shadow: 0 0 0 2px;
	box-shadow: 0 0 0 2px;
	border-radius: 4px;
	font-size: .9rem;
	line-height: 1.4;
	text-align: center;
}
.topCatch_recommendTitle,
.topCatch_recommendTitle a {
	color: #222;
}
.topCatch_recommendTitle-red,
.topCatch_recommendTitle-red::after,
.topCatch_recommendTitle-red a {
	color: var(--red);
}
.topCatch_recommendTitle-blue,
.topCatch_recommendTitle-blue::after,
.topCatch_recommendTitle-blue a {
	color: var(--link);
}

.topCatch_recommendTitle-line::before {
	content: "";
	display: block;
	position: absolute;
	top: 100%;
	left: 1.1rem;
	border-top: solid .5em #fff;
	border-left: solid .5em #fff;
	border-right: solid .5em #F6FFFF;
	border-bottom: solid .5em #F6FFFF;
}
.topCatch_recommendTitle-line::after {
	content: "";
	display: block;
	position: absolute;
	top: 100%;
	left: 1rem;
	width: 100%;
	height: 2.6rem;
	border-top: solid 1px transparent;
	border-left: solid 2px;
	-webkit-transform-origin: left top;
	transform-origin: left top;
	-webkit-transform: rotate(-35deg);
	transform: rotate(-35deg);
	z-index: 2;
}

.recommendSlider {
	position: relative;
	padding-top: .15rem;
	padding-bottom: .7rem;
	background-image: url(./images/bg_scroll.png);
	background-repeat: no-repeat;
	background-position: 94% 10%;
	background-size: 18% auto;
	overflow: hidden;
}

.recommendSlider_book {
	padding-bottom: 55%;
	width: 43%;
	height: 0;
}

.recommendSlider_link {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 62%;
	-webkit-transition: height .4s .2s;
	transition: height .4s .2s;
}
.swiper-slide-active .recommendSlider_link,
.swiper-slide-duplicate-active .recommendSlider_link {
	height: 100%;
	z-index: 3
}
.recommendSlider .swiper-slide::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	margin: auto;
	width: 100%;
	height: 100%;
	z-index: 2;
}
.recommendSlider .swiper-slide-active::before {
	z-index: 0;
	-webkit-transition: z-index 0s, .4s;
	transition: z-index 0s, .4s;
}
.recommendSlider_cover {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	z-index: 1;
}
.recommendSlider_info {
	position: absolute;
	display: block;
	left: 80%;
	bottom: 0;
	width: 54vw;
	color: #222;
	font-size: 1rem;
	line-height: 1.4;
	opacity: 0;
}
.recommendSlider .swiper-slide-active .recommendSlider_info,
.recommendSlider .swiper-slide-duplicate-active:not(.swiper-slide-duplicate) .recommendSlider_info {
	left: 102%;
	opacity: 1;
	-webkit-transition: left .4s .55s, opacity .4s .6s;
	transition: left .4s .55s, opacity .4s .6s;
}
.recommendSlider_title {
	margin: 0;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}
.recommendSlider_author {
	display: block;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}
.recommendSlider_genre {

}

/* js実行前の表示 */
.FirstBookRe .recommendSlider_link {
	height: 100%;
}
.FirstBookRe .recommendSlider_info {
	left: 102%;
	opacity: 1;
}
@media screen and (min-width:750px) {
	.topCatch_recommend::after {/* 薄緑のバー */
		margin-top: -5.4rem;
		padding-bottom: 5.4rem;
	}
	.topCatch_recommendTitle {
		margin: 0 auto 4px auto;
		max-width: 700px;
	}
	.topCatch_recommendTitle-line::after {
		height: 4.8rem;
	}
	.topCatch_recommendTitle-line::before {
		border-width: .75em;
	}
	
	.recommendSlider {
		padding: 50px 0 .7rem 60px;
		background-position: 658px 0;
		background-size: auto 64px;
	}
	.recommendSlider_book {
		padding-bottom: 300px;
		width: 210px;
	}
	.recommendSlider_link {
		height: 66%;
	}
	.recommendSlider_info {
		padding-left: 26px;
		width: calc(100vw - 320px);
	}
	.recommendSlider .swiper-slide-active .recommendSlider_info,
	.recommendSlider .swiper-slide-duplicate-active:not(.swiper-slide-duplicate) .recommendSlider_info {
		left: 100%;
	}
	.recommendSlider_title {
		font-size: 1.3rem;
	}
}
@media screen and (min-width:1024px) {
	.topCatch_recommend {
		-webkit-box-flex: 1;
		-ms-flex: 1 1 auto;
		flex: 1 1 auto;
		width: 60%;
		max-width: 820px;
	}
	.topCatch_recommendTitle {
		display: table;
		position: absolute;
		left: 0;
		bottom: 2.7rem;
		margin: 0 0 0 20%;
		padding: .3em 1em;
		width: auto;
		min-width: 280px;
		max-width: 320px;
		border-radius: 4px;
		font-size: 1rem;
		line-height: 1.3;
		z-index: 2;
		-webkit-transform: translate(-50%, 50%);
		transform: translate(-50%, 50%);
	}
	.topCatch_recommendTitle-line {
		border-radius: 4px 4px 0 4px;
	}
	.topCatch_recommendTitle-line::before {
		top: auto;
		left: 99.5%;
		bottom: 0;
		background-color: #D6EFE3;
		border-top: none;
		border-left: none;
		border-right: none;
		border-bottom: none;
		width: calc(1.1rem - 30% + 9vw);
		height: .6em;
		-webkit-box-shadow: 0 2px 0 0;
		box-shadow: 0 2px 0 0;
	}
	.topCatch_recommendTitle-line::after {
		top: auto;
		left: calc(70% + .95rem + 9vw);
		bottom: 0;
		width: 100%;
		height: 7rem;
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(50deg);
		transform: rotate(50deg);
	}
	
	.recommendSlider {
		padding: 20px 0 10px 10px;
		background-position: 396px 0;
		background-size: auto 58px;
	}
	.recommendSlider_info {
		padding-left: 18px;
		width: 38vw;
		max-width: 580px;
	}
}
@media screen and (min-width:1200px) {
	.topCatch_recommendTitle {
		right: auto;
		margin: 0 0 0 240px;
	}
}
@media screen and (min-width:1300px) {
	.topCatch_recommendTitle {
		left: 50%;
		right: auto;
		margin: 0 0 0 -410px;
	}
	.topCatch_recommendTitle-line::before {
		width: 42px;
	}
	.topCatch_recommendTitle-line::after {
		left: calc(100% + 39px);
	}
}

/* トップバナー */
.bannerSlider {
	position: relative;
	margin: auto;
	padding: 1.3rem 0 .6rem;
	overflow: hidden;
}
.bannerSlider_button-prev,
.bannerSlider_button-next {
	top: 0;
	bottom: 0;
	margin: auto;
	padding: 0;
	width: 6%;
	height: 90%;
	background: none;
	background-color: rgba(255, 255, 255, 0.8);
	z-index: 1;
}
.bannerSlider_button-prev {
	left: 0;
}
.bannerSlider_button-next {
	right: 0;
}
.bannerSlider_button-prev::before,
.bannerSlider_button-next::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 30px;
	height: 30px;
	background-color: var(--yellow);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 12px;
	border-radius: 80px;
}
.bannerSlider_button-prev::before {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23fff'%2F%3E%3C%2Fsvg%3E");
}
.bannerSlider_button-next::before {
	right: 0;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23fff'%2F%3E%3C%2Fsvg%3E");
}
@media screen and (min-width:750px) {
	.bannerSlider_button-prev,
	.bannerSlider_button-next {
		width: 7%;
	}
	.bannerSlider_button-prev::before,
	.bannerSlider_button-next::before {
		width: 40px;
		height: 40px;
		background-size: 14px;
	}
	.bannerSlider_button-prev::before {
		left: 5%;
	}
	.bannerSlider_button-next::before {
		right: 5%;
	}
}
@media screen and (min-width:1024px) {
	.bannerSlider_button-prev,
	.bannerSlider_button-next {
		width: 50%;
		height: 96%;
		background-color: rgba(255, 255, 255, 0);
	}
	.bannerSlider_button-prev {
		left: auto;
		right: 50%;
		margin: auto 420px auto 0;
	}
	.bannerSlider_button-next {
		left: 50%;
		right: auto;
		margin: auto 0 auto 420px;
	}
	.bannerSlider_button-prev::before,
	.bannerSlider_button-next::before {
		content: none;
	}
	.bannerSlider_item {
		width: 760px;
		opacity: .3;
		-webkit-transition: opacity .3s;
		transition: opacity .3s;
	}
	.bannerSlider_item.swiper-slide-active,
	.bannerSlider_item.swiper-slide-duplicate-active {
		opacity: 1;
	}
}

/* トップ共通パーツ */
.topBlock {
	padding: 6% 0 8%;
}
.articleLead {
	padding-bottom: 4%;
	text-align: center;
}
.articleLead-single {
	margin: -1rem 0 2rem;
	padding: 2.5rem 0;
}
.articleLead_icon {
	position: absolute;
	left: 0;
	right: 0;
	margin-top: -1rem;
	color: var(--yellow);
	font-size: 1.2rem;
}
.articleLead_heading {
	display: -webkit-box;
	display:     -ms-flexbox;
	display:         flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 0 auto;
	width: 90%;
	font-size: 1.8rem;
	white-space: nowrap;
}
.articleLead_heading::before,
.articleLead_heading::after {
	content: "";
	-webkit-box-flex: 0;
	-ms-flex: 0 10 100%;
	flex: 0 10 100%;
	display: block;
	height: 3px;
	border-top: solid 1px #444;
	border-bottom: solid 1px #444;
}
.articleLead_heading::before {
	margin-right: .5em
}
.articleLead_heading::after {
	margin-left: .5em
}
.articleLead_detail {
	margin-bottom: 0;
	color: var(--green);
	font-size:1rem;
}
.articleLead_detail-black {
	color: #444
}
@media screen and (min-width:1024px) {
	.topBlock {
		padding: 2rem 0 3rem;
	}
	.articleLead {
		padding-bottom: 2.7rem;
	}
	.articleLead_heading {
		width: 50rem;
		font-size: 2.2rem;
		white-space: nowrap;
	}
	.articleLead_detail {
		font-size:1.2rem;
	}
}

/* トップ各コーナー */
.blockRecommend > section {
	margin-bottom: 10%;
}
@media screen and (min-width:1024px) {
	.blockRecommend > section {
		margin-bottom: 4rem;
	}
}

/* イチオシ */
.blockRecommend {
	position: relative;
	background-image: url(./images/bg_ichioshi.png);
	background-size: 92px;
}

.featuredBook {
	position: relative;
	margin: 5% auto 0;
	padding: 0rem 1rem 1.3rem;
	width: 90%;
	max-width: 28rem;
	border: solid 3px var(--green);
	border-radius: 10px;
	background-color: #fff;
}
.featuredBook::before {/* 犬を表示 */
	content: "";
	display: block;
	position: absolute;
	left: 16px;
	bottom: 100%;
	margin-bottom: 3px;
	width: 65px;
	height: 60px;
	background-image: url(./images/illust_dog.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: bottom;
	z-index: 1;
}
.featuredBook_copy {
	position: relative;
	top: 8px;
	margin-bottom: 0;
	padding: 10px 11px 30px;
	font-size: 1.4rem;
	line-height: 1.7
}
.featuredBook_copy::first-letter {
	float: left;
	margin: -26px 0 -1rem -15px;
	padding: .2em .41em;
	background-color: var(--green);
	border-radius: 5px;
	color: #fff;
	font-size: 3rem;
	font-weight: bold;
	line-height: 1;
	-webkit-box-shadow: 0px 3px 4px 0 rgba(0, 0, 0, 0.25);
	box-shadow: 0px 3px 4px 0 rgba(0, 0, 0, 0.25);
}

.featuredBook_info {
	position: relative;
	display: -webkit-box;
	display:     -ms-flexbox;
	display:         flex;
	-ms-flex-pack: distribute;
	justify-content: space-around;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 1rem 0 0;
	border-top: solid 1px #eee;
}
.featuredBook_info a {/* cover */
	-webkit-box-flex: 0;
	-ms-flex: 0 1 28%;
	flex: 0 1 28%;
	display: block;
}
.featuredBook_cover {

}
.featuredBook_text {
	-webkit-box-flex: 0;
	-ms-flex: 0 1 62%;
	flex: 0 1 62%;
	padding: .5rem 0 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}
.featuredBook_title {
	margin-bottom: .2em;
	font-size: 1.3rem;
	line-height: 1.2;
}
*::-ms-backdrop, .featuredBook_title {/* IE11対策 */
	max-width: 100%;
}
.featuredBook_author {
	margin-bottom: .3em;
}
.featuredBook_price {
	display: block;
	width: 100%;
	font-size: 1.4rem;
	font-weight: bold;
	text-align: right;
	line-height: 1.2;
}
.featuredBook_price::after {
	font-size: .6em;
	font-weight: normal;
}
*::-ms-backdrop, .featuredBook_price::after {/* IE11対策 */
	font-size: 16px;
}
.featuredBook_date {
	width: 100%;
	text-align: right;
}
@media screen and (min-width:750px) {
	.blockRecommend::before,
	.blockRecommend::after {
		content: "";
		display: block;
		position: absolute;
		top: 4rem;
		width: 26%;
		max-width: 270px;
		height: 400px;
		background-size: 100% auto;
		background-repeat: no-repeat;
	}
	.blockRecommend::before {
		right: 49%;
		margin-right: 14rem;
		background-image: url(./images/bg_ichioshi_left.png);
	}
	.blockRecommend::after {
		left: 50%;
		margin-left: 14rem;
		background-image: url(./images/bg_ichioshi_right.png);
		z-index: 0;
	}
	.featuredBook::before {/* 犬を表示 */
		margin-bottom: 7px;
		left: 13px;
		width: 90px;
		height: 100px;
	}
	.featuredBook_copy {

	}
	.featuredBook_copy::first-letter {
		margin: -32px 0 -1rem -24px;
	}
	.featuredBook_info a {/* cover */
		-webkit-box-flex: 0;
		-ms-flex: 0 1 30%;
		flex: 0 1 30%;
	}
	.featuredBook_text {
		-webkit-box-flex: 0;
		-ms-flex: 0 1 60%;
		flex: 0 1 60%;
	}
}
@media screen and (min-width:1024px) {
	.blockRecommend::before,
	.blockRecommend::after {
		content: "";
		display: block;
		position: absolute;
		width: 26%;
		max-width: 270px;
		height: 400px;
		background-size: 100% auto;
		background-repeat: no-repeat;
	}
	.blockRecommend {
		position: relative;
		background-size: 110px;
	}
	.blockRecommend::before {
		top: 1rem;
		margin-right: 19rem;
	}
	.blockRecommend::after {
		top: 4rem;
		margin-left: 19rem;
	}
	.featuredBook {
		margin: 2rem auto 0;
		max-width: 38rem;
	}
	.featuredBook::before {/* 犬を表示 */
		margin-bottom: 5px;
		left: 15px;
		width: 90px;
		height: 100px;
	}
	.featuredBook_copy {
		font-size: 1.7rem;
	}
	.featuredBook_copy::first-letter {
		margin: -30px 0 -1rem -20px;
		font-size: 3.6rem;
	}

	.featuredBook_info a {/* cover */
		-webkit-box-flex: 0;
		-ms-flex: 0 1 24%;
		flex: 0 1 24%;
	}
	.featuredBook_text {
		margin-right: 1rem;
	}
	.featuredBook_title {
		font-size: 1.8rem;
	}
	.featuredBook_author {
		font-size: 1.2rem;
	}
	.featuredBook_price {
		font-size: 1.6rem;
	}
	.featuredBook_date {
		font-size: 1rem;
	}
}

/* おすすめ各コーナー */
.balloonHeading {
	position: relative;
	margin: 0 auto 1.5em;
	padding: .2em 0;
	width: 80%;
	border-radius: 6px;
	background-color: #fff;
	font-size: 1.3rem;
	text-align: center;
}
.balloonHeading::before {
	content: "";
	display: block;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	margin: auto;
	width: 0;
	height: 0;
	border-top: solid .7em #fff;
	border-left: solid .4em transparent;
	border-right: solid .4em transparent;
}
@media screen and (min-width:1024px) {
	.balloonHeading {
		width: 16em;
	}
}

/* ジャケ買い */
.blockRecommend_niceCover {
	background-image: url(./images/bg_cover_left.png),url(./images/bg_cover_right.png);
	background-repeat: no-repeat;
	background-size: 30% auto;
	background-position: top left, top right;
}

.coverSlider {
	padding-top: 4%;
}

.coverSlider .bookSlider_coverLink {
	pointer-events: none;
}
.coverSlider .swiper-slide-active .bookSlider_coverLink {
	pointer-events: auto;
}

.blockRecommend_niceCover .swiper-slide {
	-webkit-transition: -webkit-transform .2s;
	transition: -webkit-transform .2s;
	transition:         transform .2s;
	transition: transform .2s, -webkit-transform .2s;
}
.blockRecommend_niceCover .swiper-slide-active {
	-webkit-transform: scale(1.15);
	transform: scale(1.15);
}
@media screen and (min-width:750px) {
	.blockRecommend_niceCover {
		background-size: 24% auto;
	}
	.blockRecommend_niceCover .swiper-slide-active {
		-webkit-transform: scale(1.2);
		transform: scale(1.2);
	}
}
@media screen and (min-width:1024px) {
	.blockRecommend_niceCover {
		background-size: 160px auto;
	}
	.blockRecommend_niceCover .coverSlider {
		margin: auto;
		padding: 0;
		width: 80%;
		max-width: 1200px;
		overflow: hidden;
	}
	.blockRecommend_niceCover .swiper-slide-active {
		-webkit-transform: none;
		transform: none;
	}
	.coverSlider .bookSlider_coverLink {
		pointer-events: auto;
	}
	.coverSlider_pagination {
		display: none;
	}
}

/* スタッフのコメント */
.blockRecommend_niceComment {
	background-image: url(./images/bg_staff_left.png),url(./images/bg_staff_right.png);
	background-repeat: no-repeat;
	background-size: 36% auto;
	background-position: left top, right 4%;
}
.list {
	margin: auto;
	width: 90%;
	max-width: 900px;
}
.list-author {
	padding-bottom: .2rem;
	width: 94%;
	max-width: 1100px;
}
.list_item {
	position: relative;
	padding: .9em 2.4em .9em .6em;
	border-bottom: dotted 1px #888;
	font-size: 1.2rem;
	line-height: 1.4;
}
.list-author .list_item {
	padding: .5rem 0 .5rem;
	border-bottom: dotted 1px #ddd;
}
.list-author .list_item:last-of-type {
	border-bottom: none;
}
.list-author .list_item-selection,
.list-author .list_item-selection:last-of-type {
	border-bottom: solid 1px #ddd;
}
.list_item::before,
.list_item::after {
	content: "";
	position: absolute;
	display: block;
	top: 0;
	bottom: 0;
	margin: auto;
	width: .6em;
	height: .6em;
	border-top: solid 2px var(--green);
	border-right: solid 2px var(--green);
	border-radius: 2px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg)
}
.list_item::before {
	right: 1em;
}
.list_item::after {
	right: 1.4em;
}
.list_link {
	color: #222;
}
.list-author .list_link {
	padding: .4rem 2.4rem .4rem 0;
	display: block;
}
.list-author .list_link:hover {
	background-color: var(--green-light)
}
.list_niceComment {
	display: block;
	font-size: 1.3rem;
	-webkit-font-feature-settings: "palt" 1;
	font-feature-settings: "palt" 1;
}
.list_niceComment::first-letter {
	font-weight: bold;
	font-size: 1.8rem;
}
.list_img {
	display: inline-block;
	margin-right: .6rem;
	width: 25%;
	max-width: 120px;
	vertical-align: middle;
}
.list_info {
	display: inline-block;
	min-width: calc(100% - 120px - 3rem);
	max-width: calc(75% - 3rem);
	vertical-align: middle;
}
.list_authorName {
	margin-bottom: .1em;
	color: var(--link);
}
.list_authorName-selection {
	color: #222;
	font-size: 1.1rem;
	font-weight: normal;
}
.list_authorCatch {
	display: inline-block;
	font-size: 1rem;
	line-height: 1.4;
}
.list_authorCatch-selection {
	margin-bottom: .3rem;
	font-size: 1.2rem;
}
@media screen and (min-width:750px) {
	.blockRecommend_niceComment {
		background-size: 26% auto;
	}
	.blockRecommend_niceComment .list_item {
		text-align: center;
	}
}
@media screen and (min-width:1024px) {
	.blockRecommend_niceComment {
		background-size: 240px auto;
	}
	.list_item {
		font-size: 1.4rem;
	}
	.list_niceComment {
		font-size: 1.7rem;
	}
	.list_niceComment::first-letter {
		font-weight: bold;
		font-size: 2.4rem;
	}
	.list-author .list_item::before,
	.list-author .list_item::after {
		content: "";
		position: absolute;
		display: block;
		top: 0;
		bottom: 0;
		margin: auto;
		width: .65em;
		height: .65em;
		border-top: solid 3px var(--green);
		border-right: solid 3px var(--green);
		border-radius: 2px;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg)
	}
	.list_link {
		display: inline-block;
	}
	.list-author .list_link {
		padding: .4rem 2.4rem .4rem 2rem;
		display: block;
	}
	.list_img {
		margin-right: 1rem;
		width: 100px;
		max-width: none;
	}
	.list_info {
		width: calc(100% - 100px - 5.4rem);
		min-width: none;
		max-width: none;
	}
	.list_authorName {
		font-size: 1.3rem;
	}
	.list_authorCatch {
		font-size: 1.1rem;
	}
}

/* 作家紹介 */
.blockRecommend_niceAuthor {
	background-image: url(./images/bg_author_left.png),url(./images/bg_author_right.png);
	background-repeat: no-repeat;
	background-size: 26% auto;
	background-position: top left, top right;
}
.personSlider {
	padding: .7rem;
	overflow: hidden;
}
.personSlider_item {
	position: relative;
	margin: 0 1rem .6rem;
	padding: 1.3rem;
	width: 10rem;
	height: auto;
	background-color: #fff;
}
.personSlider_item::before {
	content: "";
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	border: solid .15rem var(--yellow);
	-webkit-transition: top .2s .2s, left .2s .2s;
	transition: top .2s .2s, left .2s .2s;
}
.personSlider .swiper-slide-active.personSlider_item::before {
	top: -.37rem;
	left: -.37rem;
	pointer-events: none;
}

.personSlider_photo {
	margin-bottom: 1rem;
}
.personSlider_name {
	font-size: 1.1rem;
}
.personSlider_copy {
	margin: 0;
	padding-bottom: .5em;
	color: #222;
}
@media screen and (min-width:750px) {
	.blockRecommend_niceAuthor {
		background-size: 20% auto;
	}
}
@media screen and (min-width:1024px) {
	section.blockRecommend_niceAuthor {
		margin-bottom: 0;
		padding-bottom: 4rem;
		background-position: top left, bottom right;
		background-size: 140px auto, 120px auto;
	}
	.personSlider {
		margin: auto;
		padding: .7rem 1rem 0;
		width: 90%;
		max-width: 1100px;
	}
	.personSlider_item {/* swiperの設定で制御 */
		margin: 0 0 .6rem;
		width: auto;
	}
	.personSlider_item::before,
	.personSlider .swiper-slide-active.personSlider_item::before {
		top: 0;
		left: 0;
		pointer-events: none;
		-webkit-transition: top .2s, left .2s;
		transition: top .2s, left .2s;
	}
	.personSlider_item:hover::before,
	.personSlider .swiper-slide-active.personSlider_item:hover::before{
		top: -.37rem;
		left: -.37rem;
	}
	.personSlider_pagination {
		display: none;
	}
}

/* トップランキング */
.rankingSlider,
.newbookSlider {
/*	padding: 0 0 3%;*/
}
.rankingSlider .swiper-wrapper,
.newbookSlider .swiper-wrapper {
	position: relative;
	width: 100%;
}

.blockRanking {
	background-image: url(./images/bg_ranking_left.png),url(./images/bg_ranking_right.png);
	background-repeat: no-repeat;
	background-size: 35% auto;
	background-position: top left, top right;
}
/* ランキング枠 */
.rankingFrame_point {
	color: var(--red);
	font-size: 1rem;
	font-weight: bold;
	text-align: right;
}
.rankingFrame_point::after {
	content: "pt";
	margin-left: .1rem;
	color: #444;
	font-size: .8rem;
	font-weight: normal;
}
.rankingFrame {
	position: relative;
	padding-top: 2rem;
}
.rankingFrame::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	width: 4.5rem;
	height: 4.5rem;
	background-size:contain;
	background-repeat: no-repeat;
}
.rankingFrame:nth-of-type(1)::before {
	background-image: url(./images/ranking_1.png);
}
.rankingFrame:nth-of-type(2)::before {
	background-image: url(./images/ranking_2.png);
}
.rankingFrame:nth-of-type(3)::before {
	background-image: url(./images/ranking_3.png);
}
.rankingFrame:nth-of-type(4)::before {
	background-image: url(./images/ranking_4.png);
}
.rankingFrame:nth-of-type(5)::before {
	background-image: url(./images/ranking_5.png);
}
.rankingFrame:nth-of-type(6)::before {
	background-image: url(./images/ranking_6.png);
}
.rankingFrame:nth-of-type(7)::before {
	background-image: url(./images/ranking_7.png);
}
.rankingFrame:nth-of-type(8)::before {
	background-image: url(./images/ranking_8.png);
}
.rankingFrame:nth-of-type(9)::before {
	background-image: url(./images/ranking_9.png);
}
.rankingFrame:nth-of-type(10)::before {
	background-image: url(./images/ranking_10.png);
}
.rankingFrame_book {
	padding: 1rem .5rem;
	height: calc(100% - 2rem);
	border: solid 3px #e3e3e3;
}
.rankingFrame:nth-of-type(-n + 3) .rankingFrame_book {
	border: solid 3px #F8EDAA;
}
@media screen and (min-width:1024px) {
	.blockRanking {
		background-size: 220px auto;
	}
	.rankingSlider,
	.newbookSlider {
		position: relative;
		margin: auto;
		width: 100%;
		max-width: 1300px;
	}
	.newbookSlider:not([style^="cursor: grab"]):not(.swiper-container-ios):not(.swiper-container-android) .swiper-wrapper {
		/* 画面に収まりきるなら中央寄せ */
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
	.rankingSlider .bookSlider_item-large {
		width: auto;
		margin: 0;
	}
	.newbookSlider .bookSlider_item {
		width: 180px;
		margin: 0 1rem;
	}
	.rankingFrame {
		padding-top: 2.5rem;
	}
	.rankingFrame::before {
		width: 5.5rem;
		height: 5.5rem;
	}
	.rankingFrame_book {
		border: solid 6px #e3e3e3;
	}
	.rankingFrame:nth-of-type(-n + 3) .rankingFrame_book {
		border: solid 6px #F8EDAA;
	}
}

/* -------- トップswiperの解除後のスライド -------- */
@media screen and (min-width:1024px) {
	.coverSlider .swiper-slide,
	.personSlider .swiper-slide,
	.rankingSlider .swiper-slide {
		width: 25%;
		-webkit-box-flex: 0;
		-ms-flex: 0 1 25%;
		flex: 0 1 25%;
	}
	.coverSlider .swiper-slide {
		margin: 0 15px
	}
	.personSlider .swiper-slide {
		margin: 0 10px
	}
	.rankingSlider .swiper-slide {
		margin: 0 5px
	}
}

/* トップ新着 */
.blockNew {
	background-image: url(./images/bg_new_left.png), url(./images/bg_new_right.png), url(./images/bg_new.png);
	background-size: 25% auto, 30% auto, 54px;
	background-repeat: no-repeat, no-repeat, repeat;
	background-position: left top, right bottom, center;
}
.archiveNew .blockNew {
	background-size: 130px auto, 90px auto, 54px;
}
.balloonRelease {
	display: table;
	position: relative;
	margin: 0 auto .8em;
	padding: .1em .3em;
	background-color: var(--green);
	border-radius: 4px;
	color: #fff;
	text-align: center;
}
.balloonRelease::before {
	content: "";
	display: block;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	margin: auto;
	width: 0;
	height: 0;
	border-top: solid .5em var(--green);
	border-left: solid .2em transparent;
	border-right: solid .2em transparent;
}
.balloonRelease_line {
	display: inline-block;
}
@media screen and (min-width:750px) {
	.archiveNew .blockNew {
		background-size: 210px auto, 130px auto, 54px;
	}
}
@media screen and (min-width:1024px) {
	.blockNew {
		background-size: 200px auto, 180px auto, 70px;
	}
	.archiveNew .blockNew {
		background-size: 190px auto, 150px auto, 70px;
	}
	.balloonRelease {
		padding: .1em 1em;
	}
}

/* トップ特集 */
.blockSpecial {
	background-image: url(./images/bg_special_left.png),url(./images/bg_special_right.png);
	background-repeat: no-repeat;
	background-size: 50% auto;
	background-position: left top, right bottom;
}
.imageList {

}
.imageList_item {
	margin: 0 auto 6%;
	width: 80%;
	max-width: 550px;
}
.imageList_img {
	display: block;
	border: solid 1px #ddd;
}
.imageList_caption {
	text-align: center;
}
@media screen and (min-width:1024px) {
	.blockSpecial {
		background-size: 240px auto;
	}
	.imageList {
		display: -webkit-box;
		display:     -ms-flexbox;
		display:         flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		margin: auto;
		width: 90%;
		max-width: 1300px;
	}
	.imageList_item {
		margin: 0 1rem 3rem;
		max-width: 40%;
	}
}

/* ジャンル一覧 */
.blockGenre {
	background-color: var(--yellow-light);
	background-image: url(./images/bg_search_right.png);
	background-repeat: no-repeat;
	background-size: 50% auto;
	background-position: right top;
}
.genreList {
	display: -webkit-box;
	display:     -ms-flexbox;
	display:         flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin: auto;
	width: 90%;
	max-width: 1300px;
}
.genreList_item {
	width: 49%;
	-webkit-box-flex: 0;
	-ms-flex: 0 1 49%;
	flex: 0 1 49%;
	margin-bottom: 1rem;
	padding: .2em .3em .3em;
	background-color: #fff;
	border: solid 2px var(--green);
}
.genreList_item:hover {
	background-color: var(--green);
}
.genreList_heading {
	margin-bottom: .3rem;
	border-bottom: solid 1px var(--green);
	color: var(--green);
}
.genreList_item:hover .genreList_heading,
.genreList_item:hover .genreList_detail {
	border-color: #fff;
	color: #fff;
}
.genreList_detail {
	color: #222;
	font-size: .92rem;
}
.genreList_detail {
	margin: 0;
}
@media screen and (min-width:1024px) {
	.blockGenre {
		background-size: 300px auto;
		background-position: right 1rem;
	}
	.genreList::after {
		content: "";
		display: block;
		-webkit-box-flex: 1;
		-ms-flex: 1 1 auto;
		flex: 1 1 auto;
		max-width: 19%
	}
	*::-ms-backdrop, .genreList::after { /* IE11 */
		-webkit-box-flex: 0;
		-ms-flex: 0 1 18%;
		flex: 0 1 18%;
		padding: calc(.3em + 2px);
		max-width: none;
	}
	.genreList_item {
		width: 19%;
		-webkit-box-flex: 0;
		-ms-flex: 0 1 19%;
		flex: 0 1 19%;
	}
	*::-ms-backdrop, .genreList_item { /* IE11 */
		width: 18%;
		-webkit-box-flex: 0;
		-ms-flex: 0 1 18%;
		flex: 0 1 18%;
	}
}

.blockLightGreen {
	background-color: var(--green-light);
}
.blockSelection {
	background-image: url(./images/bg_cover_left.png),url(./images/bg_cover_right.png),url(./images/bg_ichioshi.png);
	background-repeat: no-repeat, no-repeat, repeat;
	background-size: 30% auto, 30% auto, 92px;
	background-position: top left, top right;
}
@media screen and (min-width:750px) {
	.blockSelection {
		background-size: 24% auto, 24% auto, 92px;
	}
}
@media screen and (min-width:1024px) {
	.blockSelection {
		background-size: 160px auto, 160px auto, 110px;
	}
}

/* ------------------------------------------------
作品個別ページ
------------------------------------------------ */
.breadcrumb {
	margin-bottom: 1rem;
	padding: .5em .3em .5em 2%;
	width: 100%;
	background-color: #f9f9f9;
	font-size: .9rem;
	line-height: 1;
	white-space: nowrap;
	overflow: auto;
}
@media screen and (min-width:750px) {
	.breadcrumb {
		font-size: .7rem;
	}
}
@media screen and (min-width:1024px) {
	.breadcrumb {
		padding: .5em .3em .5em .5em;
		font-size: .9rem;
	}
}
@media screen and (min-width:1300px) {
	.breadcrumb {
		padding: .5em .3em .5em calc(50% - 650px);
	}
}

.publication,
.authors {
	margin: auto;
	max-width: 1300px;
}

.tag {
	display: -webkit-box;
	display:     -ms-flexbox;
	display:         flex;
}
.publication_tag {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin: 0 auto 1rem;
	padding: 4px 8px;
	width: 96%;
	background-color: var(--yellow-light);
}
.authorArchive_tag {
	display: block;
	margin-bottom: .2rem;
}
/* phpで称号の有無を判定しないときは:emptyで判定。改行取る。 */
.tag:empty{
	display: none;
}
.publication_tag::before {
	content: "この作品は \f061";
	-webkit-box-flex: 1;
	-ms-flex: 1 1 25%;
	flex: 1 1 25%;
	max-width: 35%;
	color: var(--yellow);
	font-size: .85rem;
	font-weight: bold;
	text-align: center;
	white-space: nowrap;
	overflow: hidden;
	font-family: "Font Awesome 5 Free", "dnp-shuei-mgothic-std", "Lucida Grande", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
}
/* <span class="tag_text">この作品は <i class="fas fa-arrow-right"></i></span>
.tag_text{
	-webkit-box-flex: 1;
	-ms-flex: 1 1 25%;
	flex: 1 1 25%;
	max-width: 35%;
	color: var(--yellow);
	font-size: .85rem;
	font-weight: bold;
	text-align: center;
	white-space: nowrap;
	overflow: hidden;
} */
.tag_item {
	-webkit-box-flex: 1;
	-ms-flex: 1 0 25%;
	flex: 1 0 25%;
	margin: 0 1px;
	padding: .15em 0;
	max-width: 40%;
	background-color: var(--yellow);
	color: #fff;
	font-size: 1rem;
	text-align: center;
	white-space: nowrap;
}
.authorArchive_tag .tag_item {
	display: inline-block;
	padding: .1rem .5rem;
	max-width: none;
}
.tag_item i {
	display: inline-block;
	margin-right: 2px;
	min-width: 1em;
}
@media screen and (min-width:750px) {
	.publication_tag {
		float: right;
		margin: 0 1.2rem 0 0;
		width: calc(100% - 290px - 2.2rem);
	}
	.tag_text{
		font-size: .7rem;
	}
	.tag_item {
		margin: 0 2px;
		padding: .15em 0;
		font-size: .8rem;
	}
	.tag_item i {
		margin-right: 6px;
	}
}
@media screen and (min-width:1024px) {
	.publication_tag {
		margin: 0 calc(50% - 425px) 0 0;
		width: 540px;
	}
	.tag_item {
		font-size: 1rem;
	}
}

.bookSlider_tag {
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.bookSlider_tag .tag_item {
	margin: 2px 1px 2px 0;
	padding: 0;
	max-width: 33%;
	font-size: .72rem
}
.bookSlider_tag .tag_item i {
	margin-right: 1px;
}
.bookSlider_tag .tag_item-ellipsis {
	display: none;
}
@media screen and (min-width:1024px) {
	.bookSlider_tag .tag_item {
		max-width: 24%;
		font-size: .7rem
	}
}

/* 本の情報 */
.publication_cover {
	float: left;
	position: relative;
	margin: 0 1% 0 2%;
	padding: 0 0 50% 0;
	width: 43%;
}
.publication_coverImg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	-webkit-box-shadow: 0 3px 8px 0 rgba(0,0,0,.4);
	box-shadow: 0 3px 8px 0 rgba(0,0,0,.4);
}
.publication_info {
	display: inline-block;
	width: 52%;
	max-width: 340px;
}
.publication_title {
	margin: 0 0 .5rem;
	padding: .5rem 0 0;
	font-size: 1.45rem;
	line-height: 1.2;
}
.publication_author {
	display: table;
	margin-bottom: .2rem;
	font-size: 1.15rem;
	font-size: 1rem;
}
.publication_author::before {
	content: "著者: ";
	font-size: .9rem;
	line-height: 1
}
.publication_series {
	display: block;
	margin-bottom: .2rem;
	font-size: 1rem;
}
.publication_series::before {
	content: "シリーズ: ";
	font-weight: normal;
	font-size: .9rem;
	line-height: 1
}
.publication_genre {
	margin-bottom: 1rem;
	font-size: 1rem
}
.publication_price {
	display: block;
	font-size: 1.5rem;
	font-weight: bold;
}
@media screen and (min-width:420px) {
	.publication_cover {
		margin: 0 1% 0 calc(50% - 200px);
		padding: 0 0 210px 0;
		width: 180px;
	}
	.publication .buttonsRow {
		max-width: 420px;
	}
}
@media screen and (min-width:750px) {
	.publication_cover {
		margin: 0 .5rem 1.2rem .5rem;
		padding-bottom: 360px;
		width: 290px;
	}
	.publication_info {
		display: inline-block;
		padding-right: 0;
		width: calc(97% - 290px - 1.2rem);
		max-width: none;
	}
	.publication_title {
		margin: 0 0 .6rem;
		padding-top: .7rem;
		font-size: 1.5rem;
	}
	.publication .buttonsRow {
		max-width: none;
	}
}
@media screen and (min-width:1024px) {
	.publication_cover {
		margin: 0px 20px 40px calc(50% - 425px);
		padding-bottom: 360px;
		width: 290px;
	}
	.publication_info {
		float: left;
		width: 540px
	}
	.publication_title {
		margin: 0 0 1rem;
		padding-top: 1.8rem;
		font-size: 1.8rem;
	}
	.publication_series,
	.publication_author {
		font-size: 1rem;
	}
	.publication_genre {
		font-size: 1rem
	}
	.publication_price {
		font-size: 1.7rem;
	}
	.publication_price::after {
		font-size: .65em;
	}
	*::-ms-backdrop, .publication_price::after {/* IE11対策 */
		font-size: 16px;
	}
}

.buttonsRow {
	clear: both;
	display: -webkit-box;
	display:     -ms-flexbox;
	display:         flex;
	margin: auto;
	width: 94%;
}
.buttonsRow-option {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	margin-bottom: 1rem;
}
.buttonsRow_item {
	margin: .8rem .2rem 1.4rem;
}
.buttonsRow_item-S {
	-webkit-box-flex: 3;
	-ms-flex: 3;
	flex: 3;
	min-width: 136px;
}
.buttonsRow_item-L {
	-webkit-box-flex: 4;
	-ms-flex: 4;
	flex: 4;
}
.buttonsRow_item-print {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 0 -1% 1rem;
	padding: .7rem 2%;
	background-color: var(--yellow-light);
}
.buttonsRow_title {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	text-align: center;
}
.button-pubprint {
	display: block;
	margin: 0;
	padding: .2rem 1.8rem .2rem 1.3rem;
	font-size: 1rem;
	font-weight: bold;
}
.button-pubprint::before {
	right: .7em;
}
.button-pubspecial::after,
.button-pubprint::after {
	content: none;
}
.buttonsRow_item-special {
	margin: 0 -1% 1rem;
	padding: .3rem 2%;
	border: solid 2px var(--yellow-light);
	background-image: url(./images/bg_special_left.png),url(./images/bg_special_right.png);
	background-repeat: no-repeat;
	background-size: auto 100%;
	background-position: left top, right bottom;
	-webkit-transition: background-color .2s;
	transition: background-color .2s;
}
.buttonsRow_item-special:hover {
	background-color: var(--yellow-light)
}
.buttonsRow_item-special a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: distribute;
	justify-content: space-around;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.buttonsRow_item-special img {
	width: 7rem;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 7rem;
	flex: 0 0 7rem;
}
.button-pubspecial {
	display: block;
	margin: 0;
	padding-right: 1rem;
	color: #222;
	font-size: 1rem;
	font-weight: bold;
}
.button-pubspecial::before {
	right: 0;
	border-color: #222;
}
.buttonsColumn_item {
	margin-bottom: .5rem;
}
.buttonsColumn_button {
	width: 100%;
	font-size: 1rem
}
.publicationButton {
	position: relative;
	width: 100%;
}
.publicationButton-trial {
	padding-left: 1.3em;
}
.publicationButton-buy {
	padding-left: 1em;
}
.publicationButton-other {
	font-size: 1.1rem;
	padding: .32em 0 .32em 1.2em;
}
.publicationButton-read {
	font-size: 1.4rem;
}
.publicationButton::before {
	right: .5em;
}
.publicationButton::after {
	content: none;
}
.publicationButton_icon {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: absolute;
	top: 2px;
	left: 2px;
	bottom: 2px;
	width: 2.5em;
	background-color: #fff;
	border-radius: 50em;
}
*::-ms-backdrop, .publicationButton_icon {/* IE11 */
	top: 4px;
	left: 4px;
	bottom: 4px;
}
@-moz-document url-prefix() {/* FireFox */
	.publicationButton_icon {
		top: 4px;
		left: 4px;
		bottom: 4px;
	}
}
.publicationButton-other .publicationButton_icon {
	background-color: transparent;
}
.button-greenFill .publicationButton_icon {
	width: 3.1em;
	color: var(--green);
	font-size: .9rem;
	font-weight: bold;
}
.button-redFill .publicationButton_icon {
	color: var(--red);
}
.button-lightGreenFill .publicationButton_icon {
	color: #82C91D;
}
@media screen and (min-width:750px) {
	.buttonsRow {
		clear: none;
		float: right;
		margin: 1.5rem 3% 0 0;
		width: calc(97% - 290px - 1rem);
	}
	.buttonsRow-option {
		margin-top: 0rem;
		margin-bottom: 1.5rem;
	}
	.buttonsRow_item {
		margin: .8rem .2rem 1.4rem 0;
	}
	
	.buttonsRow_item-print {
		margin: 0 0 12px;
		padding: .7rem 4%;
	}
	.button-pubprint {
		-webkit-box-flex: 1;
		-ms-flex: 1 0;
		flex: 1 0;
		padding: .2rem 2rem .2rem 1rem;
	}
	.button-pubprint::before {
		right: .7em;
	}
	.button-pubspecial::after,
	.button-pubprint::after {
		content: none;
	}
	.buttonsRow_item-special {
		margin: 0 0 12px;
		padding: .3rem 2%;
	}
	.buttonsRow_item-special img {
		width: 6.5rem;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 6.5rem;
		flex: 0 0 6.5rem;
	}
	.button-pubspecial {
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
		padding-right: 10%;
		max-width: 300px;
	}
	.button-pubspecial::before {
		right: 1rem;
		border-color: #222;
	}
	
	.buttonsColumn_button {
		font-size: .85rem
	}
	.publicationButton {
		font-size: 1.1rem;
	}
	.publicationButton-read {
		font-size: 1.3rem;
	}
	.publicationButton-other {
		padding: .2em 0 .2em 1.2em;
	}
	.publicationButton_icon {
		margin: auto;
		padding: .48em 0;
		width: 2.5em;
	}
	.button-greenFill .publicationButton_icon {
		width: 3.2em;
		font-size: .85em;
		line-height: 1.4;
	}
}
@media screen and (min-width:1024px) {
	.buttonsRow {
		clear: none;
		margin: 1.5rem calc(50% - 425px) 0 0;
		width: 540px;
	}
	.buttonsRow-option {
		margin-top: -.5rem;
		margin-bottom: 2rem;
	}
	.button-pubprint {
		padding: .3rem 2rem .3rem 1rem;
		font-size: 1.1rem;
	}
	.button-pubspecial {
		font-size: 1.1rem;
	}
	.buttonsColumn_button {
		font-size: .9rem
	}
	.publicationButton {
		font-size: 1.5rem;
	}
	.publicationButton::before {
		right: 1em;
	}
	.publicationButton-other {
		padding: .34em 0 .34em 1.2em;
	}
	.publicationButton_icon {
		margin: auto;
		padding: .4em 0;
		width: 3em;
	}
	.button-greenFill .publicationButton_icon {
		width: 3.5em;
		font-size: .85em;
		line-height: 1.5;
	}
}
.note {
	margin-bottom: 1rem;
}

.articleSection {
	clear: both;
	position: relative;
	width: 100%;
}
.articleSection_heading {
	margin-bottom: 1rem;
	padding: .2em 5%;
	font-size: 1.5rem;
	font-weight: normal;
}
.articleSection_heading-small {
	font-size: 1.3rem;
}
.articleSection_heading-bubble {
	position: relative;
	margin: 0 auto 1.3rem;
	padding: .2em 1em;
	width: 94%;
	border-radius: 6px;
}
.articleSection_heading-bubble::before {
	content: "";
	display: block;
	position: absolute;
	top: 100%;
	left: 15%;
	margin: auto;
	width: 0;
	height: 0;
	border-top: solid .6em var(--green);
	border-left: solid .3em transparent;
	border-right: solid .3em transparent;
}
.articleSection_heading-lightGreen.articleSection_heading-bubble::before {
	border-top: solid .6em var(--green-light);
}
.articleSection_heading-lightYellow {
	background-color: var(--yellow-light);
}
.articleSection_heading-green {
	background-color: var(--green);
	color: #fff;
}
.articleSection_heading-lightGreen {
	background-color: var(--green-light);
	color: #222;
}
.articleSection_main {
	margin: 0 auto 2rem;
	width: 90%;
	font-size: 1.05rem;
	overflow: visible;
}
.articleSection_more {
	margin: -1rem auto 2.5rem;
}
.button-more {
	padding: .3em 0;
	width: 80%;
	font-size: 1.3rem;
	font-weight: bold;
}
.articleSection_more-here .button-more {
	padding-left: 2rem;
	border-right-width: 4rem;
}
.articleSection_more-here .button-more::before,
.articleSection_more-here .button-more::after {
	right: -2.2rem;
	border-width: 3px;
	border-color: #fff;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
}
@-moz-document url-prefix() {/* FireFox */
	.articleSection_more-here .button-more::before,
	.articleSection_more-here .button-more::after {
		right: 1.7rem;
	}
}
.articleSection_more-here .button-more::before {
	bottom: .6em
}
.articleSection_more-here .button-more::after {
	top: .15em
}

@media screen and (min-width:750px) {
	.articleSection_heading-bubble::before {
		left: 12.5%;
	}
}
@media screen and (min-width:1024px) {
	.articleSection_heading {
		margin-bottom: 1.7rem;
	}
	.articleSection_heading-bubble::before {
		left: 10.5%;
	}
	.articleSection_main {
		font-size: 1rem;
	}
	.button-more {
		max-width: 30rem;
	}
}

.snsShare {
	margin: 0 auto 1rem;
	width: 90%;
	max-width: 1300px;
	border: solid 1px #ddd;
}
.snsShare_caption {
	padding: .3em .5em;
}
.snsShare_buttons {
	display: -webkit-box;
	display:     -ms-flexbox;
	display:         flex;
}
.snsShare_item {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	cursor: pointer;
}
.snsShare_link {
	display: block;
	padding: .7rem 0;
	color: #fff;
	text-align: center;
}
.snsShare_link-FB {
	background-color: #4268B3;
}
.snsShare_link-TW {
	background-color: #1BA2F2;
}
.snsShare_link-LN {
	background-color: #47B74A;
}
.snsShare_link-HB {
	background-color: #1C9ACE;
}
.snsShare_link-copy {
	position: relative;
	background-color: #e0e0e0;
	color: #666;
}

.snsShare_link-copy::before {
	content: "コピーしました";
	display: -webkit-box;
	display:     -ms-flexbox;
	display:         flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width: 100%;
	text-align: center;
	background-color: #ffeaea;
	color: #fa8484;
	font-weight: bold;
	opacity: 0;
	-webkit-transition: opacity 1s 1.5s;
	transition: opacity 1s 1.5s;
	pointer-events: none
}
.snsShare_link:hover {
	color: #fff;
	opacity: .7;
}
.snsShare_link-copy:hover {
	background-color: #aaa;
	opacity: 1;
}
.snsShare_link-copy:active {
	background-color: #666;
}
.snsShare_link-copy:active::before {
	opacity: 1;
	visibility: hidden;
	-webkit-transition: opacity 0s;
	transition: opacity 0s;
}
.snsShare_icon {
	display: inline-block;
	width: 1.6rem;
	height: 1.6rem;
	text-align: center;
	line-height: 1;
	vertical-align: middle;
}
.snsShare_icon-svg {
	fill: #fff;
	height: 1.6rem;
}
.snsShare_icon-copy {
	font-size: 1.2rem;
}
.snsShare_icon-copy::after {
	content: "";
	display: inline-block;
	height: 1.6rem;
	vertical-align: middle;
}
.snsShare_text {
	display: none;
	vertical-align: middle;
}
.snsShare_text.snsShare_text-copy {
	display: inline-block;
}
@media screen and (min-width:1024px) {
	.snsShare {
		margin: 0 auto 2rem;
		padding: .3rem 0 .8rem;
		width: 90%;
		border-left: none;
		border-right: none;
	}
	.snsShare_item {
		width: 20%;
		-webkit-box-flex: 1;
		-ms-flex: 1 1 20%;
		flex: 1 1 20%;
	}
	.snsShare_icon {
		margin: 0 .5rem 0 0;
	}
	.snsShare_text {
		display: inline-block;
		width: 67%;
		font-size: .8rem;
	}
}
@media screen and (min-width:1200px) {
	.snsShare_text {
		width: 72%;
		font-size: 1rem;
	}
}

.dialogGreen {
	margin: 0 auto .6rem;
	width: 98%;
	background-color: #E5F4D4;
	color: #8EB641;
	font-size: 1.1rem;
	text-align: center;
}
.dialogGreen-onlyText {
	background-color: #fff;
	font-weight: bold;
}
@media screen and (min-width:750px) {
	.dialogGreen {
		font-size: 1rem;
	}
}
@media screen and (min-width:1024px) {
	.dialogGreen {
		font-size: 1.2rem;
	}
}

.otherInfo {
	margin: 0 auto 2rem;
	width: 90%;
}

/* ------------------------------------------------
作品一覧ページ
------------------------------------------------ */
.genreSlider {
	width: 100%;
	position: relative;
}
.genreSlider_genre {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: auto;
	margin: 0 .3em .5em;
	padding: .1em .8em;
	font-size: 1.2rem;
	border-radius: 50em
}
.genreSlider_genre:hover {
	background-color: var(--yellow-light);
}
.genreSlider_genre.genreSlider_genre-selected {
	background-color: var(--yellow);
	color: #fff;
}
.genreSlider_genre a {
	color: #222;
}
.genreSlider_genre.genreSlider_genre-selected a {
	color: #fff;
	font-weight: bold;
}
@media screen and (min-width:750px) {
	.genreSlider .swiper-wrapper {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		margin: 0 auto .5rem;
		width: 90%;
		max-width: 1300px;
	}
	.genreSlider_genre {
		width: 33.3%;
		-webkit-box-flex: 1;
		-ms-flex: 0 1 33.3%;
		flex: 0 1 33.3%;
		margin: -1px 0 0 -1px;
		padding: 0;
		text-align: center;
		border: solid 1px var(--yellow);
		border-radius: 0;
	}
	.genreSlider_genre a,
	.genreSlider_genre span {
		display: block;
		padding: .7rem 0;
	}
}
@media screen and (min-width:1024px) {
	.genreSlider_genre {
		width: 20%;
		-webkit-box-flex: 1;
		-ms-flex: 0 1 20%;
		flex: 0 1 20%;
		font-size: 1rem;
	}
}
@media screen and (min-width:1150px) {
	.genreSlider_genre {
		width: 16.6%;
		-webkit-box-flex: 1;
		-ms-flex: 0 1 16.6%;
		flex: 0 1 16.6%;
	}
}
@media screen and (min-width:1300px) {
	.genreSlider_genre {
		width: 12.5%;
		-webkit-box-flex: 1;
		-ms-flex: 0 1 12.5%;
		flex: 0 1 12.5%;
	}
}

.archiveHeader {
	padding-top: .5rem;
}
.archiveHeader_heading {
	margin-top: -1rem;
	padding: .6rem 2% .8rem;
	font-size: 1.4rem;
	font-weight: normal;
	line-height: 1.2;
}
.archiveHeader_hits {
	
}
.archiveHeader_hits-search {
	margin: 0 auto .5rem;
	padding: .8rem 0 .4rem;
	width: 96%;
	/max-width: 500px;
	background-color: #f3f3f3;
	border-radius: 6px;
}
.hits {
	margin: auto;
	width: 94%;
	/max-width: 600px;
	letter-spacing: 2rem;
}
.hits > * {
	letter-spacing: normal;
}
.hits_sum {
	display: block;
	color: var(--green);
	font-size: 1.4rem;
}
.archiveHeader_hits-search .hits_sum {
	margin-bottom: .8rem;
	padding-bottom: .2rem;
	border-bottom: solid 3px #fff;
	text-align: center;
}
.hits_item {
	display: inline-block;
	margin-bottom: .4rem;
	padding: 0 0 .4rem calc(1rem + 2%);
	font-size: 1rem;
}
div.hits_item:last-of-type {
	padding-bottom: 0;
	border-bottom: none;
}
.hits_item::before {
	content: "•";
	display: inline-block;
	margin: 0 0 0 -.6rem;
	color: #888;
	vertical-align: middle;
}
.hits_name {
	display: inline-block;
	-webkit-font-feature-settings: "palt" 1;
	font-feature-settings: "palt" 1;
	vertical-align: middle;
}
.hits_result {
	position: relative;
	display: inline-block;
	padding: 0 1.6em 0 .7em;
	border-radius: 50em;
	background-color: #888;
	color: #fff;
	vertical-align: middle;
	-webkit-transition: color .2s, background-color .2s;
	transition: color .2s, background-color .2s;
}
.hits_result:hover {
	background-color: #ddd;
	color: #666;
}
.hits_result::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: .7em;
	bottom: 0;
	margin: auto;
	width: .4em;
	height: .4em;
	border-top: solid 2px #fff;
	border-right: solid 2px #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition: border-color .2s;
	transition: border-color .2s;
}
.hits_result:hover::before {
	border-color: #666
}
.hits_result-zero {
	padding: 0 .7em;
	background-color: #fff;
	color: #666;
}
.hits_result-zero:hover {
	background-color: #fff;
	color: #666;
}
.hits_result-zero::before {
	content: none;
}
.hits_number {
	display: inline-block;
	margin-right: .1em;
	font-weight: bold;
}
.hits_sum .hits_number {
	display: inline-block;
	margin-right: .1em;
	font-size: 1.5em;
	font-weight: bold;
	line-height: 1;
}

.archiveHeader_function {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: relative;
	margin: 0 auto .2rem;
	padding: .5rem 2%;
	width: 100%;
}
@media screen and (max-width:1023px) {
	.archiveHeader_function > div:only-child {
		max-width: 48%;
		min-width: 220px;
	}
}
/* 絞り込み検索欄 */
.functionSearch {
	width: 52%;
	-webkit-box-flex: 1;
	-ms-flex: 1 1 524%;
	flex: 1 1 52%;
}
.functionSearch .search {
	border: solid 3px #aaa;
}
.functionSearch #searchform-main {
	border: solid 3px var(--green);
}
.functionSearch input.search_input {
	padding: 0 0 0 .7em;
}
.functionSearch .searchButton {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 3rem;
	flex: 0 0 3rem;
	height: 2.6rem;
	background-color: #aaa;
	-webkit-box-shadow: 1px 0 0 1px #aaa;
	box-shadow: 1px 0 0 1px #aaa;
}
.functionSearch #searchform-main .searchButton {
	background-color: var(--green);
	-webkit-box-shadow: 1px 0 0 1px var(--green);
	box-shadow: 1px 0 0 1px var(--green);
}
.functionSearch .searchButton_icon {
	font-size: 1.7rem;
}

.functionSort {
	position: relative;
	width: 46%;
	-webkit-box-flex: 1;
	-ms-flex: 1 1 46%;
	flex: 1 1 46%;
	margin-left: 2%;
	background-color: #fff;
	border: solid 3px #aaa;
	border-radius: 50em;
	text-align: center;
	white-space: nowrap;
	overflow: hidden;
}
.functionSort::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: 1.8em;
	bottom: 0;
	margin: auto;
	width: 0;
	height: 0;
	border-top: solid .3rem transparent;
	border-left: solid .3rem transparent;
	border-right: solid .3rem #222;
	border-bottom: solid .3rem #222;
	-webkit-transform-origin: right bottom;
	transform-origin: right bottom;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	pointer-events: none;
}
.functionSort_label {
	display: inline-block;
	width: 20%;
	font-size: 1.3rem;
	line-height: 1.8;
	vertical-align: middle;
}
.functionSort_select {
	-webkit-appearance: none;
	   -moz-appearance: none;
			appearance: none;
	border-radius: 0;
	border: 0;
	margin: 0;
	padding: 0;
	background: none transparent;
	vertical-align: middle;
	font-size: inherit;
	color: inherit;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;

	display: inline-block;
	width: 100%;
	height: 2.6rem;
	font-size: 1.2rem;
	cursor: pointer;
}
.functionSort_select:focus {
	outline: none;
}
@media screen and (min-width:750px) {
	.functionSearch input.search_input {
		padding: 0 0 0 1em;
	}
	.functionSearch .searchButton {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 3.8rem;
		flex: 0 0 3.8rem;
	}
	.hits_name {
		font-size: 1.2rem;
	}
}
@media screen and (min-width:1024px) {
	.archiveHeader {
		margin: auto;
		padding: 1rem 0 0rem;
		width: 96%;
		max-width: 1300px;
		overflow: hidden;
	}
	.archiveHeader_heading {
		padding: .6rem 0 .8rem;
		font-size: 2rem;
	}
	.archiveHeader_hits {
		display: inline-block;
		padding: 1.4rem 0 0 1.4rem;
	}
	.archiveHeader_hits-search {
		display: block;
		padding: .6rem 0 .4rem 1rem;
		padding: .5rem 0 .5rem 1%;
		width: 100%;
		background-color: transparent;
		border-radius: 0;
		border-top: dotted 1px #ccc;
		border-bottom: dotted 1px #ccc;
	}
	.hits {
		width: 100%;
	}
	.hits_sum {
		font-size: 1.2rem;
	}
	.archiveHeader_hits-search .hits {
		width: 100%;
		letter-spacing: normal;
	}
	.archiveHeader_hits-search .hits_sum,
	.archiveHeader_hits-search .hits_item {
		display: inline-block;
		padding: 0;
		border: none;
		vertical-align: middle;
	}
	.archiveHeader_hits-search .hits_sum {
		margin: 0 1.5rem 0 0;
		padding: 0 0 0 0;
		font-size: 1.3rem;
		text-align: left;
	}
	.archiveHeader_hits-search .hits_item {
		margin: 0 2rem 0 0;
	}
	.hits_item::before {
		content: none;
	}
	.hits_name {
		font-size: 1rem;
	}
	.hits_result:hover {
		background-color: #ddd;
		color: #666;
	}
	.hits_result:hover::before {
		border-color: #666
	}
	.hits_result-zero {
		background-color: #f3f3f3;
		color: #666;
	}
	.hits_result-zero:hover {
		background-color: #f3f3f3;
		color: #666;
	}
	.archiveHeader_function {
		float: right;
		padding: 1rem 0 .5rem;
		width: 70%;
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: flex-end
	}
	.functionSearch {
		width: 52%;
		-webkit-box-flex: 1;
		-ms-flex: 1 1 52%;
		flex: 1 1 52%;
		max-width: 340px;
	}
	.functionSearch .searchButton {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 3rem;
		flex: 0 0 3rem;
		height: 2.1rem;
	}
	.functionSearch .searchButton_icon {
		font-size: 1.4rem;
	}
	.functionSort {
		max-width: 230px;
	}
	.functionSort::before {
		right: 1.8em;
		border-top: solid .28rem transparent;
		border-left: solid .28rem transparent;
		border-right: solid .28rem #222;
		border-bottom: solid .28rem #222;
	}
	.functionSort_label {
		font-size: 1.2rem;
		line-height: 1.6;
	}
	.functionSort_select {
		height: 2.1rem;
		font-size: 1rem;
	}
}

.archiveMain {
	margin-bottom: 2rem
}
.archiveMain-selection {
	margin-top: -1rem;
	margin-bottom: 3rem;
}
.listBar {
	background-image: url('data:image/svg+xml,%3csvg%20xmlns%3d%22http%3a%2f%2fwww%2ew3%2eorg%2f2000%2fsvg%22%20xmlns%3axlink%3d%22http%3a%2f%2fwww%2ew3%2eorg%2f1999%2fxlink%22%20viewBox%3d%220%200%2060%2060%22%20width%3d%2260px%22%20height%3d%2260px%22%20version%3d%221%2e1%22%3e%3cg%20transform%3d%22translate%2830%20%2d30%29%20scale%281%2e414%29%20rotate%2845%29%22%3e%3crect%20x%3d%220%22%20y%3d%220%22%20width%3d%2215%22%20height%3d%2260%22%20fill%3d%22%23edf7f8%22%20%2f%3e%3crect%20x%3d%2215%22%20y%3d%220%22%20width%3d%2215%22%20height%3d%2260%22%20fill%3d%22%23d9efed%22%20%2f%3e%3crect%20x%3d%2230%22%20y%3d%220%22%20width%3d%2215%22%20height%3d%2260%22%20fill%3d%22%23edf7f8%22%20%2f%3e%3crect%20x%3d%2245%22%20y%3d%220%22%20width%3d%2215%22%20height%3d%2260%22%20fill%3d%22%23d9efed%22%20%2f%3e%3c%2fg%3e%3c%2fsvg%3e');
	background-size: 24px;
}
.listBar_text {
	padding: .3rem 0;
	color: #444;
	font-size: 1.1rem;
	text-align: center;
}
@media screen and (max-width:749.9999px) {
	.listBar_pagination {
		position: relative;
		min-height: 2.98rem;
		background-color: #fff;
		border-bottom: solid 1px #eee;
	}
	.listBar_pagination::before {
		content: "« 前へ"
	}
	.listBar_pagination::after {
		content: "次へ »"
	}
	.st-pagelink::before,
	.listBar_pagination::before,
	.listBar_pagination::after,
	.page-numbers {
		display: none;
		padding: .6rem;
		font-size: 1.1rem;
	}
	.st-pagelink::before,
	.page-numbers.current {
		display: block;
		position: relative;
		margin: auto;
		width: 44%;
		background-color: var(--green-light);
		text-align: center;
	}
	.st-pagelink::before {
		content: "1ページ目";
		position: absolute;
		left: 0;
		right: 0;
	}
	.page-numbers.current::after {
		content: "ページ目"
	}
	.listBar_pagination::before,
	.listBar_pagination::after,
	.page-numbers.prev,
	.page-numbers.next {
		display: block;
		position: absolute;
		top: 0;
		width: 28%;
		background-color: #fff;
		font-weight: bold;
		text-align: center;
	}
	.page-numbers.prev,
	.page-numbers.next {
		z-index: 1
	}
	.listBar_pagination::before,
	.page-numbers.prev {
		left: 0;
		border-right: solid 1px #eee;
	}
	.listBar_pagination::after,
	.page-numbers.next {
		right: 0;
		border-left: solid 1px #eee;
	}
	.listBar_pagination::before,
	.listBar_pagination::after {
		color: #ccc;
		font-weight: normal;
	}
	.page-numbers.prev:hover,
	.page-numbers.next:hover {
		background-color: var(--green);
		color: #fff;
	}
}
@media screen and (min-width:750px) {
	.listBar {
		padding: .3rem 1.2rem;
	}
	.listBar_text {
		display: inline-block;
	}
	.listBar_pagination {
		float: right;
		padding: .3rem 0;
		font-size: 1.1rem;
	}
	.page-numbers {
		display: inline-block;
		padding: 0 .3em;
		background-color: #fff;
		border: solid 1px #01679C;
	}
	.page-numbers.dots {
		background-color: transparent;
		border: none;
	}
	.page-numbers:hover {
		background-color: #ddd;
	}
	.page-numbers.dots:hover {
		background-color: transparent;
	}
	.page-numbers.current {
		border-color: #01679C;
		background-color: #01679C;
		color: #fff;
	}
	.page-numbers.next,
	.page-numbers.prev {
		background-color: transparent;
		border: none;
	}
}
@media screen and (min-width:1024px) {
	.listBar {
		margin: auto;
		padding: .1rem 1.5rem;
		width: 96%;
		max-width: 1300px;
		border-radius: 50em;
	}
	.listBar_text {
		font-size: 1rem;
	}
	.listBar_pagination {
		padding: .2rem 0;
		font-size: 1.05rem;
	}
}
/* 作品一覧　より大きく */
.bookArchive {
	display: block;
	position: relative;
	padding-top: 1rem;
}
.bookArchive_item {
	position: relative;
	margin: 0 auto 1.3rem;
	width: 94%;
	border-bottom: solid 1px #eee;
}
.bookArchive-search .bookArchive_item:first-child {
	margin-top: 4rem;
}
.bookArchive_item-riso + .bookArchive_item-kataoka,
.bookArchive_item-riso + .bookArchive_item-mow,
.bookArchive_item-kataoka + .bookArchive_item-mow {
	margin-top: 5.5rem;
}
.bookArchive-search .bookArchive_item:first-child::before,
.bookArchive_item-kataoka:first-child::before,
.bookArchive_item-riso + .bookArchive_item-kataoka::before,
.bookArchive_item-mow:first-child::before,
.bookArchive_item-riso + .bookArchive_item-mow::before,
.bookArchive_item-kataoka + .bookArchive_item-mow::before {
	display: block;
	position: absolute;
	top: -3.2rem;
	left: 0;
	padding-left: .5em;
	width: 100%;
	border-bottom: double 3px;
	color: #444;
	font-weight: bold;
	white-space: nowrap;
}
.bookArchive_item-riso:first-child::before {
	content: "理想書店の作品";
	font-size: 1.5rem;
}
.bookArchive_item-kataoka:first-child::before,
.bookArchive_item-riso + .bookArchive_item-kataoka::before {
	content: "片岡義男.comの作品";
	font-size: 1.5rem;
}
.bookArchive_item-mow:first-child::before,
.bookArchive_item-riso + .bookArchive_item-mow::before,
.bookArchive_item-kataoka + .bookArchive_item-mow::before {
	content: "マンガonウェブ ボイジャー店の作品";
	font-size: 1.2rem;
}
.bookArchive_item:last-of-type {
	border-bottom: none;
}
.bookArchive_left {
	float: left;
	padding-left: 2%;
	width: 32%;
}
.bookArchive_coverLink {
	display: block;
	position: relative;
	height: 0;
	padding-bottom: 156%
}
.bookArchive_price {
	display: block;
	margin: .4em 0 .3em;
	font-size: 1.25rem;
	font-weight: bold;
}
.bookArchive_price::before {
	margin-right: -1em;
}
.bookArchive_date {
	font-size: 1rem;
}
.bookArchive_right {
	position: relative;
	display: inline-block;
	padding-left: .8rem;
	width: 68%;
}
.bookArchive_tag {
	margin-bottom: .5rem;
}
.bookArchive_tag .tag_item {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 25%;
	flex: 1 1 25%;
	font-size: 1rem;
}
.bookArchive_tag .tag_item-ellipsis {
	display: none;
}
.bookArchive_title {
	margin: 0 0 .2em;
	font-size: 1.4rem;
	line-height: 1.4;
}
.bookArchive_author {
	display: inline-block;
	margin-bottom: .5em;
	font-size: 1.1rem;
}
.bookArchive_genre {
	font-size: 1rem;
}
.bookArchive_text {
	position: relative;
	margin: .5rem 0 0;
	height: auto;
	max-height: 8.4em;
	background-color: #f3f3f3;
	border: solid .8em #f3f3f3;
	color: #444;
	font-size: 1rem;
	line-height: 1.4;
	text-align: justify;
	text-justify: inter-ideograph;/* IE11 Edge */
	overflow: hidden;
}
.bookArchive_text::before {
	content: "…";
	position: absolute;
	display: block;
	top: 5.6em;
	right: 0;
	width: 1em;
	background-color: #f3f3f3;
	line-height: 1.4;
}
.bookArchive_text::after {
	content: "";
	display: inline-block;
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #f3f3f3;
}
.bookArchive_button {
	clear: both;
	float: none;
	width: 100%;
}
.bookArchive_none {
	width: 100%;
	padding: 5rem 0 6rem;
	color: #888;
	font-size: 1.1rem;
	text-align: center;
}
@media screen and (min-width:750px) {
	.bookArchive {
		margin: auto;
		width: 90%;
	}
	.bookArchive_left {
		float: left;
		padding-left: 2%;
		width: 30%;
	}
	.bookArchive_right {
		padding-top: .8rem;
		padding-left: 1.5rem;
		width: 70%;
	}
	.bookArchive_button {
		margin: 0 0;
	}
}
@media screen and (min-width:1024px) {
	.bookArchive {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		margin: auto;
		width: 98%;
		max-width: 1300px;
	}
	.bookArchive_item {
		width: 48%;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 48%;
		flex: 0 0 48%;
		margin: 0 0 1.3rem 1%;
		padding-right: 1%;
		border-right: solid 1px #ddd;
		border-bottom: solid 1px #ddd;
	}
	*::-ms-backdrop, .bookArchive_item {/* IE11対策 */
		width: 47%;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 47%;
		flex: 0 0 47%;
	}
	.bookArchive-search .bookArchive_item:first-child,
	.bookArchive_item-riso + .bookArchive_item-kataoka,
	.bookArchive_item-riso + .bookArchive_item-mow,
	.bookArchive_item-kataoka + .bookArchive_item-mow {
		position: static;
		margin-top: 4.5rem;
		margin-right: 2.3rem;
	}
	.bookArchive-search .bookArchive_item-riso:first-child + .bookArchive_item-riso,
	.bookArchive-search .bookArchive_item-kataoka:first-child + .bookArchive_item-kataoka,
	.bookArchive-search .bookArchive_item-mow:first-child + .bookArchive_item-mow,
	.bookArchive_item-riso + .bookArchive_item-kataoka + .bookArchive_item-kataoka,
	.bookArchive_item-riso + .bookArchive_item-mow + .bookArchive_item-mow,
	.bookArchive_item-kataoka + .bookArchive_item-mow + .bookArchive_item-mow {
		-ms-flex-item-align: end;
		align-self: flex-end;
		margin-left: calc(-1% - 1rem);
	}
	.bookArchive-search .bookArchive_item:first-child::before,
	.bookArchive_item-kataoka:first-child::before,
	.bookArchive_item-riso + .bookArchive_item-kataoka::before,
	.bookArchive_item-mow:first-child::before,
	.bookArchive_item-riso + .bookArchive_item-mow::before,
	.bookArchive_item-kataoka + .bookArchive_item-mow::before {
		margin: -3.8rem auto 0;
		top: auto;
		left: 0;
		right: 0;
		width: 96%;
		max-width: 1300px;
	}
	.bookArchive-search .bookArchive_item:first-child::before {
		font-size: 1.6rem;
	}
	.bookArchive_item-kataoka:first-child::before,
	.bookArchive_item-riso + .bookArchive_item-kataoka::before {
		font-size: 1.6rem;
	}
	.bookArchive_item-mow:first-child::before,
	.bookArchive_item-riso + .bookArchive_item-mow::before,
	.bookArchive_item-kataoka + .bookArchive_item-mow::before {
		font-size: 1.6rem;
	}
	
	.bookArchive_item:last-of-type {
		border-bottom: solid 1px #ddd;
	}
	.bookArchive_genre {
		font-size: .9rem;
	}
	.bookArchive_button .publicationButton {
		font-size: 1.3rem;
	}
	.bookArchive_button .publicationButton-other {
		font-size: 1.2rem;
	}
}

/* ------------------------------------------------
作家個別ページ
------------------------------------------------ */
#ajax_loading {
	margin: -4rem auto 0;
	width: 200px;
}
.author_photo {
	display: block;
	margin: 0 auto 1rem;
	width: 60%;
	max-width: 200px;
}
.author_info {
	display: block;
	margin: 0 auto 1rem;
	width: 90%;
}
.author_name {
	display: block;
	margin-bottom: .5rem;
	font-size: 1.7rem;
}
@media screen and (min-width:750px) {
	.author {
		margin: 0 auto 1.5rem;
		max-width: 1300px;
		text-align: center;
	}
	.author_photo {
		display: inline-block;
		margin: 0 1rem 0 0;
		width: 20%;
		vertical-align: top
	}
	.author_info {
		display: inline-block;
		margin: 0;
		width: 65%;
		text-align: left;
		vertical-align: top
	}
	.author_name {
		font-size: 1.5rem;
	}
}
@media screen and (min-width:1024px) {
	.author_photo {
		margin: 0 1.5rem 0 0;
	}
	.author_name {
		margin-top: .3rem;
		font-size: 1.7rem;
	}
}

/* ------------------------------------------------
特集一覧ページ
------------------------------------------------ */
.column {
	padding: 1rem 0;
	margin: auto;
	width: 90%;
	max-width: 1300px;
}
.column_item {
	margin-bottom: 2rem;
	padding-bottom: .2rem;
	overflow: hidden;
}
.column_item:last-of-type {
	border-bottom: none;
}
.column_cat {
	
}
.specialCat {
	float: left
}
.specialCat_tag {
	display: inline-block;
	margin-bottom: 3px;
	padding: .3em .5em;
	border: solid 1px;
	border-radius: 3px;
	font-size: .85rem;
	font-weight: bold;
	line-height: 1;
	-webkit-transition: all .2s;
	transition: all .2s;
}
.specialCat_tag:hover {
	color: #fff
}
.specialCat_tag-single {
	color: #8EA6CC;
}
a.specialCat_tag-single:hover {
	background-color: #8EA6CC;
}
.specialCat_tag-multiple {
	color: #87BECC;
}
a.specialCat_tag-multiple:hover {
	background-color: #87BECC;
}
.specialCat_tag-theme {
	color: #A4C495;
}
a.specialCat_tag-theme:hover {
	background-color: #A4C495;
}
.specialCat_tag-present {
	color: #EDA671;
}
a.specialCat_tag-present:hover {
	background-color: #EDA671;
}
.specialCat_tag-limited {
	color: #E0979F;
}
a.specialCat_tag-limited:hover {
	background-color: #E0979F;
}
.specialCat_tag-hide {
	color: #888;
}
.specialCat_icon {
	display: inline-block;
	font-size: 1.2rem;
	line-height: 1;
	vertical-align: middle;
}
.specialCat_icon .fas {
	color: #ccc;
}

.column_title {
	display: block;
	margin: .6rem 0 .4rem;
	line-height: 1.2;
}
.column_subInfo {
	float: right;
	display: block;
   margin-top: .15rem;
	text-align: right;
}
@media screen and (min-width:750px) {
	.column {
		overflow: hidden;
		padding: 1rem 0 0;
	}
	.column_item {
		float: left;
		margin-bottom: 1.5rem;
		width: 48.5%;
		border: none;
	}
	.column_item:nth-of-type(odd) {
		clear: both;
		margin-right: 3%;
	}
	.column_title {
		display: table-cell;
		margin: 0;
		padding: .3rem 0 0;
		width: 100%;
		height: 3.5rem;
		font-size: 1.2rem;
		vertical-align: middle;
	}
	.column_title a {
		display: inline-block;
		max-height: 2.9rem;
		overflow: hidden;
	}
	.column_subInfo {
		font-size: .9rem;
	}
}
@media screen and (min-width:1024px) {
	.column_item {
		margin-right: 3.5%;
		width: 31%;
		border: none;
	}
	.column_item:nth-of-type(odd) {
		clear: none;
		margin-right: 3.5%;
	}
	.column_item:nth-of-type(3n) {
		margin-right: 0%;
	}
	.column_item:nth-of-type(3n - 2) {
		clear: both;
	}
}
/* ------------------------------------------------
お知らせ一覧ページ
------------------------------------------------ */
.newsArchive {
	margin: auto;
	padding-top: 1rem;
	width: 94%;
}
.news_item {
	
}
.news_item-archive {
	position: relative;
	margin-bottom: 1rem;
	font-size: 0;
}
.news_item-archive.unread.latest::before {
	content: "";
	position: absolute;
	display: block;
	top: -.2rem;
	right: -.2rem;
	width: 1.3rem;
	height: 1.3rem;
	background-color: var(--red);
	border-radius: 100%;
	border: solid 2px #fff;
	-webkit-animation: flash-red 2.5s linear infinite;
	animation: flash-red 2.5s linear infinite;
}
_:-ms-lang(x)::-ms-backdrop, .news_item-archive.unread.latest::before {
	z-index:1;
	-webkit-animation: none;
	animation: none;
}
_:-ms-lang(x)::backdrop, .news_item-archive.unread.latest::before {
	z-index:1;
	-webkit-animation: none;
	animation: none;
}
_:-ms-lang(x)::-ms-backdrop, .news_item-archive.unread.latest::after {
	content: "";
	position: absolute;
	display: block;
	top: -.2rem;
	right: -.2rem;
	width: 1.3rem;
	height: 1.3rem;
	border: solid 1px #f25857;
	border-radius: 100%;
	-webkit-animation: flash-red-ie 1.6s linear infinite;
	animation: flash-red-ie 1.6s linear infinite;
}
_:-ms-lang(x)::backdrop, .news_item-archive.unread.latest::after {
	content: "";
	position: absolute;
	display: block;
	top: -.2rem;
	right: -.2rem;
	width: 1.3rem;
	height: 1.3rem;
	border: solid 1px #f25857;
	border-radius: 100%;
	-webkit-animation: flash-red-ie 1.6s linear infinite;
	animation: flash-red-ie 1.6s linear infinite;
}

.news_bubble {
	position: relative;
	background-color: var(--yellow-light);
	border-radius: 6px;
	color: #222;
}
.news_bubble-archive {
	display: inline-block;
	margin-right: 1.5rem;
	padding: 8px 2%;
	min-width: calc(80% - 1.5rem);
	width: 100%;
	max-width: calc(100% - 1.5rem - 60px);
	font-size: 1rem;
	vertical-align: top;
}
.news_bubble-archive:hover {
	color: #fff;
	background-color: var(--yellow);
}
.news_bubble-archive::before {
	content: "";
	position: absolute;
	display: block;
	top: 0;
	left: 100%;
	bottom: 0;
	margin: 24px auto 0;
	width: 0;
	height: 0;
	border: solid 6px;
	border-color: transparent;
	border-left: solid 13px var(--yellow-light);
}
.news_bubble-archive:hover::before {
	border-left: solid 13px var(--yellow);
}
.news_date {
	display: inline-block;
	margin-left: .5rem;
}
.news_cat {
	display: inline-block;
	padding: 0;
	width: 9rem;
	color: #fff;
	-webkit-font-feature-settings: "palt" 1;
	font-feature-settings: "palt" 1;
	text-align: center;
	line-height: 1.4;
}
.cat_infonew{
	background-color: #71AA3E;
}
.cat_stafftw{
	background-color: #EF95A4;
}
.cat_infosp{
	background-color: #75BCB3;
}
.cat_maintenance{
	background-color: #DC6572;
}
.cat_other{
/*	background-color: #E0BF19; */
	background-color: #fff;
	color: #666;
}
.news_title {
	margin: 0;
	font-size: 1.1rem;
}
.news_text {
	position: relative;
}
.news_text-archive {
	margin: 0;
	max-height: 4.2em;
	line-height: 1.4;
	text-align: justify;
	text-justify: inter-ideograph;/* IE11 Edge */
	overflow: hidden;
}
.news_text-archive::after {
	content: "";
	display: inline-block;
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: var(--yellow-light);
}
.news_text-archive::before {
	content: "…";
	position: absolute;
	display: block;
	right: 0;
	bottom: 0;
	width: 1em;
	background-color: var(--yellow-light);
	line-height: 1.4;
}
.news_bubble-archive:hover .news_text-archive::after,
.news_bubble-archive:hover .news_text-archive::before {
	color: #fff;
	background-color: var(--yellow);
}
.news_icon {
	width: 20%;
}
.news_icon-archive {
	display: inline-block;
	width: 20%;
	max-width: 60px;
	vertical-align: top;
}
.unread.latest .news_icon-archive {
	border-radius: 100%;
	border: solid 3px #fff;
	-webkit-box-shadow: 0 0 0 2px var(--red);
	box-shadow: 0 0 0 2px var(--red);
}
.newsSingle {
	margin-bottom: 2rem;
}
.news_item-single {
	position: relative;
	margin: auto;
	width: 90%;
}
.news_bubble-single {
	display: block;
	margin: auto;
	padding: 1.2rem 1rem 1rem;
	width: 100%;
}
.news_date-single {
	margin-right: 68px;
}
.news_title-single {
	display: table-cell;
	margin: 0;
	padding: .5rem 70px .5rem 0;
	height: 3rem;
	font-size: 1.2rem;
	line-height: 1.4;
	vertical-align: middle;
}
.news_text-single {
	margin: .3rem 0;
	padding-top: 1.2rem;
	border-top: solid 1px #222;
	font-size: 1.05rem;
	overflow: hidden;
}
.news_text-single p:empty {
	display: none
}
.news_icon-single {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 66px;
	border-radius: 100%;
	background-color: #fff;
	border: solid 3px #fff;
}
@media screen and (min-width:400px) {
	.news_title-single {
		font-size: 1.25rem;
	}
}
@media screen and (min-width:750px) {
	.newsArchive {
		padding-top: 1.5rem;
		width: 90%;
		max-width: 1000px;
	}
	.news_item-archive {
		margin-bottom: 1.6rem;
	}
	.news_bubble-archive {
		max-width: calc(100% - 1.5rem - 76px);
	}
	.news_bubble-archive::before {
		margin: 28px auto 0;
		border: solid 8px;
		border-color: transparent;
		border-left: solid 16px var(--yellow-light);
	}
	.news_cat {
		width: 9.5rem;
	}
	.news_icon {
		max-width: 76px;
	}
	.news_title-single {
		display: table-cell;
		margin: 0;
		padding: .5rem 100px .5rem 0;
		height: 3rem;
		line-height: 1.4;
		vertical-align: middle;
	}
	.news_icon-single {
		top: 20px;
		right: 16px;
		width: 84px;
		max-width: none;
		border: solid 4px #fff;
	}
}
@media screen and (min-width:1024px) {
	.news_item-single {
		margin-top: 3rem;
		max-width: 1024px
	}
	.news_bubble-single {
		padding: 1.2rem 24px 1rem;
		width: 82%;
	}
	.news_bubble-single::before {
		content: "";
		position: absolute;
		display: block;
		top: 0;
		left: 100%;
		bottom: 0;
		margin: 3.5% auto 0;
		width: 0;
		height: 0;
		border: solid 9px;
		border-color: transparent;
		border-left: solid 22px var(--yellow-light);
	}
	.news_title-single {
		display: block;
		padding: .5rem 0;
		width: 100%;
		height: auto;
		font-size: 1.6rem;
	}
	.news_icon-single {
		top: 0;
		left: auto;
		right: 0;
		margin-right: -20px;
		width: 8%;
		max-width: 90px;
		border: none;
	}
}

.naviButtons {
	margin: 2rem auto;
	max-width: 800px;
	overflow: hidden;
}
.naviButtons_item {
	padding: 0 1rem;
	width: 50%;
	font-size: 1rem;
}
.naviButtons_item-next {
	float: right;
}
.naviButtons_item-prev {
	float: left;
}
.naviButtons_button {
	display: block;
	width: 100%;
	max-width: 300px;
}

.archiveRanking {
	
}


/* ------------------------------------------------
注目の作家・作品一覧ページ
------------------------------------------------ */
.selectionBlock {
	margin: 0 auto 1.5rem;
	padding: .6rem;
	width: 96%;
	border: solid 2px var(--yellow);
	background-image: url('data:image/svg+xml,%3csvg%20xmlns%3d%22http%3a%2f%2fwww%2ew3%2eorg%2f2000%2fsvg%22%20xmlns%3axlink%3d%22http%3a%2f%2fwww%2ew3%2eorg%2f1999%2fxlink%22%20viewBox%3d%220%200%2060%2060%22%20width%3d%2260px%22%20height%3d%2260px%22%20version%3d%221%2e1%22%3e%3cg%20transform%3d%22translate%2830%20%2d30%29%20scale%281%2e414%29%20rotate%2845%29%22%3e%3crect%20x%3d%220%22%20y%3d%220%22%20width%3d%2215%22%20height%3d%2260%22%20fill%3d%22%23faf9f2%22%20%2f%3e%3crect%20x%3d%2215%22%20y%3d%220%22%20width%3d%2215%22%20height%3d%2260%22%20fill%3d%22%23f3f2eb%22%20%2f%3e%3crect%20x%3d%2230%22%20y%3d%220%22%20width%3d%2215%22%20height%3d%2260%22%20fill%3d%22%23faf9f2%22%20%2f%3e%3crect%20x%3d%2245%22%20y%3d%220%22%20width%3d%2215%22%20height%3d%2260%22%20fill%3d%22%23f3f2eb%22%20%2f%3e%3c%2fg%3e%3c%2fsvg%3e');
	background-size: 46px;
}
.list_info-selection {
	max-width: none;
	min-width: calc(100% - 120px - 1rem);
	width: calc(100% - 25% - 1rem);
	color: var(--green);
	font-weight: bold;
}
.author-selection {
	padding: 1rem 0 .1rem;
	background-color: rgba(255,255,255,.7);
}
.author-selection .author_photo {
	width: 50%;
	max-width: 180px;
	border: solid 1px #ddd;
}
.author_copySelection {
	color: var(--green);
	font-size: 1.4rem;
	line-height: 1.4;
}
.author_name-selection {
	padding: .2rem 0;
	margin-bottom: 1rem;
	border-bottom: dotted 1px var(--yellow);
	color: #222;
}
.bookArchive-selection .bookArchive_item {
	margin: 0 auto 1rem;
	padding: 1rem .5rem 0;
	width: 100%;
	background-color: #fff;
	border-color: var(--green);
	border: none;
}
.bookArchive-selection .bookArchive_item-selection {
	padding: 2rem .5rem 0;
}
.bookArchive_item-selection .tag_item,
.bookArchive_item-small .tag_item {
	padding-top: 0;
	padding-bottom: 0;
	max-width: 76px;
}
.bookArchive_item-small .bookArchive_title {
	font-size: 1.2rem;
}
.selectionBlock_heading {
	margin-top: 2rem;
	padding: .2rem .5rem;
	border-bottom: double 3px #666;
	font-size: 1.6rem;
	font-weight: bold;
}
.staffCommentBig {
	position: relative;
	padding: 0 0 0 12px;
	margin: 0 0 -1rem;
	font-size: 0;
	z-index: 1;
}
.staffCommentBig_bubble {
	display: inline-block;
	position: relative;
	padding: .2rem .6rem .5rem;
	width: calc(100% - 80px);
	background-color: var(--green);
	border-radius: 6px;
	color: #fff;
	font-size: 1rem;
	vertical-align: bottom;
}
.staffCommentBig_bubble::before {
	content: "";
	position: absolute;
	display: block;
	left: 100%;
	bottom: 30px;
	margin: auto;
	width: 0;
	height: 0;
	border: solid 6px;
	border-color: transparent;
	border-left: solid 13px var(--green);
}
.staffCommentBig_label {
	font-size: .9rem;
}
.staffCommentBig_comment {
	font-size: 1.3rem;
	font-weight: bold;
	line-height: 1.2;
}
.staffCommentSmall .staffCommentBig_comment {
	font-size: 1.2rem;
}
.staffCommentBig_icon {
	display: inline-block;
	margin-left: 18px;
	width: 54px;
	font-size: 1rem;
	vertical-align: bottom;
}
.staffCommentSmall {
	padding: 12px 12px 0;
	background-color: #fff;
}
.staffCommentSmall_frame {
	background-color: var(--green-light);
	padding: .2rem .6rem .5rem;
	color: var(--green);
	border-radius: 6px;
}

.bookArchive_item-small {
	overflow: hidden;
}
.bookArchive_item-small .bookArchive_left {
	width: 26%;
}
.bookArchive_item-small .bookArchive_right {
	margin-top: .3rem;
	width: 74%;
}

@media screen and (min-width:750px) {
	.selectionBlock {
		padding: 1.3rem;
		width: 94%;
	}
	.list-author .list_item-selection {
		padding: .3rem 0
	}
	.list_item-selection .list_img {
		max-width: 100px;
	}
	.list_info-selection {
		width: 100%;
		max-width: calc(100% - 100px - 1rem);
	}
	.author-selection {
		padding-bottom: 1rem;
	}
	.author-selection .author_photo {
		width: 20%;
		max-width: 180px;
	}
	.author_info {
		width: 70%;
	}
	.author_copySelection {
		font-size: 1.2rem;
	}
	.author_name-selection {
		font-size: 1.6rem;
	}
	.bookArchive-selection {
		width: 100%;
	}
	.staffCommentBig_bubble {
		width: calc(100% - 90px);
	}
	.staffCommentBig_icon {
		width: 70px;
	}
	.staffCommentSmall_frame {
		padding: 3px 1rem 6px;
		color: var(--green);
	}
	.bookArchive_item-small .bookArchive_left {
		width: 20%;
	}
	.bookArchive_item-small .bookArchive_right {
		margin-top: 0;
		padding-top: 0;
		width: 80%;
	}
	.bookArchive_item-small .bookArchive_price {
		font-size: 1.1rem;
	}
	.bookArchive_item-small .bookArchive_button {
		clear: none;
		padding-left: 1.5rem;
		width: 80%;
	}
	.bookArchive_item-small .buttonsRow_item {
		margin: .4rem .2rem 1rem 0;
	}
}
@media screen and (min-width:1024px) {
	.archiveMain-selection {
		margin-top: 0;
		margin-bottom: 4rem;
	}
	.list_info-selection {
		width: calc(100% - 100px - 5.4rem);
		min-width: 0;
		max-width: none;
	}
	.list_item-selection .list_img {
		max-width: 90px;
	}
	.list_authorCatch-selection {
		font-size: 1.4rem;
	}
	.selectionBlock {
		padding: 2.2rem;
		width: 94%;
		max-width: 1100px;
	}
	.author_copySelection {
		font-size: 1.5rem;
	}
	.author_name-selection {
		margin: .3rem 0 .5rem;
		padding: 0 0 .5rem;
		font-size: 1.7rem;
		line-height: 1.2;
	}
	.selectionBlock_heading {
		font-size: 1.4rem;
	}
	.bookArchive-selection {
		display: block;
	}
	.staffCommentBig {
		float: right;
		width: 70%;
		margin: 1.5rem 0 0;
		padding: 0;
	}
	.staffCommentBig_bubble {
		padding: .2rem １rem .5rem;
		width: calc(100% - 110px);
		vertical-align: middle;
	}
	.staffCommentBig_bubble::before {
		top: 0;
		bottom: 0;
	}
	.staffCommentBig_comment {
		display: table;
		margin: auto;
		font-size: 1.6rem;
	}
	.staffCommentBig_icon {
		margin-left: 16px;
		vertical-align: middle;
	}
	.bookArchive-selection .bookArchive_item-selection {
		padding: 0 2% .5rem;
	}
	.bookArchive-selection .bookArchive_left {
		padding-top: 1.5rem;
		width: 26%;
	}
	.bookArchive-selection .bookArchive_coverLink {
		margin-bottom: .8rem;
		padding-bottom: 150%;
	}
	.bookArchive-selection .bookArchive_price {
		font-size: 1.5rem;
	}
	.bookArchive-selection .bookArchive_right {
		padding-left: 3%;
		width: 73%;
	}
	.bookArchive-selection .bookArchive_title {
		font-size: 1.6rem;
	}
	.staffCommentSmall {
		width: 82%;
		float: right;
		position: relative;
		z-index: 1;
	}
	.staffCommentSmall .staffCommentBig_comment {
		font-size: 1.4rem;
	}
	.bookArchive_item.bookArchive_item-small {
		overflow: visible;
		padding: 1rem .5rem .5rem;
	}
	.bookArchive_item.bookArchive_item-small::after {
		content: "";
		clear: both;
		display: block;
	}
	.bookArchive_item-small .bookArchive_left {
		width: 16%;
		padding-top: 0;
	}
	.bookArchive_item-small .bookArchive_coverLink {
		padding-bottom: 140%;
	}
	.bookArchive_item-small .bookArchive_right {
		float: left;
		padding-top: 1rem;
		width: calc(82% - 230px);
	}
	.bookArchive_item-small .bookArchive_tag {
		margin-bottom: .3rem;
	}
	.bookArchive_item-small .bookArchive_title {
		font-size: 1.5rem;
		margin-top: .3rem;
	}
	.bookArchive_item-small .bookArchive_price {
		font-size: 1.3rem;
	}
	.bookArchive_item-small .bookArchive_button {
		float: right;
		display: block;
		width: 230px;
		margin-top: 1rem;
	}
}

/* ------------------------------------------------
ランキングページ
------------------------------------------------ */
.rankingInfo {
	margin: 0 auto 1.5rem;
	width: 90%;
	max-width: 1200px;
}
.rankingInfo_description {
	display: table;
	margin: 0 auto 1rem;
	color: #333;
}
.rankingInfo_buttons {
	margin-bottom: 1rem;
	text-align: center;
}
.button-ranking {
	display: inline-block;
	margin: .5rem 1%;
	padding: .4em 0;
	width: 47%;
	font-size: 1.1rem;
	line-height: 1.2;
}
.button-ranking::before,
.button-ranking::after {
	content: none
}
.buttonLabel,
.buttonName {
	display: inline-block;
	vertical-align: middle;
}
.buttonLabel {
	padding-right: .3em;
	margin-right: .4em;
	border-right: solid 1px #fff;
}

.rankingMain {
	margin: auto;
	max-width: 1300px;
}

.rankingMain_wrapper {
	margin: 0 auto 1.5rem;
	width: 90%;
	max-width: 1000px;
}
.rankingMain_item {
	position: relative;
	margin: 0 auto 1rem;
	width: 100%;
}
.rankingMain_item.rankingFrame::before {
	top: 0;
	width: 5.5rem;
	height: 5.5rem;
}
.rankingMain_item.rankingFrame:nth-of-type(n + 7)::before {
	top: -.1rem;
	width: 5rem;
	height: 5rem;
}
.rankingMain_item .rankingFrame_point {
	padding-right: .5rem;
	font-size: 1.5rem;
	line-height: 1.2
}
.rankingMain_item .rankingFrame_book {
	padding: 1rem;
}
.rankingMain_item .bookSlider_coverLink {
	display: inline-block;
	margin: 0;
	padding-bottom: 44%;
	width: 28%;
	vertical-align: middle;
}
.rankingMain_item .bookSlider_info {
	display: inline-block;
	padding: 0 0 0 1rem;
	width: 70%;
	vertical-align: middle;
}
.rankingMain_item .bookSlider_title {
	display: block;
	margin-bottom: .2rem;
	height: auto;
	font-size: 1.4rem;
}
.rankingMain_item:nth-of-type(n + 7) .bookSlider_title {
	font-size: 1.2rem;
}
.rankingMain_item .bookSlider_price {
	font-size: 1.2rem;
}
.rankingMain_item .bookSlider_date {
	font-size: 1rem;
	text-align: right;
}
@media screen and (min-width:750px) {
	.rankingMain_item .bookSlider_coverLink {
		padding-bottom: 200px;
		width: 160px;
	}
	.rankingMain_item .bookSlider_info {
		display: inline-block;
		padding: 0 0 0 1rem;
		width: calc(100% - 160px - 1rem);
		vertical-align: middle;
	}
	.rankingMain_item .bookSlider_title {
		margin-bottom: .5rem;
		font-size: 1.5rem;
	}
	.rankingMain_item .bookSlider_author {
		font-size: 1.2rem;
	}
}
@media screen and (min-width:1024px) {
	.button-ranking {
		width: 21%;
	}
	.rankingMain_wrapper {
	}
	li.rankingMain_item:nth-of-type(1),
	li.rankingMain_item:nth-of-type(2),
	li.rankingMain_item:nth-of-type(3) {
		float: left;
		display: inline-block;
		margin-bottom: 2rem;
		width: 30%;
	}
	li.rankingMain_item:nth-of-type(2),
	li.rankingMain_item:nth-of-type(3) {
		margin-left: 5%;
	}
	li.rankingMain_item:nth-of-type(4) {
		clear: both;
	}
	li.rankingMain_item:nth-of-type(n + 4) {
		position: relative;
		padding-top: 0;
	}
	.rankingMain_item.rankingFrame:nth-of-type(1)::before,
	.rankingMain_item.rankingFrame:nth-of-type(2)::before,
	.rankingMain_item.rankingFrame:nth-of-type(3)::before {
		top: -.1rem;
		width: 6.5rem;
		height: 6.5rem;
	}
	.rankingMain_item.rankingFrame:nth-of-type(n + 4)::before {
		top: 0;
		left: 2rem;
		bottom: 2rem;
		margin: auto;
		width: 5.5rem;
		height: 5.5rem;
	}

	li.rankingMain_item:nth-of-type(n + 4) .rankingFrame_point {
		position: absolute;
		padding: 0 0 0 .5rem;
		left: 6px;
		bottom: 3rem;
		width: 140px;
		text-align: center;
	}
	
	li.rankingMain_item:nth-of-type(1) .rankingFrame_book,
	li.rankingMain_item:nth-of-type(2) .rankingFrame_book,
	li.rankingMain_item:nth-of-type(3) .rankingFrame_book {
		height: calc(100% - 2.5rem)
	}
	li.rankingMain_item:nth-of-type(n + 4) .rankingFrame_book {
		padding-left: 140px
	}
	
	li.rankingMain_item:nth-of-type(1) .bookSlider_coverLink,
	li.rankingMain_item:nth-of-type(2) .bookSlider_coverLink,
	li.rankingMain_item:nth-of-type(3) .bookSlider_coverLink {
		display: block;
		margin: 0 auto 1rem;
		padding-bottom: 90%;
		width: 75%;
	}
	li.rankingMain_item:nth-of-type(1) .bookSlider_info,
	li.rankingMain_item:nth-of-type(2) .bookSlider_info,
	li.rankingMain_item:nth-of-type(3) .bookSlider_info {
		display: block;
		margin: auto;
		padding: 0;
		width: 100%;
		min-height: 0;
	}
	.rankingMain_item .bookSlider_info {
		width: 650px;
	}
	li.rankingMain_item:nth-of-type(1) .bookSlider_author,
	li.rankingMain_item:nth-of-type(2) .bookSlider_author,
	li.rankingMain_item:nth-of-type(3) .bookSlider_author {
		font-size: 1rem;
	}
}
/* ------------------------------------------------
固定ページ
------------------------------------------------ */
.pageFixed {
	position: relative;
	margin: auto;
	padding: 0 0 1rem;
	max-width: 1300px;
}
.pageFixed-noPadding {
	padding: 0;
}
.pageFixed_content {
	position: relative;
	margin: auto;
	padding: 1rem 0;
	width: 90%;
}

/* ------------------------------------------------
ショートコード
------------------------------------------------ */
.bookItem .bookSlider_item {
	float: right;
	min-width: 130px;
}
.bookItem .button::after {
	content: none;
}
.bookItem .button::before {
	right: .6em;
}
.bookItem .bookSlider_genre {
	margin-bottom: .5rem;
}
/* ------------------------------------
404ページ
------------------------------------*/
#error {
	background-image: url(./images/bg_404_left.png), url(./images/bg_404_right.png), url(./images/bg_404.png);
	background-repeat: no-repeat, no-repeat, repeat;
	background-position: left bottom, right bottom, left top;
	background-size: 50%, 50%, auto;
	text-align: center;
	padding: 40px 0 220px 0;
}
#error .error_title {
	font-size: 6vw;
	font-weight: bold;
	color: #fff;
}
#error .error_en{
	font-size:1.8em;
	color:#fff;
}
#error .error_text {
	width: 90%;
	margin: 40px auto;
	padding-top: 30px;
	border-top: 1px solid #98d7ef;
	font-size: 1.0em;
	line-height: 1.5;
	color:#fff;
}
#error .error_text br{
	display:none;
}
#error .erro_button {
	padding: 12px 80px;
	border: 3px solid #fff;
}

@media screen and (min-width:750px) {
	#error {
		background-size: 359px, 376px, auto;
		padding: 75px 0 350px 0;
	}
	#error .error_title {
		font-size: 1.8em;
	}
	#error .error_en{
		font-size:2.5em;
		color:#fff;
	}
	#error .error_text {
		width: 90%;
		padding-top: 50px;
		font-size: 1.0em;
		line-height: 1.8;
	}
	#error .error_text br{
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
	#error .erro_button {
		padding: 12px 140px;
	}
}

@media screen and (min-width:1024px) {
	#error {
		padding: 75px 0 200px 0;
	}
	#error .error_title {
		font-size: 2.8em;
	}
	#error .error_text {
		width: 700px;
		margin: 30px auto 50px auto;
		font-size: 1.2em;
		line-height: 1.8;
	}
}
