@charset "utf-8";

/* default style
----------------------------------------------------------- */
html,body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,p,blockquote,
span, object, a, address, cite, em, img, ins, q, strong, tt, label,
table, caption, tbody, tfoot, thead{
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 1em;
	vertical-align: baseline;
	background: transparent;
}
table{border-collapse:collapse;border-spacing:0;}
fieldset,img{border:0;}
li{list-style:none;}
h1,h2,h3,h4,h5,h6, small{font-size:100%;font-weight:normal;}

/* Global */
:root {
	--main-color: #14619A;
}
:root {
	--sub-color: #f8f9fc;
}
:root {
	--font-color: #555;
}
body {
	font-family: "mizoletbokutoh", sans-serif;
	font-weight: 400;
	font-style: normal;	
	font-size: 15px;
	line-height: 2.0;
	-webkit-font-smoothing: antialiased;
	font-feature-settings: "palt";
	color: var(--font-color);
	background-color:#FFF;
	margin: 0;
	padding: 0;
}
img {
	max-width: 100%;
}
a:link {
	color: var(--main-color);
	text-decoration: none;
	transition: .3s;
}
a:hover {
	color: #ab2a2a;
}
a:visited {
	color: #ab2a2a;
	text-decoration: none;
}
span.red{
	color: #D33;
}
/* 画面外にいる状態 */
.fadein {
	opacity : 0;
	transform : translate(0, 50px);
	transition : all 500ms;
}
/* 画面内に入った状態 */
.fadein.scrollin {
	opacity : 1;
	transform : translate(0, 0);
}
.cf{
	clear: both;
}
strong{
	background-image: linear-gradient(transparent 60%, rgba(240, 240, 140, 0.5) 60%) !important;
}
h2{
	font-size: 26px;
	font-weight: 400;
	text-align: center;
	margin: 0 0 70px 0;
}
h2::after{
	content:"";
	display:block;
	width:80px;
	height:3px;
	background-color: var(--font-color);
	bottom:0;
	margin: 0 auto;
	border-radius: 6px;
}
h2 span{
	display: inline-block;
}
h3 span{
	display: inline-block;
}
::-webkit-scrollbar {
	width: 10px;
	height: 10px;
}
::-webkit-scrollbar-thumb {
	background: var(--main-color);
}
/* Firefox用スクロールバー */
html{
	scrollbar-width: thin;
	scrollbar-color: var(--main-color) #FFF;
}
br.br_sp{
	display: none;
}


/* Navigation */

#header {
	position:fixed;
	top: 0;
	width: 100%;
	height: 80px;
	background-color: #FFF;
	z-index: 999;
}
#header_inner{
	width: 100%;
	max-width: 1600px;
	margin: 0 auto;
}
#header_nav{
	display: flex;
}
#logo{
	width: 200px;
	margin: 5px 0 5px 2%;
}
#logo a{
	display: block;
	line-height: 0;
}
#nav-toggle{
	display: none;
}
#nav {
	width: calc(100% - 200px);
	height: 80px;
	display: flex;
	justify-content: flex-end;
}
.navigation{
	list-style: none;
	margin: 0;
	display: flex;
	align-items: center;
}
.navigation li{
	margin: auto;
	padding:0 40px 0 0;
	text-align: center;
	width: fit-content;
}
.navigation li a{
	font-size: 16px;
	color: var(--main-color);
	position: relative;
	display: inline-block;
	transition: .3s;
	line-height: 1.4;
}
.navigation li a span{
	font-size: 12px;
}
.navigation li a::after {
	position: absolute;
	bottom: 0;
	left: 50%;
	content: '';
	width: 0;
	height: 1px;
	background-color: #ab2a2a;
	transition: .3s;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
.navigation li a:hover::after {
	width: 100%;
}
.navigation li a:hover{
	color: #ab2a2a;
}
.navigation .active{
	cursor:pointer;
	color: #ab2a2a;
}


/* Topimg */

#topimg{
	width: 100%;
	height: 100vh;
	margin: auto;
	background-image: url("img/main_img.webp");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top;
	background-attachment: fixed;
	align-items: center;
	text-align: center;
	display: flex;
}
.topimg_inner{
	width: fit-content;
	margin: auto;
}
.topimg_inner h1{
	font-size: 32px;
	color: #FFF;
	text-shadow: 1px 1px 1px var(--main-color);
}


/* Intro */

