@charset "UTF-8";
/* ==========================================================================
COMMON
グリーン　#04B5BC
ピンク　#FF9999
薄グレー #e8e6e9
グレー #685e64

	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
========================================================================== */

/* Google Fonts + 日本語 早期アクセス */
.gf-roboto { font-family: 'Roboto', sans-serif; }
.wf-notosansjapanese { font-family: "Noto Sans Japanese"; }
@font-face {
 font-family: "Hannari";
	src: url(webfontkit/Hannari.eot); /* IE9 Compat Modes  format('eot')*/
	src: url(webfontkit/Hannari.eot?#iefix) format('embedded-opentype'),
      url(webfontkit/Hannari.woff) format('woff'),
						url(webfontkit/Hannari.otf) format('opentype');
 font-weight: normal;
 font-style: normal;
}
.jf-hannari {
	font-family: 'Hannari';
	font-weight: normal;
}


/*===============================================
 共通スタイル
===============================================*/
.bg_shadow {
	-webkit-box-shadow: 0 0px 5px rgba(50,40,40,.25);
	-moz-box-shadow: 0 0px 5px rgba(50,40,40,.25);
	-o-box-shadow: 0 0px 5px rgba(50,40,40,.25);
	box-shadow: 0 0px 5px rgba(50,40,40,.25);
	behavior:url(../js/PIE.htc);
}
.bg_shadow2 {
	box-shadow:0px 5px 0px 0px #773920,0px -5px 0px 0px #773920;
}
.corner_circle {
	border-radius: 6px;        /* CSS3草案 */  
  -webkit-border-radius: 6px;    /* Safari,Google Chrome用 */  
  -moz-border-radius: 6px;   /* Firefox用 */
	behavior:url(../js/PIE.htc);
}
.transition {
	-webkit-transition: 0.1s ease-in-out;　/* Safari,Google Chrome用 */
	   -moz-transition: 0.1s ease-in-out;　/* Firefox用 */ 
       -o-transition: 0.1s ease-in-out;  
          transition: 0.1s ease-in-out;
}
.txt_scale {
	transform: scale( 0.75 , 1 );
	letter-spacing: -0.1em;
}
.arrow a:after {
	display:block;
	content:"";
	position:absolute;
	border-top:2px solid #FFFFFF;
	border-right:2px solid #FFFFFF;
	width:6px;
	height:6px;
	top:50%;
	right:8px;
	margin-top:-4px;
	-webkit-transform: rotate(45deg);
  	      transform: rotate(45deg);
}
.arrow2 a:after {
	display:block;
	content:"";
	position:absolute;
	border-top: none;
	border-bottom:2px solid #FFFFFF;
	border-right:2px solid #FFFFFF;
	width:6px;
	height:6px;
	top:50%;
	right:16px;
	margin-top:-4px;
	-webkit-transform: rotate(45deg);
  	      transform: rotate(45deg);
}
.gradient {
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0.50, #f39000), color-stop(0.00, #f89900));
	background: -webkit-linear-gradient(top, #f89900 0%, #f39000 50%);
	background: -moz-linear-gradient(top, #f89900 0%, #f39000 50%);
	background: -o-linear-gradient(top, #f89900 0%, #f39000 50%);
	background: -ms-linear-gradient(top, #f89900 0%, #f39000 50%);
	background: linear-gradient(to bottom, #f89900 0%, #f39000 50%);
}
a img.transform01 {
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
a:hover img.transform01 {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

a img.transform02 {
	-webkit-transform: rotate(0) scale(1);
	transform: rotate(0) scale(1);
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
a:hover img.transform02 {
	-webkit-transform: rotate(-4deg) scale(1.2);
	transform: rotate(-4deg) scale(1.2);
}

/*===============================================
 レスポンシブ スマホサイズ 横幅 740px以下
===============================================*/
@media screen and (max-width: 740px) {

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
	
	text-rendering: optimizelegibility;
	
	-webkit-tap-highlight-color:rgba(0,0,0,0.2);
	-webkit-text-size-adjust: none;
	-webkit-font-smoothing: antialiased;
	
	-moz-tap-highlight-color:rgba(0,0,0,0.2); 
	-moz-text-size-adjust: none;
	-moz-font-smoothing: antialiased;
	
	-ms-tap-highlight-color:rgba(0,0,0,0.2); 
	-ms-text-size-adjust: none;
	-ms-font-smoothing: antialiased;
	
	font-family: "Noto Sans Japanese";
	
	-webkit-font-feature-settings: 'palt' 1; /*for Android 4.4*/
	font-feature-settings: 'palt' 1;
}
html {
	font-size: 62.5%;
}
body {
	font-size: 1.4rem;
	min-width: 320px;
	position:relative;
	font-weight: normal;
	color: #534741;
/*	padding-top: 80px;*/
	font-family: "Noto Sans Japanese";
}
h1, h2, h3, h4 {
	font-family: "Noto Sans Japanese";
	font-weight: 500;
	color: #685e64;
}
h1, h2, h3, h4, h5, p {
	display:block;
	margin:0;
}
p {
	line-height:1.8;
	font-family: "Noto Sans Japanese";
}
img {
	vertical-align:top;
}
ul, ol, dl {
	display:block;
	list-style-type:none;
	margin:0px;
	padding:0px;
}
em {
	font-style:normal;
}
a {
	-webkit-transition: 0.2s ease-in-out;
	   -moz-transition: 0.2s ease-in-out;  
      -o-transition: 0.2s ease-in-out;  
         transition: 0.2s ease-in-out;
	text-decoration:none;
	color: #534741;
}
a:hover {
	opacity:0.8;
}
.clearfix:after {
	content:"";
	display:block;
	clear:both;
	height:0px;
}

.cr,
#day #main #b figure {
	text-align: center;
}
.rt {
	text-align: right;
}
.red {
	color: #E00;
}
.day #main .box p em {
	color: #D26E78;
}

/* title
------------------------------------------------------------ */
.hdg,
#page #main .post h2,
#privacy #main .box dl dt {
	background: url(../img/common/icon_dwn.gif) no-repeat 10px center;
	font-size: 1.2rem;
	text-align: left;
	width: 100%;
	max-width: 690px;
	margin: 15px 0px;
	padding: 0px 0px 0px 30px;
	border-bottom: 2px solid #AAA496;
}
#page #main .box .h3_more {
	margin: 20px 20px -18px 0px;
}
.sub,
.facility #main dl dt,
#page #main #digest .radius h4,
.feat #main .sbox figure h4,
#group #main #a p strong,
#house #main #a h4 {
	font-size: 1.6rem;
	color: #D26E78;
	font-weight: bold;
	line-height: 180%;
	margin: 0px 15px;
	padding: 5px;
/*	border-bottom: 2px dotted #9B787D;*/
}
h5 {
	font-size: 1.6rem;
	color: #D26E78;
	font-weight: bold;
	line-height: 180%;
	margin: 0px 15px;
	padding: 5px;
/*	border-bottom: 2px dotted #9B787D;*/
}
#page #main .box h3.half {
	width: 100%;
}
.anchor {
	padding-top: 0px;
}

/* header
------------------------------------------------------------ */
header {
	box-sizing:border-box;
	top: 0px;
	left: 0px;
	z-index: 100;
	text-align: center;
	width: 100%;
	margin: 0px auto;
}
header .header {
	overflow: hidden;
	position: fixed;
	background: #FFFFFF;
	top: 0px;
	left: 0px;
	z-index: 152;
	width: 100%;
	height: 60px;
	margin: 0px auto;
	
	box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}
header .header a {
	overflow: hidden;
	width: 210px;
	height: 50px;
	padding: 0px 0px 0px 0px;
	margin: 5px 0px;
}
header .header a img {
	width: 210px;
	height: auto;
}
header h1 {
	display:block;
	margin: 0px 0px 0px 0px;
}
header p {
	display: none;
	visibility: hidden;
}
header .header ul.h_contact {
	display: none;
	visibility: hidden;
}


header nav#colorNav {
	background: #1ED1CC;
	width: 100%;
	height: 60px;
	clear: both;
	margin-top: 60px;
}
header nav#colorNav ul {
	list-style: none;
	position: relative;
	width: 100%;
	padding: 0px;
	margin: 0 auto;

	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
header nav#colorNav ul li.level01 {
	list-style: none;
	width: calc( 100% / 5 );
	margin: 0px;
	padding: 0px;
	height: 60px;
	align-items: center;
}
header nav#colorNav ul li.level01:nth-child(3) {
	width: calc( 100% / 5 + 6px );
}
header nav#colorNav ul li.level01:nth-child(5) {
	width: calc( 100% / 5 - 6px );
}


