@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@100;300;400;500;700;800;900&display=swap');

/* mod_body
-----------------------------------------*/
/* ルートのフォントサイズを10pxに設定 */
html {
font-size: 62.5%;
}
/* bodyのフォントサイズを1.6em（16px）に設定 */
body {
font-size: 1.6em;
}
h1{
font-size: 5rem; /* 50px */
}
p{
font-size: 1.5rem; /* 15px */
}

/*BODY ---------------------------------------------------------*/
body {
    min-height: 100vh;
    scroll-behavior: smooth;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.5;
	text-rendering: optimizeSpeed;
	background: linear-gradient(rgba(255,255,255,0),rgba(144,238,144,0.4), rgba(255,255,255,0), rgba(255,255,255,0));
}

/*  基本CSS  */
ul, div, img {
	margin: 0px;
	padding: 0px;
	list-style: none;
	font-weight: normal;
}
min-height: 100vh;
scroll-behavior: smooth;
text-rendering: optimizeSpeed;
line-height: 1.5;

*, *:before, *:after {
	box-sizing: border-box;
}
a{
	color:#005b36;
	text-decoration:none;
}
h5{
	font-size:2.5rem;
	border-top:#085 solid 2px;
	border-bottom:#999 solid 1px;
	width:100%;
	padding:15px;
	margin:40px 0;
	clear:both;
}

em{
	font-style:normal;
}
/*2021-02-17 小高追記 リンク文字見やすくするため*/
#box_l a{
	text-decoration:underline;
}

/*ここまで*/
/*  コンテンツ全体 ----------------------------------------------------------------------------*/
#main,
#contents,
.box960{
  display: flex;
  display: -webkit-box; /*Android4.3*/
  display: -moz-box;    /*Firefox21*/
  display: -ms-flexbox; /*IE10*/
  display: -webkit-flex; /*PC-Safari,iOS8.4*/
  flex-wrap: wrap;
justify-content: space-between;
margin-left: auto;
margin-right: auto;
max-width: 960px;
width: 100%;
flex-direction: row-reverse;
background:none;
}
#box_l  {
  width: 70%;
}

#box_r{
  width: 25%;
  margin-right:30px;
}

.flex2 {
  flex-flow: row-reverse;/*左右逆にする*/
}

  #box_l img,
  #box_r img{
	  max-width:100%;
	  height:auto;
  }
@media screen and (max-width: 750px) {
  #box_l,
  #box_r{
    width:100%;
	display:block;
	margin-left:10px;
	margin-right:10px;
  }
  #box_l img,
  #box_r img{
	  max-width:100%;
	  height:auto;
  }
}

/* 最上部 コロナ対策 */
#attention a{
	background:#369;
	padding:10px;
	margin-bottom:10px;
	color:#fff;
	display:block;
	text-align:center;
/*アニメーション*/
    animation-name: fadein;
    animation-duration: 2s;
	animation-name: fadein;
    /*animation-iteration-count: infinite; 無限ループ*/
    }
    @keyframes fadein {
    from {
        opacity: 0;
        transform: translateY(-20px);/*-20上から*/
    }
    to {
        opacity: 1;
        transform: translateY(0);/*0下へ*/
    }
    }

/*ヘッダー -----------------------------------------------------------------------------------*/
header{
	/*position: fixed;             ヘッダーの固定 */
    /*top: 0px;                    位置(上0px) */
    /*left: 0px;                  /* 位置(右0px) */
    width: 100%;                /* 横幅100%　*/
	background:rgba(255,0,0,0.8)
	z-index:1000;
}


.header-top{
    display:flex;
	justify-content: space-between;
margin-left: auto;
margin-right: auto;
max-width: 1080px;
width: 100%;
}
 
.header-top div{
    display:flex;

}
 
.header-top div:first-child{
    margin-right:auto;
    margin-left: 10px;
}

.header-logo{
	margin:15px;
}

.header-logo a img {
    height: 72px;
    max-width: none;
	width:auto;
}

.header-tel {
    color: #cc4165;
display: block;
font-family: "Roboto",sans-serif;
font-size: 3.4rem;
letter-spacing: -0.;
margin:35px auto 25px auto;
padding-right:20px;
}

header a.acc-button,
.topage a,
.midashi{
    font-size: 1.6rem;
    padding: 1.2rem 1rem;
    vertical-align: middle;
    text-align: center;
    background-color: #085;
    border: solid 1px #fff;
    border-radius: 26px;
    color: #fff;
    display: inline-block;
    width: 225px;
	height:45px;
    font-family: 'icomoon';
	margin:38px auto;
}

