@charset "UTF-8";
/*--------------------------
リセット
---------------------------- */
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, 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,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

/*----------------------------------------------------
初期設定
------------------------------------------------------ */
/* [ PC - SP switch ] */
@media screen and (min-width: 768px) {
  .pcOFF {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  /* Smartphone */
  .spOFF {
    display: none !important;
  }
}
@media print  {
  .spOFF {
    display: none !important;
  }
}
/* -------*/
* {
  box-sizing: border-box;
}
html {
  overflow-y: scroll;
}

body {
	font-family: sans-serif;
	color: #1F1F1F;
	line-height:1.5;
}
.fntNSJ{
	font-family: sans-serif;
}
.fntLF{
	font-family: 'Libre Franklin', sans-serif;
}


/*----------------------------------------------------
基本：基本タグ
------------------------------------------------------ */
.fw {
  font-weight: bold;
}


.txt01 {
  font-size: 1.0625em;
  line-height: 2;
  margin-bottom:40px;
}

.imgCenter {
  text-align: center;
  margin-bottom: 30px;
}

.imgCenter img {
  max-width: 960px;
}


.tit01{
	margin-bottom:40px;
}
.tit01 span{
	font-weight:bold;
	display:block;
	color:#343434;
	text-align:center;
	font-size:34px;
}

.tit01::after{
    content: "";
    border-bottom: #000 2px solid;
    width: 100px;
	padding-top: 20px;
    display: block;
    margin: 0px auto;
}

.tit02{
	font-size:28px;
	color:#24B063;
	font-weight:bold;
	padding-bottom:20px;
	margin-bottom:70px;

  border-bottom: 2px solid ;
  border-image: linear-gradient(to right, #24B063 0%,#080f66 100%);
  border-image-slice: 1;
}

.tit03{
	font-size:18px;
	border-left:solid 10px #AFC112;
	padding:14px 20px;
	color:#333333;
	font-weight:bold;
	margin-bottom:20px;
}
.tit04{
	font-size:24px;
	border-bottom:solid 1px #CCCCCC;
	padding:0px 0 24px;
	color:#212121;
	font-weight:bold;
	margin-bottom:40px;
}

ol.lst01{
	list-style:numeric;
	margin-left:1em;
}
ol.lst01 li{
	margin-bottom:2em;
	line-height:2em;
}



.singleBtn{
	text-align:center;
	margin-bottom:80px;
}

.singleBtn a.btn{
	display: inline-block;
	background:#fff;
	border: #333 2px solid;
	padding: 15px;
	text-align: center;
	overflow: hidden;
	color: #333;
	text-decoration: none;
	max-width: 350px;
	width: 100%;
}
.singleBtn a.btn::after{
	content: url(../img/pagelink_ico.png);
	float: right;
}

.singleBtn a.btn:hover{
	background-color: #eee;
	text-decoration: underline;
}





@media screen and (max-width: 767px) {
  /* Smartphone */

	.txt01 {
		margin-bottom:30px;
	}

	.tit01{
		margin-bottom:30px;
	}
	.tit02{
		font-size:22px;
		margin-bottom:30px;
	}
	.tit03{
		padding:5px 10px 5px 20px;
		margin-bottom:30px;
	}

	.imgCenter img{
		width:100%;
		height:auto;
	}
}
/* ------ */

.btnLst{
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
}
.btnLst li{
	flex-basis:48%;
}
.btnLst li a{
	width:100%;
	display:block;
}


/* ------ */
.box{
	width:100%;
	max-width:1200px;
	margin:0 auto 120px;
	padding: 0px 20px;
}
.box .layout{
	width:calc(100% - 60px);
	margin:0 auto;
}

.box .layout-pic{
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
}
.box .layout-pic .pic{
	flex-basis:36%;
}
.box .layout-pic .pic img{
	width:100%;
	height:auto;
}

.box .layout-pic .cnt{
	flex-basis:58%;
}
.box .layout-pic.pic-right .pic{
	order:2;
}
.box .layout-pic.pic-right .cnt{
	order:1;
}
.box .layout-pic .pic.logo{
}
.box .layout-pic .pic.logo span{
	display:block;
	width:100%;
	text-align:center;
	border:solid 1px #DDDDDD;
	padding:20px 0;
}
.box .layout-pic .pic.logo img{
	width:auto;
	height:auto;
}

.box .layout .pic.mw100 img{
	max-width:100%;
	height:auto;
	margin: 10px auto 30px;
}





@media screen and (max-width: 767px) {
  /* Smartphone */
	.box{
		width:100%;
		margin:0 auto 40px;
		padding: 0px;
	}
	.box .layout{
		width:100%;
		margin:0 auto;
	}
	.box .layout-pic .pic{
		flex-basis:100%;
	}
	.box .layout-pic .pic img{
	}
	.box .layout-pic .cnt{
		flex-basis:100%;
	}
}

/* ---table base--- */

.tbl01{
	width:100%;
	border:solid 1px #CCCCCC;
}
.tbl01 tbody tr{
	border:solid 1px #CCCCCC;
}
.tbl01 tbody th{
	width:25%;
	min-width:250px;
	padding:20px;
	color:#333333;
	background-color: #F3F2DC;
}
.tbl01 tbody td{
	width:75%;
	padding:20px;
	color:#333333;
}



@media screen and (max-width: 767px) { /* Smartphone */
	.tit01{
		margin-bottom:40px;
	}
	.tit01 .span{
		font-size:20px;
	}

	.btn{
		padding:15px 50px 15px 15px;
		font-size:14px;
		font-weight:normal;
	}
	.tbl01 tr{
		display: block;
	}
	.tbl01 tbody th{
		display: block;
		padding:10px 5px;
		font-size:14px;
		min-width:auto;
		width:100%;
	}
	.tbl01 tbody td{
		display: block;
		width:100%;
		padding:10px 5px;
		font-size:14px;
		border-left:solid 1px #ccc;
	}

	.tbl01 tbody td .tdCnt {
		padding:0 0;
		border:none;
	}
}
/* ===========================

wrapper
 
 ============================= */

#wrapper{
	overflow:hidden;
	margin-top:70px;
}

.main{
	margin-bottom:100px;
}
body.home .main{
	margin-bottom:0px;
}
@media screen and (max-width: 767px) { /* Smartphone */
	#wrapper{
		margin-top:58px;
	}
	.main{
		width:calc(100% - 40px);
		margin:0 auto;
	}
}
/* =======================================

slidar_menu

========================================= */
/* スマホヘッダー */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 9999999;
}

