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

/* resetcss */

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
form,
input,
button,
p {
    margin: 0px;
    padding: 0px;
    font-size: 14px;
     /*font-family:"游明朝", YuMincho,"ヒラギノ明朝 ProN W3","Hiragino Mincho ProN","HG明朝", serif;*/
   font-family:"ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic Pro",Hiragino Kaku Gothic ProN,Hiragino Sans,"メイリオ",Meiryo,"游ゴシック",YuGothic,'ＭＳ Ｐゴシック',sans-serif;
    line-height: 160%;
    color: #000;
}

/*フォント系*/

h2 {
    font-size: 45px;
}

h3 {
    font-size: 38px;
}

.fs-18 {
    font-size: 18px;
}

.fs-20 {
    font-size: 20px;
}

.fs-22 {
    font-size: 22px;
}

.fs-24 {
    font-size: 24px;
}

.fs-26 {
    font-size: 26px;
}

.fs-28 {
    font-size: 28px;
}

.fs-30 {
    font-size: 30px;
}

.fs-32 {
    font-size: 32px;
}

.fs-34 {
    font-size: 34px;
}

.fs-36 {
    font-size: 36px;
}

.bold {
    font-weight: bold;
}

.red {
    color: red;
}

.blue {
    color: blue;
}

.white {
    color: #fff;
}

/*クリアフィックス*/

.clearfix:after {
    content: "";
    display: block;
    clear: both;
}

.clearfix:before {
    display: block;
    content: "";
    clear: both;
}

.clearfix {
    display: inline-block;
}

* html .clearfix {
    height: 1%;
}

.clearfix {
    display: block;
}

.clear {
    clear: both;
}

iframe {
    max-width: 100%;
}

img {
    vertical-align: top;
    border: none;
    max-width: 100%;
    height: auto !important;
}

.bkimg {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.bkimg img {
	width: 100%;
}

a {
    text-decoration: none;
    color: #000;
}

a:hover {
    opacity: 0.6;
    color: inherit;
    text-decoration: none;
}

a[href*="tel"] {
    pointer-events: none;
}

a[data-href="#"] {
    border: solid red 5px;
    display: block;
    position: relative !important;
    opacity: 1;
}

a[data-href*="."] {
    border: solid red 5px;
    display: block;
    position: relative !important;
    opacity: 1;
}

a[data-href="#"]:hover:before {
    content: "リンクが設定されていない可能性があります。";
    position: absolute !important;
    width: 100%;
    bottom: 100%;
    color: red;
    font-weight: bold;
    background: #555;
    padding: 5px;
    font-size: 12px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

a[data-href*="."]:hover:before {
    content: "外部リンクの可能性があります。リンクが飛ばない可能性がありますので注意してください。";
    position: absolute !important;
    width: 100%;
    bottom: 100%;
    color: red;
    font-weight: bold;
    background: #555;
    padding: 5px;
    font-size: 12px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

[data-element-id][data-uk-slideshow]:hover:before {
    content: "※こちらは見たまま編集ができません。①画像をダブルクリック、②変更（歯車マーク）、③スライドショーから編集してください。";
    display: block;
    line-height: 1.8;
    font-weight: bold;
    color: red;
    clear: both;
    background: #4c4c4c;
    padding: 5px;
    text-align: left;
    position: relative;
    letter-spacing: 1px;
    z-index: 1000;
    font-size: 12px;
}

[data-collection-list-content]:hover:before {
    content: "※こちらは見たまま編集ができません。①ページのどこかをダブルクリック、②左下（もしくは左上）のCMSロゴをクリック、③画面右上のメニュー（三本線マーク）から「カスタムコンテンツ管理」をクリック、④編集したいカスタムコンテンツの一覧（三本線マーク）から記事投稿・記事編集ができます。";
    display: block;
    line-height: 1.8;
    font-weight: bold;
    color: red;
    clear: both;
    background: #4c4c4c;
    padding: 5px;
    text-align: left;
    position: relative;
    letter-spacing: 1px;
    z-index: 1000;
    font-size: 12px;
}

ul,
li {
    list-style: none;
    text-align: left;
    padding: 0;
    margin: 0;
}

dl,
dt,
dd {
    text-align: left;
    padding: 0;
    margin: 0;
}

/*トランスフォーム親*/

.tfm_p {
    position: relative;
}

/*左右中央寄せ*/

.tfm_x {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

/*上下中央寄せ*/

.tfm_y {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

/*上下左右中央寄せ*/

.tfm_xy {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

/*トリミング旧*/

/*.trimming {
    width: 100%;
    position: relative;
    display: block;
    overflow: hidden;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}*/

/*.trimming:after {
    display: block;
    content: "";
    padding-top: 100%;*/
    /*100%で正方形にカット。100%以下で横長、100%以上で縦長
}*/
/*トリミング*/

.trimmingInner {
    width: 100%;
    position: relative;
    display: block;
    overflow: hidden;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
/*フレックス*/

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

/*フレックスセンター*/

.flex_c {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: justify;
    -webkit-justify-content: center;
    justify-content: center;
}

.flex > div[data-collection-list-content],
.flex_c > div[data-collection-list-content] {
    width: 100%;
}

.flex > div[data-recommend-collection-list-content],
.flex_c > div[data-recommend-collection-list-content] {
    width: 100%;
}

.flex .sec2 {
    width: 46%;
    margin: 0% 2% 4% 2%;
}

.flex_c .sec2 {
    width: 46%;
    margin: 0% 2% 4% 2%;
}

.flex .sec3 {
    width: 29%;
    margin: 0% 2% 4% 2%;
}

.flex_c .sec3 {
    width: 29%;
    margin: 0% 2% 4% 2%;
}

.flex .sec4 {
    width: 21%;
    margin: 0% 2% 4% 2%;
}

.flex_c .sec4 {
    width: 21%;
    margin: 0% 2% 4% 2%;
}
.flex .sec5 {
    width: 16%;
    margin: 0% 2% 4% 2%;
}

.flex_c .sec5 {
    width: 16%;
    margin: 0% 2% 4% 2%;
}

@media only screen and (max-width: 1024px) {
	img {
		max-width: 100% !important;
		height: auto !important;
	}
    h2 {
        font-size: 35px;
    }
    h3 {
        font-size: 28px;
    }
    a[href*="tel"] {
        pointer-events: initial !important;
    }
    .flex .sec3 {
        width: 29%;
        margin: 0% 2% 4% 2%;
    }
    .flex_c .sec3 {
        width: 29%;
        margin: 0% 2% 4% 2%;
    }
    .flex .sec4 {
        width: 29%;
        margin: 0% 2% 4% 2%;
    }
    .flex_c .sec4 {
        width: 29%;
        margin: 0% 2% 4% 2%;
    }
    .flex .sec5 {
        width: 46%;
        margin: 0% 2% 4% 2%;
    }
    .flex_c .sec5 {
        width: 46%;
        margin: 0% 2% 4% 2%;
    }
	
}

@media only screen and (max-width: 599px) {
    .flex .sec3 {
        width: 46%;
        margin: 0% 2% 4% 2%;
    }
    .flex_c .sec3 {
        width: 46%;
        margin: 0% 2% 4% 2%;
    }
    .flex .sec4 {
        width: 46%;
        margin: 0% 2% 4% 2%;
    }
    .flex_c .sec4 {
        width: 46%;
        margin: 0% 2% 4% 2%;
    }
}

#wrapper{
	max-width:100%;
	overflow:hidden;
}
.w12{
	max-width:1200px;
	margin:0 auto;
	width:95%;
}
#header h1{
	max-width:1200px;
	margin:0 auto;
	width:95%;
	box-sizing:border-box;
	font-weight:normal;
	padding:10px 0 5px 0;
}

#header .inner{
	max-width:1200px;
	margin:0 auto;
	width:95%;
}
#header .inner p.logo{
	float:left;
	padding:12px 0 24px 0;
}
#header .inner .right{
	float:right;
	width:386px;
}
#header .inner .mnav{
	letter-spacing:-5px;
	text-align:right;
	padding-bottom:10px;
}
#header .right .mnav li{
	display:inline-block !important;
	letter-spacing:0;
	padding:0 0 5px 2.21%;
	/*width:31.86%;*/
	width:48%;
}
#header .right .mnav li a{
	display:block;
	text-align:center;
	background:#e0e0e0;
	font-size:13px;
	font-family:"游明朝", YuMincho,"ヒラギノ明朝 ProN W3","Hiragino Mincho ProN","HG明朝", serif;
	font-weight:bold;
	padding:5px 0;
	border-radius:15px;
}
#header .right .mnav li:first-child{
	padding-left:0;
}
#header .right dl{
	float:left;
	padding:0 0 15px 0;
}
#header .right dt{
	font-size:30px;
	color:#886105;
	font-family:"游明朝", YuMincho,"ヒラギノ明朝 ProN W3","Hiragino Mincho ProN","HG明朝", serif;
	line-height:1;
}
#header .right dt a{
	color:#886105;
}
#header .right dt img{
	vertical-align:middle;
	margin-top:-5px;
	margin-right:5px;
}
#header .right dd{
	font-size:15px;
}
#header .right div p{
	float:right;
	width:144px;
	text-align:center;
	padding:0 0 20px 0;
}
#header .right div p a{
	display:block;
	background:#f2d32f;
	font-size:16px;
	font-family:"游明朝", YuMincho,"ヒラギノ明朝 ProN W3","Hiragino Mincho ProN","HG明朝", serif;
	padding:12px 0;
	border-radius:10px;
	font-weight:bold;
}
@media only screen and (max-width: 799px){
	#header .inner p.logo{
		float:none;
		text-align:center;
	}
	#header .inner .right{
		max-width:386px;
		margin-left:auto;
		margin-right:auto;
		float:none;
		width:100%;
	}
	#header h1{
		padding-right:60px;
	}
}
@media only screen and (max-width: 599px){
  #header h1{
    padding-right: 35px;
    font-size: 9px;
    padding-top: 0;
  }
  #header .inner p.logo{
    width: 60%;
    margin: 0 auto;
    padding: 5px 0 10px 0;
  }
  #header .right dd{
    font-size: 12px;
    text-align: center;
  }
  #header .right dt{
    text-align: center;
  }
  #header .right dl{
    width:100%;
  }
  #header .right div p{
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 50;
    width: 100%;
    padding: 0;
    float: none;
  }
  #header .right div p a{
    background: rgba(239,213,70,0.8);
    padding: 7px 0;
    border-radius: 0;
  }
}
#gnav{
	border-top:1px solid #f2d32f;
	border-bottom:1px solid #f2d32f;
	background:rgba(255,255,255,0.7);
	width:100%;
	position:relative;
	z-index:101;
}
#gnav p{
	display:none;
}
#gnav ul{
	margin:0 auto;
	max-width:1200px;
	margin:0 auto;
}
#gnav li{
	width:11.11%;
	box-sizing:border-box;
	text-align:center;
	font-size:16px;
	font-family:"游明朝", YuMincho,"ヒラギノ明朝 ProN W3","Hiragino Mincho ProN","HG明朝", serif;
	font-weight:bold;
	line-height:140%;
	border-right:1px solid #f2d32f;
}
#gnav li .k{
	letter-spacing:-2.5px;
}
#gnav li:first-child{
	border-left:1px solid #f2d32f;
}
#gnav li a{
	padding:25px 0;
	display:block;
}
#gnav li.w a{
	padding:14px 0;
}
#gnav.fixed{
	position:fixed;
	top:0;
	right:0;
	z-index:101;
}
#gnav li.st{
	background:#876004;
}
#gnav li.st a{
	color:#fff;
}
.btm{
	margin-bottom:73px;
}
@media only screen and (max-width: 1024px){
	#header .logo{
		position:relative;
		left:auto;
	transform: translateX(0);
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
	text-align:center;
	}
	.btm{
	margin-bottom:0;
	}
	#gnav{
    position: fixed;
    top: 0;
    right: 0;
    width: 200px;
    height: 100%;
	background:none;
    -webkit-transform: translateX(200px);
