@charset "utf-8";

/* ハンバーガーメニュー Setting
=========================================================================================== */
nav.gnavSp {
	position: fixed;
	z-index: 999;
	top: 0;
	right: 0;
	background: rgba(44, 187, 153, 0.9);
	color: #000;
	transform: translateX(100%);
	transition: all 0.6s;
	width:  100%;
	height:100%;
	padding: 100px 4% 80px;
	overflow-y: scroll;
}
nav.gnavSp ul {
	margin: 0 auto;
	padding: 0;
	width: 100%;
	margin-bottom:2em;
}
nav.gnavSp ul li {
	font-size: 16px;
	list-style-type: none;
    border-bottom: 1px solid #f2f2f2;
	padding: 0;
	width: 100%;
}
nav.gnavSp ul li a {
	display: block;
	color: #FFF;
	padding: 1em 0;
}

nav.gnavSp .subMenu{
    display: flex;
}
nav.gnavSp .subMenu li{
    border-bottom: none;
    font-size: 14px;
    width: 48%;
    margin-left: 4%;
}
nav.gnavSp .subMenu li:nth-child(2n+1){
    margin-left: 0;
}
nav.gnavSp .subMenu li a{
    padding: 0;
    display: inline-block;
}


.headerContactSp{
    margin-bottom: 0.5em;
}
.headerContactSp a{
    background: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 10px;
    padding: 1em;
}
.headerContactSp a:before{
	content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url(../images/icon_mail_g.svg);
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 10px;
    vertical-align: middle;
}
.headerTelSp{
	text-align:center;
    margin-bottom: 0.5em;
}
.headerTelSp a{
	color:#FFF;
}
.headerTelSp a span{
	font-size:14px;
    line-height: 1.8;
}
.headerTelSp a strong{
	display:block;
	font-size: 28px;
	vertical-align:middle;
}
.headerTelSp a strong:before {
    content: "";
    display: inline-block;
    width: 28px;
    height: 28px;
    background-image: url(../images/icon_tel_w.svg);
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    margin-right: 10px;
}


/* メニュー展開時、背景スクロールの停止 */
body.fixed {
    width: 100%;
    height: 100%;
	position:fixed;
}
/* このクラスを、jQueryで付与・削除する */
nav.gnavSp.active {
	transform: translateY(0%);
}
/* ハンバーガーメニューアイコン Setting
=========================================================================================== */
.navBoxSp{
	background: #FFF;
    width: 64px;
	cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
	display:none;
	position:relative;
	z-index:9999;
}
.navToggle {
	display:none;
	width: 42px;
	height: 42px;
	text-align: center;
	position:relative;
}
.navToggle span {
	display: block;
	position: absolute;
	width: 30px;
	border-bottom: solid 3px #2CBB99;
	-webkit-transition: .35s ease-in-out;
	-moz-transition: .35s ease-in-out;
	transition: .35s ease-in-out;
	left: 6px;
}
.navToggle span:nth-child(1) {
	top: 10px;
}
.navToggle span:nth-child(2) {
	top: 20px;
}
.navToggle span:nth-child(3) {
	top: 30px;
}
/* ハンバーガーメニューアイコンタップ後の「X」Setting
=========================================================================================== */

/* 最初のspanをマイナス45度に */
.navBoxSp.active span:nth-child(1) {
	border-bottom: solid 3px #2CBB99;
	top: 18px;
	left: 6px;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
/* 2番目と3番目のspanを45度に */
.navBoxSp.active span:nth-child(2),
.navBoxSp.active span:nth-child(3) {
	border-bottom: solid 3px #2CBB99;
	top: 18px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);
}
/*----------------------------ハンバーガーメニューここまで-----------------------------*/

