@charset "UTF-8";
/* CSS Document */

/* グローバル変数 */
:root {
	--color-brown: #602426;
	--color-green-alpha: rgba(44,217,202,0.7);
	--color-blue-alpha: rgba(66,169,255,0.7);
	--color-pink-alpha:rgba(255,114,192,0.7);
}

/* common */
html {
	font-size: 16px;
}
body {
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	height: 100vh;
	text-align: center;
	line-height: 1.6;
	color: #1F1F1F;
	background-color: #FFFFFF;
	background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url("../img/bg.png");
	background-repeat: repeat-y;
	background-size: 100vw auto;
	background-position: center 60px;
}
a {
	display: block;
}
a:hover {
    opacity: 0.7;
	transition: opacity .3s;
}
img {
	max-width: 100%;
	height: auto;
	object-fit: contain;
	image-rendering: -webkit-optimize-contrast;
	vertical-align: bottom;
	display: block;
	margin: 0 auto;
}
span {
	font-weight: 600;
	font-size: 1.2rem;
}

/* SPで表示、PCで非表示 */
.display_sp {
	display: block;
}
.display_pc {
	display: none;
}

/* header */
/* SP版メニュー */
.header_pc {
    display: none;
}
.header_sp {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: fixed;
    top: 0;
    z-index: 10;
    font-weight: 600;
}
.nav_sp_btn {
	position:fixed;
	z-index: 1000;
	top: 0.5rem;
	right: 0.5rem;
	cursor: pointer;
	width: 48px;
	height: 48px;
	background-image: url("../img/btn_menu.png");
	background-size: contain;
	background-repeat: no-repeat;
}
.nav_sp_btn.close {
	background-image: url("../img/btn_close.png");
}
.nav_sp {
	font-size: 2rem;
    width: 0;
    position: absolute;
    z-index: 2;
    right: 0;
    transition: 0.3s;
	display: block;
	height: 100vh;
	padding-top: 6rem;
	background: rgba(96,36,38,0.9);
}
.nav_sp li {
	padding: 0.5rem 1rem;
	text-align: center;
	color: #FFFFFF;
}
.nav_sp.open_menu {
    width: 100%;
}

/* コンテンツ */
section {
	margin-top: 6rem;
	padding: 2rem 4%;
}
#story {
	margin-top: 0;
}
.bg_green {
	background-color: var(--color-green-alpha);
}
.bg_pink {
	background-color: var(--color-pink-alpha);
}
.bg_blue {
	background-color: var(--color-blue-alpha);
}
.container {
	max-width: 980px;
	margin: 0 auto;
	padding: 0 1rem;
	display: flex;
	flex-direction: column;
	align-items: center;
}
h2 {
	max-width: 600px;
	margin: 0px auto 2rem;
}
h3 {
	font-weight: 600;
	font-size: 1.2rem;
	margin: 2rem auto 0.5rem;
	line-height: 1.3;
}
.box_white {
	background-color: rgba(255,255,255,0.8);
	padding: 1rem;
}
.btn {
	max-width: 280px;
	margin: 2rem auto 0;
}

/* STORY */
.txt_mincho {
	font-family: "Noto Serif JP", serif;
	font-weight: 900;
	font-size: 1.2rem;
}
.txt_pink {
	font-weight: 600;
	font-size: 1.2rem;
	color: #ff58b5;
}
.txt_blue {
	font-family: "Noto Serif JP", serif;
	font-weight: 900;
	font-size: 1.2rem;
	color: #289dff;
}
.img_author {
	max-width: 10rem;
	margin-top: 1rem;
}

/* DRAMA */
#drama h2 {
	margin-bottom: 1rem;
}
.img_drama {
	max-width: 480px;
	margin: 0 auto 1rem;
}
.img_drama img {
	border: 2px solid var(--color-brown);
}

/* ANIMATION */
#animation h2 {
	margin-bottom: 1rem;
}
.img_animation {
	max-width: 600px;
	margin: 0 auto 1rem;
}
.img_animation img {
	border: 2px solid var(--color-brown);
}

/* CHARACTER */
/* ページネーションは「slick-theme.css」で設定 */
.carousel_area {
	width: 100%;
	overflow: hidden;
	position: relative;
	margin: 0 auto;
}
.carousel_inner {
	margin: 0 auto 2rem;
}
.mypattern {
	padding: 0 2rem;
}
.slick-slide div {
	vertical-align: top;
}
.slick-slide img {
	width: 100%;
	vertical-align: top;
}