p.topage{
	text-align:right;
	letter-spacing:0.08em;
}
/*2021-02-17 小高追記 リンク文字見やすくするため*/
.topage a,
.pdf a{
    text-decoration: none!important;
}


/*追記部分ここまで*/

span.topage a,
#topics_list .midashi{
	margin:10px;
}



@media screen and (max-width: 750px) {
header{
	max-height:350px;
	padding:0;
	margin:0;
}
.header-top{
	  display:block;
	  text-align:center;
  }
 .header-top div{
	 margin:0;
	 padding:0;
  }
.header-tel,
a.acc-button{
	  text-align:center;
	  margin:0 auto 3px auto;
	  padding:0;
  }
  a.acc-button{
	  margin-top:0!important;
	  margin-bottom:10px!important;
  }
 .header-logo a img{
	 height:75px;
	 max-width:none;
	 width:auto;
	 /*小高追記*/
	 max-width:100%;
	 width:100%;
	 height:auto;
	 /*追記終わり*/
	 margin:0 auto;
 }
 
}


/* Nav　メインメニュー -----------------------------------------*/
.Nav {
  margin-top: 0;
  border-top: solid 1px #F5F4F0;
  border-bottom: solid 1px #085;
}

.Nav ul li ul li a:hover{
	background:#085;
	color:#fff!important;
}

@media screen and (max-width: 1000px) {
  .Nav {
    position: relative;
  border-top:none;
  }
}
.Nav .navbtn {
  display: none;
}
@media screen and (max-width: 1000px) {
  .Nav .navbtn {
    display: block;
    position: absolute;
    top: -50px;
    right: 10px;
  }
}
@media screen and (max-width: 1000px) {
  .Nav .navbtn a,
  .Nav .navbtn a.close {
    display: block;
    position: relative;
    width: 40px;
    height: 40px;
    background-color: #085;
  }
  .Nav .navbtn a::before,
  .Nav .navbtn a.close::before {
    position: absolute;
    top:10px;
    left:10px;
    content:"";
    width: 20px;
    height: 3px;
    background-color: #fff;/*バーガー*/
   transition: .2s;
  }
  .Nav .navbtn a.open::before {
    top:19px;
    transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  }
  .Nav .navbtn a::after,
  .Nav .navbtn a.close::after {
    position: absolute;
    bottom:10px;
    left:10px;
    content:"";
    width: 20px;
    height: 3px;
    background-color: #FFF;
    transition: .2s;
  }
  .Nav .navbtn a.open::after {
    bottom:18px;
    transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  }
}
@media screen and (max-width: 1000px) {
  .Nav .navbtn a.open {
  }
}

@media screen and (max-width: 1000px) {
  .Nav .navbtn a span {
    display: block;
    overflow: hidden;
    width: 1px;
    height: 1px;
  }
  .Nav .navbtn a span::after,
  .Nav .navbtn a.close span::after {
    position: absolute;
    top:18px;
    left:10px;
    content:"";
    width: 20px;
    height: 3px;
    background-color: #FFF;
  }
  .Nav .navbtn a.open span::after {
    display: none;
  }
}
.Nav ul.close {
  display: none;
  border-top: solid 1px #F5F4F0;
}
.Nav > ul {
  margin: 0 auto;
  max-width: 1000px;
}
@media screen and (max-width: 1000px) {
  .Nav > ul {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9;
    background-color: #FFF;
  }
}
.Nav > ul > li {
  position: relative;
  font-size: 15px;
  display: inline-block;
}
@media screen and (max-width: 1000px) {
  .Nav > ul > li {
    display: block;
    border-bottom: solid 1px #dddddd;
  }
}
/*小高修正 letter-spacing0.03em→0.004em 2022/09/15*/
.Nav > ul > li a {
  display: block;
  position: relative;
  text-decoration: none;
  padding: 12px 20px;
  font-size: 18px;
  color: #333;
  letter-spacing:0.004em;
  /*background-color: #fff;*/
  z-index: 2;
}
/*小高変更 25px→16px 2022/09/15*/ 
.Nav > ul > li.parent > a {
  padding-right:16px;
}
.Nav > ul > li.parent > a::before {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    right: 8px;
    width: 6px;
    height: 6px;
    margin: -6px 0 0 0;
    border-top: solid 2px #085;
    border-right: solid 2px #085;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}
@media screen and (max-width: 1000px) {
.Nav > ul > li.parent.open > a::before {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
}
@media screen and (max-width: 1000px) {
  .Nav > ul > li.parent.open {
    border-bottom: none;
  }
}
  .Nav > ul > li.parent.open > a{
    color: #FFF;
  }
  .Nav > ul > li.parent.open > a::after {
  background: #333;
  -webkit-transform: scale(1);
  transform: scale(1);
}
@media screen and (max-width: 1000px) {
  .Nav > ul > li.parent.open > a {
    color: #FFF;
  }
}

.Nav > ul > li a:hover {
  color: #085;
}
.Nav > ul > li a::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}
.Nav > ul > li a,
.Nav > ul > li a::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.Nav > ul > li a::after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(.5);
  transform: scale(.5);
}
.Nav > ul > li a:hover::after {
  border-bottom: solid 3px #085;
  color: #005b36;
  -webkit-transform: scale(1);
  transform: scale(1);
}