#news{
	margin: 180px auto 0;
	width: 96%;
}
#news h2{
	font-size: 18px;
	position:relative;
}
#news h2::after{
	content:"";
	display:block;
	width:80px;
	height:1px;
	background-color:#FFF;
	bottom:0;
	margin: 0 auto;
}
.news_inner{
	width: fit-content;
	margin: 40px auto 0;
	padding: 10px 1% 0;
	text-align: left;
	height: 150px;
	overflow-x: hidden;
}
.news_inner::-webkit-scrollbar {
	width: 10px;
	height: 10px;
}
.news_inner::-webkit-scrollbar-thumb {
	background: #778899;
}
.news_inner table td, .news_inner a{
	font-size: 12px;
	line-height: 2.6;
}
.news_inner table td.date{
	margin: 0 20px 0 0;
	display: inline-block;
}
.news_inner a{
	text-decoration: underline;
}
#intro{
	width:100%;
	background-color: #FFF;
	padding: 15% 0 15%;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}
.intro_inner{
	width: 98%;
	max-width: 800px;
	margin: 0 auto 0;
	text-align: center;
}
.intro_inner h3{
	margin: 100px 0 60px 0;
	font-size: 22px;
}
.intro_inner p{
	margin: 25px 0;
	padding: 0 2% 0;
	text-align: left;
}
.intro_inner img{
	max-width: 400px;
	width: 70%;
}


/* Outline */

#outline{
	width:100%;
	margin: 0 auto 150px;
	justify-content: center;
	align-items: center;
}
.outline_inner{
	width: 84%;
	max-width: 400px;
	margin: 0 auto;
	padding: 80px 6% 100px;
	background-color: var(--sub-color);
	border-radius: 30px;
}
.outline_inner ul{
	width: fit-content;
	margin: 0 auto 0;
}
.outline_inner ul li{
	margin: 15px 0;
}


/* Style */

#style{
	width:100%;
	padding: 100px 0 100px;
	justify-content: center;
	align-items: center;
}
.style_inner{
	width: 98%;
	max-width: 800px;
	margin: 5% auto 10%;
}
.style_inner h3{
	text-align: center;
	font-size: 22px;
	margin: 100px 0 60px 0;
	line-height: 1.6;
}
.style_inner p{
	margin: 25px 0;
	padding: 0 2% 0;
}
.slider-8 .slick-slide {
	width: 200px;
	height: 200px;
	position: relative;
	overflow: hidden;
}
.slider-8 .slick-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}


/* Machine */

#machine{
	width:100%;
	padding: 100px 0 100px;
	background-color: var(--sub-color);
}
.machine_inner{
	width: 98%;
	max-width: 800px;
	margin: 50px auto 100px;
}
.machine_inner h3{
	text-align: center;
	font-size: 22px;
	margin: 100px 0 60px 0;
	line-height: 1.6;
}
.machine_inner p{
	margin: 25px 0;
	padding: 0 2% 0;
}
.machine_list{
	width: 100%;
	max-width: 1920px;
	display: flex;
	justify-content: center;
	margin: 60px auto 0;
	text-align: center;
}
.machine_list_box{
	width: 26%;
	margin: 20px 2% 20px;
	padding: 30px 1% 20px;
	background-color: #FFF;
	border-radius: 30px;
	-webkit-box-shadow: 3px 3px 5px rgba(0, 0, 0, .2);
	box-shadow: 3px 3px 5px rgba(0, 0, 0, .2);
}
.machine_list_box img{
	width: 80%;
	max-width: 400px;
}
.machine_list_box h4{
	font-size: 18px;
	margin: 20px auto 30px;
	line-height: 1.6;
}
.machine_list_box p{
	margin: 20px auto 30px;
	padding: 0 2% 0;
	text-align: left;
}
.machine_list_box h5{
	font-size: 12px;
	color: #FFF;
	padding: 2px 6px;
	background-color: var(--main-color);
	display: inline-block;
	border-radius: 10px;
}
.machine_list_box ul{
	text-align: left;
	width: fit-content;
	margin: 20px auto 50px;
}
.machine_list_box ul li{
	text-indent: -1em;
	padding-left: 1em;
}
.machine_detail{
	width: 98%;
	max-width: 800px;
	margin: 5% auto 10%;
	background-color: #FFF;
	border-radius: 30px;
	box-shadow: 3px 3px 5px rgba(0, 0, 0, .2);
}
.machine_detail_box{
	margin: 50px auto 100px;
	padding: 60px 50px 50px;
}
.machine_detail_box h6{
	position: relative;
	display: inline-block;
	margin: 0 0 50px -60px;
	padding: 0.7rem 2rem;
	color: #fff;
	font-size: 20px;
	border-radius: 0 100vh 100vh 0;
	background: var(--main-color);
	-webkit-box-shadow: 3px 3px 5px rgba(0, 0, 0, .2);
	box-shadow: 3px 3px 5px rgba(0, 0, 0, .2);
}
.machine_detail_box h6:before{
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 0;
	height: 0;
	content: '';
	border-top: 10px solid #005276;
	border-left: 10px solid transparent;
}
.machine_detail_box h3{
	text-align: center;
	font-size: 22px;
	margin: 0 0 60px 0;
	line-height: 1.6;
}
.machine_detail_box_img{
	text-align: center;
}
.machine_detail_box p{
	margin: 20px auto 30px;
	padding: 0 2% 0;
	text-align: left;
}




