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

* {
  padding: 0;
  margin: 0;
}

html {
  height: 100%;
}

body {
  color: #3E3A3A;
  background-color: #FFFFFF;
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ ゴシック", "MS Gothic", sans-serif;
  word-wrap: break-word;
  height: 100%;
}

section {
  padding: 3em 0 !important;
}

p {
  font-size: 1.1em;
  line-height: 1.5;
}

h3 {
  position: relative;
  padding: 1em 0 .5em 0;
  border-bottom: 6px solid #003466;
  font-size: 1em;
  margin: 0 auto;
}

h3:before {
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 20%;
  height: 6px;
  content: '';
  background: #3B8CDB;
}
a:hover img {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha( opacity=70 )";
}

li {
  list-style-type: none;
}

.d-none {
  display: none;
}

.text-center {text-align: center;}
.text-right {text-align: right !important;}

.bg_gray {background-color: #fbf9f7 !important;}

.cf { zoom: 1; }
.cf:before, .cf:after { content: ""; display: table; }
.cf:after { clear: both; }


/*margin padding */
.mt-2 {margin-top: 2em;}
.mt-3 {margin-top: 3em;}
.mb-2 {
    margin-bottom: 2em;
    text-align: left;
}

/*
display
-------------------------------------------*/
.sp_none{
	display: none;
}
.pc_none{
	display: block;
}
.sm_br {display: block;}


/*
btn_link
-------------------------------------------*/
.btn_box {text-align: center;}
.btn_link {
  display: inline-block;
  position: relative;
  background: linear-gradient(153.5deg, #00B7CE 0%, #00B7CE 50%, #00A1B4 50%, #00A1B4 100%);
  color: #fff;
  margin: 1em;
  padding: .5em 3em .5em 1.8em;
  transition: all .3s;
  text-decoration: none;
  border-radius: 30px;
}

.btn_link:after {
  content: "";
  position: absolute;
  display: block;
  transition: all .3s;
  width: 7px;
  height: 30px;
  top: 50%;
  right: .5em;
  border-top: solid 2px #192F93;
  border-right: solid 2px #192F93;
  transform: translateY(-50%) rotate(45deg) skewX(-45deg);
}
.btn_link:hover:after {
  right: 0px;
  height: 30px;
}

/*anination */

.fadeup{
  animation-name:fadeUpAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
  opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.fadeupt{
    opacity: 0;
}

/*===========================================================*/
/*header */
/*===========================================================*/
#common-header{
	margin:0;
	padding:0;
	background:#fff;
	height:55px;
  z-index: 999;
}
	
#common-header h1{
	display: block;
  background: #192F93;
	width:100%;
	height:30px;
	transition: .3s;
  text-align: center;
  line-height: 1;
 }
#h_text{
  margin: 0 auto;
  font-size:10px;
  font-weight:normal;
  padding:0;
  color:#fff;
}
  
#header_inner{
	width:100%;
	height:60px;
	padding:0;
  position:relative;
}
#h_logo{
	width:auto;
	position:absolute;
	margin:0 auto;
	top:5px;
	left:5px;
	z-index: 999;
}
	
#h_logo img{
	width:55%;
}
	
/*
navi
-------------------------------------------*/
#toggle{
	width:60px;
	height:60px;
  display:block;
	z-index: 1000;
  position:absolute;
  top: 5px;
	right:0;
  text-align: center;
}

.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
.menu-trigger {
  margin-top:6px;
  position: relative;
  width: 40px;
  height: 32px;
}
.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #192F93;
  border-radius: 4px;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger span:nth-of-type(2) {
  top: 14px;
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}

.menu-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(20px) rotate(-45deg);
  transform: translateY(20px) rotate(-45deg);
}
.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
.menu-trigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-20px) rotate(45deg);
  transform: translateY(-20px) rotate(45deg);
}

#menu{
	width:100%;
  display: none;
	position:absolute;
	top:56px;
	left:0;
	overflow: hidden;
}
#menu li{
	display:block;
}

nav {
	width: 100%;
  top:70px;
  left:0px;
  padding: 0;
}

nav ul {
 margin: 0;
 padding: 0;
 background:#00A1C9;
}
 
