@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,700|Lato:400,70|Noto+Serif+JP:400,700&display=swap&subset=japanese');


/*------------------- reset ---------------------------------------*/

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}


/*--------------- form ------------------*/

button{
transition: 0.3s ease;
}

button, input, select, textarea {
font-family : inherit;
font-size : 100%;
}


input[type="checkbox"],
input[type="radio"] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

label {
  position: relative;
  display: block;
  word-break: break-all;
}
label input[type="checkbox"] + span,
label input[type="radio"] + span {
  position: relative;
  padding-left: 15px;
}
label input[type="radio"] + span {
	padding-right: 15px;
	padding-left: 0;
}

/*--- checkbox --*/

label input[type="checkbox"] + span::before {
  border-color: #6A3906;
}
label input[type="checkbox"]:checked + span::before {
  background-color: #6A3906;
}
label span {
  display: inline-block;
}
label input[type="checkbox"] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 1px;
}
label input[type="checkbox"] + span::before,
label input[type="checkbox"] + span::after {
  position: absolute;
  top: 7px;
  left: 0;
  display: inline-block;
  content: '';
  box-sizing: border-box;
}
label input[type="checkbox"] + span::before {
  z-index: 0;
  background-color: transparent;
  width: 12px;
  height: 12px;
  border: 1px #313131 solid;
}
label input[type="checkbox"] + span::after {
  z-index: 1;
  margin: 2px 4px;
  width: 6px;
  height: 9px;
}
label input[type="checkbox"]:checked + span::before {
  background-color: #fff;
}
label input[type="checkbox"]:checked + span::after {
  border: 2px solid #313131;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

/*--- radio ----*/

label input[type="radio"] + span::before {
  border-color: #6A3906;
}
label span {
  display: inline-block;
}
label input[type="radio"] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 1px;
}
label input[type="radio"] + span::before {
  position: absolute;
  display: inline-block;
  content: '';
  box-sizing: border-box;
	border: 1px solid #668dd4;
	border-radius: 50%;
}
label input[type="radio"] + span::before {
	z-index: 0;
	top: 5px;
	right: 0;
	background-color: transparent;
	width: 14px;
	height: 14px;

}
/*label input[type="radio"]:checked + span::before {
  border: 4px solid #668dd4;
}*/
label input[type="radio"]:checked + span::after {
  position: absolute;
  display: inline-block;
  content: '';
  box-sizing: border-box;
	background-color:  #668dd4;
	border-radius: 50%;

	z-index: 0;
	top: 7px;
	right: 2px;
	width: 10px;
	height: 10px;	
}

/*-------- text email tel ---------*/

input[type="text"],
input[type="email"],
input[type="tel"] ,
textarea,select,
input[type=button],
input[type=submit],
button[type=submit],
input[type=reset]{
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
	padding:5px;
	background-color: #fff;
	border: 1px solid #dbd6d0;
	border-radius: 0;

}

/*-------- select ------------*/

select {
	width: 200px;
	background-image: url(../images/contact_select_arr.png);
	background-repeat: no-repeat;
	background-position: 92% center;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	font-weight: bold;
}
select::-ms-expand {
    display: none;
}

input[type="text"],
input[type="email"],
input[type="tel"] ,
textarea{
	width: 100%;
	max-width: 100%;

}

textarea{
	resize: vertical;
    overflow: auto;
    height: 160px;
}


input[type=button],
input[type=submit]{
    padding: 10px 40px;
    font-size: 1.2em;
    background-color: #6a3906;
    color: #fff;
    border-style: none;
	
}
input[type=submit]:hover{
/*	opacity: 0.7;*/

}


@media screen and (max-width:768px){

	input[type="text"],
	input[type="email"],
	input[type="tel"] ,
	textarea{
		width: 100%;
		font-size: 1.6rem !important;
	}
}

::placeholder {
	color: #999999;
}

/*----------------------------------------------*/
/*--------------- common -----------------------*/



body {
	font-size: 100%;
	background-color: #fff;
	color: #000;
	font-family: 'Noto Sans JP', sans-serif;
	-webkit-text-size-adjust: 100%;
	font-weight: 400;
}
h1,h2,h3,h4,h5,h6{
	font-weight:normal;
	margin: 0;
	padding: 0;
}



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

.clr {	clear:both; }

.fr{ float:right;}

.fl{ float:left;}

img{
	display: block;
}

*, *:before, *:after {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}
html,body{
	width: 100%;
	overflow-x: hidden;
}
html{ font-size:62.5%;}

body {
	font-size: 1.0rem;
	line-height: 1.7;
	/*position: relative;*/
}


.mincho{
	font-family: 'Noto Serif JP', serif;
}
.en{
	font-family: 'Lato', sans-serif;
}

.reg{
	font-weight: 400;
}

.bold{
	font-weight: 700;
}

.sp,
.ip{
	display:none !important;}


.wrap{
	width: 1100px;
	max-width: 100%;
	margin: auto;
}

@media screen and (max-width: 1280px) {
	.wrap{
		padding: 0 2%;
	}
}
.wrap img{
	display: block;
	max-width: 100%;
	margin: auto;
}



a{
	text-decoration: none;
	outline:none;
	transition: 0.3s ease;
	color: #000;

}

a:hover{
	text-decoration:underline;
}
a:hover img{
	opacity: 0.7;
}
.switch{
	display: none;
}
.flex{
	display: flex;
}
/*--------------- parts ---------------*/

.ggmap{
position: relative;
padding-bottom: 54.18%;
height: 0;
overflow: hidden;
}
 
.ggmap iframe,
.ggmap object,
.ggmap embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}

.arrow{
    position: relative;
    display: inline-block;
    padding: 0 0 0 0;
    color: #000;
    vertical-align: middle;
    text-decoration: none;
/*    font-size: 15px;*/
}
.arrow::before,
.arrow::after{
    position: absolute;
    top: 1px;
    bottom: 0;
    left: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
}
.arrow_circle{
	
}
.arrow_circle::after{
	right: 10px;
	left: auto;
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.arrow_circle::before{
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background-color: #00AD70;
	right: 0;
	left: auto;
	top: 50%;
	transform: translateY(-50%);
	bottom: auto;
}
.arrow:hover{
	text-decoration: none;
	opacity: 0.7;
}
/*------------------ general----------------*/


.mt0   { margin-top:  0px !important ; }
.mt5   { margin-top:  5px !important ; }
.mt10  { margin-top: 10px !important ; }
.mt15  { margin-top: 15px !important ; }
.mt20  { margin-top: 20px !important ; }
.mt25  { margin-top: 25px !important ; }
.mt30  { margin-top: 30px !important ; }
.mt35  { margin-top: 35px !important ; }
.mt40  { margin-top: 40px !important ; }
.mt45  { margin-top: 45px !important ; }
.mt50  { margin-top: 50px !important ; }
.mt60  { margin-top: 60px !important ; }
.mt70  { margin-top: 70px !important ; }
.mt80  { margin-top: 80px !important ; }
.mt100  { margin-top: 100px !important ; }
.mt150  { margin-top: 150px !important ; }

.mt-10  { margin-top: -10px !important ; }
.mt-20  { margin-top: -20px !important ; }


.mb0   { margin-bottom:  0px !important ; }
.mb5   { margin-bottom:  5px !important ; }
.mb10  { margin-bottom: 10px !important ; }
.mb15  { margin-bottom: 15px !important ; }
.mb20  { margin-bottom: 20px !important ; }
.mb25  { margin-bottom: 25px !important ; }
.mb30  { margin-bottom: 30px !important ; }
.mb35  { margin-bottom: 35px !important ; }
.mb40  { margin-bottom: 40px !important ; }
.mb45  { margin-bottom: 45px !important ; }
.mb50  { margin-bottom: 50px !important ; }
.mb60  { margin-bottom: 60px !important ; }
.mb65  { margin-bottom: 65px !important ; }
.mb70  { margin-bottom: 70px !important ; }
.mb75  { margin-bottom: 75px !important ; }
.mb80  { margin-bottom: 80px !important ; }
.mb90  { margin-bottom: 90px !important ; }
.mb100  { margin-bottom: 100px !important ; }
.mb110  { margin-bottom: 110px !important ; }
.mb120  { margin-bottom: 120px !important ; }
.mb130  { margin-bottom: 130px !important ; }
.mb140  { margin-bottom: 140px !important ; }
.mb150  { margin-bottom: 150px !important ; }
.mb160  { margin-bottom: 160px !important ; }
.mb170  { margin-bottom: 170px !important ; }
.mb180  { margin-bottom: 180px !important ; }
.mb190  { margin-bottom: 190px !important ; }
.mb200  { margin-bottom: 200px !important ; }
.mb210  { margin-bottom: 210px !important ; }
.mb220  { margin-bottom: 220px !important ; }
.mb230  { margin-bottom: 230px !important ; }
.mb240  { margin-bottom: 240px !important ; }
.mb250  { margin-bottom: 250px !important ; }
.mb300  { margin-bottom: 300px !important ; }


@media screen and (max-width : 767px) {
.sp-mt0  { margin-top: 0px !important ; }
.sp-mt20  { margin-top: 20px !important ; }
.sp-mt30  { margin-top: 30px !important ; }
.sp-mt40  { margin-top: 40px !important ; }
.sp-mt50  { margin-top: 50px !important ; }
	
.sp-mb-40   { margin-bottom:  -40px !important ; }
.sp-mb-30   { margin-bottom:  -30px !important ; }
.sp-mb-20   { margin-bottom:  -20px !important ; }
.sp-mb-10   { margin-bottom:  -10px !important ; }
.sp-mb0   { margin-bottom:  0px !important ; }
.sp-mb5   { margin-bottom:  5px !important ; }
.sp-mb10  { margin-bottom: 10px !important ; }
.sp-mb15  { margin-bottom: 15px !important ; }
.sp-mb20  { margin-bottom: 20px !important ; }
.sp-mb25  { margin-bottom: 25px !important ; }
.sp-mb30  { margin-bottom: 30px !important ; }
.sp-mb35  { margin-bottom: 35px !important ; }
.sp-mb40  { margin-bottom: 40px !important ; }
.sp-mb45  { margin-bottom: 45px !important ; }
.sp-mb50  { margin-bottom: 50px !important ; }
.sp-mb60  { margin-bottom: 60px !important ; }
.sp-mb65  { margin-bottom: 65px !important ; }
.sp-mb70  { margin-bottom: 70px !important ; }
.sp-mb75  { margin-bottom: 75px !important ; }
.sp-mb80  { margin-bottom: 80px !important ; }
.sp-mb90  { margin-bottom: 90px !important ; }
.sp-mb100  { margin-bottom: 100px !important ; }
.sp-mb110  { margin-bottom: 110px !important ; }
.sp-mb120  { margin-bottom: 120px !important ; }
.sp-mb130  { margin-bottom: 130px !important ; }
.sp-mb140  { margin-bottom: 140px !important ; }
.sp-mb150  { margin-bottom: 150px !important ; }
.sp-mb160  { margin-bottom: 160px !important ; }
.sp-mb170  { margin-bottom: 170px !important ; }
.sp-mb180  { margin-bottom: 180px !important ; }
.sp-mb190  { margin-bottom: 190px !important ; }
.sp-mb200  { margin-bottom: 200px !important ; }
.sp-mb210  { margin-bottom: 210px !important ; }
.sp-mb220  { margin-bottom: 220px !important ; }
.sp-mb230  { margin-bottom: 230px !important ; }
.sp-mb240  { margin-bottom: 240px !important ; }
.sp-mb250  { margin-bottom: 250px !important ; }
.sp-mb300  { margin-bottom: 300px !important ; }
	
.sp-tx-center{text-align: center;}
.sp-tx-right{text-align: right;}
.sp-tx-left{text-align: left;}
}
	


.ml0 { margin-left: 0 !important;}

.mr0 { margin-right: 0px !important;}
.mr10 { margin-right: 10px !important;}
.mr20 { margin-right: 20px !important;}
.mr30 { margin-right: 30px !important;}
.mr40 { margin-right: 40px !important;}

.pl0{ padding-left: 0px !important;}
.pl10{ padding-left: 10px !important;}
.pl20{ padding-left: 20px !important;}
.pl30{ padding-left: 30px !important;}
.pl40{ padding-left: 40px !important;}
.pl50{ padding-left: 50px !important;}

.pb0{ padding-bottom: 0px !important;}
.pb10{ padding-bottom: 10px !important;}
.pb20{ padding-bottom: 20px !important;}
.pb30{ padding-bottom: 30px !important;}
.pb40{ padding-bottom: 40px !important;}


.pr0{padding-right: 0px !important;}
.pr10{padding-right: 10px !important;}
.pr15{padding-right: 15px !important;}
.pr20{padding-right: 20px !important;}
.pr30{padding-right: 30px !important;}
.pr40{padding-right: 40px !important;}

.pt0{ padding-top: 0 !important;}
.pt10{ padding-top: 10px !important;}
.pt20{ padding-top: 20px !important;}
.pt30{ padding-top: 30px !important;}
.pt40{ padding-top: 40px !important;}


.rev {flex-direction: row-reverse;}
.center{align-items: center;}
.right{text-align: right;}

.tx-center{text-align: center;}
.tx-right{text-align: right;}
.tx-left{text-align: left;}


small { font-size: 85%; }



/*------------------- IE11 -------------------*/
_:-ms-lang(x)::-ms-backdrop,
#aaa{
	margin-top: 25px;
}
/*------------------ safari ------------------*/
_::-webkit-full-page-media, _:future, :root 
#aaa{
    width: 106px;
}

/*----------------------- header ----------------------------*/


.page #header{
	padding: 10px 0 0;	
}
#header .h_nav01{
	background-color: #17A77E;
	color: #fff;
	padding: 0 50px;
	align-items: center;
}
.page #header .h_nav01{
	background-color: #fff;
	color: #222222;
}
#header .h_txt{
	font-size: 1.6rem
}
.page #header .h_txt{
	color: #00A77B;
	font-weight: bold;
}
#header .h_tel{
	font-size: 1.4rem;
	margin-left: 23px;
	display: flex;
	align-items: center;
}
#header .h_tel::before{
	content: "";
	display: inline-block;
	width: 24px;
	height: 24px;
	background-image: url("../images/icon/h_tel.png");
	background-repeat: no-repeat;
	background-size: contain;
	margin-right: 11px;
	position: relative;
}
.page #header .h_tel::before{
	background-image: url("../images/icon/h_tel_page.png");
}
#header .h_tel .telno{
	font-size: 2.4rem;
	margin: 0 0 0 11px;
	position: relative;
}
/*------------------- IE11 -------------------*/
_:-ms-lang(x)::-ms-backdrop,
#header .h_tel .telno{
	top: -2px;
}
#header .h_link{
	margin-left: auto;
	display: flex;
}
#header .h_link li{
	padding: 0 15px 0 0;
}
#header .h_link li + li{
	margin-left: 20px;
}

#header .h_link li::before{
	right: 0;
	left: auto;
    width: 7px;
    height: 7px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.page #header .h_link li::before{
	border-color: #17A77E;
}
#header .h_link li a{
	font-size: 1.4rem;
	color: #fff;
}
.page #header .h_link li a{
	color: #222222;
}
#header .h_search{
	background-color: rgba(255,255,255,.85);
	border-radius: 13px;
	width: 180px;
	height: 26px;
	display: flex;
	position: relative;
	margin-left: 24px;
}
.page #header .h_search{
	background-color: #F5F5F5;
}
#header .h_search form{
	width: 100%;
}
#header .h_search input{
	border: none;
	background-color: transparent;
	height: 100%;
}
#header .h_search input[type=text]{
	width: calc( 100% - 20px);
	padding: 4px 12px 6px;
	font-size: 1.4rem;
}
#header .h_search input::placeholder{
	color: #888888;
	font-size: 1.4rem;
}
#header .h_search input[type=submit]{
	padding: 0 6px;
	width: 32px;
	height: 23px;
	background-image: url("../images/icon/h_search.png");
	background-size: auto;
	background-position: center center;
	background-repeat: no-repeat;
	font-size: 0;
	position: absolute;
	right: 0;
	top: 2;
	cursor: pointer;
}



#header .header_info{
	background-color: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 103px;
	padding: 0 50px;
}
#header .h_logo a{
	display: flex;
	line-height: 1;
