@charset "utf-8";


/*resetCSS*/
html{
font-size: 62.5%;
-webkit-text-size-adjust: 100%;
color:#333333;
background:#FFF;
}
body,div,
dl,dt,dd,ul,ol,li,
h1,h2,h3,h4,h5,h6,
form,fieldset,input,textarea,
p,
th,td{
margin:0;
padding:0;
}
table{
border-collapse:collapse;
border-spacing:0;
}
fieldset,
img{ border:0; }
address,
caption,
em{
font-style:normal;
font-weight:normal;
}
ol,ul{ list-style:none; }
caption, th{ text-align:left; }
h1,h2,h3,h4,h5,h6{
font-size:100%;
font-weight:normal;
}
q:before,q:after{ content:''; }
abbr,acronym{
border:0;
font-variant:normal;
}
sup{ vertical-align:text-top; }
sub{ vertical-align:text-bottom; }
input,textarea,select{
font-family:inherit;
font-size:inherit;
font-weight:inherit;
*font-size:100%;
}
*{
margin:0;
padding:0;
}
strong,
th{ font-weight:bold;}

#content{ }
.section{
clear:both;
margin-bottom:30px;
}

body{
font-size:1.6rem;
font-family: 'Zen Maru Gothic', sans-serif;
}

*, *:before, *:after{
-webkit-box-sizing:border-box;
-moz-box-sizing:border-box;
-o-box-sizing:border-box;
-ms-box-sizing:border-box;
box-sizing:border-box;
}

h1{
font-size:6.2rem;
font-weight:bold;
margin-bottom:30px;
}
h2{
font-size:4.2rem;
font-weight:bold;
margin-bottom:1.5em;
}
h2 span{ }
h3{
font-size:24px;
font-weight:bold;
margin-bottom:15px;
}
h3 span{ }
h4{
font-size:95%;
font-weight:bold;
margin-bottom:15px;
}
h5{
font-size:90%;
font-weight:bold;
margin-bottom:10px;
}
p,ul,ol,dl{
font-size:16px;
margin-bottom:1.5em;
line-height:160%; }
.anchor a{ }

a{
text-decoration: none;
color: #2CBB99;
}
a:hover{
text-decoration:underline;
}
a:hover img{
opacity: 0.7;
transition: all .3s;
}

/*clear Fix*/
.clearFix:after{
content:".";
display:block;
height:0;
clear:both;
visibility:hidden;
}
.clearFix{
display:inline-table;
min-height:1%;
}
* html .clearFix{
height:1%;
}
.clearFix{
display:
block;
}
/* フォント指定
=========================================================================================== */

@font-face {
    font-family:'HuiFontP109';
    src: url('../fonts/HuiFontP109.woff') format('woff'),
	     url('../fonts/HuiFontP109.ttf')  format('truetype'),
         url('../fonts/HuiFontP109.eot') format('embedded-opentype');
}
/*--------------------ここまで-----------------------------------*/
/* Header Setting
=========================================================================================== */
#headerSet{
	position:fixed;
	top:0;
	left:0;
	width: 100%;
	z-index:999;
	padding:24px 4% 0;
	display: flex;
    justify-content: flex-end;
	align-items: center;
	transition: all .3s;
}
#headerSet #headerLogoSet{
	margin-right:auto;
}
#headerSet #headerLogoSet #headerLogo{
	margin-bottom: 0;
    position: relative;
    z-index: 9999;
}
#headerSet #headerLogoSet #headerLogo p{
    margin-bottom: 0;
    font-size: 14px;
    font-weight: normal;
    color: #FFF;
    text-shadow:2px 2px 4px rgba(0,0,0,0.8);
}
#headerSet #headerLogoSet #headerLogo a{
    display: flex;
    align-items: center;
    color: #FFF;
	text-decoration:none;
	transition: all .3s;
}
#headerSet #headerLogoSet #headerLogo a:hover{
	opacity:0.7;
}
#headerSet #headerLogoSet #headerLogo a span{
	font-size: 16px;
    padding: 10px;
    line-height: 1.2;
    margin-right: 16px;
    font-weight: normal;
    display: block;
    background: #007998;
    
}
#headerSet #headerLogoSet #headerLogo a strong{
    font-size: 48px;
    text-shadow:2px 2px 4px rgba(0,0,0,0.8);
}
#headerSet #headerMenuSet{
    background: #FFF;
    display: flex;
    align-items: center;
    padding: 0 1em 0 2em;
    border-radius: 3em;
}
#headerSet #headerMenuSet .gnav ul{
	display: flex;
    align-items: center;
	justify-content: flex-end;
	font-size:16px;
    margin-bottom: 0;
}
#headerSet #headerMenuSet .gnav ul li{
	padding:1em 1.5em;
    display: flex;
    align-items: center;
    justify-content: center;
}
#headerSet #headerMenuSet .gnav ul li:last-child{
    padding-right: 0;
}
#headerSet #headerMenuSet .gnav ul li a{
	color:#333;
	text-decoration:none;
	position: relative;
	transition: all .3s;
}
#headerSet #headerMenuSet .gnav ul li a:hover{
	color:#2CBB99;
}

#headerSet #headerMenuSet .gnav ul li a:after {
	position: absolute;
	bottom: -0.5em;
	left: 0;
	content: '';
	width: 100%;
	height: 2px;
	background: #2CBB99;
	transform: scale(0, 1);
	transform-origin: center top;
	transition: transform .3s;
}
#headerSet #headerMenuSet .gnav ul li a:hover:after {
	transform-origin: center top;
	transform: scale(1, 1);
}

#headerSet #headerMenuSet .gnav ul li.drop a:after{
    content: none;
}
#headerSet #headerMenuSet .gnav ul li.headerContact a:after{
    content: none;
}

/*****サブメニュー*****/
#headerSet #headerMenuSet .gnav ul .drop{
	position: relative;
}
#headerSet #headerMenuSet .gnav ul .drop > a{
	cursor: pointer;
}
#headerSet #headerMenuSet .gnav ul .drop .childMenu{
	position: absolute;
    top: 40px;
	left:50%;
	display:block;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
	transform: translateX(-50%);
	visibility: hidden;
    opacity: 0;
    z-index: 1;
}
#headerSet #headerMenuSet .gnav ul .drop .childMenu:before{
	content: "";
    position: absolute;
	top: -24px;
    left:50%;
	transform: translateY(0) translateX(-50%);
	border: 12px solid transparent;
	border-bottom: 12px solid #2CBB99;
}
#headerSet #headerMenuSet .gnav ul .drop .childMenu li{
	border-left:none;
	text-align:center;
	float:none;
	border-bottom:1px dashed #FFF;
	padding:0;
}
#headerSet #headerMenuSet .gnav ul .drop .childMenu li:last-child{
	border:none;
}
#headerSet #headerMenuSet .gnav ul .drop .childMenu li a{
	color:#FFF;
	background: #2CBB99;
	padding:1em;
	display:block;
	width:200px;
}
#headerSet #headerMenuSet .gnav ul .drop .childMenu li a:hover{
	background:#16896d;
}
#headerSet #headerMenuSet .gnav ul .drop:hover .childMenu{
	display:block;
	top: 52px;
	left: 50%;
    visibility: visible;
    opacity: 1;
}
/*****ここまで*****/