header nav#colorNav ul li.level01:nth-child(2) {
	width: calc( 100% / 6 + 4px );
}
header nav#colorNav ul li.level01:nth-child(3) {
	width: calc( 100% / 6 + 4px );
}
header nav#colorNav ul li.level01:nth-child(4) {
	width: calc( 100% / 6 * 2 );
}
header nav#colorNav ul li.level01:nth-child(5) {
	width: calc( 100% / 6 - 4px );
}
header nav#colorNav ul li.level01:nth-child(6) {
	width: calc( 100% / 6 - 4px );
}

header nav#colorNav ul li.level01:nth-child(2) {
	width: calc( 100% / 5 - 10px );
}
header nav#colorNav ul li.level01:nth-child(3) {
	width: calc( 100% / 5 - 5px );
}
header nav#colorNav ul li.level01:nth-child(4) {
	width: calc( 100% / 5 * 2 );
}
header nav#colorNav ul li.level01:nth-child(5) {
	width: calc( 100% / 5 + 15px );
}

header nav#colorNav ul li.level01 a {
	display: block;
	box-sizing: border-box;
	position: relative;
	font-size: 1.1rem;
	text-align: center;
	text-decoration: none;
	font-weight: normal;
	letter-spacing: -0.095em;
	color: #FFFFFF;
	width: calc( 100% - 0px );
	height: 100%;
	margin: 0px;
	padding: 10px 3px 0px 3px;
	line-height: 1.25em;

	       text-shadow:1px 1px 0px rgba(0,0,0,0.1);
	   -moz-box-shadow:1px 1px 0px rgba(0,0,0,0.1);　/* Firefox用 */
	-webkit-box-shadow:1px 1px 0px rgba(0,0,0,0.1);　/* Safari,Google Chrome用 */
	
	-webkit-transition: 0.2s ease-in-out;
	   -moz-transition: 0.2s ease-in-out;  
       -o-transition: 0.2s ease-in-out;  
          transition: 0.2s ease-in-out;
	
}
header nav#colorNav ul li.level01 a:hover {
	background: rgba(0,0,0,0.15);
	color:#FFFFFF;
}
header nav#colorNav ul li.level01:first-child,
header nav#colorNav ul li.level01:nth-child(6),
header nav#colorNav ul li.level01:nth-child(7) {
	display: none;
	visibility: hidden;
	width: 0px;
}
header nav#colorNav ul li.level01:first-child a {
	width:0px;
}

header nav#colorNav ul li.level01 a:before,
header nav#colorNav ul li.level01 a:after {
	width:0px;
}
header nav#colorNav ul li.level01:first-child a,
header nav#colorNav ul li.level01:nth-child(2) a,
header nav#colorNav ul li.level01:nth-child(3) a,
header nav#colorNav ul li.level01:nth-child(4) a,
header nav#colorNav ul li.level01:nth-child(5) a,
header nav#colorNav ul li.level01:nth-child(6) a {
}
header nav#colorNav ul li.level01:nth-child(6) a {
	padding: 22px 3px 0px 3px;
}

header nav#colorNav ul li.level01 .sub_navi {
	display: none;
	visibility: hidden;
}

/*!------------------------------------*\
    Drawer 3.2.2　Navi 
\*!------------------------------------*/
#drawer_head.drawer-navbar {
	z-index: 1002;
	top: 0;
	width: 100%;
}
#drawer_head.drawer-navbar .drawer-navbar-header {
	width: 100%;
	height: 100%;
}

#drawer_head {
}
#drawer_head li, #drawer_head li a {
	font-family: "Noto Sans Japanese"!important;
	font-family: 'Roboto', sans-serif!important;
	text-align: left;
}
#drawer_head div.drawer-container {}
#drawer_head nav.drawer-nav {
	position: fixed;
	z-index: 1001;
	top: 0;
	overflow: hidden;
	width: 23.25rem;
	height: 100%;
	background-color: #FFFFFF;
	padding: 0px 0px 0px 0px;
	margin-top: 0px;
}
#drawer_head ul.drawer-menu {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 80px 0px;
	list-style: none;
/*	border-top:1px solid rgba(0,0,0,0.25);*/
}
#drawer_head ul.drawer-menu li {
}
#drawer_head ul.drawer-menu li:last-child {
}
#drawer_head .drawer-brand {
	font-size: 2rem;
	line-height: 5rem;
	padding: 0px 0.75rem 0px 1.75rem;
	color: #FFFFFF;
	border-bottom: 1px solid rgba(0,0,0,0.10);
	font-weight: 100;
	text-align: center;
}
#drawer_head ul.drawer-menu li a {
	border-bottom: 1px solid rgba(0,0,0,0.10);
	color: #685e64;
}
#drawer_head li a.drawer-menu-item {
	display: block;
	position:relative;
	font-size: 1.4rem;
	line-height: 42px;
	padding: .75rem;
	padding: 0px 10px 0px 2.6rem;
	text-decoration: none;
	color: #685e64;
}

#drawer_head li:first-child a.drawer-menu-item {
	line-height: 42px;
}
.drawer-menu-item:hover {
  text-decoration: underline;
  color: #555;
  background-color: transparent;
}

#drawer_head a.drawer-menu-item {}

#drawer_head a.twolineNav {
}
#drawer_head li a.twolineNav span {
	display: block;
	line-height: 1em;
	padding-top: 1.4rem;
	font-size: 1.3rem;
}

#drawer_head li.drawer-dropdown {}
#drawer_head ul.drawer-dropdown-menu {}
#drawer_head li a.drawer-dropdown-menu-item {}

#drawer_head li a i {
	position:absolute;
	display:block;
	top: 7px;
	left: 2px;
	font-size:1.6rem;
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	vertical-align: middle;
}
#drawer_head li:first-child a i {
	position:absolute;
	display:block;
	top: 10px;
	left: 2px;
	font-size:1.6rem;
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	vertical-align: middle;
}

#drawer_head li a.drawer_arrow:after {
	display:block;
	position:absolute;
	content:'';
	
	top:50%;
	right: 18px;
	width: 6px;
	height: 6px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	
	margin:-4px 0px 0px -6px;
	border-top: 2px solid #685e64;
	border-right: 2px solid #685e64;
}