/*	align-items: center;*/
}
#header .h_logo a:hover{
	text-decoration: none;
	opacity: 0.7;
}
#header .h_logo a:hover span span{
	opacity: 0.7;
}
#header .logo_img{
	padding-top: 18px;
}
#header .h_logo .logo_txt01{
	font-size: 1.4rem;
	padding-top: 30px;
	margin-left: 7px;
}
#header .h_logo .logo_txtbox{
	margin-left: 15px;
}
#header .h_logo .logo_kana,
#header .h_logo .logo_txt02{
	display: block;
}
#header .h_logo .logo_kana{
	font-size: 1.3rem;
	letter-spacing: 0.25em;
	margin-bottom: 7px;
}
#header .h_logo .logo_txt02{
	font-size: 3.2rem;
	letter-spacing: 0.05em;

}
#header .h_access{
	display: flex;
	align-items: center;
}
#header .h_guide{
	
}
#header .h_guide .guide_txt01{
	font-size: 1.7rem;
	color: #E5534D;
	font-weight: bold;
}
#header .h_guide .guide_txt02{
	font-size: 1.7rem;
}

#header .h_access_link{
	display: flex;
	margin-left: 28px;
}
#header .h_access_link li{
	display: flex;
	width: 188px;
	height: 59px;
}
#header .h_access_link li + li{
	margin-left: 11px;
}
#header .h_access_link li a{
	font-size: 1.8rem;
	display: block;
	width: 100%;
	height: 100%;
	border: 3px solid #17A77E;
	border-radius: 7px;
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}
#header .h_access_link li a:hover{
	text-decoration: none;
	opacity: 1;
	color: #0CAB72;
}
#header .h_access_link li a::before{
	content: "";
	background-size: contain;
	background-repeat: no-repeat;
	display: inline-block;
	margin-right: 13px;
}
#header .h_access_link li:nth-of-type(1) a::before{
	background-image: url("../images/icon/h_parking.png");
	width: 45px;
	height: 28px;
}
#header .h_access_link li:nth-of-type(2) a::before{
	background-image: url("../images/icon/h_map.png");
	width: 20px;
	height: 27px;
	position: relative;
	top: 2px;
}

#header .sp_icon{
	display: none;
}

.cloneNav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    transition: .3s;
    transform: translateY(-100%);
}
.cloneNav.is-show {
    transform: translateY(0);
}

/*googleカスタム検索用*/
#___gcse_0,
#___gcse_1{
    margin-bottom: 50px;
}
.gsc-input-box {
    border: none!important;
}

#search-box{
    width:180px;
    border-radius: 20px!important;
    overflow: hidden;
}

td#gs_tti50,
div#___gcse_1{
    border: none;
    padding: 1px 0 0 0 ;
    overflow:hidden;
    background-color: #F5F5F5;
}
.cse .gsc-search-button-v2,
.gsc-search-button-v2{
    padding: 2px 3px!important;
    border: none!important;
    border-radius: 0!important;
    -moz-border-radius:  0!important;
    -webkit-border-radius: 0!important;
    border-color: none!important;
    background-color: none!important;
    background-image: none!important;
    background: none!important;
    position: absolute;
    right: 3px;
    bottom: 2px
}
.under_3col_side .gsc-search-button-v2{
    right: 2px;
}

div#___gcse_0{
border-radius: 20px!important;
}

#___gcse_1 .gsc-search-button-v2{
    bottom:2px;
    right: 3px;
}
.gsc-search-button-v2 svg {
    fill: #aaa!important;
    width: 20px;
    height: 20px;
}
td.gsc-search-button{
    position: relative;
    width: 0;
}
.slabel {
    padding-left: 20px;
    margin-bottom: 10px;
}
.gsc-search-box-tools .gsc-search-box .gsc-input{
    padding-right: 0;
}

.gsc-control-cse {
    border: none!important;
    background-color: #F5F5F5!important;
}


#gs_cb51{
    display:none;
}

.gsc-control-cse {
    padding: 0!important;
}

.gsib_a {
    padding: 0 0 0 10px!important;
}

.gsc-input{
    background-color: #F5F5F5!important;
}

table.gsc-search-box {
    margin-bottom: 0!important;
}

form.gsc-search-box {
    font-size: 12px!important;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0!important;
    margin-left: 0;
    width: 100%;
}

.gsst_b {
    display: none;
}


@media screen and (max-width: 1280px) {
	#header .h_nav01{
		padding: 0 2%;
	}
	#header .header_info{
		padding: 0 2%;
	}
	#header .h_logo{
		width: 40%;
	}
	#header .h_access{
		width: 60%;
		justify-content: flex-end;
	}
/*	#header .h_logo .logo_txt01{
		font-size: 1.2rem;
	}
	#header .h_logo .logo_kana{
		font-size: 1.0rem;
	}
	#header .h_logo .logo_txt02{
		font-size: 2.4rem;
	}*/
	#header .h_guide{
		width: 48%;
	}
	#header .h_guide .guide_txt01{
		font-size: 1.5rem;
	}
	#header .h_guide .guide_txt02{
		font-size: 1.5rem;
	}
	#header .h_access_link{
		margin-left: 2%;
		width: 50%;
	}
	#header .h_access_link li{
		width: 49%;
	}
	#header .h_access_link li + li{
		margin-left:2%;
	}
	#header .h_access_link li a{
		font-size: 1.6rem;
	}
}


/*------------------------ gnav --------*/

/* ––––––––––––––––––––––––––––––––––––––––––––––––––
megamenu.js STYLE STARTS HERE
–––––––––––––––––––––––––––––––––––––––––––––––––– */


/* ––––––––––––––––––––––––––––––––––––––––––––––––––
Screen style's
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.menu-container {
    width: 100%;
    margin: 0 auto 0;
    background: #17A77E;
}

.menu-mobile {
    display: none;
    padding: 20px;
}



.menu-dropdown-icon:before {
    content: "\f489";
    font-family: "Ionicons";
    display: none;
    cursor: pointer;
    float: right;
    padding: 1.5em 2em;
    background: #fff;
    color: #333;
}

.menu > ul {
    margin: 0 auto;
    width: 100%;
    list-style: none;
    padding: 0;
    /*position: relative;*/
    /* IF .menu position=relative -> ul = container width, ELSE ul = 100% width */
    box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	
}

.menu > ul:before,
.menu > ul:after {
/*    content: "";
    display: table;*/

}

.menu > ul:after {
    clear: both;
}

.menu > ul > li {

    padding: 0;
    margin: 0;
	height: 60px;
	width: 180px;
}
.menu > ul > li + li{
}

.menu > ul > li > a {
    text-decoration: none;
    display: block;
	font-size: 2rem;
	font-weight: 500;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	
	
}

/*.menu > ul > li:hover,*/
.menu > ul > li > a:hover,
.menu > ul > li > a.active{
    background: #00BB84;
	opacity: 1;
	position: relative;
}
.menu > ul > li > a.active::after{
/*	position: absolute;
	width: 100%;
	height: 6px;
	background-color: #00BB84;
	left: 0;
	bottom: -3px;
	z-index:100;
	display: block;
	content: "";*/
}

.menu .mega_box {
    display: none;
    width: 100%;
    background: #F6FCFA;
    padding: 30px 28px 7px;
    position: absolute;
    z-index: 99;
    left: 0;
    margin: 0;
    list-style: none;
    box-sizing: border-box;
	box-shadow: 2px 2px 4px 0px rgba(0,0,0,0.2);
	max-height: calc( 100vh - 213px) ;
	overflow-y: scroll;
}


.menu > ul > li > ul:before,
.menu > ul > li > ul:after {
    content: "";
    display: table;
}

.menu > ul > li > ul:after {
    clear: both;
}

.menu > ul > li > ul > li {
    margin: 0;
    padding-bottom: 0;
    list-style: none;
    background: none;
    float: left;
}
.menu > ul > li > ul > li + li{
	margin-left: 30px;
}

.menu > ul > li > ul > li a {
    display: flex;
	align-items: center;
	font-size: 1.3rem;
	color: #6e5751;
}
.menu > ul > li > ul > li a::before{
	content: "";
	background-image: url("../images/gnav_pc_arr.png");
	width: 7px;
	height: 10px;
	margin-right: 2px;
}
.menu > ul > li > ul > li a:hover{
	text-decoration: underline;
}




.h_nav{
	background-color: #17A77E;
}
.menu-container{
	width: 1160px;
	max-width: 100%;
}
.mega_box{
	padding: 30px 0 0;
	position: relative;
}


.menu .close {
	display: inline-block;
	width: 50px;
	height: 50px;
	position: relative;
	cursor: pointer;
	position: absolute;
	/*bottom: 45px;*/
	top: 25px;
	right: 50px;
}
.menu .close:hover{
	opacity: 0.7;
}
.menu .close span::before,
.menu .close span::after {
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	left:0;
	width: 100%;
	height: 1px;
	margin: 0;
	background: #17A77E;
}
.menu .close span::before {
	transform: rotate(-45deg);
}
.menu .close span::after {
	transform: rotate(45deg);
}
.mega_box .mega_flex{
	display: flex;
	align-items: flex-start;
}
.mega_box .mega_ttl{
	color: #000;
	font-size: 1.8rem;
	letter-spacing: 0.05em;
	position: relative;
}
.mega_box .mega_ttl::after{
	content: "";
	width: 30px;
	height: 1px;
	background-color: #17A77E;
	position: absolute;
	left: 0;
	bottom: -14px;
}
.mega_box .mega_ttl_sub{
	color: #17A77E;
	font-size: 1.6rem;
	letter-spacing: 0.05em;
	margin-bottom: 0;
	padding-top: 2px;
}

.mega_box .mega_ttl_sub.naika{
	color: #E87978;
}
.mega_box .mega_ttl_sub.geka{
	color: #007CC0;
}

.mega_box > .flex{
	flex-wrap: wrap;
}

.mega_list li{
	height: 39px;
	width: 100%;
}
.mega_list li a{
	display: block;
	width: 100%;
	height: 100%;
	font-size: 1.5rem;
	border: 1px solid #fff;
	background-color: #17A77E;
	position: relative;
    display: inline-block;
    padding: 6px 0 0 8px;
    color: #000;
    vertical-align: middle;
    text-decoration: none;
	color: #fff;

}
.mega_list li a::after{
    position: absolute;
    top: 0;
    bottom: 0;

    margin: auto;
    content: "";
    vertical-align: middle;
	right: 13px;
    left: auto;
    width: 7px;
    height: 7px;
    border-top: 1px solid #fff;
    border-right:1px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.mega_list li a:hover{
	text-decoration: none;
	background-color: #fff;
	opacity: 1;
	color: #17A77E;
}

/*-------------- mega medical ----*/

#menu .medical .mega_ttl{
	width: 98px;
	margin: 0 39px 0 0;
}

#menu .medical .mega_ttl a{
color:#000;
}

#menu .medical .mega_ttl.w135{
	width:135px;
}

#menu .medical .mega_ttl.w205{
	width:205px;
}

#menu .medical .mega_ttl.w220{
	width:220px;
}

#menu .medical .mega_ttl.w230{
	width:230px;
}


#menu .medical .mega_flex .box{
	width: calc( 100% - 98px - 39px);

}
#menu .medical .medi01_out{
	width: 100%;
	/*border-bottom: 1px solid #ccc;
	margin: 0 0 40px;
	padding: 0 0 35px;*/
	margin-bottom:  40px;
}
#menu .medical .medi02_out{
	width: 100%;
	/*margin: 0 0 23px;*/
	padding: 0 0 22px;
}
#menu .medical .medi01,#menu .medical .medi02 {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}
#menu .medical .medi01 + .medi01,#menu .medical .medi02 + .medi02{
	margin-top: 15px;
}
#menu .medical .medi01 .mega_ttl_sub,#menu .medical .medi02 .mega_ttl_sub{
	width: 100%;
}
#menu .medical .medi01 li{
	width: 192px;
}
#menu .medical .medi02 li{
	width: 220px;
}
#menu .medical .mega_bdr{

	
}
#menu .medical{}

/*---------------- mega gairai -----------*/

#menu .gairai{
	width: 330px;
}
#menu .gairai .mega_ttl{
	width: 98px;
}
#menu .gairai .mega_list{
	width: calc( 100% - 98px);
}

/*----------------- mega bumon -------------*/

#menu .bumon{
	width: 210px;
	margin-left: 70px;
	padding-bottom:  20px;
}
#menu .medical .bumon .mega_ttl{
	width: 61px;
}
#menu .medical .mega_ttl {
    margin: 0 0 0 0;
}
#menu .bumon .mega_list{
	width: calc( 100% - 61px);
}

/*--------------- mega sinryo -------------*/

#menu .sinryo {
	width: 333px;
	margin-left: 61px;
}
#menu .medical .sinryo .mega_ttl{
	width: 133px;
}
#menu .sinryo .mega_list{
	width: calc( 100% - 133px);
}


@media screen and (max-width: 1280px) {

	#menu .bumon,
	#menu .sinryo{
		margin-left: 4%;
	}

}



/* ––––––––––––––––––––––––––––––––––––––––––––––––––
Mobile style's
–––––––––––––––––––––––––––––––––––––––––––––––––– */

@media only screen and (max-width: 767px) {
    .menu-container {
        width: 100%;
    }
    .menu-mobile {
        display: block;
    }
    .menu-dropdown-icon:before {
        display: block;
    }
    .menu > ul {
        display: none;
    }
    .menu > ul > li {
        width: 100%;
        float: none;
        display: block;
    }
    .menu > ul > li a {
        padding: 1.5em;
        width: 100%;
        display: block;
    }
    .menu > ul > li > ul {
        position: relative;
    }
    .menu > ul > li > ul.normal-sub {
        width: 100%;
    }
    .menu > ul > li > ul > li {
        float: none;
        width: 100%;
        margin-top: 20px;
    }
    .menu > ul > li > ul > li:first-child {
        margin: 0;
    }
    .menu > ul > li > ul > li > ul {
        position: relative;
    }
    .menu > ul > li > ul > li > ul > li {
        float: none;
    }
    .menu .show-on-mobile {
        display: block;
    }
}


/*----------------------------- sp header -----------------------*/


@media screen and (max-width : 767px) {
	
	#header{
		width: 100%;
		overflow-x: hidden;
	}
	
	#header.home{
		padding-bottom: 40px;
	}
	
	#spmenu{


	}
	body.fixed{
		position: fixed;
		width: 100%;
	}
	.drawer {
		width: 100%;
		height: 100%;
		background: #fff;
		padding: 0 0 50px;
		-webkit-transform: translateX(100vw);
		transform: translateX(100vw);
		-webkit-transition: ease 0.5s;
		transition: ease 0.5s;
		position: absolute;
		position: fixed;
		top: 50px;
		right: 0;
		z-index: 3;
	}


.drawer.action {
  width: 100%;
	max-width: 100%;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
	position: absolute;
	position: fixed;
	top: 50px;
}

.drbtn {
  position: absolute;
  top: 0;
	left: 0;
  width: 50px;
  height: 50px;
  color: #5c6b80;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  cursor: pointer;
  align-items: flex-end;
  display: flex;
  justify-content: center;
  font-size: 10px;
  padding-bottom: 2px;
  z-index: 10000
}

.drbtn.action {
/*  right: 0;*/
	/*top: 0 !important;
	left: 225px;*/
}
	.drbtn p{
		position: absolute;
		bottom: 7px;
		left: 50%;
		transform: translateX(-50%);
		font-size: 1.1rem;
		color: #fff;
		line-height: 1;
	}
	.drbtn p::after{
		content: "MENU";
	}
	.drbtn.action p::after{
		content: "CLOSE";
	}

#content {
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s
}

#content.action {
  opacity: 0.25
}

.hambarg {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  height: 2px;
  width: 21px;
  background: #fff;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s
}

.hambarg:nth-child(1) {
  top: 20%;
  left: 50%
}

.hambarg:nth-child(2) {
  top: 32%;
  left: 50%
}

.hambarg:nth-child(3) {
  top: 44%;
  left: 50%
}

.drbtn.action .hambarg:nth-child(1) {
  top: 38%;
	height: 1px;
	width: 24px;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg)
}

.drbtn.action .hambarg:nth-child(2) {
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0
}

.drbtn.action .hambarg:nth-child(3) {
  top: 38%;
	height: 1px;
	width: 24px;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg)
}


#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  cursor: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  z-index: 2;
}

