@charset "utf-8";
/* CSS Document */


/*====================================
	page-name
====================================*/
.page-name{
    width: 100%;
	max-width: 100%;
    background: #e6f8f1;
	padding: 100px 30px 80px;
	margin: auto;
    text-align: center;
}
.page-name__en{
	color: #1e8c63;
	font-size: 1.5rem;
	line-height: 1;
	font-weight: 700;
	text-transform: uppercase;
}
.page-name__jp{
	font-size: 2.5rem;
	font-weight: 700;
}

/*====================================
	breadcrumbs
====================================*/
.breadcrumbs{
   color: #666;
	font-size: 1.4rem;
	padding-bottom: 20px;
	border-bottom: 5px solid #e7e7e7;
}
.breadcrumbs a{
   color: #000;
}

/*====================================
	pagenavi
====================================*/
.wp-pagenavi{
	display: flex;
	justify-content: center;
}
.wp-pagenavi a,
.wp-pagenavi span{
	display: inline-block;
	color: #333;
	padding: 1.8rem 1.3rem 1.8rem 1.6rem;
	border: 1px solid #D1D1D1;
	border-right: none;
	font-size: .9em;
	line-height: 1;
	background: #f3f3f3;
}
.wp-pagenavi .nextpostslink{
	border-top-right-radius: 0.8rem;
	border-bottom-right-radius: 0.8rem;
	border-right: 1px solid #D1D1D1;
}
.wp-pagenavi .previouspostslink{
	border-top-left-radius: 0.8rem;
	border-bottom-left-radius: 0.8rem;
}
.wp-pagenavi span.current{
    color: #fff;
	background: #1e8c63;
	border: 1px solid #1e8c63;
}
@media (hover: hover) {
	.wp-pagenavi a:hover{
		background: #fff;
	}
}

/*====================================
	contents
====================================*/
.contents{
	padding-top: 60px;
	padding-bottom: 100px;
}
.post-type-page{
	max-width: 1000px;
	margin: auto;
}

.contents .btn{
	padding: .8em 3em .8em 2.5em;
}
.post-theme h2{
	font-size: 1.7em;
	font-weight: 700;
	border-left: 5px solid #1e8c63;
	padding: .3em 0 .3em .8em;
	margin-bottom: .8em;
}
.post-theme *+h2{
	margin-top: 3em;
}
.post-theme h3{
	font-size: 1.25em;
	font-weight: 700;
	margin: 2em 0 .7em;
	padding-bottom: .7em;
	border-bottom: 1px solid #aaa;
}
.post-theme p{
	margin-bottom: 1em;
}

strong{
	font-weight: 700;
}
.post-theme a:not(.btn),
.detail__body a:not(.btn){
	color: #1A1896;
	text-decoration: underline;
}
/* table
-----------------------*/
.post-theme table, .detail__body table{
   width: 100%;
   margin: 1.5em 0;
}
.post-theme table th, .detail__body table th,
.post-theme table td, .detail__body table td{
   vertical-align: middle;
   padding: .8em 1em;
   border: 1px solid #ccc;
   background: #fff;
}
.post-theme table th, .detail__body table th{
   background: #eee;
}
/* hr
-----------------------*/
.post-theme hr, .detail__body hr{
	border: none;
	border-bottom: 1px solid #ccc;
	margin: 2em 0;
}
/* li
-----------------------*/
.post-theme ul, .detail__body ul,
.post-theme ol, .detail__body ol{
	margin: 1em 1em 1em 1.2em;
}
.post-theme ul, .detail__body ul{
	list-style-type: disc;
	margin-left: 1.4em;
}
.post-theme ol, .detail__body ol{
	list-style-type: decimal;
}
.post-theme li, .detail__body li{
  margin: .5em 0;
}
.post-theme li::marker,
.detail__body li::marker{
  color: #1e8c63;
}

/* 画像
-----------------------*/
.alignleft, .alignright{
	display: block;
    margin: 1em auto;
}

@media only screen and (min-width: 768px){
  .alignnone{
    margin: 1em auto;
  }
  .aligncenter{
    display: block;
    margin: 1em auto;
  }
  .alignleft{
    float: left;
    margin: 0 1.5em 1em 0;
  }
  .alignright {
    float: right;
    margin: 0 0 1em 1.5em;
  }
}

