@charset "utf-8";
/* CSS Document */

/*! sanitize.css | CC0 Public Domain | github.com/jonathantneal/sanitize.css */
pre,textarea{overflow:auto}
[hidden],audio:not([controls]),template{display:none}
details,main,summary{display:block}
input[type=number]{width:auto}
input[type=search]{-webkit-appearance:textfield}
input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}
progress{display:inline-block}
small{font-size:75%}
textarea{resize:vertical}
[unselectable]{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}
*,::after,::before{box-sizing:inherit;border-style:solid;border-width:0}
*{font-size:inherit;line-height:inherit;margin:0;padding:0}
::after,::before{text-decoration:inherit;vertical-align:inherit}
:root{-ms-overflow-style:-ms-autohiding-scrollbar;overflow-y:scroll;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;text-size-adjust:100%;box-sizing:border-box;cursor:default;font:16px/1.5 sans-serif;text-rendering:optimizeLegibility}
a{text-decoration:none}
audio,canvas,iframe,img,svg,video{vertical-align:middle}
button,input,select,textarea{background-color:transparent;color:inherit;font-family:inherit;font-style:inherit;font-weight:inherit;min-height:1.5em}
code,kbd,pre,samp{font-family:monospace,monospace}
nav ol,nav ul{list-style:none}
select{-moz-appearance:none;-webkit-appearance:none}
select::-ms-expand{display:none}
select::-ms-value{color:currentColor}
table{border-collapse:collapse;border-spacing:0}
::-moz-selection{background-color:#dedede;text-shadow:none}
::selection{background-color:#dedede;text-shadow:none}
@media screen{[hidden~=screen]{display:inherit}
[hidden~=screen]:not(:active):not(:focus):not(:target){clip:rect(0 0 0 0)!important;position:absolute!important}
}
/*# sourceMappingURL=sanitize.css.map */

ul,li{
	margin:0;
	padding: 0;
	list-style: none;
}

dl,dt,dd{
	margin:0;
	padding: 0;
}

h1,h2,h3,h4,h5{
	margin:0;
	padding: 0;
	font-size: 100%;
}

td, th {
	font-weight:normal;
}

/*--------------------------------------------------------------
## アニメーション
--------------------------------------------------------------*/
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

.animated.hinge {
  animation-duration: 2s;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  animation-duration: .75s;
}


@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  animation-name: fadeIn;
}



/*--------------------------------------------------------------
## 共通
--------------------------------------------------------------*/
body{
	color: #3f3f3f;
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
	letter-spacing: 0.5px;
	font-size: 0.95rem;
	line-height: 1.65;
	text-align: left;
	background: #f4f4f4;
}

img{
	max-width:100%;
	height:auto;
}


/*link*/

a{
	text-decoration:none;
	color: #16a292;
    transition: all .15s ease;
	-webkit-tap-highlight-color: gba(67, 141, 198, 0.1);
}

a:hover {
	color: #3f3f3f;
}

a:hover .hover_img{
	opacity: 0.8;
}

/* スマホのみ */
@media screen and (max-width: 767px){

.sp_none{
	-webkit-tap-highlight-color: gba(67, 141, 198, 0.1);
}

}

/*clearfix*/

.clearfix {
	min-height: 1px;
}

.clearfix:after {
	clear: both;
	content: ".";
	display: block;
	height: 0;
	visibility: hidden;
	overflow: hidden;
	font-size: 0.1em;
	line-height: 0;
}

* html .clearfix {
	height: 1px;
}

.clear{
	clear:both;
}


/*iframe*/

.iframe_wrapper{
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
	margin-bottom: 20px;
}
.iframe_wrapper iframe,
.iframe_wrapper object,
.iframe_wrapper embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/*text-deco*/

b{
	background: -moz-linear-gradient(transparent 90%, #F1D0A7 0%);
    background: -webkit-linear-gradient(transparent 90%, #F1D0A7 0%);
    background: -ms-linear-gradient(transparent 90%, #F1D0A7 0%);
    background: -o-linear-gradient(transparent 90%, #F1D0A7 0%);
    background: linear-gradient(transparent 90%, #F1D0A7 0%);
}

/*Webfont*/

h1,
h2,
h3{
	/* font-family: fot-tsukuardgothic-std, sans-serif;*/
	font-family: 'Kosugi Maru', sans-serif;
	font-weight: 700;
}


/* スマホのみ */
@media screen and (max-width: 767px){

.sp_none{
	display:none!important;
}

}

/* タブレットのみ */
@media screen and (min-width : 768px) and (max-width: 1023px) {
.tab_none{
	display:none!important;
}
}

/* PC（小画面）とPC（大画面） */
@media print, screen and (min-width : 1024px){

.pc_none{
	display:none!important;
}

/* PC（大画面）のみ */
@media screen and (min-width: 1920px) {
	.only_widepc{
		display: none;
	}
}


/*flex-box*/

.flex_between{
	-js-display: flex;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.flex_around{
	-js-display: flex;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}
}

/*--------------------------------------------------------------
## トップページ:ヘッダー
--------------------------------------------------------------*/

/* スマホとタブレット */
@media screen and (max-width: 1023px){
#sp_header .sp_head_fix{
	width: 100%;
	height: 65px;
	z-index: 9999;
}

#sp_header .sp_head_fix .reservation,#sp_header .sp_head_fix .map{
	position: absolute;
    top: 10px;
    display: block;
    width: 45px;
    height: 45px;
}
	
#sp_header .sp_head_fix .reservation{
    right: 100px;
}
		
#sp_header .sp_head_fix .map{
    right: 56px;
}
	
#sp_header .nav_box_sp{
	padding: 40px 0;
	background: #16a292;
}

#sp_header .pure-drawer	.logo_mark{
	margin-left:15px;
}

#sp_header .nav{
	margin-top:30px;
	width: 90%;
	margin: 20px auto;
	border-radius: 5px;
	padding: 10px;
	background: #fff;
}

#sp_header .nav li{
	border-bottom: 1px solid #e5e5e5;
	line-height: 50px;
    font-size: 15px;	
}

#sp_header .nav li:last-child{
	border-bottom: none;
}

#sp_header .nav li a{
	padding-left: 28px;
	display: block;
	color: #3f3f3f;
	background: url(../img/icon_arw_hover.svg) no-repeat 10px center;
	background-size: 10px 10px;
}

#sp_header .nav_reserve{
	padding: 0 20px;
	text-align: center;
}

#sp_header .nav_reserve .link_btn{
	/* font-family: fot-tsukuardgothic-std, sans-serif; */
	font-family: 'Kosugi Maru', sans-serif;
	font-weight: 700;
	display: block;
	background: #357a68;
	color: #fff;
	font-size: 20px;
	width: 100%;
	height: 50px;
	border-radius: 5px;
	text-align: center;
	margin-bottom: 10px;
}

#sp_header .nav_reserve .link_btn span{
	background-size:contain;
	padding-left: 35px;
	line-height: 50px;
	letter-spacing: 2px;
}

#sp_header .nav_reserve .link_btn span.icon_reservation{
	background: url("../img/icon_reservation_header-internet.svg") no-repeat left center;
}

#sp_header .nav_reserve .link_btn span.icon_tel{
	background: url("../img/icon_reservation_header-tel.svg") no-repeat left center;
}

#sp_header .nav_reserve .link_cancel{
	font-size: 13px;
	/* font-family: fot-tsukuardgothic-std, sans-serif; */
	font-family: 'Kosugi Maru', sans-serif;
	background: url("../img/icon_cancel.svg") no-repeat left center;
	background-size: 15px 15px;
	padding-left: 17px;
	padding-bottom: 2px;
	color: #fff;
}
}

.nav_bnrarea_inner{
	display: flex;
	flex-wrap: wrap;
	justify-content:space-between;
	margin: 0 20px;
}

.nav_bnr{
	width: calc((100% - 10px) / 2);
	height: auto;
	margin-top: 10px;
}

/* PC（小画面）とPC（大画面） */
@media print, screen and (min-width : 1024px){
#pc_header{
	width: 100%;
	min-height: 115px;
	display: flex;
	justify-content: space-between;
	padding: 0 30px;
	align-items: center;
	font-family: 'Kosugi Maru', sans-serif;
}
	
#pc_header .logo{
	width: 250px;
}