/* 2階層プルダウンの場合 */
.Nav > ul > li > ul {
  display: none;
  position: absolute;
  top: 53px;
  left: 0;
  width: auto;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 9;
}

@media screen and (max-width: 1000px) {
  .Nav > ul > li > ul {
    background-color: #fbfbfb;
    position: static;
  }
}

.Nav > ul > li > ul li {
  white-space: nowrap;
}

.Nav > ul > li > ul li a {
  position: relative;
  padding: 12px 27px 12px 27px;
}
@media screen and (max-width: 1000px) {
  .Nav > ul > li > ul li a {
    border-bottom: solid 1px #dddddd;
    background-color: #EEE;
  }
}
.Nav > ul > li > ul li a::before {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 10px;
    width: 6px;
    height: 6px;
    margin: -6px 0 0 0;
    border-top: solid 2px #085;
    border-right: solid 2px #085;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.Nav > ul > li > ul li a:hover {
  text-decoration: underline;
  color:#FFF;
  text-decoration:none;
}

@media screen and (max-width: 1000px) {
  .Nav > ul > li > ul li a:hover {
    background-color: #005b36;
  }
}

.Nav > ul > li > ul li ul li a {
  padding-left: 42px;
}
.Nav > ul > li > ul li ul li a::before {
    left: 20px;
}


/* 現在地のメニューの背景色　※jsと連動（ヘッダーに記述） ----------*/


#sinmenu .actv li a:hover{
    color:#fff;
    background:#085;
}
 
#sinmenu .actv li a.active{
    color:#fff;
    background:#085;
}

#footer .actv li a{
	margin:2px;
	padding:2px;
}

#footer .actv li a:hover{
    color:#fff!important;
    background:#085;
}
 
#footer .actv li a.active{
	font-weight:bold!important;
	color:#005b36;
}

/*メインメニューの現在地　※jsは関係なし --------------------------*/
body.menu01bg li#navimenu01 a,
body.menu02bg li#navimenu02 a,
body.menu03bg li#navimenu03 a,
body.menu04bg li#navimenu04 a,
body.menu05bg li#navimenu05 a{
	border-bottom:2px solid #085;
	color:#005b36;
	font-weight:bold;
}

.Nav ul li ul li a{
	border-bottom:none!important;
	color:#333!important;
	font-weight:normal!important;
}




/*  パンくず ------------------------------------------------------------*/

#pan{
	text-align:left;
}
#pan li{
	display: inline-block;
}

/* パンくず矢印 */
#pan li{
 position:relative;
 padding-left:10px;
list-style:none;
}
#pan li:before{
 content:'';
 display:inline-block;
 position:absolute;
 left:0px;
 top:12px;
 width:5px;
 height:5px;
 border-bottom:1px solid #888;
 border-right:1px solid #888;
}
#pan li:before{
 content:'';
 display:inline-block;
 position:absolute;
 left:0px;
 top:12px;
 width:5px;
 height:5px;
 border-bottom:1px solid #888;
 border-right:1px solid #888;
 transform:rotateZ(-45deg);
}
/* パンくず矢印なし */
#pan li.top:before{
	border:none!important;
}




/*メインメニューごとの背景指定 --------------------------------------------*/
#pagetitle{
    width: 100%;
	height:135px;
	padding:25px 0 25px 200px;
	margin:0 auto 10px auto;
	background-position: center center;
    background-size: 100%;
    background-repeat: no-repeat;
	background-color:rgba(255,255,255,0.6);
	background-blend-mode:lighten;
}
#pagetitle h1{
	font-size: 3.8rem;
    font-weight: 500;
    text-shadow: 1px 1px 0 #fff;
}

@media (max-width:768px) {
	#pagetitle{
	background-position: top center;
	padding:25px;
	height:100px;
	}
	#pagetitle h1{
	font-size: 2.5rem;
    font-weight: 500;
    text-shadow: 1px 1px 0 #fff;
}
}

body.menu01bg #pagetitle{
	background-image: url(../images/bg_about-page.jpg);
}
body.menu02bg #pagetitle{
	background-image: url(../images/bg_rehabilitation-page.jpg);
}
body.menu03bg #pagetitle{
	background-image: url(../images/bg_fitness-page.jpg);
}
body.menu04bg #pagetitle{
	background-image: url(../images/bg_homecare-page.jpg);
}
body.menu05bg #pagetitle{
	background-image: url(../images/bg_contact-page.jpg);
}