#fixed-top {
	border-top:solid 3px #3D916B;
  background: #fff;
  position: fixed;
  top: 0;
  z-index: 99999999;
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

/* ヘッダーのロゴ */
#fixed-top .logo {
  padding: 10px 0 0 10px;
}

#fixed-top .logo img {
  width: auto;
  height: 30px;
}

/* ヘッダーのボタン関連 */
#fixed-top .headerButtons {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: right;
  justify-content: right;
}

#fixed-top .headerButtons li a {
  display: block;
}

#fixed-top .headerButtons li img {
  vertical-align: bottom;
  height: 55px;
  width: auto;
}

/* スマートフォン用ナビゲーション*/
#slidar_menu {
	border-top:solid 3px #3D916B;
  background: #fff;
  padding: 0px;
  z-index: 999999;
}
#slidar_menu .sb-right-inner{
	position:relative;
}
#slidar_menu .sb-right-inner .logo {
	position:absolute;
	top:20px;
	left:15px;
}

#slidar_menu .sb-right-inner .logo img {
  display: block;
  width: auto;
  height: 30px;
}
#slidar_menu .slidar_menuLinks{
	padding-top:40px;
}

#slidar_menu .sb-close {
	position:relative;
	right:0px;
	text-align:right;
}
#slidar_menu .sb-close img{
	width:auto;
	height:55px;
}

.slidar_menu_login{
	padding:0 15px;
	margin-bottom:15px;
}
.slidar_menu_login a{
	display:block;
	width:100%;
	padding:15px;
	background:#3D916B url(../img/nav_icon_login.png) no-repeat 10px center;
	color:#FFF;
	font-size:20px;
	font-weight:bold;
	padding:15px 0;
	text-decoration:none;
	text-align:center;
}


.slidar_menu_lnks{
}
.slidar_menu_lnks li{
}
.slidar_menu_lnks li a{
	display:block;
	width:100%;
	border-bottom:solid 1px #EEEEEE;
	padding:15px !important;
	font-size:15px;
	color:#343434;
	text-decoration:none;
	font-weight:normal !important;
	background:url(../img/sp/slidar_menu_lnks.png) no-repeat right 15px center;
}
.slidar_menu_lnks li:first-child a{
	border-top:solid 1px #EEEEEE;
}

/* ===========================

nav
 
 ============================= */
.header{
	position:fixed;
	top:0;
	left:0;
	background:#fff;
	width:100%;
	z-index:9999;
}
nav {
	width:100%;
	max-width:1400px;
	margin:0 auto;
	display:flex;
	justify-content:space-between;
	padding: 0px 10px;
}
nav .header__logo {
	margin-top:15px;
	text-align:left;
	width: 25%;
}
nav .header__logo img{
	max-width:100%;
	height:auto;
}
nav > ul {
	width: 75%;
	margin-top:10px;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: flex-end;
	justify-content:flex-end;
	gap: 10px;

}
nav > ul > li {
	display: block;
}
nav > ul > li > a ,
nav > ul > li > span {
  display: block;
  text-align: center;
  text-decoration: none;
  color:#666;
  font-size:17px;
	padding: 20px;
  text-align:center;
border-bottom: 5px solid #fff;
cursor: pointer;
}