#pc_header .header_right{
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
	width: calc(100% - 250px);
	padding: 30px 0 15px 0;
}
	
#pc_header .adress_tel{
	text-align: right;
}
	
#pc_header .adress_tel .adress{
	font-size: 14px;
	letter-spacing: 0;
}

#pc_header .adress_tel .tel{
	/* font-family: fot-tsukuardgothic-std, sans-serif;*/
	font-family: 'Kosugi Maru', sans-serif;
	font-weight: 700;
	background: url("../img/icon_tel_header.svg") no-repeat left center;
	background-size: 25px 25px;
	font-size: 25px;
	line-height: 33px;
	display: inline-block;
	padding-left: 35px;
}
	
#pc_header .adress_reserve{
	height: 50px;
	text-align: center;
	margin-left: 10px;
}

#pc_header .link_cancel{
	font-size: 13px;
    /* font-family: fot-tsukuardgothic-std, sans-serif; */
		font-family: 'Kosugi Maru', sans-serif;
    background: url("../img/icon_cancel.svg") no-repeat left center;
    background-size: 15px 15px;
    padding-left: 17px;
    padding-bottom: 2px;
}

#pc_header .link_cancel:hover{
	color: 	#16a292;
	background: url("../img/icon_cancel_hover.svg") no-repeat left center;
    background-size: 15px 15px;
}

#pc_header .header_right .link_btn{
	/* font-family: fot-tsukuardgothic-std, sans-serif; */
	font-family: 'Kosugi Maru', sans-serif;
	font-weight: 700;
	display: block;
	background: #16a292;
	color: #fff;
	font-size: 20px;
	width: 220px;
	height: 50px;
	border-radius: 5px;
	text-align: center;
}
	
#pc_header .header_right .link_btn:hover{
	background: #357a68;
}

#pc_header .header_right .link_btn span{
	background: url("../img/icon_reservation_header-internet.svg") no-repeat left center;
	background-size:contain;
	padding-left: 35px;
	line-height: 50px;
	letter-spacing: 2px;
}
}

/* PC（大画面）のみ */
@media print, screen and (min-width : 1920px){

#pc_header .logo{
	width: 320px;
}

#pc_header .header_right{
	width: calc(100% - 320px);
}

#pc_header .adress_tel{
	order: 1;
}
		
#pc_header .adress_reserve{
	order: 1;
}
}

/*IE調整*/
@media all and (-ms-high-contrast:none) and (min-width : 1024px){
#pc_header .adress_tel {
    padding-top: 8px;
}

#pc_header .adress_reserve {
    padding-top: 8px;
}
	
#pc_header .adress_tel .tel {
    background: url("../img/icon_tel_color.svg") no-repeat left 4px;
	background-size: 25px 25px;
    padding-top: 5px;
}
	
#pc_header .header_right .link_btn span {
    line-height: 58px;
    padding-top: 10px;
}
}

/*--------------------------------------------------------------
## ロゴエリア
--------------------------------------------------------------*/

.header_logoarea{
	padding-top: 12px;
	padding-left: 10px;
}

.foot_logoarea{
	display: inline-block;
	text-align: left;
	margin-bottom: 20px;
}

.header_logoarea:hover,
.foot_logoarea:hover{
	opacity: 0.8;
}

.header_logotxtArea,
.foot_logotxtArea{
	background: url(../img/logo_mark.svg) left no-repeat;
	background-size: contain;
	padding-left: 50px;
}

.foot_logotxtArea{
	padding-left: 80px;
}

.pure-drawer .header_logotxtArea{
	background: url(../img/logo_mark_white.svg) left no-repeat;
	background-size: contain;
	padding-left: 50px;
}

.header_logotxt,
.foot_logotxt{
	font-size: 16px;
	color: #161559;
	letter-spacing: 1px;
	font-weight: bold;
}

.foot_logotxt{
	font-size: 28px;
}

.pure-drawer .header_logotxt{
	color: #ffffff;
}

.header_logotxtsmall,
.foot_logotxtsmall{
	font-size: 12px;
	padding: 0 3px;
}

.foot_logotxtsmall{
	font-size: 20px;
}

.header_logosubtxt,
.foot_logosubtxt{
	font-size: 9px;
	color: #161559;
	letter-spacing: 1px;
}

.foot_logosubtxt{
	font-size: 12px;
}

.pure-drawer .header_logosubtxt{
	color: #ffffff;
}

.header_logoimg{
	margin: 10px 0 0 10px;
}

.foot_logoimg{
	width: 300px;
	height: auto;
}

/* ## ロゴエリア スマホのみ */
@media screen and (max-width: 767px){

	.foot_logoarea{
		margin-bottom: 20px;
	}

	.foot_logotxtArea{
		padding-left: 60px;
	}

	.foot_logotxt{
		font-size: 20px;
	}
	
	.foot_logotxtsmall{
		font-size: 14px;
	}
	
	.foot_logosubtxt{
		font-size: 12px;
	}

	.foot_logoimg{
		width: 250px;
		height: auto;
	}

}

/* ## ロゴエリア PC（小画面）とPC（大画面） */
@media print, screen and (min-width : 1024px){

	.header_logoarea{
		padding-top: 0;
		padding-left: 0;
	}	

	.header_logotxtArea{
		padding-left: 60px;
	}
	
	.header_logotxt{
		font-size: 20px;
	}
	
	.header_logotxtsmall{
		font-size: 14px;
	}
	
	.header_logosubtxt{
		font-size: 12px;
	}
}

/* ## ロゴエリア PC（大画面）のみ */
@media print, screen and (min-width : 1920px){

	.header_logotxtArea{
		padding-left: 80px;
	}
	
	.header_logotxt{
		font-size: 28px;
	}
	
	.header_logotxtsmall{
		font-size: 20px;
	}
	
	.header_logosubtxt{
		font-size: 12px;
	}
}

/*--------------------------------------------------------------
## PC-NAV
--------------------------------------------------------------*/
#pc_nav{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	padding-bottom: 15px;
	margin-top: 10px;
	margin-left: 30px;
}

#pc_nav ul{
	display: flex;
	flex-wrap: wrap;
	padding-left: 10px;
}

#pc_nav ul li{
	margin-right: 15px;
}

#pc_nav ul li:last-child{
	margin-right: 0;
}

#pc_nav ul li a{
	font-weight: bold;
    width: 100%;
    display: block;
    font-size: 14px;
    color: #3f3f3f;
    position: relative;
    letter-spacing: 2px;
		text-align: center;
}

#pc_nav ul li a:after{
	content: '';
    position: absolute;
    width: 40px;
    height: 4px;
    bottom: -10px;
    left: 50%;
    border-radius: 2px;
		margin-left: -20px;
    background: #F1D0A7;
	-webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
}

#pc_nav ul li a:hover:after{
    width: 60px;
    left: 50%;
    margin-left: -30px;
    background: #F1D0A7;
}

/* PC（大画面）のみ */
@media print, screen and (min-width : 1920px){
	#pc_nav{
		order: -1;
		max-width: calc(100% - 520px);
		padding-bottom: 40px;
		margin-right: 10px;
	}

	#pc_nav ul li{
		margin-right: 20px;
	}

	#pc_nav ul li:last-child{
		margin-right: 25px;
	}

	#pc_nav ul li a{
		font-weight: bold;
			font-size: 17px;
	}
}

/*--------------------------------------------------------------
## TOPメインビジュアル
--------------------------------------------------------------*/
.slide_box {
	position   : relative;
	max-width  : 100%;
	height     : 100%;
	margin     : auto;
	overflow   : hidden;
}

.slide_box .mv_img {
	position   : absolute;
	top        : 0;
	left       : 0;
	bottom     : 0;
	right      : 0;
	opacity    : 0;
	animation  : bgAnime 20s infinite; 
}

.slide_box .src2 {
	animation-delay: 5s;
}
.slide_box .src3 {
	animation-delay: 10s;
}
.slide_box .src4 {
	animation-delay: 15s;
}

@keyframes bgAnime {
	0% { opacity: 0; }
	10% { opacity: 1; }
	25% { opacity: 1; }
	35% { opacity: 0; }
	100% { opacity: 0; }
}

.slide_box .mv_copy{
	position: absolute;
	display: inline-block;
}

