@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Shippori+Mincho:wght@400;700&display=swap');

:root {
	--color-baseText: #000000;
	--color-lightText:#FFFFFF;
	--color-point: #32A545;
	--color-sub: #56AAB8;
	--color-important: #EB1C24;
	--contents-bg: #FFF/*#EFF5F6*/;
	
	--form-bg: #f4f4f4;
	--color-middle: #666666;
	
	--footer-bg: #97D5A1;
	--footer-color: #FFFFFF;
	
	--contactbox-bg: #58B467;
	--contactbox-color: #FFFFFF;
	--contactbox-formBtn: #3B9549;
	--contactbox-formBtnColor: #FFFFFF;
	--copyright-bg: #32A545;
	
	--table-border: #888888;
	--table-thead-th-bg: #2D7A3A;
	--table-thead-th-color: #FFFFFF;
	--table-tbody-th-bg: #32A545;
	--table-tbody-th-color: #FFFFFF;
	--table-td-bg: #FFFFFF;
	--table-td-color: #000000;
}

*{
    margin: 0px;
	padding: 0px;
}

img{border: 0;}

a {outline: none;}

ul,ol { list-style-type: none;}

A:link{color:#2f3640;text-decoration:underline}
A:visited{color: #2f3640;text-decoration:none;}
A:active{color:#2f3640;text-decoration:none;}
A:hover{color:#2f3640;text-decoration:none;}

::selection{
	background: var(--color-point);
	color: var(--color-lightText);
}
::-moz-selection{
	background: var(--color-point);
	color: var(--color-lightText);
}

table{
	border-collapse:collapse;
}


input{
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 16px;
}

body{
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 16px;
	line-height: 1.5;
	overflow-x:hidden;
}
h1,
h2,
h3,
h4{
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
	font-style: normal;
}

body.modal-open{
	overflow: hidden !important;
}


.wrapper{
	margin: 0 auto;
	width: 98%;
	max-width: 1200px;
	text-align:left;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
#container{
	text-align: left;
}


/* ページスクロールボタン */
#topcontrol{
	z-index: 200;
	right: 10px !important;
	bottom: 70px;
}


#topcontrol span{
	display: none;
}

@media screen and (min-width: 980px) {
	#topcontrol span{
		display: none;
	}
	.sp{
		display: none;
	}
	tr.sp,
	th.sp,
	td.sp{
		display: none;
	}
}
@media screen and (max-width: 979px) {
body{
	font-size: 14px;
}
	#container{
		min-width: auto;
		max-width: initial;
        overflow: hidden;
	}
	.sp{
		display: none;
	}
}
@media screen and (max-width: 768px){
	.sp{
		display: block;
	}
	tr.sp,
	th.sp,
	td.sp{
		display: block;
	}
	.pc{
		display: none;
	}
	tr.pc,
	th.pc,
	td.pc{
		display: none;
	}
	#topcontrol img{
		width: 50px !important;
		height: auto !important;
	}
}

/*animation
************************************************************************************/
.anim{
	opacity: 0;
}
.anim-up{
	opacity: 0;
}
.anim-slide-left{
	opacity: 0;
}
.anim-slide-right{
	opacity: 0;
}
.delay-1s {
	-webkit-animation-delay: .1s;
	animation-delay: .1s;
	-webkit-animation-delay: calc(var(--animate-delay)*.1);
	animation-delay: calc(var(--animate-delay)*.1)
}
.delay-2s {
	-webkit-animation-delay: .2s;
	animation-delay: .2s;
	-webkit-animation-delay: calc(var(--animate-delay)*.2);
	animation-delay: calc(var(--animate-delay)*.2)
}
.delay-3s {
	-webkit-animation-delay: .3s;
	animation-delay: .3s;
	-webkit-animation-delay: calc(var(--animate-delay)*.3);
	animation-delay: calc(var(--animate-delay)*.3)
}
.delay-4s {
	-webkit-animation-delay: .4s;
	animation-delay: .4s;
	-webkit-animation-delay: calc(var(--animate-delay)*.4);
	animation-delay: calc(var(--animate-delay)*.4)
}
.delay-5s {
	-webkit-animation-delay: .5s;
	animation-delay: .5s;
	-webkit-animation-delay: calc(var(--animate-delay)*.5);
	animation-delay: calc(var(--animate-delay)*.5)
}
.delay-6s {
	-webkit-animation-delay: .6s;
	animation-delay: .6s;
	-webkit-animation-delay: calc(var(--animate-delay)*.6);
	animation-delay: calc(var(--animate-delay)*.6)
}
.delay-7s {
	-webkit-animation-delay: .7s;
	animation-delay: .7s;
	-webkit-animation-delay: calc(var(--animate-delay)*.7);
	animation-delay: calc(var(--animate-delay)*.7)
}
.delay-8s {
	-webkit-animation-delay: .8s;
	animation-delay: .8s;
	-webkit-animation-delay: calc(var(--animate-delay)*.8);
	animation-delay: calc(var(--animate-delay)*.8)
}
.delay-9s {
	-webkit-animation-delay: .9s;
	animation-delay: .9s;
	-webkit-animation-delay: calc(var(--animate-delay)*.9);
	animation-delay: calc(var(--animate-delay)*.9)
}
@media screen and (max-width: 1024px){
	.delay-1s,
	.delay-2s,
	.delay-3s,
	.delay-4s,
	.delay-5s,
	.delay-6s,
	.delay-7s,
	.delay-8s,
	.delay-9s{
		transition-delay: .1s;
	}
}
@media screen and (max-width: 768px){
	.delay-1s,
	.delay-2s,
	.delay-3s,
	.delay-4s,
	.delay-5s,
	.delay-6s,
	.delay-7s,
	.delay-8s,
	.delay-9s{
		transition-delay: 0;
	}
}