#overlay.active {
  visibility: visible;
  background: rgba(0, 0, 0, .0);
  opacity: 1
}

	
	#header .mv .mv_news,
	#header .mv_info,
	#header .mv_bnr{
		display: none;
	}
	#header .header_info{
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		z-index: 3;
		height: 50px;
		padding: 0 0 0 4.8%;
	}


	#header .sp_icon{
		display: flex;
		position: fixed;
		right: 0;
		top: 0;
		z-index: 1000;
	}
	#header .sp_icon li{
		position: relative;
		width: 50px;
		height: 50px;
	}
	#header .sp_icon li.contact{
		background-color: #444444;
	}
	#header .sp_icon li.contact a{
		display: block;
		color: #fff;
		font-size: 1rem;
		text-align: center;
		height: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
		padding: 3px 0 0;
		position: relative;
	}
	#header .sp_icon li.contact a span{
		line-height: 1;
		position: absolute;
		bottom: 8px;
		left: 50%;
		transform: translateX(-50%);
		width: 100%;
	}
	#header .sp_icon li.contact a::before{
		content: "";
		width: 20px;
		height: 20px;
		background-image: url( "../images/icon/h_tel_sp.png");
		background-size: contain;
		background-repeat: no-repeat;
		display: block;
		margin-top: 3px;
	}
	#header .sp_icon li.menu{
		background-color: #17A77E;
	}
	#header .h_logo{
		align-items: center;
		width: auto;
	}
	#header .logo_img{
		padding: 0;
		width: 47px;
		margin-right: 5px;
	}
	#header .logo_img img{
		width: 100%;
	}
	#header .h_logo .logo_txtbox{
		margin: 0 0 0 5px;
		display: flex;
		flex-direction: column-reverse;
	}
	#header .h_logo a{
		align-items: center;
	}
	#header .h_logo .logo_txt01{
		font-size: 1rem;
		padding: 0;
		margin: 0;
	}
	#header .h_logo .logo_kana{
		font-size: 1rem;
		letter-spacing: 0;
		margin: 0;
		line-height: 1.1;
	}
	#header .h_logo .logo_kana .sp{
		display: inline-block !important;
	}
	#header .h_logo .logo_txt02{
		font-size: 2.1rem;
	}
	#header .h_access{
		width: auto;
	}
	#spmenu .sp_search{
		border-top: 1px solid #17A77E;
		padding: 11px 4.8% 5px;
	}
	#spmenu .sp_search a{
		font-size: 1.8rem;
		font-weight: bold;
		color: #17A77E;
		display: inline-flex;
		
	}
	#spmenu .sp_search a:hover{
		text-decoration: none;
	}
	#spmenu .sp_search a::before{
		content: "";
		width: 30px;
		height: 30px;
		background-image: url("../images/icon/sp_menu_search.png");
		background-size: contain;
		background-repeat: no-repeat;
		display: inline-block;
		margin-right: 15px;
	}
	
	#spmenu .parent li.about a { color: #fff; }
	#spmenu .parent li.visitor a { color: #fff; }
	#spmenu .parent li.medical a { color: #fff; }
	#spmenu .parent li.relation a { color: #fff; }
	#spmenu .parent li.recruit a { color: #fff; }
	#spmenu .parent li.news a { color: #fff; }
	#spmenu .parent li.tpp a { color: #fff; }
	
	#spmenu .parent > li{
		border-bottom: 1px solid rgba(255,255,255,.4);		
		background-color: #17A77E;
	}
	#spmenu .parent > li > span{
		color: #fff;
		font-size: 1.8rem;
		display: block;
		padding: 9px 4.8% 8px;
		display: flex;
		justify-content: space-between;
		position: relative;

	}
	#spmenu .parent > li > span::after,
	#spmenu .parent > li > span::before{
		content: "";
		position: absolute;
		top: 50%;
		right: 4.8%;
		width: 16px;
		height: 2px;
		background-color: #fff;
	}
	
	#spmenu .parent > li.recruit > span::after,
	#spmenu .parent > li.recruit > span::before{
		content: "";
		position: absolute;
		top: 50%;
		right: 4.8%;
		width: 0;
		height: 0;
		background-color: #fff;
	}
	
	#spmenu .parent > li.news > span::after,
	#spmenu .parent > li.news > span::before{
		content: "";
		position: absolute;
		top: 50%;
		right: 4.8%;
		width: 0;
		height: 0;
		background-color: #fff;
	}
	
	#spmenu .parent > li.tpp{
		border-bottom: 0;
		/*background-color: #444;*/
	}
	
	/*#spmenu .parent > li.tpp > span{
		color: #fff;
		font-size: 1.6rem;
		padding: 7px 4.8% 6px;

	}*/
	
	#spmenu .parent > li.tpp > span::after,
	#spmenu .parent > li.tpp > span::before{
		content: "";
		position: absolute;
		top: 50%;
		right: 4.8%;
		width: 0;
		height: 0;
		background-color: #fff;
	}
	
	#spmenu .parent > li > span::after{
		transform: rotate(-90deg);
	}
	#spmenu .parent > li > span.open::after{
		content: none;
	}
	#spmenu .parent > li .child{
		display: none;
	}
	#spmenu .child{
		background-color: #444444;
	}
	#spmenu .child > li{
		border-bottom: 1px solid rgba(255,255,255,.4);		
	}
	#spmenu .child > li:last-of-type,
	#spmenu .child02 > li{
		border-bottom: none;
	}
	#spmenu .child > li span,
	#spmenu .child > li a{
		color: #fff;
	}
	#spmenu .child > li span{
		font-size: 1.6rem;
		padding: 9px 4.8% 8px;
		position: relative;
		display: flex;
		justify-content: space-between;
	}
	#spmenu .child > li span::after,
	#spmenu .child > li span::before{
		content: "";
		position: absolute;
		top: 50%;
		right: 4.8%;
		width: 13px;
		height: 1px;
		background-color: #fff;		
	}
	#spmenu .child > li > span::after{
		transform: rotate(-90deg);
	}
	#spmenu .child > li > span.open::after{
		content: none;
	}
	#spmenu .child02{
		padding: 0 5.5px;
		padding-bottom: 10px;
	}
	#spmenu .child02 li{
		padding: 0 8.8%;
	}
	#spmenu .child02 li a{
		font-size: 1.5rem;
		padding: 4px 0;
		display: inline-block;
	}
	#spmenu .child03 li{
		padding: 9px 4.8% 8px;
	}
	#spmenu .child03 li a{
		font-size: 1.6rem;
	}
	#spmenu li a:hover{
		text-decoration: none;
	}
	
	.drawer_head{
		height: 50px;
		display: flex;
		align-items: center;
		padding: 0 0 0 2%;
	}
	
	#spmenu .child02 li.mega_ttl_sub.naika{
		font-size: 1.5rem;
		color: #E87978;
		margin: 0 0 5px 0;
	}
	#spmenu .child02 li.mega_ttl_sub.geka{
		font-size: 1.5rem;
		color: #007CC0;
		margin: 10px 0 5px 0;
	}
}
@media screen and (max-width: 425px) {

	#header .header_info{
		padding: 0 0 0 2%;
	}
}
@media screen and (max-width: 320px) {


	#header .logo_img{
		margin-right: 2px;
		width: 40px;
	}
	#header .h_logo .logo_txtbox{
		margin: 0 0 0 2px;
	}
	#header .h_logo .logo_kana{
		transform: scale(0.8);
		transform-origin:0 0;
		display: block;
	}
	#header .h_logo .logo_txt02{
		font-size: 1.7rem;
	}

}

/*---------------- fixed ---------------*/

.fix_access{
	display: none;
	opacity: 0;
	width: 70px;
	position: fixed;
	right: 0;
	top:10%;
	z-index: 1;
	transition: 0.3s ease;
}
.page .fix_access:not(.clonefix){
	display: none;
}
.fix_access.is-show{
	opacity: 1;
	display: block;
}
.fix_access li{
	height: 170px;
}
.fix_access li + li{
	margin-top: 1px;
	height: 183px;
}
.fix_access li a{
	font-size: 1.8rem;
	background-color: #F6FCFA;
	display: block;
	width: 100%;
	height: 100%;
	background-image: url("../images/icon/h_parking.png");
	background-repeat: no-repeat;
	background-position: top 17px center;
	line-height: 1;
	padding: 58px 25px 0;
}
.fix_access li + li a{
	background-image: url("../images/icon/h_map.png");
}
.fix_access li a:hover{
	text-decoration: none;
	color: #00AC72;
	opacity: 0.7;
}

@media screen and (max-width: 767px) {
	
	.page .fix_access:not(.clonefix){
		display: none;
	}
	.fix_access{
		top: auto;
		opacity: 1;
		width: 100%;
		position: static;
	}
	.fix_access ul{
		display: flex;
	}
	.fix_access li{
		width: 50%;
		height: 40px;
	}
	.fix_access li + li{
		border-left: 1px solid #fff;
		height: 40px;
		margin-top: 0;
	}
	.fix_access li a{
		display: block;
		color: #fff;
		font-size: 1.6rem;
		background-color: #17A77E;
		height: 100%;
		width: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		background-image: none;
		padding: 0;
	}
	.fix_access li + li a{
		background-image: none;
	}
	.fix_access li a::before{
		content: "";
		background-size: contain;
		background-repeat: no-repeat;
	}
	.fix_access li:nth-of-type(1) a::before{
		background-image: url("../images/icon/fix_parking.png");
		width: 35px;
		height: 22px;
		margin-right: 5px;
	}
	.fix_access li:nth-of-type(2) a::before{
		background-image: url("../images/icon/fix_map.png");
		width: 14px;
		height: 19px;
		margin-right: 10px;
		position: relative;
		top: 1px;
	}
	.fix_access li a:hover{
		text-decoration: none;
		opacity: 1;
	}
	
	.clonefix {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    transition: .3s;
    transform: translateY(100%);
}
.clonefix.is-show {
    transform: translateY(0);
}
	.fix_access:not(.clonefix){
		height: 0;
	}
}

/*------------------------- footer --------------------*/

#footer{
}

/*------------------------------- main ----------------------------*/

/*------------------- IE11 -------------------*/
_:-ms-lang(x)::-ms-backdrop,
main{
	display: block;
}

#main_column{
	display: flex;
	justify-content: space-between;
	/*padding: 106px 0 0;*/
}
.page #main_column{
	padding: 100px 0 70px;
}
#main_column.column-one{
	display: block;
	padding: 0;
}
#content_column{
	width: 785px;
	max-width: 100%;
}
.page #content_column{
	border-top: none;
}
#main_column.column-one #content_column{
	width: 100%;
	border: none;
}
#side_column{
	width: 230px;
	max-width: 100%;
	padding-bottom: 50px;

}
.content_ttl{
	color:#00A97A;
	font-size: 2.7rem;
	font-weight: 500;
	position: relative;
	padding: 0 0 12px 28px;
	margin: 0 0 43px;
}
.content_ttl::before{
	content: "";
	width: 5px;
	height: 62px;
	background-color: #17A77E;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}
.content_ttl span{
	display: block;
	font-size: 1.4rem;
	color: #333333;
	line-height: 1;
}
.content_ttl a{
	color:#00A87D ;
	font-size: 3.1rem;
	position: relative;
	padding: 0;
}
.content_ttl .arrow{
	width: 100%;
}
.content_ttl .arrow::after{
	top:  -10px;
    right: 4px;
    left: auto;
    width: 15px;
    height: 15px;
    border-top: 2px solid #00AC72;
    border-right: 2px solid #00AC72;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.content_ttl.no_deco::after{
	content: none;
}
.content_ttl.no_deco{
	padding: 0 0 0 0;
}
#side_column .content_ttl{
	font-size: 2.4rem;
	padding: 0 0 10px;
}


/*----------------- side ------------------*/

#side_column{

}

#treat_time{
	padding: 40px 0 53px;
}
#treat_time .content_ttl{
	margin-bottom: 36px;
}
#treat_time .treat_ttl{
	font-size: 1.7rem;
	color: #1F1F1F;
	margin-top: 20px;
}
#treat_time .treat_time_txt{
	font-size: 1.7rem;
	color: #1F1F1F;
	margin-top: 10px;
}
#treat_time .treat_time_txt span{
	color: #00A76E;
}
#treat_time .treat_time_txt02{
	font-size: 1.4rem;
	color: #1F1F1F;
	text-align: right;
}
.treat_link,
.tanto_link{
	border: 3px solid #17A77E;
	border-radius: 7px;
	font-size: 1.8rem;
	color: #000;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 60px;
	margin: 37px 0 0;
	background-color: #fff;
	width: 230px;
	max-width: 100%;
}
.treat_link::before,
.tanto_link::before{
	content: "";
	width: 42px;
	height: 32px;
	background-image: url("../images/icon/side_calendar.png");
	background-size: contain;
	background-repeat: no-repeat;
	display: block;
	margin-right: 13px;
	position: relative;
	top: 3px;
}
.tanto_link::before{
	width: 27px;
	height: 35px;
	background-image: url("../images/icon/tanto.png");
	top: 0;
}
.treat_link:hover,
.tanto_link:hover{
	text-decoration: none;
	opacity: 0.7;
	color: #00B06A;
}

/*------------------- meettime --------*/


#meet_time{
	padding: 47px 0 53px;
	border-top: 1px solid #ccc;
}
#meet_time .content_ttl{
	margin-bottom: 25px;
}
#meet_time .meet_tbl{
	font-size: 1.7rem;
	display: flex;
	flex-wrap: wrap;
}
#meet_time .meet_tbl dt{
	width: 95px;
}
#meet_time .meet_tbl dd{
	width: calc(100% - 95px);
}


/*---------------- panf --------------*/


#panf{
	padding: 0 0 0;

}
#panf .panf_box{
	padding: 0 0 54px;
}
#panf .panf_box:first-of-type{
	padding-top: 0;
}
#panf .panf_box img{
	margin: 0 0 10px;
}
#panf .panf_box .freai{
	margin-left: 0;
}

#panf .panf_txt{
	font-size: 1.4rem;
}
#panf .panf_ttl{
	padding: 0;
	font-size: 1.8rem;
	display: block;
}
#panf .arrow::after{
	right: 4px;
	left: auto;
    width: 11px;
    height: 11px;
    border-top: 2px solid #17A77E;
    border-right: 2px solid #17A77E;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
#panf a *{
	transition: 0.3s ease;
}
#panf a:hover{
	text-decoration: none;
}
#panf a:hover p{
	text-decoration: none;
	opacity: 0.7;
}



/*-------------------- side_note ---------------*/

#side_note,
#side_note02{
	padding: 65px 0 0;
}

#side_note .side_note_txt,
#side_note02 .side_note_txt{
	font-size: 1.6rem;
	line-height: 1.7;
}

#side_note .side_note_txt span,
#side_note02 .side_note_txt span{
	color: #00A77B;
}



/*-------------------------- footer  ----------------------------*/

#bnr_area{
	padding: 0 0 245px;
	background-image: url("../images/content/bnr_bg.jpg");
	background-size: 100%;
	background-position: center bottom;
	background-repeat: no-repeat;
}
.page #bnr_area{
	padding: 100px 0 245px;
}

#bnr_area .bnr_list{
	display: flex;
	justify-content: center;
}
#bnr_area .bnr_list02{
	margin-top: 20px;
}
#bnr_area .bnr_list li{
	width: 353px;
	height: 88px;
	max-width: 100%;

}
#bnr_area .bnr_list li + li{
	margin-left: 20px;
}
#bnr_area .bnr_list02 li{
	width: 260px;
	height: 68px;
	max-width: 100%;
}
#bnr_area .bnr_list li a{
	display: flex;
/*	border: 1px solid #ccc;*/
	font-size: 1.8rem;
	line-height: 1.2;
	letter-spacing: 0.05em;
	align-items: center;
	width: 100%;
	height: 100%;
	box-shadow: 0px 0px 5px 0px rgba(221,221,221,0.75);
	background-color: #fff;
}
#bnr_area .bnr_list li .arrow{
/*	position: relative;
	padding: 0;*/
}
#bnr_area .bnr_list li .arrow::after{
/*	right: 26px;
	left: auto;
    width: 11px;
    height: 11px;
    border-top: 2px solid #17A77E;
    border-right: 2px solid #17A77E;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);*/
}
/*#bnr_area .bnr_list02 li .arrow::after{
	right: 21px;
}
#bnr_area .bnr_list li .arrow:hover{
	text-decoration: none;
	opacity: 0.7;
}*/
#bnr_area .bnr_list .bnrimg{
	width: 88px;
}
#bnr_area .bnr_list .bnrtxt{
	width: calc( 100% - 88px);
	padding: 0 40px 0 30px;
	display: flex;
	text-align: left;
}
#bnr_area .bnr_list02 .bnrimg{
	width: 68px;
}
#bnr_area .bnr_list02 .bnrtxt{
	width: calc( 100% - 68px);
	padding: 0 30px 0 20px;
}