/* blockquote
-----------------------*/
.contents blockquote {
    position: relative;
    padding: 1.5em 4em 0.5em 4em;
    box-sizing: border-box;
    background: #efefef;
    margin: 2em 0;
}
.contents blockquote:before {
    display: inline-block;
    position: absolute;
    top: 1.2em;
    left: 1.2em;
    content: "";
    width: 28px;
    height: 28px;
    background: url(../img/icon_blockquote.png);
    background-size: cover;
}
/* gallery
-----------------------*/
.contents .gallery{
	display: flex;
	flex-wrap: wrap;
}
.contents .gallery img{
	border: none!important;
}
.contents .gallery .gallery-item{
	margin: 0!important;
	padding: .3em;
}
.contents .gallery .gallery-caption{
	font-size: .85em;
}

.wp-embedded-content{
   width: 100%;
}



/*====================================
	ブログ
====================================*/
/* メインカラム
----------------------*/
.main {
    display: flex;
    justify-content: space-between;
}
.post-wrap {
    width: 67%;
	min-width: 550px;
}
.post-list {
    display: block;
    flex-wrap: wrap;
    justify-content: space-between;
}
.post-item {
    width: 100%;
    margin-bottom: 20px;
    overflow: hidden;
    border-bottom: 1px solid #ccc;
}
.post-item__thumbnail {
    position: relative;
}
.post-item__thumbnail::before {
    content: "";
    display: block;
    padding-top: 64%;
}
.post-item__thumbnail img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: auto;
}
@media (hover: hover) {
   .post-item__thumbnail a img{
      transition: .2s;
   }
	.post-item__thumbnail a:hover img{
		opacity: .8;
	}
}
.post-item__conts {
    font-size: .9em;
    padding: 10px 0 20px 0;
}
.post-item__conts .post-title {
    color: #000;
    font-weight: 700;
    margin: 5px 0 12px;
}
.post-item__conts .post-title a{
       color: #333;
   }
@media (hover: hover) {
   .post-item__conts .post-title a{
      transition: .2s;
       color: #333;
   }
	.post-item__conts .post-title a:hover{
		color: #1e8c63;
		text-decoration: underline;
	}
}
.post-item__conts .cate {
    color: #fff;
    line-height: 1;
    font-size: .85em;
    padding: 5px 10px 6px;
	margin-right: .2em;
    border-radius: 20px;
    display: inline-block;
    background: #ababab;
}

/* サイドバー
----------------------*/
.nav-wrap {
    width: 28%;
}
.widget {
    margin-bottom: 40px;
}
.widget__title {
    font-size: 1.1em;
    font-weight: 700;
	margin: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #000;
}
.widget label.screen-reader-text,
.widget label.screen-reader-text{
	display: none;
}
/* category
----------------------*/
.category_list li {
   position: relative;
    display: block;
    border-bottom: 1px solid #eeeeee;
}
.category_list li a {
    display: block;
    padding: 15px 15px 15px 5px;
    color: #333;
}
@media (hover: hover) {
   .category_list li a{
      transition: .2s;
   }
	.category_list li a:hover{
		color: #1e8c63;
		text-decoration: underline;
	}
}

