@charset "UTF-8";



.w900 {
	width: 94%;
	padding: 0 3%;
	max-width: 900px;
	margin: 0 auto;
	text-align: left;
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.w900 {
	width: 90%;
	padding: 0 5%;
}
}



/*共通
--------------------------------------------------------------------*/
pre {
	white-space: pre-wrap;
}
article {
	box-sizing: border-box;
	border-bottom: solid 1px #999b9b;
	padding: 70px 5%;
	text-align: center;
}
article:first-of-type {
	border-top: solid 1px #999b9b;
}
article > div {
	max-width: 1080px;
	margin-left: auto;
	margin-right: auto;
}

.entry-inf {
	margin-bottom: 2.0em;
}
.entry-inf a {
	text-decoration: none !important;
	transition: all 0.6s;
}
.entry-inf a:hover {
	transition: all 0.3s;
	opacity: 0.6;
}
/* 日付 */
.entry-date {
	font-size: 105%;
	letter-spacing: .15em;
	line-height: 1.2em;
	margin-bottom: .8em;
}
/* タイトル */
.entry-title {
	color: #082a47;
	font-size: min(200%,3.2vw);
	letter-spacing: .15em;
	line-height: 1.4em;
}
.entry-title a {
	color: #000000;
}
/* 記事 */
.txt_summary a,
.entry-content a {
	color: #1980be;
	text-decoration: underline;
}
.txt_summary a:hover {
	color: #294c7f;
	text-decoration: none;
}
.txt_summary {
	text-align: left;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
article {
	padding: 5% 0;
}
.entry-inf {
	font-size: 90%;
	margin-bottom: 1.0em;
}
/* 日付 */
.entry-date {
	letter-spacing: .1em;
	margin-bottom: .5em;
}
/* タイトル */
.entry-title {
	font-size: 3.2vw;
	letter-spacing: .1em;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
article {
	padding: 8% 0;
}
.entry-inf {
	margin-bottom: 1.0em;
}
/* 日付 */
.entry-date {
	font-size: 100%;
	letter-spacing: .05em;
	margin-bottom: .5em;
}
/* タイトル */
.entry-title {
	font-size: 140%;
	letter-spacing: .05em;
	line-height: 1.4em;
}
}



/*子カテゴリー
--------------------------------------------------------------------*/
/*子カテゴリーリンク*/
.cat_select {
	width: 100%;
	max-width: 20em;
	margin-left: auto;
	margin-right: 0;
	margin-top: -5%;
	position: relative;
}
.cat_select .open_btn {
	background-color: #294c7f;
	font-size: 110%;
	color: #fff;
	letter-spacing: .15em;
	line-height: 1.4em;
	padding: .6em 1.0em;
	position: relative;
	cursor: pointer;
	transition: all .5s;
}
.cat_select .open_btn:hover {
	background: #1980be;
}
.cat_select .open_btn::before,
.cat_select .open_btn::after {
	content: "";
	position: absolute;
	width: .8em;
	height: 1px;
	background: #fff;
	right: 1.0em;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.4s;
}
.cat_select .open_btn::after {
	transform: translateY(-50%) rotate(90deg);
}
.cat_select .open_btn.active::after {
	transform: translateY(-50%) rotate(0deg);
}

.cat_select .open_box {
	display: none;	/*初期表示*/
	position: absolute;
	z-index: 5;
	width: 100%;
	box-sizing: border-box;
	top: 100%;
	left: 0;
}
.cat_select .open_box ul {
	background-color: #f5f5f5;
	padding: 10px 6%;
}
.cat_select .child_cat_list a {
	display: block;
	line-height: 1.4em;
	padding: 1em;
	padding-right: 3.0em;
	position: relative;
	border-bottom: solid 1px #999b9b;
}
.cat_select .child_cat_list a:hover {
	background: rgba(255,255,255,0.9);
}
.cat_select .child_cat_list li:last-child a {
	border-bottom: none;
}
.cat_select .child_cat_list a::before {
	content: "";
	position: absolute;
	width: 1.2em;
	height: 1.2em;
	right: .5em;
	top: 50%;
	transform: translateY(-50%);
	background: url("../images/arrow1@2x.png") no-repeat center center;
	background-size: contain;
}

/*記事内子カテゴリー*/
article .child_cat_list2 {
	display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
article .child_cat_list2 li {
	font-size: 90%;
	letter-spacing: .05em;
	line-height: 1.2em;
	background-color: rgba(8,40,69,0.1);
	padding: .2em 1.0em;
	border-radius: 2em;
	margin-top: 1.0em;
	margin-right: 5px;
}
article .child_cat_list2 li:last-child {
	margin-right: 0;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
/*子カテゴリーリンク*/
.cat_select {
	font-size: 90%;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
/*子カテゴリーリンク*/
.cat_select {
	font-size: 80%;
}
.cat_select .open_box ul {
	padding-left: 4%;
	padding-right: 4%;
}
.cat_select .child_cat_list a {
	padding: .8em 0;
	padding-right: 2.0em;
}
.cat_select .child_cat_list a .com_arrow {
	right: 0;
}

/*記事内子カテゴリー*/
article .child_cat_list2 li {
	font-size: 80%;
	letter-spacing: normal;
	margin-top: 1.0em;
}
}



/*一覧ページ
--------------------------------------------------------------------*/
.entry_list .float_box {
	text-align: left;
}
.entry_list .float_box .child_cat_list2 {
    justify-content: flex-start;
}
.entry_list .float_box .img_thumbnail {
	float: left;
	width: 28%;
	max-width: 300px;
	text-align: center;
	position: relative;
	overflow: hidden;
	box-sizing: border-box;
}
.entry_list .float_box .txt_box {
	width: 68%;
	max-width: 730px;
	float: right;
}
.entry_list .float_box .img_thumbnail:before {
    content:"";		/*高さ*/
    display: block;
    padding-top: 67%;
}
.entry_list .float_box .img_thumbnail img {
	position: absolute;
	z-index: 0;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	margin: auto;
	text-align: center;
}

/* アーカイブタイトル */
.archive-title {
	font-family: semplicitapro, sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 110%;
	letter-spacing: .1em;
	line-height: 1.2em;
	opacity: 0.6;
	margin-bottom: 1.0em;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
/* アーカイブタイトル */
.archive-title {
	font-size: 110%;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.entry_list .float_box {
	text-align: center;
}
.entry_list .float_box .child_cat_list2 {
    justify-content: center;
}
.entry_list .float_box .img_thumbnail {
	float: none;
	width: 60%;
	margin: 0 auto 1.0em;
}
.entry_list .float_box .txt_box {
	width: 100%;
	float: none;
}

/* アーカイブタイトル */
.archive-title {
	font-size: 90%;
}
}



/*個別ページ
--------------------------------------------------------------------*/
.single_page article {
	padding-bottom: 150px;
}
.single_page article p {
	margin-top: 1.5em;
}
.single_page article p:first-child {
	margin-top: 0;
}
.single_page .entry-inf {
	font-size: 110%;
	margin-bottom: 100px;
}
.single_page .entry-title {
	font-size: min(240%,4.0vw);
}
.single_page .entry-content {
	text-align: left;
}

/* 画像 */
article img.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
article img.alignright {
	padding-left: 1.0em;
	padding-bottom:.5em;
	display: inline;
}
article img.alignleft {
	padding-right: 1.0em;
	padding-bottom: .5em;
	display: inline;
}	
article .alignright {
	float: right;
}
article .alignleft {
	float: left;
}

/* 前後の記事へ */
.single_page .page_link {
	font-size: 90%;
	padding-top: 3.0em;
}
.single_page .page_link li {
	width: 48%;
}
.single_page .page_link li.flt_l {
	text-align: left;
}
.single_page .page_link li.flt_r {
	text-align: right;
}
.single_page .page_link li a {
	padding-right: 1.8em;
	position: relative;
}
.single_page .page_link li a:hover {
	color: #1980be;
}
.single_page .page_link li a::before {
	font-family: 'fontello';
	content: '\e809';
	font-size: 120%;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-48%);
}
.single_page .page_link li.flt_l a {
	padding-left: 1.8em;
	padding-right: 0;
}
.single_page .page_link li.flt_l a::before {
	right: auto;
	left: 0;
	transform: translateY(-48%) rotate(-180deg);
}

.single_page .com_btn2 {
	margin-top: 3.0em;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
.single_page .entry-inf {
	margin-bottom: 6%;
}
.single_page .entry-title {
	font-size: 4.0vw;
}
.single_page article {
	padding-bottom: 10%;
}
.single_page .page_link {
	padding-top: 2.0em;
}
.single_page .com_btn2 {
	margin-top: 2.0em;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.single_page article {
	padding-bottom: 15%;
}
.single_page .entry-inf {
	margin-bottom: 8%;
}
.single_page .entry-title {
	font-size: 160%;
}
.single_page article p {
	margin-top: 1.0em;
}
	
/* 前後の記事へ */
.single_page .page_link {
	width: 100%;
}
.single_page .page_link li {
	width: 100%;
	text-align: center !important;
	float: none !important;
	margin: .5em 0;
}
.single_page .page_link {
	padding-top: 1.0em;
}
.single_page .com_btn2 {
	margin-top: 1.0em;
}
	
/* 画像 */
article img.aligncenter {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}
article img.alignright,
article img.alignleft {
	padding: 0;
	margin: 0 auto;
	text-align: center;
}	
article .alignright,
article .alignleft {
	float: none;
}
}



/*page number
-----------------------------------------------------*/
.wp-pagenavi {
	clear: both;
	width: 100%;
	font-size: 110%;
	line-height: 1.0em;
	display: inline-block;
	vertical-align: middle;
	text-align: center;
	background: transparent;
	padding-top: 2.5em;
}
.wp-pagenavi .pages {
	display: none;
}
.wp-pagenavi span,
.wp-pagenavi a {	
	display: inline-block;
	vertical-align: middle;
	text-align: center;
	width: 1.8em;
	line-height: 1.8em;
	border-radius: 50%;
	box-sizing: border-box;
	margin: 0 .5em;
	letter-spacing: normal;
	position: relative;
}

/* 現在地 */
.wp-pagenavi span.current,
.wp-pagenavi a.page:hover {
	background: #294c7f;
	color: #fff;
}

/* 左右の矢印 */
.wp-pagenavi .nextpostslink,
.wp-pagenavi .previouspostslink {
	position: relative;
	width: 2.0em;
	height: 2.0em;
}
.wp-pagenavi .nextpostslink::after,
.wp-pagenavi .previouspostslink::after {
	font-family: 'fontello';
	content: '\e809';
	width: 1.8em;
	line-height: 1.8em;
	text-align: center;
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	margin: auto;
	transform: translateY(-50%);
	transition: all .5s;
}
.wp-pagenavi .previouspostslink::after {
	transform: translateY(-55%) rotate(180deg);
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.wp-pagenavi {
	font-size: 120%;
	padding-top: 1.5em;
}
}

 
 
/*ウィジェット
-----------------------------------------------------*/
.widget_box {
	background: #fff;
}
.widget_box .near_box {
	width: 50%;
	max-width: 430px;
	text-align: left;
	float: left;
}
.widget_box .calendar_box {
	width: 46%;
	max-width: 400px;
	float: right;
	position: relative;
}

.widget_box .wid_index {
	font-size: 125%;
	letter-spacing: .15em;
	line-height: 1.2em;
	margin-bottom: .5em;
}
.widget_box .near_list {
	font-size: 100%;
	line-height: 1.4em;
}
.widget_box .near_list a {
	display: block;
	padding: .8em 0;
	border-bottom: solid 1px #999b9b;
	position: relative;
	padding-left: 1.2em;
}
.widget_box .near_list a:hover {
	color: #1980be;
}
.widget_box .near_list a::before {
	content: "";
	position: absolute;
	letter-spacing: normal;
	line-height: 1.0em;
	width: .5em;
	height: .5em;
	border-radius: 50%;
	background: #294c7f;
	left: 0;
	top: 1.3em;
}

.widget_box #wp-calendar {
	border: none;
	width: 100%;
	margin: 0 auto;
	text-align: center;
	position: relative;
	background: #f5f5f5;
	font-size: 95%;
}
.widget_box #wp-calendar a {
	color: #1980be;
	font-weight: bold;
	text-decoration: underline;
}
.widget_box #wp-calendar a:hover {
	color: #294c7f !important;
	text-decoration: none;
}
.widget_box #wp-calendar caption,
.widget_box #wp-calendar tfoot {
	line-height: 1.0em;
}
.widget_box #wp-calendar caption {
	letter-spacing: .15em;
	padding-bottom: 15px;
}