#bnr_area .bnr_list02 .bnrtxt .small{
	font-size: 80%;
}


/*------------ footer main ----------------*/


#footer{
	position: relative;
	padding: 45px 0 40px;
}

#footer .f_wrap{
	width: 1400px;
	max-width: 100%;
	margin: auto;
	padding: 0 45px;
}
#footer .f_wrap.flex{
	justify-content: space-between;
	align-items: flex-end;
}
#footer .f_wrap + .f_wrap{
	margin-top: 55px;
}
#footer .f_logo{
	padding-right: 44px;
}
#footer .f_logo > span.flex{
	display: flex;
	line-height: 1;
	color: #222222;
}
#footer .logo_img{
	padding-top: 18px;
}
#footer .f_logo .logo_txt01{
	font-size: 1.4rem;
	padding-top: 30px;
	margin-left: 7px;
}
#footer .f_logo .logo_txtbox{
	margin-left: 15px;
}
/*------------------- IE11 -------------------*/
_:-ms-lang(x)::-ms-backdrop,
#footer .f_logo .logo_txtbox{
	margin-top: 5px;
}
#footer .f_logo .logo_kana,
#footer .f_logo .logo_txt02{
	display: block;
}
#footer .f_logo .logo_kana{
	font-size: 1.3rem;
	letter-spacing: 0.25em;
	margin-bottom: 0px;
}
#footer .f_logo .logo_txt02{
	font-size: 3.2rem;
	letter-spacing: 0.05em;
	line-height: 1;

}

#footer .f_logo a:hover{
	text-decoration: none;
	opacity: 0.7;
}
#footer .f_logo a:hover img{
	opacity: 1;
}
#footer .f_address{
	font-size: 1.6rem;
	line-height: 1.7;
	color: #1F1F1F;
	margin-right: auto;
}
#footer .f_address a{
	color: #1F1F1F;
}
#footer .f_link{
	display: flex;
	font-size: 1.4rem;
}
#footer .f_link li + li::before{
	content: "｜";
}

#footer .cpy{
	font-size: 1.2rem;
	text-align: right;
	margin-top: 35px;
}

#footer .f_bnr{
	display: flex;
	justify-content: flex-end;
}
#footer .f_bnr a:hover,
#footer .f_bnr a:hover p{
	text-decoration: none;
	opacity: 0.7;
}
#footer .f_bnr li{
	width: 260px;
	height: 70px;
}
#footer .f_bnr01 a{
	display: block;
	width: 100%;
	height: 100%;
	padding: 0;
}

#footer .f_bnr02{
	margin-left: 21px;
}


#page_top{
	position: fixed;
	right: 0;
	bottom: 0;
	width: 70px;
	height: 70px;
	z-index: 1;
}
#page_top a{
	display: block;
	width: 100%;
	height: 100%;
	background-color: #00A77B;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 5px 0 0;
}
#page_top a::before{
	content: "";
	width: 14px;
	height: 14px;
	border: 2px solid #fff;
	border-right: none;
	border-bottom: none;
	transform: rotate(45deg);
	display: block;
}
#page_top a:hover{
	opacity: 1;
	background-color: #4B4B4B;
}

@media screen and (max-width:1280px){
	
	#main_column{
		padding: 100px 2%;
	}
	.page #main_column{
		padding: 45px 2%;
	}
	
	#footer .f_wrap{
		padding: 0 5%;
	}
	#footer .f_logo{
		padding-right: 1%;
	}
}

/*---------------- sp-------------------*/

@media screen and (max-width:767px){
	.pc {
		display: none !important;
	}	
	
	.sp{
		display: block !important;
	}

	.inline-blck{
		display: inline-block !important;
	}
	.wrap{
		width: 100%;
		padding: 0 5.2%;
	}
	
	#page_top{
		width: 40px;
		height: 40px;
		/*bottom: 45px !important;*/
		right: 9px;
	}
	#page_top a{
		border-radius: 100px;
	}
	#page_top a::before{
		width: 8px;
		height: 8px;
		border-width: 2px;
	}
	
	#main_column {
		padding: 25px 5.2% 0;
		display: block;
	}
	.page #main_column{
		padding: 25px 0 0;
	}
	#content_column{
		margin-bottom: 60px;
	}
	.page #content_column{
		padding:  0 5.2%;
	}
	.content_ttl {
		font-size: 2.2rem;
		padding: 0 0 10px 14px;
	}
	.content_ttl a{
		font-size: 2.2rem;
	}
	.content_ttl::after{
		width: 15px;
	}
	
	.content_ttl::before{
		height: 44px;
	}
	
	#side_column{
		padding: 35px 5.2% 0;
		border: none;
		width: 100%;
	}

	#treat_time_sp{
		padding: 30px 0 30px;
		border-top: 1px solid #ccc;
	}
	#treat_time_sp > .flex{
		justify-content: space-between;
	}
	#treat_time_sp .content_ttl{
		margin-bottom:19px;
		font-size: 1.7rem;
	}
	#treat_time_sp .treat_ttl{
		font-size: 1.3rem;
		color: #1F1F1F;
		margin-top: 6px;
	}
	#treat_time_sp .treat_ttl span{
		font-weight: bold;
	}
	#treat_time_sp .treat_time_txt{
		font-size: 1.3rem;
		color: #1F1F1F;
		margin-top: 0;
	}
	#treat_time_sp .treat_time_txt span{
		color: #00A76E;
		margin-right: 1em;
	}
	#treat_time_sp .treat_time_txt + .treat_time_txt span{
		margin-right: 0.5em;
	}
	#treat_time_sp .treat_time_txt02{
		font-size: 1.4rem;
		color: #1F1F1F;
		text-align: right;
	}
	.treat_link,
	.tanto_link{
		border: 2px solid #17A77E;
		border-radius: 7px;
		font-size: 1.3rem;
		color: #17A77E;
		display: flex;
		justify-content: center;
		align-items: center;
		width: 160px;
		height: 38px;
		margin: 7px 0 0;
	}
	.treat_link::before{
		content: "";
		width: 30px;
		height: 26px;
		background-image: url("../images/icon/side_calendar.png");
		background-size: contain;
		background-repeat: no-repeat;
		display: block;
		margin-right:5px;
		position: relative;
		top: 3px;
	}
	.tanto_link::before{
		width: 20px;
		height: 26px;
		margin-right: 5px;
	}
	.tanto_link:hover,
	.treat_link:hover{
		text-decoration: none;
		opacity: 1;
	}
	.arrow_circle::before{
		width: 20px;
		height: 20px;
	}
	.arrow_circle::after{
		width: 7px;
		height: 7px;
		right: 8px;
	}

	/*------------------- meettime --------*/


	#meet_time_sp{
		padding: 30px 0 0;
		border-top: 1px solid #ccc;
	}
	#meet_time_sp .content_ttl{
		margin-bottom: 20px;
		font-size: 1.7rem;
	}
	#meet_time_sp .meet_tbl{
		font-size: 1.3rem;
		display: flex;
		flex-wrap: wrap;
	}
	#meet_time_sp .meet_tbl dt{
		width: 6em;
		font-weight: bold;
	}
	#meet_time_sp .meet_tbl dd{
		width: calc(100% - 6em);
	}
	
	#side_note_sp{
		padding: 30px 0 75px;
	}

	#side_note_sp .side_note_txt,
	#side_note .side_note_txt,
	#side_note02 .side_note_txt{
		font-size: 1.2rem;
		line-height: 1.6;
	}

	#side_note_sp .side_note_txt span{
		color: #0CAB72;
	}
	
	
	#panf_sp{
		display: flex !important;
		flex-wrap: wrap;
		padding: 0 0 30px;
		justify-content: space-between;
		border-top: 1px dotted #ccc;
	}
	#panf_sp .panf_box{
		width: calc( 50% - 5px);
		position: relative;
		padding: 33px 0 0 ;
	}

	#panf_sp .panf_box.hureai,
	#panf_sp .panf_box{
		display: flex;
		width: 100%;
		margin: auto;
		align-items: center;
		padding: 15px 15px 15px 0;
		border-bottom: 1px dotted #ccc;
	}
	#panf_sp .panf_ttl{
		font-size: 1.6rem;
		font-weight: bold;
		line-height: 1.3;
	}
	#panf_sp .panf_txt{
		font-size: 1.3rem;
	}
	#panf_sp .panf_box a{
		position: relative;
		width: 145px;
		padding: 0 10px 0 0;
	}
	#panf_sp .panf_box.hureai a,
	#panf_sp .panf_box a{
		width: 145px;
		padding: 0;
		position: static;
	}
	#panf_sp .panf_box .arrow::after{
		right: -9px;
		bottom: 45px;
		margin-bottom: 0;
		left: auto;
		width: 10px;
		height: 10px;
		border-top:1px solid #00AC72;
		border-right: 1px solid #00AC72;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	#panf_sp .panf_box.hureai .arrow::after,
	#panf_sp .panf_box .arrow::after{
		bottom: 45px;
		right: 0;
	}
	#panf_sp .panf_box .panf_cnt{
		padding: 0 0 13px;
	}
	#panf_sp .panf_box.hureai .panf_cnt,
	#panf_sp .panf_box .panf_cnt{
		width: calc( 100% - 145px);
		padding: 0 0 35px;
	}
	
	#bnr_area,
	.page #bnr_area{
		padding: 30px 0 60px;
	}
	#bnr_area .bnr_list{
		display: block;
	}
	#bnr_area .bnr_list li{
		width: 100%;
		height: 45px;
		background-color: #fff;
	}
	#bnr_area .bnr_list li + li{
		margin-top: 5px;
		margin-left: 0;
	}
	#bnr_area .bnr_list li a {
		display: flex;
		font-size: 1.4rem;
		line-height: 1.2;
		letter-spacing: 0.05em;
		align-items: center;
		width: 100%;
		height: 100%;
		border-color: #17A77E;
	}
	#bnr_area .bnr_list .bnrimg{
		width: 45px;
	}
	#bnr_area .bnr_list .bnrtxt{
		width: calc( 100% - 45px);
		padding: 0 0px 0 15px;
		justify-content: flex-start;
		/*font-weight: bold;*/
	}
	#bnr_area .bnr_list .bnrtxt br{
		display: none;
	}
	#bnr_area .bnr_list li .arrow::after {

	}
	#bnr_area .bnr_list02{
		margin-top:5px;
		display: flex;
		flex-wrap: wrap;
	}
	#bnr_area .bnr_list02 li{
		width: 100%;
	}
	#bnr_area .bnr_list02 li + li{
		margin-top: 5px;
	}
	
	#footer {
		padding: 10px 0 60px;
		position: relative;
	}
	
	#footer .f_wrap.flex{
		display: block;
		padding: 0 5.2%;
	}
	#footer .f_wrap + .f_wrap{
		margin-top: 25px;
	}
	#footer .f_link {
	    font-size: 1.3rem;
		margin-bottom: 30px;
	}
	#footer .f_logo{
		padding: 0;
	}
	#footer .f_logo .flex.sp{
		flex-wrap: wrap;
		align-items: center;
		display: flex !important;
	}
	#footer .logo_img{
		width: 47px;
		padding: 0;
	}
	#footer .logo_img img{
		width: 100%;
	}
	#footer .f_logo .logo_txtbox{
		margin-left: 0;
		margin-top: 10px;
		width: 100%;
		align-items: center;
		display: flex;
	}
	#footer .f_logo .logo_txt01 {
		font-size: 1.0rem;
		padding-top: 0px;
		margin-left: 5px;
	}

	#footer .f_logo .logo_txt02{
		font-size: 1.9rem;
		display: inline-block;
	}
	#footer .f_logo .logo_kana{
		font-size: 1rem;
		letter-spacing: 0;
		margin-left: 5px;
	}
	#footer .f_logo .logo_kana.sp{
		display: inline-block !important;
	}
	#footer .f_logo > span.flex{
		flex-wrap: wrap;
		align-items: center;
	}
	#footer .to_site.arrow{
		font-size: 1.2rem;
		color: #fff;
		font-weight: bold;
		background-color: #444444;
		border-radius: 3px;
		width: 105px;
		height: 24px;
		display: block;
		margin-left: 15px;
		padding: 2px 0 0 8px;
		display: flex !important;
		justify-content: left;
	}
	#footer .to_site.arrow::after{
		right: 10px;
		top: 1px;
		width: 7px;
		height: 7px;
		border-top: 2px solid #fff;
		border-right: 2px solid #fff;
		left: auto;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	#footer .f_address{
		font-size: 1.3rem;
		line-height: 1.7;
		margin-top: 10px;
		
	}
	#footer .f_wrap + .f_wrap.flex {
		margin-top: 30px;
		align-items: flex-start;
	}
	#footer .f_bnr li{
		width: 170px;
		height: 45px;
	}
	#footer .f_bnr01 a img{
		width: 100%;
	}
	#footer .cpy{
		font-size: 1rem;
		margin-top: 12px;
	}
	
}
@media screen and (max-width: 640px) {
	


}

@media (min-width: 768px) {
	body {
		min-width: 1100px;
		margin-left: auto;
		margin-right: auto;
	}
}


/*-------------------------------　共通パーツ等 ------------------------------------*/



/*-------　パンくず------------*/

#pankz{
	padding: 12px 0 0 0;
	/*padding: 12px 0 17px 0;*/
}

#pankz ul{
	display: flex;
}
#pankz ul li + li::before{
	content: "＞";
	display: inline-block;
	margin: 0 12px 0 13px;
}
#pankz ul li a,
#pankz ul li span{
	font-size: 1.4rem;
	color: #222222;
}
#pankz ul li span{
	color: #0CAB72;
}
#pankz.pankz_pink ul li span{
	color: #E47977;
}

#pankz.bg{
	background-color: #EDF9F5;
	/*background-color: rgba(31,170,117,0.04);*/
}



/*--------　下層ページmv------------*/

.page #mv.bgimg{
	background-repeat: no-repeat;
	background-size: cover;
	background-position: right top;	
}
.page #mv.right_img{
	position: relative;
}
.page #mv.right_img .mv_right_img{
	position: absolute;
	right: 0;
	top: 0;
}

.page #mv.bg{
	background-color: #F8F7F3;
}
.page #mv.bg_pink{
	background-color: #FCF1F1;
}
.page #mv {
    padding: 53px 0 53px;
}
.page #mv.pamph_btn_on {
    padding: 15px 0 15px;
}
.page #mv .page_ttl {
    font-size: 4.2rem;
    color: #17A77E;
}
.page #mv .page_ttl span{
	font-size: 3.7rem;
}
.page #mv.bg_pink .page_ttl {
    color: #E47977;
}
.page #mv .page_ttl .page_ttl_icon{
	font-size: 1.6rem;
	font-family: 'Noto Sans JP', sans-serif;
	color: #fff;
	background-color: #E65247;
	width: auto;
	display: inline-block;
	height: 26px;
	border-radius: 15px;
	text-align: center;
	padding: 4px 10px 0;
	line-height: 1;
	margin-left: 25px;
	position: relative;
	top: -9px;
}
.page #mv.pamph_btn_on .wrap{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.page #mv .pamph_btn{
	position: relative;
	display: flex;
	align-items: flex-end;
	height: 151px;
}
.page #mv .pamph_btn a{
	width: 376px;
	height: 90px;
	background-color: #fff;
	display: flex;
	box-shadow: 0 0 5px 0 rgba(221,221,221,.75);
	position: relative;
	align-items: center;
	font-size: 1.8rem;
	padding: 0 60px 0 0;
	text-align: right;
	justify-content: flex-end;
}
.page #mv .pamph_btn a::after {
    right: 27px;
    left: auto;
    width: 10px;
    height: 10px;
    border-top: 2px solid #00A87D;
    border-right: 2px solid #00A87D;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.page #mv .pamph_btn .pamph_img{
	position: absolute;
	left: -31px;
	bottom: 0;
}


#mv_spimg img{
	width: 100%;
}

/*---------ttl関連-------------*/