.slide_box .mv_copy h2 span{
	background: #fff;
  display: inline-block;
  color: #3f3f3f;
}

.mv_extra{
	position: absolute;
	z-index:100;
	display: flex;
	align-items: flex-end;
}

.mv_extra-box{
	background: #16a292;
	color: #fff;
	border-radius: 50%;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
}

.mv_extra-box:last-child{
	margin-right: 0;
}

.mv_extra-img{
	width: 35px;
	height: auto;
	margin-bottom: 10px;
}

.mv_extra-title{
	font-size: 13px;
	line-height: 140%;
}

/* スマホのみ */
@media screen and (max-width: 767px){
#top_mv{
	width:100%;
	padding: 0 12px 25px 12px;
	height: 500px;
}

.slide_box {
	border-radius: 8px;
}

.slide_box .src1 {
	background: url("../img/top_mv_sp_01.jpg") no-repeat center center;
	background-size: cover;
}
.slide_box .src2 {
	background: url("../img/top_mv_sp_02.jpg") no-repeat center center;
	background-size: cover;
}
.slide_box .src3 {
	background: url("../img/top_mv_sp_03.jpg") no-repeat center center;
	background-size: cover;
}
.slide_box .src4 {
	background: url("../img/top_mv_sp_04.jpg") no-repeat center center;
	background-size: cover;
}
	
.slide_box .mv_copy{
	left: 15px;
	bottom: 20px;
	font-size: 16px;
	letter-spacing: 0;
	margin-right: 15px;
}
	
.slide_box .mv_copy h2 span{
    margin-bottom: 4px;
    padding: 3px 8px 5px 8px;
    border-radius: 3px;
}

.mv_extra{
	right:15px;
	top: 20px;
}

.mv_extra-box{
	width: 80px;
	height: 80px;
	padding: 10px 5px;
}

.mv_extra-img{
	width: 20px;
	height: auto;
	margin-bottom: 5px;
}

.mv_extra-title{
	font-size: 9px;
	line-height: 130%;
}

}

/* タブレットのみ */
@media screen and (min-width : 768px) and (max-width: 1023px) {
#top_mv{
	width:100%;
	padding: 0 15px 30px 15px;
	height: 450px;
	max-height: calc(100vh - 65px);
}

.mv_extra-box{
	width: 120px;
	height: 120px;
	padding: 10px;
}

.mv_extra-img{
	width: 30px;
	height: auto;
	margin-bottom: 8px;
}
}

/* タブレットとPC（小画面）*/
@media print, screen and (min-width:768px){
.slide_box {
	border-radius: 10px;
}

.slide_box .src1 {
	background: url("../img/top_mv_pc_01.jpg") no-repeat center center;
	background-size: cover;
}
.slide_box .src2 {
	background: url("../img/top_mv_pc_02.jpg") no-repeat center center;
	background-size: cover;
}
.slide_box .src3 {
	background: url("../img/top_mv_pc_03.jpg") no-repeat center center;
	background-size: cover;
}
.slide_box .src4 {
	background: url("../img/top_mv_pc_04.jpg") no-repeat center center;
	background-size: cover;
}
	
.slide_box .mv_copy{
	left: 3vw;
  top: 3vw;
	font-size: 18px;
	/*-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;*/	
}
	
.slide_box .mv_copy h2 span{
    /*margin-left: 10px;*/
    margin-bottom: 10px; 
    padding: 5px 15px;
    border-radius: 5px;
}	

.mv_extra{
	right:30px;
	bottom: 30px;
}
}


/* PC（小画面）とPC（大画面） */
@media print, screen and (min-width : 1024px){
#top_mv{
	width:100%;
	padding: 0 30px;
	height: 350px;
	margin-bottom: 30px;
}

.mv_extra-box{
	width: 150px;
	height: 150px;
	padding: 10px;
}
}

/* PC（大画面）のみ */
@media print, screen and (min-width : 1920px){
#top_mv{
	height: calc(100vh - 600px);
}

.slide_box .mv_copy{
	left: 60px;
  top: 60px;
	font-size: 22px;
}

.mv_extra{
	right:60px;
}
}

/*IE調整*/
@media all and (-ms-high-contrast:none) and (min-width : 1024px){
.slide_box .mv_copy h2 span {
    padding: 15px 11px 15px 1px;
}
}

/*--------------------------------------------------------------
## TOP_重要なお知らせ
--------------------------------------------------------------*/

#top_notices{
	padding: 0 30px 30px 30px;
}

.top_notices_inner{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

#top_notices h2{
	font-size: 24px;
}

.top_notices_listitem{
	background-color: #fff;
	border-radius: 5px;
	margin-top: 10px;
	padding: 17px 30px 15px 30px;
}

.top_notices_listitem:first-child{
	margin-top: 0;
}

.top_notices_heading{
	width: 175px;
	margin-right: 20px;
}

.top_notices_list{
	width: calc(100% - 195px);
}

.top_notices_listtxt{
	font-size: 16px;
}

.top_notices_day{
	font-size: 13px;
	color: #16a292;
	padding-right: 10px;
}

.top_notices_title{
	font-weight: bold;
	padding-right: 10px;
}

/* スマホのみ */
@media screen and (max-width: 767px){

	#top_notices{
		padding: 0 12px 30px 12px;
	}

	#top_notices h2{
		font-size: 20px;
	}

	.top_notices_heading{
		width: 100%;
		margin-right: 0;
		margin-bottom: 10px;
	}
	
	.top_notices_list{
		width: 100%;
	}

	.top_notices_title{
		font-size: 15px;
	}

	.top_notices_txt{
		font-size: 13px;
	}
}

/*--------------------------------------------------------------
## TOP_お知らせ・診療スケジュール
--------------------------------------------------------------*/
.top_news-schedule{
	display: flex;
	flex-wrap: wrap;
}

#top_news{
	background: #16a292;
}

#top_schedule{
	background: #357a68;
}

#top_news,#top_schedule{
	display: flex;
	align-items: center;
}

.top_news-schedule .inbox{
	width: 92%;
	max-width: 430px;
	margin: 0 auto;
}

.top_news-schedule h2{
	margin-bottom: 15px;
	letter-spacing: 2px;
	position: relative;
	color: #fff;
}

.top_news-schedule h2::first-letter{
	color: #F1D0A7;
}

.bnr-area{
	margin-bottom: 40px;
}

/*IE調整*/
@media all and (-ms-high-contrast:none){
.top_news-schedule h2 {
    padding-top: 12px;
    margin-bottom: 3px;
}
}

/* スマホのみ */
@media screen and (max-width: 767px){
.top_news-schedule h2{
	font-size: 20px;
}

}

/* スマホとタブレット */
@media screen and (max-width: 1023px){
#top_news,#top_schedule{
	padding: 35px 0 40px 0;
}
}

/* タブレットとPC（小画面）*/
@media print, screen and (min-width:768px){
.top_news-schedule h2{
	font-size: 24px;
}	
}

/* PC（小画面）とPC（大画面） */
@media print, screen and (min-width : 1024px){
#top_news,#top_schedule{
	padding: 70px 0;
}
}

/*--------------------------------------------------------------
## TOP_お知らせ
--------------------------------------------------------------*/
#top_news ul li a{
	background: #357a68;
    border-radius: 3px;
    margin-bottom: 5px;
    padding: 12px 20px;
    display: block;
    color: #fff;
}

#top_news ul li a:hover{
	background: #3f3f3f;
}

#top_news ul li .day{
	font-size: 13px;
    margin-right: 10px;
    letter-spacing: 0;
    color: #dedede;
}

#top_news ul li .title{
	font-size: 15px;
}

/* スマホのみ */
@media screen and (max-width: 767px){
#top_news ul li a {
    padding: 10px 15px;
}
	
#top_news ul li .day {
	display: block;
}
	
#top_news ul li .title{
	font-size: 14px;
}	
}

/* スマホとタブレット */
@media screen and (max-width: 1023px){
#top_news{
	width: 100%;
}
}

/* PC（小画面）とPC（大画面） */
@media print, screen and (min-width : 1024px){
#top_news{
	width: 50%;
}
}


/*--------------------------------------------------------------
## TOP_診療スケジュール （フッターと共通）
--------------------------------------------------------------*/
#top_schedule{
	color: #fff;
}

#top_schedule .schedule_box {
	background: #16a292;
}