#headerSet #headerMenuSet .gnav ul li.headerContact a{
    background: #2CBB99;
    color: #FFF;
    padding: 0.8em 2em;
    border-radius: 3em;
    display: inline-flex;
    align-items: center;
    transition: all .3s;
}
#headerSet #headerMenuSet .gnav ul li.headerContact a:hover{
    background: #16896d;
}

#headerSet #headerMenuSet .gnav ul li.headerContact a:before{
	content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url(../images/icon_mail.svg);
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 10px;
    vertical-align: middle;
}

/*#headerSet #headerMenuSet .headerTel{
    margin-left: 1.5em;
}
#headerSet #headerMenuSet .headerTel a p{
    font-size: 14px;
    line-height: 1;
    margin-bottom: 5px;
}
#headerSet #headerMenuSet .headerTel a p span{
	color:#FFF;
    font-size: 12px;
    background: #007998;
    padding: 6px 10px;
    margin-right: 5px;
    display: inline-block;
}
#headerSet #headerMenuSet .headerTel a strong{
    font-size: 24px;
    line-height: 1;
}
#headerSet #headerMenuSet .headerTel a strong:before{
	content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url(../images/icon_tel.svg);
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 10px;
    vertical-align: middle;
}
#headerSet #headerMenuSet .headerTel a strong span{
    display: inline-block;
    vertical-align: middle;
}*/
/* ALL Setting
=========================================================================================== */
/***メインビジュアル***/
#subContentsHead{
	background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
	margin-bottom:1em;
    position: relative;
}
#subContentsHead:after{
    content: "";
    display: block;
    width: 100%;
    height: 34px;
	background: url(../images/mv_bottom.png) repeat-x top center / contain;
	background-size:1018px 34px;
    position: absolute;
    left: 0;
    bottom: 0;
}
#subContentsHead.newsHead{
	background-image:url(../images/news/mainvisual.jpg);
}
#subContentsHead.facilityHead{
	background-image:url(../images/facility/mainvisual.jpg);
}
#subContentsHead.philosophyHead{
	background-image:url(../images/philosophy/mainvisual.jpg);
}
#subContentsHead.corporationHead{
	background-image:url(../images/corporation/mainvisual.jpg);
}
#subContentsHead.recruitHead{
	background-image:url(../images/recruit/mainvisual.jpg);
}
#subContentsHead.workexperienceHead{
	background-image:url(../images/workexperience/mainvisual.jpg);
}
#subContentsHead.practiceHead{
	background-image:url(../images/practice/mainvisual.jpg);
}
#subContentsHead.faqHead{
	background-image:url(../images/faq/mainvisual.jpg);
}
#subContentsHead.privacypolicyHead{
	background-image:url(../images/privacypolicy/mainvisual.jpg);
}
#subContentsHead.complaintHead{
	background-image:url(../images/complaint/mainvisual.jpg);
}
#subContentsHead.contactHead{
	background-image:url(../images/contact/mainvisual.jpg);
}



#subContentsHead .mainVisual{
	height: 54vh;
	position:relative;
	min-height: 380px;
}
#subContentsHead .mainVisual .mainTitle{
	font-size:3.8rem;
    text-align: center;
	white-space: nowrap;
	font-weight:bold;
	margin-bottom:0;
	text-shadow:4px 4px 6px rgba(0,0,0,0.8);
	color:#FFF;
	position: absolute;
    left:50%;
    top: 50%;
    transform:translateY(-50%) translateX(-50%);
}
#subContentsHead .mainVisual .mainTitle span{
	font-size:16px;
	display:block;
    color: #2CBB99;
}
/**パンくず**/
#path{
	max-width:1100px;
	margin:0 auto;
	display: flex;
    align-items: center;
	justify-content: flex-start;
	font-size:14px;
	margin-bottom: 1em;
}
#path li a{
	color:#2CBB99;
}
#path li:after{
	content:"/";
	padding:0 1em;
}
#path li a img{
	vertical-align:middle;
}
#path li:last-child:after{
	content:none;
}



article section{
	padding:60px 0;
	width:1100px;
	margin:0 auto;
}
main article:last-child section{
    padding-bottom: 160px;
}
.ttlStyle1{
    font-size: 3.2rem;
    text-align: center;
}
.ttlStyle1 span{
    font-family:"HuiFont","HuiFontP109";
    color: #2CBB99;
    display: block;
    font-size: 16px;
    font-weight: normal;
}
.ttlStyle1 em{
    color: #2CBB99;
    display: block;
    font-size: 16px;
}
.ttlStyle2{
    font-size: 2.8rem;
    color: #2CBB99;
    text-align: center;
}
.ttlStyle2 span{
    font-size: 18px;
    display:block;
}
.ttlStyle3{
    background: #2CBB99;
    padding: 0.5em 2em;
    font-size: 18px;
    color: #FFF;
    border-radius: 3em;
    margin-bottom: 1.5em;
}
.rightAdjust{
    text-align: right;
}
.centerAdjust{
    text-align: center;
}
.imgOnlyStyle img{
    max-width: 100%;
}
.anchor{
    display: block;
    padding-top: 100px;
    margin-top: -100px;
	pointer-events: none;
}
.bgPatternB{
    background-repeat: repeat;
	background-image:url(../images/bg_pattern_b.gif);
}
.btnStyle1 a{
	text-decoration:none;
	position:relative;
	padding-right:54px;
	font-size:16px;
    transition: all .3s;
}
.btnStyle1 a:hover{
	color:#16896d;
}
.btnStyle1 a:before{
	content: "";
	display: inline-block;
	background:#2CBB99;
	width:40px;
	height:40px;
	border-radius: 50%;
	position:absolute;
    top: 50%;
	right:0;
	transform: translateY(-50%);
	transition: all .3s;
}
.btnStyle1 a:after{
	content: "";
	background-image: url(../images/icon_arrow_w.svg);
	background-size: contain;
	background-repeat: no-repeat;
	vertical-align: middle;
    width: 14px;
    height: 14px;
	position: absolute;
    top: 50%;
    right: 13px;
	transform: translateY(-50%);
}
.btnStyle1 a:hover:before{
	background:#16896d;
	width:50px;
	height:50px;
	top:48%;
	right:-5px;
}