.content_subttl{
	font-size: 2.1rem;
	background-color: #F8F7F3;
	padding: 6px 0 6px 15px;
	margin-bottom: 40px;
	color: #fff;
	text-align: center;


}
.content_subttl.green{
	background-color: #17A77E;
}
.content_subttl.red{
	background-color: #E87978;
}
.content_subttl.blue{
	background-color: #007CC0
}
.content_subttl02{
	font-size: 2.1rem;
	background-color: #F8F7F3;
	padding: 9px 0 8px 15px;
	margin-bottom: 35px;
}

/*------------------- IE11 -------------------*/
_:-ms-lang(x)::-ms-backdrop,
.content_subttl02{
	padding: 7px 0 3px 15px;
}
.content_subttl02::before{
	width: 3px;
	height: 23px;
	background-color: #00A77B;
	display: inline-block;
	content: "";
	margin-right: 24px;
	position: relative;
	top: 3px;
}
.pink .content_subttl02{
	background-color: #FCF1F1;
}
.pink .content_subttl02::before{
	background-color: #E67875;
}

.content_subttl02 .small{
	font-size: 85%;
}
.content_subttl02 .new{
	color: #fff;
	font-size: 1.3rem;
	font-weight: bold;
	background-color: #DE3D5D;
	width: 63px;
	height: 22px;
	border-radius: 22px;
	display: inline-block;
	text-align: center;
	margin-left: 20px;
	position: relative;
	top: -3px;
	line-height: 1;
	padding-top: 3px;
}
.content_subttl03{
	border-bottom: 1px solid #00AC72;
	font-size: 1.8rem;
	font-weight: bold;
	padding-bottom: 6px;
	margin-bottom: 22px;
	display: flex;
	line-height: 1.4;
}
.content_subttl03::before{
	content: "";
	background-color: #00A77D;
	display: inline-block;
	margin-right: 10px;
	width: 9px;
	height: 9px;
	position: relative;
	top: 0.6em;
}
.pink .content_subttl03{
	border-bottom: 1px solid #EA7670;
}
.pink .content_subttl03::before{
	background-color: #E77772;
}

.content_subttl03 span{
	width: calc( 100% - 9px - 7px);
}

.bar_ttl{
	color: #fff;
	background-color: #000;
	font-size: 1.8rem;
	font-weight: bold;
	padding: 8px 20px 8px;
	margin: 30px 0 15px;
}

.bar_blue.bar_ttl{
	background-color: #007AC3;
}

.orange.bar_ttl{
	background-color: #FFF9EB;
	color: #000;
}
.bar_ttl.maru_on{
	display: flex;
	align-items: center;
}
.bar_ttl.maru_on span:not(.maru){
	width: calc( 100% - 36px - 12px);
}
.bar_ttl .maru{
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background-color: #FBAF00;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 2.3rem;
	font-weight: 500;
	padding-bottom: 3px;
	margin-right: 12px;
}

@media screen and (max-width: 767px) {
	
	.content_subttl02{
		font-size: 1.8rem;
		line-height: 1.3;
		padding: 11px 10px 12px 30px;
		position: relative;
		margin-bottom: 20px;
	}
	
	.content_subttl02::before{
		margin-right: 10px;
		top: 50%;
		transform: translateY(-50%);
		position: absolute;
		left: 10px;
	}
	.content_subttl02 .new{
		font-size: 1.1rem;
		width: auto;
		padding: 3px 10px 3px;
		height: auto;
		top: -1px;
		margin-left: 10px;
	}
	.content_subttl03{
		font-size: 1.6rem;
		padding-bottom: 4px;
		margin-bottom: 10px;
	}
	.bar_ttl {
		font-size: 1.6rem;
		padding: 5px 10px 5px;
		margin: 15px 0 10px;
	}
	.bar_ttl .maru{
		width: 25px;
		height: 25px;
		font-size: 1.8rem;
		padding-bottom: 0;
	}
	.bar_ttl.maru_on span:not(.maru){
		width: calc( 100% - 25px - 12px);
		line-height: 1.2;
	}
	
}
/*---- 症状から診療科を探すボタン　---------*/

.service_search_link{
	border-radius: 20px;
	font-size: 1.6rem;
	color: #fff;
	display: flex;
	align-items: center;
	/*width: 100%;*/
	height: 40px;
	margin: 0;
	background-color: #00AA7B;
	/*width: 230px;
	max-width: 100%;*/
	padding: 0 35px 0 18px;
}
.service_search_link::before{
	content: "";
	width: 26px;
	height: 26px;
	background-image: url("../images/icon/sp_menu_search_w.png");
	background-size: contain;
	background-repeat: no-repeat;
	display: block;
	margin-right: 10px;
	margin-left: 0;
	position: relative;
	top: 1px;
}
.service_search_link.arrow::after {
    right: 20px;
    left: auto;
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.service_search_link:hover{
	text-decoration: none;
	opacity: 0.7;
}

.btn_std{
	box-shadow:0px 0px 5px 1px rgba(221,221,221,.85);
	height: 38px;
	margin: 25px 0 auto auto;
	border-radius: 5px;
	display: block;
	font-size: 1.6rem;
	text-align: center;
	padding: 6px 40px 0 20px;
	margin: auto;
}
.btn_std.btn_circle{
	height: 40px;
	border-radius: 20px;
}
/*------------------- IE11 -------------------*/
_:-ms-lang(x)::-ms-backdrop,
.btn_std{
	padding-top: 7px;
}

.btn_std::before{
	right: 17px;
	left: auto;
    width: 9px;
    height: 9px;
    border-top: 3px solid #17A77E;
    border-right: 3px solid #17A77E;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.btn_std:hover{
	text-decoration: none;
	opacity: 0.7;
	color: #00B06A;
}
.btn_std.btn_green{
	background-color: #17A77E;
	color: #fff;
}
.btn_std.btn_green::before{
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
}


/*---------------- -----------------*/


.btn_01{
    font-size: 1.6rem;
    line-height: 1.2;
    color: #202020;
    display: inline-flex;
    align-items: center;
    height: 48px;
    border-radius: 23px;
    border: 2px solid #00A77B;
    position: relative;
    padding: 0 20px 0 68px;
} 
.btn_01::before{
    content: "";
    display: block;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 19px;
    margin: auto;
}
.btn_01.cal::before{
    background-image: url(../images/icon/side_calendar2.png);
    width: 39px;
    height: 32px;
}
.btn_01.pri::before{
    background-image: url(../images/icon/print.png);
    width: 32px;
    height: 30px;
}
.btn_01:hover{
    text-decoration: none;
    opacity: 0.7;
}


.btn_03{
    font-size: 1.6rem;
    line-height: 1.2;
    color: #FFF;
    background: #00AA7B;
    display: inline-flex;
    align-items: center;
    height: 40px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0px 0px 5px 0 rgba(0,0,0,0.2);
} 
.btn_03.arrow::after{
    right: 17px;
    left: auto;
    width: 8px;
    height: 8px;
    border-top: 2px solid #FFF;
    border-right: 2px solid #FFF;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.btn_03:hover{
    text-decoration: none;
    opacity: 0.7;
}
.btn_03.search{
    padding: 0 44px 0 55px;    
}
.btn_03.search::before{
    content: "";
    width: 26px;
    height: 26px;
    display: inline-block;
    background-image: url(../images/icon/search.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 17px;
}
.btn_03.check{
    padding: 0 39px 0 46px;    
}
.btn_03.check::before{
    content: "";
    width: 18px;
    height: 17px;
    display: inline-block;
    background-image: url(../images/icon/check.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 2px;
    bottom: 0;
    margin: auto;
    left: 20px;
}
@media all and (-ms-high-contrast: none) {
    .btn_03.check{
        padding-top: 2px;    
    }
    .btn_03.check::before{
        top: 0px;
    }
}
.btn_03.look{
    padding: 0 44px 0 33px;    
}


/*------------- 探す・送信するボタン--------------*/

.btn_area{
	padding: 60px 0 0;
}
.btn_area a,
.btn_area button{
	font-size: 2.3rem;
	color: #fff;
	width: 390px;
	height: 90px;
	max-width: 100%;
	border-radius: 5px;
	box-shadow: 2px 2px 6px 0px rgba(0,0,0,0.3);
	display: block;
	margin: auto;
	padding: 0 0 0 0px;
	border: 1px solid #CCCCCC;
	cursor: pointer;
	font-weight: bold;
	background-color: #007CC0;
}
.btn_area a span,
.btn_area button span{
	display: flex;
	align-items: center;
	height: 100%;
	text-align: center;
	justify-content: center;
}
.btn_area a.arrow::after,
.btn_area button.arrow::after{
	right: 24px;
	left: auto;
    width: 15px;
    height: 15px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.btn_area a:hover,
.btn_area button:hover{
	opacity: 0.7;
}

@media screen and (max-width: 767px) {
	
	.btn_area {
		padding: 35px 0 0;
	}
	.btn_area a,
	.btn_area button{
		font-size: 1.4rem;
		width: 100%;
		height: 55px;
		max-width: 90%;
		padding: 0 0 0 0px;
		border-radius: 3px;
	}
	
	.btn_area a span::before,
	.btn_area button span::before{
		width: 28px;
		height: 28px;
		margin-right: 10px;
	}
	.btn_area a.arrow::after,
	.btn_area button.arrow::after{
		right: 17px;
		width: 10px;
		height: 10px;
	}
	
	.btn_std{
		font-size: 1.4rem;
	}
	
	.btn_std.btn_circle{
		height: auto;
		padding: 5px 30px 6px 20px;
		margin:  0;
		display: inline;
	}
	
	.service_search_link{
		border-radius: 20px;
		font-size: 1.4rem;
		color: #fff;
		display: inline;
		align-items: center;
		/*width: 100%;*/
		height: 40px;
		margin: 0;
		background-color: #00AA7B;
		/*width: 230px;
		max-width: 100%;*/
		padding: 5px 35px 6px 10px;
	}
	.service_search_link::before{
		content: "";
		width: 22px;
		height: 22px;
		background-image: url("../images/icon/sp_menu_search_w.png");
		background-size: contain;
		background-repeat: no-repeat;
		display: inline-block;
		margin-right: 5px;
		margin-left: 0;
		position: relative;
		top: -2px;
	}
	.service_search_link.arrow::after {
		right: 20px;
		left: auto;
		width: 10px;
		height: 10px;
		border-top: 2px solid #fff;
		border-right: 2px solid #fff;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	
	.btn_03{
		height: auto;
		font-size: 1.4rem;
	}
	
	.btn_03.check{
		padding: 8px 28px 9px 30px;
	}
	
	.btn_03.check::before{
		left: 10px;
	}
	
}

@media screen and (max-width: 360px) {
	.btn_area button{
		max-width: 100%;
	}
}



.page #content_column .txt{
	font-size: 1.6rem;
	line-height: 1.7;
}
.page #content_column .tac{
	text-align: center;
}
.page #content_column .tar{
	text-align: right;
}
.page #content_column .tal{
	text-align: left;
}
.page #content_column .txt-green{
	color: #00A77D;
}
.page #content_column .txt-red{
	color: #E95143;
}
.page #content_column .txt-blue{
	color: #007BBF;
}
.page #content_column .txt-orange{
	color: #FF9900;
}
.page #content_column .txt-pink{
	color: #E57874;
}
.page #content_column .ts110{
	font-size: 110%;
}
.page #content_column .ts120{
	font-size: 120%;
}
.page #content_column .ts130{
	font-size: 130%;
}
.page #content_column .ts210{
	font-size: 210%;
}

.page #content_column .yellow_box{
	background-color: #FFFCEC;
	padding: 28px 35px;
}
.page #content_column .blue_box{
	border: 3px solid #007CC0;
	background-color: #F7FBFD;
	padding: 28px 35px;
}
.page #content_column .pink_box {
    background-color: #FBEDED;
    padding: 28px 35px;
}

.page #content_column .red_box {
    border: 3px solid #E95143;
    background-color: #FBEDED;
	padding: 28px 35px;
}

.page #content_column .red_box {
	padding: 20px 27px;
}

.num_list{
	display: flex;
	flex-wrap: wrap;
	font-size: 1.6rem;
}
.num_list dt{
	width: 1.5em;

	font-weight: bold;
	color: #00A779;
}
.blue_box .num_list dt{
	color: #007BBF;
}
.num_list dd{
	width: calc( 100% - 1.5em );
	margin-bottom: 5px;
}

.note_box_ttl{
	position: relative;
}
.note_box_ttl{
	font-size: 1.8rem;
	font-weight: bold;
	margin-bottom: 20px;
}
.note_box_ttl::before {
    content: "";
    width: 3px;
    height: 20px;
    background-color: #E55246;
    position: absolute;
    left: -35px;
    top: 0.4em;
}
.download_list li{
	display: table;
	width: auto;
	height: 54px;
}
.download_list li + li{
	margin-top: 10px;
}
.download_list li a{
	display: flex;
	align-items: center;
	box-shadow: 0px 0px 5px 0px rgba(221,221,221,0.75);
	width: 100%;
	height: 100%;
	font-size: 1.6rem;
	padding: 0 25px;
	line-height: 1.3;
}
@-moz-document url-prefix() {
.download_list li a{
	height: 54px;
	}
}
.download_list li a:hover{
	text-decoration: none;
	opacity: 0.7;
}
.download_list li a::before{
	content: "";
	width: 20px;
	height: 26px;
	background-image: url("../images/icon/pdf.png");
	background-size: contain;
	background-repeat: no-repeat;
	margin-right: 23px;
}
.download_list li a span{
	width: calc( 100% - 20px - 23px);
}


.page #content_column .txt + .txt{
	margin-top: 2em;
}
.page #content_column .txt-green{
	color: #17A77E;
}
.page #content_column a.uline{
	text-decoration: underline;
}
.page #content_column a.uline:hover{
	text-decoration: none;
}
#content_column .list li{
	padding-left: 1.5em;
	text-indent: -1.5em;
	font-size: 1.6rem;
	line-height: 2;
}
#content_column .list.lw li{
	line-height: 1.7;
}
#content_column .list li::before{
	content: "●";
	color: #00A77B;
	margin-right: 0.5em;
}
#content_column .pink .list li::before{
	color: #E57874;
}
#content_column .pink_box .list li::before {
    color: #E6513F;
}
#content_column .list{
	/*padding: 20px 0;*/
}
.page #content_column .tbl-style01 th{
	/*font-weight: bold;*/
	font-size: 1.6rem;
	/*line-height: 2;*/
	background-color: #F8F7F3;
	border: 1px solid #CCCCCC;
	text-align: left;
	vertical-align: middle;
	padding: 15px 20px;
}
.page #content_column .tbl-style01.green th{
	background-color: #00A87A;
	color: #fff;
}
.page #content_column .tbl-style01 .title_col{
	background-color: #F6FCFA;
	color: #00A779;
}
.page #content_column .tbl-style01 td{
	font-size: 1.6rem;
	/*line-height: 2;*/
	border: 1px solid #CCCCCC;
	padding: 15px 20px;
	vertical-align: middle;
}

.page #mv .mv_txt{
	font-size: 1.7rem;
	line-height: 1.7;
	margin-top: 20px;
	padding-bottom: 5px;
	width: 420px;
	max-width: 100%;
}
.page #mv .mv_txt span{
	color: #0CAB73;
	font-weight: bold;
}

/*--------- backnumber ---------------*/


.back_list{
	display: flex;
	flex-wrap: wrap;
}
.back_list li{
	width: calc( ( 100% - 32px * 3 )/ 4);
	margin-right: 32px;
	text-align: center;
	margin-top: 30px;
}
.back_list li:nth-of-type(4n){
	margin-right: 0;
}
.back_list li .magazine_name{
	margin-top: 15px;
}
.back_list li img{
	width: 100%;
}
.back_list li a img,
.back_list li a p{
	transition: 0.3s ease;
}
.back_list li a:hover{
	text-decoration: none;
}


.back_list li a:hover *{
	text-decoration: none;
	opacity: 0.7;
}
@media screen and (max-width: 767px){
	.back_list li{
		width: calc( ( 100% - 20px )/ 3);
		margin-right: 10px;
		margin-top: 20px;
	}
	.back_list li:nth-of-type(4n){
		margin-right: 10px;
	}
	.back_list li:nth-of-type(3n){
		margin-right: 0;
	}
	
	.back_list li .magazine_name{
		margin-top: 10px;
	}
	
	.page #content_column .txt.lh15{
		line-height: 1.5;
	}
	
	.page #content_column .red_box {
		padding: 15px 15px;
	}

}
@media screen and (max-width: 425px){
	
	.back_list li {
		width: calc( ( 100% - 10px )/ 2);
		margin-right: 10px;
		margin-top: 20px;
	}
	.back_list li:nth-of-type(3n){
		margin-right: 10px;
	}
	.back_list li:nth-of-type(2n){
		margin-right: 0;
	}
	
}