/*サイドメニュー --------------------------------------------------*/

#smtitle,
.smtitle{
	font-weight:bold;
	margin-top:5px;
	padding:15px 0 10px 15px;
	font-size:2rem;
	color:#fff;
	background:#666;
	/*角丸*/
  border-top-left-radius: 10px; 
  border-top-right-radius: 10px;
  -webkit-border-top-left-radius: 10px;
  -webkit-border-top-right-radius: 10px;
  -moz-border-radius-topleft: 10px;
  -moz-border-radius-topright: 10px;
}

#sinmenu{
	margin:30px 0;
}
#sinmenu li{
	background:#f5f5f5;
	font-size:1.8rem;
	margin:2px 0;
}
#sinmenu li a{
	padding:15px 0 15px 15px;
	widows:100%;
	display:block;
	color:#333;
}


/*  カラム定義-----------------------------------------*/

/* 　2カラム　 */
*, *:before, *:after {
	box-sizing: border-box;
}
.col_2 {
	width: 100%;
	display: flex;
	display: -ms-flexbox; /* IE10 */
	flex-wrap: wrap;
	-ms-flex-wrap: wrap; /* IE10 */
	color: #; /* 文字の色 */
	/*text-align: center;  内容は中央配置 */
}
.col_2 > div {
	width: 50%;
	padding: 10px;
}
@media screen and (max-width: 640px) {
 .col_2 > div {
 width: 100%;
}
}

/* 　3カラム　 */
*, *:before, *:after {
	box-sizing: border-box;
}
.col_3 {
	width: 100%;
	display: flex;
	display: -ms-flexbox; /* IE10 */
	flex-wrap: wrap;
	-ms-flex-wrap: wrap; /* IE10 */
	color: #333; /* 文字の色 */
	text-align: center; /* 内容は中央配置 */
}
.col_3 > div {
	width: 33.33333%;
	padding: 10px;
}
@media screen and (max-width: 1090px) {
 .col_3 > div {
 width: 50%;
}
}
@media screen and (max-width: 640px) {
 .col_3 > div {
 width: 100%;
}
}

/* 　4カラム　 */
*, *:before, *:after {
	box-sizing: border-box;
}
.col_4 {
	width: 100%;
	display: flex;
	display: -ms-flexbox; /* IE10 */
	flex-wrap: wrap;
	-ms-flex-wrap: wrap; /* IE10 */
	color: #333; /* 文字の色 */
	text-align: center; /* 内容は中央配置 */
	font-size:1.3rem;
}
.col_4 > div {
	width: 25%;
	padding: 10px;
}
@media screen and (max-width: 1090px) {
 .col_4 > div {
 width: 50%;
}
}
@media screen and (max-width: 640px) {
 .col_4 > div {
 width: 100%;
}
}




/*  スライドショー -----------------------------------------*/
#slider{
	width:100%;
}
#slider p{
	height:3px;
}
.slider_inn {
	position: relative;
	overflow: hidden;
	height: 80vh;
	width:150vh;
	margin:0 auto 15px auto;
	border-radius: 0 0 20px 20px;
	border-right:1px solid #fff;
	border-bottom:1px solid #fff;
	border-left:1px solid #fff;
}
@media screen and (max-width: 640px) {
.slider_inn{
	width:100%;
	height: 40vh;
}
}

.slider_img {
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	width: 100%;
	height: 100%;
	background-color: #fff;
	box-shadow: 0 10px 25px 0 rgba(255, 255, 255, .5);
}
.slider_img .image {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	animation: anime 15s 0s infinite; /* ②で設定したanimation-delayをスライド数で割った時間をdelay(15s)に入れる */
	opacity: 0;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
/*
  ②画像の数ごとに animation-delay を設定します。
　下記では、5秒間隔で切り替わるように設定しています。
*/
.slider_img .image:nth-of-type(1) {
 background-image: url(../images/slide_top1.jpg);
}
.slider_img .image:nth-of-type(2) {
 animation-delay: 5s;
background-image: url(../images/slide_top2.jpg);
);
}
.slider_img .image:nth-of-type(3) {
 animation-delay: 10s;
 background-image: url(../images/slide_top3.jpg);
}
@keyframes anime {
 0% {
 opacity: 0;
}
 50% {
 opacity: 1;
}
 100% {
 opacity: 0;
 transform: scale(1.18);
}
}



/*トップのお知らせ　INFO -----------------------------------------*/