/* Shop */

#shop{
	width:100%;
	padding: 100px 0 100px;
	justify-content: center;
	align-items: center;
}
.shop_img{
	display: flex;
	overflow: hidden;
}
.shop_img img{
	width: 33.33%;
}
.shop_inner{
	width: 98%;
	max-width: 800px;
	margin: 5% auto 10%;
}
.shop_inner h3{
	text-align: center;
	font-size: 22px;
	margin: 100px 0 60px 0;
	line-height: 1.6;
}
.shop_inner p{
	margin: 25px 0;
	padding: 0 2% 0;
}


/* character */

#character{
	width:100%;
	padding: 100px 0 100px;
	background-color: var(--sub-color);
}
.character_inner{
	width: 98%;
	max-width: 800px;
	margin: 0 auto 150px;
}
.character_inner h3{
	text-align: center;
	font-size: 22px;
	margin: 100px 0 60px 0;
	line-height: 1.6;
}
.character_inner p{
	margin: 25px 0;
	padding: 0 2% 0;
}
.character_inner_split01{
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
	width: 100%;
	max-width: 1600px;
	margin: 0 auto 150px;
}
.character_inner_split02{
	display: flex;
	flex-direction: row;
	align-items: center;
	width: 100%;
	max-width: 1600px;
	margin: 0 auto 150px;
}
.character_inner_img{
	width: 1000px;
}
.character_inner_img img{
	width: 100%;
}
.character_inner_text{
	width: 600px;
	padding: 50px 2% 50px;
	background-color: #FFF;
	z-index: 10;
	box-shadow: 3px 3px 5px rgba(0, 0, 0, .2);
}
.character_inner_text h3{
	text-align: center;
	font-size: 22px;
	margin: 0 0 40px 0;
	line-height: 1.6;
}
.character_inner_text p{
	margin: 25px 0;
	padding: 0 2% 0;
}
.character_inner_split01 .character_inner_text{
	margin-right: -150px;
}
.character_inner_split02 .character_inner_text{
	margin-left: -150px;
}


/* Skill */

#skill{
	width:100%;
	padding: 100px 0 100px;
	justify-content: center;
	align-items: center;
}
.skill_inner{
	width: 98%;
	max-width: 800px;
	margin: 5% auto 10%;
}
.skill_inner img{
	width: 60%;
	max-width: 400px;
	margin: auto;
	display: block;
}
.skill_inner h3{
	text-align: center;
	font-size: 22px;
	margin: 100px 0 60px 0;
	line-height: 1.6;
}
.skill_inner p{
	margin: 25px 0;
	padding: 0 2% 0;
}


/* Workshop */