@media screen and (max-width: 1280px) {
	.page #mv.right_img .mv_right_img{
		width: 50%;
	}
	.page #mv.right_img .mv_right_img img{
		width: 100%;
	}
}
@media screen and (max-width: 767px) {
	
	.page #header{
		padding: 0;
	}
	.page #main {
		margin-top: 50px;
	}
	
	#pankz{
		display: none;
	}

	.page #mv {
		padding: 20px 0 20px;
	}
	.page #mv .page_ttl {
		font-size: 2.5rem;
	}
	.page #mv .page_ttl span{
		font-size: 1.8rem;
	}
	.page #mv .page_ttl .page_ttl_icon{
		top: -4px;
		font-size: 1.2rem;
		padding: 6px 10px 0;
	}
	.page #mv.pamph_btn_on .wrap{
		display: block;
	}
	.page #mv .pamph_btn{
		width: 90%;
		margin: auto;
		height: 100px;
	}
	.page #mv .pamph_img{
		width: 100px;
	}
	.page #mv .pamph_btn a{
		height: 60px;
		font-size: 1.5rem;
		padding-right: 25px;
		width: 100%;
	}
	.page #mv .pamph_btn a::after{
		right: 10px;
		top: 2px;
	}
	.page #mv.right_img .mv_right_img{
		position: static;
		margin: 15px auto auto;
		width: auto;
		max-width: 100%;
	}

	.page #mv.right_img .mv_right_img img{
		max-width: 100%;
	}
	.page #mv .mv_txt{
		font-size: 1.3rem;
		line-height: 1.6;
		width: 100%;
		margin-top: 15px;
	}
	.page #mv .mv_txt br{
		display: none;
		
	}
	.page #panf_sp{

	}
	#side_note{
		padding-top: 35px;
	}
	.page #side_note,
	.page #side_note02{
		padding: 25px 0 35px;
	}
	.page #side_note .side_note_txt,
	.page #side_note02 .side_note_txt{
		font-size: 1.3rem;
		line-height: 1.6;
	}
	.content_subttl {
		font-size: 1.8rem;
		padding: 6px 6px 6px ;
		margin-bottom: 20px;
	}
	.content_subttl::before{
		height: 20px;
		top: 3px;
		margin-right: 10px;
	}
	.page #content_column .txt{
		font-size: 1.4rem;
	}
	#content_column .list{
		padding: 10px 0 ;
	}
	#content_column .list li{
		font-size: 1.4rem;
		line-height: 1.7;
	}
	.page #content_column .yellow_box,
	.page #content_column .blue_box,
	.page #content_column .pink_box {
		padding: 15px;
	}
	.note_box_ttl{
		font-size: 1.6rem;
		margin-bottom: 10px;
	}
	.note_box_ttl::before {
		left: -15px;
	}
	.num_list{
		font-size: 1.4rem;
	}

	.download_list li{
		height: 45px;
		width: 100%;
	}
	.download_list li a::before{
		margin-right: 10px;
	}
	.download_list li a {
		font-size: 1.4rem;
		padding: 0 15px;
	}
	.download_list li a span{
		width: calc( 100% - 20px - 10px );
	}
	.page #content_column .tbl-style01{
		width: 100%;
		border-top: 1px solid #cccccc;
	}
	
	.page #content_column .tbl-style01 th,
	.page #content_column .tbl-style01 .title_col,
	.page #content_column .tbl-style01 td{
		display: block;
		width: 100%;
		border-top: none;
		padding: 10px;
		font-size: 1.4rem;
	}

}
@media screen and (max-width: 360px) {
	

}


/*----------------- news -----------------*/


#news{

}

#news .news_head{
	display: block;
	margin-bottom: 50px;
}

#news .news_head .news_ttl{
	color: #17A77E;
	font-size: 2.3rem;
	letter-spacing: 0.05em;
	border-left: 5px solid #17A77E;
	padding: 0 0 0 24px;
	line-height: 1;
}
#news .news_head .news_ttl span{
	font-size: 1.4rem;
	display: block;
	color: #333333;
	letter-spacing: 0;
	margin-top: 10px;
}

#news .cate_list{
	display: flex;
	
	height: 28px;
	margin-top: 35px;
	flex-wrap: wrap;
}
#news .cate_list li{
	border-left: 1px solid #ccc;
	margin-bottom: 13px;
}
#news .cate_list li.cate_bdr,
#news .cate_list li:last-of-type{
	border-right: 1px solid #ccc;
}

#news .cate_list a{
	color: #333333;
	display: block;
	font-size: 1.4rem;
	padding: 6px 20px 7px;
	line-height: 1;
	min-width: 75px;
	text-align: center;
	background-color: #fff;
	text-decoration: underline;
}
#news .cate_list a:hover{
	color: #fff;
	text-decoration: none;
	background-color: #00AC72;
}

.news_list{
	display: flex;
	flex-wrap: wrap;
}

.news_list li{
	width: calc( (100% - 50px)/2);
	max-width: 100%;
	border-bottom: 1px dotted #CCCCCC;
	padding: 20px 0 20px 0;
	margin-bottom: 20px;
	min-height: 168px;
}
.news_list li:nth-of-type(2n+1){
	margin-right: 50px;
}
.news_list li a{
	display: flex;
}
.news_list li a:hover{
	text-decoration: none;
	opacity: 0.7;
}
#news .news_list .news_img{
	width: 100px;
}
#news .news_list .news_cnt{
	width: calc(100% - 100px);
	padding: 0 30px 0 0;
	word-break: break-all;
}
#news .news_list .news_meta{
	display: flex;
}
.news_list .cate,
.detail_area .cate{
	width: 107px;
	height: 22px;
	display: inline-block;
	color: #fff;
	text-align: center;
	background-color: #ccc;
	font-size: 1.3rem;
	line-height: 1;
	padding: 4px 0 0;
	margin: 0 13px 0 0;
}
/*------------------- IE11 -------------------*/
_:-ms-lang(x)::-ms-backdrop,
.news_list .cate,
.detail_area .cate{
	padding-top: 5px;
}
.news_list .cate.cate_rec,
.detail_area .cate.cate_rec{
	background-color: #5AA4C4;
}
.news_list .cate.cate_info,
.detail_area .cate.cate_info{
	background-color: #17A77E;
}
.news_list .cate.cate_event,
.detail_area .cate.cate_event{
	background-color: #E0834B;
}
.news_list .cate.cate_for,
.detail_area .cate.cate_for{
	background-color: #7D84B4;
}
.news_list .cate.cate_important,
.detail_area .cate.cate_important{
	background-color: #D44967;
}
.news_list .cate.cate_corona,
.detail_area .cate.cate_corona{
	background-color: #EF454A;
}
.news_list .cate.cate_patient,
.detail_area .cate.cate_patient{
	background-color: #17A77E;
}

.news_list .date,
.detail_area .date{
	color: #1F1F1F;
	font-size: 1.4rem;
	font-weight: bold;
	letter-spacing: 0.05em;
}
.news_list .news_txt{
	font-size: 1.6rem;
	color: #1F1F1F;
	line-height: 1.7;
	margin: 13px 0 0;
}
.news_list .news_txt .new{
	color: #E0463F;

	font-size: 1.4rem;
}
#news .arrow{
	box-shadow:0px 0px 5px 1px rgba(221,221,221,.85);
	width: 185px;
	height: 40px;
	margin: 25px auto auto auto;
	border-radius: 20px;
	display: block;
	font-size: 1.6rem;
	text-align: center;
	padding: 6px 10px 0 0;
	background-color: #fff;
}
/*------------------- IE11 -------------------*/
_:-ms-lang(x)::-ms-backdrop,
#news .arrow{
	padding-top: 7px;
}

#news .arrow::before{
	right: 17px;
	left: auto;
	top: 1px;
    width: 9px;
    height: 9px;
    border-top: 3px solid #17A77E;
    border-right: 3px solid #17A77E;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
#news .arrow:hover{
	text-decoration: none;
	opacity: 0.7;
	color: #00B06A;
}

@media screen and (max-width: 767px) {
	
	#news {
		padding: 30px 0 20px;
	}
	
	#news .news_head .news_ttl{
		font-size: 2.2rem;
		letter-spacing: 0;
		padding: 0 0 0 14px;
		margin-bottom: 25px;
	}
	
	#news .news_head .news_ttl span{
		font-size: 1.3rem;
		margin-top: 7px;
	}
	
	#news .trigger{
		margin-top: 15px;
		font-size: 1.4rem;
		
	}
	#news .trigger::after{
		content: "＋";
		display: inline-block;
		border: 1px solid #ccc;
		padding: 1px 3px 3px;
		line-height: 1;
		margin-left: 15px;
		
		
	}
	#news .trigger.is_open::after{
		content: "－";
		
	}
	#news .cate_list {
		height: auto;
		margin-top: 15px;
		width: auto;
		max-width: 100%;

	}

	#news .cate_list li{
		min-width: inherit;
		display: inline;
		border: 1px solid #ccc;
		margin-bottom: 5px;
		margin-right: 5px;
	}
	#news .cate_list a {
		width: auto;
		height: 100%;
		font-size: 1.1rem;
		padding: 7px 8px 8px;
		line-height: 1;
		min-width: 57px;
		text-align: center;
		display: inline-block;
		text-decoration: none;
	}
	#news .cate_list a:hover{
		background-color: transparent;
		color: #333333;
	}
	#news .news_list .news_img{
		width: 70px;
	}
	#news .news_list .news_cnt {
		width: calc(100% - 70px);
		padding: 0 15px 0 0;
	}
	#news .news_list .date .new{
		display: inline-block !important;
		color: #DF463F;
		font-weight: bold;
		margin-left: 8px;
	}
	#news .news_list li{
		padding: 18px 0 18px;
	}
	.news_list li:nth-of-type(2n+1){
		margin-right: 0;
	}
	.index #news .news_list li:last-of-type{
		border-bottom: none;
	}
	#news .arrow {
		width: 130px;
		height: 34px;
		margin: 20px auto auto;
		display: block;
		font-size: 1.4rem;
		text-align: center;
		padding: 5px 8px 2px 0;
}
	#news .arrow:hover{
		color: #000;
	}
	#news .arrow::before {
		right: 15px;
		top: 1px;
		width: 8px;
		height: 8px;
		border-top: 2px solid #17A77E;
		border-right: 2px solid #17A77E;
	}
	
	#sp_information{
		padding: 40px 0 0;
	}

	#sp_information .news_list{
		display: block;
	}
	.news_list li{
		width: 100%;
		min-height:inherit;
		padding: 0;
		margin: 0;
	}
	#sp_information .news_list li{
		border-bottom: 1px solid #cccccc;
	}
	.news_list li a:hover{
		text-decoration: none;
		opacity: 1;
	}
	#sp_information .news_list .news_cnt{
		width: 100%;
		padding: 0 0 15px;
	}
	.news_list .cate,
	.detail_area .cate{
		width: 92px;
		height: 21px;
		font-size: 1.2rem;
		padding: 4px 0 0;
		margin: 0 6px 0 0;
	}

	.news_list .date,
	.detail_area .date{
		font-size: 1.2rem;
		letter-spacing: 0;
	}
	.news_list .news_txt{
		font-size: 1.4rem;
		line-height: 1.6;
		margin: 7px 0 0;
	}
	.news_list .news_txt .new{
		font-size: 1.1rem;
	}
	#news .news_head{
		display: block;
		margin-bottom: 25px;
	}
}



/*-------------------　コンテンツ内　-------------------*/

/*.cont_wrap{
    color: #1F1F1F;
    margin-bottom: 40px;
    padding-top: 60px;
}*/
.bd_on img{
    outline: 1px solid #ddd;
    outline-offset: -1px;
}
.shadow{
	box-shadow: 0 0 5px 0 rgba(0,0,0,.2);
}

/*-------　コンテンツ内中見出し-------------*/


.cont_ttl{
    font-size: 2.1rem;
    background-color: #F9F9F9;
    padding: 1px;
    margin-bottom: 40px;
    color: #fff;
	box-shadow: 3px 4px 2px 0 rgba(0,0,0,.1);
}
.green .cont_ttl{
    background-color: #00A77B;
}
.orange .cont_ttl {
    background-color: #EE7700;
}
.red .cont_ttl{
    background-color: #E05E5B;
}
.blue .cont_ttl{
    background-color: #00AFEC;
}
.blue02 .cont_ttl{
	background-color: #007cc0;
}
.brown .cont_ttl{
    background-color: #B99357;
}
.pink .cont_ttl{
    background-color: #E47977;
}

.doctor .cont_ttl{
    background-color: #007CC0;
}
.nurse .cont_ttl{
    background-color: #EC7774;
}
.paramedic .cont_ttl{
    background-color: #F47700;
}
.office .cont_ttl{
    background-color: #7D83B6;
}
.other .cont_ttl{
    background-color: #00A87D;
}

.cont_ttl .ttl_wrap{
    display: flex;
    align-items: center;
    height: 58px;
    padding-left: 45px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    position: relative;
}
.cont_ttl .ttl_wrap::before{
    content: "";
    width: 20px;
    height: 1px;
    background: rgba(255, 255, 255, 0.65);
    position: absolute;
    left: 0;
    top: calc(50% - 1px);
}
.cont_ttl .ttl_wrap .ttl_sub{
    font-size: 1.4rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 0 10px;
    margin-left: 19px;
}

/*-----------　コンテンツ内テキスト--------------*/

.cont_wrap .txt_area{
    margin-bottom: 42px;
}
.cont_wrap .txt_main{
    font-size: 2.1rem;
    font-weight: bold;
    line-height: 1.7;
    margin-bottom: 2rem;
    width: 373px;
}
.green .txt_main{
    color: #00A779;
}
.orange .txt_main{
    color: #EE7700;
}
.red .txt_main{
    color: #E05E5B;
}
.blue .txt_main{
    color: #00AFEC;
}
.brown .txt_main{
    color: #B99357;
}


/*------ メインタイトル下----------*/
.page_main_txt{
    font-size: 3.1rem;
    color: #0079BF;
    line-height: 1.7;
}
.pink .page_main_txt{
	color: #E47977;
}

@media screen and (max-width: 767px){
	

	.cont_wrap{
		padding-top: 35px;
	}

	.cont_ttl{
		font-size: 1.8rem;
		position: relative;
		margin-bottom: 20px;
	}
	.cont_ttl .ttl_wrap{
		height: auto;
		line-height: 1.3;
		padding: 8px 10px 8px 20px;
/*		flex-direction: column;*/
		align-items: center;
		font-weight: bold;
	}
	.cont_ttl .ttl_wrap::before{
		width: 10px;
	}
	.cont_ttl .ttl_wrap .ttl_sub{
		font-size: 1.2rem;
		padding: 0 5px;
		margin-left: 0;
		position: static;
		margin-left: 5px;
	}
	.green .ttl_wrap .ttl_sub{
		background: #33B995;
	}
	.orange .ttl_wrap .ttl_sub{
		background: #F19233;
	}
	.red .ttl_wrap .ttl_sub{
		background: #E67E7C;
	}
	.blue .ttl_wrap .ttl_sub{
		background: #33BFF0;
	}
	.brown .ttl_wrap .ttl_sub{
		background: #C7A979;
	}
	.cont_wrap .txt_area{
		margin-bottom: 20px;
		padding-top: 15px;
	}
	.cont_wrap .txt_main{
		font-size: 1.8rem;
		width: 100%;
	}
	.page_main_txt{
		font-size: 2.2rem;
		line-height: 1.5;
	}
}



/*サイドカテゴリーリンク共通（アコーディオン無し）*/
#side_column #cate_link {
    border-top: 2px solid #00A77B;
    padding: 32px 0 100px;
}
#side_column #cate_link .content_ttl {
    font-size: 2.3rem;
    margin-bottom: 20px;
}
#side_column #cate_link .content_ttl::before{
	content: none;
}
#side_column #cate_link .side_subttl {
    font-size: 1.8rem;
    color: #0CAB73;
    margin: 0 0 11px;
}
#side_column #cate_link ul li a {
    display: block;
    padding: 10px 0;
    border-bottom: 1px dotted #BBB;
}
#side_column #cate_link .arrow::after {
    right: 4px;
    left: auto;
    width: 9px;
    height: 9px;
    border-top: 2px solid #00A77B;
    border-right: 2px solid #00A77B;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