nav ul#menu {
  height:500px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  clear:both;
  z-index: 9999;
}
 
nav ul li a {
  width:100%;
  height:1em;
  clear:both;
  display: block;
  border-bottom: 1px solid #fff;
  font-size: 1.2em;
  line-height:0;
  padding:1.5em 0 1.5em 1em;
  text-indent:0;
  color:#fff;
  text-align:left;
  text-decoration: none;
}

nav ul li.nav1 a,
nav ul li.nav2 a,
nav ul li.nav3 a,
nav ul li.nav4 a,
nav ul li.nav5 a,
nav ul li.nav1 a:hover,
nav ul li.nav2 a:hover,
nav ul li.nav3 a:hover,
nav ul li.nav4 a:hover,
nav ul li.nav5 a:hover{
	background:none;
}
 
nav li ul{
  visibility: visible;
  opacity: 1;
  position:relative;
  left:0;
}

nav li#menu_li {
  background: #ffffff;
  text-align: center;
  padding-top: .5em;
} 
nav li#menu_li p,
nav li#menu_li a{
  text-align: center;
  padding: 0;
} 

/*===========================================================*/
/*content */
/*===========================================================*/

.content {
  width: 100%;
  background-color: #FFF;
  padding: 2em 10px;
}
.cont_wrap {
  max-width: 1200px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.cont_wraps {
  max-width: 1000px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.cont_wrap_960 {
  max-width: 960px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding: 1em;
}

.content h2 {
  font-size: 28px;
  line-height: 30px;
  margin-bottom: 0;
  font-weight: bold;
  letter-spacing: 1px;
  padding: 15px 10px;
  clear: both;
  text-align: center;
}

.content h2 span{
  font-size: 14px;
  color: #172D90;
  display: block;
}

/*===========================================================*/
/*toppage */
/*===========================================================*/
/*
top_slider
-------------------------------------------*/
#top_slider {
  height: 100%;
  min-height: 300px;
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-top: 2em;
}
#top_slider #top_sr_area {
  position: absolute;
  top: 45%;
  z-index: 10;
  text-align: center;
  width: 100%;
  color: #003366;
  text-shadow:2px 2px 0 #FFF, -2px -2px 0 #FFF,
             -2px 2px 0 #FFF, 2px -2px 0 #FFF,
             0px 2px 0 #FFF,  0-2px 0 #FFF,
             -2px 0 0 #FFF, 2px 0 0 #FFF;
}

#top_slider #top_sr_area h2 {
  font-size: 20px;
  letter-spacing: 2px;
  padding: 0 10px;
  line-height: 2;
}

/*
time
-------------------------------------------*/
#top_time table{
  width: 100%;
  table-layout: fixed;
  border-top:solid 1px #d3bca0;
  padding: 0.5em;
}
#top_time table thead th{
  background-color: rgba(252,240,226,0.25);
  border-bottom:solid 1px #d3bca0;
  padding:27px 0;
  font-size:18px;
  text-align: center;
}
#top_time table tbody th{
  border-bottom:solid 1px #d3bca0;
  padding:27px 0;
  font-size:18px;
  text-align: center;
  vertical-align: top;
}
#top_time table tbody td{
  border-bottom:solid 1px #d3bca0;
  padding:27px 0;
  font-size:18px;
  text-align: center;
  vertical-align: top;
}
#top_time table tbody td span{
  font-size:14px !important;
}
#top_time table thead th:nth-child(1),
#top_time table tbody th {
  width: 100px;
}

/*
news
-------------------------------------------*/
#top_news {
  background-color: rgba(252,240,226,0.25);
}
#top_news_wrap {
  align-items: center;
}
#top_news_box {
  background: #CAFFFF;
  width: 70%;
  padding: 1em;
  margin: 0 auto;
}
#top_news h2 {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
#top_news .ul_news {
  padding: .5em;
  width: 100%;
}
#top_news .ul_news li {
  line-height: 30px;
  border-bottom: 1px dotted #CCC;
  font-size: 18px;
  padding: 10px;
  margin-bottom: 1em;
  display: block;
  position: relative;
}
#top_news .ul_news li:last-child{
  margin-bottom: 0;
  padding-bottom: 0;
}
#top_news .ul_news li a {
  text-decoration: none;
  color: #333;
  display: inline-block;
  position: absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
}
#top_news .ul_news li:hover {
  cursor:pointer;
  color: #000;
  background-color: rgba(202,255,255,0.2);
}
  /* D250603 upd start */