.schedule_box table{
	border-collapse: collapse;
	width: 100%;
	font-size: 14px;
	text-align: center;
	margin-bottom: 10px;
	color: #fff;
}

.schedule_box table tr td{
	padding: 12px 8px;
    font-size: 18px;
}

#top_schedule .schedule_box table tr th {
	border-bottom: 4px solid #357a68;
}

.schedule_box table th{
	padding:8px 10px;
	font-size: 14px;
}

.schedule_box table .time{
	font-size: 13px;
}

#top_schedule .note,#foot_clinic-info .left_box .note{
	font-size: 14px;
	margin-top: 5px;
}

#top_schedule .note .color-box,#foot_clinic-info .left_box .note .color-box{
	background: #16a292;
	display: inline-block;
	width: 60px;
	height: 24px;
	border-radius: 12px;
	text-align: center;
	letter-spacing: 4px;
	line-height: 26px;
	margin-right: 10px;
}

/* スマホのみ */
@media screen and (max-width: 767px){
.schedule_box table th,.schedule_box table tr td {
    padding: 4px;
}

.schedule_box table th {
    font-size: 12px;
}

.schedule_box table tr td {
    font-size: 14px;
}
	
.schedule_box table .time {
    font-size: 12px;
}	
	
#top_schedule .note, #foot_clinic-info .left_box .note {
    font-size: 13px;
}	
}

/* スマホとタブレット */
@media screen and (max-width: 1023px){
#top_schedule{
	width: 100%;
}
}

/* PC（小画面）とPC（大画面） */
@media print, screen and (min-width : 1024px){
#top_schedule{
	width: 50%;
}
}


/*--------------------------------------------------------------
## TOP_情報エリア
--------------------------------------------------------------*/
#top_info{
	width: 100%;
	max-width: 980px;
	margin: 0 auto;
}

#top_info h2{
	color: #16a292;
	letter-spacing: 0;
	text-align: center;
}

/*IE調整*/
@media all and (-ms-high-contrast:none){
#top_info h2 .txt_l b{
	background: none;
}
}

#top_info h2 .txt_l{
	letter-spacing: 2px;
}

#top_info .inbox{
	width: 100%;
	display: flex;
	justify-content: space-between;
}

#top_info .inbox img{
	width: 100%;
	max-width: 450px;
	height: 100%;
	margin-right: 30px;
}

#top_info .inbox .txt_box{
	flex: 1;
}

#top_info .inbox p{
	text-align: justify;
}

#top_info .info-box{
	width: 100%;
	background: #16a292;
	position: relative;
}

#top_info .info-box img{
	border-radius: 50%;
	border: 4px solid #16a292;
	position: absolute;
}

#top_info .info-box p{
	color: #fff;
	/* letter-spacing: 0; */
	letter-spacing: 3px;
}

#top_info .info-box p .txt_l{
	/* font-family: fot-tsukuardgothic-std, sans-serif; */
	font-family: 'Kosugi Maru', sans-serif;
	font-weight: 700;
}


/* スマホのみ */
@media screen and (max-width: 767px){
#top_info{
	padding-top: 35px;
}
	
#top_info h2{
	font-size:18px;
	margin-bottom: 25px;
}
	
#top_info .inbox{
	width: 92%;
	margin: 0 auto;
}

#top_info .info-box {
	padding: 15px; 
	margin: 35px auto 0; 
	text-align: justify;
  border-radius: 10px;
  width: 92%;
}
	
#top_info .info-box p{
	line-height: 25px;
	font-size: 14px;
}

#top_info .info-box p .txt_l{
	font-size: 19px;
}
	
#top_info .info-box img {
    width: 110px;
    height: 110px;
    left: 50%;
    margin-left: -55px;
    top: -50px;
}	
}


/* スマホとタブレット */
@media screen and (max-width: 1023px){
#top_info .inbox{
	flex-wrap: wrap;
	max-width: 460px;
    margin: 0 auto;
}
	
#top_info .inbox img{
	max-width: 430px;
	display: block;
	margin: 0 auto 25px auto;
}

#top_info .inbox p{
	margin-bottom: 10px;
	font-size: 15px;
	line-height: 25px;
	padding: 0 5px;
}
}

/* タブレットのみ */
@media screen and (min-width : 768px) and (max-width: 1023px) {
#top_info{
	width: 92%;
}
	
#top_info .info-box {
    padding: 20px 65px 25px 25px;
    margin-top: 20px;
}
	
#top_info .info-box p{
	font-size: 16px;
}

#top_info .info-box p .txt_l{
	font-size: 22px;
}
	
#top_info .info-box img {
    width: 110px;
    height: 110px;
    right: 15px;
    bottom: -20px;
}		
}

/* タブレットとPC（小画面）*/
@media print, screen and (min-width:768px){
#top_info{
	padding-top: 70px;
}
	
#top_info h2{
	font-size: 28px;
	margin-bottom: 40px;
}

#top_info .info-box{
	border-radius: 10px;
}
}

/* PC（小画面）とPC（大画面） */
@media print, screen and (min-width : 1024px){
#top_info .inbox p{
	margin-bottom: 20px;
	font-size: 16px;
	line-height: 30px;
}

#top_info .info-box{
	padding: 30px 65px 35px 65px;
	margin-top: 30px;
}
	
#top_info .info-box p{
	font-size: 22px;
}

#top_info .info-box p .txt_l{
	font-size: 28px;
}

#top_info .info-box img{
	width: 155px;
	height: 155px;
	right: 50px;
	bottom: -30px;
}
}


/*--------------------------------------------------------------
## TOP_こだわり
--------------------------------------------------------------*/
#top_commitment h2{
	color: #16a292;
	text-align: center;
}

#top_commitment h2 .txt_l{
	margin: 0 5px;
}

/*IE調整*/
@media all and (-ms-high-contrast:none){
#top_commitment h2 .txt_l b{
	background: none;
}
}

#top_commitment .inbox{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

#top_commitment .inbox > div{
	width: 100%;
	max-width: 350px;
	background: #fff;
	border-radius: 10px;
	text-align: center;
}

#top_commitment .inbox > div:nth-child(odd){
    box-shadow: 4px 4px #16a292;	
}

#top_commitment .inbox > div:nth-child(even){
    box-shadow: 4px 4px #357a68;	
}

#top_commitment .inbox > div .img{
	width:100%;
}

#top_commitment .inbox > div h3{
	letter-spacing: 0;
	color: #16a292;
}


/* スマホのみ */
@media screen and (max-width: 767px){
#top_commitment{
	padding:40px 15px 0 15px;;
}

#top_commitment h2 {
    font-size: 20px;
    letter-spacing: 0;
    line-height: 30px;
    margin-bottom: 20px;
}
	
#top_commitment .inbox > div{
	margin: 0 0 20px 0;
    padding: 20px 15px;
}
	
#top_commitment .inbox > div .number {
    width: 90px;
    margin-bottom: 15px;
}
	
#top_commitment .inbox > div h3{
	font-size: 18px;
	margin: 10px 0 5px 0;
}

#top_commitment .inbox > div p{
	font-size: 14px;
}
}

/* タブレットとPC（小画面）*/
@media print, screen and (min-width:768px){
#top_commitment{
	padding-top:80px;
}

#top_commitment h2{
	font-size: 32px;
	line-height: 40px;
	margin-bottom: 40px;
}
	
#top_commitment .inbox {
    max-width: 1110px;
    margin: 0 auto;
}
	
#top_commitment .inbox > div{
	margin: 0 10px 20px 10px;
	padding: 30px 20px;
}

#top_commitment .inbox > div .number{
	width: 110px;
	margin-bottom: 20px;
}

#top_commitment .inbox > div h3{
	font-size: 22px;
	margin: 15px 0 5px 0;
}
	
#top_commitment .inbox > div p{
	font-size: 15px;
}
	
}

/*IE調整*/
@media all and (-ms-high-contrast:none) and (min-width:768px){
#top_commitment .inbox > div h3 {
    margin: 20px 0 0px 0;
}
}


/* PC（大画面）のみ */
@media print, screen and (min-width : 1850px){
#top_commitment .inbox {
    max-width: none;
}
}


/*--------------------------------------------------------------
## TOP_治療メニュー
--------------------------------------------------------------*/
#top_service{
	width: 92%;
	max-width: 980px;
	margin: 0 auto;
}