.category_list .child{
	margin-bottom: .5em;
	margin-top: -.5em;
}
.category_list .child li{
	border-bottom: none;
}
.category_list .child li a{
	padding: 7px 10px 7px 3.2em;
	font-size: .85em;
	border-bottom: none;
}
.category_list .child li::before{
   color: #aaa;
   font-size: .8em;
   margin-right: 0.3em;
   left: 2.2em;
    top: 0.6em;
}
/* newpost
----------------------*/
.newpost_item{
	display: flex;
	justify-content: space-between;
	padding: 15px;
	border: 1px solid #eeeeee;
	border-top: 0;
}
.newpost_item__thumbnail{
	width: 38%;
}
.newpost_item__thumbnail img{
	width: 100%;
	height: 100%;
   max-height: 85px;
	object-fit: cover;
}
@media (hover: hover) {
   .newpost_item__thumbnail a img{
      transition: .2s;
   }
	.newpost_item__thumbnail a:hover img{
		opacity: .8;
	}
}
.newpost_item__conts{
	width: 58%;
}
.newpost_item__conts .post-date{
	font-size: .8em;
	margin-bottom: 1px;
}
.newpost_item__conts .post-title{
	font-size: .85em;
	font-weight: 500;
	line-height: 1.4;
}
@media (hover: hover) {
   .newpost_item__conts .post-title a{
      transition: .2s;
       color: #333;
   }
	.newpost_item__conts .post-title a:hover{
		color: #1e8c63;
		text-decoration: underline;
	}
}
/* ウィジェット
----------------------*/
#archives-dropdown-2 {
    width: 100%;
    margin: 15px 0 0;
}
#searchform {
    margin: 15px 0 0;
}
#searchform div {
    display: flex;
    justify-content: space-between;
}
#searchform div #s {
    width: 78%;
}
#searchform div #searchsubmit {
    width: 18%;
    text-align: center;
    background: #ddd;
}

.widget select,
.widget input{
	outline: none;
	vertical-align: middle;
	padding: 10px;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: .9em;
	border-radius: 4px;
	cursor: pointer;
	border: 1px solid #bbb;
    background-color: #fff;
}
.widget select{
	background: url(../img/icon_arrow.gif) no-repeat 95% center;
	background-size: 14px;
}

/*===============================
	記事詳細
===============================*/
.detail{
	padding: 40px;
	box-shadow: 0px 5px 17px 3px rgba(100, 100, 100, 0.1);
}

/* サムネイル
=============================*/
.detail__thumbnail{
	position: relative;
	margin-bottom: 20px;
}
.detail__thumbnail:before {
	display: block;
	padding-top: 55%;
	content: "";
	background: #efefef;
}
.detail__thumbnail img {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	margin: auto;
	object-fit: cover;
}
/* 記事上部
=============================*/
.detail__head .post-title{
	color: #000;
	text-align: left;
	font-weight: 600;
	font-size: 1.6em;
	line-height: 1.4;
	margin: 0;
	padding: 0;
	white-space: inherit!important;
}
.detail__head .post-date{
	font-size: .9em;
	margin: 10px 0 18px;
}
.detail__head .post-category{
	display: flex;
	flex-wrap: wrap;
}
.detail__head .post-category li{
	margin: 0 4px 4px 0;
}
.detail__head .post-category a{
	position: relative;
	display: block;
	color: #fff;
	font-size: .85em;
	line-height: 1;
	padding: 6px 10px 7px 14px;
	border-radius: 20px;
	background: #ababab;
}

.detail__body {
    margin: 20px 0;
}
.detail__body p {
    line-height: 1.8;
    margin: 0 0 1em;
}
.detail__body em{
	font-style: italic;
}
.detail__body del{
	text-decoration-line: line-through;
}
.detail__body h2 {
    font-size: 1.5em;
	font-weight: 700;
    padding: 0 0 0.8em;
    margin: 0 0 1.2em;
    border-bottom: 1px solid #000;
}
.detail__body *+h2 {
    margin-top: 3em;
}
.detail__body h3 {
   font-size: 1.3em;
   font-weight: 700;
   padding: 0.5em 0 0.5em 0.8em;
   margin: 1.7em 0 0.8em;
   border-left: 2px solid #000;
}
.detail__body h4 {
   font-size: 1.1em;
   font-weight: 700;
   margin: 1.7em 0 0.8em;
}
.embed-responsive {
   position: relative;
   display: block;
   width: 100%;
   padding: 0;
   overflow: hidden;
   padding-top: 56%;
}
.embed-responsive iframe {
   position: absolute;
   top: 0;
   bottom: 0;
   left: 0;
   width: 100%;
   height: 100%;
   border: 0;
   z-index: 0;
}

/*===============================
	医療行為
===============================*/
.page-medical-practice table{
   border-top: 1px solid #ddd;
   border-left: 1px solid #ddd;
   
}
.page-medical-practice table tr{
   display: flex;
   height: auto!important;
}
.page-medical-practice table td{
   font-size: .95em;
   display: flex;
   align-items: center;
   height: auto!important;
   border: none;
   border-bottom: 1px solid #ddd;
   border-right: 1px solid #ddd;
}
.page-medical-practice table td img{
   width: 24px!important;
   margin: 0 .4em 0 0!important;
   vertical-align: middle;
}
.page-medical-practice table td{
   padding: .8em .6em!important;
}