nav > ul > li > a:hover ,
nav > ul > li > span:hover {
	border-bottom: 5px solid #C2E87C;
}

nav > ul > li:nth-child(4){
	max-width: 200px;
}
nav > ul > li:nth-child(4) a {
background-color: #008400;
color: #fff;
padding: 20px 30px;
}
nav > ul > li:nth-child(4) a:hover{
	border: none;
	background-color: #707c05;
}

nav > ul > li:hover .menu {
  max-height: 9999px;
  opacity: 1;
  z-index: 9999;
}
nav > ul .menu {
  transition: all .2s ease-in;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  width: 100%;
  left: 0;
  text-align: center;
  position: absolute;
}
nav > ul .menu  .inner{
  background-color:#EEF4DF;

  }
nav > ul .menu__inner {
	display: -webkit-flex;
	display: flex;
	justify-content: center;
	margin: 0 auto;
	padding: 20px 0;
}
nav > ul .menu__inner__item {
	text-align: center;
	border-right: dashed 1px #CCCCCC;
	padding-right:20px;
	padding-left:20px;
}
nav > ul .menu__inner__item:first-child {
	border-left: dashed 1px #CCCCCC;
}
/* -- */
nav > ul .menu__inner__item a {
	display:block;
	text-decoration:none;
}
nav > ul .menu__inner__item a:hover {
	text-decoration: underline;
}
nav > ul .menu__inner__item a span {
	text-align:left;
	display:block;
	font-size:17px;
	color:#333;
}




/* ===========================
 
footer
 
 ============================= */

.footnav{
	background-color:  #F5F4F0;
}

.footnav .inner{
	width: 100%;
	max-width: 1100px;
	margin: 0px auto;
	padding: 30px 0px;
	display: flex;
	justify-content: space-between;
}

.footnav .inner dt{
	margin-bottom: 20px;
}

.footnav .inner li a{
	line-height: 3;
	color: #000;
	text-decoration: none;
}

.footnav .inner li a:hover{
	text-decoration: underline;
}


.footer{
	padding:30px 0;
	border-top:solid 10px #F5F4F0;
}

.footer address{
	text-align:center;
	color:#999999;
	letter-spacing: 1.6px;
	font-size:13px;
}
@media screen and (max-width: 767px) { /* Smartphone */

	.footnav dl{
		width: 100%;
		text-align: center;
	}
	.footnav ul{
		display: none;
	}


	.footer{
		padding:20px 0;
	}



}
/* ===========================

pageTop
 
 ============================= */
@media screen and (max-width: 767px) { /* Smartphone */
	.pageTop img{
		width:25px;
		height:auto;
	}
}


/* ===========================

mainVisual
 
 ============================= */
.mainVisual{
	width:100%;
	min-width:1050px;
	margin:0 auto 55px;

}
.mainVisual p{
}
.mainVisual p img{
	width:100%;
	height:auto;
	max-height: 550px;
	object-fit: cover;
}
@media screen and (max-width: 767px) { /* Smartphone */
	.mainVisual{
		width:100%;
		max-width:100%;
		min-width:100%;
		margin-bottom:30px;
	}
}
/* ===========================

pageTit
 
 ============================= */
.pageTit{
	background:#D0DDEE url(../img/sub_mainVisual.jpg) no-repeat center top;
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
	align-items: center;
	height:204px;
	margin-bottom:10px;
}
.pageTitMain{
	display:inline;
	margin:0 auto 0px;
	padding:5px 30px;
}
.pageTitMain span{
	font-size:26px;
	color:#fff;
	margin-bottom:0px;
	display:block;
	text-align:center;
}

@media screen and (max-width: 767px) { /* Smartphone */
	.pageTit{
		width: 100vw;
		margin: 0 calc(50% - 50vw) 10px;
	}
	.pageTitMain{
	}
	.pageTitMain .span{
		font-size:20px;
	}

}
/* ===========================

breadcrumb
 
 ============================= */
.breadcrumb{
	margin-bottom:100px;
	overflow:hidden;
	height:30px;
	width:100%;
	padding: 0px 20px;
}
.breadcrumb__lst{
	width:1200px;
	margin:0 auto 0px;
}
.breadcrumb__lst__item{
	margin-right:10px;
	height:30px;
	display:inline-block;
}
.breadcrumb__lst__item > a{
	text-decoration:none;
	color:#333333;
	font-size:13px;
	display:inline-block;
	height:30px;
}
.breadcrumb__lst__item > a,
.breadcrumb__lst__item > span{
	color:#00688C;
	font-size:13px;
	display:inline-block;
	height:30px;
	position: relative;

}

.breadcrumb__lst__item.homelnk{
}
.breadcrumb__lst__item.homelnk a:after{
	content:"　〉";
}

/* 2階層目以降のリンクは　li に otherlnk クラスを設定*/
.breadcrumb__lst__item.otherlnk a{

}
.breadcrumb__lst__item.otherlnk a:after{
	content:"　〉";
}