.showSp{
	display:none;
}
.showSp960{
	display:none;
}
.showSp1100{
	display:none;
}
.showOnlySp1100{
	display:none;
}
/*============================================================================================================

max-width: 1280px

============================================================================================================ */
@media screen and (max-width: 1280px) {
/* Header Setting
=========================================================================================== */
#headerSet{
    padding: 24px 2%; 
}
#headerSet #headerLogoSet #headerLogo img{
    width: 160px;
}
#headerSet #headerMenuSet .gnav ul li{
    padding: 1em;
}
/* index Setting
=========================================================================================== */
#indexContentsHead .mainCatch{
    font-size: 3.8rem;
    padding: 0 4%;
}
#indexContentsHead .rinenList{
    width: 100%;
    padding: 0 4%;
}
}
/*============================================================================================================

max-width: 1100px

============================================================================================================ */
@media screen and (max-width: 1100px) {
.hideSp1100{
	display:none;
}
.hideOnlySp1100{
	display:none;
}
.showSp1100{
	display:block;
}
.showOnlySp1100{
	display:block;
}
html{
	font-size:0.8vw;
}
/* Header Setting
=========================================================================================== */
#headerSet{
    padding: 10px 4%;
}
#headerSet #headerLogoSet #headerLogo img{
    width: 200px;
}
#headerSet #headerMenuSet{
	display:none;
}
.navBoxSp{
	display: flex;
    height: 64px;
    border-radius: 10px;
}
.navToggle{
	display: block;
}
#path{
	width:100%;
	padding-left:4%;
	padding-right:4%;
}
/* ALLcontents Setting
=========================================================================================== */
article section{
	width:100%;
	padding-left:4%;
	padding-right:4%;
}
.btnStyle3 a{
    min-width: inherit;
    padding: 1.5em 2.5em 1.5em 1em;
    display: block;
}
/* facility Setting
=========================================================================================== */
.facilitySet a{
    padding: 2em 4%;
}
/* philosophy Setting
=========================================================================================== */
/*.philosophy_bg:before{
    min-height: inherit;
    height: 46vw;
}
.philosophy_bg .philosophyInner{
    margin-top: 30vw;
}*/
/* corporation Setting
=========================================================================================== */
.historyArea .historySet{
    width: 100%;
}

/* index Setting
=========================================================================================== */
.contents02 .btnStyle2 a{
    padding: 1.2em 3em;
}
/* footer Setting
=========================================================================================== */
footer #footerArea{
    width:100%;
	padding-left:4%;
	padding-right:4%;
}
}
/*============================================================================================================

max-width: 960px

============================================================================================================ */
@media screen and (max-width: 960px) {
.showSp960{
	display:block;
}
.facilitySet .facilityText .facilityList li.facilityTel,
.facilitySet .facilityText .facilityList li.facilityFax{
    margin-left: 0;
    display: block;
}

.recruitEntryList{
    display: block;
    margin-bottom: 0;
}
.recruitEntryList li{
    width: 100%;
    margin-left: 0;
    margin-bottom: 2em;
}
.recruitEntryList li:last-child{
    margin-bottom: 0;
}
.recruitEntryList li a{
    padding: 1.5em 1em;
}
footer #footerArea .footerMapBtn{
    display: none;
}
}
/*============================================================================================================

max-width: 767px

============================================================================================================ */
@media screen and (max-width: 767px) {
.hideSp{
	display:none;
}
.hideOnlySp1100{
	display:block;
}
.showSp{
	display:block;
}
.showOnlySp1100{
	display:none;
}
html{
	font-size:40%;
}
/* Header Setting
=========================================================================================== */

#path{
	display:none;
}
/* ALLcontents Setting
=========================================================================================== */
article section{
	padding:40px 4%;
}
main article:last-child section{
    padding-bottom: 80px;
}
.ttlStyle1{
    font-size: 26px;
}
.ttlStyle2{
    font-size: 20px;
}

	
.btnStyle2 a{
    width: 80%;
}
	
.btnListStyle1{
    display: block;
}
.btnListStyle1 li{
    width: 100%;
    margin-left: 0;
}
.btnListStyle1 li a{
    padding: 1.5em 2.5em;
}
.btnListStyle2{
    display: block;
}
.btnListStyle2 li{
    width: 100%;
    margin-left: 0;
}
.btnListStyle2 li a{
    padding: 1.5em 2.5em;
}	
.btnListStyle3{
    display: block;
}
.btnListStyle3 li{
    width: 100%;
    margin-left: 0;
}
.btnListStyle3 li a{
    padding: 1.5em 2.5em;
}
	
	


table colgroup{
	display:none;
}

.columnTopSet{
    display: block;
}
.column2{
    width: 100%;
    margin-left: 0;
}