#top_service h2{
	text-align: center;
	position: relative;
	color: #16a292;
}

#top_service h2:before,#top_service h2:after {
    content: '';
    position: absolute;
    display: inline-block;
    background: #16a292;
    border-radius: 2px;
    height: 4px;
    top: 50%;
}

#top_service h2:before {
    left: 0;
}

#top_service h2:after {
    right: 0;
}

#top_service ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

#top_service ul li {
	background: #fff;
	border-radius: 10px;
	position: relative;
	-webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
}

#top_service ul li a{
	display: block;
	text-align: center;
}

#top_service .menu_l li a{
	padding: 30px 20px 20px 20px;
}

#top_service .menu_s li a{
	padding: 30px 10px 15px 10px;
}

#top_service ul li:hover{
    box-shadow: 5px 5px rgba(241, 208, 167, 0.3);	
}

#top_service ul li h3{
	color: #16a292;
}

#top_service .menu_l li img{
	width: 110px;
	height: 110px;
}

#top_service .menu_s li img{
	width: 75px;
	height: 75px;
	margin-bottom: 10px;
}

#top_service .menu_l li p{
	color: #3f3f3f;
	text-align: justify;
	font-size: 14px;
	letter-spacing: 0;
}


/* スマホのみ */
@media screen and (max-width: 767px){
#top_service{
	padding:35px 0 25px 0;
	max-width: 430px;
}
	
#top_service h2{
	font-size: 25px;
	margin-bottom: 15px;
}
	
#top_service h2:before,#top_service h2:after {
    width:20%;
}
	
#top_service ul li {
	margin-bottom: 10px;
}
	
#top_service .menu_l li {
	width: 100%;
}

#top_service .menu_s li {
	width: 48.5%;
}
	
#top_service .menu_s li a {
    padding: 20px 5px 5px 5px;
}
	
#top_service .menu_l li h3{
	font-size: 22px;
	line-height: 20px;
}

#top_service .menu_s li h3{
	font-size: 16px;
	letter-spacing: 0;
}
}


/* タブレットのみ */
@media screen and (min-width : 768px) and (max-width: 1023px) {
#top_service h2:before,#top_service h2:after {
    width:30%;
}
	
#top_service ul li {
	margin-bottom: 15px;
}

#top_service .menu_l li h3{
	font-size: 22px;
}

#top_service .menu_s li h3{
	font-size: 18px;
}
}


/* タブレットとPC（小画面）*/
@media print, screen and (min-width:768px){
#top_service{
	padding:70px 0 50px 0;
}
	
#top_service h2{
	font-size: 30px;
	margin-bottom: 30px;
}
	
#top_service .menu_l li {
	width: 32%;
}

#top_service .menu_s li {
	width: 23.5%;
}

#top_service .menu_l li img{
	margin-bottom: 10px;
}
}

/*IE調整*/
@media all and (-ms-high-contrast:none) and (min-width:768px) {
#top_service h2 {
    padding-top: 13px;
    margin-bottom: 17px;
}
}

/* PC（小画面）とPC（大画面） */
@media print, screen and (min-width : 1024px){
#top_service h2:before,#top_service h2:after {
    width: 350px;
}
	
#top_service ul li {
	margin-bottom: 20px;
}

#top_service .menu_l li h3{
	font-size: 26px;
}

#top_service .menu_s li h3{
	font-size: 22px;
}
}

/*--------------------------------------------------------------
## TOP_バナーエリア
--------------------------------------------------------------*/

.top_bnrarea_inner{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding: 0 0 70px 0;
}

.top_bnr{
	margin: 0 5px 10px 5px;
	max-width: 300px;
	height: auto;
}

/* スマホのみ */
@media screen and (max-width: 767px){
	.top_bnrarea_inner{
		padding: 0 15px 25px 15px;
	}
	
	.top_bnr{
		max-width: 100%;
		height: auto;
		margin: 0 0 10px 0;
		display: block;
	}
}


/*--------------------------------------------------------------
## FOOT_ギャラリー
--------------------------------------------------------------*/
#foot_gallery ul{
	display: flex;
}

#foot_gallery ul li img{
	width: 100%;
}

/* スマホとタブレット */
@media screen and (max-width: 1023px){
#foot_gallery ul{
	flex-wrap: wrap;
}
	
#foot_gallery ul li{
	width: 3.33333%;
    width: -webkit-calc(100% / 3);
    width: calc(100% / 3);
}
}

/* PC（小画面）とPC（大画面） */
@media print, screen and (min-width : 1024px){
#foot_gallery ul li{
	width: 16.666666%;
    width: -webkit-calc(100% / 6);
    width: calc(100% / 6);
}	
}

/*--------------------------------------------------------------
## FOOT_バナーエリア
--------------------------------------------------------------*/

.foot_bnrarea_inner{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding: 70px 0 80px 0;
}

.foot_bnr{
	margin: 10px 5px 0px 5px;
	max-width: 300px;
	height: auto;
}

/* スマホのみ */
@media screen and (max-width: 767px){
	.foot_bnrarea_inner{
		padding: 25px 15px 35px 15px;
	}
	
	.foot_bnr{
		max-width: 100%;
		height: auto;
		margin: 10px 0 0 0;
		display: block;
	}
}


/*--------------------------------------------------------------
## FOOT_クリニック情報&グーグルマップ
--------------------------------------------------------------*/
footer .foot_inbox{
	display: flex;
	flex-wrap: wrap;
}

/*--------------------------------------------------------------
## FOOT_クリニック情報
--------------------------------------------------------------*/
#foot_clinic-info{
	padding: 70px 0;
	background: #fff;
	text-align: center;
}

#foot_clinic-info .logo{
	margin-bottom: 25px;
}

#foot_clinic-info .adress_tel{
	text-align: center;
	margin-bottom: 20px;
}
	
#foot_clinic-info .adress_tel .adress{
	font-size: 14px;
}

#foot_clinic-info .adress_tel .tel{
	/* font-family: fot-tsukuardgothic-std, sans-serif;*/
	font-family: 'Kosugi Maru', sans-serif;
	font-weight: 700;
	background: url("../img/icon_tel_footer.svg") no-repeat left center;
	background-size: 25px 25px;
	padding-left: 35px;
	font-size: 28px;
	line-height: 36px;
	color: #3f3f3f;
}

/*IE調整*/
@media all and (-ms-high-contrast:none) {
#foot_clinic-info .adress_tel .tel {
    padding-top: 10px;
    display: inline-block;
}
}

#foot_clinic-info .link_btn{
	/* font-family: fot-tsukuardgothic-std, sans-serif;*/
	font-family: 'Kosugi Maru', sans-serif;
	font-weight: 700;
	display: block;
	background: #16a292;
	font-size: 20px;
	width: 100%;
	max-width: 360px;
	height: 50px;
	border-radius: 5px;
	text-align: center;
	margin: 0 auto;
	color: #fff;
}
	
#foot_clinic-info .link_btn:hover{
	background: #357a68;
}

#foot_clinic-info .link_btn span{
	display: inline-block;
	height: 50px;
	background: url("../img/icon_reservation_header-02.svg") no-repeat left center;
	background-size: 35px 35px;
	padding-left: 45px;
	line-height: 50px;
	letter-spacing: 2px;
}


#foot_clinic-info .link_cancel{
	/* font-family: fot-tsukuardgothic-std, sans-serif; */
	font-family: 'Kosugi Maru', sans-serif;
	background: url("../img/icon_cancel.svg") no-repeat left center;
	background-size: 15px 15px;
	padding-left: 17px;
	padding-bottom: 2px;
	margin-top: 5px;
	display: inline-block;
}

#foot_clinic-info .link_cancel:hover{
	background: url("../img/icon_cancel_hover.svg") no-repeat left center;
	color: 	#357a68;
  background-size: 15px 15px;
}

/*IE調整*/
@media all and (-ms-high-contrast:none) {
#foot_clinic-info .link_btn span {
    line-height: 58px;
}
}

#foot_clinic-info .schedule_box{
	width: 100%;
	max-width: 445px;
	margin: 20px auto 0 auto;
	background: #16a292;
}

#foot_clinic-info .schedule_box table tr th {
    border-bottom: 4px solid #357a68;
}