transform: translateX(200px);
    -webkit-transition: ease .5s;
    transition: ease .5s;
    padding:0;
	z-index:101;
	border:none;
	padding-bottom:0;
	
    }
	
	#gnav.fixed{
		 top: 0;
        right: 0;
		left:auto;
		width:200px;
		border:none;
		z-index:101;
		padding-top:0;
		padding-bottom:0;
	}


	#gnav li a:hover, #gnav li.st a{
		display:block !important;
	}
	#gnav ul li:last-child::after{
		display:none !important;
	}

	#gnav p{
		display:block;
		position:absolute;
		width:38px;
		height:38px;
		top:0;
		left:-44px;
		border:1px solid #fff;
		background:#886105;
		cursor:pointer;
		opacity:0.8;
		margin:2px;
		box-shadow:0px 0px 0px 2px #886105;
-moz-box-shadow:0px 0px 0px 2px #886105;
-webkit-box-shadow:0px 0px 0px 2px #886105;
	}
	#gnav ul{
		display:block !important;
	}
	#gnav li:first-child{
		border:none;
		border-bottom:1px dotted #cacad9;
	}
	#gnav li{
		float:none;
		width:auto;
		
		padding:0 !important;
		margin-top:0;
		margin-left:0 !important; 
		display:block !important;
		border:none;
		border-bottom:1px dotted #cacad9;
		
	}
	#gnav ul li a,#gnav ul li.w a{
		height:auto;
		display:block !important;
		padding:8px 0 8px 0;
		font-size:14px;
		line-height:160%;
		letter-spacing:1px;
	}
	


	#gnav.action{
		-webkit-transform:translateX(0px);
        transform:translateX(0px);
	}
	#gnav p span.n{
    display: block;
    background: #fff;
    height: 2px;
    width: 26px;
    text-indent: -9999px;
    padding: 0;
    top: 50%;
    left: 6px;
    margin-top: -1px;
    position: absolute;
    }
	#gnav p span.n:before{
    display: block;
    content: "";
    background: #fff;
    height: 2px;
    width: 26px;
    position: absolute;
    top: -8px;
    left: 0;
    }
	#gnav p span.n:after{
    display: block;
    content: "";
    background: #fff;
    height: 2px;
    width: 26px;
    position: absolute;
    top: 8px;
    left: 0;
    }
	#gnav.action p span.n{
	 -webkit-transform: rotate(-45deg);
		 transform: rotate(-45deg);
		  -webkit-transition:ease .10s;
         transition:ease .10s;
	}
	#gnav.action p span.n:after,#gnav.action p span.n:before{
		 -webkit-transform: rotate(90deg);
		 transform: rotate(90deg);
		 top:0;
		 left:0;
	}
	#gnav ul{
		display:block;
		width:auto;
		height: 100%;
		overflow-y: auto;
		background: #FFF;
		padding:0;
	}
	
	.overlay:after,.overlay #header .inner:before{
		content:"";
		width:100%;
		height:100%;
		background:#000;
		position:fixed;
		top:0;
		left:0;
		opacity:0.3;
		z-index:99;
	}
	#gnav li a:hover::before, #gnav li.st a::before{
		bottom:auto;
		left:auto;
		right:10px;
		top:50%;
		margin-top:-3px;
	
	}
}

.footnav{
	background:#f8f8f8;
	padding:25px 0 25px 0;
}
.footnav li{
	background:url(/import/tenant_2/153.126.167.73/html/images/ft_nav.gif) 0 10px no-repeat;
	padding:0 0 3px 15px;
}
.footnav ul{
	padding:0 1em 0 1em;
}

.footinfo{
	padding:35px 0 35px 0;
	max-width:784px;
	margin:0 auto;
	width:95%;
}

.footinfo .left{
	float:left;
	width:42.47%;
}
.footinfo .time{
	float:right;
	width:52.9%;
}
.footinfo .left dl{
	float:left;
	padding-bottom:20px;
}
.footinfo .left dt{
	line-height:1;
	font-size:26px;
	font-family:"游明朝", YuMincho,"ヒラギノ明朝 ProN W3","Hiragino Mincho ProN","HG明朝", serif;
}
.footinfo .left dt a{
	color: #886105;
}
.footinfo .left dt img{
	vertical-align:middle;
	margin-right:5px;
}
.footinfo .left h3{
	padding-bottom:9px;
	padding-top:12px;
}
.footinfo .left div p{
	float:right;
	width:125px;
	padding-bottom:20px;
}
.footinfo .left div p a{
    display: block;
    background: #f2d32f;
    font-size: 16px;
    font-family: "游明朝", YuMincho,"ヒラギノ明朝 ProN W3","Hiragino Mincho ProN","HG明朝", serif;
    padding: 12px 0;
    border-radius: 10px;
    font-weight: bold;
	text-align:center;
}
.footinfo .time li{
	font-size:13px;
	text-indent:-1em;
	padding-left:1em;
}
.footinfo .time ul{
	padding:0 0 20px 0;
}
.footinfo .time table{
	width:100%;
	border-spacing:1px;
	margin-bottom:10px;
}
.footinfo .time td{
	background:#f0f0f0;
	width:36px;
	text-align:center;
}
.footinfo .time th{
	width:145px;
	background:#e0e0e0;
	height:34px;
	font-weight:normal;
}
.footinfo .time thead th{
	background:#f3d330;
}
.footinfo .time thead td{
	background:#f3d330;
}

.copy{
	text-align:center;
	padding:0 0 35px 0;
}
@media only screen and (max-width: 1024px) {
  .footinfo .left h3{
    padding-top: 0;
  }
  .footinfo .left dl{
    float: none;
  }
  .footinfo .left div p{
    float: none;
    width: 100%;
  }
}
@media only screen and (max-width: 599px) {
	.footnav ul{
		width:48%;
		padding:0 1%;
	}
	.footinfo .left{
		float:none;
		width:auto;
	}
	.footinfo .time{
		float:none;
		width:auto;
	}
	.footinfo .left h3,.footinfo .left dt,.footinfo .left dd{
	  text-align: center;
	}
}
#main{
	background:#f3d330;
}
#left{
	float:left;
	width:902px;
}

#side{
	width:260px;
	float:right;
}
#side.blog-none .side-blog{
  display: none;
}
.side-blog{
	background:#fff;
	border-radius:10px;
	margin-bottom:32px;
	padding:10px 16px 10px 16px;
}
.side-blog h3{
	float:left;
	font-size:26px;
	color:#886105;
	background:url(/import/tenant_2/153.126.167.73/html/images/sideblogmk.gif) 0 13px no-repeat;
	padding:0 0 0 20px;
}
.side-blog .tit p{
	float:right;
	font-size:15px;
	width:69px;
	padding-top:5px;
}
.side-blog .tit p a{
	display:block;
	background:#000000;
	text-align:center;
	color:#fff;
	padding:5px 0;
	border-radius:20px;
}
.side-blog .tit{
	padding-bottom:25px;
}
.side-blog .box .pic{
	float:left;
	width:39%;
}
.side-blog .box dl{
	float:right;
	width:56.14%;
	padding:8px 0 0 0;
}
.side-blog .box dt{
	font-size:16px;
	line-height:140%;
}
.side-blog .box dd{
	font-size:16px;
	line-height:140%;
	width: 100%;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
display: inline-block;
}
.side-blog .box{
	padding:0 0 15px 0;
}
.side-blog .box+.box{
	border-top:1px dashed #989898;
	padding-top:15px;
}
.side-menu li a{
	display:block;
	background:url(/import/tenant_2/153.126.167.73/html/images/sidemk.gif) 17px 15px no-repeat #fff;
	padding:8px 1em 8px 30px;
	font-size:16px;
}
.side-menu li{
	padding:0 0 3px 0;
}
.side-menu li:last-child{
	padding-bottom:0;
}
.side-menu{
	border-radius:10px;
	overflow:hidden;
	margin-bottom:30px;
}