@media screen and (max-width: 767px) { /* Smartphone */
	.breadcrumb{
		width: 100vw;
		margin: 0 calc(50% - 50vw) 30px;
		overflow-x:scroll;
		padding:0 10px;
		height: initial;
	}
	.breadcrumb__lst{
		width:1200px;
	}
}

/* ===========================

bannerArea
 
 ============================= */
.bannerArea{
	width:100%;
	max-width:1120px;
	margin:0 auto 70px;
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
}
.bannerArea li{
	flex-basis:31%;
}
.bannerArea li a{
	display:block;
	text-decoration:none;
	color:#664D46;
	font-size:16px;
	text-decoration:none;
	font-weight:bold;
	text-align:center;
}
.bannerArea li a img{
	width:100%;
	text-decoration:none;
	margin-bottom:10px;
}
@media screen and (max-width: 767px) { /* Smartphone */
	.bannerArea{
		width:100%;
		max-width:100%;
		min-width:100%;
		display:block;
	}
	.bannerArea li{
		flex-basis:100%;
		width:100%;
		margin-bottom:25px;
	}
	.bannerArea li a{
		font-size:14px;
	}
}
/* ===========================

eventLst

 ============================= */



.eventArea{
	padding: 0px 0;
	width: 100vw;
	margin: 0 calc(50% - 50vw) 0;
	padding: 0px 20px;
}
body.home .eventArea{
	padding: 80px 0;
	background: #f3f3f3;
}
.eventArea .inner{
	width:100%;
	max-width:1120px;
	margin:0 auto 0px;
}
.eventLst {
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
	margin-bottom: 50px;
}

.pubcatlist{
	display:flex;
	justify-content:center;
	flex-wrap:wrap;
	margin-bottom: 50px;
}

.pubcatlist li{
	padding: 10px;
	width: 25%;
}

.pubcatlist li a{
	display: block;
	text-align: center;
	padding: 20px 10px;
	font-size: 120%;
	color: #fff;
	font-weight: bold;

}
.pubcatlist li.honbu a{
	background-color: #647DA8;
}
.pubcatlist li.yokohama a{
	background-color: #3D916B;
}
.pubcatlist li.wakayama a{
	background-color: #4086AA;
}
.pubcatlist li.niitsu a{
	background-color: #3F8CA1;
}



.pubcatlist2{
	display:flex;
	justify-content:flex-start;
	flex-wrap:wrap;
	margin-bottom: 50px;
}

.pubcatlist2 li{
	padding: 10px;
	width: 32%;
}

.pubcatlist2 li a{
	display: block;
	text-align: center;
	padding: 20px 10px;
	font-size: 120%;
	color: #fff;
	font-weight: bold;

}
.pubcatlist2.honbu a{
	background-color: #647DA8;
}
.pubcatlist2.yokohama a{
	background-color: #3D916B;
}
.pubcatlist2.wakayama a{
	background-color: #4086AA;
}
.pubcatlist2.niitsu a{
	background-color: #3F8CA1;
}


/* 最後のコンテンツを左寄せにする指定 */
.eventLst:after {
    content: "";
    display: block;
    width: 30%;  /* .boxに指定したwidthと同じ幅を指定する */
    height: 0;
}
.eventLst .item{
	flex-basis:30%;
	margin-bottom:40px;
}
.eventLst .item a{
	text-decoration:none;

}
.eventLst .item .pic{
	margin-bottom:25px;
	overflow: hidden;
	max-height: 250px;
	padding-bottom: 15px;
	box-sizing: border-box;
	position: relative;
}
.eventLst .item .pic img{
	width:100%;
	height:auto;
}
.eventLst .item .lbl{
	position:absolute;
	bottom: 0px;
	right:10px;
	background:#333;
	color:#fff;
	padding:10px;
	text-align: center;
	min-width: 100px;
}

/*本部*/
.eventLst .item .lbl.honbu,.eventLst .item .lbl.jetstory,.eventLst .item .lbl.h_upgroup,.eventLst .item .lbl.fromrouso{
	background-color: #647DA8;
}

/*横浜*/
.eventLst .item .lbl.yokohama,.eventLst .item .lbl.y_hureai,.eventLst .item .lbl.y_upgroup,.eventLst .item .lbl.y_welfare{
	background-color: #3D916B;
}

/*和歌山*/
.eventLst .item .lbl.wakayama,.eventLst .item .lbl.renketsuki,.eventLst .item .lbl.w_upgroup,.eventLst .item .lbl.w_welfare{
	background-color: #4086AA;
}

/*新津*/
.eventLst .item .lbl.niitsu,.eventLst .item .lbl.n_niji,.eventLst .item .lbl.n_upgroup,.eventLst .item .lbl.n_welfare{
	background-color: #3F8CA1;
}




.eventLst .item .tit{
	font-size:17px;
	font-weight:bold;
	margin-bottom:10px;
	color:#222222;
}
.eventLst .item .date{
	font-size:15px;
	color:#666;
}



