@charset "utf-8";
:root{
	--text-color: #333333;
	--main-color: #00008b;
	--bg-color: #f2f4f5;

	--font-main-size: 16px;
	--font-menu-size: 16px;
}
html{
	scroll-behavior: smooth;
}
body{
    font-size: var(--font-main-size);
	line-height: 1.8;
	font-family: 'Noto Sans JP', 'メイリオ', 'Meiryo','ＭＳ ゴシック','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;
	color: var(--text-color);
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	font-feature-settings: "palt" 1;
	height: 100vh;
}
img{
	max-width: 100%;
	height: auto;
	vertical-align: top;
}
a{
	color: var(--main-color);
	transition: opacity 0.5s ease;
	text-decoration: none;
	cursor: pointer;
}
a:hover{
	text-decoration: none;
}
b, strong{
	font-weight: bold;
}
input:focus{
	outline: none;
}
h1,h2,h3,h4,p{
	word-break: break-all;
}
.fontL{
	font-weight: 900;
}
.fontB{
	font-weight: 700;
}
.fontS{
	font-weight: 300;
}
/* slick */
.slick-slider{
    opacity: 0;
    transition: 2s;
}
.slick-initialized{
    opacity: 1!important;
}
/* arrow */
.arrow{
	position: relative;
	display: inline-block;
	padding: 0 0 0 0;
	vertical-align: middle;
	text-decoration: none;
	font-size: 14px;
}
.arrow::after{
	position: absolute;
	top: 0;
	bottom: 0;
	right: 5px;
	margin: auto;
	content: "";
	vertical-align: middle;
	width: 7px;
	height: 7px;
	border-top: 1px solid var(--main-color);
	border-right: 1px solid var(--main-color);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
/* slide-arrow */
.prev-arrow,
.next-arrow {
    display: block;
    width: 40px;
    height: 40px;
	background-color: #FFFFFF;
    border: 2px solid var(--main-color);
    border-radius: 50%;
    transition: all .3s ease;
    cursor: pointer;
    position:relative;
}
.prev-arrow {
    transform: rotate(180deg);
}
.prev-arrow::before,
.next-arrow::before{
    position:absolute;
    content: "";
    width:10px;
    height:10px;
    border-right: 2px solid var(--main-color);
    border-top: 2px solid var(--main-color);
    top:0;
    bottom:0;
    left:-3px;
    right:0;
    margin:auto;
    transform:rotate(45deg);
}
/* spMenu */
#spMenu{
	position: fixed;
	z-index : 999;
	top: 0;
	left: 0;
	color: #FFFFFF;
	background-color: rgba(0,0,139,0.9);
	text-align: center;
	width: 100%;
	height: 100vh;
	height: 100dvh;
	overflow-y: auto;
	overflow-x: hidden;
	-webkit-overflow-scrolling: touch;
	pointer-events: none;
	display: none;
}
#spMenu .navMenu{
	margin: 100px auto 0;
	width: min(80%,800px);
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
    margin-right: auto;
    margin-left: auto;
}
#spMenu .navMenu li{
	padding: 0;
	margin: 0;
	border-bottom: dotted 1px #FFFFFF;
	transition: all 0.5s ease;
}
#spMenu .navMenu li a{
	color: #FFFFFF;
	display: block;
	padding: 1em 0.5em;
	text-align: left;
	position: relative;
}
#spMenu .navMenu li a::after{
	position: absolute;
	top: 0;
	bottom: 0;
	right: 20px;
	margin: auto;
	content: "";
	vertical-align: middle;
	width: 8px;
	height: 8px;
	border-top: 2px solid #FFFFFF;
	border-right: 2px solid #FFFFFF;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
