@charset "utf-8";
/*================================
bace css
================================*/
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,font,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,section,article,aside,hgroup,header,footer,nav,dialog,figure,menu,video,audio,mark,time,canvas,details {    margin: 0;    padding: 0;    border: 0;    font-size: 100%;    background: transparent;    -webkit-box-sizing: border-box;    box-sizing: border-box;}
a {
    color: #000;
    transition: all 0.2s ease;
    text-decoration: none;
}
a img{
    transition: all 0.2s ease;
    text-decoration: none;
}
section,article,aside,hgroup,header,footer,nav,dialog,figure,figcaption {
	display: block;
}
input,select {
    vertical-align: middle;
}
body {
	font-family: YakuHanJP,'Noto Sans JP',"Hiragino Kaku Gothic ProN","Hiragino Sans","游ゴシック体","YuGothic","游ゴシック","Yu Gothic",Meiryo,sans-serif;
    color: #000;
	width: 100%;
    min-width: 1200px;
    overflow-x: scroll;
    line-height: 1;
	-webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
	background: #fff;
}
img {
	display: block;
	max-width: 100%;
	margin: auto;
}
ul,
li,
dl,
dt,
dd,
form {
    margin: 0px;
    padding: 0px;
    border: 0px;
    list-style: none;
    letter-spacing: normal;
    /* For IE 6/7 */
    *display: inline;
    *zoom: 1;
}
li::marker {
    margin: 0;
    padding: 0;
}
blockquote,
q {
    quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}