#workshop{
	width:100%;
	padding: 100px 0 100px;
	justify-content: center;
	align-items: center;
}
.workshop_inner{
	width: 98%;
	max-width: 800px;
	margin: 5% auto 10%;
	background-color: var(--sub-color);
	border-radius: 30px;
	box-shadow: 3px 3px 5px rgba(0, 0, 0, .2);
}
.workshop_inner_box{
	margin: 50px auto 100px;
	padding: 60px 50px 50px;
}
.workshop_inner_detail{
	text-align: center;
}
.workshop_inner_detail img{
	margin: 0 auto 50px;
	width: 80%;
	max-width: 600px;
}
.workshop_inner_detail table{
	text-align: left;
}
.workshop_inner_detail table th{
	font-weight: normal;
	width: 80px;
}
.workshop_inner_teacher{
	display: flex;
	align-items: center;
	margin: 50px auto 0;
	text-align: center;
}
.workshop_inner_img{
	width: 25%;
}
.workshop_inner_img img{
	width: 70%;
	max-width: 200px;
	border-radius: 50%;
	margin: 0 auto 0;
}
.recommend{
	position:relative;
	border:2px solid var(--main-color);
	border-radius:4px;
	padding:30px 2% 30px;
	margin: 50px auto 50px;
	width: 94%;
	max-width: 400px;
}
.recommend h5{
	position:absolute;
	top: -12px;
	left: 10px;
	padding: 5px 20px;
	background-color: var(--main-color);
	color: #FFF;
	border-radius:4px;
	line-height: 1em;
}
.recommend ul li{
	text-indent: -1em;
	padding-left: 1em;
	text-align: left;
}
.workshop_inner_profile{
	width: 75%;
	text-align: left;
	padding: 0 0 0 5%;
}
.workshop_inner_profile h5{
	text-align: center;
	text-decoration: underline;
}
.workshop_inner h3{
	font-size: 20px;
	margin: 0 0 20px 0;
	line-height: 1.6;
}
.workshop_inner h3 span.price{
	font-size: 16px;
}
.workshop_inner h6{
	position: relative;
	display: inline-block;
	margin: 0 0 50px -60px;
	padding: 0.7rem 2rem;
	color: #fff;
	font-size: 20px;
	border-radius: 0 100vh 100vh 0;
	background: var(--main-color);
	-webkit-box-shadow: 3px 3px 5px rgba(0, 0, 0, .2);
	box-shadow: 3px 3px 5px rgba(0, 0, 0, .2);
}
.workshop_inner h6:before{
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 0;
	height: 0;
	content: '';
	border-top: 10px solid #005276;
	border-left: 10px solid transparent;
}
.workshop_inner p{
	margin: 25px 0;
	text-align: left;
}




/* Apply */

#apply{
	width:100%;
	padding: 100px 0 100px;
	justify-content: center;
	align-items: center;
}
.apply_inner{
	width: 98%;
	max-width: 800px;
	margin: 5% auto 10%;
}
.apply_inner h3{
	text-align: center;
	font-size: 22px;
	margin: 100px 0 60px 0;
	line-height: 1.6;
}
.apply_inner p{
	margin: 25px 0;
	padding: 0 2% 0;
}


/* Footer */

#footer{
	width: 100%;
	padding: 50px 0;
	background-color: var(--main-color);
	text-align: center;
}
#footer ul{
	width: fit-content;
	margin: 0 auto 30px;
	display: flex;
}
#footer ul li{
	margin: 0 20px;
}
#footer ul li a{
	font-size: 13px;
	color: #FFF;
	position: relative;
	display: inline-block;
	transition: .3s;
}
#footer ul li a:before{
	content: "> ";
}
#footer ul li a::after {
	position: absolute;
	bottom: 0;
	left: 50%;
	content: '';
	width: 0;
	height: 1px;
	background-color: #ab2a2a;
	transition: .3s;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
#footer ul li a:hover::after {
	width: 100%;
}
#footer ul li a:hover{
	color: #ab2a2a;
}
#footer p{
	clear: both;
	height: 100%;
	font-size: 13px;
	color: #FFF;
}


/* Toplink */ 

#page-top{
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 40px;
	height: 40px;
	border-radius: 8px;
	background:#FFF;
	text-align: center;
}
#page-top a{
	display: block;
}
#page-top svg{
	width: 40px;
	fill: var(--main-color)
}