/*!------------------------------------*\
    Dropdown
\*!------------------------------------*/
#drawer_head .drawer-dropdown-menu {
  display: none;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: transparent!important;
}
#drawer_head .drawer-dropdown-menu > li {
  width: 100%;
  list-style: none;
}
#drawer_head .drawer-dropdown-menu-item {
	line-height: 4rem;
	display: block;
	position: relative;
	padding: 0;
	padding-right: .75rem;
	padding-left: 3rem;
	text-decoration: none;
	color: #FFF;
	font-size: 1.2rem;
	background: #e8e6e9;
}
#drawer_head .drawer-dropdown-menu-item:hover {
  text-decoration: none;
  color: none;
  background-color: rgba(104,94,100,0.50);
}
#drawer_head .drawer-dropdown-menu-item:after {
	display:block;
	content: "";
	position:absolute;
	top:50%;
	left: 20px;
	width: 5px!important;
	height: 5px!important;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	margin:-4px 0px 0px -6px;
	border-top: 1px solid #685e64;
	border-right: 1px solid #685e64;
}
/*! open */
#drawer_head .drawer-dropdown.open > .drawer-dropdown-menu {
	display: block;
}

/*! drawer-caret */
#drawer_head .drawer-dropdown .drawer-caret {
	display:inline-block;
	position:absolute;
	-webkit-transition: opacity .2s ease, -webkit-transform .2s ease;
	transition: opacity .2s ease, -webkit-transform .2s ease;
	transition: transform .2s ease, opacity .2s ease;
	transition: transform .2s ease, opacity .2s ease, -webkit-transform .2s ease;
	vertical-align: middle;
	top:50%;
	right: 18px;
/*
	width: 8px!important;
	height: 8px!important;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
	border-top: 2px solid #FFFFFF;
	border-right: 2px solid #FFFFFF;
	border-left: none!important;
	border-bottom: none!important;
*/
	width: 0;
	height: 0;
	margin-left: 4px;
	-webkit-transform: rotate(0deg);
									transform: rotate(0deg);
	vertical-align: middle;
	border-top: 4px solid;
	border-right: 4px solid transparent;
	border-left: 4px solid transparent;

	margin:-4px 0px 0px -6px;
}

/*! open */
#drawer_head .drawer-dropdown.open .drawer-caret {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}



/*! overlay */
.drawer-overlay {
  position: fixed;
  z-index: 200 !important;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .2);
}
.drawer-open .drawer-overlay {
  display: block;
}

/*!------------------------------------*\
    Hamburger
\*!------------------------------------*/
#drawer_head div.drawer-navbar-header {}

#drawer_head .drawer-hamburger {
	position: fixed;
	z-index: 204;
	top: 0px;
	display: block;
	box-sizing: content-box;
	width: 2.2rem;
	height: 1.6rem;
	padding: 0;
	padding-top: 1.6rem;
	padding-right: 1.7rem;
	padding-bottom: 2.6rem;
	padding-left: 1.7rem;
	-webkit-transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
	transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
	-webkit-transform: translate3d(0, 0, 0);
									transform: translate3d(0, 0, 0);
	border: 0;
	outline: 0;
	background-color: rgba(0,0,0,0.0);
/* background-color: transparent;*/
/*	background-color: #e8e6e9;*/
}
.drawer--right.drawer-open .drawer-hamburger {
	background-color: transparent!important;
}

#drawer_head .drawer-hamburger:hover {
	cursor: pointer;
/* background-color: transparent;*/
}

#drawer_head .drawer-hamburger-icon {
	position: relative;
	display: block;
	margin-top: 0px !important;

	font-family: "Noto Sans Japanese";
	font-weight: 500;
	color: #685e64;
	font-size: 0.6rem;
	letter-spacing: -0.15em;
	text-align: center;
	line-height: 3.6rem;
}

.drawer-hamburger-icon,
.drawer-hamburger-icon:before,
.drawer-hamburger-icon:after {
  width: 100%;
  height: 3px;
  -webkit-transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
  transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
  background-color: #685e64;
}

.drawer-hamburger-icon:before,
.drawer-hamburger-icon:after {
  position: absolute;
  top: -6px;
  left: 0;
  content: ' ';
}

.drawer-hamburger-icon:after {
  top: 6px;
}

.drawer-open .drawer-hamburger-icon {
	background-color: transparent;
	color: #FFFFFF!important;
}

.drawer-open .drawer-hamburger-icon:before,
.drawer-open .drawer-hamburger-icon:after {
  top: 0;
		background-color: #FFFFFF!important;
}

.drawer-open .drawer-hamburger-icon:before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.drawer-open .drawer-hamburger-icon:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

#drawer_head .drawer-hamburger:after {
	display: block;
	position: absolute;
	content: "";

	height: 12px;
	width: 3rem;
	left: 50%;
	bottom: 15px;
	margin-left: -1.5rem;
}
#drawer_head .sr-only {}



/* article
------------------------------------------------------------ */
article {
	width: 100%;
	margin: 0px auto 30px;
	overflow: hidden;
}
#home article {
	margin: 0px auto 70px;
}
#page article#akane,
#page article#emata,
#page article#blog {
	width: 100%;
	margin: 0px auto 70px;
	overflow: hidden;
}



/* main
------------------------------------------------------------ */
#main {
	text-align: left;
	width: 100%;
	margin: 0px 0px 0px 0px;
}
#home #main {
	width: 700px;
	margin: 0px 0px 0px 5px;
}
#page #main .box,
#page #main .post {
	width: 100%;
	margin-bottom: 30px;
	clear: both;
	overflow: hidden;
}
#page #main .box h2 {
	font-size: 1.8rem;
	line-height: 2.4rem;
	text-indent: 0px;
	height: auto;
	margin-bottom: 15px;
	padding: .8rem 10px .8rem 20px;
	border-bottom: 2px solid #FFAAAA;
	background: linear-gradient(to bottom, rgba(255,239,235,1) 0%, rgba(255,233,228,1) 50%, rgba(255,227,221,1) 51%, rgba(255,219,212,1) 100%);
}
#page #main .box h3,
#page #main .post h2 {
	box-sizing: border-box;
	font-size: 1.6rem;
	margin: 0px 0px;
	padding: 0px 0px 5px 0px;
}
#page #main .box h3.sub {
	font-size: 1.6rem;
	width: calc( 100% - 20px );
	margin: 0px auto 10px;
	padding: 5px 10px 10px 10px;
	line-height: 1.75em;
	border-bottom: 2px dotted #9B787D;
}
#page #main .box h3.hdg {
	background: url(../img/common/icon_dwn.gif) no-repeat 10px 7px;
	margin: 20px 0px 10px 0px;
	padding: 0px 10px 5px 30px;
	line-height: 1.5em;
}
#page #main .box h4.anchor {
	display: block;
	background: url(../img/common/icon_dwn.gif) no-repeat 10px 7px;
}

#page #main .box .size144 {
	max-width: 144px;
}
#page #main .box .size200 {
	max-width: 200px;
}
#page #main .box .size240 {
	max-width: 240px;
}
#page #main .box .size300 {
	max-width: 300px;
}
#page #main .box .sdw {
	margin: 10px auto 20px;
	padding: 0px;
}
#page #main .box .sdw img {
	width: 100%;
	height: auto;
}

.frame,
#page #main #digest img,
.day #main .row3 figure img,
.feat #main .sbox ul li img,
.feat #main .one div img,
.feat #main .sbox figure img {
	border: 1px solid #CAC5BC;
}
#page #main .box p,
#page #main .post p {
	font-size: 1.4rem;
	line-height: 1.8em;
	padding: 0px 20px;
	margin: 0px auto 10px;
}
#page #main .box table {
	width: 100%;
	margin: 30px auto 0px;
}