#top_news .ul_news li span.up_ymd {
  color: #656565;
  padding-right: 20px;
}


/*
medical
-------------------------------------------*/
#top_medical {margin: 3em auto;}

.top_medical_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: .5em;
}

.top_medical_list_box {
  width: 48%;
  background-color: #fff;
  position: relative;
  margin-bottom: 1em;
  padding-bottom: 1em;
  box-shadow: 0 0 20px #ccc;
}
.top_medical_list_box:before,
.top_medical_list_box:after{ 
  content:'';
  width: 30px;
  height: 30px;
  position: absolute;
  display: block;
}
.top_medical_list_box:before{
  border-left: solid 5px #00B7CE;
  border-top: solid 5px #00B7CE;
  top:0;
  left: 0;
}
.top_medical_list_box:after{
  border-right: solid 5px #00B7CE;
  border-bottom: solid 5px #00B7CE;
  bottom:0;
  right: 0;
}

.top_medical_list_box:last-child{
  box-shadow:none;
}
.top_medical_list_box:last-child:before,
.top_medical_list_box:last-child:after{
  border:none;
}
.top_medical_list_box h2 {
  color: #333333;
  width: 90%;
  margin: 0 auto;
  text-align: center;
  padding-top: 20px;
  font-size: 1em;
  font-weight: bold;
  line-height: 30px;
  padding: 0;
  position: relative;
  background: repeating-linear-gradient(-30deg, #ffffff, #CAFFFF,#ffffff 3px, #CAFFFF 7px);
  border-radius: 0 20px 0 0;
}
.top_medical_list_box img {
  width: 94%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 15px;
  margin-bottom: 15px;
  border-radius: 5px;
}
.top_medical_box {
  width: 90%;
  background-color: rgba(252,240,226,0.25);
  margin: 2em auto 1em;
  padding: 1rem 2rem;
  position: relative;
}
.top_medical_box:before,
.top_medical_box:after{ 
  content:'';
  width: 30px;
  height: 30px;
  position: absolute;
  display: block;
}
.top_medical_box:before{
  border-left: solid 5px #00B7CE;
  border-top: solid 5px #00B7CE;
  top:0;
  left: 0;
}
.top_medical_box:after{
  border-right: solid 5px #00B7CE;
  border-bottom: solid 5px #00B7CE;
  bottom:0;
  right: 0;
}

.top_medical_box h2 {
  color: #333333;
  width: 60%;
  margin: 0 auto;
  text-align: center;
  padding-top: 20px;
  font-size: 1em;
  font-weight: bold;
  line-height: 30px;
  padding: 1rem 2rem;
  position: relative;
  background: repeating-linear-gradient(-30deg, #ffffff, #CAFFFF,#ffffff 3px, #CAFFFF 7px);
  border-radius: 0 20px 0 0;
}
.top_medical_box p {
  margin-top: 1em;
  line-height: 2;
  font-size: 1em;
}

/*
greeting
-------------------------------------------*/
#top_greeting {
  overflow: hidden;
  padding: 1em !important;
}

.top_greeting_box{
  margin:0;
}

figure.top_greeting_img{
  width: 100%;
  height: auto;
  opacity: 0.5 !important;
}
.top_greeting_img img{
  border-radius: 50px;
}

.top_greeting_sub_box{
  width: 100%;
  background: #E8FAFF;
  border-radius: 50px;
  padding: 2em 1em;
 }
.top_greeting_sub p{
  margin:0;   
  text-align: justify;
  font-size: 16px !important;
}
.top_greeting_name {
  text-align: right !important;
  font-weight: bold;
  margin-top: 1em !important;
}
#top_greeting_doctor {
  display:grid;
  gid-template-rows:50% 50%;
  margin-top: 1em;
  text-align: center !important;
}
  