.side-info{
	background:#fff;
	padding:16px 14px 0 14px;
	border-radius:10px;
	margin-bottom:30px;
}
.side-info h3{
	font-size:18px;
	text-align:center;
	color:#886105;
	margin-bottom:14px;
	max-width:232px;
	margin-left:auto;
	margin-right:auto;
}
.side-info h3 .s{
	display:block;
	color:#000;
	font-weight:normal;
}
.side-info dt{
	text-align:center;
	font-size:26px;
	line-height:140%;
	padding-top:4px;
	font-family: "游明朝", YuMincho,"ヒラギノ明朝 ProN W3","Hiragino Mincho ProN","HG明朝", serif;
}
.side-info dt img{
	vertical-align:middle;
	margin-top:-5px;
	margin-right:5px;
}
.side-info dt a{
	color:#886105;
}
.side-info dd{
	text-align:center;
	line-height:140%;
}
.side-info dl{
	padding-bottom:18px;
}
.side-info .box+.box h3{
	background-image:url(/import/tenant_2/153.126.167.73/html/images/sideleft.gif), url(/import/tenant_2/153.126.167.73/html/images/sideright.gif);
	background-position:0 10px, right 10px;
	background-repeat:no-repeat;
}
@media only screen and (max-width: 1245px){
	#left{
		float:none;
		width:auto;
		max-width:902px;
		margin-left:auto;
		margin-right:auto;
		padding-bottom:10px;
	}
	#side{
		float:none;
		width:auto;
		padding-bottom:10px;
	}
	.side-blog .box dl{
		float:left;
		padding-left:15px;
		width: 95%;
	}
	.side-blog .box .pic{
		width:auto;
		
	}
	#side .fl{
	  display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
	}
	.side-blog{
	  width:48%;
	  box-sizing: border-box;
	  margin-right: 2%;
	}
	.side-menu{
	   width:48%;
	  box-sizing: border-box;
	  margin-left: 2%;
	}
	.side-info{
	  width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	}
	.side-info .box{
	  width:48%;
	  box-sizing: border-box;
	}
	.side-info .box:first-of-type{
	  margin-right: 4%;
	}
	.side-info h3{
	  font-size: 21px;
	}
	.side-info .box+.box h3{
	  background: none;
	}
	#side .si001{
	  display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	}
	.side-post:first-of-type{
	  margin-right: 4%;
	}
}

.subtit{
	background:#EEEEEE;
	text-align:center;
	padding:65px 2.5% 45px 2.5%;
	border-top:2px solid #fff;
	position:relative;
	margin-bottom:145px;
}
.subtit h2{
	font-size:28px;
	font-weight:normal;
	color:#865F04;
	padding:0 0 5px 0; 
}
.subtit li{
	color:#865F04;
}

.subtit li a{
	color:#865F04;
}
.subtit li+li:before{
	content:"▶";
	display:inline-block !important;
	font-size:8px;
	vertical-align:middle;
	padding:0 1em;
}
.subtit:before{
	content:url(/import/tenant_2/153.126.167.73/html/images/toppatsu/tit_icon.gif);
	bottom:-20px;
	left:50%;
	position:absolute;
	line-height:1;
}

.are1 .pic{
	float:left;
	width:60.42%;
	box-sizing:border-box;
	background:#fff;
	border:1px solid #DDDDDD;
	padding:13px;
	margin-bottom:20px;
	text-align:center;
}
.are1 dl{
	float:right;
	width:38.13%;
	padding:6px 0 20px 0;
}
.are1 dd{
	margin-top:-69px;
}
.are1 dd .trimmingInner{
	border-radius:10px;
}
.are1 dt{
	padding:0 0 0 19px;
	position:relative;
	z-index:1;
}
.are1{
	padding-bottom:28px;
}
@media only screen and (max-width: 1024px) {
  .subtit{
    margin-bottom: 60px;
    padding: 40px 2.5% 40px 2.5%;
  }
}
@media only screen and (max-width: 599px) {
	.are1 .pic{
		float:none;
		width:auto;
		max-width:545px;
		margin-left:auto;
		margin-right:auto;
		padding:8px;
		margin-bottom:0;
	}
	.are1 .pic img{
		width:100%;
	}
	.are1 dl{
		width:auto;
		max-width:344px;
		float:none;
		margin-left:auto;
		margin-right:auto;

	}
	.side-blog,.side-menu{
	  width:100%;
	  margin-right: 0;
	}
	.side-info .box{
	  width:100%;
	}
	.side-info .box:first-of-type{
	  margin-right: 0;
	}
	.are1 dt{
	  padding:0;
	}
	.are1 dt img{
	  width:35%;
	}
	.are1 dd{
	  width:80%;
	  margin-right: auto;
	  margin-left: auto;
	}
	.side-post{
	  width:100% !important;
	}
	.side-post:first-of-type{
	  margin-right: 0;
	}
	.subtit:before{
	  left: 47%;
	}
}

.wt{
	background:#fff;
	border-radius:10px;
	padding-left:2.88%;
	padding-right:2.88%;
	margin-bottom:80px;
}