/*header
************************************************************************************/
#header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 50;
	height: 80px;
	background-color: rgba( 0, 0, 0, 0.5 );
	font-family: "Shippori Mincho", serif;
	z-index: 99999;
}
#header a{
	color: var(--color-lightText);
	text-decoration: none;
}

.header_sitename{
	width: 260px;
	height: 80px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 0;
	z-index: 10;
}
.header_sitename img{
	max-width: 100%;
	max-height: 75px;
	width: auto;
	height: 70px;
	vertical-align: middle;
	display: inline-block;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.header_nav_wrap {
	width: 100%;
	padding: 0 270px 0 270px;
	box-sizing: border-box;
	position: absolute;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.header_nav_gnav ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
}
.header_nav_gnav ul li{
	padding: 0 1em;
	font-size: 1.125em;
}

.header_nav_subnav {
	display: flex;
	flex-wrap: wrap;
	margin-left: auto;
	justify-content: flex-end;
	margin-bottom: 1em;
}
.header_nav_subnav li{
	padding: 0 1em;
	font-weight: 200;
}


.header_instagram {
	width: 120px;
	height: 80px;
	background: var(--color-sub);
	text-align: center;
	
	position: absolute;
	right: 120px;
	top: 0;
	display: inline-block;
	vertical-align: middle;
	z-index: 20;
}
#header .header_instagram a{
	color: var(--color-lightText);
	font-size: 0.875em;
	background: url("../img/header_instagram.svg") no-repeat top .5em center;
	padding: calc(45px + .5em) 0 0 0;
	width: 120px;
	display: inline-block;
}
.header_contact {
	width: 120px;
	height: 80px;
	background: var(--color-point);
	text-align: center;
	
	position: absolute;
	right: 0;
	top: 0;
	display: inline-block;
	vertical-align: middle;
	z-index: 20;
}
#header .header_contact a{
	color: var(--color-lightText);
	font-size: 0.875em;
	background: url("../img/header_contact.svg") no-repeat top .5em center;
	padding: calc(45px + .5em) 0 0 0;
	width: 120px;
	display: inline-block;
}

	#header.fixed{
		position: fixed !important;
		top: 0;
		left: 0;
		right: 0;
		margin: auto;
		z-index: 500;
		padding-bottom: 0;
	}
@media screen and (max-width: 1024px){
/*smart phone*/
}
@media screen and (max-width: 768px){
	.header_nav_wrap{
		display: none;
	}
	.header_sitename{
		width: 100%;
		padding-right: 250px;
		box-sizing: border-box;
	}
	.header_contact {
		background: none;
	}
}
@media screen and (max-width: 599px) {
	#header {
		height: 80px;
	}
	.header_sitename{
		width: 100%;
		height: 80px;
		padding-right: 170px;
		box-sizing: border-box;
	}
	.header_sitename img{
		max-width: 100%;
		max-height: 100px;
		width: 240px;
		height: 73px;
		vertical-align: middle;
		display: inline-block;
	}
	
	.header_contact {
		width: 80px;
		height: 80px;
		display: block;
	}
	#header .header_contact a{
		display: block;
		text-indent: -9999px;
		background: url("../img/header_contact.svg") no-repeat center center;
		padding: 0;
		width: 80px;
		height: 80px;
	}
}
@media screen and (max-width: 415px){
}