.widget_box #wp-calendar thead th {
	background: #294c7f;
	color: #fff;
	line-height: 1.0em;
	padding: 1.0em 0;
}

.widget_box #wp-calendar tbody td {
	padding: .5em 0;
}
.widget_box #wp-calendar tbody tr:first-of-type td {
	padding-top: 1.0em;
}
.widget_box #wp-calendar tbody tr:last-of-type td {
	padding-bottom: 1.0em;
}
.widget_box #wp-calendar a {
	text-decoration: underline;
}

.widget_box #wp-calendar caption,
.widget_box #wp-calendar tfoot {
	font-weight: normal;
	letter-spacing: .15em;
	line-height: 1.2em;
}
.widget_box #wp-calendar tfoot {
	width: 100%;
	position: absolute;
	top: 0;
}
.widget_box #wp-calendar #prev {
	position: absolute;
	left: 0;
	top: 0;
	width: 100px;
	text-align: center;
}
.widget_box #wp-calendar #next {
	position: absolute;
	right: 0;
	top: 0;
	width: 100px;
	text-align: center;
}
.widget_box #wp-calendar tfoot a {
	color: #000000 !important;
	font-weight: normal;
	text-decoration: none;
	display: block;
	position: relative;
}
.widget_box #wp-calendar tfoot a:hover,
.widget_box #wp-calendar tfoot a:hover::before {
	color: #1980be !important;
}
.widget_box #wp-calendar tfoot a::before {
	content: "";
	position: absolute;
	width: .5em;
	height: .5em;
	right: 0;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	color: #333;
	line-height: 1.0em;
	border: 1px solid currentColor;
	border-left: 0;
	border-bottom: 0;
}
.widget_box #wp-calendar #prev a::before {
	right: auto;
	left: 0;
	transform: translateY(-50%) rotate(-135deg);
}
.widget_box #wp-calendar #next a::before {
	right: 0;
}