.intro1 h3{
	font-size:32px;
	color:#865F05;
	font-weight:normal;
	border-bottom:1px solid #CCCCCC;
	margin-bottom:20px;
	padding-bottom:10px;
}
.intro1{
	padding-top:25px;
	padding-bottom:20px;
}
.intro1 p{
	padding:0 0 20px 0;
}
.h3f{
	max-width:550px;
	margin:0 auto;
	min-height:164px;
	margin-bottom:10px;
	background:url(/import/tenant_2/153.126.167.73/html/images/menu_icon.png) center top no-repeat;
	background-size:cover;
	text-align:center;
	font-size:28px;
	font-weight:normal;
	position:relative;
}
.h3f .w{
	position:absolute;
	top:50%;
	left:0;
	margin-top:-15px;
	width:100%;
	transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
@media only screen and (max-width: 1024px) {
	.intro1 h3{
		font-size:20px;
	}
	.h3f{
		font-size:20px;
		line-height:120%;
		
	}
	
	
}
@media only screen and (max-width: 599px) {
	.h3f{
		min-height:auto;
		padding-bottom:29.81%;
	}
	.h3f .w{
		margin-top:-8px;
		line-height:120%;
	}
}


/*cause*/
.cause1 .wt{
	padding-top:30px;
	padding-bottom:30px;
}


.cause1 h4{
	font-weight:normal;
	font-size:36px;
	line-height:140%;
	color:#876005;
	padding:0 0 16px 0;
}
.cause1 h4 .s{
	display:block;
	font-size:24px;
	line-height:140%;
}
.cause1 .pic{
	float:right;
	width:38.94%;
	padding:0 0 20px 0;
}
.cause1 .tbox{
	width:54.7%;
	float:left;
}
.cause1 .tbox p{
	padding:0 0 20px 0;
}

.cause2 .wt{
	padding-top: 25px;
}
.cause2 h4{
    font-size: 32px;
    color: #865F05;
    font-weight: normal;
    border-bottom: 1px solid #CCCCCC;
    margin-bottom: 20px;
    padding-bottom: 10px;
}
.cause2 h4+p{
	font-size:21px;
	padding:0 0 35px 0;
}
.cause2 dl{
	width:47.05%;
	margin:0 5.9% 35px 0;
}
.cause2 dl:nth-child(2n+2){
	margin-right:0;
}

.cause2 dt{
	font-size:21px;
	color:#865F05;
	padding:0 0 10px 0;
}

.cause2 .flex{
	padding-bottom:20px;
}
.cause2 .pic{
	float:right;
	width:37.52%;
	text-align:center;
}
.cause2 .tbox{
	width:57.17%;
	float:left;
	margin:16px 0 20px 0;
	border-top:3px dashed #F4DC5E;
	border-bottom:3px dashed #F4DC5E;
	padding:30px 0 10px 0;
}
.cause2 .tbox p{
	color:#855F05;
	padding:0 0 20px 0;
}
@media only screen and (max-width: 1024px) {
	.cause1 h4{
		font-size:20px;
	}
	.cause1 h4 .s{
		font-size:16px;
	}
	.cause2 h4{
		font-size:20px;
	}
	.cause2 h4 + p{
		font-size:16px;
	}
	.cause2 dt{
		font-size:16px;
	}
}
@media only screen and (max-width: 599px) {
	.cause1 .pic{
		float:none;
		width:auto;
		text-align:center;
	}
	.cause1 .tbox{
		width:auto;
		float:none;
	}
	.cause2 dl{
		width:100%;
		margin-right:0;
	}
	.cause2 .pic{
		float:none;
		width:auto;
		text-align:center;
	}
	.cause2 .tbox{
		width:auto;
		float:none;
	}
	.cause2 .wt{
		padding-bottom:30px;
	}
}

.cause3{
	padding-top:25px;
	padding-bottom:10px;
}
.cause3 h3{
	font-size:28px;
	padding:0 0 15px 0;
	font-weight:normal;
	color:#855F05;
}
.cause3 p{
	padding:0 0 20px 0;
}
.cause3 .pic{
	float:right;
	width:38.82%;
	padding:0 0 20px 0;
}
.cause3 ul{
	width:54.7%;
	float:left;
}
.cause3 li{
	font-size:21px;
	background:url(/import/tenant_2/153.126.167.73/html/images/check.gif) 0 0 no-repeat;
	padding:0 0 35px 50px;
}
@media only screen and (max-width: 1024px) {
	.cause3 h3{
		font-size:20px;
	}
	.cause3 li{
		font-size:18px;
		padding-bottom:25px;
	}
}
@media only screen and (max-width: 599px) {
	.cause3 .pic{
		float:none;
		width:auto;
		text-align:center;
	}
	.cause3 ul{
		width:auto;
		float:none;
	}
	.cause3 li{
	  padding: 0 0 35px 40px;
    background-size: 8%;
    background-position-y: 5%;
	}
}

.matome1 .wt{
	padding-top:30px;
	padding-bottom:10px;
}

.h3f .m{
	display:inline-block !important;
	text-align:left;
	color:#855F05;
	font-size:24px;
}
.h3f .m .s{
	display:block;
	font-size:14px;
	line-height:1;
}

.matome1 .pic{
	float:left;
	width:40.82%;
	padding:0 0 20px 0;
}
.matome1 .tbox{
	float:right;
	width:54.23%;
}
.matome1 .tbox h4{
	font-size:24px;
	line-height:135%;
	font-weight:normal;
	color:#876005;
	border-bottom:1px solid #CCCCCC;
	padding:0 0 20px 0;
	margin-bottom:20px;
}
.matome1 .tbox p{
	padding:0 0 20px 0;
}
@media only screen and (max-width: 1024px) {
	.h3f .m{
		font-size:20px;
	}
	.matome1 .tbox h4{
		font-size:18px;
	}
}
@media only screen and (max-width: 599px) {
	.matome1 .pic{
		float:none;
		width:auto;
		text-align:center;
	}
	.matome1 .tbox{
		width:auto;
		float:none;
	}
	.h3f .m{
	  font-size: 16px;
	}
	.h3f .m .s{
	  text-align: center;
	}
}

/*home*/
.home1 .pic{
	margin-top:-13px;
}
.home1{
	background:#fff;
	margin-bottom:26px;
}
.home1 .pic .f{
	display:inline-block !important;
	padding:60px 0 0 30px;
	margin-right:-89px;
}
.home1 .w12{
	position:relative;
}
.home1 .tbox{
	width:49.16%;
	position:absolute;
	top:50%;
	right:0;
	transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
.home1 .tbox h2 .s{
	display:block;
	font-size:24px;
	line-height:120%;
	
	line-height:1;
	 font-family:"ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic Pro",Hiragino Kaku Gothic ProN,Hiragino Sans,"メイリオ",Meiryo,"游ゴシック",YuGothic,'ＭＳ Ｐゴシック',sans-serif;
}
.home1 .tbox h2{
	color:#886105;
	line-height:160%;
	font-size:50px;
	font-family:"游明朝", YuMincho,"ヒラギノ明朝 ProN W3","Hiragino Mincho ProN","HG明朝", serif;
	padding-bottom:5px;
}
.home1 .tbox h2 strong{
	font-size:89px;
	line-height:120%;
}
.home1 .tbox p strong{
	font-size:20px;
}
.home1 .tbox p{
	padding:0 0 10px 0;
}
@media only screen and (max-width: 1024px) {
	.home1 .pic .f{
		display:block !important;
		padding-left:0;
	}
	.home1 .tbox h2 .s{
		font-size:16px;
	}
	.home1 .tbox h2 strong{
		font-size:40px;
	}
	.home1 .tbox h2{
		font-size:20px;
	}
	.home1 .tbox p strong{
		font-size:16px;
	}
}
@media only screen and (max-width: 599px) {
	.home1 .tbox{
		top:auto;
		transform: translateY(0);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
	bottom:auto;
	width:100%;
	position: relative;
	padding-top: 3%;
	}
	.home1 .tbox p{
		font-size:12px;
	}
	.home1 .tbox p strong{
		font-size:14px;
	}
	.home1 .tbox h2 .s{
		font-size:12px;
	}
	.home1 .tbox h2 strong{
		font-size:30px;
	}
	.home1 .pic img{
		opacity:0.4;
	}
	.home1 .pic .f img{
		opacity:1;
	}
}

.home-nayami{
	background:#fff;
	border-radius:10px;
	overflow:hidden;
	margin-bottom:40px;
}
.home-nayami h3 .w{
	display:inline-block !important;
	background:#f3d330;
	position:relative;
	padding:8px 0 10px 0.5em;
}
.home-nayami h3 .w:before{
	content:"";
	width:10px;
	height:10px;
	background:#f3d330;
	bottom:-10px;
	left:0;
	position:absolute;
}
.home-nayami h3 .w img{
	position:absolute;
	right:-50px;
	top:0;
	width:50px;
	height:100% !important;
}
.home-nayami h3{
	font-size:28px;
}
.home-nayami .tbox ul{
	background:#fff;
	border-radius:10px;
	position:relative;
	z-index:1;
	padding:45px 0 0 30px
}
.home-nayami .tbox{
	float:left;
	width:74.83%;
	padding-bottom:30px;
	position:relative;
}
.home-nayami .tbox ul:before{
	content:url(/import/tenant_2/153.126.167.73/html/images/top/icon_01.png);
	right:0;
	top:-52px;
	position:absolute;
}
.home-nayami .pic{
	float:right;
	padding:50px 0 0 0;
	width:24.61%;
}
.home-nayami .tbox li{
	background:url(/import/tenant_2/153.126.167.73/html/images/check.gif) 0 0 no-repeat;
	font-size:21px;
	font-weight:bold;
	padding:0 0 12px 45px;
	position:relative;
	z-index:1;
}
@media only screen and (max-width: 1024px) {
	.home-nayami h3{
		font-size:20px;

	}
	.home-nayami .tbox li{
		font-size:16px;
		padding:5px 0 12px 45px;
	}
	.home-nayami .tbox ul:before{
		top:5px;
	}
}
@media only screen and (max-width: 599px) {
	.home-nayami{
		position:relative;
	}
	.home-nayami .pic{
		display:none;
	}
	.home-nayami .tbox{
		width:auto;
		float:none;
		padding-right:2.5%;
	}
	.home-nayami .tbox ul{
		padding-left:2.5%;
	}
	.home-nayami h3 .w{
		padding-left:0;
	}
	.home-nayami .tbox ul:before,.home-about .tbox .txt:before{
	  opacity: 0.5;
	}
	.home-nayami .tbox li{
	  background-size: 8%;
    background-position-y: 15%;
    padding: 5px 0 12px 40px;
	}
	.home-about .pic dd{
	  width: 60%;
    margin: 0 auto;
	}
	.home-about .tbox .txt p.hmore,.home-cause p.hmore{
	  text-align: center;
	}
}

.home-about{
	background:#fff;
	border-radius:10px;
	overflow:hidden;
	margin-bottom:40px;
	padding-bottom:10px;
}
.home-about h3 .w{
	display:inline-block !important;
	background:#f3d330;
	position:relative;
	padding:8px 0 10px 0.5em;
}
.home-about h3 .w:before{
	content:"";
	width:10px;
	height:10px;
	background:#f3d330;
	bottom:-10px;
	left:0;
	position:absolute;
}
.home-about h3 .w img{
	position:absolute;
	right:-50px;
	top:0;
	width:50px;
	height:100% !important;
}
.home-about h3{
	font-size:28px;
}
.home-about .tbox{
	float:left;
	width:60.86%;
}
.home-about .tbox .txt{
	background:#fff;
	border-radius:10px;
	position:relative;
	z-index:1;
	padding:25px 0 0 24px;
}
.home-about .pic{
	float:right;
	width:39.13%;
}
.home-about .pic dd{
	text-align:center;
}
.home-about .pic dt{
	text-align:center;
	background:url(/import/tenant_2/153.126.167.73/html/images/top/icon_03.png) center top no-repeat;
	margin-top:-47px;
	position:relative;
	z-index:1;
	padding:47px 0 20px 0;
	line-height:120%;
	font-size:19px;
	font-weight:bold;
	font-family:"游明朝", YuMincho,"ヒラギノ明朝 ProN W3","Hiragino Mincho ProN","HG明朝", serif;
}

.home-about .tbox p strong{
	font-size:20px;
	color:#886105;
}
.home-about .tbox p{
	padding:0 0 20px 0;
}

.hmore a{
	display:inline-block !important;
	background:#000000;
	color:#fff;
	font-size:16px;
	font-weight:bold;
	font-family:"游明朝", YuMincho,"ヒラギノ明朝 ProN W3","Hiragino Mincho ProN","HG明朝", serif;
	padding:10px 2em;
	border-radius:25px;
}
.home-about .tbox .txt:before{
	content:url(/import/tenant_2/153.126.167.73/html/images/top/icon_02.png);
	position:absolute;
	right:-30px;
	top:-37px;
}
.home-about .tbox .txt p{
	position:relative;
	z-index:1;
}
@media only screen and (max-width: 1024px) {
	.home-about h3{
		font-size:20px;
	}
	.home-about .tbox p strong{
		font-size:16px;
	}
	.home-about .pic dt{
		font-size:14px;
	}
}
@media only screen and (max-width: 599px) {
	.home-about .tbox{
		float:none;
		width:auto;
	}
	.home-about .tbox .txt{
		padding-left:2.5%;
		padding-right:2.5%;
	}
	.home-about .tbox .txt:before{
		right:0;
		top:0;
	}
	.home-about h3 .w{
		padding-left:0;
	}
	.home-about .pic{
		float:none;
		width:auto;
	}
}

.home-cause{
	padding-top:20px;
}
.home-cause h3{
	font-size:28px;
	padding:0 0 5px 0;
}
.home-cause p{
	padding:0 0 20px 0;
}
.home-cause h3+ p{
	font-size:20px;
	color:#886105;
	font-weight:bold;
	letter-spacing:-0.7px;
	
}
.home-cause li{
	text-indent:-1em;
	padding:0 0 0 1em;
}
.home-cause ul{
	padding-bottom:20px;
}
@media only screen and (max-width: 1024px) {
	.home-cause h3{
		font-size:20px;
	}
	.home-cause h3 + p{
		font-size:16px;
	}
}
.home-treatment h3{
	text-align:center;
	font-size:34px;
	font-family:"游明朝", YuMincho,"ヒラギノ明朝 ProN W3","Hiragino Mincho ProN","HG明朝", serif;
}
.home-treatment h3 .w{
	display:inline-block !important;
	width:100%;
	max-width:451px;
	background:url(/import/tenant_2/153.126.167.73/html/images/top/icon_04.png) center bottom no-repeat;
	padding-bottom:50px;
	margin-bottom:-19px;
	position:relative;
	z-index:1;
	padding-left:3%;
	padding-right:3%;
	margin-left:-3%;
}
.home-treatment li{
	width:49.64%;
	margin:0 0.72% 10px 0;
	font-size:20px;
	font-weight:bold;
}
.home-treatment li:nth-child(2n+2){
	margin-right:0;
}
.home-treatment li a{
	display:block;
	text-align:center;
	background:#FBED21;
	border-radius:5px;
	padding:15px 0;
}
.home-treatment li img{
	margin-right:10px;
}
.home-treatment{
	padding-bottom:6px;
}
@media only screen and (max-width: 1024px) {
	.home-treatment h3{
		font-size:20px;
	}
	.home-treatment li{
		font-size:14px;
	}
	.home-treatment li img{
		vertical-align:middle;
	}
}
@media only screen and (max-width: 599px) {
	.home-treatment li{
		width:100%;
		margin-right:0;
	}
	.home-treatment h3 .w{
		margin-bottom:-5px;
	}
}

.home-book dl{
	background:#fff;
	margin:0 2.28% 20px 0;
	width:31.81%;
	padding:25px 2.5% 0 2.5%;
	box-sizing:border-box;
}
.home-book dl:nth-child(3n+3){
	margin-right:0;
}
.home-book dd{
	text-align:center;
	padding:0 0 10px 0;
}
.home-book dt{
	text-align:center;
	padding:0 0 20px 0;
}
.home-book{
	padding-bottom:17px;
}

.home-sodan .pic{
	float:left;
	margin-top:-26px;
	width:27.17%;
}
.home-sodan .tbox{
	width:68%;
	float:right;
	padding:20px 0 0 0;
}
.home-sodan .tbox h3{
	font-size:34px;
	line-height:120%;
	font-family:"游明朝", YuMincho,"ヒラギノ明朝 ProN W3","Hiragino Mincho ProN","HG明朝", serif;
	padding:0 0 10px 0;
}
.home-sodan .tbox p{
	padding:0 0 20px 0;
}
.home-sodan .tbox h3 strong{
	color:#F05A24;
}
@media only screen and (max-width: 1024px) {
	.home-sodan .tbox h3{
		font-size:20px;
	}
}
@media only screen and (max-width: 599px) {
	.home-sodan .pic{
		float: none;
    width: 60%;
    text-align: center;
    margin-top: 0;
    margin: 0 auto;
	}
	.home-sodan .tbox{
		width:auto;
		float:none;
	}
	.home-book dl{
	  width:48%;
	}
	.home-book dl:nth-of-type(2){
	  margin-right: 0;
	}
	
}

/*about*/
.about .are1{
	padding-bottom:0;
}
.about .are1 dt{
	padding-left:0;
	margin-left:-54.34%;
}
.about .are1 dd{
	margin-left:-31.9%;
	position: relative;
    z-index: 1;
}
.about .are1 .pic{
	margin-top:72px;
}
.about .are1 dl{
	margin-top:-28px;
	padding-bottom:0;
}
@media only screen and (max-width: 599px) {
	.about .are1 dd{
		margin-left:0;
		padding-left:23%;
	}
	.about .are1 dt{
		margin-left:0;
	}
	.about .are1 dl{
	  margin-top: 0;
	}
	.about .are1 dt img{
	  width:35%;
	}
}

.about1 .wt{
	padding-right:0;
	padding-top:25px;
}
.about1 .pic{
	float:right;
	padding:30px 0 0 0;
	width:42.12%;
}
.about1 .tbox{
	float:left;
	width:57.53%;
}
.about1 h4{
	font-weight:normal;
	font-size:35px;
	line-height:130%;
	padding:0 0 25px 0;
	color:#876005;
}
.about1 h4 .s{
	display:block;
	font-size:24px;
	line-height:130%;
}

.about1 .tbox p{
	padding:0 7% 20px 0;
}
@media only screen and (max-width: 1024px) {
	.about1 h4{
		font-size:20px;
	}
	.about1 h4 .s{
		font-size:16px;
	}
}
@media only screen and (max-width: 599px) {
	.about1 .pic{
		float: none;
    width: 70%;
    padding-bottom: 20px;
    text-align: center;
    margin: 0 auto;
	}
	.about1 .wt{
		padding-right:2.88%;
	}
	.about1 .tbox{
		float:none;
		width:auto;
		padding-bottom:20px;
	}
	.about1 .tbox p{
	  padding: 0 0 15px 0;
	}
	.about1 h4,.cause1 h4,.about3 h3{
	  text-align: center;
	}
	
}

.about2 .pic{
	padding-bottom:0;
}
.about2 .wt{
	padding-bottom:0;
}
@media only screen and (max-width: 599px) {
	.about2 .pic{
		padding-bottom:20px;
		width: 70%;
    margin: 0 auto;
	}
}

.about3 .pic{
	float:right;
	width:32.35%;
	text-align:center;
}
.about3{
	padding-top:25px;
}
.about3 h3{
	font-weight:normal;
	font-size:28px;
}
.about3 h3 .w{
	display:inline-block !important;
	border-bottom:1px solid #ccc;
	padding-bottom:5px;
}
.about3 .tbox{
	float:left;
	width:63.17%;
	padding:25px 0 0 0;
}
.about3 .tbox li{
    font-size: 21px;
    background: url(/import/tenant_2/153.126.167.73/html/images/check.gif) 0 0 no-repeat;
    padding: 0 0 12px 50px;
}
.about3 .tbox ul{
	padding-bottom:8px;
}
.about3 .tbox p{
	padding:0 0 20px 0;
}
@media only screen and (max-width: 1024px) {
	.about3 .tbox li{
		font-size:16px;
		padding-top:5px;
	}
	.about3 h3{
		font-size:20px;
	}
}
@media only screen and (max-width: 599px) {
	.about3 .pic{
		float: none;
    width: 50%;
    padding: 30px 0 20px 0;
    margin: 0 auto;
	}
	.about3 .tbox{
		width:auto;
	}
	.about3 .tbox li{
	  background-size: 8%;
    background-position-y: 20%;
    padding: 0 0 12px 40px;
	}
}
/*access*/

.access1{
	padding:35px 4.43% 40px 4.43%;
}
.access1 h3{
	padding-bottom:30px;
	text-align:center;
}
.access1 .map{
	margin-bottom:35px;
}
.access1 dt{
	text-align:center;
	font-size:36px;
	font-family:Arial, Helvetica, sans-serif;
	color:#876005;
}
.access1 dt a{
	color:#876005;
}
.access1 dt img{
	vertical-align:middle;
	margin-top:-5px;
	margin-right:5px;
}
.access1 dd{
	text-align:center;
	font-size:18px;
}

.access1 h3.a1 .w{
	display:inline-block !important;
	text-align:left;
	line-height:120%;
}
.access1 h3.a1 .w .n{
	display:block;
	font-size:25px;
	line-height:120%;
}
.access1 h3.a1 .w .n .e{
	display:inline-block !important;
	padding-left:0.5em;
	font-weight:normal;
	font-size:20px;
}
.access1 h3.a1 strong{
	display:block;
	font-size:45px;
	color:#876005;
}
.access1 h3.a1 .t{
	display:block;
	font-size:22px;
	color:#876005;
}


.access1 h3.a2{
	color:#876005;
	font-size:36px;
	line-height:130%;
}
.access1 h3.a2 .s{
	display:block;
	font-weight:normal;
	font-size:25px;
	color:#000;
}
@media only screen and (max-width: 599px) {
	.access1 dt{
		font-size:26px;
	}
	.access1 dt img{
		max-width:20px !important;
	}
	.access1 dd{
		font-size:14px;
	}
	.access1 h3.a2{
		font-size:24px;
	}
	.access1 h3.a2 .s{
		font-size:16px;
	}
	.access1 h3.a1 strong{
		font-size:31px;
	}
	.access1 h3.a1 .t{
		font-size:18px;
	}
	.access1 h3.a1 .w .n{
		font-size:20px;
	}
	.access1 h3.a1 .w .n .e{
		font-size:15px;
	}
	.access1 .map iframe{
	  height:auto;
	}
}
/*contact*/

.contact #left h3{
	font-size:28px;
	font-weight:normal;
	border-bottom:2px solid #fff;
	padding-bottom:5px;
}

.contact1 dl{
	padding:60px 0 0 0;
}
.contact1 dt{
	font-size:72px;
	font-family:Arial, Helvetica, sans-serif;
	font-weight:bold;
	color:#876005;
	line-height:1;
	padding:0 0 10px 0;
}
.contact1 dt a{
	color:#876005;
}
.contact1 dt img{
	vertical-align:middle;
	margin-right:10px;
	margin-top:-5px;
}
.contact1{
	padding-bottom:100px;
}

.contact2 dt{
	float:left;
}
.contact2 dd{
	padding:0 0 0 185px;
}
.contact2 dl{
	padding:25px 0;
	border-bottom:1px solid #fff;
}
.contact2 dd .size1{
	border:2px solid #DDDDDD;
	width:100%;
	box-sizing:border-box;
	padding:5px;
}
.contact2 dd .tg{
	display:inline-flex;
	padding-bottom:13px;
}
.contact2 dd .tg input{
	max-width:152px;
	border:2px solid #DDDDDD;
	box-sizing:border-box;
	padding:5px;
	margin-left:0.5em;
}

.contact2 dd textarea{
	border:2px solid #DDDDDD;
	width:100%;
	box-sizing:border-box;
	padding:5px;
	height:175px;
}
.contact2 .table{
	padding-bottom:45px;
}

.contact2 .formbtn{
	padding:65px 0 0 0;
}
.contact2 .formbtn li{
	width:100%;
	max-width:422px;
}
.contact2 .formbtn li .form-submit-btn,.contact2 .formbtn li .send,.contact2 .formbtn li .modoru{
	width:100%;
	height:70px;
	color:#876005;
	font-size:18px;
	border:none;
	background:url(/import/tenant_2/153.126.167.73/html/images/contact/btn.png) 35px 18px no-repeat #FAEC20;
	border-radius:10px;
}
.contact2 .formbtn li:first-of-type{
  margin-right: 2%;
}
.contact2{
	padding-bottom:70px;
}

.contact2 dt{
	padding:10px 0 0 0;
}
.contact2 dt strong{
	display:inline-block !important;
	background:#EA4335;
	font-size:12px;
	color:#fff;
	font-weight:normal;
	padding:0 0.5em;
	margin-left:10px;
}
.contact2 .singlenav{
  padding-top: 100px;
}
@media only screen and (max-width: 1024px) {
	.contact #left h3{
		font-size:20px;
	}
	.contact1 dt{
		font-size:36px;
	}
	.contact1 dt img{
		max-width:20px !important; 
	}
}
@media only screen and (max-width: 923px) {
  .contact2 .formbtn li:first-of-type{
    margin-bottom: 3%;
    margin-right: 0;
  }
}
@media only screen and (max-width: 599px) {
	.contact2 dt{
		float:none;
		padding:0 0 10px 0;
	}
	.contact2 dd{
		padding-left:0;
	}
	.contact2 .singlenav{
  padding-top: 50px;
}
}