#top_greeting_doctor_box {
  grid-row:2/3;
}
#top_greeting_doctor_box .top_greeting_name {
  text-align: center!important;
}
#top_greeting_doctor figure {
  grid-row:1/2;
}
#top_greeting_doctor img {
  width: 250px !important;
  height: 250px !important;
  border-radius: 50% !important;
}

/*
map
-------------------------------------------*/
#top_map {
  background-color: rgba(252,240,226,0.25);
}
#map_box {
  padding: 2em 0 1em;
}
.map_access {
  width: 100%;
}
.map_access_wrapper {
  position: relative;
  width: 100%;
  height: 300px;
}
.map_access_wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.map_method {
  width: 100%;
}
.map_address {
  background: #fff;
  padding: 2em 1em;
  margin-bottom: 1em;
}
.map_address p {
  text-align: center;
  font-weight: bold;
  margin: 0 auto 1em;
  padding-bottom: 1em;
  border-bottom: 1px dotted #3A5490;
  width: 90%;
}
.map_address p span {
  font-size: 14px;
}
.map_address dl{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto 1em;
  padding-bottom: 1em;
  border-bottom: 1px dotted #3A5490;
  width: 100%;
}
.map_address dl:last-child {
  margin-bottom: 0;
}
.map_address dt{
  text-align: left;
  width: 20%;
 }
.map_address dd{
  text-align: left;
  width: 80%;
 }
.map_metod_box {
  display: flex;
  justify-content:flex-start;
  flex-wrap: wrap;
}
.map_metod_box img {
  margin: 0;
  width: 50px;
}
.map_metod_box p {
  margin-left: .5em;
  font-size: 16px;
}
#map_metod1 {
  background: #58B9D4;
  color: #fff;
  padding: 1em 0 .5em .5em;
  margin-top: 1em;
}
#map_metod2 {
  background: #598AC6;
  color: #fff;
  padding: 1em 0 .5em .5em;
  margin-top: .5em;
}
#map_metod3 {
  background: #3FB79A;
  color: #fff;
  padding: 1em 0 .5em .5em;
  margin-top: .5em;
}

/*
greeting
-------------------------------------------*/
#greeting ul li {
  margin: .5em 0;
}
#greeting ul li:before {
  content: '\f101';
  font-family: 'Font Awesome 6 Free';
  font-weight: bold;
  font-size: 1em !important;
  padding: 0 7px 0 0;
  color: #3FB79A;
}

/*
medical
-------------------------------------------*/
#medical ul li {
  margin: .5em 0;
}
#medical ul li:before {
  content: '\f101';
  font-family: 'Font Awesome 6 Free';
  font-weight: bold;
  font-size: 1em !important;
  padding: 0 7px 0 0;
  color: #3FB79A;
}

/*
aboutus
-------------------------------------------*/
#aboutus ul li {
  margin: .5em 0;
}
#aboutus ul li:before {
  content: '\f101';
  font-family: 'Font Awesome 6 Free';
  font-weight: bold;
  font-size: 1em !important;
  padding: 0 7px 0 0;
  color: #3FB79A;
}

#aboutus .aboutus_col2 img{
  width: 100% !important;
}

#aboutus .aboutus_col2 div{
  width: 100% !important;
}

#aboutus .aboutus_col2 div img{
  width: 100% !important;
}

#aboutus .aboutus_col3 div{
  width: 100% !important;
}

#aboutus .aboutus_col3 div img{
  width: 100% !important;
}

#aboutus .aboutus_col3 div p{
  text-align: center;
  padding: .5em;
  background: #00B7CE;
  color: #fff;
}

/* D250603 add start */
/*
news
-------------------------------------------*/
.news .ul_news{
  margin-top: 1em;
}

.news #detail {
  margin-top: 1em;
}

.news h2#title {
  text-align: left;
}

.news h2#title {
  text-align: left;
}

.news #news_box {
  margin-top: 1em;
}

/* Pager style（外部化可） */
.pager{
  text-align:right;
  padding:10px;
  clear:both;
  margin-top: 1em;
}
/*ページャーボタン*/
.pager a{
    border: 1px solid #58B9D4;
    border-radius: 5px;
    color: #58B9D4;
    font-size: 1em;
    padding: .5em .7em;;
    text-decoration: none;
	  margin:0 1px;
}