#side_column #cate_link .cate_link_area{
/*    margin-bottom: 100px;*/
}

#side_column .side_inbox + .side_inbox{
	margin-top: 50px;
}

@media screen and (max-width: 767px){
	#side_column #cate_link .side_subttl {
		font-size: 1.6rem;
	}
	
	#side_column #cate_link ul li a {
		font-size: 1.4rem;
	}
}



/*サイドバナーリンク共通
在宅医療のご案内・女性外来のご案内・精密検査*/

#side_bnr .seimitsu .arrow::after { border-color: #007bbf;}

#side_bnr .side_bnr_box {
    padding: 0 0 40px;
}
#side_bnr .side_bnr_txt{
	font-size: 1.6rem;
    color: #1F1F1F;
}
#side_bnr .lady .side_bnr_ttl{
    color: #E87978;
}
#side_bnr .side_bnr_ttl{
	padding: 10px 0;
	font-size: 2rem;
	display: block;
    color: #00A77B;
}
#side_bnr .arrow::after{
	right: 4px;
	left: auto;
    width: 11px;
    height: 11px;
    border-top: 2px solid #00A77B;
    border-right: 2px solid #00A77B;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
#side_bnr .lady .arrow::after{
    border-top: 2px solid #E87978;
    border-right: 2px solid #E87978;
}
#side_bnr a:hover{
	text-decoration: none;
}
#side_bnr a:hover p{
	text-decoration: none;
	opacity: 0.7;
}
#side_column #side_bnr .bdr{
    margin: 25px 0 90px;
}
#side_column #side_bnr .bdr.sht{
    margin: 25px 0 70px;
}

@media screen and (max-width: 767px){
#side_bnr .side_bnr_txt{
	font-size: 1.4rem;
}
#side_bnr .side_bnr_ttl{
	font-size: 1.8rem;
    line-height: 1.2;
}
#side_bnr .arrow::after{
	right: 4px;
	left: auto;
    width: 10px;
    height: 10px;
}
#side_column #side_bnr .bdr {
    display: none;
}
}


/*サイドパンフ共通*/

.page #side_column #panf{
    padding-bottom: 13px;
    border-bottom: 1px solid #cccccc;
}


/*content_column下部リンクリスト共通*/
.other_cate_link .cate_list {
    display: flex;
    flex-wrap: wrap;
    /*padding-top: 150px;*/
}
.other_cate_link .cate_list li:nth-of-type(2n) {
    margin-right: 0;
}
.other_cate_link .cate_list li {
    width: 382px;
    height: 90px;
    border: #CCCCCC 1px solid;
    box-sizing: border-box;
    margin-right: 20px;
    margin-bottom: 20px;
}
.other_cate_link .cate_list li a {
    font-size: 1.8rem;
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0;
    box-shadow: 0px 0px 3px 2px #EBEBEB;
}


.other_cate_link .cate_list li a::before {
    width: 88px;
    height: 88px;
    content: "";
    display: block;
    position: static;
    margin: 0;
    margin-right: 18px;
    background-repeat: no-repeat;
    background-size: contain;
}
.other_cate_link .cate_list li a::before{
	margin-right: 34px;
}
.other_cate_link .cate_list li.sinryo a::before{
	background-image: url("../images/icon/icon_sinryo.png");
}
.other_cate_link .cate_list li.senmon a::before{
	background-image: url("../images/icon/icon_senmon.png");
}
.other_cate_link .cate_list li.bumon a::before{
	background-image: url("../images/icon/icon_bumon.png");
}
.other_cate_link .cate_list li.center a::before{
	background-image: url("../images/icon/icon_center.png");
}
.other_cate_link .cate_list li.gairai a::before{
	background-image: url("../images/icon/icon_gairai.jpg");
}
.other_cate_link .cate_list li.nyuin a::before{
	background-image: url("../images/icon/icon_nyuin.jpg");
}
.other_cate_link .cate_list li.dock a::before{
	background-image: url("../images/icon/icon_dock.jpg");
}
.other_cate_link .cate_list li.chiiki a::before{
	background-image: url("../images/icon/icon_chiiki.jpg");
}
.other_cate_link .cate_list li.chiiki_iryo a::before{
	background-image: url("../images/icon/icon_chiiki_iryo.png");
}
.other_cate_link .cate_list li.dock_option a::before{
	background-image: url("../images/icon/icon_dock_option.jpg");
}
.other_cate_link .cate_list li.parking a::before{
	background-image: url("../images/icon/icon_parking.jpg");
}
.other_cate_link .cate_list li.courtesybus a::before{
	background-image: url("../images/icon/icon_courtesybus.jpg");
}
.other_cate_link .cate_list li.information a::before{
	background-image: url("../images/icon/icon_information.png");
}
.other_cate_link .cate_list li.saishin a::before{
	background-image: url("../images/icon/icon_saishin.png");
}
.other_cate_link .cate_list li.cs_set a::before{
	background-image: url("../images/icon/icon_cs-set.png");
}
.other_cate_link .cate_list li.kinen a::before{
	background-image: url("../images/icon/icon_kinen.png");
}
.other_cate_link .cate_list li.toin a::before{
	background-image: url("../images/icon/icon_toin.png");
}
.other_cate_link .cate_list li.chiiki_minasama a::before{
	background-image: url("../images/icon/icon_chiiki_minasama.png");
}
.other_cate_link .cate_list li.kokyu a::before{
	background-image: url("../images/icon/icon_kokyu.png");
}
.other_cate_link .cate_list li.shoka a::before{
	background-image: url("../images/icon/icon_shoka.png");
}
.other_cate_link .cate_list li.second a::before{
	background-image: url("../images/icon/icon_second.png");
}
.other_cate_link .cate_list li.kaiho a::before{
	background-image: url("../images/icon/icon_kaiho.png");
}
.other_cate_link .cate_list li.shika a::before{
	background-image: url("../images/icon/icon_shika.png");
}
.other_cate_link .cate_list li.kagaku a::before{
	background-image: url("../images/icon/icon_kagaku.jpg");
}
.other_cate_link .cate_list li.jin a::before{
	background-image: url("../images/icon/icon_jin.jpg");
}


.other_cate_link.right .cate_list.ib {
    display: inline-block;
}



.other_cate_link .cate_list li .arrow::after {
    right: 24px;
    left: auto;
	top: 4px;
    width: 10px;
    height: 10px;
    border-top: 2px solid #00A77B;
    border-right: 2px solid #00A77B;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.other_cate_link .cate_list li .arrow.arr_down::after{
	-webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}
.other_cate_link .cate_list li .arrow.arr_up::after{
	-webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
@media screen and (max-width: 767px) {
	.other_cate_link .cate_list {
		padding-top: 0;
		margin-bottom: 15px;
	}
	.other_cate_link .cate_list li{
		width: 49%;
		margin-right: 2%;
		margin-bottom: 15px;
	}
	.other_cate_link .cate_list li::nth-of-type(2n){
		margin-right: 0;
	}
	.other_cate_link .cate_list li{
		height: 60px;
	}
	.other_cate_link .cate_list li a{
		font-size: 1.4rem;
		box-shadow: none;
		overflow: hidden;
	}
	.other_cate_link .cate_list li a::before{
		width: 59px;
		height: 59px;
		margin-right: 10px;
	}

	.other_cate_link .cate_list li .arrow::after {
		right: 18px;
	}
	.other_cate_link .cate_list li a::before{
		margin-right: 10px;
	}
}
@media screen and (max-width: 425px) {
.other_cate_link .cate_list li{
	width: 100%;
	margin-right: 0;
	margin-bottom: 5px;
}
}



/*外来診療受付時間共通*/
#time_area .time_info{
	/*margin-top: 120px;*/
	background-color: #F8F7F3;
	border-radius: 5px;
	display: flex;
	padding: 30px 40px 30px;
    /*margin-bottom: 100px;*/
}
/*.page #time_area .time_info{
    margin-bottom: 60px;
}*/
#time_area .time_info .box_gairai{
	width: calc( 100% - 290px);
}
#time_area .time_info .box_menkai{
	width: 290px;
	max-width: 100%;
	border-left: 1px solid #DDDDDD;
	padding: 0 0 0 38px;
}
#time_area .time_info .box_menkai .menkai_inn{
	display: flex;
}

#time_area .time_info .gairai_cnt .box{
	width: 50%;
}


#time_area .time_info .menkai_time{
	width: 50%;
}
#time_area .time_info .p_info_ttl{
	font-size: 2rem;
	letter-spacing: 0.05em;
	display: inline-flex;
	align-items: center;
	height: 44px;
}
#time_area .time_info .p_info_ttl::before{
	content: "";
	display: inline-block;
	background-repeat: no-repeat;
	background-size: auto;
	margin-right: 20px;
	width: 44px;
	height: 44px;
	background-position: center center;
}

#time_area .time_info .box_gairai .p_info_ttl::before{
	background-image: url("../images/page/home/pickup_info_icon01.png");
}
#time_area .time_info .box_menkai .p_info_ttl::before{
	background-image: url("../images/page/home/pickup_info_icon02.png");
}
#time_area .time_info .gairai_head{
	display: flex;
	align-items: center;
	margin-bottom: 30px;
}
#time_area .time_info .box_menkai .p_info_ttl{
	margin-bottom: 30px;
	width: 100%;
}

#time_area .time_info .youbi{
	color: #17A77E;
	font-size: 1.8rem;
	margin-bottom: 10px;
}
#time_area .time_info .youbi span{
	color: #000;
	font-size: 1.4rem;
}
#time_area .time_info dl dd{
	font-size: 1.6rem;
}
#time_area .time_info .gairai_time{
	display: flex;
	flex-wrap: wrap;
}
#time_area .time_info .gairai_time dt{
	font-size: 1.6rem;
	color: #17A77E;
	width: 3em;
}
#time_area .time_info .gairai_time dd{
	width: calc( 100% - 3em);
	/*padding-right: 20px;*/
	text-align: left;
}
#time_area .time_info .gairai_time dd.st1{
	padding-left: 9px;
}

#time_area .time_info .gairai_time dd span{
	/*width: 6em;*/
	margin-left: 5px;
	display: inline-block;
}

#time_area .time_info .gairai_btn{
	display: flex;
	justify-content: center;
	align-items: center;
	color: #17A77E;
	font-size: 1.5rem;
	width: 200px;
	max-width: 100%;
	height: 40px;
	border-radius: 20px;
	background-color: #fff;
	box-shadow: 0px 0px 5px 0 rgba(0,0,0,0.2);
	margin-left: 40px;
	border: none;
}
#time_area .time_info .gairai_btn::before{
	content: "";
	display: block;
	width: 35px;
	height: 28px;
	background-image: url("../images/page/home/pickup_info_icon03.png");
	background-repeat: no-repeat;
	background-size: contain;
	margin-right: 10px;
	position: relative;
	top: 1px;
}
#time_area .time_info .gairai_btn:hover{
	text-decoration: none;
	opacity: 0.7;
}
#time_area .time_info .gairai_cnt{
	display: flex;
}
#time_area .time_info .gairai_cnt .box{
	width: 50%;
}
@media screen and (max-width: 767px) {
	
	#time_area{
		width: 112%;
		margin: 0 -6%;
	}

	#time_area .time_info{
		margin-top: 30px;
		margin-bottom: 40px;
		display: block;
		padding: 6% 0 9% 5.2%;
		border-radius: 0;
	}
	#time_area .time_info .box_gairai{
		width: 100%;
		padding-bottom: 4%;
	}
	#time_area .time_info .gairai_time dd.st1{
		padding-left: 8px;
	}
	#time_area .time_info .gairai_time dd.st2{
		padding-left: 8px;
	}
	#time_area .time_info .box_menkai{
		width: 100%;
		border-top: 1px solid #dddddd;
		border-left: none;
		padding: 4% 0 0;
	}
	#time_area .time_info .gairai_cnt{
		display: block;
	}
	#time_area .time_info .gairai_cnt .box{
		width: 100%;
	}
	#time_area .time_info .gairai_cnt .box + .box{
		margin-top: 4%;
	}
	#time_area .time_info .gairai_head,
	#time_area .time_info .box_menkai .p_info_ttl{
		margin-bottom: 5px;
	}
	#time_area .time_info .p_info_ttl{
		font-size: 1.8rem;
	}
	#time_area .time_info .p_info_ttl::before{
		width: 30px;
		height: 30px;
		margin-right: 10px;
		background-size: contain;
	}
	#time_area .time_info .youbi{
		font-size: 1.5rem;
		margin-bottom: 2px;
	}
	#time_area .time_info .gairai_time dt,
	#time_area .time_info dl dd{
		font-size: 1.4rem;
	}
	
	#time_area .time_info .menkai_time{
		width: 38%;
	}
	
	#time_area .time_info .gairai_btn{
		display: flex;
		justify-content: center;
		align-items: center;
		color: #17A77E;
		font-size: 1.4rem;
		width: 180px;
		max-width: 100%;
		height: 34px;
		border-radius: 20px;
		background-color: #fff;
		box-shadow: 0px 0px 5px 0 rgba(0,0,0,0.2);
		margin-left: 0;
		border: none;
		padding: 0 10px 0 10px;
	}
	#time_area .time_info .gairai_btn::before{
		content: "";
		display: block;
		width: 28px;
		height: 23px;
		background-image: url("../images/page/home/pickup_info_icon03.png");
		background-repeat: no-repeat;
		background-size: contain;
		margin-right: 10px;
		position: relative;
		top: 1px;
	}
}
@media screen and (max-width: 425px) {
	#time_area .time_info .gairai_head{
		display: block;
	}
	#time_area .time_info .gairai_btn{
		margin: 25px 0 0;
		/*width: 100%;*/
	}
	
	#time_area .time_info .sp.gb{
		margin-right: 5.2%;
		margin-bottom: 17px;
	}

}