ins {
    /* remember to highlight inserts somehow! */
    text-decoration: none;
}
del {
    text-decoration: line-through;
}
table {
    /* markup tables with 'cellspacing="0"' */
    border-collapse: collapse;
    border-spacing: 0;
}
.alc {
    text-align: center !important;
}
.all {
    text-align: left !important;
}
.alr {
    text-align: right !important;
}
.floatL {
    float: left;
}
.floatR {
    float: right;
}
.clr {
    zoom: 1;
}
.clr:after {
    content: ' ';
    display: block;
    clear: both;
    height: 0;
}
.clearboth {
    clear: both !important;
}
.pc {
    display: block;
}
.sp {
    display: none;
}
a.disabled{
    pointer-events: none;
}
/*================================
header
================================*/
.header{
	position: fixed;
	width: 100%;
	background: #fff;
	z-index: 1000;
}
.header_list{
	max-width: 1200px;
	height: 110px;
	margin: auto;
	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.header_list_item_logo{
	max-width: 140px;
}
.header_list_item_logo a:hover{
	opacity: .6;
}
.header_list_item02{
	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;	
}
.header_list_item02_menu{
	position: relative;
}
.header_list_item02_menu dt{
	max-width: 180px;
	font-size: 18px;
	margin-right: 20px;
	padding-right: 22px;
	cursor: pointer;
	position: relative;
	transition: all 0.4s ease;
}
.header_list_item02_menu dt::after{
	content: '';
	width: 20px;
	height: 20px;
	position: absolute;
	bottom: -1px;
	right: 0;
	background: url("../img/arw_02.png") no-repeat top center / 100% auto;
	transition: all 0.4s ease;
}
.header_list_item02_menu dt:hover{
	color: #36bea3;
}
.header_list_item02_menu dt.on{
	color: #36bea3;
}
.header_list_item02_menu dt.on::after{
	transform: rotate(180deg);
}
.header_list_item02_menu dd{
	display: none;
	position: absolute;
	top: 30px;
	left: 0;
	width: calc(100% - 20px);
	z-index: 1;
}
.header_list_item02_menu_slist li a{
	display: block;
	font-size: 16px;
	line-height: 1.4;
	color: #fff;
	padding: 20px 10px;
	background: #36bea3;
	border-bottom: 2px solid #fff;
	transition: all 0.4s ease;
}
.header_list_item02_menu_slist li:last-child a{
	border-bottom: 0;
}
.header_list_item02_menu_slist li a:hover{
	background: #50d6bc;
}
/*.header_list_item02_company{
	margin-right: 20px;
}
.header_list_item02_company a{
	font-size: 18px;
}
.header_list_item02_company a:hover{
	color: #36bea3;
}*/
.header_list_item02_contact{
	min-width: 270px;
}
.header_list_item02_contact a{
	display: block;
	width: 100%;
	line-height: 50px;
	border-radius: 50px;
	background: #36bea3 url("../img/ico_contact.png") no-repeat left 20px center / 27px auto;
	font-size: 18px;
	font-weight: bold;
	color: #fff;
	text-align: center;
	padding: 0 10px 0 30px;
	transition: all 0.4s ease;
}
.header_list_item02_contact a:hover{
	background: #50d6bc url("../img/ico_contact.png") no-repeat left 20px center / 27px auto;
}
.header_list_spbtn{
	display: none;
}
.header_list_item02_menu a{
	display: block;
	font-size: 18px;
	padding-right: 20px;
}
/*================================
footer
================================*/
.footer{
	margin-top: 80px;
}
.pagetop{
	width: 110px;
    height: 110px;
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 5;
}
.pagetop a{
	display: block;
	background: #36bea3;
	border-radius: 50%;
	border: 2px solid #fff;
	position: relative;
    width: 110px;
    height: 110px;
}
.pagetop a:hover{
	background: #50d6bc;
}
.pagetop a::before {
    content: '';
	width: 25px;
	height: 30px;
	background: url("../img/pagetop.png") no-repeat top center / 100% auto;
	position: absolute;
    top: -25px;
    bottom: 0;
    right: 0;
    left: 0;
	margin: auto;
}
.pagetop a::after {
    content: 'PAGE TOP';
    font-size: 15px;
	font-weight: bold;
    color: #fff;
    position: absolute;
    top: 60px;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
}
.footer_contact{
	background: #e8fdf9 url("../img/bg_contact.png") no-repeat top center / 100% auto;
	padding: 160px 0 40px;
}
.footer_contact_inner{
	max-width: 1200px;
	margin: auto;
	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
	-ms-flex-wrap: wrap;
  	flex-wrap: wrap;
}
.footer_contact_item{
	width: 50%;
}
.footer_contact_item_logo{
	max-width: 220px;
	margin-bottom: 10px;
}
.footer_contact_item_address{
	font-size: 22px;
	font-weight: bold;
	line-height: 1.6;
}
.footer_contact_item02{
	width: 50%;
}
.footer_contact_item02_btn{
	margin-bottom: 30px;
}
.footer_contact_item02_btn a{
	display: block;
	width: 100%;
	background: #F22C3D;
	font-size: 24px;
	font-weight: bold;
	line-height: 70px;
	border-radius: 70px;
	color: #fff;
	text-align: center;
}
.footer_contact_item02_btn a:hover{
	background: #BF3F4A;
}
.footer_contact_item02_btn:last-child a{
	background: #F22C3D;
}
.footer_contact_item02_btn:last-child a:hover{
	background: #BF3F4A;
}
.footer_contact_item02_btn a span{
	display: inline-block;
	position: relative;
}
.footer_contact_item02_btn a span::before{
	content: '';
	display: inline-block;
	width: 24px;
	height: 27px;
	background: url("../img/ico_tel.png") no-repeat top center / 100% auto;
	vertical-align: middle;
	margin-right: 5px;
}
.footer_contact_item02_btn:last-child a span::before{
	content: '';
	display: inline-block;
	width: 27px;
	height: 32px;
	background: url("../img/ico_contact.png") no-repeat top center / 100% auto;
	vertical-align: middle;
	margin-right: 5px;
}
.footer_btm{
	background: #36bea3;
	padding: 60px 0 30px;
}
.footer_btm_inner{
	max-width: 1200px;
	margin: auto;
}
.footer_btm_menu{
	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
  	flex-wrap: wrap;
	margin-bottom: 40px;
}
.footer_btm_menu_item dt a{
	display: block;
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 20px;
	color: #fff;
}
.footer_btm_menu_item dd a{
	display: block;
	font-size: 20px;
	margin-bottom: 20px;
	position: relative;
	color: #fff;
}
.footer_btm_menu_item dd a::before{
	content: '';
	display: inline-block;
	vertical-align: middle;
	width: 20px;
	height: 20px;
	background: url("../img/arw_01.png") no-repeat top center / 100% auto;
	margin-right: 5px;
}
.footer_btm_menu_item dt a:hover,
.footer_btm_menu_item dd a:hover{
	text-decoration: underline;
}
.footer_btm_copy{
	font-size: 16px;
	text-align: center;
	color: #fff;
}
main{
	padding-top: 110px;
}
@media only screen and (max-width: 1024px) {
    body {
        min-width: 100%;
    }
	.pc {
        display: none!important;
    }
    .sp {
        display: block!important;
    }
	
	/*================================
	header
	================================*/
	html.on {
		height: 100%;
		overflow: hidden;
	}
	.header_list{
		height: 60px;
		max-width: 100%;
		width: 94%;
	}
	.header_list_item_logo{
		max-width: 100px;
	}
	.header_list_spbtn{
		display: block;
		position: absolute;
		cursor: pointer;
		width: 34px;
	    height: 28px;
		top: 50%;
		right: 3%;
		border: 0;
		background: none;
		transform: translateY(-50%);
	}
	.header_list_spbtn span{
		position: absolute;
		width: 32px;
		border-top: 3px solid #36bea3;
		right: 0;
		left: 0;
		margin: auto;
		display: block;
		transition: all 0.2s ease;
	}
	.header_list_spbtn span.line1{
		top: 0;
	}
	.header_list_spbtn span.line2{
		top: 10px;
	}
	.header_list_spbtn span.line3{
		top: 20px;
	}
	.header_list_spbtn.on span{
		border-color: #36bea3;
	}
	.header_list_spbtn.on span.line1{
		top: 10px;
		transform: rotate(45deg);
	}
	.header_list_spbtn.on span.line2{
		opacity: 0;
	}
	.header_list_spbtn.on span.line3{
		top: 10px;
		transform: rotate(-45deg);
	}
	.header_menu_bg{
		position: fixed;
		left: 0;
		top: 60px;
		width: 100vw;
		height: 100vh;
		background: #e8fdf9;
		opacity: 0;
		visibility: hidden;
		transition: all 0.6s;
		cursor: pointer;
		z-index: -1;
	}
	.header_list_item02.on .header_menu_bg{
		opacity: 1;
		visibility: visible;
	}
	.header_list_item02{
		position: fixed;
		top: 60px;
		left: 0;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		width: 100%;
		height: 100%;
		transition: all 0.2s ease;
		overflow: scroll;
		opacity: 0;
		visibility: hidden;
		padding: 40px 5% 80px;
	}
	.header_list_item02.on{
		opacity: 1;
		visibility: visible;
	}
	.header_list_item02_menu{
		width: 100%;
		border-bottom: 2px solid #fff;
	}
	.header_list_item02_menu dt{
		margin-right: 0;
		max-width: 100%;
		background: #36bea3;
		padding: 20px 10px;	
		color: #fff;
		font-weight: bold;
	}
	.header_list_item02_menu dt::after{
		top: 0;
		bottom: 0;
		right: 10px;
		margin: auto;
		background: url(../img/arw_01.png) no-repeat top center / 100% auto;
		transform: rotate(90deg);
		transition: all 0.4s ease;
	}
	.header_list_item02_menu dt:hover{
		color: #fff;
	}
	.header_list_item02_menu dt.on{
		color: #fff;
	}
	.header_list_item02_menu dt.on::after {
   		transform: rotate(270deg);
	}
	.header_list_item02_menu dd{
		position: relative;
		top: 0;
		width: 100%;
	}
	.header_list_item02_menu_slist li a{
		background: #50d6bc;
		position: relative;
		font-weight: bold;
	}
	.header_list_item02_menu_slist li:last-child a{
		border-bottom: 0;
	}
	.header_list_item02_menu_slist li a::after{
		display: block;
		position: absolute;
		top: 0;
		bottom: 0;
		right: 10px;
		margin: auto;
		content: '';
		width: 20px;
		height: 20px;
		background: url(../img/arw_01.png) no-repeat top center / 100% auto;
	}	
	/*.header_list_item02_company{
		width: 100%;
		margin: 0;
		border-bottom: 2px solid #fff;
	}
	.header_list_item02_company a{
		display: block;
		background: #36bea3;
		padding: 20px;
		color: #fff;
		position: relative;
		font-weight: bold;
	}	
	.header_list_item02_company a:hover{
		color: #fff;
	}
	.header_list_item02_company a::after{
		display: block;
		position: absolute;
		top: 0;
		bottom: 0;
		right: 10px;
		margin: auto;
		content: '';
		width: 20px;
	    height: 20px;
		background: url(../img/arw_01.png) no-repeat top center / 100% auto;
	}*/
	.header_list_item02_contact{
		min-width: 100%;
		margin-top: 20px;
	}
	.header_list_item02_contact a{
		line-height: 60px;
	}
	/*================================
	footer
	================================*/
	.footer{
		margin-top: 60px;
	}
	.pagetop{
		right: 2%;
		bottom: 2%;
	}
	.footer_contact{
		padding: 80px 5% 40px;
	}
	.footer_contact_item{
		width: 100%;
		margin-bottom: 40px;
	}
	.footer_contact_item02{
		width: 100%;
	}
	.footer_contact_item_logo{
		max-width: 180px;
	}
	.footer_contact_item_address{
		font-size: 18px;
	}
	.footer_contact_item02_btn{
		margin-bottom: 15px;
	}
	.footer_contact_item02_btn a{
		font-size: 18px;
	}
	.footer_btm{
		padding: 40px 5% 20px;
	}
	.footer_btm_menu{
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		margin-bottom: 0;
	}
	.footer_btm_menu_item{
		width: 48%;
		margin-bottom: 20px;
	}
	.footer_btm_menu_item dt a{
		font-size: 18px;
		line-height: 1.2;
		margin-bottom: 10px;
	}
	.footer_btm_menu_item dd a{
		font-size: 16px;
		line-height: 1.2;
		margin-bottom: 10px;
		text-indent: -1.3em;
   		padding-left: 1em;
	}
	.footer_btm_menu_item dd a::before{
		width: 16px;
    	height: 16px;
	}
	.footer_btm_copy{
		font-size: 12px;
	}
	main{
		padding-top: 60px;
	}
}