.widget_box .wp-calendar-nav {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	text-align: center;
	line-height: 1.2em;
}
.widget_box .wp-calendar-nav span {
	display: inline-block;
	position: absolute;
	top: 0;
}
.widget_box .wp-calendar-nav .wp-calendar-nav-prev {
	left: 0;
}
.widget_box .wp-calendar-nav .wp-calendar-nav-next {
	right: 0;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.widget_box .near_box,
.widget_box .calendar_box {
	width: 100%;
	max-width: 100%;
	float: none;
}
.widget_box .near_box {
	margin-bottom: 12%;
	font-size: 85%;
}
.widget_box .wid_index {
	font-size: 140%;
	letter-spacing: .1em;
}
.widget_box #wp-calendar {
	font-size: 90%;
}
}



/*採用
--------------------------------------------------------------------*/
.recruit .bosyu_txt {
	text-align: center;
	color: #f9998d;
	font-size: 170%;
	font-weight: bold;
	letter-spacing: .15em;
	line-height: 1.4em;
}
.recruit .lead_img_list {
	width: 100%;
	max-width: 1100px;
	margin-left: auto;
	margin-right: auto;
	display: flex;
    justify-content: space-between;
}
.recruit .lead_img_list li {
	width: 50%;
	max-width: 540px;
}
.recruit .tbl_bosyu {
	width: 100%;
	border-top: solid 1px #999b9b;
}
.recruit .tbl_bosyu th,
.recruit .tbl_bosyu td {
	border-bottom: solid 1px #999b9b;
	vertical-align: middle;
	box-sizing: border-box;
	padding: 2.0em 4%;
}
.recruit .tbl_bosyu th {
	width: 22%;
	vertical-align: top;
	border-right: solid 1px #999b9b;
	font-family: "zen-old-mincho", serif;
	font-weight: 400;
	font-style: normal;
	text-align: center;
	color: #294c7f;
	font-size: 115%;
	letter-spacing: .15em;
	line-height: 1.4em;
}
.recruit .tbl_bosyu td p {
	margin-top: 1.5em;
}
.recruit .tbl_bosyu td p:first-of-type {
	margin-top: 0;
}