#foot_clinic-info .schedule_box table{
	color: #fff;
}

/* スマホのみ */
@media screen and (max-width: 767px){
#foot_clinic-info{
	padding: 35px 15px;
}

#foot_clinic-info .logo{
	width: 260px;
}	
}


/* スマホとタブレット */
@media screen and (max-width: 1023px){
#foot_clinic-info{
	width: 100%;
}	
}

/* タブレットとPC（小画面）*/
@media print, screen and (min-width:768px){
#foot_clinic-info .logo{
	width: 360px;
}	
}

/* PC（小画面）とPC（大画面） */
@media print, screen and (min-width : 1024px){
#foot_clinic-info{
	width: 50%;
}
}


/*--------------------------------------------------------------
## FOOT_グーグルマップ
--------------------------------------------------------------*/
#map {
	width: 100%;
	height: 100%;
}


/* スマホのみ */
@media screen and (max-width: 767px){
#google_map {
	width: 100%;
	height: 300px;
}	
}

/* タブレットのみ */
@media screen and (min-width : 768px) and (max-width: 1023px) {
#google_map {
	width: 100%;
	height: 400px;
}
}

/* PC（小画面）とPC（大画面） */
@media print, screen and (min-width : 1024px){
#google_map {
	width: 50%;
}	
}


/*--------------------------------------------------------------
## FOOT_サイトマップ
--------------------------------------------------------------*/
#foot_sitemap{
	background: #16a292;
	color: #fff;
	text-align: center;
	padding-bottom: 25px;
}

#foot_sitemap ul{
	display: flex;
	margin: 0 auto;
	width: 95%;
	max-width: 980px;
	justify-content: center;
	flex-wrap: wrap;
}

#foot_sitemap ul li{
	text-align: center;
	border-right:solid 1px #F1D0A7;
	line-height: 20px;
	padding: 0 10px;
}

#foot_sitemap ul li:last-child{
	border-right:none;
}

#foot_sitemap ul li a{
	color: #fff;
	padding: 0 5px;
}

#foot_sitemap ul li a:hover{
	color: #F1D0A7;
}

/* スマホのみ */
@media screen and (max-width: 767px){
#foot_sitemap ul {
    padding: 20px 0;
		margin: 0;
}
	
#foot_sitemap ul li{
	margin-bottom: 10px;
	padding: 0 5px;
}
	
#foot_sitemap ul li a{
	font-size: 13px;
}
}

/* タブレットのみ */
@media screen and (min-width : 768px) and (max-width: 1023px) {
#foot_sitemap ul{
	padding: 30px 0 30px 0;
}
	
#foot_sitemap ul li a{
	font-size: 14px;
}
}

/* PC（小画面）とPC（大画面） */
@media print, screen and (min-width : 1024px){
#foot_sitemap ul{
	padding: 40px 0 30px 0;
}
	
#foot_sitemap ul li a{
	font-size: 16px;
}
}


/*--------------------------------------------------------------
## コピーライト
--------------------------------------------------------------*/
.copyright {
	width: 100%;
}

.copyright p{
	color:#ffffff;
	font-size: 12px;
}

/* スマホのみ */
@media screen and (max-width: 767px){
.copyright p {
    text-align: left;
    padding:0 15px;
}	
}


/*--------------------------------------------------------------
## ページトップに戻る
--------------------------------------------------------------*/
#page-top img{
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.05);
    border-radius: 50%;
}


/* スマホとタブレット */
@media screen and (max-width: 1023px){
#page-top{
	position: fixed;
	right: 10px;
}

#page-top img{
	width: 45px;
	height: 45px;
}	
}


/* PC（小画面）とPC（大画面） */
@media print, screen and (min-width : 1024px){
#page-top{
	position: fixed;
	right: 15px;
}
	
#page-top img{
	width: 55px;
	height: 55px;

}
}



/*--------------------------------------------------------------
## サブページ：レイアウト
--------------------------------------------------------------*/

#wrapper{
	width: 100%;
}

#contents{
	background: #fff;
	padding-bottom: 10px;
}


/* スマホのみ */
@media screen and (max-width: 767px){
#contents{
	margin-bottom: 40px;
}

#contents .paragraph{
	margin: 0 0 40px 0;
	padding: 0 20px;
}
}

/* スマホとタブレット */
@media screen and (max-width: 1023px){
#wrapper{
	padding: 0 15px;
}

#main{
	width: 100%;
}

#sidebar{
	display: none;
}
}

/* タブレットのみ */
@media screen and (min-width : 768px) and (max-width: 1023px) {
#contents{
	margin-bottom: 40px;
	border-radius: 5px;
	width: 100%;
	margin: 0 auto 60px auto;
}

#contents .paragraph{
	margin: 0 0 50px 0;
	padding: 0 25px;
}
}

/* タブレットとPC（小画面）*/
@media print, screen and (min-width:768px){
#contents{
	box-shadow: 0px 1px 20px rgba(230, 230, 230, 0.15);
}
}


/* PC（小画面）とPC（大画面） */
@media print, screen and (min-width : 1024px){

#wrapper{
	padding: 0 30px;
}

#main{
	width: 100%;
	max-width: 980px;
	margin: 0 auto;
}

#contents{
	margin-bottom: 60px;
	border-radius: 5px;
}

.contents_blog{
	float:left;
	width: 680px;
}

#contents .paragraph{
	margin: 0 0 80px 0;
	padding: 0 25px;
}

#sidebar{
	width:260px;
	float: right;
	margin-bottom: 70px;
}

#sidebar .side_menu{
	margin-bottom: 25px;
	width: 100%;
}

#sidebar .side_menu h2{
	position: relative;
    font-size: 23px;
    color: #16a292;
    letter-spacing: 1px;
    margin-bottom: 12px;
	padding-left: 15px;
}
	
#sidebar .side_menu h2:before {
    content: '';
    position: absolute;
    display: inline-block;
    width: 4px;
    height: 22px;
    background: #16a292;
    left: 2px;
    border-radius: 2px;
    top: 50%;
    margin-top: -10px;
}
	
#sidebar .side_menu ul{
	font-size:15px;
	border-top: 1px solid #e0ded0;
}

#sidebar .side_menu ul li{
	list-style:none;
	border-bottom: 1px solid #e0ded0;
}

#sidebar .side_menu ul li a{
	display: flex;
	align-items: center;
	color: #3f3f3f;
	letter-spacing: 0;
	padding: 15px 5px 13px 26px;
	background: url("../img/icon_arw.svg") no-repeat 8px center;
	background-size: 10px 10px;
}

#sidebar .side_menu ul li:hover a{
	background: url("../img/icon_arw_hover.svg") no-repeat 8px center;
	background-size: 10px 10px;
	color: #16a292;
}
}

/*IE調整*/
@media all and (-ms-high-contrast:none) and (min-width : 1024px){
#sidebar .side_menu h2 {
    margin-bottom: 6px;
    padding-top: 10px;
    margin-top: -8px;
}
}


/*--------------------------------------------------------------
## サブページ：メインビジュアル
--------------------------------------------------------------*/

#sub_mv{
	width: 100%;
}

#sub_mv > div{
	width: 100%;
    height: 100%;
}

#sub_mv .background_1{
	background: url(../img/sub_mv_01.jpg) center center;
	background-size: cover;
}

#sub_mv .background_2{
	background: url(../img/sub_mv_02.jpg) center center;
	background-size: cover;
}

#sub_mv .background_3{
	background: url(../img/sub_mv_03.jpg) center center;
	background-size: cover;
}

#sub_mv .background_4{
	background: url(../img/sub_mv_04.jpg) center center;
	background-size: cover;
}

#sub_mv .background_5{
	background: url(../img/sub_mv_05.jpg) center center;
	background-size: cover;
}


/* スマホのみ */
@media screen and (max-width: 767px){
#sub_mv{
	height: 140px;
    padding: 0 12px;	
}

#sub_mv > div{
	border-radius: 8px;
}
}

/* タブレットのみ */
@media screen and (min-width : 768px) and (max-width: 1023px) {
#sub_mv{
	height: 230px;
    padding: 0 15px;	
}

#sub_mv > div{
	border-radius: 10px;
}
}

/* PC（小画面）とPC（大画面） */
@media print, screen and (min-width : 1024px){
#sub_mv{
	height: 300px;
    padding: 0 30px;	
}