/*faq*/

.faq1 h3{
    font-size: 28px;
    font-weight: normal;
    border-bottom: 2px solid #fff;
    padding-bottom: 5px;
	margin-bottom:20px;
}
.faq1 p{
	font-size:18px;
	color:#876005;
	padding:0 0 20px 0;
}
.faq1{
	padding-bottom:100px;
}

.faqlist h3 img{
	vertical-align:middle;
	margin-right:15px;
}
.faqlist h3{
	font-size:28px;
	padding:0 0 35px 40px;
}
.faqlist .box{
	margin-bottom:16px;
}
.faqlist .wrap{
	padding-bottom:22px;
}
.faqlist .box h4{
	background:#FCED22;
	font-size:18px;
	padding:12px 1em 12px 6.5%;
	text-indent:-1.5em;
	cursor:pointer;
}
.faqlist .box .a{
	background:#fff url(/import/tenant_2/153.126.167.73/html/images/faq/icon_02.gif) 26px 15px no-repeat;
	padding:18px 1em 30px 80px;
	display:none;
}
.faqlist .box .a p{
	padding:0 0 20px 0;
	color:#865F05;
}
.faqlist{
	padding-bottom:70px;
}
@media only screen and (max-width: 1024px) {
	.faq1 h3{
		font-size:20px;
	}
	.faqlist h3{
		font-size:20px;
	}
}
@media only screen and (max-width: 599px) {
	.faqlist .box h4{
		font-size:16px;
		padding-left:2.5em;
	}
	.faqlist h3 img{
		display:block !important;
		margin-bottom:5px;
		max-width:35px !important;
		margin-left:20px;
	}
	.faqlist h3{
		padding-left:0;
	}
	
}