#spMenu .navMenu li a::before{
	position: absolute;
	left: 0;
	content: '';
	width: 100%;
	height: 1px;
	background: #FFFFFF;
	bottom: -1px;
	transform: scale(0, 1);
	transform-origin: left top;
	transition: transform 0.3s; 
}
#spMenu .navMenu li a:hover::before{
	transform: scale(1, 1);
}
#spMenu .subMenu{
	margin: 50px auto 0;
	width: min(80%,800px);
    display: flex;
	justify-content: center;
}
#spMenu .subMenu li{
	margin: 20px;
}
#spMenu .subMenu li a{
	color: #FFFFFF;
}
#spMenu .close{
	margin: 30px auto;
	padding: 15px;
	cursor: pointer;
	border:solid 1px #FFFFFF;
	width: min(80%,800px);
}
#spMenu .close span{
	position: relative;
}
#spMenu .close span::before{
	content: '';
	position: absolute;
	display: block;
    width: 12px;
    height: 2px;
	top: 50%;
	left: -24px;
	transform: rotate(-45deg);
    background-color: #FFFFFF;
}
#spMenu .close span::after{
	content: '';
	position: absolute;
	display: block;
    width: 12px;
    height: 2px;
	top: 50%;
	left: -24px;
	transform: rotate(45deg);
    background-color: #FFFFFF;
}
#spMenu.active{
	pointer-events: auto;
}
/* menuBtn */
#menuBtn{
	position: fixed;
	right: 20px;
	top: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	cursor: pointer;
	border-radius: 25px;
	background-color: #333333;
	z-index: 999;
}
#menuBtn span{
	position: relative;
	display: block;
    width: 26px;
    height: 2px;
    background-color: #FFFFFF;
}
#menuBtn span::before{
	content: '';
	position: absolute;
	display: block;
    width: 26px;
    height: 2px;
	top: -8px;
    background-color: #FFFFFF;
	transition: all 0.5s ease;
}
#menuBtn span::after{
	content: '';
	position: absolute;
	display: block;
    width: 26px;
    height: 2px;
	top: 8px;
    background-color: #FFFFFF;
	transition: all 0.5s ease;
}
#menuBtn.active span{
    background-color: transparent;
}
#menuBtn.active span::before{
    top: 0;
	background: var(--main-color);
    transform: rotate(-45deg);
}
#menuBtn.active span::after{
    top: 0;
	background: var(--main-color);
    transform: rotate(45deg);
}
#menuBtn.active{
	background-color: #FFFFFF;
}
/* post */
#news #detailBody p{
	margin-bottom: 1em;
}
#book #intro .txt a,
#news #detailBody a{
	color: var(--main-color);
	text-decoration: underline;
}
#book #intro .txt a:hover,
#news #detailBody a:hover{
	text-decoration: none;
}
#book #intro .txt .aligncenter,
#news #detailBody .aligncenter{
	display: block;
	margin-left: auto;
	margin-right: auto;
}
/* header */
#header{
	width: 100%;
	height: 90px;
	padding: 15px 70px 15px 15px;
	font-size: var(--font-menu-size);
	background: #FFFFFF;
	position: fixed;
	display: flex;
	align-items: center;
	z-index: 1;
}
#header .wrapper{
	width: 100%;
	margin: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#header .headerLeft{
	display: flex;
	align-items: center;
}
#header .mainLogo{
}
#header .mainLogo img{
	transition: all 0.5s ease;
}
#header .headerRight{
	display: flex;
	align-items: center;
}
#header .headerRight .menuList{
	display: flex;
	align-items: center;
}
#header .headerRight .menuList li{
	margin: 0 1em;
}
#header .headerRight .menuList li.contact{
}
#header .headerRight .menuList li.contact a{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 180px;
	height: 50px;
	line-height: 1;
	border: solid 2px;
	border-radius: 25px;
	text-align: center;
}
/* breadcrumb */
#breadcrumb{
	padding-top: 90px;
	background-color: var(--bg-color);
}
#breadcrumb a{
	color: var(--text-color);
}
#breadcrumb ul{
	margin: 0 auto;
	padding: 40px 20px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	font-size: 12px;
}
#breadcrumb ul li{
	margin-right: 2em;
	position: relative;
}
#breadcrumb ul li::after{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: -1em;
	margin: auto;
	vertical-align: middle;
	width: 5px;
	height: 5px;
	border-top: 1px solid var(--text-color);
	border-right: 1px solid var(--text-color);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