#page #main #digest {
	width: 100%;
	margin: 0px auto 0px;
	overflow: hidden;
}
#page #main #digest h3.hdg {
	margin: 0px;
	padding: 0px;
}
#page #main #digest .radius {
	display:block;
	background-color: #FAFAFA;
	margin: 0px;

	border-radius: 4px;
	-webkit-border-radius: 4px;
	behavior: url(http://rakusei-kai.or.jp/wp-content/themes/rakuseikai/js/PIE.htc);
}
#page #main #digest .radius h4 {
	display:block;
	margin: 10px 5px 0px;
	padding: 5px 5px 5px 5px;
	clear: both;
}
#page #main #digest .radius p {
	display:block;
	line-height: 160%;
	padding: 10px 15px;
}
#page #main #digest .sbox210 {
	overflow:hidden;
	width: calc( 100% - 10px );
	max-width: 640px;
	margin: 5px;
}
#page #main #digest .sbox210 div {
	margin: 10px auto;
}
#page #main #digest .sbox425 {
	overflow:hidden;
	width: calc( 100% - 10px );
	max-width: 640px;
	margin: 5px;
}
#page #main #digest .sbox425 div {
	margin: 10px 9px;
}
#page #main #digest li {
	display:block;
	width: 100%;
	max-width:195px;
	margin: 0px 0px 0px 0px;
	overflow:hidden;
}
#page #main #digest .sbox640 {
	overflow:hidden;
	width: calc( 100% - 10px );
	max-width: 640px;
	margin: 5px;
}
#page #main #digest .sbox640 p {
	width: 100%;
}
#page #main #digest h4 {
	display:block;
	font-size: 16px;
	color: #D26E78;
	font-weight: bold;
	line-height:30px;
	margin: 0px 10px 0px 10px;
	padding: 5px;
	border-bottom: 2px dotted #9B787D;
}
#page #main #digest h5 {
	display:block;
	font-size:16px;
	line-height:20px;
	margin: 10px 10px 0px 7px;
	padding: 0px 10px 0px;
}
#page #main #digest p {
	display:block;
	clear:both;
	width: 100%;
	max-width: 600px;
	padding: 10px auto 10px;
	line-height:1.2em;
}

#page #main #digest h3 {
	clear: both;
} 
#page #main #digest figcaption {
	text-align: center;
	padding: 5px;
	display: block;
}
#page #main #digest .row3 figure {
	width: 100%;
	max-width: 192px;
}
#page #main #digest .row4 figure {
	width: 100%;
	max-width: 150px;
}

#page #main .box .gmap {
	text-align: center;
	width: calc( 100% - 10px );
	height: 364px;
	margin: 30px auto;
	border: 5px solid #F2F2F2;
}
#page #main .box .gmap iframe {
	border: 2px solid #FFF;
	width: calc( 100% );
}
#page #main .post .date {
	text-align: right;
	width: 100%;
	margin: 0px auto;
	padding: 10px;
	border-top: 1px dotted #C8BEBE;
	clear: both;
}

#page #main .contact {
	width: 100%;
	height: 140px;
	margin: 0px auto 70px;
	clear: both;
}
#page #main .box .contact {
	margin: 0px auto;
}
#page #main .box ul.bn {
	padding: 0px !important;
}
#page #main .box ul.bn li {
	margin: 10px;
}
#page #main .contact .more {
	margin: 3px 3px 0px 0px;
	clear: both;
}
#page #main .contact h3 {
	font-size: 16px;
	color: #FFF;
	line-height: 34px;
	text-indent: 15px;
	margin-bottom: 14px;
}
#page #main .contact .tel {
	margin: 0px 20px 0px 130px;
	float: left;
	display: inline;
}
#page #main .contact p {
	line-height: 24px;
	padding: 25px 20px 20px;
	clear: both;
}
#page #main .box .contact p {
	padding: 20px;
}

#page #main .green {
	background: url(../img/common/cnt_green.gif) no-repeat;
}
#page #main .pink {
	background: url(../img/common/cnt_pink.gif) no-repeat;
}
#page #main .darkgreen {
	background: url(../img/common/cnt_darkgreen.gif) no-repeat;
}

/* new bottom contact */
#page #main .contact {
	width: 100%;
	height: auto;
	margin: 0px auto 40px;
	clear: both;
}
#page #main .box .contact {
	margin: 0px auto;
}
#page #main .contact .btn_more {
	margin: 1px 6px 0px 0px;
	float:right;
	display:inline;
	clear: both;
}
#page #main .contact .btn_more a:hover img {
	filter: alpha(opacity=100); -moz-opacity:1; opacity:1;
	-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
	zoom: 1;
}
#page #main .contact h3.cnt_title {
	display: block;
	text-align: center;
	font-size: 1.5rem;
	color: #FFF;
	line-height: 36px;
	height: 36px;
	text-indent: 0px;
	margin: 0px 0px 10px 0px;
	padding: 5px 0px;
	background: #b4d219;
}
#page #main .contact .cnt_tel {
	display: block;
	text-align: center;
	margin: 0px auto 10px;
}
#page #main .green_top {
}
#page #main .pink_top {
	background: url(../img/common/cnt_pink.png) no-repeat;
}
#page #main .darkgreen_top {
	background: url(../img/common/cnt_darkgreen.png) no-repeat;
}
#page #main .box .contact .go {
	text-align: center;
	margin: 0px auto 10px;
}
#page #main .box .contact p.bottom {
	display: block;
	text-align: center;
	font-size: 1.1rem;
	line-height: 24px;
	padding: 0px 5px 0;
	height: 24px;
	background: #e6e6e6;
}
/* new bottom contact end */

/* 1603 bottom contact */
#page #main .contact {
}
#page #main .cnt_akane-ds {
}
#page #main .contact h3.cnt_title {
	display: block;
	text-align: center;
	font-size: 1.5rem;
	color: #FFF;
	margin: 0px 0px 10px 0px;
	padding: 6px 10px;
	line-height: 24px;
	height: auto;
	font-weight:bold;
}
#page #main .cnt_akane-ds h3.cnt_title {
	background:#EA8F9F;
}
#page #main .cnt_emata-ds h3.cnt_title {
	background:#13B5BB;
}