.newsList li a{
    display: block;
}
.newsList li span{
    margin-bottom: 0.5em;
}
.newsList li span.cate{
	padding: 0.2em 1em;
    min-width: inherit;
}


.categoryList li{
    width: 48%;
    margin-left: 4%;
}
.categoryList li:nth-child(3n+1){
    margin-left: 4%;
}
.categoryList li:nth-child(2n+1){
    margin-left: 0;
}
.categoryList li a{
    font-size: 14px;
}
.categoryList li a:before{
    right: 0.5em;
}

/*#subContentsHead{
    margin-bottom: 0;
}
.h2Style2{
    font-size: 24px;
}
.fontBig1{
    font-size: 18px;
}
.dlList1{
    display: block;
}
.dlList1 dt{
    display: inline-block;
    width: auto;
    min-width: 8em;
}
.dlList1 dd{
    width: 100%;
    margin-left: 0;
}
.btnStyle1 a{
    width: 100%;
}
.columnTopSet{
    display: block;
}
.column2{
    width: 100%;
    margin-left: 0;
}
.columnLText{
    width: 100%;
}
.columnRImg{
    width: 100%;
    margin-left: 0;
}
.js-table-scroll{
	overflow: auto;
    white-space: nowrap;
}*/

/* contact Setting
=========================================================================================== */
/*.contactTelBox a{
    font-size: 24px;
}
.contactTelBox a:before{
    width: 24px;
    height: 24px;
    margin-right: 10px;
}
.formTable th,
.formTable td{
    display: block;
}
.formTable td{
    padding-top: 0;
}
.formBtn1{
	display:block;
}
.formBtn1 li{
	margin:0;
	margin-bottom:2em;
}
.formBtn1 input{
	min-width:auto;
	width:100%;
}*/
/******確認・完了画面*****/
/*.checkFormBtnSet ul li{
	width:100%;
	margin:0;
	margin-bottom:2em;
}
.checkFormBtnSet ul .checkFormBtn{
	width:100%;	
}*/

/* facility Setting
=========================================================================================== */
.facilitySet a{
    padding: 2em 6%;
    display: block;
}
.facilitySet .facilityText{
    width: 100%;
}
.facilitySet .facilityImg{
    width: 100%;
    margin-left: 0;
    margin-bottom: 2em;
}
.facilitySet .facilityText .facilityList li{
    font-size: 16px;
}
.facilitySet .facilityText .facilityList li span{
    font-size: 14px;
}

/* philosophy Setting
=========================================================================================== */
.philosophy_bg .philosophyInner:after{
    width: 80px;
    height: 80px;
    right: 10%;
}
.columnSetAB.typeA,
.columnSetAB.typeB{
    display: block;
    margin-bottom: 6em;
}
.columnSetAB.typeA .columnText,
.columnSetAB.typeB .columnText{
    width: 100%;
    margin-left: 0;
}
.columnSetAB.typeA .columnText .imgOnlyStyle,
.columnSetAB.typeB .columnText .imgOnlyStyle{
    margin-bottom: 0.5em;
}
.columnSetAB.typeA .columnText img,
.columnSetAB.typeB .columnText img{
    border-radius: 40px;
}
.columnSetAB .columnText h3{
    margin-bottom: 1em;
}
.columnSetAB.typeA .columnImg,
.columnSetAB.typeB .columnImg{
    display: none;
}


.philosophyList li{
    width: 48%;
	margin-left:4%;
}
.philosophyList li:nth-child(3n+1){
    margin-left: 4%;
}
.philosophyList li:nth-child(2n+1){
    margin-left: 0;
}
.philosophyList li h3{
    font-size: 18px;
}
.philosophyList li .imgOnlyStyle {
    width: 90%;
}

/* corporation Setting
=========================================================================================== */

.corporationTable th{
    padding-bottom: 0.5em;
    display: block;
}
.corporationTable td{
    padding-top: 0;
    display: block;
}

.corporationTable .dlCorporationList{
    margin-bottom: 0;
}
.corporationTable .dlCorporationList dd ul{
    margin-bottom: 0;
}
.map iframe{
	height: 300px;
}

.historyArea .historyList{
    display: block;
}
.historyArea .historySet:before{
    left: 7px;
    height: 97%;
}