.btnStyle2 a{
	font-size:16px;
	text-decoration:none;
	background:#FCF6BE;
	display:inline-block;
    border-radius: 3em;
	padding:1.2em 4em;
	color:#2CBB99;
    border: 2px solid #2CBB99;
	min-width: 200px;
	text-align: center;
	transition: all .3s;
	position:relative;
}
.btnStyle2 a:before {
    content: "";
    display: inline-block;
    background-image: url(../images/icon_arrow_r.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    right: 1em;
    transform: translateY(-50%);
    transition: all .3s;
}
.btnStyle2 a:hover{
	background: #16896d;
    color: #FFF;
    border: 2px solid #16896d;
}
.btnStyle2 a:hover:before{
    background-image: url(../images/icon_arrow_r_h.svg);
}

.btnStyle3 a{
    font-size:16px;
	text-decoration:none;
	background:#2CBB99;
	display:inline-block;
    border-radius: 20px;
	padding:1.5em 1em;
	color:#FFF;
	min-width: 360px;
	text-align: center;
	transition: all .3s;
	position:relative;
}
.btnStyle3 a:before {
    content: "";
    display: inline-block;
    background-image: url("../images/icon_arrow2_r.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    right: 1em;
    transform: translateY(-50%);
    transition: all .3s;
}
.btnStyle3 a:hover{
	background: #16896d;
}
.btnStyle3.pdf a:before{
    background-image: url("../images/icon_pdf.svg");
}


.btnListStyle1{
    display: flex;
}
.btnListStyle1 li{
    width: 30%;
    margin-left: 5%;
    margin-bottom: 1.5em;
    display: flex;
}
.btnListStyle1 li:nth-child(3n+1){
	margin-left:0;
}
.btnListStyle1 li a{
    background:#2CBB99;
    color: #FFF;
    padding: 1em 2.5em 1em 1em;
    width: 100%;
	border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-decoration: none;
	transition: all .3s;
}
.btnListStyle1 li a:before{
    content: "";
    display: inline-block;
    background-image: url("../images/icon_arrow_r_h.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 50%;
    right: 1em;
    transform: translateY(-50%);
	transition: all .3s;
}
.btnListStyle1 li a:hover{
	background:#16896d;
}
.btnListStyle1 li.newWin a:before{
    background-image: url("../images/icon_newwin.svg");
}
.btnListStyle1 li.pdf a:before{
    background-image: url("../images/icon_pdf.svg");
}



.btnListStyle2{
    display: flex;
	flex-wrap:wrap;
}
.btnListStyle2 li{
    width: 32%;
    margin-left: 2%;
    margin-bottom: 1.5em;
    display: flex;
}
.btnListStyle2 li:nth-child(3n+1){
	margin-left:0;
}
.btnListStyle2 li a{
    background:#2CBB99;
    color: #FFF;
    padding: 1em 3em 1em 1em;
    width: 100%;
	border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-decoration: none;
	transition: all .3s;
}
.btnListStyle2 li a:before{
    content: "";
    display: inline-block;
    background-image: url("../images/icon_arrow_r_h.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 50%;
    right: 1em;
    transform: translateY(-50%);
	transition: all .3s;
}
.btnListStyle2 li a:hover{
	background:#16896d;
}
.btnListStyle2 li.newWin a:before{
    background-image: url("../images/icon_newwin.svg");
}
.btnListStyle2 li.pdf a:before{
    background-image: url("../images/icon_pdf.svg");
}


.btnListStyle3{
    display: flex;
	flex-wrap:wrap;
}
.btnListStyle3 li{
    width: 32%;
    margin-left: 2%;
    margin-bottom: 1.5em;
    display: flex;
}
.btnListStyle3 li:nth-child(3n+1){
	margin-left:0;
}
.btnListStyle3 li a{
    border:2px solid #2CBB99;
    color: #2CBB99;
    padding: 1em 3em 1em 1em;
    width: 100%;
	min-height:86px;
	border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-decoration: none;
	transition: all .3s;
}
.btnListStyle3 li a:before{
    content: "";
    display: inline-block;
    background-image: url("../images/icon_arrow_r_h.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 50%;
    right: 1em;
    transform: translateY(-50%);
	transition: all .3s;
}
.btnListStyle3 li a:hover{
	background:#2CBB99;
	color:#FFF;
}
.btnListStyle3 li.pdf a:before{
    background-image: url("../images/icon_pdf_g.svg");
	transition: all .3s;
}
.btnListStyle3 li.pdf a:hover:before{
	background-image: url("../images/icon_pdf.svg");
}








.listStyle1{
    list-style: disc;
    padding-left: 1em;
}
.olListStyle1{
    list-style-type: decimal;
    padding-left: 1em;
}
.dlListStyle1 dt{
    background: #2CBB99;
    color: #FFF;
    padding: 0.5em 1em;
    display: inline-block;
    min-width: 200px;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 1em;
}
.dlListStyle1 dd{
    margin-bottom: 2em;
}
.dlListStyle1 dd a{
    font-size: 2.8rem;
    color: #333;
	margin-right:1em;
    display: inline-block;
}
.dlListStyle1 dd a:before{
    content: "";
    background-image: url(../images/icon_tel.svg);
    display: inline-block;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 24px;
    height: 24px;
    margin-right: 0.5em;
    vertical-align: bottom;
}

.columnTopSet{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2em;
}
.column2{
	width:48%;
	margin-left:4%;
}
.column2:nth-child(2n+1){
	margin-left:0;
}
.column2 img{
	width:100%;
}



.newsList{
    margin-bottom: 3em;
}
.newsList li{
    border-bottom: 1px dashed #BFB0A5;
}
.newsList li a{
	color: #3D4060;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	text-decoration:none;
	transition: all .3s;
	padding:1em 0;
}
.newsList li a:hover{
	background:#F7F7F7;
}
.newsList li span{
	margin-right:1.5em;
}
.newsList li span.cate{
	color:#FFF;
	display:inline-block;
	padding:0.5em 1em;
	text-decoration:none;
    min-width: 130px;
    text-align: center;
    background: #2CBB99;
    border-radius: 10px;
}
.newsList li .ttl{
	font-weight:normal;
	margin-bottom:0;
	font-size:16px;
}



.categoryList{
	font-size:16px;
	display: flex;
    justify-content: flex-start;
	flex-wrap: wrap;
	margin-bottom:0;
}
.categoryList li{
	width: 30%;
    margin-left: 5%;
    margin-bottom: 1.5em;
	display: flex;
}
.categoryList li:nth-child(3n+1){
	margin-left:0;
}
.categoryList li a{
	display: flex;
    align-items: center;
    justify-content: center;
	text-align:center;
	padding:1.5em 1em;
	background:#2CBB99;
    border-radius: 20px;
	color:#FFF;
	text-decoration:none;
	position:relative;
	width: 100%;
	font-size:1.6rem;
	transition: all .3s;
}
.categoryList li a:hover{
	background:#16896d;
}
.categoryList li.current-cat a{
	background:#16896d;
}

.categoryList li a:before {
    content: "";
    display: inline-block;
    background-image: url("../images/icon_arrow_r_h.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 18px;
    height: 18px;
    position: absolute;
    top: 50%;
    right: 1em;
    transform: translateY(-50%);
	transition: all .3s;
}


/* news-single Setting
=========================================================================================== */
.singleDetailList{
	display: flex;
    align-items: center;
    justify-content: flex-start;
	margin-bottom:1em;
}
.singleDetailList .data{
	font-size:14px;
}
.singleDetailList .cate{
	display:inline-block;
	background:#2CBB99;
	color:#FFF;
	font-size:16px;
	padding:0 1em;
	margin-left:1em;
    border-radius: 10px;
}
#singlePage .singleTtl {
    font-size: 2.4rem;
    padding-bottom: 0.5em;
    border-bottom: 2px dashed #2CBB99;
}


/***ページネーション***/
.pager{
	padding:0 0 40px;
}
.pager  ul.pagination {
	display: flex;
    align-items: center;
    justify-content: center;
}

.pager .pagination li {
	font-size:14px;
	margin: 0 10px;
	padding: 0;
	display: inline-block;
	width: 60px;
	height: 60px;
}
.pager .pagination li.back{
	width: 140px;
}
.pager .pagination li.back a{
	background: #2CBB99;
	color:#FFF;
}
.pager .pagination li.back a:hover{
	background:#16896d;
}
.pager .pagination li.next{
	width: 140px;
	position:relative;
}
.pager .pagination li.next a{
	background: #2CBB99;
	color: #FFF;
}
.pager .pagination li.next a:hover{
	background:#16896d;
	color: #FFF;
}
.pager .pagination li a{
	width: 100%;
	height: 100%;
	color: #FFF;
	background: #2CBB99;
	text-decoration: none;
	display: flex;
    align-items: center;
    justify-content: center;
	border-radius: 10px;
}

.pager .pagination li a:hover{
	background: #16896d;
	transition: all .3s;
}
.pager .pagination li.active a{
	color: #FFF;
	background: #CCCCCC;
	transition: all .3s;
}
/***singleページネーション***/
.page-nav{
	margin:4em 0;
}
.pageColumnSet:after{
	content: "";
    display: block;
    clear: both;
}
.pageColumnSet a{
	color: #FFF;
	font-size:16px;
	background:#2CBB99;
	padding:1em 3em;
	text-decoration:none;
	display: block;
	border-radius: 3em;
}
.pageColumnSet a:hover{
	color: #FFF;
	background: #16896d;
	transition: all .3s;
}
.pageColumnSet .prev-link{
	float:left;
}
.pageColumnSet .next-link{
	float:right;
}


/* facility Setting
=========================================================================================== */
.facilitySet a{
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    background: url("../images/bg_pattern_a.jpg");
    background-size: cover;
	background-position: center;
    border-radius: 40px;
    padding: 2em 6%;
    color: #333;
    text-decoration: none;
    transition: all .3s;
}
.facilitySet a:hover{
    opacity: 0.7;
}
.facilitySet .facilityText{
    width: 48%;
}
.facilitySet .facilityText h2{
    font-size: 2.8rem;
    margin-bottom: 1em;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.facilitySet .facilityText h2 span{
    font-size: 60%;
}
.facilitySet .facilityText h2:after{
    content: "";
    display: inline-block;
    background-image: url("../images/icon_arrow_r.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 28px;
    height: 28px;
    margin-left: 0.5em;
}
.facilitySet .facilityText h3{
    margin-bottom: 0.5em;
}
.facilitySet .facilityText h3 span{
    background: #2CBB99;
    color: #FFF;
    border-radius: 6px;
    padding: 0.2em 1.5em;
    display: inline-block;
    font-size: 16px;
}
.facilitySet .facilityText p{
    margin-bottom: 0.5em;
}
.facilitySet .facilityText .facilityList li{
    margin-bottom: 0.5em;
}
.facilitySet .facilityText .facilityList li span{
    background: #DCDCDC;
    font-size: 14px;
    border-radius: 6px;
    padding: 0em 1em;
    display: inline-block;
    margin-right: 1em;
}
.facilitySet .facilityText .facilityList li.facilityTel{
    display: inline-block;
}
.facilitySet .facilityText .facilityList li.facilityFax{
    display: inline-block;
    margin-left: 1em;
}
.facilitySet .facilityImg{
    width: 48%;
    margin-left: 4%;
}
.facilitySet .facilityImg .imgOnlyStyle{
    margin-bottom: 0;
    font-size: 0;
}
.facilitySet .facilityImg .imgOnlyStyle img{
    border-radius: 20px;
}
.facilitySet a:hover .facilityImg .imgOnlyStyle img{
    opacity: 1;
}

/* philosophy Setting
=========================================================================================== */
/*.philosophy_bg:before{
	content:"";
	display:block;
	width:100%;
    min-height: 500px;
	height:30vw;
	position:absolute;
	left:0;
	top:0;
	background-image: url(../images/philosophy/philosophy_bg.jpg);
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
	z-index:-1;
}*/
.philosophy_bg .philosophyInner{
    background: #FFF;
    /*padding: 4em 0 2em;
    border-radius: 40px 40px 0 0;
    margin-top: 22vw;*/
    margin-bottom: 2em;
    position: relative;
}
.philosophy_bg .philosophyInner:after{
    content:"";
	position:absolute;
    bottom: 0;
    right: 0;
	display:inline-block;
	width:130px;
	height:130px;
	background-image: url(../images/philosophy/hana.svg);
	background-size: cover;
	background-position: center;
    background-repeat: no-repeat;
    transform:translateY(50%) translateX(50%);
    
}
.philosophy_bg .philosophyInner h2{
    color: #2CBB99;
    font-size: 2.8rem;
    text-align: center;
}


.columnSetAB.typeA{
	display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    align-items: center;
	margin-bottom: 4em;
}
.columnSetAB.typeB{
	display: flex;
    justify-content: center;
	margin-bottom: 4em;
    align-items: center;
}

.columnSetAB:last-child{
	margin-bottom:0;
}
.columnSetAB.typeA .columnText{
	width:48%;
	margin-left:4%;
}
.columnSetAB.typeA .columnImg{
	width:48%;
}
.columnSetAB.typeB .columnText{
	width:48%;
}
.columnSetAB.typeB .columnImg{
	width:48%;
	margin-left:4%;
}
.columnSetAB .columnImg img{
	width:100%;
    border-radius: 40px;
}
.columnSetAB .columnText h3{
	display:block;
    font-size: 2.4rem;
    color: #2CBB99;
    text-align: center;
    margin-bottom: 2em;
}

.columnSetAB .columnText h3 span{
	background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
	background-image:url(../images/philosophy/circle.svg);
	width:58px;
	height:58px;
	display:block;
    text-align: center;
	color:#FFF;
	font-size:24px;
	line-height:58px;
	margin: 0 auto;
    margin-bottom: 1em;
}


.fukidashiTtl{
    color: #2CBB99;
    font-size: 2.8rem;
    text-align: center;
}
.fukidashiTtl span{
    background: #FFF;
    border-radius: 3em;
    display: inline-block;
    padding: 0.5em 2em;
    border: 2px solid #2CBB99;
    position: relative;
}
.fukidashiTtl span:before {
    content: "";
    position: absolute;
    right: 0;
    bottom: -16px;
    left: 0;
    width: 0px;
    height: 0px;
    margin: auto;
    border-style: solid;
    border-color: #3BAB7E transparent transparent transparent;
    border-width: 16px 18px 0 18px;
}
.fukidashiTtl span:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -14px;
    left: 0;
    width: 0px;
    height: 0px;
    margin: auto;
    border-style: solid;
    border-color: #FFF transparent transparent transparent;
    border-width: 14px 16px 0 16px;
}

.philosophyList{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.philosophyList li{
    width: 30%;
    margin-left: 5%;
    text-align: center;
}
.philosophyList li:nth-child(3n+1){
    margin-left: 0;
}
.philosophyList li .imgOnlyStyle{
    width: 66%;
    margin-left: auto;
    margin-right: auto;
}
.philosophyList li p{
    font-size: 14px;
}


/* corporation Setting
=========================================================================================== */
.corporationTableSet{
    text-align: center;
}
.corporationTable{
    display: inline-block;
	font-size: 16px;
    margin: 0 auto;
    text-align: left;
    margin-bottom: 2em;
}
.corporationTable th{
	padding:1em;
    vertical-align: top;
}
.corporationTable td{
	padding:1em;
}
.corporationTable .dlCorporationList dt:before{
    content: "■";
    color: #2CBB99;
}

.corporationTable .dlCorporationList dd{
    margin-left: 1em;
}
.corporationTable .dlCorporationList dd ul{
    padding-left: 1.5em;
    list-style: disc;
    line-height: 2em;
}

.sloganBox{
	background:#F2F2F2;
	padding:2em 4%;
	margin-bottom:4em;
}
.sloganBox h3{
	text-align:center;
}
.sloganBox h4{
	font-size:18px;
}

.map{
	border:4px solid #2CBB99;
	border-radius: 40px;
	font-size: 0;
	overflow:hidden;
	margin-bottom: 30px;
}
.map iframe{
	width: 100%;
}


.historyArea{
    background-image: url(../images/corporation/history_bg.jpg);
	background-size: cover;
	background-position: center;
}
.historyArea .ttlStyle1{
    color: #FFF;
}
.historyArea .ttlStyle1 span{
    color: #FFF;
}
.historyArea .historySet{
    /*border-left: 4px solid #FFF;*/
    width: 80%;
    margin: 0 auto;
    position: relative;
    z-index: 0;
}
.historyArea .historySet:before{
    content: "";
    display: block;
    width: 4px;
    height: 96%;
    background: #FFF;
    position: absolute;
    left: 12px;
    top: 10px;
    z-index: -1;
    
}
.historyArea .historyList{
    display: flex;
    flex-wrap: wrap;
    color: #FFF;
}
.historyArea .historyList dt{
    width: 28%;
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 2em;
	white-space: nowrap;
}
.historyArea .historyList dt:before{
    content: "●";
    color: #F3EB98;
    margin-right: 0.5em;
}
.historyArea .historyList dt:last-of-type,
.historyArea .historyList dd:last-of-type{
    margin-bottom: 0;
}
.historyArea .historyList dd{
    width: 68%;
    margin-left: 4%;
    margin-bottom: 2em;
}
.historyArea .historyList dd strong{
    display: block;
    font-size: 20px;
    margin-bottom: 1em;
}

/* recruit Setting
=========================================================================================== */
.recruitEntryList{
    display: flex;
}
.recruitEntryList li{
    width: 30%;
    margin-left: 5%;
    text-align: center;
    display: flex;
}
.recruitEntryList li:first-child{
    margin-left: 0;
}
.recruitEntryList li a{
    background: url("../images/bg_pattern_a.jpg");
    background-size: cover;
	background-position: center;
    width: 100%;
    padding: 1em;
    border-radius: 20px;
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
    position: relative;
}
.recruitEntryList li a:hover{
    opacity: 0.7;
}
.recruitEntryList li a strong{
    font-size: 18px;
    display: block;
    margin-bottom: 1em;
}
.recruitEntryList li a span{
    font-size: 28px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5em;
}
.recruitEntryList li a span:before{
    content: "";
    display: inline-block;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 24px;
    height: 24px;
    margin-right: 0.5em;
    background-image: url("../images/icon_tel.svg");
}
.recruitEntryList li a p{
    font-size: 12px;
    margin-bottom: 0;
}
.recruitEntryList li.newWin a:before {
    content: "";
    display: inline-block;
    background-image: url("../images/icon_newwin2.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 50%;
    right: 1em;
    transform: translateY(-50%);
    transition: all .3s;
}



.recruitList{
    margin-bottom: 3em;
}
.recruitList li{
    border-bottom: 1px dashed #BFB0A5;
}
.recruitList li a{
	color: #3D4060;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	text-decoration:none;
	transition: all .3s;
	padding:1em 0;
}
.recruitList li a:hover{
	background:#F7F7F7;
}
.recruitList li span{
	margin-right:1.5em;
}
.recruitList li span.cate{
	color:#FFF;
	display:inline-block;
	padding:0.5em 1em;
	text-decoration:none;
    min-width: 130px;
    text-align: center;
    background: #2CBB99;
    border-radius: 10px;
}
.recruitList li .ttl{
	font-weight:normal;
	margin-bottom:0;
	font-size:16px;
}

/* workexperience職場体験 Setting
=========================================================================================== */
.workexColumnSet{
    background-repeat: repeat;
	background-image:url(../images/bg_pattern_b.gif);
    padding: 2em 4% 0;
    display: flex;
    margin-bottom: 4em;
}
.workexColumnSet .workexText{
    width: 56%;
}
.workexColumnSet .workexText h3{
    font-size: 3.2rem;
    color: #2CBB99;
    margin-bottom: 1em;
}
.workexColumnSet .workexText h3 span{
    border-bottom: 2px dashed #2CBB99;
    padding-bottom: 0.4em;
}

.workexColumnSet .workexImg{
    width: 40%;
    margin-left: 4%;
}
.workexColumnSet .workexImg .imgOnlyStyle{
    margin-bottom: 0;
    font-size: 0;
}

.workexPhotoList{
    display: flex;
    align-items: center;
}
.workexPhotoList li{
    width: 32%;
    margin-left: 2%;
}
.workexPhotoList li:nth-child(3n+1){
    margin-left: 0;
}


/* practice Setting
=========================================================================================== */
.practiceColumnSet .imgOnlyStyle img{
    border-radius: 40px;
}


/* FAQ Setting
=========================================================================================== */
.accordionList{
	margin-bottom:1.5em;
}
.accordionList dt{
	color:#333;
	position: relative;
	background:#F2F2F2;
	padding:1em 1.5em;
	font-size:18px;
	cursor: pointer;
	font-weight:bold;
	display: flex;
    align-items: center;
    justify-content: flex-start;
}
.accordionList dt span{
	font-size:20px;
	color:#FFF;
	display:inline-block;
	background:#2CBB99;
	width:40px;
	height:40px;
	border-radius: 50%;
	text-align:center;
	line-height: 40px;
	margin-right:16px;
}
.accordionList dt strong{
	width:calc( 100% - 100px );
}
.accordionList dd {
    padding: 1.5em;
    border: 4px solid #F2F2F2;
    border-top: 0;
	display: flex;
    justify-content: flex-start;
	flex-flow: wrap;
}
.accordionList dd span{
	font-size:20px;
    font-weight: bold;
	color:#FFF;
	display:inline-block;
	background:#2C94BB;
	width:40px;
	height:40px;
	border-radius: 50%;
	text-align:center;
	line-height: 40px;
	margin-right:0.5em;
}
.accordionList dd strong{
	font-weight:normal;
	width:calc( 100% - 100px );
}
.accordionList dd strong img{
	max-width:100%;
}
.accordionList dt:after {
   content: "";
   position: absolute;
   border-right: 4px solid #2CBB99;
   border-bottom: 4px solid #2CBB99;
   width: 16px;
   height: 16px;
   right: 30px;
   top:45%;
   transform: rotate(45deg) translateY(-50%);
}
.accordionList dt.ac:after {
   content: "";
   position: absolute;
   border-left: 4px solid #2CBB99;
   border-top: 4px solid #2CBB99;
   border-right: 0;
   border-bottom: 0;
   width: 16px;
   height: 16px;
   right: 30px;
   top:50%;
   transform: rotate(45deg) translateY(-50%);
}

/* privacy-policy Setting
=========================================================================================== */
.privacypolicyContents h2{
    background: #2CBB99;
    padding: 0.5em 2em;
    font-size: 18px;
    color: #FFF;
    border-radius: 3em;
    margin: 2em 0 1em;
}

/* complaint苦情解決 Setting
=========================================================================================== */
.complaintColumnSet .column2 h3 span{
    font-size: 2.4rem;
    color: #FFF;
    padding: 0.2em 1em;
    background: #2CBB99;
    border-radius: 10px;
    display: inline-block;
}
.complaintColumnSet .column2 dl dt{
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 0.5em;
    text-indent: -1.5em;
    padding-left: 1.5em;
}
.complaintColumnSet .column2 dl dt:before{
    content: "■";
    color: #2CBB99;
    margin-right: 0.5em;
}
.complaintColumnSet .column2 dl dd{
    margin-left: 1.5em;
    margin-bottom: 2em;
}
.archiveBtn li a{
    padding: 1.5em
}

/* 苦情解決　下層ページ Setting
=========================================================================================== */
.complaList{
    margin-bottom: 6em;
}
.complaList dt{
    background: #F1F1F1;
    padding: 2em 4%;
    border-radius: 20px;
    margin-bottom: 3em;
    position: relative;
}
.complaList dt:before {
    content: "";
    position: absolute;
    right: 0;
    bottom: -24px;
    left: 0;
    width: 0px;
    height: 0px;
    margin: auto;
    border-style: solid;
    border-color: #F1F1F1 transparent transparent transparent;
    border-width: 24px 28px 0 28px;
}
.complaList dt h4{
    font-size: 20px;
}
.complaList dt h4 span{
    display: inline-block;
    background: #788280;
    color: #FFF;
    padding: 0.2em 1em;
    margin-right: 1em;
}
.complaList dt p:last-child{
    margin-bottom: 0;
}


.complaList dd{
    border: 2px solid #2CBB99;
    padding: 2em 4%;
    border-radius: 20px;
    margin-bottom: 3em;
}
.complaList dd h4{
    font-size: 20px;
}
.complaList dd h4 span{
    display: inline-block;
    background: #2CBB99;
    color: #FFF;
    padding: 0.2em 1em;
    margin-right: 1em;
}
.complaList dd p:last-child{
    margin-bottom: 0;
}

/* contact Setting
=========================================================================================== */
.contactColumnSet{
    display: flex;
}
.contactColumnSet .contactColumn2{
    width: 48%;
    margin-left: 4%;
    text-align: center;
    border: 2px solid #2CBB99;
    border-radius: 40px;
    padding: 2em 4%;
}
.contactColumnSet .contactColumn2:first-child{
    margin-left: 0;
}
.contactColumnSet .contactColumn2 h3{
    background: #2CBB99;
    padding: 0.5em 2em;
    font-size: 20px;
    color: #FFF;
    border-radius: 3em;
    margin-bottom: 1.5em;
}
.contactColumnSet .contactColumn2 .tel{
    font-size: 2.8rem;
    display: inline-block;
    margin-bottom: 1em;
    color: #333;
    font-weight: bold;
    transition: all .3s;
}
.contactColumnSet .contactColumn2 .tel span{
    display: flex;
    align-items: center;
    justify-content: center;
}
.contactColumnSet .contactColumn2 .tel span:before{
    content: "";
    display: inline-block;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 24px;
    height: 24px;
    margin-right: 0.5em;
    background-image: url(../images/icon_tel.svg);
}
.contactColumnSet .contactColumn2 p{
    margin-bottom: 0;
}


.contactTable1{
	font-size:16px;
	width:100%;
	margin-bottom:3em;
}
.contactTable1 th,
.contactTable1 td{
	padding:1em 0;
}
.contactTable1 input[type="text"],
.contactTable1 input[type="email"],
.contactTable1 select,
.contactTable1 textarea{
	width: 100%;
    padding:1em;
	border:2px solid #2CBB99;
	border-radius: 10px;
}
.contactTable1 .mwform-tel-field input[type="text"]{
	width:20%;
}
.contactTable1 select{
	height:4em;
}
.contactTable1 .required{
	font-size:14px;
	font-weight:normal;
	background:#2CBB99;
	margin-left:0.5em;
	color:#FFF;
	display:inline-block;
	padding:0 0.5em;
	border-radius: 4px;
}
input[type="submit"],
input[type="button"] {
  -webkit-appearance: none;
}

/***送信ボタン****/
.formBtn1{
	display: flex;
    align-items: center;
    justify-content: center;
}
.formBtn1 li{
	margin-left:2%;
	margin-right:2%;
}
.formBtn1 input{
	min-width:320px;
	display:block;
	font-size:16px;
	padding:2em 2.5em;
	color: #fff;
    background: #2CBB99;
	border-radius: 10px;
	border:none;
}
.formBtn1 input[type="submit"]:hover{
	background: #16896d;
	cursor : pointer;
	transition: all .3s;
}
/*.contactTelBox{
    background: #FFF;
    padding: 2em 4%;
    text-align: center;
}
.contactTelBox p{
    margin-bottom: 0;
}
.contactTelBox p span{
    color: #FFF;
    font-size: 14px;
    background: #007998;
    padding: 0.5em 1em;
    margin-right: 1em;
    display: inline-block;
}
.contactTelBox a{
    text-decoration: none;
    font-size: 5.4rem;
    font-weight: bold;
    transition: all .3s;
}
.contactTelBox a:hover{
    opacity: 0.7;
}
.contactTelBox a:before{
	content: "";
    display: inline-block;
    width: 36px;
    height: 36px;
    background-image: url(../images/icon_tel.svg);
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 20px;
    vertical-align: middle;
}
.contactTelBox a strong{
    vertical-align: middle;
}



.formTable{
    font-size: 16px;
	width:100%;
	margin-bottom:1em;
}
.formTable th,
.formTable td{
	padding:1em 0;
}
.formTable input[type="text"],
.formTable input[type="tel"],
.formTable input[type="email"],
.formTable select,
.formTable textarea{
	width: 100%;
    padding:1em;
	border:2px solid #007998;
	border-radius: 10px;
}
.formTable select{
	height:4em;
}
.formTable input.whalf{
	width:auto;
	margin-right:1em;
}
.formTable .required{
    color: #C50303;
}
input[type="submit"],
input[type="button"] {
  -webkit-appearance: none;
}
*/
/***ボタン****/
/*.formBtn1{
	text-align:center;
}
.formBtn1 #submit_button{
	background: #007998;
	color:#FFF;
	font-size:18px;
	font-weight:bold;
	padding:1.5em 4em;
	border: none;
    cursor: pointer;
}
.formBtn1 #submit_button:hover{
	opacity: 0.7;
	transition: all .3s;
}*/
/***確認・完了画面****/
/*.checkFormBtnSet ul{
	display: flex;
    justify-content: center;
    flex-wrap: wrap;
	margin:2em 0;
}
.checkFormBtnSet ul li{
	margin:0 1em;
}
.checkFormBtnSet ul .checkFormBtn{
	background:#007998;
	color:#FFF;
	font-size:18px;
	font-weight:bold;
	padding:1.5em 4em;
	border: none;
    cursor: pointer;
	transition: all .3s;
}
.checkFormBtnSet ul .checkFormBtn:hover{
	opacity: 0.7;
}
*/
/* =========================================================
	index Setting
========================================================= */
/***メインビジュアル***/
#indexContentsHead{
	position:relative;
}
#indexContentsHead:after{
    content: "";
    display: block;
    width: 100%;
    height: 34px;
    background: url(../images/mv_bottom.png) repeat-x top center / contain;
	background-size: 1018px 34px;
    position: absolute;
    left: 0;
    bottom: 0;
}
#mainVisualImgSet div{
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	height: 90vh;
	margin: 0;
}
#mainVisualImgSet .mainVisual1{
	background-image: url(../images/index/mainvisual1.jpg);
}
#mainVisualImgSet .mainVisual2{
	background-image: url(../images/index/mainvisual2.jpg);
}
#mainVisualImgSet .mainVisual3{
	background-image: url(../images/index/mainvisual3.jpg);
}
#mainVisualImgSet .mainVisual4{
	background-image: url(../images/index/mainvisual4.jpg);
}

#indexContentsHead .mainVisualCatchSet{
	width:100%;
	margin-bottom:0;
    max-width: 1100px;
	position:absolute;
	top:50%;
	left:50%;
    transform:translateY(-50%) translateX(-50%);
}
#indexContentsHead .mainCatch{
    color: #FFF;
    text-shadow:4px 4px 6px rgba(0,0,0,0.8);
	font-size: 3.8rem;
    font-weight: bold;
	margin-bottom:2em;
    max-width: 1100px;
}
/*#indexContentsHead .rinen{
	width: 1100px;
    position:absolute;
    bottom: 20%;
	left:50%;
    transform:translateX(-50%);
    font-size: 18px;
    font-weight: bold;
    color: #FFF;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    text-shadow:2px 2px 4px rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
}
#indexContentsHead .rinen span{
    border-radius: 50%;
    border: 2px solid #FFF;
    width: 68px;
    height: 68px;
    line-height: 18px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1em;
}*/

