@charset "utf-8";

/* common
-------------------------------------------------------*/
#wrapper {
	overflow: hidden;
}
.en {
	font-family: 'Manrope', sans-serif;
	font-weight: 800;
}
.serif {
	font-family: 'Noto Serif JP', serif;
}
.orange {
	color: #d85441;
}
.sp {
	display: none;
}
.area {
	padding: 70px 20px 0;
	box-sizing: border-box;
}
.inner {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	box-sizing: border-box;
}
.ttl01 {
	text-align: center;
	color: #d85441;
	font-size: 4rem;
	margin: 0 0 70px;
	font-weight: 700;
}
.ttl02 {
	text-align: center;
	color: #f00;
	font-size: 2.5rem;
	margin: 0 0 70px;
	font-weight: 700;
}
@media screen and (max-width:768px) {
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
	.area {
		padding: 40px 20px 0;
	}
	.inner {
		max-width: 100%;
	}
	.ttl01 {
		font-size: 2.3rem;
		margin: 0 0 40px;
	}
	.ttl02 {
		font-size: 2.3rem;
		margin: 0 0 40px;
	}
}


/* visual
-------------------------------------------------------*/
#visual {
	padding: 0;
	height: 700px;
	box-sizing: border-box;
	background: url(../img/visual_bg.png)no-repeat center/cover;
	color: #fff;
}
#visual .visual_cont {
	padding: 170px 40px 260px;
}
#visual .visual_logo {
	text-align: center;
}
#visual .visual_logo img {
	max-width: 700px;
}
#visual .visual_txt {
	text-align: center;
	font-size: 4.2rem;
	letter-spacing: 0.1em;
}
.visual{
	position: relative;
}
.minimal_link{
	width: 100%;
	position: absolute;
	top: 80%;
	left: 50%;
	transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
	text-align: center;
}
.minimal_link_img img{
	max-width: 554px;
}
.minimal_link a:hover{
	opacity: 1;
}
.minimal_link_sp{
	display: none;
}
@media screen and (max-width:768px) {
	#visual {
		background: url(../img/visual_bg_sp.png)no-repeat center/cover;
		height: 583px;
	}
	#visual .visual_cont {
		padding: 120px 20px 140px;
	}
	#visual .visual_logo img {
		max-width: 320px;
	}
	#visual .visual_txt {
		font-size: 2rem;
	}
	.minimal_link{
		display: none;
	}
	.minimal_link_sp{
		display: block;
	}
	.minimal_link_sp img{
		max-width: 800px;
	}
}

/* header
-------------------------------------------------------*/
#header {
	box-sizing: border-box;
}
#header .inner {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: space-between;
	max-width: 100%;
	padding: 30px;
}
#header .logo a {
	display: block;
}
#header .logo img {
    max-width: 200px;
}
#header.contact_after .inner {
	padding: 30px 30px 0;
}
#header.contact_after a {
	color: #333;
}
#header.contact_after .contact a {
	color: #fff;
}
@media screen and (max-width:1040px) {
	#header .logo img {
		max-width: 190px;
	}
}
@media screen and (max-width:768px) {
	#header {
		text-align: center;
	}
	#header .inner {
		padding: 15px;
		justify-content: center;
	}
	#header .logo img {
		max-width: 200px;
	}
	#header.contact_after .inner {
		padding: 15px 15px 0;
	}
	
	#header .index_logo {
		display: none;
	}
}