.historyArea .historyList dt{
    margin-bottom: 1em;
    width: 100%;
    font-size: 18px;
}
.historyArea .historyList dd{
    width: 100%;
    margin-left: 0;
    padding-left: 3em;
    font-size: 14px;
}
.historyArea .historyList dd strong{
    font-size: 16px;
}

/* recruit一覧 Setting
=========================================================================================== */
.recruitList li a{
    display: block;
}
.recruitList li span{
    margin-bottom: 0.5em;
}
.recruitList li span.cate{
	padding: 0.2em 1em;
    min-width: inherit;
}
/* singlePage Setting
=========================================================================================== */
#singlePage .singleTtl{
    font-size: 20px;
}
/* workexperience Setting
=========================================================================================== */
.workexColumnSet{
    display: block;
    padding: 2em 4%;
}
.workexColumnSet .workexText{
    width: 100%;
}
.workexColumnSet .workexText h3 span{
    display: block;
    text-align: center;
}
.workexColumnSet .workexText .imgOnlyStyle{
    text-align: center;
}
.workexColumnSet .workexText .imgOnlyStyle img{
    width: 80%;
}
.workexColumnSet .workexText .dlListStyle1{
    text-align: center;
    margin-bottom: 0;
}
.workexColumnSet .workexText .dlListStyle1 dd a{
    margin-left: 0;
	margin-right:0;
}
.workexColumnSet .workexImg{
    display: none;
}
.workexPhotoList{
    display: block;
}
.workexPhotoList li{
    width: 100%;
    margin-left: 0;
}
/* practice Setting
=========================================================================================== */
.practiceColumnSet .column2 .imgOnlyStyle img{
    border-radius: 40px;
}
.practiceColumnSet .column2 .dlListStyle1{
    text-align: center;
    margin-bottom: 0;
}
.practiceColumnSet .column2 .dlListStyle1 dd a{
    margin-left: 0;
}

/* complaint Setting
=========================================================================================== */
.complaintColumnSet .column2 h3 span{
    font-size: 20px;
}

/* complaint下層ページ Setting
=========================================================================================== */
.complaList dt{
    margin-bottom: 2em;
}
.complaList dt h4{
    font-size: 18px;
}
.complaList dd h4 span{
    font-size: 18px;
}


/* FAQ Setting
=========================================================================================== */
.accordionList dt{
    font-size: 16px;
    padding: 1em;
}
.accordionList dd{
    padding: 1em 12px;
}
.accordionList dd span{
    margin-right: 10px;
}
.accordionList dd strong{
    width: calc( 100% - 50px );
}
/* privacypolicy Setting
=========================================================================================== */
.privacypolicyContents h2{
    padding: 0.5em 1em;
    text-indent: -1.5em;
    padding-left: 2.5em;
}
/* contact Setting
=========================================================================================== */
.contactColumnSet{
    display: block;
}
.contactColumnSet .contactColumn2{
    width: 100%;
    margin-left: 0;
    margin-bottom: 2em;
}
.contactColumnSet .contactColumn2 .tel{
    font-size: 24px;
}
	
	
	
.contactTable1{
	margin-bottom:1em;
}
.contactTable1 th,
.contactTable1 td{
	display:block;
}
.contactTable1 td{
	padding-top:0;
}
.contactTable1 .mwform-tel-field input[type="text"]{
	width:30%;
}
.formBtn1{
	display:block;
}
.formBtn1 li{
	margin:0;
	margin-bottom:2em;
}
.formBtn1 input{
	min-width:auto;
	width:100%;
}
/* index Setting
=========================================================================================== */
#indexContentsHead .mainCatch{
    text-align: center;
}
#indexContentsHead .rinenList li .inner{
    font-size: 16px;
    justify-content: center;
}
.philosophyColumnSet{
    display: block;
}
.philosophyColumnSet .philosophyColumnL{
    display: none;
}
.philosophyColumnSet .philosophyColumnR{
    width: 100%;
    margin-left: 0;
}
.philosophyColumnSet .philosophyColumnR h2{
    font-size: 24px;
    color: #2CBB99;
    margin-bottom: 1em;
    text-align: center;
}
.philosophyColumnSet .philosophyColumnR .text{
    line-height: 200%;
}
.contents02 section:after{
    width: 80px;
    height: 80px;
}