#topics_list{
	background:rgba(255,255,255,0.9);
	border-radius:10px;
	margin:0px auto 20px auto;
	
}

#topics_list .col_2{
	width:980px;
	margin:0 auto;
}

#topics_list .col_2 div.colm_01 {
	width: 70%;
	padding: 10px;
}
#topics_list .col_2 div.colm_02 {
	width: 30%;
	padding: 20px 0 0 0;
}

div.colm_02 ul li img{
	max-width:100%;
	margin:20px 0 5px 10px;
}

.info {
  -webkit-overflow-scrolling: touch;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  display: -webkit-box;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  max-width: 600px;
  height: 22em;
  margin: 20px auto;
  overflow-y: scroll;
  text-align:left;
  line-height:1.8;
}
.info dt em{
	display:block;
	font-style:normal;
	font-size: 1.3rem;
	color:#666;
}

.info a{
	font-weight:bold;
}

.info dd:nth-of-type(-n+3) {
  position: relative
}

@media screen and (max-width: 640px) {
#topics_list .col_2,
#topics_list .col_2 div.colm_01,
#topics_list .col_2 div.colm_02{
	width: 100%;
	display:block;
}
}

@media (min-width:768px) {
  .info {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    flex-wrap: wrap
  }

.info dd,
.info dt {
  box-sizing: border-box;
  width: 100%;
  padding-bottom: .5em;
  padding-left: .5em
}

.info dt {
  font-style: normal;
  font-weight: initial
}
  .info dt {
    width: 12.5em;
    margin-bottom: .5em;
    border-bottom: 1px dotted #343a40;
  }

.info dt:first-of-type {
  padding-top: .5em;
  border-top: 1px dotted #343a40
}

.info dt time {
  margin-right: .5em
}

.info dt span {
  box-sizing: border-box;
  display: inline-block;
  width: 7em;
  margin-right: .5em;
  padding: 0 .5em;
  background-color: #009688;
  color: #fff;
  font-size: .8em;
  line-height: 1.75;
  text-align: center
}

.info time {
  color: #adb5bd
}

.info dd {
  margin-left: 0;
  margin-bottom: .5em;
  border-bottom: 1px dotted #343a40
}
  .info dd {
    width: calc(100% - 12.5em)
  }
  .info dd:first-of-type {
    padding-top: .5em;
    border-top: 1px dotted #343a40
  }
}

.pickupbn{
	margin:0 0 15px 0;
	display:block;
	/*影*/
	-webkit-box-shadow: 0 0 8px rgba(0,0,0,.4);
	box-shadow: 0 0 8px rgba(0,0,0,.4);
	/*角丸*/
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
}

.pickupbn img{
	max-width:100%;
}

.pickupbn span{
	font-size:1.5rem;
}

#top_blog figcaption span{
	background: url(../images/icon_blog.png) no-repeat left 6px #085;
	padding-left:38px;
	padding-bottom:8px;
	padding-top:7px;
		font-family: 'icomoon';
	font-size:1.8rem;
	font-weight:500;
	}
	#top_rec figcaption span{
	background: url(../images/icon_recruit.png) no-repeat left 7px #085;
	padding-left:43px;
	padding-bottom:8px;
	padding-top:7px;
		font-family: 'icomoon';
	font-size:1.8rem;
	font-weight:500;
	}

figcaption{
	background:#085;
	color:#fff;
	text-align:center;
	padding:10px;
	display:block;
}

@media screen and (max-width: 640px) {
.pickupbn{
	margin-right:5px;
	margin-left:5px;
}
.pickupbn img{
	width:100%;
	height:auto;
}
}

/* 私たち ----------------------------------------------*/

#wecan_main img{
   width:auto;
    height:auto;
    max-width:100%;
    max-height:100%;
	margin:10px 0;
	/*border:1px solid #6CC; 
	border-radius:90px 3px;*/
}

/*  ピックアップ----------------------------------------*/
.col_4 > div.pickup {
	width: 25%;
	padding: 2px;
	margin:10px auto 30px auto;
}

.pickup {
text-align:left;
	display: flex;
	display: -ms-flexbox; /* IE10 */
	flex-wrap: wrap;
	-ms-flex-wrap: wrap; /* IE10 */
flex-wrap: nowrap;/*縦揃え*/
}
.pickup dl{
margin:2px;
border:2px solid #085;
border-radius:.5em;

}
.pickup dt{
    position: relative;
  transition:.3s;
  padding:10px;
 	background:#085;
}