#breadcrumb ul li:last-child::after{
	display: none;
	margin-right: 0;
}
/* pager */
.pager span,
.pager a{
	font-size: 14px;
	color: #CCCCCC;
	display: inline-block;
	line-height: 38px;
	width: 40px;
	border-radius: 20px;
	border: solid 1px;
	text-align: center;
	margin: 2px;
}
.pager .extend{
	border: none;
	width: auto;
}
.pager .wp-pagenavi{
	text-align: right;
}
.pager .current,
.pager a.nextpostslink,
.pager a.prevpostslink,
.pager a:hover{
	color: var(--main-color);
}
/* booksearch */
#booksearch{
	max-width: 1220px;
	width: 100%;
	margin: 30px auto 0;
	padding: 0 10px;
}
#booksearch dl{
	background-color: var(--main-color);
	border-radius: 5px;
	height: 80px;
	padding: 0 20px;
	display: flex;
	align-items: center;
}
#booksearch dt{
	color: #FFFFFF;
	font-size: 18px;
	padding-right:20px;
	flex-shrink: 0;
	width: 200px;
	text-align: center;
}
#booksearch dd{
	display: flex;
	justify-content: space-between;
	width: 100%;
}
#booksearch form{
	display: block;
	width: calc(100% - 300px);
	padding-right: 20px;
}
#booksearch .searchForm{
	background: #FFFFFF;
	border-radius: 5px;
	height: 45px;
	font-size: 16px;
	line-height: 45px;
	padding: 0 50px 0 1em;
	position: relative;
}
#booksearch .searchBox{
	width: 100%;
}
#booksearch .searchBtn{
	position: absolute;
	width: 23px;
	height: 23px;
	background: url("../images/icon_search.svg") no-repeat;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
}
#booksearch .genreSearch{
	color: var(--main-color);
	background: #e5f3fa;
	border-radius: 22.5px;
	width: 300px;
	height: 45px;
	font-size: 16px;
	line-height: 45px;
	padding: 0 20px;
	position: relative;
	text-align: center;
	cursor: pointer;
}
#booksearch .genreSearch span{
	position: relative;
	padding-left: 24px;
}
#booksearch .genreSearch span::before{
	content: '';
	position: absolute;
	width: 16px;
	height: 16px;
	background: url("../images/icon_genre.svg") no-repeat;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}
/* booksearchMenu */
#booksearchMenu{
	position: fixed;
	z-index : 99999;
	top: 0;
	left: 0;
	color: #FFFFFF;
	background-color: rgba(0,0,0,0.6);
	text-align: center;
	width: 100%;
	height: 100vh;
	height: 100dvh;
	overflow-y: auto;
	overflow-x: hidden;
	-webkit-overflow-scrolling: touch;
	display: none;
}
#booksearchMenu .container{
	background-color: #FFFFFF;
	margin: 80px auto;
	max-width: 1200px;
	width: 80%;
	border-radius: 10px;
	padding: 50px;
	position: relative;
}
#booksearchMenu .close{
	position: absolute;
	right: -60px;
	top: 0px;
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	cursor: pointer;
}
#booksearchMenu .close span{
	position: relative;
	display: block;
	width: 5px;
}
#booksearchMenu .close span::before,
#booksearchMenu .close span::after{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 5px;
	height: 50px;
	background: #FFFFFF;
}
#booksearchMenu .close span::before{
	transform: rotate(45deg);
}
#booksearchMenu .close span::after{
	transform: rotate(-45deg);
}
#booksearchMenu .menuWrap{
	display: grid;
	grid-auto-flow: column;
	grid-template: repeat(5, auto) / repeat(2, 1fr);
	gap: 10px;
}
#booksearchMenu .menuGenre{
	width: 100%;
}
#booksearchMenu .menuGenre dt{
	margin-bottom: 10px;
}
#booksearchMenu .menuGenre dt a{
	display: block;
	width: 15em;
	background-color: #e5f3fa;
	border:solid 1px var(--main-color);
	font-size: 14px;
	line-height: 32px;
	border-radius: 16px;
	color: var(--main-color);
}
#booksearchMenu .menuGenre dt span{
	position: relative;
}
#booksearchMenu .menuGenre dt span::before{
	content: '';
	position: absolute;
	top: 50%;
	left: -20px;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
	border-left: 8px solid var(--main-color);
	border-right: 0;
}
#booksearchMenu .menuGenre dd{
}
#booksearchMenu .menuGenre .menuList{
	text-align: left;
}
#booksearchMenu .menuGenre .menuList li{
	display: inline-block;
	font-size: 14px;
	margin: 0 10px 0 0;
	width: auto;
}
#booksearchMenu .menuGenre .menuList li a{
	color: var(--main-color);
}
/* main */
#main{
}
#main .mainWrap{
	max-width: 1220px;
	margin: 30px auto 0 auto;
	padding: 0 10px;
}