.faq .matome1 h4{
    font-size: 24px;
    line-height: 135%;
    font-weight: normal;
    color: #876005;
    border-bottom: 1px solid #CCCCCC;
    padding: 0 0 20px 0;
    margin-bottom: 20px;
}
.faq .matome1 .wt p{
	padding:0 0 20px 0;
}
.faq .matome1 .wt{
	padding-bottom:20px;
}
@media only screen and (max-width: 1024px) {
	.faq .matome1 h4{
		font-size:18px;
	}
}

/*blog*/

.side-post{
	background:#fff;
	border-radius:10px;
	margin-bottom:27px;
	padding: 10px 16px 10px 16px;
}
.side-post dt{
    font-size: 26px;
    color: #886105;
    background: url(/import/tenant_2/153.126.167.73/html/images/sideblogmk.gif) 0 13px no-repeat;
    padding: 0 0 10px 20px;
	font-weight:bold;
}
.side-post dd{
	background:url(/import/tenant_2/153.126.167.73/html/images/sidemk.gif) 0 6px no-repeat;
	padding:0 0 20px 16px;
}

.postlist .wt{
	margin-bottom:40px;
	padding-top:20px;
}
.postlist .pic{
	float:left;
	width:24.7%;
	padding:0 0 20px 0;
}

.postlist .tbox{
	float:right;
	width:71.76%;
}
.postlist .tbox h3{
	font-size:20px;
	font-weight:normal;
	color:#876005;
	padding:0 0 10px 0;
}
.postlist .tbox .d{
	padding:0 0 20px 0;
}
.postlist .tbox p{
	padding:0 0 20px 0;
	
}
/* .postlist .tbox .txt{
  width: 100%;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
display: inline-block;
} */
/* .postlist .tbox .txt.ichiran div{
  display: none;
} */
.postlist .tbox .more{
	text-align:right;
}
.postlist .tbox .more a{
	text-decoration:underline;
}
.postlist .tbox .more a:before{
	content:"▶";
	display:inline-block !important;
	font-size:8px;
	color:#865F04;
	margin-right:1em;
	vertical-align:middle;
}
.postlist{
	padding-bottom:40px;
}
.pagenav p{
	font-size:12px;
	padding:10px 9px;
}
.pagenav li a{
	display:block;
	min-width:33px;
	font-size:18px;
	font-family:Arial, Helvetica, sans-serif;
	font-weight:bold;
	line-height:43px;
	border:1px solid #DDDDDD;
	background:#fff;
	text-align:center;
}
.pagenav li{
	padding:0 2.5px;
}
.pagenav li.st a{
	background:#DDDDDD;
	color:#fff;
}
.pagenav ul{
	padding:0 6.5px;
}
.pagenav{
	padding-bottom:70px;
}
@media only screen and (max-width: 1245px) {
  .side-post{
    width:48%;
    box-sizing: border-box;
  }
}
@media only screen and (max-width: 599px) {
	.postlist .pic{
		float: none;
    width: 70%;
    text-align: center;
    margin: 0 auto;
	}
	.postlist .tbox{
		float:none;
		width:auto;
	}
	.postlist .tbox h3{
	  font-size: 17px;
	}
	
}

.single{
	padding-top:25px;
	padding-bottom:40px;
}
.single h3{
	font-size:24px;
	color:#876005;
	border-bottom:#DDDDDD 2px solid ;
	padding-bottom:10px;
}
.single .d{
	text-align:right;
	padding:10px 0 30px 0;
}
.single .txt p{
	padding:0 0 20px 0;
}

.singlenav li{
	width:31.33%;
	margin:0 1%;
	text-align:center;
	max-width:200px;
	box-sizing:border-box;
	
	font-size:18px;
}
.singlenav li a{
	display:block;
	border:1px solid #ddd;
	background:#ddd;
	padding:8px 0;
	color:#fff;
}
.singlenav li.back a{
	background:#fff;
	color:#000;
}
.singlenav {
	padding-bottom:70px;
}
@media only screen and (max-width: 599px) {
	.singlenav li{
		font-size:14px;
	}
	.singlenav li .k{
		display:none;
	}
	.single h3{
	  font-size: 17px;
	}
}

/*treatment*/
.treatment1 .wt{
	padding-top:30px;
	padding-bottom:20px;
}
.treatment1 .pic{
	float:right;
	padding:0 0 20px 0;
	width:32.7%;
}

.treatment1 h4{
	font-size:24px;
	color:#876005;
	line-height:135%;
	font-weight:normal;
	padding:0 0 20px 0;
}
.treatment1 .tbox{
	float:left;
	width:61.05%;
}
.treatment1 .tbox p{
	padding:0 0 20px 0;
	font-size:16px;
}
.treatment1 .tbox ul+p{
	font-size:14px;
}
.treatment1 .tbox ul{
	padding-bottom:15px;
}
.treatment1 .tbox li{
	width:48.16%;
	text-align:center;
	font-size:21px;
	font-weight:bold;
	margin:0 3.68% 20px 0;
	background:#FAEC20;
	padding:10px 0;
	border-radius:10px;
}
.treatment1 .tbox li:nth-child(2n+2){
	margin-right:0;
}

.treatment2 h3{
	color:#876005;
}
.treatment2 .wt{
	padding-top:50px;
}
.treatment2 dt{
	background:url(/import/tenant_2/153.126.167.73/html/images/check.gif) 0 0 no-repeat;
	padding:0 0 5px 52px;
	border-bottom:1px solid #CCCCCC;
	font-size:28px;
	color:#865F05;
	line-height:130%;
	margin-bottom:10px;
}

.treatment2 dd{
	padding:0 0 20px 0;
}
.treatment2 dl{
	padding-bottom:40px;
}