#page #main .cnt_akane-ds dl.cnt_set,
#page #main .cnt_emata-ds dl.cnt_set {
	display: block;
	padding: 5px 0px;
	margin: 0px auto 10px;
	width: 100%;
	max-width: 360px;
}
#page #main .cnt_akane-ds dl.cnt_set dt,
#page #main .cnt_emata-ds dl.cnt_set dt {
	display: block;
	float: left;
	position: relative;
	background: #FF9999;
	font-size: 1.2rem;
	font-weight: bold;
	text-indent: 0px;
	text-align: center;
	line-height: 24px;
	width: 7em;
	height: 24px;
	margin: 6px 0px 0px 0px;
	color: #FFFFFF;
}
#page #main .cnt_akane-ds dl.cnt_set dt:before,
#page #main .cnt_emata-ds dl.cnt_set dt:before {
	display:block;
	position:absolute;
	content:'';
	width:0px;
	height:0px;
	top:0px;
	right:-12px;
	
	border-top: 12px solid transparent;
	border-right: 6px solid transparent;
	border-bottom: 12px solid transparent;
	border-left: 6px solid #FF9999;
}
#page #main .cnt_akane-ds dl.cnt_set dd,
#page #main .cnt_emata-ds dl.cnt_set dd {
	display:block;
	line-height: 1;
	padding: 0px;
}
#page #main .cnt_akane-ds dl.cnt_set dd.number,
#page #main .cnt_emata-ds dl.cnt_set dd.number {
	position: relative;
	float:left;
	font-size: 3rem;
	font-weight: bold;
	margin: 0px 0px 20px 20px;
	padding: 0px;
}
#page #main .cnt_akane-ds dl.cnt_set dd.number:before,
#page #main .cnt_emata-ds dl.cnt_set dd.number:before {
	display:block;
	float:left;
	content:'';
	width:20px;
	height:20px;
	background:url(../img/common/f_telmark.png) no-repeat center top;
	background-size:100%;
	margin: 10px 5px 0px 0px;
}
#page #main .cnt_akane-ds dl.cnt_set dd.number span,
#page #main .cnt_emata-ds dl.cnt_set dd.number span {
	display:block;
	position:absolute;
	font-size:11px;
	font-weight:normal;
	bottom:-12px;
	right:-6px;
}
#page #main .cnt_akane-ds dl.cnt_set dd.b_btn,
#page #main .cnt_emata-ds dl.cnt_set dd.b_btn  {
	clear: both;
	width: calc( 100% - 40px );
	max-width: 240px;
	margin: 0px auto 0px;
}
#page #main .cnt_akane-ds dl.cnt_set dd.b_btn a,
#page #main .cnt_emata-ds dl.cnt_set dd.b_btn a {
	display:block;
	width: calc( 100%);
	height: 40px;
	line-height: 40px;
	text-align: center;
	text-decoration: none;
	font-size: 1.4rem;
	font-weight: bold;
	padding: 0px 20px;
	color: #FFFFFF;
	background: #1ED1CC;
}
#page #main .cnt_akane-ds dl.cnt_set dd.b_btn a:hover,
#page #main .cnt_emata-ds dl.cnt_set dd.b_btn a:hover {
	opacity:0.75;
	background:#62BDC8;
}


#page #main .box ul.cork {
	background: url(../img/common/cork_bg.jpg) repeat;
	width: 640px;
	margin: 0px auto;
	padding: 20px 0px 0px;
	overflow: hidden;
}
#page #main .box ul.cork li {
	padding: 0px 0px 15px 15px;
}

#page #main #digest_box {
	width: 650px;
	margin-left: 10px;
	display: -webkit-box;
	display: -moz-box;
	display: -o-box;
	display: box;
}
#page #main #digest_box .radius {
	background-color: #FAFAFA;
	margin: 10px -5px 0px 10px;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	behavior: url(http://rakusei-kai.or.jp/wp-content/themes/rakuseikai/js/PIE.htc);
}
#page #main #digest_box .radius h4 {
	margin: 10px 7px 0px;
	padding: 0px 10px 5px;
	clear: both;
}
#page #main #digest_box .radius h4 {
	font-size: 16px;
	color: #D26E78;
	font-weight: bold;
	line-height: 180%;
	margin: 0px 9px;
	padding: 5px;
	border-bottom: 2px dotted #9B787D;
}
#page #main #digest_box img {
	border: 1px solid #CAC5BC;
}
#page #dementia-feat #main #digest_box .radius div {
	margin: 10px 9px;
}
#page #main #digest_box .radius {
	float: left;
	display: inline;
}
#page #main #digest_box .radius p {
	line-height: 160%;
	padding: 10px 15px;
	float: left;
}

/* blog Ｑ＆Ａ
------------------------------------------------------------ */
#page #main .post h2 a  {
	text-decoration:none;
	color: #534741;
}
#page #main .post .question {
	display:block;
	width: calc( 100% - 20px );
	padding: 6px 10px 6px 40px;
	margin: 30px auto 0px;
	background: url(../img/common/icon_q.png) no-repeat 6px 4px;
	background-size: 28px 28px;
	border: #FFE5E5 solid 3px;
	font-size: 1.4rem;
	line-height: 21px;
	border-radius: 10px;
}

#page #main .post .answer {
	display:block;
	width: calc( 100% - 20px );
	padding: 6px 10px 6px 40px;
	margin: 10px auto 30px;
	background:url(../img/common/icon_a.png) no-repeat 6px 4px;
	background-size: 28px 28px;
	border:#FFE5E5 solid 3px;
	font-size: 1.4rem;
	line-height: 21px;
	border-radius: 10px;
	clear:both;
}
#page #main .post .cate_title {
	display: block;
	width: 100%;
	margin: 0 auto 0px;
}
#page #main .post .cate_title .cate_par {
	display: block;
	text-align: right;
	background: #04B5BC;
	font-size: 1rem;
	line-height: 20px;
	color: #FFF;
	padding: 0px 20px;
	width: 100%!important;
}
/* 認知症コラム
------------------------------------------------------------ */
div.column_listbox{
	margin: 10px 20px 0px 20px;
	padding: 0px;
	border:#CCC 1px solid;
	max-height:360px;
	overflow: auto;
}
dl.d_column {
	margin: 0px 0px 10px 0px;
}
dl.d_column dt {
	display: block;
	margin: 0px 0px 0px 0px;
	padding: 0px 5px;
	font-size: 1rem;
	line-height: 18px;
	background: #f2f2f2;
}
dl.d_column dd {
	display:block;
	border-bottom:#CCC 1px dotted;
}
dl.d_column dd a {
	display:block;
	padding: 3px 10px 8px 10px;
	margin: 0px;
	font-size: 1.4rem;
	line-height: 24px;
}

/* ブログリスト
------------------------------------------------------------ */
#page article#blog {
}
#blog {
}
#blog #mainWrap {
}
#blog #mainWrap a {
	text-decoration:none;
	font-weight:bold;
}

/* ブログカテゴリーリスト(17.02)
------------------------------------------------------------ */
#blog #mainWrap #category_list {
	background: #F8F6F3;
	padding: 20px 0px 10px;
}
#blog #mainWrap #category_list h2 {
	display: block;
	text-align: left;
	width: calc( 100% - 20px );
	margin: 0px auto 0px;
	line-height: 48px;
	font-weight: bold;
	font-size: 1.4rem;
}
#blog #mainWrap #category_list h2 span {
	display: block;
	float: right;
	padding: 6px 0px;
	margin: 0px 0px 10px 0px;
}
#blog #mainWrap #category_list h2 span a {
	display: block;
	box-sizing: border-box;
	text-align: center;
	font-size: 1.0rem;
	text-indent: 0;
	line-height:32px;
	height:32px;
	color:#FFFFFF;
	padding: 0px 5px;
	background:#EA8F9F;
	border-radius: 16px;
	
	-webkit-transition: 0.1s ease-in-out;　/* Safari,Google Chrome用 */
	   -moz-transition: 0.1s ease-in-out;　/* Firefox用 */ 
       -o-transition: 0.1s ease-in-out;  
          transition: 0.1s ease-in-out;
}
#blog #mainWrap #category_list h2 span a:hover {
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-o-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}
#blog #mainWrap #category_list dl {
	clear: both;
	box-sizing:border-box;
	width: 100%;
	margin: 0px auto 0px;
	padding: 0px 0px 0px 0px;
	overflow: hidden;
	background: #DADADA;
	
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
#blog #mainWrap #category_list dl dt {
	display: inline-block;
	width: 100%;
	margin: 0px 0px 0px 0px;
}
#blog #mainWrap #category_list dl dd {
	display: block;
	width: calc( 100% / 2 );
	margin: 0px;
}