/* pagetop */
#pagetop{
    position: fixed;
    right: 20px;
    bottom: 20px;
    margin: 0;
	z-index: 1;
	opacity: 0.9;
}
#pagetop a{
	position: relative;
	display: block;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: #FFFFFF;
	border: solid 2px var(--main-color);
}
#pagetop a::before{
	content: '';
	width: 12px;
	height: 12px;
	border-top: solid 2px var(--main-color);
	border-right: solid 2px var(--main-color);
	position: absolute;
	left: 50%;
	top: 50%;
	transform: rotate(-45deg);
	margin-top: -5px;
	margin-left: -6px; 
}
/* footer */
#footer{
	margin: 150px auto 0;
	padding: 60px 0 0 0;
	border-top: 1px solid #e9e6e6;
	position: relative;
	transition: all 0.5s ease;
}
#footer .add{
	margin: 0 50px;
	padding-right: 650px;
	display: flex;
	align-items: center;
	line-height: 1;
}
#footer .add dt{
	flex-shrink: 0;
}
#footer .add dd{
	margin-left: 20px;
	font-size: 14px;
	line-height: 1.4;
}
#footer .banner{
	margin: 40px 50px 0 50px;
	display: flex;
	flex-wrap: wrap;
}
#footer .banner li{
	max-width: 240px;
	margin: 10px 10px 0 0;
}
#footer .contact{
	position: absolute;
	top:-30px;
	right: 50px;
}
#footer .contact p{
	display: flex;
	align-items: center;
	padding: 0 30px;
	width: 600px;
	height: 120px;
	background-color: #FFFFFF;
	border: 2px solid var(--main-color);
	border-radius: 10px;
	color: var(--main-color);
	line-height: 1;
	position: relative;
}
#footer .contact p::before{
	content: '';
	position: absolute;
	display: block;
	height: 32px;
	width: 32px;
	border-radius: 50%;
	background-color: var(--main-color);
	right: 50px;
	top:50%;
	margin-top: -16px;
}
#footer .contact p::after{
	content: '';
	width: 12px;
	height: 12px;
	border-top: solid 3px #FFFFFF;
	border-right: solid 3px #FFFFFF;
	position: absolute;
	transform: rotate(45deg);
	right: 62px;
	top:50%;
	margin-top: -6px;
}
#footer .contact p .main{
	font-size: 28px;
	margin-right: 20px;
}
#footer .contact p .sub{
	font-size: 16px;
}
#footer .wrapper{
	margin: 50px auto 0;
	padding: 50px;
	display: flex;
	width: 100%;
	color: #FFFFFF;
	background: var(--main-color);
	justify-content: space-between;
	align-items: center;
}
#footer .linkWrap{
	display: flex;
	align-items: center;
}
#footer .footerLink{
	display: flex;
	font-size: 14px;
	line-height: 1;
}
#footer .footerLink li{
	margin: 10px;
}
#footer .footerLink a{
	color: #FFFFFF;
}
#footer .footerSns{
	display: flex;
	margin-left: 20px;
}
#footer .footerSns li{
	margin: 10px;
}
#footer .copyright{
	font-size: 10px;
}

@media screen and (max-width:1200px) {
	/* footer */
	#footer .add{
		padding-right: 520px;
	}
	#footer .contact p{
		width: 500px;
	}
}
@media screen and (max-width:1000px) {
	:root{
		--font-main-size: 14px;
		--font-menu-size: 12px;
	}
	/* slide-arrow */
	.prev-arrow,
	.next-arrow {
		width: 30px;
		height: 30px;
	}
	/* menuBtn */
	#menuBtn{
		right: 10px;
		top: 10px;
		width: 40px;
		height: 40px;
		border-radius: 20px;
	}
	#menuBtn span{
		width: 16px;
	}
	#menuBtn span::before{
		width: 16px;
		top: -6px;
	}
	#menuBtn span::after{
		width: 16px;
		top: 6px;
	}
	/* header */
	#header{
		height: 60px;
		padding: 10px 60px 10px 10px;
	}
	#header .mainLogo img{
		width: 80px;
	}
	#header .headerRight{
		display: none;
	}
	/* breadcrumb */
	#breadcrumb{
		padding-top: 60px;
	}
	#breadcrumb ul{
		padding: 10px 20px;
	}