/*現在のページのボタン*/
.pager a.current{
    background: #58B9D4;
    border: 1px solid #58B9D4;
    border-radius: 5px;
    color: #fff;
    font-size: 1em;
    padding: .5em .7em;;
    margin:0 1px;
    text-decoration: none;
}

.pager a:hover{
    background:#58B9D4;
    color: #fff;
}


/* D250603 add end */


/*
フッター
-------------------------------------------*/
footer {
  background-color: #ffffff;
}

#footer_nav {
  padding: 1em;
  background: #00A1C9;
}
#footer_nav ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}
#footer_nav ul li{
  display: block;
  padding: 10px 30px;
  width: 45%;
}
#footer_nav ul li a{
  color: #fff;
  font-size: 14px;
  text-decoration: none;
	position: relative;
  width: 100%;
  max-width: 100%;
  display: inline-block;
}
#footer_nav ul li a:hover{
  text-decoration: none;
}
#footer_nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -.5em;
  left: 0;
  width: 100%;
  height: 2px;
  background:#192F93;
  transition: all .3s;
  transform: scale(0, 1);
  transform-origin: left top;
}

#footer_nav ul li a:hover::after {
  transform: scale(1, 1);
}

#foot_wrap {
  margin-top: 1em;
}
#footer_logo img {
  width: 50%;
}
#footer_logo p {
  padding: 0;
  font-size: 12px;
}

#footer_group_box h2 {
margin-top: 1em;
}

#footer_group_box ul{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: .5em;
}
#footer_group_box ul li{
  width: 48%;
}
#footer_group_box ul li img{
  max-width:  198px;
  width: 100%;
}

#footer_copy .cont_wrap {
  margin: 0 auto;
}

#footer_copy {
  color: #172F90;
  padding:0 0 8px;
  text-align: center;
  margin: 0 auto;
  font-size: 12px;
}

/*
page_top
-------------------------------------------*/
#page_top a{
	border-radius: 60px;
	height:60px;
	width:60px;
	display: flex;
	justify-content:center;
	align-items:center;
  background-color: #039FC7;
  text-align: center;
  color: #fff;
  font-size: 12px;
	font-weight: bold;
	line-height: 60px;
  text-decoration: none;
	filter:alpha(opacity=90);
    -moz-opacity: 0.9;
    opacity: 0.9;
}

#page_top a:hover{
  display: block;
  background-color: #598AC6;
  text-align: center;
  color: #fff;
  font-size: 12px;
  text-decoration: none;
	filter:alpha(opacity=60);
    -moz-opacity: 0.6;
    opacity: 0.6;
}

#page_top {
  position: fixed;
  right: 10px;
  bottom:10px;
  z-index: 2;
  opacity: 0;
  transform: translateY(100px);
}

#page_top.UpMove{
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }
  to {
    opacity: 1;
  transform: translateY(0);
  }
}

#page_top.DownMove{
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
    opacity: 1;
  transform: translateY(0);
  }
  to {
    opacity: 1;
  transform: translateY(100px);
  }
}

/*===========================================================*/
/*下層 */
/*===========================================================*/

#sub_top {
  background-color: #eee;
  background-repeat: no-repeat;
  height: 200px;
  line-height: 30px;
  padding-top: 100px;
  width: 100%;
  margin-top: 1em;
  background-size: cover;
  background-position: center;
  text-align: center;
  font-family: 'Raleway', sans-serif;
  color: #000000;
  font-size: 2.2em;
  letter-spacing: 0.5em;
  -moz-text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
  -webkit-text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
  -ms-text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
   text-shadow:2px 2px 0 #FFF, -2px -2px 0 #FFF,
              -2px 2px 0 #FFF, 2px -2px 0 #FFF,
              0px 2px 0 #FFF,  0-2px 0 #FFF,
              -2px 0 0 #FFF, 2px 0 0 #FFF;
  background-image: url("../img/slide/main_img_004.jpg");
}
.sub_title {
  font-size: 1.3em !important;
    text-align: center;
    margin: 2em auto;
    padding: 0 1em;
}

.pan {
  background-color: #e4e4e4;
  font-size: 14px;
  line-height: 30px;
  color: #555;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #E5E5E5;
  border-top: 1px solid #FFF;
}