/* nav
-------------------------------------------------------*/
#nav_pc ul  {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: flex-end;
}
#nav_pc ul li:not(:last-child) {
	margin-right: 40px;
}
#nav_pc ul li a {
	color: #fff;
	font-size: 1.8rem;
	line-height: 1;
}
#nav_pc ul li.contact a {
	background: #d85441;
	border: 1px solid #fff;
	border-radius: 10px;
	padding: 15px 40px;
}
@media screen and (max-width:1040px) {
	#nav_pc ul li:not(:last-child) {
		margin-right: 25px;
	}
	#nav_pc ul li a {
		font-size: 1.6rem;
	}
	#nav_pc ul li.contact a {
		padding: 10px 25px;
	}
}
@media screen and (max-width:768px) {
	#btn_nav {
		position: fixed;
		top: 14px;
		right: 15px;
		z-index: 999;
		cursor: pointer;
		display: flex;
		flex-flow: column;
		justify-content: space-between;
		height: 18px;
	}
	#btn_nav span {
		display: inline-block;
		background: #d85441;
		width: 25px;
		height: 2px;
		transition: .5s;
		position: relative;
	}
	#btn_nav.active span {
		transform: translateY(9px) rotate(45deg);
		background: #fff;
	}
	#btn_nav.active span:nth-child(2) {
		transform: scaleX(0);
	}
	#btn_nav.active span:last-child {
		transform: translateY(-8px) rotate(-45deg);
	}
	#nav_sp .nav_cont,
	#nav_sp .nav_cont::after {
		position: fixed;
		top: 0;
		height: 100%;
		width: 100%;
		overflow: hidden;
	}
	#nav_sp .nav_cont {
		overflow: auto;
		background: #d85441;
		right: -100%;
		z-index: 998;
		transition: .5s;
		padding: 30px;
		box-sizing: border-box;
	}
	#nav_sp .nav_cont.active {
		right: 0;
	}
	#nav_sp .nav_cont .icon {
		text-align: center;
		margin: 0 0 20px;
	}
	#nav_sp .nav_cont .icon img {
		max-width: 40px;
	}
	#nav_sp .nav_cont a {
		color: #fff;
	}
	#nav_sp .nav_cont li {
		font-size: 1.8rem;
	}
	#nav_sp .nav_cont li:not(:last-child) {
		margin: 0 0 20px;
		border-bottom: 1px solid #fff;
		padding: 0 0 20px;
	}
	#nav_sp .nav_cont li.contact {
		border: 1px solid #fff;
		border-radius: 10px;
		padding: 15px;
	}
}

/* footer
-------------------------------------------------------*/
#footer {
	background: #d85441;
	color: #fff;
}
#footer.area {
	padding: 70px 20px;
}
#footer a {
	color: #fff;
	line-height: 1;
}
#footer .box {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: center;
	margin: 0 0 70px;
}
#footer .logo img {
	max-width: 247px;
}
#footer ul {
	border-left: 1px solid #fff;
	margin-left: 70px;
	padding-left: 40px;
}
#footer ul li a {
	padding: 15px 0;
	display: block;
}
#footer .copy {
	text-align: center;
	font-size: 1.2rem;
	line-height: 1;
}
@media screen and (max-width:768px) {
	#footer.area {
		padding: 40px 20px;
	}
	#footer .box {
		flex-flow: column;
		align-items: center;
		justify-content: center;
		margin: 0 0 30px;
	}
	#footer .logo img {
		max-width: 150px;
	}
	#footer ul {
		border-top: 1px solid #fff;
		border-left: none;
		margin: 20px 0 0;
		padding: 15px 30px 0;
	}
	#footer ul li a {
		padding: 10px 0;
	}
	#footer .copy {
		font-size: 1rem;
	}
}


/* intro
-------------------------------------------------------*/
#intro.area {
	padding: 70px 0;
}
#intro .inner {
	max-width: 940px;
	padding: 0 20px;
}
#intro .icon01 {
	text-align: center;
	margin: 0 0 60px;
}
#intro .icon01 img {
	max-width: 59px;
}
#intro .txt {
	text-align: center;
	font-size: 2rem;
	line-height: 2;
}
#intro .slick {
	margin: 70px 0;
}
#intro .slick li {
	margin: 0 30px;
}
#intro .img {
	margin: 40px 0 0;
	text-align: center
}
#intro .img img {
	max-width: 746px;
}
@media screen and (max-width:768px) {
	#intro.area {
		padding: 40px 0 0;
	}
	#intro .icon01 {
		margin: 0 0 40px;
	}
	#intro .icon01 img {
		max-width: 40px;
	}
	#intro .txt {
		font-size: 1.6rem;
	}
	#intro .slick {
		margin: 40px 0;
	}
	#intro .slick li {
		margin: 0 15px;
	}
	#intro .img {
		margin: 30px 0 0;
	}
}