#indexContentsHead .rinenList{
	width: 1100px;
}
#indexContentsHead .rinenList li{
    font-size: 18px;
    font-weight: bold;
    color: #FFF;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    text-shadow:2px 2px 4px rgba(0,0,0,0.8);
}
#indexContentsHead .rinenList li .inner{
	display: flex;
    align-items: center;
}
#indexContentsHead .rinenList li span{
    border-radius: 50%;
    border: 2px solid #FFF;
    width: 68px;
    height: 68px;
    line-height: 18px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1em;
}

.slick-dots{
	position:absolute;
	bottom: 50px;
	left:50%;
	transform:translateX(-50%);
	margin-bottom: 0;
}
.slick-dots li{
	position: relative;
    display: inline-block;
    width: 10px;
	margin:0 8px;
    padding: 0;
    cursor: pointer;
}
.slick-dots li button{
    font-size: 0;
    line-height: 0;
    display: block;
    width: 10px;
    height: 10px;
    padding: 5px;
    cursor: pointer;
    outline: none;
    background: #FFF;
	border:1px solid #707070;
    border-radius: 50%;
}
.slick-dots .slick-active button{
	background: #2CBB99;
}


/***contents01***/
/*.contents01{
    text-align: center;
}
.contents01 h2{
    font-size: 2.8rem;
    margin-bottom: 1.5em;
}
.circleList{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80%;
    margin: 0 auto;
    margin-bottom: 2em;
}
.circleList li{
    width: 30%;
    margin-left: 5%;
}
.circleList li:first-child{
    margin-left: 0;
}
.circleList li p{
    position: relative;
    width: 100%;
    padding: 50%;
    border-radius: 50%;
    background: #007998;
}
.circleList li p span{
    font-size: 28px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    font-weight: bold;
    color: #fff;
    line-height: 1.6;
}
.contents01 .contCatch{
    font-size: 4.2rem;
    color: #007998;
    font-weight: bold;
    margin-bottom: 0;
}

*/
/***contents02***/
.contents02{
    position: relative;
}
.contents02:before{
	content:"";
	display:block;
    background: url("../images/bg_pattern_a.jpg");
    background-size: cover;
	background-position: center;
	position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 70%;
    z-index: -1;
}
.contents02:after{
	content:"";
	position:absolute;
	top:20%;
	left:5%;
	display:inline-block;
	width:360px;
	height:360px;
	background-image: url(../images/index/sun.svg);
	background-size: cover;
	background-position: center;
    background-repeat: no-repeat;
	animation:20s linear infinite rotation1;
	z-index:-1;
}
@keyframes rotation1{
  0%{ transform:translateY(-50%) translateX(-50%) rotate(0);}
  100%{ transform:translateY(-50%) translateX(-50%) rotate(360deg); }
}
.contents02 section{
    position: relative;
}
.contents02 section:after{
    content:"";
	position:absolute;
    bottom: 0;
    right: 0;
	display:inline-block;
	width:126px;
	height:126px;
	background-image: url(../images/index/triangle.svg);
	background-size: cover;
	background-position: center;
    background-repeat: no-repeat;
    transform:translateY(50%);
}
.philosophyColumnSet{
    display: flex;
}
.philosophyColumnSet .philosophyColumnL h2{
    font-size: 3.2rem;
    color: #2CBB99;
    -webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	text-orientation: upright;
    line-height: 2em;
	letter-spacing: 0.2em;
}
.philosophyColumnSet .philosophyColumnL{
    width: 36%;
}
.philosophyColumnSet .philosophyColumnR{
    width: 60%;
    margin-left: 4%;
}
.philosophyColumnSet .philosophyColumnR .imgOnlyStyle{
    margin-bottom: 0.5em;
}
.philosophyColumnSet .philosophyColumnR .text{
    line-height: 3em;
}