.pickup dt a{
  text-decoration:none;
    font-weight:bold;
	font-size:1.5rem;
    color:#fff!important;
}
/*矢印*/
.pickup dt:after{
    content:"";
    position:absolute;
    top:0;
    bottom:.1em;
    right:5%;
    margin:auto;
    width: .3em;
    height: .3em;
    border-top: .05em solid #fff!important;
    border-right: .05em solid #fff!important;
    transform: rotate(45deg);
    transition:.3s;
}
.pickup dt:hover:after{
    right:3%;
}

.pickup img{
width:100%;
height:175:
}

.pickup dd ul li{
    position: relative;
  transition:.3s;
  padding:6px;
  color: #085;
}

.pickup dd ul li a{
  text-decoration:none;
    color:#333!important;
	font-size:14px;
}
.pickup dd ul li a:hover{
  text-decoration:none;
    color:#085!important;
}

.pickup dd ul li:after{
    content:"";
    position:absolute;
    top:0;
    bottom:.1em;
    right:5%;
    margin:auto;
    width: .3em;
    height: .3em;
    border-top: .05em solid #085;
    border-right: .05em solid #085;
    transform: rotate(45deg);
    transition:.3s;
}
.pickup dd ul li:hover:after{
    right:3%;
}
@media screen and (max-width: 640px) {
.col_4 > div.pickup {
    display: block;
	width:100%;
	background:#fff;
}
}







/* ボタン矢印 */
.btn{
    line-height: 1.25;
  text-decoration:none;
    font-weight:bold;
    background:#8dc21f;
    color:#fff !important;
    border-radius:.5em;
    padding:1em 4em;
    text-align: center;
    position: relative;
  transition:.3s;
}

.btn:after{
    content:"";
    position:absolute;
    top:0;
    bottom:.1em;
    right:5%;
    margin:auto;
    width: .3em;
    height: .3em;
    border-top: .05em solid #fff;
    border-right: .05em solid #fff;
    transform: rotate(45deg);
    transition:.3s;
}
a:hover{
    opacity:.75;
}
.btn:hover:after{
    right:3%;
}

/*アクセス部分 ---------------------------------------------------------*/
.access {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
	line-height:2.5em;
}
.access a{
	text-decoration:none;
}
.access-description {
    background-color: #085;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
	color: #fff;
}
.access-description-inner {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 460px;
    flex: 0 1 460px;
	margin:20px 0;
}
*, ::before, ::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.access-address p {
    font-size: 1.8rem;
}
.access-mean-list span {
    color: #fff;
    font-size: 1.6rem;
}
.access-address {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 40px;
}
.access-map {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
}

.access-title {
    font-size: 3.2rem;
    font-weight: normal;
    margin-bottom: 40px;
}
.access-mean-title {
    font-size: 2rem;
    font-weight: normal;
    border-bottom: 1px solid #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 6px;
}
.label {
    border: solid 1px #fff;
    display: inline-block;
    font-family: 'Noto Sans JP', sans-serif;
    padding: 0.2rem .6rem;
    font-size: 1.4rem;
    margin-left: 10px;
}
.button-tertiary-irregular a {
    background-color: transparent !important;
    border: 1px solid #fff !important;
    color: #fff !important;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.25);
}
.button-access a {
    display: block;
    font-size: 1.8rem;
    font-weight: 500;
    padding: 1.6rem 1rem;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    border-radius: 35px;
    text-align: center;
}
.button-primary-irregular a {
    background-color: #fff;
    border: 1px solid transparent;
    color: #085;
	font-size:20px;
}
a.access-button {
    font-size: 2.3rem;
    padding:1.8rem 1rem;
	margin:20px auto;
    vertical-align: middle;
    text-align: center;
    background-color: #085;
    border: solid 1px #fff;
    border-radius: 26px;
    color: #fff;
    display: inline-block;
    width: 180px;
    line-height: 1;
    font-family: 'icomoon';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transition: background-color 0.4s;
    transition: background-color 0.4s;
	text-decoration:none;
}

@media screen and (max-width: 640px) {
.access {
    display: block;
}
.access-map {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9のアスペクト比 */
    height: 0;
}

.access-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
}



.right{
	float:right;
	margin:0 0 25px 15px;
}
.titlesub {
	background:#085;
    margin: 30px 0 !important;
    padding: 15px 0 15px 10px;
	font-size:1.8rem;
    color: #fff;
    letter-spacing: 0.2em;
    clear: both;
		/*周り30px角丸*/
	border-radius: 10px; 
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
}
.titlesub a{
	color:#fff;
}
img.fleft {
    float: left;
    margin: 0 20px 20px 0;
}

#fitness2 .titlesub{
	padding-left:20px;
	font-weight:bold;
}