@media screen and (max-width: 767px) { /* Smartphone */
	.eventArea{
		padding:40px 0;
	}
	.eventArea .inner{
		width:calc(100% - 40px) !important;
		max-width:calc(100% - 40px) !important;
		min-width:calc(100% - 40px) !important;
		margin:0 auto 0px;
	}
	.eventLst {
		display:block;
		margin-bottom:30px;
	}
	.eventLst:after {
		content:none;
	}
	.eventLst .item .pic{
		max-height: 160px;
		display: flex;
		align-items:flex-start;
		margin-bottom: 15px;
	}


	.eventLst .item{
		flex-basis:100%;
		width:100%;
		margin-bottom:30px;
	}
	.eventLst .item .lbl{
		font-size:13px;
	}
	.eventLst .item .tit{
		font-size:14px;
	}
	.eventLst .item .date{
		font-size:14px;
	}
	.eventArea .singleBtn{
		margin-bottom:0;
	}
}

/* ===========================

serviceArea
 
 ============================= */



.serviceArea{
	margin: 80px auto;
}

.home .serviceArea .inner{
	width:100%;
	max-width:960px;
}

.serviceArea .inner{
	width:100%;
	max-width:1120px;
	margin: 0 auto 0px;
}


.serviceArea .newsLst{
	margin-bottom: 60px;
}

.serviceArea .newsLst li{
	display: flex;
	padding: 20px;
	gap: 10px;
	align-items: center;
	border-bottom: dashed 1px #999;
}
.serviceArea .newsLst li .date{
	padding: 10px;
	min-width: 7em;
}
.serviceArea .newsLst li .lbl{
	padding: 5px;
	color: #fff;
	min-width: 8em;
	border-radius: 20px;
	text-align: center;
}

.serviceArea .newsLst li .cat_honbu{
	background-color: #647DA8;
}
.serviceArea .newsLst li .cat_yokohama{
	background-color: #3D916B;
}
.serviceArea .newsLst li .cat_wakayama{
	background-color: #4086AA;
}
.serviceArea .newsLst li .cat_niitsu{
	background-color: #3F8CA1;
}

.serviceArea .newsLst li .tit{
	padding: 10px;
}



@media screen and (max-width: 767px) { /* Smartphone */
	.serviceArea .inner{

		width:auto !important;
		max-width:auto !important;
		min-width:auto !important;
	}

	.serviceArea .newsLst li{
		flex-wrap: wrap;
		gap: 5px;
		padding: 0px;
		margin-bottom: 10px;
	}
	.serviceArea .newsLst li .lbl {
		padding: 0px;
	}
	.serviceArea .newsLst li .tit{
		width: 100%;
		margin-bottom: 10px;
	}
}


/* ===========================

pageInnerLink
 
 ============================= */
.pageInnerLink{
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
	margin-bottom:140px;
}
.pageInnerLink li{
	flex-basis:23.6%;
}
.pageInnerLink li a{
	display:block;
	background:#AFC112 url(../img/pageInnerLink.png) no-repeat right 10px center;
	color:#fff;
	text-decoration:none;
	font-size:16px;
	font-weight:bold;
	padding:10px;
}
.pageInnerLink li a:hover{
	background-color:#707c05;
}

@media screen and (max-width: 767px) { /* Smartphone */
	.pageInnerLink{
		margin-bottom:40px;
	}
	.pageInnerLink li{
		flex-basis:49%;
		margin-bottom:5px;
		font-size:14px;
	}
}
/* ===========================

pageLnks
 
 ============================= */
.pageLnks{
	background:#F0f0f0;
	padding:50px 20px 30px;
}
.pageLnks__area{
	width:100%;
	max-width:1200px;
	margin:0 auto 0px;
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
}
.pageLnks__area:after {
    content: "";
    width: 31%;
}

.pageLnks__area .item{
	flex-basis:31%;
	margin-bottom:20px;
}

.pageLnks__area .item a{
	display: block;
	background:#fff;
	border: #333 2px solid;
	padding: 15px;
	text-align: center;
	overflow: hidden;
	color: #333;
	text-decoration: none;
}
.pageLnks__area .item a::after{
	content: url(../img/pagelink_ico.png);
	float: right;
}

.pageLnks__area .item a:hover{
	background-color: #eee;
	text-decoration: underline;
}


@media screen and (max-width: 767px) {
  /* Smartphone */
	.pageLnks__area{
		width:calc(100% - 20px);
		display: block;
	}
	.pageLnks__area .item{
		flex-basis:100%;
		padding:10px;
		margin-bottom: 5px;
	}
}


/* ===========================

oldPdfLnkBox
 
 ============================= */