/*layout
************************************************************************************/
#content{
	color: #000;
}

.section{
	padding: 50px 0;
}

.text p{
	padding-bottom: 1em;
}
.text p:last-child{
	padding-bottom: 0;
}

secion:after {
    content: "";
    display: block;
    clear: both;
    height: 1px;
    overflow: hidden;
}
* html secion{
    height: 1em;
}
secion{
    display: block;
}
*:first-child+html secion{
	zoom:1;
}

.clearfix:after {
    content: "";
    display: block;
    clear: both;
    height: 1px;
    overflow: hidden;
}
* html .clearfix{
    height: 1em;
}
.clearfix{
    display: block;
}
*:first-child+html .clearfix{
	zoom:1;
}


/*footer
----------------------------------------------------------------------*/
#footer{
	background: var(--footer-bg);
	color: var(--footer-color);
	padding: 50px 0 0;
	margin: 0;
}
#footer a{
	color: var(--footer-color);
	text-decoration: none;
}

.footer_contactWrap {
}

.footer_contact {
	display: flex;
	flex-wrap: wrap;
	justify-content:space-between;
	color: var(--contactbox-color);
	width: 90%;
	max-width: 1000px;
	text-align: center;
	margin: auto;
    gap: 20px;
}

.footer_contact_phone {
	background: var(--contactbox-bg);
	padding: 2em;
	box-sizing: border-box;
	width: 48%;
}

.footer_contact_title {
	font-weight: 600;
	font-size: 1.25em;
	margin-bottom: 1em;
}

.footer_contact_telNo {
	font-size: 3.125em;
	font-weight: 600;
	margin: 0;
	line-height: 1;
}

#footer_contact_telCmt {
	margin-top: .5em;
}
.footer_contact_note{
    margin-top: .3em;
    font-size: 0.8em;
    font-weight: normal;
}
.footer_contact_note a{
    color: #FFF;
    text-decoration: underline !important;
}

.footer_contact_form {
	background: var(--contactbox-bg);
	padding: 2em;
	box-sizing: border-box;
	width: 48%;
}

.footer_contact_form_btn a{
	background: url("../img/header_contact.svg") no-repeat right 1em top 1.2em var(--contactbox-formBtn);
	background-size: 25px auto;
	color: var(--contactbox-formBtnColor);
	text-decoration: none;
	display: block;
	padding: 1.2em 5em 1.2em 2em;
}
.footer_contact_telNo a{
	color: #FFF;
	text-decoration: none;
}

.footer_contact_instagram {
	background: var(--contactbox-bg);
	padding: 2em;
	box-sizing: border-box;
	width: 48%;
}
.footer_contact_instagram_btn a{
	background: url("../img/header_instagram.svg") no-repeat left 1em top 1.2em var(--contactbox-formBtn);
	background-size: 25px auto;
	color: var(--contactbox-formBtnColor);
	text-decoration: none;
	display: block;
	padding: 1.2em 2em 1.2em 5em;
}

.footer_navWrap{
	padding: 3em 0;
}

.footer_nav {
	display: table;
	margin: auto;
}

.footer_nav li {
	display: table-cell;
	padding: 0 1em;
	vertical-align: middle;
}

.footer_copyrights {
	background: var(--copyright-bg);
	text-align: center;
	padding: 1em 0;
	font-size: 0.813em;
}
@media screen and (min-width: 1025px) {
	.footer_contact_telNo a{
		pointer-events: none;
		cursor: default;
	}
}
@media screen and (max-width: 1024px){
	.footer_nav li {
		padding: 0 .5em;
	}
}
@media screen and (max-width: 768px){
	.footer_contact_phone,
	.footer_contact_form{
		width: 98%;
		margin-bottom: 5px;
	}
	.footer_contact_instagram{
		width: 98%;
		margin-bottom: 5px;
	}
	.footer_navWrap{
		display: none;
	}
	.footer_contactWrap{
		padding-bottom: 50px;
	}
}

/*parts
************************************************************************************/
.textCenter{
 text-align:center;
}

.textRight{
 text-align:right;
}
.textLeft{
 text-align:left;
}
.smidashi{
	font-weight: bold;
	font-size: 17px;
	color: #ce4040;
}
.bold{
	font-weight: 700;
}