.panelLinkList{
    display: block;
}
.panelLinkList li{
    width: 100%;
    margin-left: 0;
    margin-bottom: 2em;
}
.panelLinkList li .imgOnlyStyle{
    border-radius: 20px;
}
.panelLinkList li .textArea{
    padding: 1em 1em 0 0;
    border-radius: 0 20px 0 0;
    margin-top: -2em;
}
.panelLinkList li .textArea h3{
    font-size: 16px;
    flex-wrap: wrap;
}
.panelLinkList li .textArea h3 span{
    display: block;
    font-size: 14px;
}
.panelLinkList li .textArea h3 + p{
    font-size: 14px;
}
/*#mainVisualImgSet div{
    height: 86vh;
}
#mainVisualImgSet .mainVisual1{
	background-image: url(../images/index/mainvisual1_sp.jpg);
}
#mainVisualImgSet .mainVisual2{
	background-image: url(../images/index/mainvisual2_sp.jpg);
}
#indexContentsHead .mainCatch{
    text-align: center;
}
#indexContentsHead .mainCatch span{
    font-size: 16px;
}
#indexContentsHead #targetIcon{
    right: auto;
    left: 50%;
    transform:translateX(-50%);
}
#indexContentsHead  #targetIcon li{
	width: 74px;
	height: 74px;
	line-height: 74px;
}



.circleList{
    width: 100%;
}
.circleList li{
    width: 32%;
    margin-left: 2%;
}
.circleList li p{
    margin-bottom: 0;
}

.contents01 .contCatch{
    font-size: 20px;
}


.greetingColumnSet{
    display: block;
}
.greetingColumnSet .greetingImg{
    width: 60%;
    margin: 0 auto;
    margin-bottom: 1em;
}
.greetingColumnSet .greetingText{
    width: 100%;
    margin-left: 0;
}
.greetingColumnSet .greetingText h3{
    text-align: center;
}

.columnSetAB.typeA,
.columnSetAB.typeB{
    display: block;
    margin-bottom: 6em;
}
.columnSetAB.typeA .columnText,
.columnSetAB.typeB .columnText{
    width: 100%;
    margin-left: 0;
    text-align: center;
}
.columnSetAB .columnText ul{
    text-align: left;
}
.columnSetAB .columnText .imgOnlyStyle img{
    width: 100%;
}
*/
/* footer Setting
=========================================================================================== */
footer:before{
    background-image: url("../images/footer_topborder_sp.svg");
    height: 10vw;
}
footer #footerArea{
    padding: 2em 0;
}
footer #footerArea .footerColumnSet{
    display: block;
}
footer #footerArea .footerColumnSet .footerColumnL{
    width: 100%;
    text-align: center;
}
footer #footerArea .footerColumnSet .footerColumnL h2{
    justify-content: center;
}
footer #footerArea .footerColumnSet .footerColumnL .footerTelList li.tel a{
    font-size: 18px;
}
footer #footerArea .footerColumnSet .footerColumnL .footerTelList li.fax{
    font-size: 18px;
}
footer #footerArea .footerColumnSet .footerColumnL .footerTelList{
    justify-content:center;
}
footer #footerArea .footerColumnSet .footerColumnL .footerSnsList{
    justify-content:center;
}
footer #footerArea .footerColumnSet .footerColumnL .footerSnsList li:last-child{
    margin-right:0;
}
footer #footerArea .footerColumnSet .footerColumnR{
    display: none;
}
/*footer #footerArea{
    padding-bottom: 2em;
}
footer #footerArea .footerColumnSet{
    display: block;
}
footer #footerArea .footerColumnSet .footerColumnL h2{
    font-size: 24px;
}
footer #footerArea .footerColumnSet .footerColumnL{
    width: 100%;
    text-align: center;
}
footer #footerArea .footerColumnSet .footerColumnR{
    display: none;
}*/
/* After Setting
=========================================================================================== */
/*.mb6Sp{
    margin-bottom: 6em;
}*/
}
/*============================================================================================================

max-width: 579px

============================================================================================================ */
@media screen and (max-width: 579px) {
}