#sub_mv > div{
	border-radius: 10px;
}

}


/*--------------------------------------------------------------
## パンくず
--------------------------------------------------------------*/
#breadcrumb_area{
	width: 100%;
	max-width: 980px;
	margin: 0 auto;
	font-size:14px;
}

#breadcrumb_area a{
	color: #3f3f3f;
}

#breadcrumb_area a:hover{
	text-decoration:underline;
}


/* スマホのみ */
@media screen and (max-width: 767px){
#breadcrumb_area{
	font-size: 13px;
}
}

/* スマホとタブレット */
@media screen and (max-width: 1023px){
#breadcrumb_area{
	padding: 15px 0 13px 0;
}	
}


/* PC（小画面）とPC（大画面） */
@media print, screen and (min-width : 1024px){
#breadcrumb_area{
	padding: 20px 3px 20px 3px;
}	
}


/*--------------------------------------------------------------
## サブページ：見出し
--------------------------------------------------------------*/
#contents h3,
#contents h4,
#contents h5{
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
}

#contents h1{
    padding: 30px 25px 30px 25px;
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 30px;
    letter-spacing: 1px;
    background: #16a292;
    border-radius: 5px 5px 0 0;
    color: #fff;
}
/*IE調整*/
@media all and (-ms-high-contrast:none) {
#contents h1 {
    padding: 38px 25px 22px 25px;
}
}

#contents h2{
	position: relative;
    border-bottom: 5px solid #eaeaea;
    font-size: 28px;
    margin: 10px 0 15px 0;
    line-height: 34px;
    padding-bottom: 6px;
    transform: rotate(0.028deg);
    -o-transform: rotate(0.028deg);
    -ms-transform: rotate(0.028deg);
    -moz-transform: rotate(0.028deg);
    -webkit-transform: rotate(0.028deg);
    color: #16a292;
}
/*IE調整*/
@media all and (-ms-high-contrast:none) {
#contents h2{
    padding-bottom:0;
}
}

#contents h2::after {
	position: absolute;
	bottom: -5px;
	left: 0;
	z-index: 2;
	content: '';
	width: 15%;
	height: 5px;
	background: #F1D0A7;
}

#contents h3 {
	font-size: 21px;
    border-top: 2px solid #16a292;
    border-bottom: 2px solid #16a292;
    margin: 35px 0 15px 0;
    padding: 10px 10px 7px 10px;
    line-height: 28px;
    color: #16a292;
}

#contents h4{
	font-size: 19px;
    margin: 30px 0 10px 0;
    line-height: 30px;
    position: relative;
    padding-left: 15px;
    color: #16a292;
}

#contents h4:before{
	width: 4px;
    height: 100%;
    border-radius: 2px;
    background: #16a292;
    left: 2px;
    content: '';
    position: absolute;
}

#contents h5{
	font-size: 17px;
    margin: 20px 0 10px 0;
    line-height: 24px;
    font-weight: bold;
    color: #16a292;
}

#contents p {
    margin-bottom: 15px;
	text-align: justify;
}


/* スマホのみ */
@media screen and (max-width: 767px){

#contents h1{
    padding: 25px 15px 25px 15px;
    letter-spacing: 0px;
    font-size: 30px;
    line-height: 36px;
    border-radius: 0;
	text-align: center;
}

#contents h2 {
	font-size: 25px;
    margin: 0 0 12px 0;
    line-height: 28px;
	letter-spacing: 0;
}

#contents h3 {
	font-size: 19px;
    margin: 25px 0 10px 0;
    padding: 8px 4px 4px 4px;
    line-height: 27px;
}

#contents h4{
	font-size: 17px;
	margin: 25px 0 10px 0;
	line-height: 27px;
}

#contents h5{
	font-size: 16px;
	margin: 15px 0 5px 0;
}

}

/* タブレットとPC（小画面）*/
@media print, screen and (min-width:768px){

#contents p {
	padding: 0 5px;
}

}

/*--------------------------------------------------------------
## サブページ：リンク
--------------------------------------------------------------*/
#contents .link{
	font-weight: bold;
    text-align: left;
    text-decoration: underline;
}

#contents .link:hover{
    text-decoration: none;
}

#contents .link_arw{
	background: url("../img/icon_arw.svg") no-repeat left center;
	background-size:11px 11px;
	padding: 3px 0 0 16px;
	font-weight: bold;
	font-size: 16px;
	display: inline-block;
	text-align: left;
}

#contents .link_arw:hover{
	text-decoration: underline;
}

#contents .link_btn{
	display:inline-block;
	background: #fff;
    border: 3px solid #16a292;
	border-radius:5px;
	color:#3f3f3f;
	padding:15px 25px;
	margin: 0 0 15px 0;
	font-weight: bold;
}

#contents .link_btn span{
	background: url("../img/icon_arw.svg") no-repeat left center;
	background-size:11px 11px;
	padding-right:20px;
	padding-left: 16px;
	display: inline-block;
}

#contents .link_btn:hover{
    border: 3px solid #16a292;
}

#contents .link_btn_wide{
	display:block;
	background: #fff;
    border: 3px solid #16a292;
	border-radius:5px;
	color:#3f3f3f;
	padding:15px 10px 15px 15px;
	margin: 0 0 15px 0;
	font-weight: bold;
}

#contents .link_btn_wide > span{
	background: url("../img/icon_arw.svg") no-repeat left center;
	background-size:11px 11px;
	padding-right:20px;
	padding-left: 16px;
	display: inline-block;
}
#contents .link_btn_wide:hover{
    border: 3px solid #16a292;
}

.site_color{
	color:#16a292;
}

.site_sub_color {
    color: #F1D0A7;
}

.site_option_color01 {
	color: #ebad41;
}

.site_option_color02 {
	color: #62bb2d;
}

.site_point_color {
	color: #c0c400;
}

.red{
	color:#F0493C;
}

.blue{
	color:#4797c9;
}

.txt_s{
	font-size: 80%;
}

.txt_l{
	font-size: 120%;
}

.txt_bold{
	font-weight:bold;
}

.txt_wf{
	/* font-family: fot-tsukuardgothic-std, sans-serif;*/
	font-family: 'Kosugi Maru', sans-serif;
	font-weight: 700;
}

.txt_center{
	text-align: center!important;
}

/* スマホのみ */
@media screen and (max-width: 767px){
#contents .link_btn {
    padding: 12px 10px;
}
	
#contents .link_btn_wide {
    padding: 12px 10px;
}
}


/* タブレットとPC（小画面）*/
@media print, screen and (min-width:768px){

#contents .link_btn{
	max-width:320px;
}

}

/*--------------------------------------------------------------
## サブページ：リスト
--------------------------------------------------------------*/
#contents ul{
	margin:10px 0 20px 0;
}

#contents ul li {
	margin-bottom: 10px;
    padding-left: 24px;
    list-style: none;
    text-indent: -22px;
}
#contents ul li:before {
    content: "● ";
    color: #16a292;
    font-size: 14px;
}

#contents .list_arw li{
	background: url("../img/icon_arw.svg") no-repeat 4px 6px;
	background-size: 10px 10px;
	padding: 0 0 2px 20px;
	line-height: 25px;
	margin-bottom: 10px;
	text-indent: 0;
}

#contents .list_arw li:before {
    display: none;
}

#contents .list_check li{
	background: url(../img/icon_check.svg) no-repeat 0 4px;
    background-size: 16px 16px;
    padding: 0 0 2px 22px;
    line-height: 25px;
    margin-bottom: 10px;
    text-indent: 0;
}

#contents .list_check li:before {
    display: none;
}

#contents .list_number{
	list-style: none;
	counter-reset: li_count;
}

#contents .list_number li{
    margin-bottom: 10px;
    text-indent: -11px;
    padding-left: 24px;
}

#contents .list_number li:before{
	counter-increment: li_count;
    content: counter(li_count)".";
    color: #16a292;
    font-weight: bold;
    letter-spacing: 0;
    width: 11px;
    display: inline-block;
}

/* スマホのみ */
@media screen and (max-width: 767px){
#contents ul li {
    padding-left: 20px;
    text-indent: -18px;
}
	
#contents ul li:before {
    font-size: 13px;
}

}