/* common parts
-------------------------------------------------------*/
.ttl_box {
	margin: 0 0 30px;
}
.ttl_box .ttl_en {
	font-size: 8.6rem;
	padding-left: 130px;
	position: relative;
	line-height: 1;
	margin: 0 0 20px;
	color: #d85441;
}
.ttl_box .ttl_en::before {
	position: absolute;
	display: block;
	content: "";
	left: 0;
	top: 50%;
	transform: translate(0,-50%);
}
.ttl_box .ttl_txt {
	font-size: 6rem;
	font-weight: 700;
}
@media screen and (max-width:768px) {
	.ttl_box {
		margin: 0 0 20px;
	}
	.ttl_box .ttl_en {
		/*font-size: 2.5rem;*/
		font-size: 3.5rem;
		line-height: 1.2;
		padding-left: 70px;
		/*padding-top: 80px;*/
		padding-top: 0px;
		margin: 0 0 10px;
		position: relative;
	}
	.ttl_box .ttl_en::before {
		/*left: 50%;*/
		top: 0;
		/*transform: translate(-50%,0);*/
	}
	.ttl_box .ttl_txt {
		/*font-size: 2.3rem;*/
		font-size: 4rem;
	}
}

.top_box {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: flex-start;
	margin: 0 0 40px;
}
.top_box .icon01 {
	margin: 0 20px 0 0;
}
.top_box .icon01 img {
	max-width: 59px;
}
.top_box .txt {
	font-size: 2rem;
	line-height: 2;
}
@media screen and (max-width:768px) {
	.top_box {
		flex-flow: column;
		align-items: center;
		justify-content: center;
		margin: 0 0 30px;
	}
	.top_box .icon01 {
		margin: 0 0 10px;
	}
	.top_box .icon01 img {
		max-width: 40px;
	}
	.top_box .txt {
		font-size: 1.6rem;
	}
}

.top_video {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: center;
	margin: 0 0 40px;
}
.top_video .video {
	width: 53%;
	margin: 0 30px 0 0;
}
.top_video .video_info {
	
	
	width: 47%;
}
@media screen and (max-width:768px) {
	.top_video {
		flex-flow: column;
		align-items: center;
		justify-content: center;
		margin: 0 0 30px;
	}
	.top_video .video {
		width: 100%;
		margin: 0 0 15px;
	}
	.top_video .video_info {
		width: 100%;
	}
	
}

.video_info dt {
	font-size: 2.4rem;
	margin: 0 0 20px;
}
.video_info dd.txt {
	line-height: 1.8;
	margin: 0 0 20px;
}
@media screen and (max-width:768px) {
	.video_info dt {
		font-size: 2rem;
		margin: 0 0 15px;
	}
	.video_info dd.txt {
		margin: 0 0 15px;
	}
}

.video_list {
	display: flex;
	flex-flow: row wrap;
	align-self: flex-start;
	justify-content: flex-start;
	margin: 0 0 50px;
}
.video_list li {
	width: 18%;
}
.video_list li:not(:last-child) {
	margin: 0 2.5% 0 0;
}
@media screen and (max-width:768px) {
	.video_list {
		margin: 0 0 20px;
	}
	.video_list li {
		width: 30%;
		margin: 0 5% 20px 0;
	}
	.video_list li:not(:last-child) {
		margin: 0 5% 20px 0;
	}
	.video_list li:nth-child(3n) {
		margin: 0 0 20px;
	}
}

.mid_video {
	display: flex;
	flex-flow: row wrap;
	align-items: flex-start;
	justify-content: center;
}
.mid_video li {
	width: 47%;
}
.mid_video li:nth-child(even) {
	margin: 0 0 60px 6%;
}
.mid_video li .video {
	margin: 0 0 20px;
}
@media screen and (max-width:768px) {
	.mid_video {
		flex-flow: column;
		align-items: center;
		justify-content: center;
	}
	.mid_video li {
		width: 100%;
		margin: 0 0 20px;
	}
	.mid_video li:nth-child(even) {
		margin: 0 0 20px;
	}
	.mid_video li .video {
		margin: 0 0 15px;
	}
}