.oldPdfLnkBox{
	text-align:center;
}
a.oldPdfLnk{
	display:inline-block;
	background:url(../img/pdfIcon.png) no-repeat 30px center;
	background-size:30px auto;
	padding:15px 30px 15px 80px;
	border:solid 1px #ccc;
	border-radius:5px;
	font-size:20px;
}
/* ===========================

pdfLst
 
 ============================= */
.pdfLst{
}

.pdfLst .item{
	border:solid 1px #CCCCCC;
	padding:30px;
	margin-bottom:20px;
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
}
.pdfLst .item .cnt{
	flex-basis:calc(100% - 260px);
}
.pdfLst .item .cnt .lbl{
	margin-bottom:10px;
}
.pdfLst .item .cnt .lbl span{
	display:inline-block;
	background:#F5F4F0;
	font-size:12px;
	color:#333333;
	padding:5px 10px;
}
.pdfLst .item .cnt .tit{
	font-size:24px;
	color:#333333;
	font-weight:bold;
	margin-bottom:15px;
}
.pdfLst .item .cnt .txt{
	font-size:16px;
	color#333333;
}
.pdfLst .item .lnk{
	flex-basis:240px;
}
.pdfLst .item .lnk a{
	text-decoration:none;
}
.pdfLst .item .lnk a span{
	display:block;
}
.pdfLst .item .lnk a span:nth-child(1){
	background:#EEEEEE;
	text-align:center;
	padding:15px 0;
}
.pdfLst .item .lnk a span:nth-child(2){
	background:#3D916B;
	color:#fff;
	font-size:16px;
	font-weight:bold;
	text-align:center;
	padding:5px;
}
.pdfLst .item .lnk a:hover span:nth-child(1){
	background:#ffe7e7;
}

/* -- */
.pdfLst.blogPdfFiles{
	width:100%;
	max-width:620px;
	margin:0 auto;
}
.pdfLst.blogPdfFiles .item .cnt{
	flex-basis:76.2%;
}
.pdfLst.blogPdfFiles .item .lnk{
	flex-basis:22%;
}


@media screen and (max-width: 767px) {
  /* Smartphone */
	.pdfLst .item .cnt,
	.pdfLst.blogPdfFiles .item .cnt{
		flex-basis:100%;
		margin-bottom:20px;
	}
	.pdfLst .item .lnk,
	.pdfLst.blogPdfFiles .item .lnk{
		flex-basis:100%;
	}
}
/* ===========================

pdfLst2
 
 ============================= */
.pdfLst2{
}
.pdfLst2 .item{
	margin-bottom:50px;
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
}
.pdfLst2 .item .cnt{
	flex-basis:calc(100% - 260px);
}
.pdfLst2 .item .cnt .tit{
}
.pdfLst2 .item .cnt .txt{
	font-size:16px;
	color#333333;
}
.pdfLst2 .item .lnk{
	flex-basis:240px;
}
.pdfLst2 .item .lnk a{
	text-decoration:none;
}
.pdfLst2 .item .lnk a span{
	display:block;
}
.pdfLst2 .item .lnk a span:nth-child(1){
	background:#EEEEEE;
	text-align:center;
	padding:15px 0;
}
.pdfLst2 .item .lnk a span:nth-child(2){
	background:#3D916B;
	color:#fff;
	font-size:16px;
	font-weight:bold;
	text-align:center;
	padding:5px;
}
.pdfLst2 .item .lnk a:hover span:nth-child(1){
	background:#ffe7e7;
}
.pdfLst2 .item .lnk a + span{
	text-align:center;
	display:block;
}
@media screen and (max-width: 767px) {
  /* Smartphone */
	.pdfLst2 .item .cnt{
		flex-basis:100%;
		margin-bottom:20px;
	}
	.pdfLst2 .item .lnk{
		flex-basis:100%;
	}
}


/* ===========================

blogDetail

   =========================== */

.blogInfo{
	display:flex;
	justify-content:flex-end;
	flex-wrap:wrap;
	align-items: center;      /* 垂直方向の中央寄せ */
	margin-bottom:15px;
	font-size: 90%;
}


.blogInfo .lbl{
	display:inline-block;
    color: #FEF3EB;
    padding: 10px 15px;
}

.lbl.honbu{
	background-color: #647DA8;
}
.lbl.yokohama{
	background-color: #3D916B;
}
.lbl.wakayama{
	background-color: #4086AA;
}
.lbl.niitsu{
	background-color: #3F8CA1;
}


.blogInfo .blogDate{
	background-color: #eee;
    padding: 10px 15px;
	display:inline-block;
}

.blogDetail {
  margin: 0 auto 50px;
}

.column-two .blogDate,
.column-two .blogDetail {
  width: 100% !important;
}

.blogDetail p {
  overflow: hidden;
  margin-bottom:40px;
  font-size: 1em;
  line-height: 2;
}

.blogDetail ul {
  list-style: disc;
  font-size: 1em;
  margin-left: 15px;
  margin-bottom:40px;
}

.blogDetail ol {
  list-style: decimal;
  font-size: 1em;
  margin-left: 15px;
  margin-bottom:40px;
}