.treatment3{
	padding-top:60px;
}
.treatment3 .list .box1{
	padding-bottom:50px;
}
.treatment3 .list .box1 .pic{
	float:right;
	width:38.94%;
	padding:0 0 20px 0;
}
.treatment3 .list .box1 .tbox{
	float:left;
	width:54.7%;
	background:url(/import/tenant_2/153.126.167.73/html/images/type/icon_01.png) right 0 no-repeat;
}
.treatment3 .list .box1:nth-child(2n+2) .pic{
	float:left;
}
.treatment3 .list .box1:nth-child(2n+2) .tbox{
	float:right;
	background:url(/import/tenant_2/153.126.167.73/html/images/type/icon_02.png) 0 0 no-repeat;
}
.treatment3 .list .box1 h4{
	font-size:28px;
	font-weight:normal;
	border-bottom:1px solid #ccc;
	padding-bottom:10px;
	margin-bottom:10px;
	line-height:120%;
}
.treatment3 .list .box1 p strong{
	color:#855F05;
	font-size:18px;
	font-weight:normal;
}
.treatment3 .list .box1 p{
	padding:0 0 20px 0;
}
.treatment3 .list .box1 ul{
	padding-bottom:20px;
}
.treatment3 .box2 .pic{
    float: right;
    width: 37.52%;
    text-align: center;
}
.treatment3 .box2 .tbox {
    width: 57.17%;
    float: left;
    margin: 16px 0 20px 0;
    border-top: 3px dashed #F4DC5E;
    border-bottom: 3px dashed #F4DC5E;
    padding: 30px 0 10px 0;
}
.treatment3 .box2 .tbox p {
    color: #855F05;
    padding: 0 0 20px 0;
}

@media only screen and (max-width: 1024px) {
	.treatment1 h4{
		font-size:18px;
	}
	.treatment1 .tbox li{
		font-size:16px;
	}
	.treatment2 dt{
		font-size:16px;
		padding-top:8px;
		padding-bottom:15px;
	}
	.treatment3 .list .box1 h4{
		font-size:20px;
	}
	.treatment3 .list .box1 p strong{
		font-size:16px;
	}
}
@media only screen and (max-width: 599px) {
	.treatment1 .pic{
		float:none;
		width:auto;
		text-align:center;
	}
	.treatment1 .tbox{
		float:none;
		width:auto;
	}
	.treatment1 .tbox p{
	  text-align: center;
	}
	.treatment3 .list .box1 .pic{
		float:none !important;
		width:auto;
		text-align:center;
	}
	.treatment3 .list .box1 .tbox{
		float:none !important;
		width:auto;
	}
	.treatment3 .box2 .pic {
    float: none;
    width: auto;
    text-align: center;
	}
	.treatment3 .box2 .tbox {
    width: auto;
    float: none;
	}
	.treatment3{
		padding-bottom:30px;
	}
}
/*shinkyu*/

.shinkyu1 .wt{
	padding-top:25px;
}
.shinkyu1 p{
	padding:0 0 20px 0;
}
.shinkyu1 .box1 .pic{
	float:right;
	width:38.94%;
	padding:0 0 20px 0;
}
.shinkyu1 .box1 .tbox{
	float:left;
	width:54.7%;
}
.shinkyu1 h4{
	font-size:28px;
	background:url(/import/tenant_2/153.126.167.73/html/images/check.gif) 0 0 no-repeat;
	padding:0 0 20px 42px;
	line-height:120%;
	font-weight:normal;
}
.shinkyu1 .box1 .tbox p{
	padding:0 0 20px 0;
}
.shinkyu1 .box2 dl,.shinkyu1 .box2 .txt{
	width:31.76%;
	margin:0 2.36% 30px 0;
}
.shinkyu1 .box2 dl:nth-child(3n+3),.shinkyu1 .box2 .txt:nth-child(3n+3){
	margin-right:0;
}
.shinkyu1 .box2 .txt{
	box-sizing:border-box;
	border:2px solid #F4E599;
	background:#F6F6F6;
	position:relative;
	padding:16px 1em 0 1em;
	border-radius:5px;
}
.shinkyu1 .box2 dt{
	padding:15px 0 0 0;
}
.shinkyu1 .box2 .txt p{
	color:#855F05;
	padding:0 0 20px 0;
	position:relative;
	z-index:1;
}
.shinkyu1 .box2 .txt:before{
	content:url(/import/tenant_2/153.126.167.73/html/images/type/icon_01.png);
	position:absolute;
	bottom:10px;
	right:10px;
}
@media only screen and (max-width: 1024px) {
	.shinkyu1 h4{
		font-size:20px;
		padding-top:5px;
	}
	
}
@media only screen and (max-width: 599px) {
	.shinkyu1 .box1 .tbox{
		float:none;
		width:auto;
	}
	.shinkyu1 .box1 .pic{
		float:none;
		width:auto;
		text-align:center;
	}
	.shinkyu1 .box2 dl, .shinkyu1 .box2 .txt{
		width:48%;
		margin-left:1%;
		margin-right:1% !important;
	}
	.shinkyu1 .box2 .txt{
		padding-left:2.5%;
		padding-right:2.5%;
	}
}

.shinkyu2{
	padding-top:20px;
	position:relative;
}
.shinkyu2 h3{
	font-size:28px;
	font-weight:normal;
	border-bottom:1px solid #CCCCCC;
	padding-bottom:5px;
	margin-bottom:20px;
}
.shinkyu2 h3+p{
	padding:0 0 20px 0;
}
.shinkyu2 dl{
	width:47.05%;
	margin:0 5.9% 20px 0;
}
.shinkyu2 dl:nth-child(2n+2){
	margin-right:0;
}
.shinkyu2 dt{
	font-size:20px;
	padding:0 0 15px 42px;
	background:url(/import/tenant_2/153.126.167.73/html/images/check.gif) 0 0 no-repeat;
	border-bottom:1px solid #ccc;
	margin-bottom:5px;
	color:#865F05;
}
.shinkyu2 dd{
	padding:0 0 20px 0;
}
.shinkyu2:before{
	content:url(/import/tenant_2/153.126.167.73/html/images/type/icon_01.png);
	position:absolute;
	bottom:10px;
	right:3.2%;
}
@media only screen and (max-width: 1024px) {
	.shinkyu2 h3{
		font-size:20px;
	}
	.shinkyu2 dt{
		font-size:16px;
		padding-top:8px;
	}
}
@media only screen and (max-width: 599px) {
	.shinkyu2 dl{
		width:100%;
		margin-right:0;
		position:relative;
		z-index:1;
	}
}
/*frequency*/

.freq1 .wt{
	padding-top:25px;
	padding-bottom:20px;
}
.freq1 h4{
	font-weight:normal;
	font-size:24px;
	color:#876005;
	padding:0 0 20px 0;
}
.freq1 p{
	padding:0 0 20px 0;
}
.freq1 dt{
	font-size:16px;
	padding:0 0 20px 0;
}
.freq1 dd{
	background:url(/import/tenant_2/153.126.167.73/html/images/check.gif) 0 0 no-repeat;
	padding:0 0 20px 42px;
	font-size:21px;
	line-height:140%;
}
@media only screen and (max-width: 1024px) {
	.freq1 h4{
		font-size:20px;
	}
	.freq1 dd{
		font-size:16px;
		padding-top:8px;
	}
}
.freq2 h3{
	color:#865F05;
}

.freq2 .wt{
	padding-top:30px;
}
.freq2 dt{
	background:url(/import/tenant_2/153.126.167.73/html/images/check.gif) 0 0 no-repeat;
	padding: 0 0 5px 52px;
	font-size:28px;
	line-height:130%;
	color:#865F05;
	border-bottom: 1px solid #ccc;
	margin-bottom: 10px;
}

.freq2 .box1 dl{
	padding-bottom:40px;
}
.freq2 .box1{
	padding-bottom:40px;
}
.freq2 h4{
	text-align:center;
	font-size:28px;
	color:#865F05;
	font-weight:normal;
	margin-bottom:20px;
}
.freq2 h4 .w{
	display:inline-block !important;
	padding:0 24px;
	background-image:url(/import/tenant_2/153.126.167.73/html/images/sideleft.gif), url(/import/tenant_2/153.126.167.73/html/images/sideright.gif);
	background-position:0 0, right 0;
	background-repeat:no-repeat;
	line-height:140%;
}
.freq2 h4+p{
	text-align:center;
	max-width:508px;
	margin:0 auto;
	padding:0 0 40px 0;
}
.freq2 .pic{
	float:right;
	width:38.94%;
	padding:0 0 20px 0;
}
.freq2 .box2 dl{
	float:left;
	width:54.7%;
	padding:0 0 20px 0;
}
.freq2 .box2 .box{
	padding-bottom:30px;
}
.freq2 .box2 dd{
	padding-left:1em;
	text-indent:-1em;
}
@media only screen and (max-width: 1024px) {
	.freq2 dt{
		font-size:18px;
		line-height:160%;
		padding-bottom:10px;
		padding-top:5px;
	}
	.freq2 h4 {
		font-size:20px;
	}
}
@media only screen and (max-width: 599px) {
	.freq2 .pic{
		float:none;
		width:auto;
		text-align:center;
	}
	.freq2 .box2 dl{
		width:auto;
		float:none;
	}
	.freq1 dd{
	  background-size: 8%;
    background-position-y: 12%;
    padding: 0 0 20px 40px;
	}
}

/*radical*/

.radical1 .wt{
	padding-top:30px;
	padding-bottom:10px;
}
.radical1 p{
	padding:0 0 20px 0;
}
.radical1 dt{
	font-size:21px;
	padding:0 0 10px 42px;
	background:url(/import/tenant_2/153.126.167.73/html/images/check.gif) 0 0 no-repeat;
}
.radical1  dl{
	padding:0 0 30px 0;
}
.radical1  dd li{
	text-indent:-1em;
	padding-left:1em;
}
@media only screen and (max-width: 1024px) {
	.radical1 dt{
		padding-top:5px;
		font-size:16px;
	}
}