/* radio
-------------------------------------------------------*/
#radio .ttl_box .ttl_en::before {
	background: url(../img/icon02.png)no-repeat left center/108px 108px;
	width: 108px;
	height: 108px;
}
@media screen and (max-width:768px) {
	
	
	
	#radio .ttl_box .ttl_en::before {
		background: url(../img/icon02.png)no-repeat left center/60px 60px;
		width: 60px;
		height: 60px;
		position: absolute;
		left: 0;
		top: 50%;
		
	}
}

/* movie
-------------------------------------------------------*/
#movie .ttl_box .ttl_en::before {
	background: url(../img/icon03.png)no-repeat left center/115px 70px;
	width: 115px;
	height: 70px;
}
@media screen and (max-width:768px) {
	#movie .ttl_box .ttl_en {
		/*padding-top: 60px;*/
		padding-top: 0px;
		padding-left: 75px;
	}
	#movie .ttl_box .ttl_en::before {
		background: url(../img/icon03.png)no-repeat left center/69px 42px;
		width: 69px;
		height: 42px;
		position: absolute;
		left: 0;
		top: 50%;
	}
}

/* song
-------------------------------------------------------*/
#song.area {
	padding: 70px 20px;
}
#song .ttl_box .ttl_en::before {
	background: url(../img/icon04.png)no-repeat left center/98px 94px;
	width: 98px;
	height: 94px;
}
@media screen and (max-width:768px) {
	#song.area {
		padding: 40px 20px 20px;
	}
	#song .ttl_box .ttl_en {
		/*padding-top: 70px;*/
		padding-top: 0px;
	}
	#song .ttl_box .ttl_en::before {
		background: url(../img/icon04.png)no-repeat left center/58px 56px;
		width: 58px;
		height: 56px;
		position: absolute;
		left: 0;
		top: 50%;
	}
}

/* song_lyric
-------------------------------------------------------*/
#song_lyric {
	background: url(../img/bg01.png)no-repeat center/cover;
	text-align: center;
}
#song_lyric.area {
	padding: 70px 20px;
}
#song_lyric .img {
	margin: 0 0 60px;
	text-align: center;
}
#song_lyric .img img {
	max-width: 62px;
}
#song_lyric .ttl01 span {
	border-bottom: 1px solid #000;
}
#song_lyric .txt {
	text-align: center;
	font-size: 2.2rem;
	line-height: 2;
	margin: 0 0 40px;
}
#song_lyric .info {display: inline-block;
	text-align: center;
	line-height: 1.8;
	background-color: rgba(255,255,255,0.5);
padding: 10px 40px;
box-sizing: border-box;
border-radius: 100px;
}
@media screen and (max-width:768px) {
	#song_lyric.area {
		padding: 40px 20px;
	}
	#song_lyric .img {
		margin: 0 0 30px;
	}
	#song_lyric .img img {
		max-width: 40px;
	}
	#song_lyric .txt {
		font-size: 1.6rem;
		margin: 0 0 30px;
	}
	#song_lyric .info {
		font-size: 1.4rem;
	}
}

/* song_video
-------------------------------------------------------*/

@media screen and (max-width:768px) {

}


/* service
-------------------------------------------------------*/
#service {
	background: url(../img/bg02.png)no-repeat right top/cover;
}
#service.area {
	padding: 70px 20px;
}
#service .ttl01 {
	text-shadow:4px 4px 0 #FFF, -4px -4px 0 #FFF,
	-4px 4px 0 #FFF, 4px -4px 0 #FFF,
	0px 4px 0 #FFF,  0 -4px 0 #FFF,
	-4px 0 0 #FFF, 4px 0 0 #FFF;
	margin: 0 0 50px;
}
#service ul {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: center;
}
#service ul li {
	width: 30%;
}

#service .ttl_img {
	max-width: 720px;
	margin: 0 auto;
	margin-bottom: 50px;
}

@media screen and (max-width:768px) {
	#service {
		background: url(../img/bg02_sp.png)no-repeat right bottom/cover;
	}
	#service.area {
		padding: 40px 20px;
	}
	#service .ttl01 {
		margin: 0 0 30px;
	}
	#service ul {
		flex-flow: column;
		align-items: center;
		justify-content: center;
	}
	#service ul li {
		width: 100%;
	}
	#service ul li:not(:last-child) {
		margin: 0 0 20px;
	}
	
	#service .ttl_img {
	/*max-width: 280px;*/
		max-width: 90%;
	margin: 0 auto;
	margin-bottom: 30px;
}
}