/*====================================
	採用情報
====================================*/
.page-recruit .recruit-tit{
   font-size: 2.8rem;
   font-weight: 600;
   text-align: center;
   margin-bottom: 1em;
}
.page-recruit .message_wrap{
   padding-bottom: 80px;
   display: flex;
   justify-content: space-between;
}
.page-recruit .message__text{
   width: 48%;
}
.page-recruit .message__text .tit{
   font-size: 3rem;
   line-height: 1.4;
   font-weight: 600;
   margin-bottom: .5em;
}
.page-recruit .message__img{
   width: 49%;
}
.page-recruit .message__img img{
   object-fit: cover;
   width: 100%;
   height: 100%;
}
/* voice
=============================*/
.page-recruit .voice{
   padding: 60px 0;
   background: #f2f2f2;
}
.page-recruit .voice-box{
   max-width: 880px;
   margin: auto auto 1.5em;
   display: flex;
   justify-content: space-between;
   padding: 40px;
   border-radius: 6px;
   background: #fff;
   box-shadow: 0px 14px 20px rgb( 0 0 0 / 10% );
}
.page-recruit .voice-box__img{
   width: 180px;
   height: 160px;
}
.page-recruit .voice-box__img img{
   object-fit: cover;
   width: 100%;
   height: 100%;
}
.page-recruit .voice-box__text{
   font-size: .9em;
   flex: 1;
   padding-left: 30px;
}
.page-recruit .voice-box__text .name{
   font-size: 1.4em;
   margin: .2em 0 .5em;
}
.page-recruit .voice-box__text .text{
   line-height: 1.8;
   margin: 0;
}
/* welfare
=============================*/
.page-recruit .welfare{
   padding: 60px 0;
}
.page-recruit .welfare-list{
   display: flex;
   flex-wrap: wrap;
}
.page-recruit .welfare-item{
   text-align: center;
   width: 23.5%;
   margin-right: 2%;
   margin-bottom: 2%;
   padding: 2rem 2rem 3rem;
   border: 1px solid #1e8c63;
   display: flex;
   flex-direction: column;
   align-items: center;
}
.page-recruit .welfare-item:nth-child(4n){
   margin-right: 0;
}
.page-recruit .welfare-item .title{
   font-weight: 600;
   font-size: 1.1em;
}
.page-recruit .welfare-item .text{
   flex-grow: 1;
   display: flex;
   align-items: center;
   font-size: .9em;
   margin-top: .2rem;
}
/* guideline
=============================*/
.page-recruit .tab-area {
   position: relative;
   display: flex;
   list-style: none;
   max-width: 800px;
   margin: auto auto 1em;
   box-shadow: 0px 0px 20px rgb( 0 0 0 / 10% );
}
.page-recruit .tab {
   text-align: center;
   font-weight: 500;
   padding: 1.5em;
   width: 100%;
   font-size: 1.2em;
   cursor: pointer;
}
.page-recruit .tab.active {
   color: #fff;
   background: #1e8c63;
}
.page-recruit .panel {
   max-width: 880px;
   margin: auto;
   display: none;
   text-align: center;
   padding: 2em 0 0;
}
.page-recruit .panel.active {
   display: block;
}
.page-recruit .job__item {
   text-align: left;
   border-radius: 10px;
   overflow: hidden;
   border: 1px solid #ccc;
   margin-bottom: 1em;
}
.page-recruit .job__item-tit {
   position: relative;
   padding: 1.5em 3em 1.5em 1.5em;
   cursor: pointer;
   font-weight: 500;
   font-size: 1.1em;
}
.page-recruit .job__item-tit.open{
   color: #1e8c63;
   font-weight: 700;
}
.page-recruit .job__item-tit::after {
   position: absolute;
   right: 1em;
   top: 50%;
   font-family: "Font Awesome 5 Free";
   font-weight: 900;
   font-size: 1.2em;
   content: "\f107";
   transform: translateY(-50%);
   transition: 0.2s;
}
.page-recruit .job__item-tit.open::after{
   transform: translateY(-50%) rotate(180deg);
	transition: 0.2s;
}
.page-recruit .job__item-text {
   display: none;
   background: #f8f8f8;
   padding: 0;
   margin: 0;
}
.page-recruit .job__item-inner{
   font-size: .9em;
   padding: 0.5em 2.5em;
   margin: 0;
}
.page-recruit .job__item-inner th{
   width: 24%;
   background: #fef1e6;
}