/***contents03***/
.panelLinkList{
    display: flex;
    margin-bottom: 4em;
}
.panelLinkList li{
    width: 48%;
    margin-left: 4%;
}
.panelLinkList li:nth-child(2n+1){
    margin-left: 0;
}
.panelLinkList li a{
    color: #333;
    text-decoration: none;
    display: block;
}
.panelLinkList li .imgOnlyStyle{
    border-radius: 40px;
    overflow: hidden;
    display: block;
    font-size: 0;
}
.panelLinkList li .textArea{
    background: #FFF;
    padding: 2em 1em 0 0;
    margin-top: -3em;
    display: inline-block;
    min-width: 80%;
    position: relative;
    border-radius: 0 40px 0 0;
}
.panelLinkList li .textArea h3{
    font-size: 2.0rem;
    display: flex;
    align-items: center;
}
.panelLinkList li .textArea h3 span{
    font-size: 1.6rem;
}
.panelLinkList li .textArea h3:after{
    content: "";
    display: inline-block;
    background-image: url(../images/icon_arrow_r.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 20px;
    height: 20px;
    margin-left: 1em;
    transition: all .3s;
}
.panelLinkList li .textArea h3 + p{
    margin-bottom: 0;
}
/*.columnSetAB.typeA{
	display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
	margin-bottom: 4em;
}
.columnSetAB.typeB{
	display: flex;
    align-items: center;
    flex-direction: row-reverse;
    flex-wrap: wrap;
	margin-bottom: 4em;
}
.columnSetAB:last-child{
	margin-bottom:0;
}
.columnSetAB.typeA .columnText{
	width:48%;
    margin-left:4%;
}
.columnSetAB.typeA .columnImg{
	width:48%;
}
.columnSetAB.typeB .columnText{
	width:48%;
}
.columnSetAB.typeB .columnImg{
	width:48%;
    margin-left:4%;
}
.columnSetAB .columnImg img{
	width:100%;
}
.columnSetAB .columnText h2{
    font-size: 3.2rem;
    margin-bottom: 0.5em;
}
.columnSetAB .columnText h2 span{
    font-size: 18px;
    color: #007998;
    display: block;
}
.columnSetAB .columnText ul{
    list-style: disc;
    padding-left: 1em;
    margin-bottom: 1em;
}*/
/***contents04***/
/*.accessList{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 2em;
}
.accessList dt{
    width: 6em;
}
.accessList dd{
    width: calc( 100% - 6em );
}
.map{
	font-size: 0;
    border: 4px solid #007998;
}
.map iframe{
	width: 100%;
}*/
/* footer Setting
=========================================================================================== */
footer{
    background: #2CBB99;
    color: #FFF;
    position: relative;
}
footer:before{
    content: "";
    display: block;
    background-image: url(../images/footer_topborder.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 58px;
    position: absolute;
    top: 2px;
    left: 0;
    transform:translateY(-100%);
}

footer #footerArea{
    max-width:1100px;
	padding:5em 0;
	margin:0 auto;
}
footer #footerArea .footerColumnSet{
    display: flex;
	justify-content: space-between;
    flex-wrap: wrap;
}
footer #footerArea .footerColumnSet .footerColumnL{
    width: 48%;
}
footer #footerArea .footerColumnSet .footerColumnL h2{
    display: flex;
    align-items: center;
    font-size: 16px;
}
footer #footerArea .footerColumnSet .footerColumnL h2 span{
    margin-left: 1em;
}
footer #footerArea .footerColumnSet .footerColumnL h2 strong{
    display: block;
    font-size: 24px;
}
footer #footerArea .footerMapBtn{
    background: #FFF;
    border-radius: 3em;
    display: inline-block;
    padding: 0 2em;
    font-size: 13px;
    margin-left: 1em;
    text-decoration: none;
}

