/*
 * base css 
 * pc width 1000px fixed
 */

@media (max-width: 599px) {
} /* end -599 */

@media (min-width: 600px) and (max-width:959px) {
} /* end 600-959 */

@media (min-width: 960px) {
} /* 960- */


/* ---------------------------------------- common */

strong { font-weight: bold; }
#editors h5 { font-weight: bold; }

:root {
	--text-base: #000;
	--blue-color: #3796bb; /* 1e73be */
	--green-color: #44b3ae;
	--green-color-hover: #269c97;
	--light-green: #f5fafa;
	--gray-color: #ccc;
	--copyright-blue : #2c7896;
}　/*71ad46　578234　3796bb*/

/* scaleup */
a.scaleup {
	display: block;
	overflow: hidden;
}
a.scaleup img {
	width: 100%;
	height: auto;
	-webkit-transition: transform 0.75s ease;
	-moz-transition: transform 0.75s ease;
	transition: transform 0.75s ease;
}
a.scaleup:hover img {
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-ms-transform: scale(1.2);
	-o-transform: scale(1.2);
	transform: scale(1.2);
}

/* bluelink */
a.bluelink {
	color: #fff;
	background: #3796bb;
	-webkit-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}
a.bluelink:hover {
	color: #fff;
	background: #3796bb; 
}/*1e73be*/

/* design_button */
.design_button a {
	display: inline-block;
	min-width: 220px;
	height: 55px;
	color: #fff;
	background: var(--green-color);
	font-size: clamp(1.2rem, 1vw + 0.5rem, 1.4rem);
	text-align: center;
	line-height: 55px;
	padding: 0 20px;
	border-radius: 8px;
}
.design_button a:hover {
    background: var(--green-color-hover);
}

@media screen and (max-width:650px) {
	.design_button a {
		min-width:180px; 
		height:45px; 
		line-height:45px;
	}
}

/* banner list (recruit) */
.banner_list {
	display: grid;
	grid-auto-flow: column; /* PCでは横方向に並べる */
	grid-auto-columns: auto; /* 子要素の幅は中身に依存 */
	gap: 0.5em;
	justify-content: center;
	align-items: center;
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
	overflow-x: auto; /* 要素が多いときは横スクロール */
}
.banner_list_item {
	display: flex;
	justify-content: center;
	align-items: center;
}
@media (max-width: 599px) {
	.banner_list {
		grid-auto-flow: row;
		grid-template-columns: repeat(1, 1fr); /* スマホ：1列 */
	}
}
@media (min-width: 600px) and (max-width:959px) {
	.banner_list {
		grid-auto-flow: row;
		grid-template-columns: repeat(2, 1fr); /* タブレット：2列 */
	}
}
.banner_single { 
	margin: 2em auto;
	text-align: center;
}

/* manga banner */
.link-bnr_manga-recruit {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 224px;
	height: 74px;
	color: #fff;
	background-color: #436694;
	box-shadow: 1px 1px 5px rgba(0,0,0,0.4);
	box-sizing: border-box;
	text-decoration: none;
}
.link-bnr_manga-recruit .icon-group {
	position: relative;
	display: inline-block;
	width: 26px;
	height: 26px;
	margin-right: 0.3em;
}
.link-bnr_manga-recruit .fa-book {
	position: absolute;
	left: 0;
	top: 6px;
	font-size: 20px;
}
.link-bnr_manga-recruit .fa-commenting-o {
	position: absolute;
	top: -12px;
	right: -9px;
	font-size: 18px;
}
.link-bnr_manga-recruit .text {
	font-size: 17px;
	font-weight: bold;
	margin-left: 0.25em;
}