/* スライド間の余白 */
.slick-slide {
	margin: 0 0.8rem;
}

/* 矢印 */
.slick-prev:before, .slick-next:before {
	display: none;
}
.slick-prev, 
.slick-prev:hover {
	left: 0;
    width: 2rem;
    height: 2rem;
	background: url('../img/caret-left-solid.png') no-repeat center / contain;
	z-index: 2;
}
.slick-next, 
.slick-next:hover {
	right: 0;
    width: 2rem;
    height: 2rem;
	background: url('../img/caret-right-solid.png') no-repeat center / contain;
	z-index: 2;
}
.slick-prev:hover,
.slick-next:hover {
	opacity: 0.8;
}

/* COMICS */
.cover {
	width: 100%;
	max-width: 280px;
	margin: 0 auto;
}
.cover > img {
	border: 2px solid var(--color-brown);
}
.book_list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
	grid-gap: 2rem;
}
.book_list .btn {
	margin-top: 1rem;
}

/* NEWSPAPER */
.img_newspaper {
	max-width: 400px;
	margin: 1rem auto;
}
.img_newspaper img {
	border: 2px solid var(--color-brown);
}

/* OTHERS */
.img_others {
	max-width: 600px;
	margin: 0 auto 1rem;
}
.img_others img, .sample_list img {
	border: 2px solid var(--color-brown);
}
.sample_list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
	grid-gap: 1.5rem;
	margin: 1rem auto 2rem;
}

/* バナーリスト */
.bnr_list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	margin: 6rem auto 0;
}
.bnr_list li {
	padding: 1rem;
}
.bnr_list img {
	height: 4rem;
}

/* footer */
footer {
	padding: 1rem;
}
.footer_menu {
	font-weight: 600;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	margin: 1rem auto 4rem;
}
.footer_menu li {
	margin: 0.5rem auto;
}
.copyright {
	font-size: 0.7rem;
}
.sns_list {
	display: flex;
	justify-content: center;
	margin: 2rem auto 0;
}
.sns_list li {
	width: 2.25rem;
	margin: 0 1rem;
}

/* ページトップに戻るボタン */
#to_top {
    display: none;
    position: fixed;
    right: 15px;
    bottom: 15px;
}
#to_top a{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: var(--color-brown);
	opacity: 0.8;
}
#to_top a::after {
	content: '';
	width: 16px;
	height: 16px;
	margin-top: 6px;
	border-top: 4px solid #FFFFFF;
	border-right: 4px solid #FFFFFF;
	transform: rotate(-45deg);
}



/* for TB, PC */
@media (min-width: 768px),print {
	
	/* common */
	html {
		font-size: 18px;
	}

	/* コンテンツ */
	.bg {	
		padding: 60px 0 3rem;
	}
	
	/* STORY */
	.txt_mincho {
		font-size: 1.5rem;
	}
	.txt_blue {
		font-size: 1.5rem;
	}
	
	/* COMICS */
	.book_list {
		grid-template-columns: repeat(4, 1fr);
		gap: 2.5rem;
		grid-gap: 2.5rem;
	}
	
	/* OTHERS */
	.sample_list {
		grid-template-columns: repeat(3, 1fr);
	}
	
	/* バナーリスト */
	.bnr_list {
/*		margin: 200px auto 0;*/
	}

	/* footer */
	.footer_menu {
		flex-direction: row;
	}
	.footer_menu li {
		margin: 1rem;
	}
}


/* for PC */
@media (min-width: 1024px),print {
	
	/* SPで非表示、PCで表示 */
	.display_sp {
		display: none;
	}
	.display_pc {
		display: block;
	}
	
	/* PC版メニュー */
    .header_pc {
        height: 60px;
        width: 100%;
        display: flex;
        align-items: center;
        background-color: #FFFFFF;
        position: fixed;
        top: 0;
        z-index: 10;
        cursor: pointer;
        font-weight: 600;
        box-shadow: 0 2px 4px rgba(96,36,38,0.8);
    }
    .header_sp {
        display: none;
    }
    .header_wrap {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 0 auto;
        padding: 0 1rem;
        width: 100%;
        max-width: 1020px;
    }
    .nav_pc_wrap {
        flex-grow: 1;
    }
    .nav_pc {
        display: flex;
        justify-content: space-around;
        transition: 0.3s;
        color: var(--color-brown);
    }
    .nav_pc li {
        margin: 0 1rem;
    }
	
	/* メインビジュアル */
	#mv {
		margin: 60px auto 0;
	}
	
}