.recruit .entry_txt1,
.recruit .entry_tel,
.recruit .entry_txt2 {
	margin-bottom: 1.0em;
}
.recruit .mobile_attention {
	margin-top: 2.0em;
	margin-bottom: 2.0em;
}
.recruit .entry_mail,
.recruit .entry_tel {
	font-size: 110%;
	font-weight: bold;
}
.entry_mail a,
.entry_tel a {
	text-decoration: underline;
}
.recruit .entry_mail a:hover,
.recruit .entry_tel a:hover {
	color: #49a2c7;
	text-decoration: none;
}
	
/* メール受信注意 */
.mobile_attention {
	background: #f5f5f5;
}
.mobile_attention dt {
	font-family: "zen-old-mincho", serif;
	font-weight: 400;
	font-style: normal;
	font-size: 100%;
	letter-spacing: .15em;
	line-height: 1.6em;
	text-align: center;
	cursor: pointer;
	padding: 1.5em 3%;
}
.mobile_attention dt > span {
	display: inline-block;
	position: relative;
	padding-right: 1.5em;
}
.mobile_attention dt.open_btn .icon_open {
	font-size: 140%;
	right: 0;
}
.mobile_attention dd {
	padding: 0 5% 3%;
	font-size: 90%;
	line-height: 1.8em;
}
.mobile_attention dd span {
	color: #f9998d;
}
.mobile_attention ul {
	margin-top: 1.0em;
	list-style: none;
}
.mobile_attention li {
	float: left;
	margin-right: 20px;
	position:relative;
	padding-left: 1.0em;
}
.mobile_attention li::before{
    position: absolute;
    content: "";
    left: 0;
	top: .8em;
    width: .3em;
    height: .3em;
    border-top: 1px solid #666;
    border-right: 1px solid #666;
    transform: rotate(45deg);
}
.mobile_attention .hyde_box {
	display: none;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
.recruit .bosyu_txt {
	font-size: 150%;
	letter-spacing: .05em;
}
.recruit .tbl_bosyu th,
.recruit .tbl_bosyu td {
	padding: 1.5em 3%;
}
.recruit .tbl_bosyu th {
	letter-spacing: .1em;
}
.mobile_attention dt {
	letter-spacing: .1em;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.recruit .bosyu_txt {
	text-align: left;
	font-size: 120%;
	letter-spacing: .05em;
	margin-top: .5em;
}
.recruit .tbl_bosyu tr,
.recruit .tbl_bosyu th,
.recruit .tbl_bosyu td {
	display: block;
	box-sizing: border-box;
	width: 100% !important;
}
.recruit .tbl_bosyu th,
.recruit .tbl_bosyu td {
	border-width: 1px;
}
.recruit .tbl_bosyu th {
	border-right: none;
	border-bottom: none;
	background: rgba(153,155,155,0.1);
	padding: .5em 4%;
	font-size: 120%;
	letter-spacing: .1em;
}
.recruit .tbl_bosyu td {
	padding: 1.0em 4%;
}

.recruit .entry_mail,
.recruit .entry_tel {
	font-size: 110%;
}
	
/* メール受信注意 */
.mobile_attention {
	font-size: 90%;
	line-height: 1.8em;
}
.mobile_attention dt {
	padding: .8em 3%;
	font-size: 120%;
	letter-spacing: .05em;
}
.mobile_attention dt > span {
	display: block;
}
}