/* contact
-------------------------------------------------------*/
#contact.area {
	padding: 70px 20px;
}
#contact .icon {
	text-align: center;
	margin: 0 0 50px;
}
#contact .icon img {
	max-width: 62px;
}
#contact .ttl01 {
	margin: 0 0 50px;
}
#contact .table_temp {
	width: 100%;
}
#contact.contact_after .inner {
	padding: 0;
}
#contact tr {
	display: table;
	width: 100%;
	table-layout: fixed;
}
#contact tr>* {
	display: table-cell;
	vertical-align: middle;
	padding: 20px 10px;
	box-sizing: border-box;
	line-height: 1.5;
}
#contact tr th {
	width: 300px;
	text-align: left;
}
#contact tr th.top {
	vertical-align: top;
	padding: 40px 10px 20px;
}
#contact tr th b {
	display: block;
	position: relative;
	font-weight: normal;
}
#contact tr.hissu th b::after,
#contact tr.nini th b::after {
	color: #fff;
	font-weight: 500;
	font-size: 1.3rem;
	width: 64px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}
#contact tr.hissu th b::after {
	content: "必須";
	background: #d85441;
}
#contact tr.nini th b::after {
	content: "任意";
	background: #777;
}
#contact.contact_after tr {
	border-bottom: 1px solid #ccc;
}
#contact.contact_after tr:first-child {
	border-top: 1px solid #ccc;
	margin: 30px 0 0;
}
#contact.contact_after tr th {
	color: #aaa;
}
#contact.contact_after tr td {
	font-weight: 500;
}


.txt_form .red,
.error_messe b {
	color: #f00;
	font-weight: normal;
}
.error_messe {
	margin: 20px 0 0;
	text-align: center;
	line-height: 1.3;
}
.error_messe>* {
	display: inline-block;
}
#contact input[type="text"],
#contact select,
#contact textarea {
	width: 100%;
	border-radius: 3px;
	border: 1px solid #d9d8d8;
}
#contact input[type="text"],
#contact select {
	height: 40px;
}
#contact textarea {
	min-height: 250px;
	resize: vertical;
	line-height: 1.5;
}
#contact .radio_area label,
#contact .check_area label {
	display: inline-block;
	margin: 5px 5px 5px 0;
	line-height: 1.3;
}
#contact .txt_form {
	text-align: center;
	line-height: 2;
}
#contact .txt_form span {
	display: block;
}
::placeholder {
	color: #ccc;
}
#contact .form_btn {
	display: flex;
	flex-flow: row-reverse nowrap;
	align-items: center;
	justify-content: space-evenly;
}
#contact .form_btn01,
#contact .form_btn02 {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80%;
	max-width: 260px;
	height: 50px;
	border: none;
	padding: 10px;
	margin: 30px auto 0;
	box-sizing: border-box;
	font-size: 1.8rem;
	color: #fff;
	line-height: 1;
    text-align: center;
	border-radius: 50px;
}
#contact .form_btn01 {
	background: #d85441;
}
#contact .form_btn02 {
	background: #333;
}
@media screen and (max-width:768px) {
	#contact.area {
		padding: 40px 20px;
	}
	#contact .icon {
		margin: 0 0 20px;
	}
	#contact .icon img {
		max-width: 40px;
	}
	#contact .ttl01 {
		margin: 0 0 30px;
	}
	#contact.contact_after tr:first-child {
		margin: 20px 0 0;
	}
	#contact tr>* {
		display: block;
		padding: 15px 0;
		line-height: 1.3;
	}
	#contact tr th {
		width: 100%;
		font-size: 100%;
	}
	#contact tr th.top {
		padding: 15px 0;
	}
	#contact tr td {
		padding-top: 0;
	}
	#contact tr.hissu th b::after,
	#contact tr.nini th b::after {
		top: 0!important;
		right: 0!important;
		bottom: 0!important;
	}
	#contact .radio_area label,
	#contact .check_area label {
		display: flex;
		align-items: center;
	}
	#contact textarea {
		min-height: 150px;
	}
	#contact .form_btn {
		flex-flow: column;
	}
	#contact .form_btn01,
	#contact .form_btn02 {
		margin: 20px 0 0;
		font-size: 100%;
		height: 50px;
	}
}