.pan ul {
  width: 96%;
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}

.pan li {
  display: inline-block;
}

.pan li a {
  text-decoration: none;
  color: #999;
}

.pan li a::after {
  content: ">";
  padding-left: 10px;
  padding-right: 10px;
}

.pan li a:hover {
  color: #111;
}

.pan li i {
  padding-right: 5px;
    color: #003466;
}


/*
ご挨拶
-------------------------------------------*/
.greeting_box p{
  line-height: 1.5 !important;
  margin-bottom: 1em;
  text-align: justify;
}
.greeting_name {
  text-align: right !important;
  font-weight: bold;
  margin-top: 1em !important;
}


/*******************
 404
********************/
#err_contents {
    text-align: center;
    margin: 3em auto;
}

/*===========================================================*/
/*media */
/*===========================================================*/

@media screen and (min-width:960px){
  body {
    font-size: 16px;
  }

  h3 {
    font-size: 1.3em;
    margin: 1em auto;
  }
  .sp_none{
  		display: block;
  	}
  .pc_none{
  	display: none;
  }
    
  .sm_br {display: none;}
  .pc_br {display: block;}

  .btn_box {text-align: right;}

  /*----------- content ----------- */
  .content h2 {
    font-size: 28px;
    line-height: 30px;
    margin-bottom: 20px;
  }
  .content h2 span{
    font-size: 14px;
  }

  /*----------- header ----------- */
  #common-header{
  	width:100%;
  	position:relative;
  	height:140px;
    transition: .3s;
  }
  
  #common-header h1{
  	display: block;
    background: #192F93;
  	width:100%;
  	height:20px;
  	transition: .3s;
    text-align: left;
   }
  #h_text{
    margin: 0 auto;
    font-size:10px;
    font-weight:normal;
    padding:2px 0 0;
    color:#fff;
  }
  
  header{
    padding: 0;
  	text-align:center;
   }
   
  #header_inner {
  	width:100%;
  	margin:0 auto;
  	text-align:left;
  	position:relative;
  	z-index:2;
   }
  
  #h_logo{
  	width:216px;
  	text-align: center;
  	position:absolute;
  	margin:0;
  	top:15px;
  	bottom:15px;
  	left:0;
  	right:0;
  	transition: .3s;
  }
  #h_btn{
  	position: absolute;
  	top: 5px;
  	right: 0;
  	text-align:right;	
  }
  #h_logo img{
  	transition: .3s;
  	height: auto;
    width: auto;
  }
  #h_btn img{
  	transition: .3s;
  	height:auto;
  }
  #h_btn li{
  	list-style: none;
  	margin-bottom: 0;
  }
  
  /*----------- navi ----------- */
  
  #toggle{
  	display:none;
  }
  
  #menu_pc{
    width:400px;
    height:100px;
    display:flex;
    flex-flow:wrap;
    margin:5px 0 0 10px;
    list-style: none;
  }
  
  #menu_pc li{
    width:120px;
    margin-top:10px;
  }
  
  #top-header-nav{
  	width:350px;
  	margin:0 auto;
  	position:absolute;
    right: 0;
  	left:0;
  }
  
  nav{
    top:0;
    left:0px;
    padding:0;
    margin:0 auto;
  }
  nav ul {
   background:none;
  }
  
  nav ul li a {
  	width:auto;
  	height:auto;
    float:left;
    margin: 0;
    padding:1em 0 10px;
    text-align: center;
    display:block;
  	color:#000;
  	font-size:16px;
    text-decoration: none;
  	position: relative;
  }
   
  nav ul li.current a,
  nav ul li a:hover{
  	color:#182D95;
    padding-top: 1em;
  }
  
  nav ul li a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background:#182D95;
    transition: all .3s;
    transform: scale(0, 1);
    transform-origin: left top;
  }
  
  nav ul li.current a::after {
      transform: scale(0.2, 1);
  }
  
  nav ul li.current a:hover::after,
  nav ul li a:hover::after {
      transform: scale(1, 1);
  }
     
  /*----------- top_slider ----------- */
  #top_slider {
    min-height: 920px;
    margin-top: 0;
  }
  #top_slider #top_sr_area h2 {
    font-size: 50px;
    letter-spacing: 2px;
  }
  #top_slider #top_sr_area p {
    font-size: 12px;
  }
  
  /*----------- footer ----------- */
  #footer_nav ul li{
    width: auto;
  }

  #foot_wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 1em;
  }
  #footer_group_box h2 {
    margin-top: 0;
  }
  #footer_logo img {
    width: auto;
  }
  #footer_logo p {
    font-size: 14px;
  }
  #footer_group_box {
    width: 55%;
  }
  #footer_group_box ul li{
    width: auto;
  }
  #footer_copy {
    font-size: 14px;
  }
  
  /*----------- time ----------- */
  #top_time table {
    padding: 0;
  }
  
  #top_time table thead th:nth-child(1),
  #top_time table tbody th {
    width: 200px;
  }
  
  /*----------- news ----------- */
  #top_news_wrap {
    display: flex;
    justify-content:space-between;
    flex-wrap: wrap;
    align-items: center;
  }
  #top_news_box {
    width: 17%;
  }
  #top_news .ul_news {
    padding: 0;
    margin-left: 1em;
    width: 80%;
  }
  /* D250603 add start */
  #top_news .ul_news li {
    display: flex;
    justify-content:flex-start;
    flex-wrap: wrap;
  }
  /* D250603 add end */

  /*----------- medical ----------- */
  .top_medical_list {
    padding: 0;
  }
  .top_medical_list_box {
    width: 24%;
  }
  
  .top_medical_box {
    width: 60%;
    margin: 2em auto 1em;
    padding: 1rem 2rem;
    position: relative;
  }

  .top_medical_box h2 {
    width: 40%;
    padding: 1rem 2rem;
    font-size: 1.2em;
  }
  
  .top_medical_list_box h2 {
    font-size: 1.1em;
  }
  
  .top_medical_box p {
    margin-top: 1.2em;
    line-height: 2;
  }