/* pager */
.pager span,
.pager a{
	font-size: 12px;
	color: #CCCCCC;
	display: inline-block;
	line-height: 28px;
	width: 30px;
	border-radius: 20px;
	border: solid 1px;
	text-align: center;
	margin: 2px;
}
.pager .current,
.pager a.nextpostslink,
.pager a.prevpostslink,
.pager a:hover{
	color: var(--main-color);
}
	/* booksearch */
	#booksearch{
		margin: 0;
		padding: 0;
	}
	#booksearch dl{
		border-radius: 0;
		padding: 0 10px;
		height: 70px;
	}
	#booksearch dt{
		display: none;
	}
	#booksearch dd{
		align-items: center;
		height: 70px;
	}
	#booksearch form{
		width: calc(100% - 180px);
		padding-right: 10px;
	}
	#booksearch .searchForm{
		font-size: 12px;
	}
	#booksearch .searchBox{
		width: 100%;
	}
	#booksearch .genreSearch{
		width: 180px;
		font-size: 12px;
	}
	/* booksearchMenu */
	#booksearchMenu .container{
		background-color: #FFFFFF;
		margin: 60px auto;
		width: 80%;
		padding: 20px;
	}
	#booksearchMenu .close{
		position: fixed;
		right: 15px;
		top: 15px;
		width: 30px;
		height: 30px;
	}
	#booksearchMenu .close span::before,
	#booksearchMenu .close span::after{
		height: 30px;
	}
	#booksearchMenu .menuWrap{
		display: flex;
		flex-direction: column;
	}
	#booksearchMenu .menuGenre{
		width: 100%;
	}
	#booksearchMenu .menuGenre dt a{
		width: 100%;
	}
	/* pagetop */
	#pagetop{
		right: 10px;
		bottom: 10px;
	}
	#pagetop a{
		width: 40px;
		height: 40px;
	}
	/* footer */
	#footer{
		margin: 100px auto 0;
		padding: 30px 0 0 0;
	}
	#footer .add{
		margin: 0 10px;
		padding-right: 0;
	}
	#footer .add dt img{
		width: 80px;
	}
	#footer .add dd{
		margin-left: 10px;
		font-size: 12px;
	}
	#footer .banner{
		margin: 20px 0 0 10px;
		margin-right: calc( 10px - 1%);
	}
	#footer .banner li{
		max-width: 49%;
		margin: 1% 1% 0 0;
	}
	#footer .contact{
		margin: 20px 10px 0 10px;
		position: static;
	}
	#footer .contact p{
		flex-direction: column;
		justify-content: center;
		align-items: flex-start;
		padding: 20px 60px 20px 20px;
		width: 100%;
		height: auto;
	}
	#footer .contact p::before{
		right: 20px;
	}
	#footer .contact p::after{
		right: 32px;
	}
	#footer .contact p .main{
		font-size: 20px;
		margin-right: 0;
	}
	#footer .contact p .sub{
		margin-top: 5px;
		font-size: 14px;
	}
	#footer .wrapper{
		margin: 20px auto 0;
		padding: 20px 10px;
		flex-direction: column;
	}
	#footer .linkWrap{
		flex-direction: column;
	}
	#footer .footerLink{
		flex-wrap: wrap;
		font-size: 12px;
	}
	#footer .footerLink li{
		margin: 5px 10px;
	}
	#footer .footerSns{
		margin-left: 0;
		margin-top: 5px;
	}
}
@media screen and (max-width:700px) {
	/* spMenu */
	#spMenu .navMenu{
		grid-template-columns: repeat(1,1fr);
		gap: 10px;
	}
	#spMenu .subMenu{
		display: flex;
		flex-direction: column;
	}
	#spMenu .subMenu li{
		text-align: left;
		margin: 10px;
	}
	#spMenu .subMenu li a{
		display: block;
	}
}