.js-modal-video:hover {
	opacity: 0.7;
	transition: 0.3s;
	cursor: pointer;
}

.u_video iframe {
	width: 100%;
	height: 240px;
}

@media screen and (max-width:768px) {
.u_video iframe {
	width: 100%;
	height: 200px;
}
}

@media screen and (min-width: 767px) {
	.mg-left-50 {
		margin-left: 50%;
	}
}



/*20230301*/

.cvarea {
	width: 100%;
	background: #f9d0ba;
	padding: 30px 20px;
	box-sizing: border-box;
}

.cvarea_inner {
	max-width: 1000px;
	margin: 0 auto;
	text-align: center;
}



.cvarea_btn a {
	width:420px;
	display:inline-block;
	color: #fff;
	background: #da5341;
	padding: 15px 20px;
	border-radius: 100px;
	font-size: 180%;
	font-weight: bolder;
	position: relative;
}

.cvarea_btn_arrow{
    position: relative;
    display: inline-block;
    padding: 0 0 0 16px;
    color: #000;
    vertical-align: middle;
    text-decoration: none;
    font-size: 15px;
}
.cvarea_btn_arrow::before,
.cvarea_btn_arrow::after{
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
}
.cvarea_btn a::before {
    right: 40px;
    width: 14px;
    height: 14px;
    border-top: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
	position: absolute;
}

@media screen and (max-width:768px) {
	
.cvarea {
	width: 100%;
	background: #f9d0ba;
	padding: 20px 20px;
	box-sizing: border-box;
}




.cvarea_btn a {
	width:280px;
	padding: 10px 10px;
	font-size: 120%;
}

.cvarea_btn_arrow{
    position: relative;
    display: inline-block;
    padding: 0 0 0 16px;
    color: #000;
    vertical-align: middle;
    text-decoration: none;
    font-size: 15px;
}
.cvarea_btn_arrow::before,
.cvarea_btn_arrow::after{
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
}
.cvarea_btn a::before {
    right: 30px;
    width: 8px;
    height: 8px;
    border-top: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
	position: absolute;
}
	
}




/*20230305書籍追加*/

#books.area {
	padding: 100px 20px;
	background: #e2f2ec;
	margin-top: 50px;
}

.ttl_box_sec {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 30px;
}

.ttl_box_sec_img {
	max-width: 110px;
	padding-right: 20px;
}

.ttl_box_sec_txt {
	text-align: center;
}

.ttl_box_sec .ttl_en {
  font-size: 8.6rem;
  position: relative;
  line-height: 1;
  margin: 0 0 20px;
  color: #d85441;
}

.ttl_sub {
	display: inline-block;
	background: #fff;
	border-radius: 100px;
	padding: 5px 40px;
	font-size: 160%;
	font-weight: bolder;
}

.books_read {
	text-align: center;
	font-size: 140%;
	margin-bottom: 50px;
}

.bookd_cont {
	display: flex;
	justify-content: space-between;
}

.bookd_cont li {
	width: 27%;
}

.bookd_cont li .img {
	margin-bottom: 15px;
	box-shadow: -5px 5px 10px 1px rgba(0, 0, 0, .3);
}

@media screen and (max-width:768px) {
	#books.area {
		padding: 40px 20px 20px;
	}
	
	.ttl_box_sec_img {
	max-width: 70px;
	padding-right: 10px;
}
	
	.ttl_box_sec .ttl_en {
  font-size: 3.5rem;
  margin: 0 0 10px;
}
	
	.ttl_sub {
	padding: 5px 20px;
	font-size: 120%;
}
	
	.books_read {
	text-align: center;
	font-size: 100%;
	margin-bottom: 30px;
}
	
	.bookd_cont {
	display: block;
}

.bookd_cont li {
	width: 60%;
	margin: 0 auto;
	margin-bottom: 30px;
}
	
	
}