#category_list dl dt.akane,
#category_list dl dt.emata {
}
#category_list dl dd.akaneday-blog {
}
#category_list dl dd.ninchiday-blog {
}
#category_list dl dd.agh-blog {
}
#category_list dl dd.caremane-blog {
}

#category_list dl dd.emataday-blog,
#category_list dl dd.minamigh-blog {
	width: calc( 100% )!important;
}

#blog #mainWrap #category_list dl dt a {
	display:block;
	position: relative;
	box-sizing:border-box;
	text-align:center;
	font-size: 1.4rem;
	line-height: 40px;
	height: 40px;
	color: #413232;
	padding: 0px 0px;
	margin: 0px auto 0px;
}

#blog #mainWrap #category_list dl dd a {
	display:block;
	box-sizing:border-box;
	text-align:center;
	font-size: 1.3rem;
	line-height:60px;
	height:60px;
	color:#FFFFFF;
	padding:0px 0px;
	
	-webkit-transition: 0.1s ease-in-out;　/* Safari,Google Chrome用 */
	   -moz-transition: 0.1s ease-in-out;　/* Firefox用 */ 
       -o-transition: 0.1s ease-in-out;  
          transition: 0.1s ease-in-out;
}
#blog #mainWrap #category_list dl dd a:hover {
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-o-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}

#category_list dl dt.akane a {
	background:rgba(255,255,255,0.5);
}
#category_list dl dt.emata a {
	background:rgba(255,255,255,0.5);
}
#category_list dl dd.akaneday-blog a {
	background:#EA8F9F;
}
#category_list dl dd.ninchiday-blog a {
	background:#8CC63F;
}
#category_list dl dd.agh-blog a {
	background:#FBB03B;
}
#category_list dl dd.caremane-blog a {
	background:#78AADC;
}
#category_list dl dd.emataday-blog a {
	background:#62BDC8;
}
#category_list dl dd.minamigh-blog a {
	background:#FFC800;
}

/* ブログリスト(16.04)
------------------------------------------------------------ */
#blog #mainWrap #blogList {
	background:#F8F6F3;
	padding: 0px 0px 10px;
}
#blog #blogList a {
	text-decoration:none;
	color: #413232;
}
#blogList #list_set {
	width: 100%;
	margin: 0px auto 0px;
	padding: 10px 0px 0px;
	overflow: hidden;
	
	display: flex;
	flex-wrap: wrap;
}
#blogList #list_set .akane,
#blogList #list_set .emata {
}
#blogList #list_set .blog_box {
	box-sizing: border-box;
	position:relative;
	overflow: hidden;
	width: calc( 100% / 2 );
	margin: 0px 0px 1px;
	background:#FFFFFF;
	outline:3px solid rgba(0,0,0,0.0);
	outline-offset: -3px;
}
#blogList #list_set .blog_box:hover {
	outline:3px solid rgba(0,0,0,0.25);
	outline-offset: -3px;
}
#blog #blogList #list_set .shadow {
	box-shadow: none!important;
}

#blogList #list_set .akane:hover {
	outline:3px solid #EA8F9F;
	outline-offset: -3px;
}
#blogList #list_set .emata:hover {
	outline:3px solid #62BDC8;
	outline-offset: -3px;
}
#blogList #list_set .minami:hover {
	outline:3px solid #FFC800;
	outline-offset: -3px;
}

#blogList #list_set .blog_box .post_box {
	text-align:left;
}
#blogList #list_set .blog_box .post_box:nth-child(odd) {
	margin: 0px 1px 1px 0px;
}
#blogList #list_set .blog_box .post_box h3 {
	position:relative;
	display:block;
}
#blogList #list_set .akane .post_box h3 {
	border-top:20px solid #EA8F9F;
}
#blogList #list_set .emata .post_box h3 {
	border-top:20px solid #62BDC8;
}
#blogList #list_set .minami .post_box h3 {
	border-top:20px solid #FFC800;
}
#blogList #list_set .blog_box .post_box h3 a {
	display:block;
	line-height: 1.4;
	font-size: 1.4rem;
	font-weight:bold;
	padding: 10px;
}
#blogList #list_set .blog_box .post_box .date {
	text-align: left;
	padding: 3px 10px 0px;
	color: #413232;
	font-size: 1.2rem;
}
#blogList #list_set .blog_box .post_box p {
	font-size: 1.2rem;
	padding: 5px 10px 10px 10px;
	color: #545050;
}
#blogList #list_set .blog_box .pho {
	width:300px;
	height:120px;
	overflow:hidden;
}

#blogList .akane h3:before,
#blogList .emata h3:before,
#blogList .minami h3:before {
	display:block;
	position:absolute;
	text-align:center;
	top: -20px;
	left: 0px;
	font-size: 1rem;
	height: 20px;
	line-height: 20px;
	color:#FFFFFF;
	padding: 0px 0px 0px 10px;
	font-weight: bold;
}
#blogList .akane h3:before {
	content:"あかねヶ丘ケアセンター";
}
#blogList .emata h3:before {
	content:"リハビリテーションセンター「らくせい」";
}
#blogList .minami h3:before {
	content:"らくせいグループホーム南館";
}

#blogList .blog_box .akaneday-blog h3:after,
#blogList .blog_box .ninchiday-blog h3:after,
#blogList .blog_box .agh-blog h3:after,
#blogList .blog_box .caremane-blog h3:after,
#blogList .blog_box .emataday-blog h3:after,
#blogList .blog_box .minamigh-blog h3:after {
	display:block;
	box-sizing: border-box;
	text-align: right;
	font-size: 1rem;
	line-height: 18px;
	height: 18px;
	color:#FFFFFF;
	padding: 0px 10px;
	width: 100%;
}
#blogList .blog_box .akaneday-blog h3:after {
	content:"デイサービス";
	background:#EA8F9F;
}
#blogList .blog_box .ninchiday-blog h3:after {
	content:"認知症対応型デイサービス";
	background:#8CC63F;
}
#blogList .blog_box .agh-blog h3:after {
	content:"グループホーム";
	background:#FBB03B;
}
#blogList .blog_box .caremane-blog h3:after {
	content:"居宅介護支援事業所";
	background:#78AADC;
}
#blogList .blog_box .emataday-blog h3:after {
	content:"デイケア";
	background:#62BDC8;
}
#blogList .blog_box .minamigh-blog h3:after {
	content:"らくせいグループホーム南館";
	background:#FFC800;
}


#blogList #list_set .blog_box .cat {
	position:absolute;
	bottom:0px;
	right:0px;
	width:290px;
	line-height:20px;
	padding:0px 10px 0px 0px;
	font-size:10px;
	color:#FFFFFF;
	text-align:right;
}
#blogList #list_set .akane .cat {
	background: #EA8F9F;
}
#blogList #list_set .emata .cat {
	background: #62BDC8;
}
#blogList #list_set .blog_box .cat a {
	color:#FFFFFF !important;
}

#blog #navigation {
	width: 100%;
	max-width: 360px;
	margin:20px auto 10px;
}