/* Tablet */
@media screen and (max-width: 1000px) {

	#logo {
		width: 100%;
		text-align: center;
		margin: 5px 0 5px;
	}
	#logo a{
		display: inline-block;
	}
	#logo img{
		width: 180px;
	}
	#header {
		height: 70px;
	}
	#header_inner {
		z-index: 999;
		background-color: #FFF;
		width: 100%;
		height: 70px;
	}
	#nav {
		position: absolute;
		/* 開いてないときは画面外に配置 */
		top: -500px;
		background: #FFF;
		width: 100%;
		height: auto;
		display: block;
		text-align: center;
		margin: 0;
		padding: 10px 0;
		z-index: -300;
		float: none;
		-webkit-transition: .5s ease-in-out;
		-moz-transition: .5s ease-in-out;
		transition: .5s ease-in-out;
	}
	#nav ul {
		position: static;
		right: 0;
		bottom: 0;
		font-size: 14px;
	}
	.navigation{
		display: block;
	}
	.navigation li{
		padding: 0;
	}
	#header #nav ul li a {
		width: 100%;
		display: block;
		color: var(--main-color);
		line-height: 2.4;
		padding: 10px 0;
	}
	#navigation li a::after {
		display: none;
	}
	#navigation li a:hover::after {
		display: none;
	}
	#header #nav ul li a:hover {
		color: #ab2a2a;
	}
	#nav-toggle {
		display: block;
		position: absolute;
		right: 20px;
		top: 24px;
		width: 34px;
		height: 36px;
		cursor: pointer;
		z-index: 200;
	}
	#nav-toggle div {
		position: relative;
	}
	#nav-toggle span {
		display: block;
		position: absolute;
		height: 2px;
		width: 100%;
		background: var(--main-color);
		left: 0;
		-webkit-transition: .35s ease-in-out;
		-moz-transition: .35s ease-in-out;
		transition: .35s ease-in-out;
	}
	#nav-toggle span:nth-child(1) {
		top: 0;
	}
	#nav-toggle span:nth-child(2) {
		top: 11px;
	}
	#nav-toggle span:nth-child(3) {
		top: 22px;
	}
	/* #nav-toggle 切り替えアニメーション */
	.open #nav-toggle span:nth-child(1) {
		top: 11px;
		-webkit-transform: rotate(315deg);
		-moz-transform: rotate(315deg);
		transform: rotate(315deg);
	}
	.open #nav-toggle span:nth-child(2) {
		width: 0;
		left: 50%;
	}
	.open #nav-toggle span:nth-child(3) {
		top: 11px;
		-webkit-transform: rotate(-315deg);
		-moz-transform: rotate(-315deg);
		transform: rotate(-315deg);
	}
	/* #nav スライドアニメーション */
	.open #nav {
		/* #nav top + #mobile-head height */
		-moz-transform: translateY(570px);
		-webkit-transform: translateY(570px);
		transform: translateY(570px);
	}
	.navigation li a::after {
		display: none;
	}
	.navigation li a:hover::after {
		display: none;
	}
	#topimg {
		background-attachment: initial;
	}
	.topimg_inner h1 {
		font-size: 4.0vw;
		padding: 6% 30px;
	}
	#intro{
		height: 100%;
		padding: 150px 0 150px;
	}
	.outline_inner {
		width: 90%;
		margin: 0 auto;
		padding: 60px 2% 60px;
	}
	.machine_list{
		display: block;
	}
	.machine_list_box{
		width: 92%;
		margin: 20px auto 100px;
		padding: 30px 1% 60px;
		box-shadow: none;
	}
	.machine_detail{
		box-shadow: none;
	}
	.machine_detail_box{
		padding: 50px 2%;
	}
	.machine_detail_box h6{
		margin: 0 0 50px -2%;
		padding: 0.5rem 1rem;
		font-size: 16px;
		box-shadow: none;
	}
	.machine_detail_box h6:before{
		display: none;
	}	
	.character_inner_split01{
		display: block;
		width: 100%;
	}
	.character_inner_split02{
		display: block;
		width: 100%;
	}
	.character_inner_img{
		width: 70%;
		max-width: 400px;
		margin: 0 auto 0;
	}
	.character_inner_text{
		width: 96%;
		padding: 50px 2% 50px;
		background-color: transparent;
		box-shadow: none;
	}
	.character_inner_split01 .character_inner_text{
		margin-right: 0;
	}
	.character_inner_split02 .character_inner_text{
		margin-left: 0;
	}
	.workshop_inner{
		box-shadow: none;
	}
	.workshop_inner_box{
		padding: 50px 2%;
	}
	.workshop_inner h6 {
		margin: 0 0 50px -2%;
		padding: 0.5rem 1rem;
		font-size: 16px;
		box-shadow: none;
	}
	.workshop_inner h6:before {
		display: none;
	}
	.workshop_inner_teacher{
		display: block;
	}
	.workshop_inner_img{
		width: 100%;
		margin: 50px auto 30px;
	}
	.workshop_inner_img img{
		width: 60%;
		max-width: 150px;
		border-radius: 50%;
		margin: 0 auto 0;
	}
	.workshop_inner_profile{
		width: 100%;
		padding: 0;
	}	
	br.br_pc{
		display: none;
	}
	h2{
		text-align: center;
	}
	
}


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

	#footer ul{
		display: block;
	}
	#footer ul li{
		width: 100%;
		margin: 10px 0;
	}
	.sp_text:after {
		content:attr(data-label);
		font-size: 28px;
	}
	.sp_text img {
		display:none;
	}
	br.br_sp{
		display: block;
	}
	#apply table.formTable th,#apply table.formTable td {
		font-size: 14px;
		display: block;
		border-right: none;
	}
	#apply table.formTable th:before {
		width: 6px;
		height: 6px;
		margin: 6px 3px 0 0;
	}
	#apply table.formTable th {
		padding: 10px 2%;
		width: 96%;
		text-align: left;
	}
	#apply table.formTable td {
		padding: 15px 2%;
	}

}
/* / Tablet */