.radical2 .wt{
	padding-top:30px;
}
.radical2 h4{
	font-size:21px;
	padding:0 0 30px 42px;
	background:url(/import/tenant_2/153.126.167.73/html/images/check.gif) 0 0 no-repeat;
	font-weight:normal;
}
.radical2 .box .pic{
	float:left;
	width:29.41%;
	padding-bottom:20px;
}
.radical2 .box .tbox{
	float:right;
	width:67.05%;
	padding-bottom:20px;
}
.radical2 .box .tbox li{
	line-height:120%;
}
.radical2 .wrap:first-child .box .tbox li{
	padding-bottom:15px;
	line-height:160%;
}
.radical2 .wrap:first-child .box .tbox{
	padding-bottom:5px;
}
.radical2 .box .tbox h5{
	font-size:18px;
	font-weight:normal;
	color:#855F05;
	padding:0 0 10px 0;
}
.radical2 .box .tbox p{
	padding:0 0 20px 0;
}
.radical2 .box{
	padding-bottom:20px;
}
.radical2 .wrap+.wrap{
	padding-top:20px;
}
.radical2 h3{
	color:#876005;
}
@media only screen and (max-width: 1024px) {
	.radical2 h4{
		font-size:18px;
		padding-top:5px;
	}
	.radical2 .box .tbox h5{
		font-size:16px;
	}
}
@media only screen and (max-width: 599px) {
	.radical2 .box .pic{
		float:none;
		width:auto;
		text-align:center;
	}
	.radical2 .box .tbox{
		width:auto;
		float:none;
	}
}
/*energy*/
.energy1 .tbox p{
	font-size:20px;
}
.energy1 .tbox li{
	font-size:16px;
	padding-left:1.5%;
	padding-right:1.5%;
	box-sizing:border-box;
	line-height:130%;
}
.energy1 .tbox li.s{
	padding-top:20px;
	padding-bottom:20px;
}
@media only screen and (max-width: 1024px) {
	.energy1 .tbox li{
		width:100%;
		margin-right:0;
	}
	
}

.energy .freq2 h4{
	margin-bottom:50px;
	margin-top:20px;
}
.energy .freq2 .box2:first-child dt{
	background:none;
	padding-left:0;
}
.energy .freq2 dd{
	text-indent:0;
	padding-left:0;
	padding-bottom:20px;
}
.energy .freq2 dd li{
	text-indent:-1em;
	padding-left:1em;
}

/*self*/

.self1 .wt{
	padding-top:30px;
	padding-bottom:10px;
}
.self1 h4{
	font-size:24px;
	font-weight:normal;
	color:#876005;
	padding:0 0 20px 0;
}
.self1 p{
	padding:0 0 20px 0;
}
.self1 li{
	font-size:18px;
	padding:0 0 5px 1.5em;
	text-indent:-1.5em;
}
.self1 ul{
	padding-bottom:20px;
}
@media only screen and (max-width: 1024px) {
	.self1 h4{
		font-size:20px;
	}
	.self1 li{
		font-size:16px;
	}
}

.self2 .wt{
	padding-top:40px;
}

.self2 h4{
    text-align: center;
    font-size: 28px;
    color: #865F05;
    font-weight: normal;
	background:none;
	padding-left:0;
	margin-top:30px;
}
.self2 h4 .w {
    display: inline-block !important;
    padding: 0 24px;
    background-image: url(/import/tenant_2/153.126.167.73/html/images/sideleft.gif), url(/import/tenant_2/153.126.167.73/html/images/sideright.gif);
    background-position: 0 0, right 0;
    background-repeat: no-repeat;
    line-height: 140%;
}
.self2 .box2 .txt{
	width:;
	margin-right:0;
	width:65.76%;
	overflow:hidden;
}
.self2 .box2 .txt div{
	background:url(/import/tenant_2/153.126.167.73/html/images/care/check.gif) 0 0 no-repeat;
	padding-left:42px;
}
.self2 h3{
	color:#876005;
}
@media only screen and (max-width: 1024px) {
	.self2 h4{
		font-size:20px;
	}
}
@media only screen and (max-width: 599px) {
	.self2 .box2 .txt{
		width:100%;
	}
	.shinkyu1 .box2 .txt::before{
		bottom:auto;
		top:10px;
	}
}

/*bad*/

.bad .freq2 .box2 dd{
	text-indent:0;
	padding-left:0;
	padding-bottom:20px;
}
.bad1 .wt{
	padding-top:30px;
	padding-bottom:20px;
	
}
.bad1 .wt h4{
	font-size:24px;
	font-weight:normal;
	color:#876005;
	padding-bottom:10px;
}
.bad1 .wt h4+p{
	font-size:16px;
}

.bad1 .wt p{
	padding:0 0 20px 0;
}

.bad1 .wt li{
	font-size:21px;
	width:31.52%;
	margin:0 2.72% 20px 0;
	text-align:center;
	background:#FAEC20;
	padding:18px 2.5%;
	box-sizing:border-box;
	border-radius:10px;
}
.bad1 .wt li:nth-child(3n+3){
	margin-right:0;
}
.bad1 .wt ul{
	padding-bottom:15px;
	padding-top:10px;
}
@media only screen and (max-width: 1024px) {
	.bad1 .wt li{
		font-size:16px;
	}
	.bad1 .wt h4{
		font-size:20px;
	}
}
@media only screen and (max-width: 599px) {
	.bad1 .wt li{
		width:100%;
		margin-right:0;
	}
}

.bad2{
	padding-top: 25px;
	padding-bottom:20px;
}
.bad2 h3{
    font-size: 28px;
    color: #865F05;
    font-weight: normal;
    border-bottom: 1px solid #CCCCCC;
    margin-bottom: 30px;
    padding-bottom: 10px;
}
.bad2 .pic{
	float:right;
	padding:0 0 20px 0;
	width:38.82%;
}
.bad2 .tbox{
	float:left;
	width:54.7%;
}
.bad2 .tbox h4{
	font-size:20px;
	font-weight:normal;
	padding:0 0 20px 0;
}
.bad2 .tbox p{
	padding:0 0 20px 0;
}
@media only screen and (max-width: 1024px) {
	.bad2 h3{
		font-size:20px;
	}
	.bad2 .tbox h4{
		font-size:18px;
	}
	
}
@media only screen and (max-width: 599px) {
	.bad2 .pic{
		float:none;
		width:auto;
		text-align:center;
	}
	.bad2 .tbox{
		width:auto;
		float:none;
	}
}
/*-------------スライダーカット-----------------*/
.home1 .w12 .uk-slidenav-position {
    text-align: center;
    position: relative;
    overflow: hidden;
    min-width: 500px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

.home1 .w12 .uk-slidenav-position:after {
    padding-top: 40%;/*高さ調整*/
    content: '';
    display: block;
}

.home1 .w12 .uk-slideshow {
    position: absolute;
    top: 0;
}
@media only screen and (max-width: 1024px) {
  .home1 .w12 .uk-slidenav-position{
    min-width: auto;
  }
}
/*-------------ブログ署名-----------------*/
.single .txt dl {
    font-size: 14px;
    line-height: 24px;
    padding:20px 20px 0;
    margin-top:40px;
    border-top:2px dashed #ddd;
    width: 100%;
    box-sizing: border-box;
}
.single .txt dl p {
    font-weight:bold;
    text-align:center;
    margin-bottom:15px;
}
.single .txt dl dt {
    float:left;
    width: 25%;
    word-break: break-all;
    clear: left;
    margin-bottom: 10px;
}
.single .txt dl dd {
    padding: 0 ;
    word-break: break-all;
    width: 75%;
    display: block;
    max-width: 100%;
    box-sizing: border-box;
    float: left;
    margin-bottom: 10px;
    
}
/*-----------レコメンド----------*/
.recom .wt{
  width: 30%;
    box-sizing: border-box;
    margin-right: 3%;
}
.recom .wt:nth-of-type(3){
  margin-right: 0;
}
.recom .pic{
 width: 100%;
    margin: 0 auto;
    padding-top: 10%;
}
.recom .tbox{
  padding-top: 5%;
}
.recom h3{
  font-size: 18px;
    border-bottom: #DDDDDD 2px solid;
    padding-bottom: 10px;
    width: 100%;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
display: inline-block;
}
.recom h3 span{
  color: #876005;
}
.recom .more{
  text-align: right;
    padding-top: 5%;
    padding-bottom: 10%;
} 
.recom .tbox .more a:before{
  content: "▶";
    display: inline-block !important;
    font-size: 8px;
    color: #865F04;
    margin-right: 1em;
    vertical-align: middle;
}
.recom .tbox .more a{
  text-decoration: underline;
}
.subtit.reco-title{
  padding: 45px 2.5% 45px 2.5%;
  margin-bottom: 70px;
    margin-top: 10%;
}
@media only screen and (max-width: 599px) {
  .recom .wt{
    width:47%;
    margin-bottom: 30px;
  }
  .recom .wt:nth-of-type(3),.recom .wt:nth-of-type(2){
  margin-right: 0;
}
.recom h3{
  font-size: 16px;
}
.subtit.reco-title{
  padding: 25px 2.5%;
}
.subtit.reco-title h2{
      font-size: 22px;
}
} 
/*--------------セルフケアオススメ本-----------------*/
.boook .bkbk .wt{
  width: 48%;
    box-sizing: border-box;
    margin-right: 4%;
}
.boook .bkbk .wt:nth-of-type(2){
  margin-right: 0;
}
.boook .bkbk .pic{
  width: 65%;
    padding: 0 0 20px 0;
    margin: 0 auto;
    float: none;
}
.boook .bkbk .tbox{
  float: none;
    width: 100%;
}
.boook .bkbk p a{
  display: block;
    text-align: right;
    text-decoration: underline;
}
.boook .bkbk .tbox h4{
  font-size: 19px;
}
@media only screen and (max-width: 599px) {
  .boook .bkbk .wt{
    width: 100%;
    margin-right: 0;
    margin-bottom: 40px;
  }
  .boook .bkbk .pic{
    width:60%;
  }
}