footer #footerArea .footerColumnSet .footerColumnL .footerTelList{
	display: flex;
    flex-wrap: wrap;
    margin-top: 1.5em;
}
footer #footerArea .footerColumnSet .footerColumnL .footerTelList li{
    margin-bottom: 0.5em;
}
footer #footerArea .footerColumnSet .footerColumnL .footerTelList li.tel a{
    color: #FFF;
    font-size: 2.4rem;
    transition: all .3s;
    display: inline-block;
}
footer #footerArea .footerColumnSet .footerColumnL .footerTelList li.tel a span{
    display: flex;
    align-items: center;
}
footer #footerArea .footerColumnSet .footerColumnL .footerTelList li.tel a span:before{
    background-image: url(../images/icon_tel_w.svg);
    content: "";
    display: inline-block;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 24px;
    height: 24px;
    margin-right: 0.5em;
}

footer #footerArea .footerColumnSet .footerColumnL .footerTelList li.fax{
    color: #FFF;
    font-size: 2.4rem;
    transition: all .3s;
    display: inline-block;
	margin-left: 1em;
}
footer #footerArea .footerColumnSet .footerColumnL .footerTelList li.fax span{
    display: flex;
    align-items: center;
}
footer #footerArea .footerColumnSet .footerColumnL .footerTelList li.fax span:before{
    background-image: url(../images/icon_fax.svg);
    content: "";
    display: inline-block;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 24px;
    height: 24px;
    margin-right: 0.5em;
}
footer #footerArea .footerColumnSet .footerColumnL .footerSnsList{
	display: flex;
    align-items: center;
}
footer #footerArea .footerColumnSet .footerColumnL .footerSnsList li{
    margin: 0 1.5em 0 0;
}