/*ページ内ナビ共通*/
.jump_navi{
    width: 100%;
    background: #F7FCFB;
	/*margin: 80px 0 45px;*/
}
.jump_navi.orange{
	background-color: #FFF9EC;
}
.jump_navi ul{
    display: flex;
    align-items: center;
	padding: 6px 0 6px;
	flex-wrap: wrap;

}
.jump_navi ul li{
	padding: 4px 0 4px 34px;
}
.jump_navi ul li a{
    display: block;
    font-size: 1.6rem;
    color: #1F1F1F;
    padding-right: 25px;
}
.jump_navi ul li a::after{
    right: 7px;
	top: -1px;
    left: auto;
    width: 9px;
    height: 9px;
    border-top: 3px solid #17A77E;
    border-right: 3px solid #17A77E;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}
.jump_navi.orange ul li a::after{
    border-top: 3px solid #E47977;
    border-right: 3px solid #E47977;	
}
.jump_navi ul li a.arrow_up::after{
	-webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
	top: 4px;
}

/*------------------- IE11 -------------------*/
_:-ms-lang(x)::-ms-backdrop,
.jump_navi ul li a::after{
	top: -4px;
}
@media screen and (max-width: 767px) {
	
	.jump_navi {
		/*margin: 0 0 50px;*/
	}
	
	.jump_navi ul{
		display: block;
		height: auto;
		padding: 0;
	}
	.jump_navi ul li{
		padding: 5px 5px 5px 10px;
		border-bottom: 3px solid #fff;
	}
	.jump_navi ul li a{
		font-size: 1.4rem;
	}
	.jump_navi ul li + li{
		margin-top: 0;
	}
}


.jump_navi.backnumber{
	background-color: transparent;
	/*margin: 50px 0 0;
	padding-bottom: 70px;*/
}
.jump_navi.backnumber ul{
	display: flex;
	flex-wrap: wrap;
	height: auto;
}
.jump_navi.backnumber ul li{
	width: 20%;
	padding: 10px 16px 10px 18px;
	background-color: #F7FCFB;
}
.jump_navi.backnumber ul li .arrow::after{
	-webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

/*.jump_navi.backnumber + .cont_ttl{
	margin-top:80px;
}*/
@media screen and (max-width: 767px){

	.jump_navi.backnumber{
		margin: 25px 0 0;
		padding-bottom: 35px;
	}
	.jump_navi.backnumber ul{
		display: block;
	}
	.jump_navi.backnumber ul li{
		width: 100%;
		padding: 5px 15px;
	}
	.jump_navi.backnumber + .cont_ttl{
		margin-top: 0;
	}
}
/*---------------- 外来ボタン　--------------*/


.gairai_btn{
	display: flex;
	justify-content: center;
	align-items: center;
	color: #212121;
	font-size: 1.6rem;
	/*width: 265px;*/
	/*max-width: 100%;*/
	height: 46px;
	border-radius: 25px;
	background-color: #fff;
	margin-left: 40px;
	border: 2px solid #00A87D;
	padding: 0 20px 0 20px;
}
.gairai_btn::before{
	content: "";
	display: block;
	width: 39px;
	height: 32px;
	background-image: url("../images/page/home/pickup_info_icon03.png");
	background-repeat: no-repeat;
	background-size: contain;
	margin-right: 10px;
	position: relative;
	top: 1px;
}
.gairai_btn:hover{
	text-decoration: none;
	opacity: 0.7;
}

/*------------------- btn 3列並び　-----------------*/



.btn_group{
	display: flex;
	flex-wrap: wrap;
	/*margin-bottom: 50px;*/
}
.btn_group li{
	width: calc( ( 100% - 20px * 2 )/3);
	height: 60px;
	box-sizing: border-box;
	margin-right: 20px;
	margin-bottom: 20px;
}

.btn_group li:nth-of-type(3n){
	margin-right: 0;
}
.btn_group.btn_4line li{
	width: calc( ( 100% - 8px * 3 )/4);
	margin-right: 8px;
}
.btn_group.btn_4line li:nth-of-type(3n){
	margin-right: 8px;
}
.btn_group.btn_4line li:nth-of-type(4n){
	margin-right: 0;
}
.btn_group.btn_img li{
	height: auto;
}
.btn_group li a{
	font-size: 1.8rem;
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	padding: 0 30px 0 16px;
	box-shadow: 0px 0px 5px 1px rgba(221,221,221,.85);
}
.btn_group.btn_4line li a,
.btn_group.btn_img li a{
	font-size: 1.6rem;
}
.btn_group li .arrow::after {
    right: 24px;
    left: auto;
    width: 10px;
    height: 10px;
    border-top: 3px solid #00AC72;
    border-right: 3px solid #00AC72;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.btn_group.red li .arrow::after{
	border-color: #E87978;
}
.btn_group.blue li .arrow::after{
	border-color: #007CC0;
}


.box.doctor .btn_group li .arrow::after{
	border-color: #007CC0;
	right: 14px;
}
.box.nurse .btn_group li .arrow::after{
	border-color: #EC7774;
	right: 14px;
}
.box.paramedic .btn_group li .arrow::after{
	border-color: #F47700;
	right: 14px;
}
.box.office .btn_group li .arrow::after{
	border-color: #7D83B6;
	right: 14px;
}
.box.other .btn_group li .arrow::after{
	border-color: #00A87D;
	right: 14px;
}


.btn_group.btn_icon li a::before{
	width: 48px;
	height: 48px;
	content: "";
	display: block;
	position: static;
	margin: 0;
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
	margin-right: 18px;
}
.btn_group li a:hover{
	text-decoration: none;
	opacity: 0.7;
}
.btn_group.btn_img li{
	border: 1px solid #DDDDDD;	
}
.btn_group.btn_img li a{
	padding: 0;
	box-shadow: none;
	height: auto;
	flex-direction: column;
	align-items: flex-start;
}
.btn_group.btn_img li a img{
	width: 100%;
}
.btn_group.btn_img li a span{
	text-align: left;
	display: block;
	width: 100%;
	padding: 13px 20px 12px;
}





@media screen and (max-width: 1280px) {
	.btn_group li{
		width: calc( ( 100% - 20px)/3);
		margin-right: 10px;
	}

}
@media screen and (max-width: 768px) {
	.btn_group li,
	.btn_group li:nth-of-type(3n),
	.btn_group.btn_4line li,
	.btn_group.btn_4line li:nth-of-type(4n),
	.btn_group.btn_4line li:nth-of-type(3n){
		width: 49%;
		margin-right: 2%;
		margin-bottom: 2vw;
	}
	.btn_group li:nth-of-type(2n),
	.btn_group.btn_4line li:nth-of-type(2n){
		margin-right: 0 ;
	}
	.btn_group li{
		height: 60px;
	}
	.btn_group li a,
	.btn_group.btn_4line li a, 
	.btn_group.btn_img li a{
		font-size: 1.6rem;
		line-height: 1.2;
	}
	.btn_group li a{
		padding: 0 20px 0 10px;
	}
	.btn_group.btn_icon li a{
		padding-left: 10px;
		padding-right: 18px;
	}
	.btn_group.btn_icon li a::before{
		width: 35px;
		height: 35px;
		margin-right:10px;
	}
	.btn_group li .arrow::after{
		right: 14px;
		width: 10px;
	    height: 10px;
	}
	.btn_group.btn_icon span{
		width: calc( 100% - 35px - 10px);
	}
	.btn_group.btn_img li a{
			height: 100%;
	}
	.btn_group.btn_img li a span{
		display: flex;
		align-items: center;
		padding: 10px 20px 10px 10px;
		height: 56px;
	}
}
@media screen and (max-width: 425px) {

	.btn_group.btn_icon li a,
	.btn_group.btn_4line li a, 
	.btn_group.btn_img li a{
		font-size: 1.4rem;
	}
	.btn_group.btn_img li a{

	}
	.btn_group.btn_img li a img{

	}
	.btn_group.btn_img li a span{
		height: 100%;
		display: flex;
		align-items: center;
		padding: 10px 20px 10px 10px;

	}

	
	.btn_group.btn_icon li a::before{
		width: 40px;
		height: 40px;
		margin-right: 10px;
	}
	.btn_group.btn_icon span{
		width: calc( 100% - 30px - 5px);
	}

}

/*------------------- btn 2列並び　角丸-----------------*/

.btn_circle{
	justify-content: space-between;
}
.btn_circle li{
	width: 242px;
	max-width: 100%;
	height: 40px;
	margin-right: 0;
	margin-bottom: 15px;
}
.btn_circle li a{
	border-radius: 20px;
	font-size: 1.6rem;
}

@media screen and (max-width: 767px){
	
	.btn_circle li,
	.btn_circle li:nth-of-type(4n)
	.btn_circle li:nth-of-type(3n){
		/*width: 100%;*/
		margin-bottom: 2vw;
		margin-right: 0;
		width: 49%;
		margin-right: 2%;
		margin-bottom: 2vw;
	}
	
	.btn_circle li{
		height: 46px;
	}
	
	.btn_circle li a{
		border-radius: 0;
		font-size: 1.4rem;
	}
	
	
}
/*----------- 囲み・box・bdr---------------*/

.bg_box{
	background-color: #F9F9F9;
	padding: 24px 40px 24px 28px;
}
@media screen and (max-width: 767px){

	.page #main_column .bg_box{
		width: 112%;
		margin: 0 -6%;
		padding: 20px 8% 25px 8%;
	}
	
}

.bdr{
	border-bottom: 1px solid #ccc;
	/*margin: 100px 0 50px;*/
}
@media screen and (max-width: 767px) {
	.bdr,
	.bdr.mt100{
		margin: 25px 0 25px !important;
		display: none !important;
	}
}



/*------------- テキスト+画像flex　-------------*/
.flex_imgarea{
	display: flex;
	justify-content: space-between;
}
.flex_imgarea + .flex_imgarea{
	margin-top: 55px;
}
.flex_imgarea + .txt{
	margin-top: 35px;
}
.flex_imgarea .img_cnt{
	width: 376px;
	max-width: 100%;
}
.flex_imgarea .txt_cnt{
	width: 370px;
	max-width: 100%;
}
.flex_imgarea .txt_cnt.w550{
	width: 550px;
}
@media screen and (max-width: 767px) {

	.flex_imgarea{
		display: block;
	}
	.flex_imgarea + .flex_imgarea{
		margin-top: 15px;
	}
	.flex_imgarea + .txt{
		margin-top: 15px;
	}
	.flex_imgarea .img_cnt{
		margin: auto;
	}
	.flex_imgarea .txt_cnt{
		width: 100%;
	}
	.flex_imgarea * + .img_cnt,
	.flex_imgarea .img_cnt + *{
		margin-top: 15px;
	}
}

/*------------ pickup_bnr -------------*/


.pickup_bnr{
	padding: 16px 0 0;
	display: flex;
	justify-content: space-between;
}
.pickup_bnr li{
	width: 528px;
	max-width: 100%;
}
.pickup_bnr img{
	transition: 0.3s ease;
}
.pickup_bnr p{
	font-size: 1.7rem;
	line-height: 1.7;
	color: #1F1F1F;
	margin-top: 22px;
}
.pickup_bnr .josei img{
	max-width: inherit;
	margin-top: -32px;
}
.pickup_bnr .josei p{
	margin-top: -11px;
}
@media screen and (max-width: 767px) {
	
	.pickup_bnr{
		display: block;
		padding-bottom: 10px;
	}
	.pickup_bnr li{
		width: 100%;
	}
	.pickup_bnr li img{
		width: 100%;
	}

	.pickup_bnr li + li{
		margin-top: 25px;
	}
	.pickup_bnr p,
	.pickup_bnr .josei p{
		width: 100%;
		margin:8px auto auto;
		font-size: 1.4rem;
	}
	.pickup_bnr .josei img{
		width: 100%;
		margin: auto;
	}

}

.josei_bnr img{
	margin: 0;
	transition: 0.3s ease;
}
.josei_bnr a{
	display: block;
	width: 611px;
	max-width: 100%;
}


.to_top{
	padding: 0 0 0;
}
.bdr + .to_top{
	margin-top: -30px;
}

.to_top a{
	font-size: 1.6rem;
	color: #1F1F1F;
	width: auto;
	display: inline-block;
	height: 38px;
	max-width: 100%;
	border-radius: 5px;
	box-shadow: 2px 2px 6px 0px rgba(0,0,0,0.3);
	padding: 6px 20px 0 43px;
	height: 40px;
	border-radius: 20px;

}
/*------------------- IE11 -------------------*/
_:-ms-lang(x)::-ms-backdrop,
.to_top a{
	padding-top: 7px;
}
.to_top a.arrow_right {
    padding: 6px 40px 0 20px;
	background-color: #fff;
}
.to_top a.arrow::after{
	right: auto;
	left: 25px;
    width: 9px;
    height: 9px;
    border-top: 3px solid #00A77B;
    border-right: 3px solid #00A77B;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.to_top a.arrow_right::after {
    right: 23px;
    left: auto;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.to_top a:hover{
	opacity: 0.7;
	color: #00AC72;
	text-decoration: none;
}


@media screen and (max-width: 767px) {
	
	.to_top{
		padding: 0 0 40px;
	}
	.to_top a {
		font-size: 1.4rem;
		width: auto;
		display: inline-block;
		height: auto;
		/*height: 34px;
		padding: 6px 15px 0 23px;*/
		padding: 5px 15px 5px 28px;
	}
	.to_top a.arrow::after {
		right: auto;
		left: 12px;
		top: 1px;
		width: 8px;
		height: 8px;
		border-top: 2px solid #00AC72;
		border-right: 2px solid #00AC72;
		-webkit-transform: rotate(-135deg);
		transform: rotate(-135deg);
	}
	.to_top a.arrow_right {
		padding: 5px 28px 5px 15px;
	}
	.to_top a.arrow_right::after {
		right: 15px;
		left: auto;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}

	.bdr + .to_top{
		margin-top: 15px;
	}

}

#cate_link{
	padding: 38px 0 0;
}
#cate_link .content_ttl{
	margin-bottom: 25px;
}

#cate_link .accordion{
	border-bottom: 1px solid #ccc;
	padding: 13px 0 0;

}
#cate_link .accordion .ac_content{
	padding: 0 0 45px 0;
}
#cate_link .ac_content .sinryo_sub + ul{
	padding: 0 0 0 0;
}
#cate_link .ac_content ul li{
	margin-bottom: 4px;
}
#cate_link .accordion:last-of-type{
/*	border: none;*/
}

@media screen and (max-width: 767px) {
	#cate_link{
		display: none;
	}

}

/*------------------ サイドカラム　アコーディオンメニュー　----------------*/

.sinryo_cate{
	font-size: 1.8rem;
	color: #0CAB73;
	cursor: pointer;
	position: relative;
	margin: 0 0 11px;
}


.close .sinryo_cate{
	color: #212121;
}
.sinryo_cate:hover,
.close .sinryo_cate:hover{
	color: #0CAB73;
	opacity: 0.7;
}
.sinryo_cate::after,
.sinryo_cate::before{
	position: absolute;
	content: "";
	width: 12px;
	height: 2px;
	background-color: #00AC72;
	display: block;
	top: 50%;
	right: 0;
}
.sinryo_cate::after{
	transform: none;
}
.close .sinryo_cate::after,
.close .sinryo_cate::before{
	background-color: #222222;	
}

.close .sinryo_cate::after{
	transform: rotate(-90deg);

}
.close .sinryo_cate:hover::after,
.close .sinryo_cate:hover::before{
	background-color: #00AC72;
}
.sinryo_sub{
	font-size: 1.6rem;
	color: #0CAB73;
	margin: 30px 0 10px 0;
}
#cate_link .ac_content ul + .sinryo_sub{
	margin-top: 35px;
}
#cate_link ul li a{
	font-size: 1.6rem;
}

.sinryo_sub.naika { color:#E87978;}
.sinryo_sub.geka { color:#007CC0;}



/*電話番号インフォ*/
.toi_info{
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	/*margin: 20px 0 85px;*/
}
.toi_info .toi_ttl{
	width: 100%;
	font-size: 1.8rem;
	font-weight: bold;
}
.tel_info{
	font-size: 1.6rem;
	font-weight: bold;
}

.tel_info::before{
	content: "";
	width: 34px;
	height: 35px;
	display: inline-block;
	background-image: url("../images/icon/icon_tel.png");
	background-repeat: no-repeat;
	background-size: contain;
	position: relative;
	top: 9px;
	margin-right: 13px;
}
.kyukan .tel_info::before{
	background-image: url("../images/icon/tel_red.png");
}
.tel_info .tel_no{
	font-size: 3rem;
	/*letter-spacing: 0.06em;*/
	color: #0079C3;
	margin-left: 13px;
}
.kyukan .tel_info .tel_no{
	color: #E0463F;
}
.tel_info .sb{
	font-size: 1.6rem;
	font-weight: normal;
}

/*.tel_info .tel_time {
    font-size: 1.6rem;
    font-weight: normal;
    text-align: center;
    width: 100%;
    display: inline-block;
    line-height: 1;
    margin-top: 0;
    position: relative;
    left: 4.75em;
}
.tel_info .tel_time.st{
	padding-left: 2em;
}*/
.fax_info{
	font-size: 1.6rem;
	font-weight: bold;
	margin-bottom: 7px;
	margin-left: 16px;
}
.fax_info .fax_no{
	font-weight: normal;
}

.toi_info .sub {
	display: block;
	width: 100%;
	font-size: 1.8rem;
	margin-left: 79px;
    margin-top: -5px;
}

/*.tanto_name {
    position: relative;
    top: -30px;
}*/


@media screen and (max-width: 767px){

	.toi_info {
		display: block;
		/*margin: 10px 0 35px;*/
	}
	.toi_info .toi_ttl{
		font-size: 1.6rem;
	}
	.tel_info{
		font-size: 1.4rem;
		line-height: 1.5;
	}
	.tel_info::before {
		width: 24px;
		height: 24px;
		top: 5px;
		margin-right: 5px;
	}
	.tel_info .tel_no{
		letter-spacing: -0.6px;
		margin-left: 8px;
}
	.tel_info .tel_no,
	.tel_info .tel_no a{
		color: #0079C3;
		font-size: 2.2rem;
	}
	.kyukan .tel_info .tel_no a{
		color: #E0463F;
	}
	/*.tel_info .tel_time {
		font-size: 1.4rem;
		margin-top: 5px;
		margin-bottom: 5px;
		padding-left: 4em;
		left: 0;
	}*/
	.fax_info {
		font-size: 1.4rem;
		margin-bottom: 0;
		margin-left: 29px;
	}
	
	/*.tanto_name {
		position: absolute;
		bottom: -35px;
		left: 0;
	}*/
	
	.tel_info .sb{
		font-size: 1.4rem;
	}
	
	.toi_info .sub {
		font-size: 1.6rem;
		margin-left: 53px;
		margin-top: -1px;
		margin-bottom: 5px;
	}
}