/*======================================================
	スマホ画面  767px以下
======================================================*/
@media only screen and (max-width: 767px){
	/*====================================
		page-name
	====================================*/
	.page-name{
		padding: 100px 20px 80px;
	}
	.page-name__en{
		font-size: 1.1em;
		margin-bottom: .2em;
	}
	.page-name__jp{
		font-size: 1.6em;
	}
	/*====================================
		breadcrumbs
	====================================*/
	.breadcrumbs{
		font-size: 1.2rem;
		padding-bottom: 15px;
		border-bottom: 3px solid #e7e7e7;
	}
	/*====================================
		contents
	====================================*/
	.contents {
		padding-top: 40px;
		padding-bottom: 100px;
	}
	.post-theme h2{
		font-size: 1.6em;
		border-left: 7px solid #1e8c63;
	}
	.post-theme h3{
		font-size: 1.3em;
	}
	/*====================================
		ブログ
	====================================*/
	/* メインカラム
	----------------------*/
	.main {
		display: block;
	}
	.post-wrap {
		width: 100%;
		min-width: 100%;
	}
   .post-list{
      display: block;
   }
   .post-item{
      width: 100%;
      margin-bottom: 20px;
      overflow: hidden;
   }
   .post-item__conts{
      padding: 10px 0 10px 0;
   }
   .post-item__conts .post-date{
      margin-bottom: .4em;
   }
   .post-item__conts .post-title{
      font-size: 1.2em;
      margin: 10px 0 12px;
   }
	.nav-wrap {
		width: 100%;
        margin-top: 80px;
	}
	/*===============================
		記事詳細
	===============================*/
	.detail {
    	padding: 0;
    	box-shadow: none;
	}
   /*===============================
	  医療行為
   ===============================*/
   .page-medical-practice table tr{
      flex-wrap: wrap;
   }
   .page-medical-practice table td {
      width: 50%!important;
   }
   /*====================================
	  採用情報
   ====================================*/
   .page-recruit .recruit-tit{
      font-size: 2.2rem;
   }
   .page-recruit .message_wrap{
      flex-wrap: wrap;
   }
   .page-recruit .message__img,
   .page-recruit .message__text{
      width: 100%;
   }
   .page-recruit .message__text{
      order: 1;
      padding-top: 1.5em;
   }
   .page-recruit .message__text .tit{
      font-size: 2rem;
   }
   .page-recruit .voice-box{
      flex-wrap: wrap;
      padding: 30px;
   }
   .page-recruit .voice-box__img{
      width: 100%;
      margin-bottom: 1em;
   }
   .page-recruit .voice-box__text{
      padding: 0;
   }
   .page-recruit .welfare-list{
      justify-content: space-between;
   }
   .page-recruit .welfare-item{
      width: 46%;
      border-radius: 4px;
      padding: 1.5rem 1rem 2rem;
      margin: 0 2% 4%!important;
   }
   .page-recruit .welfare-item img{
      width: 12vw;
   }
   .page-recruit .panel {
      padding: 1em 0 0;
   }
   .page-recruit .tab{
      padding: 1.2em;
      font-size: 1.1em;
   }
   .page-recruit .job__item-tit{
      padding: 1.2em 3em 1.2em 1.2em;
   }
   .page-recruit .job__item-inner{
      padding: 0.5em 1.5em;
   }
   .page-recruit .job__item-inner table{
      border-top: 1px solid #ccc;
   }
   .page-recruit .job__item-inner th,
   .page-recruit .job__item-inner td{
      width: 100%;
      display: block;
      border-top: 0;
   }
   .page-recruit .job__item-inner th{
      padding: 0.6em 1em;
   }
}