/*----------- greeting ----------- */
  #top_greeting {
    overflow: hidden;
    padding-top: 4em;
  }
  
  .top_greeting_box{
    position: relative;
    margin:0;
    height: 900px;
  }
  
  figure.top_greeting_img{
    width: 35%;
    height: 70%;
    max-width: 100%;
    opacity: 0.5 !important;
    z-index: 1;
    position: absolute;
    top: 0;
    right: 0;
  }
  .top_greeting_img img{
    border-radius: 50px 0 0 50px;
    height: 550px;
  }
  
  .top_greeting_sub_box{
    width: 70%;
    background: #E8FAFF;
    position: absolute;
    top: 100px;
    left: 0;
    border-radius: 0 50px 50px 0 ;
   }
  .top_greeting_sub {
    width: 60%;
    margin: 3em 0;
    margin-left: 22em;
  }
  .top_greeting_sub p{
    margin:0 0 30px 0;   
    text-align: justify;
    font-size: 18px !important;
  }
  .top_greeting_name {
    text-align: right !important;
    font-weight: bold;
  }
  #top_greeting_doctor {
    position: absolute;
    bottom: 0;
    left: 25%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  #top_greeting_doctor figure {
    margin-left: 1em;
  }
  #top_greeting_doctor img {
    width: 250px !important;
    height: 250px !important;
    border-radius: 50% !important;
  }
  
  /*----------- map ----------- */
  #map_box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 2em 0 2em;
  }
  .map_access {
    width: 53%;
  }
  .map_access_wrapper {
    position: relative;
    width: 100%;
    height: 88%;
  }
  .map_method {
    width: 45%;
  }
  .map_address {
    padding: 2em 3em;
  }
  .map_address dl{
    width: 80%;
  }
  .map_address dt{
    width: 30%;
   }
  .map_address dd{
    width: 70%;
  }
  #map_metod1 {
    padding: 1em;
    margin-top: 1em;
  }
  #map_metod1 img {
    width: 60px;
  }
  #map_metod2 {
    padding: 1em;
    margin-top: 1em;
  }
  #map_metod3 {
    padding: 1em;
    margin-top: 1em;
  }
  #map_metod2 img,
  #map_metod3 img {
    width: 55px;
  }
  .map_metod_box p {
    margin-left: 1.5em;
    font-size: 18px;
  }

  /*----------- 下層 ----------- */
  #sub_top {
    height: 300px;
    padding-top: 150px;
    margin-top: 0;
  }
  /*----------- ご挨拶 ----------- */
  #greeting ul {
    width: 100%;
    display:flex;
    flex-flow:wrap;
  }
  
  #greeting ul li{
    width: 48%;
    font-size: 16px;
    margin: .5em 0;
  }

  /*----------- 診療内容 ----------- */
  #medical ul {
    width: 100%;
    display:flex;
    flex-flow:wrap;
  }
  
  #medical ul li{
    width: 48%;
    font-size: 18px !important;
    margin: .5em 0;
  }

  /*----------- 病院概要 ----------- */
  #aboutus .aboutus_col2 {
    width: 100%;
    display:flex;
    flex-flow:wrap;
    justify-content: space-between;
    margin-bottom: 2em;
  }
  
  #aboutus .aboutus_col2 img{
    width: 58% !important;
  }

  #aboutus .aboutus_col2 div{
    width: 40% !important;
  }

  #aboutus .aboutus_col2 div img{
    width: 100% !important;
}

  #aboutus .aboutus_col3 {
    width: 100%;
    display:flex;
    flex-flow:wrap;
    justify-content: space-between;
    margin-bottom: 2em;
  }
  
  #aboutus .aboutus_col3 div{
    width: 32% !important;
  }

  #aboutus .aboutus_col3 div img{
    width: 100% !important;
  }

  /*----------- news ----------- */
  .news .ul_news {
    width: 100% !important;
  }

} /*min-width:960px */