footer #footerArea .footerColumnSet .footerColumnR{
    width: 48%;
    margin-left: 4%;
}
footer #footerArea .footerColumnSet .footerNav{
    display: flex;
    justify-content: end;
}
footer #footerArea .footerColumnSet .footerNav ul{
	display: flex;
    flex-wrap: wrap;
}
footer #footerArea .footerColumnSet .footerNav ul li{
    margin-bottom: 1em;
	width:48%;
	margin-left:4%;
}
footer #footerArea .footerColumnSet .footerNav ul li:nth-child(2n+1){
    margin-left: 0;
}
footer #footerArea .footerColumnSet .footerNav ul li a{
    color: #FFF;
    display: flex;
    align-items: center;
}
footer #footerArea .footerColumnSet .footerNav ul li a:before{
    content: "";
    display: inline-block;
    background-image: url(../images/icon_arrow2_r.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 16px;
    height: 16px;
    margin-right: 0.5em;
    transition: all .3s;
}
footer #copy{
    font-size: 14px;
    padding: 1em;
    margin-bottom: 0;
    text-align: center;
    background: #19A584;
}
/*
footer #footerArea .footerColumnSet .footerColumnR .footerNav ul{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
footer #footerArea .footerColumnSet .footerColumnR .footerNav ul li{
    margin-left: 2.5em;
}
footer #footerArea .footerColumnSet .footerColumnR .footerNav ul li:first-child{
    margin-left: 0;
}
footer #footerArea .footerColumnSet .footerColumnR .footerNav ul li a{
    color: #FFF;
}
*/
/* After Setting
=========================================================================================== */
.mt0{margin-top:0;}
.mt20{margin-top:20px;}
.ml0{ margin-left:0;}
.mr2{ margin-right:2em;}
.mb0{margin-bottom:0;}
.mb20{margin-bottom:20px;}
.mb40{margin-bottom:40px;}
.mb50{margin-bottom:50px;}
.mb100{margin-bottom:100px;}
.mb2{margin-bottom:2em;}
.mb3{margin-bottom:3em;}
.mb6{margin-bottom:6em;}
.pb0{ padding-bottom:0;}
.pb20{ padding-bottom:20px;}
.pr20{ padding-right:20px;}
.vat{ vertical-align:top;}
.vam{ vertical-align:middle;}