.blogDetail a {
  color: #00f;
  text-decoration: none;
}

.blogDetail a:hover {
  text-decoration: underline;
}

.blogDetail hr {
  border: none;
  border-bottom: solid 1px #ddd;
  margin-bottom: 30px;
}

.blogDetail strong {
  font-weight: bold;
}

.blogDetail img {
  border: solid 1px #ccc;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 690px;
  margin-bottom:30px;
  height: auto;
}

.blogDetail img.aligncenter {
  display: block;
  text-align: center;
  margin: 15px auto;
}

.blogDetail img.alignleft {
  float: left;
  margin-top: 15px;
  margin-right: 15px;
  margin-bottom: 15px;
  max-width: 45%;
  height: auto;
}

.blogDetail img.alignright {
  float: right;
  margin-top: 15px;
  margin-left: 15px;
  margin-bottom: 15px;
}

.blogDetail img.alignnone {
  margin: 15px 0;
}

.blogDetail img.size-full {
  display: block !important;
  float: none !important;
  width: 95%;
  height: auto;
  margin: 0 auto 30px;
}

.blogDetail img.size-large {
  display: block;
  width: 80%;
  height: auto;
  margin: 0 auto 30px;
}

.blogDetail .news-photo {
  text-align: center;
  margin-bottom: 15px;
}

.blogDetail .news-photo img {
  width: 70%;
  height: auto;
}

.blogcat {
  background: #eee;
  padding: 5px;
  border-radius: 4px;
  text-decoration: none;
  color: #000;
}
/* ===========================

prevNext

   =========================== */
.prevNext{
	position:relative;
	margin-bottom:100px;
	display: flex;
	justify-content: space-between;
}
.prevNext p{
	flex-basis:50%;

}
.prevNext p a{
	text-decoration:none;
	display:inline-block;
	color:#3D916B;
	border:solid 1px #3D916B;
	padding:8px 20px;
	font-weight:bold;
}
.prevNext p a:hover{
	color:#000;
}
.prevNext p.l_prev{

	text-align:left;
}
.prevNext p.l_next{

	text-align:right;
}

.prevNext p.l_prev a{
	background:url(../img/l_prev.png) no-repeat left 5px center;
	padding-left:25px;
}
.prevNext p.l_next a{
	background:url(../img/l_next.png) no-repeat right 5px center;
	padding-right:25px;
}
/* ===========================

.wp-pagenavi 

   =========================== */

.wp-pagenavi {
  margin: 0 auto 20px;
  text-align: center;
  padding-top: 30px;
}
.wp-pagenavi a {
	text-decoration:underline !important;
}

.wp-pagenavi span,
.wp-pagenavi a {
  margin: 0 3px;
}

.wp-pagenavi span,
.wp-pagenavi a {
  background: #fff;
  padding: 5px 10px !important;
  border:solid 1px #3D916B !important;
  color: #3D916B;
}

.wp-pagenavi span.current {
  color: #fff;
  border: solid 1px #3D916B;
  background: #3D916B;
}

.wp-pagenavi span.pages {
  color: #3D916B;
  border: none;
  background: #fff;
}

/* ===========================

.お問い合わせ

   =========================== */


.contactlist1{
	display: flex;
	justify-content: center;
	margin-bottom: 50px;
	background-color: #eee;
	width: 90%;
	margin: 0px auto 30px;
}

.contactlist1 dl{
	padding: 20px;
	font-size: 120%;
	text-align: center;
}

.contactlist1 dl dt{
	font-weight: bold;
	margin-bottom: 10px;
}

.contactlist2{
	display: flex;
	gap: 30px;
	justify-content: space-between;
	width: 90%;
	margin: 0px auto;
}
.contactlist2 dl{
	background-color: #eee;
	padding: 20px;
	flex: 1;

}

.contactlist2 dl dt{
	font-weight: bold;
	margin-bottom: 10px;
}


.contact-page-box{
	width: 80%;
	margin: 10px auto 50px;
	padding: 30px;
	border: #eae8ca solid 2px;
	box-sizing: border-box;
}
.contact-page-box p{
	padding: 20px;
	text-align: center;
}
.contact-page-box .salon-btn{
	text-align: center;
}

.contact-page-box .salon-btn a{
	display: inline-block;
    margin: 5px 0px;
    border: #3397D9 solid 3px;
	width: 300px;
    padding: 10px;
}

.area-contact .table-contact{
	background: #fdf9f7;
	padding: 50px;
}

.table-contact table{
	width: 80%;
	margin: 5px auto;
}
.table-contact td{
	padding: 20px;
	border-top: 2px dotted #ccc;
}

.table-contact strong{
	line-height: 200%;
	margin: 5px 10px;
}
.table-contact input,
.table-contact textarea{
	display: block;
	padding: 10px;
	border: 2px #ccc solid;
	width: 100%;
	margin: 10px 0px;
	box-sizing: border-box;
	font-size: 100%;
}
.table-contact input[type="radio"]{
	display: inline-block;
	width: inherit;
}