/* dl dt dd ----------------------------------------------------------------------*/
.maindl{
	margin:15px 0 30px 0;
}
.maindl dt{
	margin:25px 0 15px 0;
	padding:10px 0 10px 15px;
	font-size:2.4rem;
	font-weight:bold;
	border-left: solid 5px #085;
	letter-spacing:0.08em;
	color:#333;
	clear:both;
}
.maindl dd{
	margin:15px 0 35px 10px;
}
.left{
	text-align:left!important;
}

/* eventdl */
.eventdl figure img{
	max-width:100%;
	height:auto;
	margin-bottom:5px;
}
.eventdl figure figcaption{
	background:none;
	color:#333;
	text-align:left;
}
.eventdl dt{
	clear:both;
}

/*岡田追加*/
.eventdl figcaption ul{
margin-bottom:20px;
}
.eventdl figcaption li{
	float:left;
	text-align:center;
	width:30%;
	height:auto;
	margin:5px;
}
@media screen and (max-width: 640px) {
.eventdl figcaption li{
		width:45%;
		height:auto;
}
}

/*TABLE ------------------------------------------------------------------------------------*/
table{
	width:100%;
	margin:15px 0;
	border-top:1px solid #999;
	border-right:1px solid #999;
	background:rgba(255,255,255,0.7);
}
table th,
table td{
	padding:5px;
	border-bottom:1px solid #999;
	border-left:1px solid #999;
}

/*テーブル交互背景*/
.tline tr:nth-child(odd) td,
.tline tr:nth-child(odd) th{  
  background-color: #fff;  
}
.tline tr:nth-child(even) td,
.tline tr:nth-child(even) th{  
  background-color: #EFEFEF;  
} 

#fitness table.tline th{
	white-space:nowrap;
}

.gaiyo th{
text-align:justify;
letter-spacing:0.1em;
background:#f5f5f5;
font-weight:300;
white-space: nowrap;
}

.gaiyo th.date{
	text-align:right;
	border-left:none;
	padding-left:1em;
	white-space: nowrap;
}

.mojikan th{
	letter-spacing:0.5em;
	padding:0 0 0 1em!important;
}

.notop{
	border-top:none;
}
.nobott{
	border-bottom:none!important;
}

#fitness2 th{
	white-space:nowrap;
	letter-spacing:1em;
	background:#f5f5f5;
}

#lodg th{
	white-space:nowrap;
	letter-spacing:0.25em;
	background:#f5f5f5;
}

/* pdf --------------------------------------------------------------------------------*/

ul.pdf{
	margin:30px 0;
}
.pdf a{
	margin:5px 0 5px 10px;
	padding:15px 0 10px 35px;
	background:url(../images/pdf.gif) no-repeat left center;
}

/*マーカー ---------------------------------------------------------------------------*/
.marker_yellow_hoso {
    background: linear-gradient(transparent 60%, #ffff66 60%);
}

/*スタッフ -----------------------------------------------------------------------------*/
.enfitstaff dt,
.enfitstaff dd p{
	font-size:1.8rem;
	font-weight:bold;
	font-family: 'M PLUS Rounded 1c', sans-serif;
font-weight: 500;
}
.enfitstaff dd{
	text-align:right;
	font-size:1.3rem;
}
.enfitstaff dd img{
	margin:-10px 0 10px 10px;
	float:right;
	/*周り5px角丸*/
	border-radius: 5px; 
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
}
.enfitstaff dd span{
	display:block;
	font-size:1.5rem;
}


/*地域包括*/
.hokatu ul li {
  position: relative;
  list-style-type: none!important;/*ポチ消す*/
  padding: 0.5em 0.5em 0.5em 0.5em;
  margin-bottom: 5px;
  line-height: 1.5;
  background: #dbebf8;
  vertical-align: middle;
  color: #505050;
  border-radius: 15px 0px 0px 15px;/*左側の角丸く*/
  font-size:2.3rem;
  font-weight:500;
}

.hokatu ul li:before{ 
  display:inline-block; 
  vertical-align: middle;
  /*以下白丸つくる*/
  content:'';
  width:1em;
  height: 1em;
  background: #fff;
  border-radius: 50%;
  margin-right: 8px;
}

.hokatu ul li img{
	float:lest;
}

.clear{
	clear:both;	
}

/* フッター ------------------------------------------------------------------------------*/
footer{
	margin-top:40px;
	padding:20px 30px;
	background:#f5f5f5;
}

footer ul {
	text-align:left;
}
footer li.ftitle{
	font-weight:bold;
	border-bottom:1px solid #085;
	margin-bottom:10px;
}
footer ul li a{
	color:#333;
	padding:12px;
	margin:2px 0;
	margin:5px;
	font-size:15px;
	text-decoration:none;
}

footer p#copy,
footer p#copy a{
	margin:20px 0 0 0;
	padding:10px 0 0 0;
	text-align:center;
	padding:10px;
	color:#666;
	text-decoration:none;
}
#index footer{
	margin-top:0;
}