#blog #navigation .wp-pagenavi {
	padding: 0px 5px 0px 10px !important;
	display:block !important;
	clear:both !important;
}
#blog #navigation .wp-pagenavi a,
#blog #navigation .wp-pagenavi span {
	display: inline-block;
	margin-bottom: 5px;
}
#blog #navigation .wp-pagenavi a {
		color:#707070 !important;
		background:#FFFFFF !important;
		border-radius: 0px !important;
		border: solid 1px #DCDCDC !important;
		padding: 5px 8px 5px 8px !important;
		margin-right: 1px !important;
		text-decoration:none !important;
		font-size: 1.2rem !important;
}
#blog #navigation .wp-pagenavi span.pages {
		color: #707070 !important;
		background: none !important;
		border-radius: 0px !important;
		border: none!important;
		padding: 5px 6px 5px 0px !important;
		margin-right: 0px !important;
		text-decoration: none !important;
		font-size: 1.2rem !important;
}
#blog #navigation .wp-pagenavi span.extend {
		color:#707070 !important;
		background:none !important;
		border-radius: 0px !important;
		border: none !important;
		padding: 5px 2px 5px 2px !important;
		margin-right: 1px !important;
		text-decoration:none !important;
		font-size: 1rem !important;
}
#blog #navigation .wp-pagenavi a:hover {
		border-color:#202020 !important;
		background:#525252 !important;
		color:#fff !important;
}
 #blog #navigation .wp-pagenavi span.current{
		padding: 5px 8px 5px 8px !important;
		border: solid 1px #DCDCDC !important;
		border-color:#3390CA !important;
		border-radius: 0px !important;	
		color:#fff !important;
		margin-right: 1px !important;
		border-color:#202020 !important;
		background:#525252 !important;
}


/* #contact */
#blog #mainWrap #contact {
	padding: 45px 0px 0px;
	text-align:center;
}
#blog #mainWrap #contact #cntUnit {
	display:block;
	overflow:hidden;
	text-align:left;
	width: 100%;
	margin:0px auto;
	padding:0px;
}
#blog #mainWrap #contact #cntUnit ul.f_contact li.btn a {
	display:block;
	text-align:center;
	color:#FFFFFF;
	line-height:60px;
	background:#62BDC8;
	
	-webkit-transition: 0.1s ease-in-out;
	   -moz-transition: 0.1s ease-in-out;  
       -o-transition: 0.1s ease-in-out;  
          transition: 0.1s ease-in-out;
}
#blog #mainWrap #contact #cntUnit ul.f_contact li.btn a:hover {
	background:#EA8F9F;
}




/* ブログ(16.04)
------------------------------------------------------------ */
#page #main .post {
	display:block;
	box-sizing: border-box;
	padding: 0px 0px;
	width: 100%;
	margin-bottom: 20px;
	clear: both;
	overflow: hidden;
}
#page #main .post h2 {
	display:block;
	position: relative;
	background: none;
	font-size: 1.6rem;
	width: calc( 100% - 0px );
	margin: 0px 0px 20px 0px;
	padding: 10px 5px 10px 34px;
	line-height: 1.4em;
	word-wrap: break-word;
}
#page #main .post h2:before {
	display: block;
	content: "";
	position: absolute;
	top: 13px;
	left: 7px;
	width: 18px;
	height: 18px;
	background: #ff9999;
	border-radius: 3px;
}
#page #main .post h2:after {
	display: block;
	content: "";
	position: absolute;
	top: 20px;
	left: 12px;
	width: 0px;
	height: 0px;
	border: 4px solid transparent;
	border-top: 5px solid #FFFFFF;
}

#page #main .post p {
	display:block;
	width: calc( 100% );
	padding: 0px 10px;
	margin: 0px 0px 1em 0px;
	font-size: 1.4rem;
}
#page #main .post p span {
	line-height:1.5em;
}
#page #main .post img {
	display:block;
	outline:1px solid #D0D0D0;
	margin-top:0px;
	margin-bottom:20px;
}
#page #main .post .date {
	text-align: left;
	clear: both;
	width: 100%;
	margin: 20px auto 0px;
	padding: 10px 10px 10px 25px;
	text-indent: -0.5em;
	border-top: 1px dotted #C8BEBE;
	border-bottom: 1px dotted #C8BEBE;
	clear: both;
	font-size: 1.2rem;
}

#page #main .post img.aligncenter,
#page #main .post img.alignleft,
#page #main .post img.alignright {
}
#page #main .post a.more-link {
	display: block;
	text-align: center;
	background: #f2f2f2;
	width: calc( 100% - 0px )!important;
	padding: 3px 5px;
	border: 1px solid #D0D0D0;
	border-radius: 5px;
}

#page #main .post h3, 
#page #main .post p, 
#page #main .post ul, 
#page #main .post ol, 
#page #main .post dl {
	display:block;
	width: calc( 100% - 20px );
	padding: 0px 10px;
	margin: 0px auto 0.5em;
	line-height: 1.6em;
}
#page #main .post li,
#page #main .post dt,
#page #main .post dd {
	line-height: 1.6em;
}

/* side
------------------------------------------------------------ */
#side {
	width: 100%;
	margin: 0px 0px 0px 0px;
}
#home #side {
	margin: 0px 0px 0px 0px;
}
#side ul.smenu {
	text-align: left;
	margin: 0px;
}
#side ul.smenu h3 {
	background: #21c8c0;
	border-bottom: 2px solid #ffa7a7;
	font-size: 1.4rem;
	color: #FFF;
	line-height: 40px;
	text-align: center;
}
#side ul.smenu li {
	margin: 0px 0px 1px 0px;
}
#side ul.smenu li a {
	display: block;
	position: relative;
	background: #f2f2f2;
	line-height: 20px;
	text-indent: 0px;
	padding: 10px 20px 10px 30px;
}
#side ul.smenu li a:before {
	content: "";
	position: absolute;
	display: block;
	width: 12px;
	height: 12px;
	top: 50%;
	left: 10px;
	margin: -6px 0px 0px 0px;
	border-radius: 50%;
	background: #01a89c;
}
#side ul.smenu li a:after {
	content: "";
	position: absolute;
	display: block;
	width: 0px;
	height: 0px;
	top: 50%;
	left: 14px;
	margin: -3px 0px 0px 0.5px;
	-webkit-transform: rotate(0deg);
									transform: rotate(0deg);
	vertical-align: middle;
	border-left: 4px solid #FFFFFF;
	border-top: 3px solid transparent;
	border-right: 4px solid transparent;
	border-bottom: 3px solid transparent;
}

#side ul.archives li {
}
#side ul.archives li:nth-child(2) {
}
#side ul.smenu li.dwn_fst {
	background: url(../img/common/smenu_dwn_fst.gif) no-repeat;
}
#side ul.smenu li.dwn {
	background: url(../img/common/smenu_dwn.gif) no-repeat;
}
#side ul.smenu li li,
#side ul.smenu li li:nth-child(2) {
	background: url(../img/common/smenu_child.gif) no-repeat;
	line-height: 30px;
	text-indent: 40px;
}
#side ul.smenu li li.eldest {
	background: url(../img/common/smenu_eldest.gif) no-repeat;
	line-height: 40px;
}
#side ul.smenu li li.dwn {
	background: url(../img/common/smenu_eldest_dwn.gif) no-repeat;
	line-height: 40px;
}

#side h3.hdg {
	background: url(../img/common/icon_dwn.gif) no-repeat 10px center;
	font-size: 1.2rem;
	text-align: left;
	max-width: 690px;
	margin: 15px 0px;
	border-bottom: 2px solid #AAA496;
	clear: both;
}

#side ul.bn {
	margin: 0px 5px 20px;
	
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
#side ul.bn li {
	width: calc( 100% / 2 - 10px );
	padding: 0px;
	margin: 0px 5px 10px;
}
#side ul.bn li img {
	width: 100%;
	height: auto;
}
#home #side ul.bn {
	margin: 0px;
}