/*--------------------------------------------------------------
## サブページ：テーブル
--------------------------------------------------------------*/
#contents table{
	border-collapse: collapse;
	width: 100%;
	margin:0 0 20px 0;
	background: #fff;
	font-size: 14px;
	letter-spacing: 0;
}

#contents table tr td{
	padding:10px;
	border: 2px solid #eaeaea;
	text-align:left;
}


#contents table th{
	border: 2px solid #357a68;
	padding: 10px 7px 8px 7px;
	background-color: #16a292;
	font-size: 17px;
	color: #fff;
	font-weight: bold;
	text-align: center;
}

#contents table td.td_title{
	background-color: #f4f4f4;
	font-weight: bold;
	color: #16a292;
}

#contents table td.right{
	text-align:right;
}

#contents table td.center{
	text-align:center!important;
}

#contents table .border_none{
    border: none;
}

#contents table.table_time td{
    text-align: center;
}

#contents .paragraph table img{
	margin: 10px 0;
	display: inline;
}

/* スマホのみ */
@media screen and (max-width: 767px){
#contents table{
	margin:10px 0 15px 0;
	font-size: 13px;
}

#contents table th{
	padding: 5px;
}

#contents table tr td {
	padding: 5px 5px 3px 5px;
}

#contents .scroll table{
	display: block;
	overflow-x: auto;	
	white-space: nowrap;
	-webkit-overflow-scrolling: touch;
}
	
}


/*--------------------------------------------------------------
## サブページ、ボックス
--------------------------------------------------------------*/
#contents .border-box{
	border: 4px solid #efefef;
	border-radius: 5px;
	background: #fff;
}

#contents .color-box{
	background: #f4f4f4;
	border-radius: 5px;
}

#contents .border-box h2,
#contents .color-box h2{
	margin-top:0;
}

#contents .border-box h3,
#contents .color-box h3{
	margin-top:0;
	padding: 8px 2px;
}

#contents .border-box h4,
#contents .color-box h4{
	margin-top:0;
}

#contents .border-box h5,
#contents .color-box h5{
	margin-top:0;
}

#contents .box-half{
	-js-display: flex;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

#contents .box-half a.border-box{
	color: #3f3f3f;
	display: block;
}

#contents .box-half a.border-box:hover{
	border: 4px solid #16a292;
}

/* スマホのみ */
@media screen and (max-width: 767px){
#contents .border-box,
#contents .color-box{
	padding: 17px 15px 5px 15px;
	margin:10px 0 5px 0;
}
	
#contents .box-half .border-box,
#contents .box-half .color-box,
#contents .box-half > div{
	width:100%;
}
	
#contents .box-half > div ul{
	margin: 0;
}

}

/* タブレットとPC（小画面）*/
@media print, screen and (min-width:768px){
#contents .border-box,
#contents .color-box{
	margin:10px 0 15px 0;
	padding: 22px 18px 7px 18px;
}

#contents .box-half .border-box,
#contents .box-half .color-box,
#contents .box-half > div{
	width:48.5%;
}

}


/*--------------------------------------------------------------
## サブページ、3列ボックス
--------------------------------------------------------------*/
.box-triple{
	display:flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.box-triple > div,.box-triple > p{
	width: 31%;
	margin: 0 0 20px 0;
}

#contents .paragraph .box-triple > div img{
	margin: 0 0 10px 0;
}

#contents .paragraph .box-triple h3{
	margin-top:0;
}

#contents .paragraph .box-triple h4{
	margin-top:0;
}

#contents .paragraph .box-triple h5{
	margin-top:0;
}

/* スマホのみ */
@media screen and (max-width: 767px){
.box-triple > div,.box-triple > p{
	width: 48%;
    margin: 0 0 10px 0;
}
}



/*--------------------------------------------------------------
## サブページ：画像位置
--------------------------------------------------------------*/
#contents .paragraph img {
    margin-bottom: 20px;
	height: auto;
}

#contents .paragraph .img_right {
	width: 100%;
	max-width: 280px;
}

#contents .paragraph .img_right_s {
	width: 100%;
	max-width: 150px;
}

#contents .paragraph .img_left {
	width: 100%;
	max-width: 280px;
}

#contents .paragraph .img_left_s {
	width: 100%;
	max-width: 150px;
}

#contents .paragraph .img_center {
	width: 100%;
	max-width: 280px;
	display: block;
}

#contents .paragraph .contents_img_wrapper{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom:20px;
}

#contents .paragraph .contents_img_wrapper img{
	width: 305px;
	height: 100%;
	margin-bottom: 0;
}

#contents .paragraph .img_wide{
	width: 100%;
    margin-bottom: 20px;
	height: auto;
}

#contents .paragraph img.no-resize{
	width:auto;
	height:auto;
}

#contents .paragraph img.noimg{
    display: none;
}

/* スマホのみ */
@media screen and (max-width: 767px){

#contents .paragraph img {
	display: block;
	margin: 0 auto 20px;
}

#contents .paragraph .img_right {
	margin: 0 auto 20px auto;
	max-width: 385px;
}

#contents .paragraph .img_left {
	margin: 0 auto 20px auto;
	max-width: 385px;
}

#contents .paragraph .img_left_s {
	margin: 0 auto 20px auto;
}

#contents .paragraph .img_center {
	margin: 0 auto 20px auto;
	display: block;
	max-width: 385px;
}

#contents .paragraph .contents_img_wrapper{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom:20px;
}

#contents .paragraph .contents_img_wrapper img{
	width: 100%;
	max-width: 385px;
	margin:0 20px 20px 20px;
}

#contents .paragraph .img_wide{
	width: 100%;
	max-width: 385px;
	margin-bottom: 20px;
	height: auto;
}

}

/* タブレットのみ */
@media screen and (min-width : 768px) and (max-width: 1023px) {

#contents .paragraph .contents_img_wrapper img{
	width: 49%;
}
}

/* タブレットとPC（小画面）*/
@media print, screen and (min-width:768px){

#contents img.img_right {
	float: right;
	margin: 0 0 20px 20px;
}
	
#contents img.img_right_s {
	float: right;
	margin: 0 0 20px 20px;
}

#contents img.img_left {
	float: left;
	margin: 0 20px 20px 0;
}
#contents img.img_left_s {
	float: left;
	margin: 0 20px 20px 0;
}

#contents .caption{
	float: right;
	width: 300px;
	margin: 0 0 20px 20px;
}

#contents .caption img.img_right{
	margin: 0 0 10px 20px;
}

#contents .caption p{
	text-align: center;
	font-size: 10px;
}

#contents img.img_center {
	margin: 0 auto 20px auto;
	display: block;
}
	
.sumbimg{
	max-width: 200px;
	margin-right: 10px;
	margin-bottom: 10px;
	float: left;
}

}



/*--------------------------------------------------------------
## ページネーション
--------------------------------------------------------------*/
.pagination{
	margin-top:20px;
	font-weight: bold;
}
.pagination span, .pagination a {
	display:block;
	float:left;
	margin: 2px 5px 2px 0;
	padding:4px 10px 3px 10px;
	text-decoration:none;
	width:auto;
	color:#fff!important;
	background: #16a292;
	border-radius: 3px;
}
 
.pagination a:link,
.pagination a:visited,
.pagination a:hover,
.pagination a:active{
color:#fff;
}

.pagination a:hover,
.pagination .current{
	background: #dedede;
}

.pagination .current{
	padding:4px 10px 3px 10px;
}

/* スマホのみ */
@media screen and (max-width: 767px){
	.pagination{
		font-size: 12px;
	}
}




/*--------------------------------------------------------------
##
--------------------------------------------------------------*/

/* スマホのみ */
@media screen and (max-width: 767px){
}


/* スマホとタブレット */
@media screen and (max-width: 1023px){
}


/* タブレットのみ */
@media screen and (min-width : 768px) and (max-width: 1023px) {
}


/* タブレットとPC（小画面）*/
@media print, screen and (min-width:768px){
}


/* スマホとタブレットとPC（小画面） */
@media screen and (max-width: 1199px) {
}

/* PC（小画面）とPC（大画面） */
@media print, screen and (min-width : 1024px){
}


/* PC（大画面）のみ */
@media print, screen and (min-width : 1920px){
}


/*IE調整*/
@media all and (-ms-high-contrast:none)/* and (min-width : 1024px)*/{

}