/*ブログ（wp分）その他はwpテーマ内のstyle.css -------------------------------------------------------------------*/
#relations,
#comment_box,
#entry_snsbox,
.menubtn,
#menu{
display:none;
}

#entry_body{
	/*width:100%;*/
	margin:20px;
}
#entry_body footer{
	background:none;
}

#page_pn{
	font-size:80%;
}

#entry_body ul {
	list-style:disc!important;
	margin: 25px;
}
@media screen and (max-width: 750px) {

#entry_body{
	/*width:100%;*/
	margin:20px;
}
#entry_body footer{
	background:none;
}

#page_pn{
	font-size:80%;
}
#entry_body ul {
	list-style:disc!important;
	margin: 25px;
}
}

body#wpblog #pagetitle{
	background-image: url(../images/bg_wpblog-page2.jpg);
}
#pagetitle h1 a{
    font-size: 3.8rem;
    font-weight: 500;
    text-shadow: 1px 1px 0 #fff;
	color:#333!important;
}

.entry_box .date-time a {
    color: #fff;
    background-color: #444;
    margin: 0 0.2em 0 0;
    padding: 3px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
	text-decoration:none!important;
}

.side_title span{
	font-size:80%;
}

#box_r h4{
	font-weight:bold;
	margin-top:5px;
	padding:15px 0 10px 15px;
	font-size:2rem;
	color:#fff;
	background:#666;
	/*角丸*/
  border-top-left-radius: 10px; 
  border-top-right-radius: 10px;
  -webkit-border-top-left-radius: 10px;
  -webkit-border-top-right-radius: 10px;
  -moz-border-radius-topleft: 10px;
  -moz-border-radius-topright: 10px;
}

.home_area{
	clear:both;
	border-bottom:1px solid #999;
	margin:10px 0;
	padding:10px;
}
.home_area .thumb_box{
	float:left;
	width:120px;
	height:auto;
	margin-right:10px;
}
/* ここが邪魔するhttps://www.wakoucai.or.jp/tawaraen/wp/wp-includes/css/dist/block-library/style.min.css?ver=5.1.8　強制*/
.wp-block-column:not(:first-child), .wp-block-column:nth-child(2n) {
    margin-left: 0px!important;
}

#box_l p {
 word-break: break-all;
}


/**/
#page_pn{
	text-align:left!important;
	padding-left:5em;
	text-indent:-3.7em;
}

/*INDEXのタブ*/
.tab_container {
  padding-bottom: 1em;
  background-color: #fff;
  border:1px solid #009959;
  margin: 10px 2px 0 2px;
}
.tab_item {
  width: calc(100%/3);    /*100%/4を100%/3に変更*/
  padding:15px 0;
  /*border-bottom: 3px solid #009959 ;*/
  border:#3cb371 ;
  border-radius:9999px;/*長円形*/
  background-color: #ececec;
  text-align: center;
  color: #009959 ;
  display: block;
  float: left;
  text-align: center;
  font-weight: bold;
  transition: all 0.2s ease;
}
.tab_item:hover {
  opacity: 0.6;
}
input[name="tab_item"] {
  display: none;
}
.tab_content {
  display: none;
  padding: 1em 1em 0;
  clear: both;
  overflow: hidden;
}
#tab1:checked ~ #tab1_content,
#tab2:checked ~ #tab2_content,
#tab3:checked ~ #tab3_content {  /*, #tab4:checked ~ #tab4_contentを削除*/
  display: block;
}
.tab_container input:checked + .tab_item {
  background-color: #009959 ;
  color: #fff;
  border-radius:9999px;/*長円形*/
}

/*NEW*/
.tab_container ul li span,
.meta_box em,/*WP*/
.home_area .entry_box em{/*WP*/
	background:#C30;
	color:#fff;
	font-size:60%;
	padding:2px 4px;
}

.tab_content{
	overflow-y: scroll;
	text-align:left;
	line-height:2em;
	/*height:365px;*/
}
.tab_content_description ul{
	margin-right:0.5em;
}
.tab_content_description ul li{
	padding-left:7em;
	text-indent:-6.3em;
}
/*.tab_content_description a{
	padding-left:0.5em;
}*/
.tab_content_description em{
	color:#666;
	font-size:90%;
}

@media screen and (max-width: 640px) {
.tab_content{
	height:250px;
}
}

/*wp記事部分*/
#wpblog #sinmenu ul li{
	font-size:90%;
	padding-right:5px;
}
#wpblog .mbox200 ul li span,
.cat-kiji em{
	color:#666;
	font-size:90%;
	margin-left:0.5em
}