#side .contact {
	display: none;
	visibility: hidden;
}
#home #side .contact {
}
#side .contact div {
}
#side .contact div img {
}


/* #contact */
#page #sp_contact {
	padding: 0px 0px 0px;
	text-align:center;
}
#page #sp_contact #cntUnit {
	display:block;
	overflow:hidden;
	text-align:left;
	width: 100%;
	margin: 0px auto;
	padding: 0px;
}
#sp_contact #cntUnit h2 {
	display:block;
	position:relative;
	font-size:1.6rem;
	font-weight:bold;
	line-height: 46px;
	height: 46px;
	border-bottom:3px solid #C9C1AF;
	padding-left:30px;
	         box-sizing:border-box;
	   -moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
#sp_contact #cntUnit h2:before {
	display: block;
	content: "";
	position:absolute;
	left:12px;
	top:50%;
	width: 5px;
	height: 5px;
	margin-top:-3px;
	transform:rotate(45deg);
	-webkit-transform:rotation(45deg);
	border-bottom: 2px solid #EA8F9F;
	border-right: 2px solid #EA8F9F;
}
#sp_contact #cntUnit ul.f_contact {
	display: block;
	overflow:hidden;
	width: 100%;
	margin: 10px 0px 0px;
	font-size: 2.6rem;
}
#sp_contact #cntUnit ul.f_contact li {
	display: block;
	vertical-align:middle;
	max-width:300px;
	height:60px;
	margin: 0px auto 5px;
	border:1px solid #DEE5E9;
	box-sizing:border-box;
}
#sp_contact #cntUnit ul.f_contact li.care,
#sp_contact #cntUnit ul.f_contact li.medical {
	position:relative;
}
#sp_contact #cntUnit ul.f_contact li.care:before,
#sp_contact #cntUnit ul.f_contact li.medical:before {
	display:block;
	position:absolute;
	content:'';
	width:40px;
	height:19px;
	top:50%;
	left:-1px;
	margin-top:-10px;
}
#sp_contact #cntUnit ul.f_contact li.care:before {
	background: url(../img/common/f_cnt01.png) no-repeat left top;
	background-size:100%;
}
#sp_contact #cntUnit ul.f_contact li.medical:before {
	background:url(../img/common/f_cnt02.png) no-repeat left top;
	background-size:100%;
}
#sp_contact #cntUnit ul.f_contact li.care p,
#sp_contact #cntUnit ul.f_contact li.medical p {
	display:block;
	position:absolute;
	font-size:1rem;
	line-height:1em;
	bottom:3px;
	right:15px;
}

#sp_contact #cntUnit ul.f_contact li em {
	display:block;
	position:relative;
	padding-left:25px;
	padding-bottom:2px;
	margin-left:55px;
	line-height:58px;
}
#sp_contact #cntUnit ul.f_contact li em:before {
	display:block;
	content:'';
	position:absolute;
	width:20px;
	height:20px;
	top:50%;
	left:0px;
	margin-top:-11px;
	background:url(../img/common/f_telmark.png) no-repeat left top;
	background-size:100%;
}

#sp_contact #cntUnit ul.f_contact li.btn {
	max-width: 300px;
	height: 60px;
	margin: 0px auto 10px;
	font-size: 1.8rem;
	border:none;
}
#sp_contact #cntUnit ul.f_contact li.btn a {
	display:block;
	text-align:center;
	color:#FFFFFF;
	line-height:60px;
	background:#62BDC8;
	
	-webkit-transition: 0.1s ease-in-out;
	   -moz-transition: 0.1s ease-in-out;  
       -o-transition: 0.1s ease-in-out;  
          transition: 0.1s ease-in-out;
}
#sp_contact #cntUnit ul.f_contact li.btn a:hover {
	background:#EA8F9F;
}


/* footer
------------------------------------------------------------ */
footer {
	background: #EBEBEB;
	font-size: 1.1rem;
	padding-top: 10px;
	clear: both;
}
footer article {
	text-align: left;
	margin: 0px auto;
}
footer article.footer {
	text-align: left;
	width: 100% !important;
	margin: 0px auto 10px !important;
}
footer article h3 {
	width: 100%;
	font-size: 1.2rem;
	text-indent: 10px;
	margin: 15px 0px;
	border-bottom: 2px solid #AAA496;
}
footer article .about {
	width: 100%;
}
footer article .about h4 {
	font-size: 1.2rem;
	margin: 0px 20px 5px;
}
footer article .about h4 em {
	font-size: 1.8rem;
	font-weight: normal;
}
footer article .about h4 span {
	font-size: 1.1rem;
}
footer article .about p {
	margin: 0px 25px 5px;
	line-height: 2em;
}

footer article .contents {
	width: 100%;

	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
}
footer article .contents h3 {
	font-size: 1.2rem;
	text-indent: 10px;
	margin: 15px 0px;
	border-bottom: 2px solid #AAA496;
}
footer article .contents ul {
	width: calc( 50% - 15px );
	margin: 0px 0px 10px 10px;
	max-width: calc( 12em + 25px );
}
footer article .contents ul:nth-child(even) {}
footer article .contents ul:nth-child(odd) {}

footer article .contents ul li {
	display: block;
}
footer article .contents ul li a {
	display: block;
	position: relative;
	font-size: 1.0rem;
	width: 100%;
	line-height: 20px;
	padding: 5px 5px 5px 20px;
}
footer article .contents ul li a:before {
	display: block;
	content: "";
	position: absolute;
	left: 4px;
	top: 50%;
	width: 5px;
	height: 5px;
	margin-top: -3px;
	transform: rotate(45deg);
	-webkit-transform:rotation(45deg);

	border-top: 2px solid #EA8F9F;
	border-right: 2px solid #EA8F9F;
}
footer article .contents ul li a:active,
footer article .contents ul li a:hover {
	background: #F8F6F3;
}
footer address {
	background: #FF9999;
	color: #FFF;
	line-height: 30px;
	margin-top: 10px;
	clear: both;
	text-align: center;
	font-style: normal;
	font-size: 1rem;
}

#topcontrol {
	bottom: 0px !important;
	right: 0px !important;
	padding: 10px !important;
}


/* wp
------------------------------------------------------------ */
#page #main .post {}

#page #main .post img,
.aligncenter,
.alignleft,
.alignright {
	display: block;
	float: none;
	text-align: center;
	width: calc( 100% - 0px );
	max-width: 360px;
	height: auto;
	margin: 20px auto;
}

.wp-caption {
   border: 1px solid #EEDFC7;
   text-align: center;
   background-color: #FBF7F2;
   padding-top: 5px;
   /* optional rounded corners for browsers that support it */
   -moz-border-radius: 3px;
   -khtml-border-radius: 3px;
   -webkit-border-radius: 3px;
   border-radius: 3px;
}
.wp-caption p.wp-caption-text {
	line-height: 17px;
	padding: 5px 10px;
	margin: 0;
	text-align: left;
}
#navi {
	font-size: 1.3rem;
	text-align: center;
	padding-bottom: 20px;
}
#navi li {
	padding: 0px 10px;
	display: inline;
}

/* 404 search
------------------------------------------------------------ */
#NotFound .box {
	padding-bottom: 100px;
}
#NotFound .box p {
	font-size: 14px;
	text-align: center;
	padding-top: 30px;
}


/* media end */
}