@media screen and (min-width:1200px){
  #header_inner {
  	width:1200px;
   }
}


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

  body {
    font-size: 16px;
  }

  body.fixed {
    overflow: hidden;
  }

  img {
    max-width: 100% !important;
    height: auto;
    width :auto;
    margin-left:auto;
    margin-right:auto;
  }

  /*
   openbtn
  --------------------------------------------------*/
  .openbtn{
    display: block;
    height: 30px;
    width: 40px;
    text-align: center;
    padding-top: 5px;
    padding-bottom: 5px;
    position: fixed;
    z-index: 9999;
    top: 24px;
    right: 5px;
    border-radius: 3px;
    cursor: pointer;
  }
  .openbtn:hover {
    cursor: pointer;
  }
  
  .openbtn span{
    width: 28px;
    height: 2px;
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -14px;
    background-color: #512c14;
    transition: all 0.3s;
    transform: rotate(0deg);
  }
  
  .openbtn span:nth-of-type(1) {
    transform: translateY(-8px);
  }
  
  .openbtn span:nth-of-type(3) {
    transform: translateY(8px);
  }
  
  .openbtn:hover span:nth-of-type(1) {
    transform: translateY(-10px);
  }
  .openbtn:hover span:nth-of-type(3) {
    transform: translateY(10px);
  }

  .openbtn.opened span:nth-of-type(2) {
    background: rgba(255, 255, 255, 0);
    transform: translateX(30px);
  }
  .openbtn.opened span:nth-of-type(1) {
    transform: rotate(-45deg) translateY(0px);
  }
  .openbtn.opened span:nth-of-type(3) {
    transform: rotate(45deg) translateY(0px);
  }
    
  /*
  フッター
  -------------------------------------------*/
  footer .cont_wrap {
      display: inline-block;
        text-align: center;
  }
    
    footer .cont_wrap .f_add {
      width: 100%;
      padding: 10px;
  }
  .no_sp {
    display: none;
  }


} /*max-width:960px */

@media screen and (max-width:640px){
  .sm_p {
    padding: 1em;
  }


 /*
  err
  -------------------------------------------*/
  #err_contents h2,
  #err_contents p {
      text-align: left;
    }

} /*max-width:640px */

@media screen and (max-width:460px){
  section {
    padding: 1em 0 !important;
  }

  .mt-3 {margin-top: 1em;}
  .sm_br {display: block;}

  .content {
      padding: 1em 10px;
  }
    
  #index_top #top_catch h2 {
    font-size: 30px;
  }

  #top_medical {margin: 1em auto;}


}