.red{color:#d80808;}
.blue{color: #1744AB;}
.txt_s{
	font-size: 0.75em;
}
.txt_xxl{
	font-size: 1.563em;
}
.txt_xl{
	font-size: 1.313em;
}
.txt_l{
	font-size: 1.125em;
}

.rf10{float:right; margin-left:10px;}
.rf15{float:right; margin-left:15px;}
.lf15{float:left; margin-right:15px;}
.rf{float:right;}
.lf{float:left;}

ul.baselink{}
span.br{}
a.tel{}
span.spbr{}

.clearfix:after {
    content: "";
    display: block;
    clear: both;
    height: 1px;
    overflow: hidden;
}
/*\*/
* html .clearfix{
    height: 1em;
}
.clearfix{
    display: block;
}
/* ▲ */
/* for IE7 */
*:first-child+html .clearfix{
	zoom:1;
}

@media screen and (min-width: 980px) {
	span.br{
		display: block;
		text-indent: -9999;
		font-size: 0;
	}
	a.tel{
		pointer-events: none;
		cursor: default;
		text-decoration: none;
		color: #000;
	}
}

@media screen and (max-width: 768px){
	.rf10{float:none; margin:10px auto;}
	.rf15{float:none; margin:10px auto;}
	.lf15{float:none; margin:10px auto;}
	.rf{float:none; margin:10px auto;}
	.lf{float:none; margin:10px auto;}

	img.rf10{float:none; margin:10px auto; display:block; max-width:100%; height:auto;}
	img.rf15{float:none; margin:10px auto; display:block; max-width:100%; height:auto;}
	img.lf15{float:none; margin:10px auto; display:block; max-width:100%; height:auto;}
	img.rf{float:none; margin:10px auto; display:block; max-width:100%; height:auto;}
	img.lf{float:none; margin:10px auto; display:block; max-width:100%; height:auto;}

	.textCenter img{
		max-width: 100%;
		height: auto;
		width: auto;
		display: block;
		margin: auto;
	}

	span.spbr{
		display: block;
	}
}

ul.square{
	list-style-type: square;
	margin-left: 2.4em;
	margin-top: 5px;
}
ul.square li{
	margin-bottom: 5px;
	background: none;
	padding: 0;
	list-style-type: square;
}
ul.square li p{
	padding: 0;
}

ul.cube{
	display: -webkit-flex;
	display: flex;
	-webkit-flex-flow: row wrap;
	flex-flow: row wrap;
	-webkit-justify-content: left;
	justify-content: left;
}


ul.cube li{
	display: block;
	padding: 15px;
	border: 1px solid #fff;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	margin: .5%;
}

ul.ar_black li{
	background: url("../img/ar_black.svg") no-repeat left .3em;
	margin: 0 0 1em;
	padding-left: 35px;
}

.btn_orange{
	padding: 1.5em 0 0 0;
}

.btn_orange a{
	background: url("../img/ar_white.svg") no-repeat right 30px center var(--color-point);
	display: inline-block;
	color: var(--color-lightText);
	text-decoration: none;
	padding: 1em calc(3em + 30px) 1em 3em;
	border-radius: 2em;
	font-weight: 700;
}


/*paging*/
ul.page_navi{
	text-align: center;
	margin-top: 50px;
	margin-left: auto;
	margin-right: auto;
}

ul.page_navi li{
	margin: 10px 0 15px 0;
	background: none;
	padding: 0;
	list-style-type: none;
	display: inline-block;
	font-size: 0.975em;
	font-weight: 300;
}
ul.page_navi li:before{
	display: none;
	float: none;
}
ul.page_navi li.current span{
	background: #222;
	border: 2px solid #ccc;
	width: 2.5em;
	height: 2.5em;
	border-radius: 50%;
	color: #fff;
	text-align: center;
	line-height: 2.5;
	margin: 0 5px;
	display: block;
}
ul.page_navi li a{
	background: #ccc;
	border: 2px solid #ccc;
	width: 2.5em;
	height: 2.5em;
	border-radius: 50%;
	color: #fff;
	text-align: center;
	line-height: 2.5;
	margin: 0 5px;
	display: block;
	text-decoration: none;
}

ul.page_navi li:hover span.current,
ul.page_navi li:hover a{
	background: #222;
}
@media screen and (min-width: 980px) {
	.btn_orange a{
		transition: 0.3s ease-in-out;
	}
	.btn_orange a:hover{
		background: url("../img/ar_white.svg") no-repeat right 20px center var(--color-point);
	}
}
@media screen and (max-width: 979px) {
/*tablet*/
}
@media screen and (max-width: 768px){
	.btn_orange a{
		display: block;
	}
}
@media screen and (max-width: 620px) {
/*sp*/
}
@media screen and (max-width: 480px){
}