.table-contact select{
	padding: 10px;
	border: 2px #ccc solid;
	margin: 10px 0px;
	box-sizing: border-box;
	font-size: 100%;
}

.table-contact .contact-abs:before{
	content: "必須";
	background: #DB0004;
	padding: 5px;
	margin: 5px 0px;
	color: #fff;
	
}
.table-contact .contact-std:before{
	content: "任意";
	background: #016DD9;
	padding: 5px;
	color: #fff;
	margin: 5px 0px;
}

.wpcf7 input[type="submit"]{
	border: 2px #fff solid;
	border-radius: 5px;
	background: #D0115B;
	color: #fff;
	font-weight: bold;
	font-size: 140%;
	padding: 10px 20px;
	box-shadow: 0px 1px 6px -1px #444;
	display: block;
	width: 400px;
	margin: 10px auto;
	cursor: pointer;
}
.wpcf7 input[type="submit"]:hover{
	box-shadow: 0px 1px 4px -1px #444;
}
/* エラー */
.wpcf7-validation-errors{
	background: #fff;
}



/* ===================================================================
　個別ページ
   =================================================================== */

/* 組織図 */


table thead th.honbu{
	background-color: #647DA8;
}
table thead th.yokohama{
	background-color: #3D916B;
}
table thead th.wakayama{
	background-color: #4086AA;
}
table thead th.niitsu{
	background-color: #3F8CA1;
}

.tbl02{
	width:100%;
	border:solid 1px #666;
}
.tbl02 thead tr{
}
.tbl02 thead th{
	background-color: #666;
	width:25%;
	min-width:250px;
	padding:20px;
	color:#fff;
}

.tbl02 thead td{
	width:75%;
	padding:20px;
	color:#333333;
}
.tbl02 tbody tr{
	border:solid 1px #666;
}
.tbl02 tbody th{
	background-color: #eee;
	width:25%;
	min-width:250px;
	padding:20px;
	color:#333333;
}
.tbl02 tbody td{
	width:75%;
	padding:20px;
	color:#333333;
	border:solid 1px #666;
}

.tbl04{
	width:100%;
	border:solid 1px #666;
}
.tbl04 thead tr{
}
.tbl04 thead th{
	background-color: #666;
	width:25%;
	min-width:250px;
	padding:20px;
	color:#fff;
}

.tbl04 thead td{
	width:25%;
	padding:20px;
	color:#333333;
}
.tbl04 tbody tr{
	border:solid 1px #666;
}
.tbl04 tbody th{
	background-color: #eee;
	width:25%;
	min-width:250px;
	padding:20px;
	color:#333333;
}
.tbl04 tbody td{
	width:25%;
	padding:20px;
	color:#333333;
	border:solid 1px #666;
}

.tbl05{
	width:100%;
	border:solid 1px #666;
}
.tbl05 thead tr{
}
.tbl05 thead th{
	background-color: #666;
	width:20%;
	min-width:200px;
	padding:20px;
	color:#fff;
}

.tbl05 thead td{
	width:20%;
	padding:20px;
	color:#333333;
}
.tbl05 tbody tr{
	border:solid 1px #666;
}
.tbl05 tbody th{
	background-color: #eee;
	width:10%;
	padding:20px 10px;
	color:#333333;
	font-size: 15px;
}
.tbl05 tbody td{
	width:20%;
	padding:20px;
	color:#333333;
	border:solid 1px #666;
}



@media screen and (max-width: 767px) { /* Smartphone */



}



/* 労働組合について */

.policybox{
	width: 100%;
	display: flex;
	justify-content: space-between;
}

.policybox .pb_item{
	flex-basis: 31%;
	background: #eee;
}

.policybox .pb_item .pb_item_top{
	position: relative;
	display: inline-block;
	margin: 0 0 1.5em;
	padding: 20px 10px 30px;
	width: 100%;
	color: #555;
	font-size: 16px;
	background: #3D916B;
	text-align: center;
}
.policybox .pb_item .pb_item_top::before{
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -15px;
	border: 15px solid transparent;
	border-top: 15px solid #3D916B;
}

.policybox .pb_item .pb_item_top h3{
	border: none;
	color: #fff;
	font-size: 24px;
	font-weight: normal;
}
.policybox .pb_item .pb_item_top p{
	color: #DCE35B;
}
.policybox .pb_item .pb_item_top p span{
	color: #fff;
	font-weight: bold;
	font-size: 40px;
	display: block;
}

.policybox .pb_item .txt01{
	padding: 10px 20px 0px;
}

@media screen and (max-width: 767px) { /* Smartphone */

	.policybox{
		display: block;
	}
	.policybox .pb_item{
		flex-basis: 100%;
		padding-bottom: 10px;
		margin-bottom: 15px;
	}
}