/* Mobile */
@media screen and (max-width: 700px) {

	.sp_img{
		display: block;
		width: 100%;
		max-width: 450px;
		margin: 0 auto;
	}

}

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

	#logo img{
		margin: 0 auto;
	}
	.shop_img{
		display: block;
	}
	.shop_img img{
		width: 100%;
	}
	

}

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


}
/* / Mobile */



/* カエレバデザイン */

.kaerebalink-link1 a{
	display: block;
	width: 100%;
	text-align: center;
	box-sizing: border-box;
	font-size: 13px;
	font-weight: bold;
	line-height: 180%;
	padding:3% 1%;
	margin: 30px auto 30px;
	border-radius: 4px;
	box-shadow: 0 2px 0 #ccc;
	background: -moz-linear-gradient(top,#fafafa,#EEE);
	background: -webkit-gradient(linear, left top, left bottom, from(#fafafa), to(#eee));
}
.shoplinkamazon a, .shoplinkkindle a, .shoplinkrakuten a, .shoplinkyahoo a {
	transition: all ease-in-out .3s;
	text-decoration: none;
	text-align: center;
	padding: 13px;
}
.shoplinkamazon a:hover, .shoplinkkindle a:hover, .shoplinkrakuten a:hover, .shoplinkyahoo a:hover{
	box-shadow: 0 10px 20px -5px rgba(0,0,0,0.2);
	-moz-transform: translateY(-2px);
	-webkit-transform: translateY(-2px);
	transform: translateY(-2px);
}
.kaerebalink-link1 .shoplinkamazon a,
.booklink-link2 .shoplinkamazon a { 
	color:#FF9901; 
} /* Amazon */
.kaerebalink-link1 .shoplinkrakuten a ,
.booklink-link2 .shoplinkrakuten a { 
	color: #c20004; 
} /* 楽天 */
.kaerebalink-link1 .shoplinkyahoo a {
	color:#ff0033; 
	letter-spacing:normal;
} /* Yahoo!ショッピング */
.kaerebalink-box, .booklink-box{
	margin: 20px 0;
	display: flex;
	align-items: center;
	padding: 20px;
	box-sizing: border-box;
	justify-content: space-around;
	background-color: #FFF;
}
.booklink-footer {
	display: none;
}
.kaerebalink-info, .booklink-info {
	width: 43%;
	font-size: 16px;
}

@media screen and (max-width: 640px) {
	.kaerebalink-box, .booklink-box {
		display: block;
	}
	.kaerebalink-info, .booklink-info {
		width: 100%;
	}
	.kaerebalink-image, .booklink-image {
		margin: 0 0 20px 0!important;
		text-align: center;
		float: none!important;
	}
	.kaerebalink-name, .booklink-name{
		text-align: center;
	}
}
#policy{
	padding-top: 80px;
}
#policy article{
	margin: 30px auto 50px;
	width: 100%;
	max-width: 800px;
}
#policy section{
	padding: 0 10px;
}
#policy h2{
	margin: 0 0 40px 0;
	padding: 0 20px 5px 20px;
	font-size: 20px;
	letter-spacing: 0.05em;
	text-align: center;
	vertical-align: baseline;
}
#policy h3{
	font-size: 18px;
	letter-spacing: 0.05em;
	border-bottom: var(--main-color) solid 2px;
	margin: 40px 0 25px;
}
#policy h4{
	font-size: 15px;
	margin: 0 0 5px;
}
.policy_inner p{
	font-size: 15px;
	line-height: 1.8;
	margin: 0 0 20px;
}
.policy_inner ul{
	margin: 0 0 30px 30px;
}
.policy_inner ul li{
	font-size: 15px;
	line-height: 1.8;
	list-style: disc;
}
.policy_inner a{
	font-size: 15px;
}
.policy_inner strong{
	font-size: 15px;
	font-weight: bold;
}
