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



/*==================================================
スタート時は要素自体を透過0にするためのopacity:0;を指定する
===================================*/

.box{
opacity: 0;
}

/*==================================================
ふわっ
===================================*/

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

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

to {
opacity: 1;
transform: translateY(0);
}

}


/* PC */
@media screen and (min-width:751px) {


.wrapper {
   overflow: hidden;
}


/* header */

header{
width: 100%;
display: flex;
align-items: center;
flex-wrap: wrap;
position:relative;
background:#ffffff;
/*background:url(../images/header01.png) top left no-repeat, url(../images/header02.png) top right no-repeat;*/
background-size: 80px;
}


.header1{
width: 1080px;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
}

.header2{
width: 550px;
}

.header2 h1{

}

.header2 h1 a{

}

.header2 h1 a img{
width: 100%;
}
.header3{
    z-index:1;
}

.header4{
width: 100%;
text-align: center;
margin: 0 0 7px 0;
}

.header4 a{
    width: 100%;
    display: block;
    font-size: 3.5rem;
    color: #314e70;
    font-weight: 600;
    line-height: 1;
	/*font-family: YuMincho, 'Yu Mincho', serif, YakuHanJP_Narrow, 'Noto Serif JP', serif , "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;*/
    font-family: "Asap", sans-serif;
}

.header4 a span{

}

.header4 a span::before{
    content: "";
    background: url("../images/ic_tel.svg");
    display: inline-block;
    width: 2.4rem;
    height: 2.4rem;
    margin: 0 .3rem 0 0;
    vertical-align: baseline;
}

.header5{
  width: 100%;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: .15rem;
  color: #007ab4;
    padding: .5rem 2rem;
    position: relative;
    background: #fff;
    /*background: url(../images/headerbg.png);*/
    margin-bottom: 1rem;
    border: 1px solid #007ab4;
	border-radius: 20px;
	
}
.header5b{
width: 270px;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}

.header6{
  width: 300px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
}

.header7{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 3px 0;
}

.header8{
  width: 7rem;
}

.header8 span{
  display: inline-block;
  text-align: left;

  line-height: 1;
  width: 100%;
}

/*.header9{
  width: calc(100% - 7.4rem);
}*/

.header10{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.header11{
  width: 7rem;
}

.header11 span{
  display: inline-block;
  text-align: left;
  line-height: 1;
  width: 100%;
  color: #ef3d46;
}

.header12{
  width: calc(100% - 7.4rem);
  color: #ef3d46;
}





.header13{
    width: 100%;
    margin: 0 auto;
    font-size: 1.3rem;
    color: #007ab4;
    letter-spacing: .2rem;
    padding: 0.4rem 0;
    text-align: center;
    background: #EBF4FC;
}

.header13 span{
  }

.header14{
  width: 100%;
  font-size: 1.3rem;
  letter-spacing: 0;
}

.header15{
  width: 100%;
  padding: 20px 0;
}
.header18 span{
    display: inline-block;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
	letter-spacing: .07rem;
    width: 100%;
    /*background: #fff8f4;*/
    padding: .7rem 1.2rem;
	/*font-family: YuMincho, 'Yu Mincho', serif, YakuHanJP_Narrow, 'Noto Serif JP', serif , "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;*/
    font-family: YakuHanJP, 'Kosugi Maru', sans-serif;
    line-height: 1;
    /*border-radius: 3px;
    border: 1px solid #ffc174;*/
	}



/* header */















/* nav */


/*========= ドロップダウンのためのCSS ===============*/

/*==ナビゲーション全体の設定*/
nav{
text-align: center;
padding: 20px 0 20px;

}

/*ナビゲーションを横並びに*/
nav ul{
/*2階層目の基点にするためrelativeを指定*/
position: relative;
list-style: none;
display: flex;
justify-content: space-between;
width: 1080px;
margin: 0 auto;
border-radius: 6px;
}

nav ul li{
border-right: 1px dashed #ccc;
width: 16.6%;    
}

nav ul li:first-child{
border-left: 1px dashed #ccc;
}    
    
nav ul li li{
margin: 0 0 0 0;
}
    

/*2階層目以降は横並びにしない*/
nav ul ul{
display: block;
}

/*ナビゲーションのリンク設定*/
nav ul li a{
/*矢印の基点にするためrelativeを指定*/
  position: relative;
  display: block;
  text-decoration: none;
  transition: all .3s;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: .15rem;
  line-height: 1.3;
  color: #314e70;
}

nav ul li li a{
padding:20px;
}

nav ul li a:hover{
/*color: #292e38;   */ 
}

/*==矢印の設定*/

/*2階層目を持つliの矢印の設定*/

nav ul li.has-child > a::before{
content:'';
position: absolute;
left:0;
top:60px;
width:6px;
height:6px;
border-top: 2px solid #fff;
border-right:2px solid #fff;
transform: rotate(135deg);
}

/*==2階層目以降の画像設定*/

nav ul li.has-child img{
width: 80%;
height: auto;
transition: all .5s;
vertical-align: bottom;
border-radius: 8px 3px 8px 3px;
}

/*hoverしたら画像拡大*/
nav ul li.has-child img:hover{
transform: scale(1.2);
}

nav ul li.has-child dt{
overflow: hidden;
margin: 0 0 16px 0;
}

nav ul li.has-child dd{
font-size: 1.6rem;
font-weight: 500;
letter-spacing: .05rem;
}

@media screen and (max-width:1200px){
nav ul li.has-child dt{
height: 12vh;
}

}

/*== 2層目の設定 */

nav li.has-child ul{
position: absolute;
top: 84px;
z-index: 4;
display: flex;
justify-content: flex-start;
flex-wrap: wrap;
visibility: hidden;
opacity: 0;
transition: all .4s;
border-radius: 0 0 6px 6px;
}

nav li.has-child ul.has-child1{
width: 240px;
left: 259px;
}

nav li.has-child ul.has-child2{
width: 220px;
left: 428px;
}

nav li.has-child ul.has-child3{
width: 220px;
left: 645px;
}

nav li.has-child ul.has-child4{
width: 220px;
left: 735px;
}

/*hoverしたら表示*/
nav li.has-child:hover > ul{
visibility: visible;
opacity: 1;
z-index: 100;
}

/*各ナビゲーション横幅*/
nav li.has-child ul li{
width: 260px;
background: #43ab57;
}

/*ナビゲーションaタグの形状*/
nav li.has-child ul li a{
color: #fff;
padding: 8px 15px 8px 30px;
font-size: 1.7rem;
font-weight: 500;
letter-spacing: 0;
text-align: left;
  text-shadow: 1px 1px 3px #237833;
}

nav li.has-child ul li a:hover,
nav li.has-child ul li a:active{
background: #57b96a;
opacity: .9;
}


.navbnr{
display: flex;
align-items: center;
}

.navbnr a{
display: inline-block;
background: #02b2bf;
padding: 15px 18px;
color: #fff;
border-radius: 12px 5px 12px 5px;
}

.navbnr a:hover{
background: #25C5D0;
color: #fff;
}






/* nav */











/* slider */

.swiper {
width: 100%;
height: 100%;
}

.swiper-slide {
text-align: center;
font-size: 18px;
background: #fff;

/* Center slide text vertically */
display: -webkit-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
-webkit-justify-content: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
-webkit-align-items: center;
align-items: center;
}

.swiper-slide img {
display: block;
/*width: 750px;
height: 500px;
*/
width: 100%;
height: 100%;

object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev {
--swiper-navigation-color: #009f88; 
}
	
.swiper_txt{
    position: absolute;
    left: 4%;
    bottom: 20%;
    width: 750px;
    z-index: 10;
    text-align: center;
}
.swiper_txt2 {
display: block;
margin: 0 auto;
}

.swiper_txt2 img {
    display: block;
    width: 750px;
}
	
	
	
	
/*	
	
.swiper_txt {
    position: absolute;
    left: 20rem;
    bottom: 300px;
    width: 900px;
    z-index: 10;
}

.swiper_txt img {
    display: block;
    width: 80%;
}
*/
/* slider */









/* pagetop */


#page-top {
position: fixed;
bottom: 3rem;
right: 2rem;
z-index: 99;
}
#page-top a {
width: 90px;
display: block;
opacity: 0.9;
transition: all .3s ease;
}
#page-top a:hover {
text-decoration: none;
opacity: .5;
}


#page-top a img{
width: 100%;
display: block;
}


/* pagetop */






/* breadcrumb */

.breadcrumb__w{
width: 100%;
margin: 0 auto;
padding: 15px 0 15px 30px;
font-size: 1.5rem;
background: #f5f5f5;
}

.breadcrumb__w ol{
padding: 0;
color: #333 !important;
margin: 0 auto;
text-align: center;
}

.breadcrumb__w ol li{
list-style:none;
display:inline;
}

.breadcrumb__w ol li a:link,
.breadcrumb__w ol li a:visited{
color:#333 !important;
}

.breadcrumb__w ol li a:hover,
.breadcrumb__w ol li a:active{
opacity: .7;
}

.breadcrumb__w ol li:last-of-type a{
color:#333 !important;
}

.breadcrumb__w ol li:last-of-type a:hover,
.breadcrumb__w ol li:last-of-type a:active{
opacity: .7;
}

/* breadcrumb */


/*特徴*/
.topfeature1{
text-align: center;
margin: 0 0 6rem 0;
}

.topfeature1 h2 span::after{
  content: "feature";
  display: block;
  letter-spacing: .2rem;
  text-align: center;
  font-family: 'Tangerine', cursive;
  font-size: 4rem;
  color: #00afec;
  font-weight: 400;
}

.topfeature1 h2 span{
display: block;
position: relative;
}

.topfeature1 h2 {
  display: block;
  text-align: center;
  font-size: 3.5rem;
  letter-spacing: .3rem;
  color: #354e71;
  line-height: 1;
  font-weight: 500;
}

.topfeature_wrapper {
    display:flex;
    width:1080px;
    margin: auto;
    flex-wrap:wrap;
    justify-content:space-between;
}

.topfeature_item {
    width:356px;
    height: 315px;
    background: url(../images/feature01.svg);
    background-size:cover;
    background-repeat:no-repeat;
}

.topfeature_item:nth-child(2) {
    background: url(../images/feature02.svg);
    background-size:cover;
    background-repeat:no-repeat;
}

.topfeature_item:nth-child(3) {
    background: url(../images/feature03.svg);
    background-size:cover;
    background-repeat:no-repeat;
}




.topfeature2 {
width: 1000px;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}

.topfeature3 {
width: 220px;
}

.topfeature3 img {
width: 100%;
}











.topreservation__w {   
width: 100%;
padding: 12rem 0 12rem;
background: #1488CC;
background: -webkit-linear-gradient(to right, #2B32B2, #1488CC);
background: linear-gradient(to right, #2B32B2, #1488CC);
}

.topreservation1{
text-align: center;
margin: 0 0 5rem 0;
}

.topreservation1 h2 span::after{
content: "reservation";
display: block;
letter-spacing: .2rem;
text-align: center;
font-family: 'Tangerine', cursive;
font-size: 4rem;
color: #96c8e7;
font-weight: 400;
}

.topreservation1 h2 span{
display: block;
position: relative;
}

.topreservation1 h2 {
display: block;
text-align: center;
font-size: 3.5rem;
letter-spacing: .3rem;
color: #ffffff;
line-height: 1;
font-weight: 500;
/*font-family: 'Roboto', YakuHanJP_Narrow, 'Zen Old Mincho', Meiryo, sans-serif;*/
	
}



.topreservation2 {
width: 1000px;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}

.topreservation3 {
width: 100%;
color: #fff;
font-size: 2rem;
text-align: center;
letter-spacing: .3rem;
font-weight: 400;
margin-bottom: 7rem;
}

.topreservation4 {
width: 100%;
text-align: center;
}

.topreservation4 a {
display: inline-block;
background: linear-gradient(to right, #fc6295, #ec497f);
padding: 2.5rem 7rem;
text-align: center;
color: #fff;
font-size: 2rem;
font-weight: 400;
letter-spacing: .2rem;
border-radius: 10px;
box-shadow: 5px 5px 5px #3c42a7;
}

.topreservation4 a span {
}

.topreservation4 a span::before {
display: inline-block;
content: "";
background: url("../images/ic_link.svg");
width: 1.8rem;
height: 1.8rem;
margin-right: 1.5rem;
vertical-align: middle;
}
.topreservation5 {
background: linear-gradient(transparent 85%, rgb(0 209 255 / 50%) 15%);
display: inline-block;
}



/* medical */
.topsubject__w{
width: 100%;
/*background: url("../images/topsubjectbg.jpg");*/
background-size: cover;
padding: 50px 50px;
text-align: center;
}

.topsubject1{
text-align: center;
display: inline-block;
font-size: 1.8rem;
letter-spacing: 0.2rem;
margin: 0 0 50px 0;
}	
.topsubject1 h2{
font-size: 3.2rem;
color: #23333e;
display: inline-block;
letter-spacing: .2rem;
line-height: 1;
font-weight: 700;
 /* font-family: "Zen Maru Gothic";*/
}

.topsubject1 h2 span{
}


.topsubject1 h2::before{
content: "";
background: url("../images/logo-s.svg");
display: block;
width: 40px;
height: 40px;
margin: 0 auto 10px;
}

.topsubject1 h2 span::after{
content: "medical";
font-size: 1.4rem;
color: #7ec4f3;
display: block;
margin: 15px auto 0;
line-height: 1;
letter-spacing: .1rem;
font-weight: 400;
}
	

.topmedical__w{
  width: 100%;
  padding: 8rem 0;
  background: url("../images/topmedicalbg.jpg");
  background-size: cover;
  position: relative;
  z-index: 1;
}

.topmedical_bg {
    content:"";
    display:block;
    width: 90vw;
    height: 440px;
    background-image:url(../images/ilst05.svg);
    background-repeat:no-repeat;
    background-size: contain;
    background-position:right bottom;
    position:absolute;
    bottom:0;
    right: 1vw;
    z-index:-1;
}

.topmedical_ilst {
    background-image:url(../images/ilst06.svg);
    background-repeat:no-repeat;
    background-size:contain;
    background-position:top;
    width:280px;
    height: 280px;
    position:absolute;
    top:34px;
    left:30px;
}

.topmedical1{
text-align: center;
margin: 0 0 6rem 0;
}

.topmedical1 h2{
  display: block;
  text-align: center;
  font-size: 3.5rem;
  letter-spacing: .3rem;
  color: #fff;
  line-height: 1;
  font-weight: 500;
}

.topmedical1 h2 span{
    display: block;
    position: relative;
}

.topmedical1 h2 span::after{
  content: "medical";
  display: block;
  letter-spacing: .2rem;
  text-align: center;
  font-family: 'Tangerine', cursive;
  font-size: 4rem;
  color: #bbedff;
  font-weight: 400;
}

/*.topmedical1 h2 span::after{
    content: "";
    background: url(../images/ic_medical.svg);
    width: 70px;
    height: 70px;
    display: block;
    top: -40px;
    left: -40px;
    position: absolute;
}*/

.topmedical2{
width: 900px;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: flex-start;
}
.topmedical2 p{
display: flex;
align-items: flex-end;
font-size:1.6rem;
font-weight:600;
margin-bottom: 20px;
}
	
.submedical2{
width: 900px;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: flex-start;
}

/*追加*/
.topsubject_box {
    width: 31%;
    text-align: center;
    border-radius: 20px;
    margin: 0 3% 2.5rem 0;
}

.topsubject_box:nth-child(3n) {
    width: 31%;
    text-align: center;
    border-radius: 20px;
    margin: 0 0 2.5rem 0;
}
.topsubject_box a::before {
    content: "";
    position: absolute;
    display: block;
    background: url(../images/ic_arrow2.svg) no-repeat;
    width: 1.5rem;
    height: 1.5rem;
    right: 1rem;
    top: 2.5rem;
}


.topsubject_box a{
    width: 100%;
    padding: 3rem 0;
    display: flex;
    height: 100%;
    border-radius: 10px;
    background: #ffffff;
    transition: all .3s;
    color: #105eb1;
    position: relative;
    box-shadow: 3px 3px 5px #cfc5b1;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    font-size: 1.6rem;
    line-height: 1.4;
    letter-spacing: .1rem;
    font-weight: 600;
}

.topsubject_box a span::before{
background: url("../images/ic_topmedical.svg");
width: 1.6rem;
height: 1.6rem;
display: inline-block;
top: 2.9rem;
left: 1rem;
position: absolute;
}

.topsubject_box div.icon {
    width: 80px;
    height: 80px;
    display: block;
    margin: 0 auto 20px;
}


.topsubject_t {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.topsubject_box a span {

}

.topmedical3{
width: 19%;
background-size: cover;
box-shadow: 5px 5px 5px #F7F6F4;
border-radius: 30px 10px 30px 10px;
opacity: 1;
padding: 0 0 10px 0;
}

.topmedical4{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
position: relative;
margin: 0 0 60px 0;
}

.topmedical4 a{
display: block;
width: 100%;
border-radius: 2px 2px 2px 2px;
}


.topmedical5{
position: absolute;
z-index: 2;
width: 100%;
left: 50%;
bottom: -50px;
transform: translateX(-50%);
}

.topmedical5b{
  display: block;
  width: 92%;
  height: 100%;
  background: linear-gradient(0deg, white, rgb(255 255 255 / 85%));
  text-align: center;
  font-size: 2.2rem;
  font-weight: 500;
  padding: 30px 0;
  font-family: 'Zen Maru Gothic', serif;
  position: relative;
  box-shadow: 2px 2px 1px rgb(106 199 122);
  border-radius: 3px;
  margin: 0 auto;
}

.topmedical5b span{
display: block;
}

.topmedical5b span::before{
content: "";
position: absolute;
display: block;
background: url("../images/ic_arrow3.svg") no-repeat;
width: 15px;
height: 15px;
right: 5px;
bottom: 5px;
}

.topmedical6{
position: relative;
z-index: 1;
}

.topmedical6 img{
  width: 100%;
  border-radius: 10px 40px 10px 40px;
}

.topmedical7{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
position: relative;
}

.topmedical8{
width: 100%;
margin: 0 0 10px 0;
}

.topmedical8 a{
width: 93%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
position: relative;
background: #fff;
margin: 0 auto;
align-items: center;
padding: 5px 5px;
border-radius: 2px 2px 2px 2px;
}

.topmedical9{
width: 20%;
}

.topmedical9 img{
width: 100%;
}

.topmedical10{
width: 75%;
}

.topmedical11{
font-weight: 500;
width: 100%;
font-size: 1.7rem;
text-align: center;
letter-spacing: 0.02rem;
position: relative;
line-height: 1.3;
}

.topmedical11 span{
display: block;
}

/*
.topmedical11 span::after{
position: absolute;
content: "";
background: url("../images/ic_arrow2.svg") no-repeat;
display: block;
width: 1.2rem;
height: 1.2rem;
margin: 0 0 0 9px;
vertical-align: baseline;
right: 2px;
top: 11px;
}
*/

.topmedical12{
width: 100%;
font-size: 1.3rem;
letter-spacing: 0;
line-height: 1.6;
margin: 0 0 12px 0;
}



/* medical */


/*flow*/
.topsubject__w_f{
width: 100%;
background-size: cover;
padding: 0 50px;
}

.topsubject1f{
text-align: left;
display: inline-block;
font-size: 1.8rem;
letter-spacing: 0.2rem;
margin: 0 auto 10px;
}	
.subpage1f{
    width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px 50px;
}



/* news */

.topnews__w{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
background: #ffffff;
  padding: 60px 0;
  position: relative;
  z-index: 0
}
.topnews__w::after {
    position: absolute;
  	content: "";
    background: url(../images/doctor_bg001.svg);
    background-size: 100% auto;
    width: 100%;
    /*bottom: -1000px;
	height: 1000px;*/
    bottom: 0;
    background-repeat: no-repeat;
    height: 0;
    padding-bottom: 18.5%;
} 	

.topnews1{
text-align: center;
    background-size: cover;
    padding: 80px 0 150px;
    width: 500px;
}

.topnews2{
text-align: center;
margin: 0 0 90px 0;
z-index: 10;	
}

.topnews2 h2{
  width: 550px;
  margin: 0 auto;
  text-align: right;
  padding: 3rem;
	
position: relative;
font-size: 3.2rem;
color: #473a2c;
display: inline-block;
letter-spacing: .2rem;
line-height: 1;
font-weight: 700;
font-family: YakuHanJP, "Zen Maru Gothic", sans-serif;
	
	
}

.topnews2 h2 span{
}

.topnews2 h2 span::after{
  content: "NEWS";
  text-align: right;
  display: block;
  font-size: 1.6rem;
  padding-right: 4.4rem;
  margin-top: 1.6rem;
color: #00a1db;
background-image: linear-gradient(to right,#00a1db 0,#171c61 160%);
background-clip: text;
-webkit-text-fill-color: transparent;
text-transform: uppercase;
margin: 15px auto 0;
line-height: 1;
letter-spacing: .1rem;
font-weight: 700;
font-family: YakuHanJP, "Zen Maru Gothic", sans-serif;
	
	
	
	
}  



.topnews3{
width: calc(100% - 590px);
z-index: 1;
height: 550px;	
/*background: #ffffff;*/
}

.topnews4{
width: 700px;
height: 550px;	
display: flex;
flex-wrap: wrap;
justify-content: space-between;
padding: 70px 0 30px 70px;
}
    
.topnews4 iframe {
width: 100%;
}


.topnews5{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: flex-start;
align-items: center;
margin: 0 0 30px;
}


.topnews6{
width: 100%;
font-size: 1.3rem;
color: #a4a4a4;
margin-right: 30px;
}
.topnews7{
color: #4b4948;
font-size: 1.7rem;
margin: 0 0 5px 0;
font-weight: 700;
}

.topnews7 a{
display: block;
}

.topnews7 a span{
}

.topnews7 a span::after{
content: "";
background: url("../images/ic_arrow2.svg") no-repeat;
display: inline-block;
width: 1.4rem;
height: 1.4rem;
margin: 0 0 0 50px;
vertical-align: baseline;
}

.topnews8{
width: 100%;
color: #4b4948;
font-size: 1.8rem;
text-align: center;
margin: 30px 0 0 0;
}

.topnews8 a{
display: inline-block;
border: 1px solid #009f88;
border-radius: 200px;
text-align: center;
padding: 7px 50px;
background: #fff;
color: #009f88;
font-size: 2rem;
}

.topnews8 a span{
}

.topnews8 a span::after{
}

.topnews9{
width: 100%;
font-size: 1.5rem;
color: #454545;
}

.newskiji1 {
    width: 100%;
    border-bottom: 1px dotted #cac8bc;
    padding: 0 0 30px 0;
    margin: 0 0 30px;
}
.newskiji2 {
    width: 100%;
    font-size: 1.4rem;
    margin: 0 0 0 0;
    color: #354e71;
}  
.newskiji3 {
    width: 100%;
}
.newskiji4 {
    display: inline-block;
    font-size: 1.8rem;
    margin: 0 0 1rem 0;
    /* border-bottom: 1px solid #f7d671; */
    color: #00a1db;
} 
.newskiji5 {
    width: 100%;
}    
/* news */


/* topnavigation */

.topnavigation__w{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
padding: 1rem 0 18rem;
/*background: url("../images/topsubjectbg03.jpg");*/
background: #faf8f5;
}

.topnavigation1{
width: 900px;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
text-align: center;
z-index: 3;	
	}
	
	
	
.topnavigation2{
width: 900px;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
text-align: center
}
	
	

.topnavigation2 h2{
width: 100%;
position: relative;
font-size: 3.2rem;
color: #473a2c;
display: inline-block;
letter-spacing: .2rem;
line-height: 1;
font-weight: 700;
font-family: YakuHanJP, "Zen Maru Gothic", sans-serif;

}

.topnavigation2 h2 span{
}


/*.topnavigation2 h2::before{
content: "";
background: url("../images/logo-s.svg");
display: block;
width: 60px;
height: 60px;
margin: 0 auto 10px;
}*/

.topnavigation2 h2 span::after{
content: "Symptom";
color: #171c61;
background-image: linear-gradient(to right,#00a1db 0,#171c61 160%);
font-size: 1.6rem;
background-clip: text;
-webkit-text-fill-color: transparent;
text-transform: uppercase;
display: block;
margin: 15px auto 0;
line-height: 1;
letter-spacing: .1rem;
font-weight: 700;
font-family: YakuHanJP, "Zen Maru Gothic", sans-serif;
}



	
	
	
	
	
	
	
	
	
.topnavigation3{
width: 100%;
font-size: 1.8rem;
text-align: center;
line-height: 2;
letter-spacing: .15rem;
}

.topnavigation4{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.topnavigation4b{
width: 66%;
margin:0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}

.topnavigation5{
width: 30%;
display: block;
background: #fff;
padding: 3rem 0;
box-shadow: 5px 5px 0 #eaf8fb;
border: 1px solid #b0e5f8;
border-radius: 15px;
}

.topnavigation5 a{
width: 100%;
display: block;
padding: 3rem 0;
}

.topnavigation5:hover{
opacity: .5;
transform: translateY(-.7rem);
}
.topnavigation5b{
width: 46%;
display7: block;
background: #fff;
padding: 3rem 0;
box-shadow: 5px 5px 0 #eaf8fb;
border: 1px solid #b0e5f8;
border-radius: 15px;
}

.topnavigation5b a{
width: 100%;
display: block;
padding: 3rem 0;
}

.topnavigation5b:hover{
opacity: .5;
transform: translateY(-.7rem);
}

.topnavigation6{
width: 100%;
text-align: center;
}

.topnavigation6 img{
width: 35%;
}

.topnavigation7{
width: 100%;
font-weight: 500;
font-size: 2.5rem;
font-family: YakuHanJP, "Zen Maru Gothic", sans-serif;

text-align: center;
}

.topnavigation7 span{

}

.topnavigation7a::before{
content: "";
background: url("../images/topmedical1.svg");
width: 6rem;
height: 6rem;
display: block;
margin: 0 auto 1rem;
}

.topnavigation7b::before{
content: "";
background: url("../images/topmedical2.svg");
width: 6rem;
height: 6rem;
display: block;
margin: 0 auto 1rem;
}

.topnavigation7c::before{
content: "";
background: url("../images/topmedical3.svg");
width: 6rem;
height: 6rem;
display: block;
margin: 0 auto 1rem;
}
	
.topnavigation7d::before{
content: "";
background: url("../images/topmedical4.svg");
width: 6rem;
height: 6rem;
display: block;
margin: 0 auto 1rem;
}
.topnavigation7e::before{
content: "";
background: url("../images/topmedical5.svg");
width: 6rem;
height: 6rem;
display: block;
margin: 0 auto 1rem;
}

.topnavigation8{
width: 100%;
font-size: 1.8rem;
}
	

/* topnavigation */











.topcovid19__w{
    width: 100%;
    background: #f7f6f4;
    padding: 60px 0 60px;
}
.infection_w {
    width: 1200px;
    padding: 0 0 40px;
    margin: 0 auto;
}
.infection0 {
    text-align: center;
    color: #ffffff;
    font-size: 2.3rem;
    letter-spacing: .1rem;
    line-height: 1.5;
    padding: 18px 0;
    background: #ff6262;
    width: 100%;
    margin: 40px auto;
}
.infection1 {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}
.infection2 {
    width: 30%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.infection3 {
    width: 60%;
    margin: 0 auto 30px;
    position: relative;
}


.infection3 img {
    width: 100%;
}
.infection4 {
    width: 100%;
    font-size: 2rem;
    letter-spacing: .1rem;
    line-height: 1.5;
    display: inline-block;
    text-align: center;
    margin: 0 0 27px;
    border-radius: 15px;
    font-weight: 700;
    color: #41241F;
}
.infection4::first-letter {
    color: #ff6262;
}
.infection5 {
    letter-spacing: .05rem;
    font-size: 1.4rem;
    text-align: justify;
    line-height: 2.4;
        color: #41241F;
}


/* timetable */

.toptimetable__w {
  width: 100%;
  padding: 8rem 0;
  position: relative;
  z-index: 1;
  /*background-color: #eaf8fb;
background: url(../images/header01.png) no-repeat left center, url(../images/header02.png) no-repeat right center, #fafdff;*/
}

.toptimetable__w.yoyaku {
    padding-top: 20px;
}


.toptimetable_ilst {
    width: 100%;
    height: 100%;
    position: absolute;
    top:-20px;
    right:0;
    z-index:-1;
}

.toptimetable1{
text-align: center;
margin: 0 0 5rem 0;
}

.toptimetable1 h2{
  display: block;
  text-align: center;
  font-size: 3.5rem;
  letter-spacing: .3rem;
  color: #354e71;
  line-height: 1;
  font-weight: 500;
}

.toptimetable1 h2 span{
display: block;
    position: relative;

}

.toptimetable1 h2 span::after{
  content: "timetable";
  display: block;
  letter-spacing: .2rem;
  text-align: center;
  font-family: 'Tangerine', cursive;
  font-size: 4rem;
  color: #00afec;
  font-weight: 400;
}
.toptimetable_t{
width: 680px;
margin: 0 auto;
}
.toptimetable_txt{
  width: 100%;
  text-align: left;
  margin: 20px 0!important;
  padding: 1rem 1.2rem;
  font-size: 1.3rem;
  line-height: 1.6;
 /*background: #ffffff;*/
  color: #204354;
}
	
.topinspection1{
text-align: center;
margin: 0 0 5rem 0;
}

.topinspection1 h2{
  display: block;
  text-align: center;
  font-size: 3.5rem;
  letter-spacing: .3rem;
  color: #354e71;
  line-height: 1;
  font-weight: 500;
}

.topinspection1 h2 span{
display: block;
    position: relative;
}

.topinspection1 h2 span::after{
  content: "inspection";
  display: block;
  letter-spacing: .2rem;
  text-align: center;
  font-family: 'Tangerine', cursive;
  font-size: 4rem;
  color: #00afec;
  font-weight: 400;
}
	

/*.toptimetable2 h2 span::after{
    content: "";
    background: url("../images/ic_timetable.svg");
    width: 70px;
    height: 70px;
    display: block;
    top: -40px;
    left: -40px;
    position: absolute;
}*/


.toptimetable3{
}

.toptimetable4{
}

.toptimetable4a{
background: url(../images/toptimetable1.png) no-repeat left center;
background-size: 450px 300px;
}

.toptimetable4b{
background: url(../images/toptimetable2.png) no-repeat right center;
background-size: 450px 300px;
}

.toptimetable4c{
background: url(../images/toptimetable3.png) no-repeat left center;
background-size: 450px 300px;
}

.toptimetable4d{
background: url(../images/toptimetable4.png) no-repeat right center;
background-size: 450px 300px;
}

.toptimetable4e{
background: url(../images/toptimetable5.png) no-repeat left center;
background-size: 450px 300px;
}



.toptimetable5{
width: 750px;
display: flex;
flex-wrap: wrap;
justify-content: flex-start;
align-items: center;
margin: 0 auto;
}

.toptimetable6{
color: #000;
display: block;
text-align: center;
font-size: 2.4rem;
font-weight: 700;
font-family: 'Zen Old Mincho', serif;
margin: 0 0 20px 0;
width: 100%;
letter-spacing: .3rem;
}


.step {
    position:absolute;
    content:"";
    display:inline-block;
    width:75px;
    height: 75px;
    line-height:75px;
    text-align:center;
    border-radius: 50%;
    border:1px solid #354e71;
    background:#fff;
    font-size:1.4rem;
    top:-40px;
    left:0;
}

.step_info {
    font-size:1.5rem;
    padding: 0 1em 2em 1em;

}

.step_info span {
    font-weight:bold;
}


.toptimetable25-item img {
    display:block;
    width:70%;
    margin:auto;
}

.lacoon {
    width:300px;
    margin: 50px auto 0;
}

.lacoon a {
    display:block;
    width:300px;
}
.lacoon a img {
    border-radius:10px;
}


/* timetable */



/*当院の特徴*/
.merit__ww {
    width: 100%;
}   
.merit__w {
    width: 100%;
    margin: 0 auto;
    position: relative;
    background: #faf8f5;
} 
	
.program1{
text-align: center;
font-size: 4.0rem;
font-weight: 600;
font-family: 'Zen Maru Gothic', sans-serif;
color: #171c61;    
}

.program1 span{
    line-height: 2;
    padding: 0 0.5vw 1vw;


}
.merit__w::after {
    position: absolute;
  	content: "";
    background: url(../images/merit_bg001.svg);
    background-size: 100% auto;
    width: 100%;
    /*bottom: -1000px;*/
    bottom: 0;
    background-repeat: no-repeat;
    height: 0;
	/*height: 1000px;*/

    display: block;
    padding-bottom: 18.5%;

	
	
}         
.merit1 {
    width: 100%;
    margin: 0 auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 10px;
    padding: 40px 0 0 0;
    /*background: #efefef;*/
    /*background: #efefef url(../images/bg_ornament.png) no-repeat center 390px;
    
    background-size: contain;*/
    z-index: 1;
    position: relative;
}

.merit2 {
    text-align: center;
    margin: 0 0 120px 0;
    width: 100%;
}
.merit2 span {
    text-align: center;
    padding: 12px 80px 17px;
    font-size: 3.5rem;
    color: #ffffff;
    letter-spacing: .4rem;
    font-weight: 700;
    border-radius: 100px;
    line-height: 1;
    background: #c9401a;
}   
.merit2h{
width: 900px;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
text-align: center
}
	
	

.merit2h h2{
width: 100%;
position: relative;
font-size: 3.2rem;
color: #473a2c;
display: inline-block;
letter-spacing: .2rem;
line-height: 1;
font-weight: 700;
font-family: YakuHanJP, "Zen Maru Gothic", sans-serif;

}

.merit2h h2 span{
}

/*
.merit2h h2::before{
content: "";
background: url("../images/logo-s.svg");
display: block;
width: 60px;
height: 60px;
margin: 0 auto 10px;
}*/

.merit2h h2 span::after{
content: "Features";
color: #171c61;
background-image: linear-gradient(to right,#00a1db 0,#171c61 160%);
font-size: 1.6rem;
background-clip: text;
-webkit-text-fill-color: transparent;
text-transform: uppercase;
display: block;
margin: 15px auto 0;
line-height: 1;
letter-spacing: .1rem;
font-weight: 700;
font-family: YakuHanJP, "Zen Maru Gothic", sans-serif;
}
	
	
	
.merit3 {
    width: 100%;
    margin: 0 auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background-position: left 30px top 40px;
} 
.merit4 {
    width: 100%;
    padding: 0 0 60px 0;
}
.merit4b {
    width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.merit4_02 {
    width: 100%;
    padding: 0;
}
.merit4b_02 {
    width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.merit5 {
   width: 350px;
}  
.merit5 img {
    width: 100%;
    border-radius: 20px;
}    
.merit6 {
    width: 600px;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    position: relative;
    border: solid 1px #7bcbdf;
}
.merit6 .no {
    position: absolute;
    top: 10px;
    left: 20px;
    color: #00a1db;
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
}    
.merit7 {
       color: #00a1db;
    font-size: 2.8rem;
    line-height: 1.3;
    letter-spacing: .2rem;
    display: inline-block;
    width: 100%;
    text-align: center;
    font-weight: 600;
    font-family: 'Zen Maru Gothic', sans-serif;
}   
.merit7 span {
    display: inline;
    background: linear-gradient(transparent 70%, #e3e3e3 70%);
}
.merit8 {
    font-size: 2rem;
    line-height: 1.5;
    margin: 20px 0 0 0;
}
.merit42 {
    width: 100%;
    padding: 0 0 60px 0;
}
.merit42b {
    width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.merit52 {
    width: 350px;
    order: 2;
}    
.merit52 img {
    width: 100%;
    border-radius: 20px
}    
.merit62 {
    /*width: 680px;
    order: 1;*/
    width: 600px;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
position: relative;
    border: solid 1px #7bcbdf;
}
.merit62 .no {
    position: absolute;
    top: 10px;
    left: 20px;
    color: #00a1db;
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
}      
.merit72 {
    color: #00a1db;
    font-size: 2.8rem;
    line-height: 1.3;
    letter-spacing: .2rem;
    display: inline-block;
    width: 100%;
    text-align: center;
    font-weight: 600;
    font-family: 'Zen Maru Gothic', sans-serif;
}  
.merit72 span {
    display: inline;
    background: linear-gradient(transparent 70%, #e3e3e3 70%);
}   
.top_point_deco_1 {
    width: 500px;
    /*height: 460px;*/
    right: 2%;
    top: -22%;
}       
.top_point_deco_2 {
    width: 160px;
    height: 160px;
    left: 9%;
    top: 40%;
}   
.top_point_deco_2b {
    width: 170px;
    height: 170px;
    left: 19%;
    top: 37%;
}   
.top_point_deco_3 {
    width: 200px;
    height: 200px;
    right: 5%;
    bottom: 10%;
}   
	
.top_point_deco {
    position: absolute;
    z-index: 2;
}    
	
	
	
/*当院の特長*/	


/*患者様へのご案内*/		
.patient__ww {
    width: 100%;
}   
.patient__w {
    width: 100%;
    margin: 0 auto;
    position: relative;
    background: #EAF8FB;
	padding-top:10rem;

} 
	


}

.patient_h{
width: 900px;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
text-align: center;
	z-index:100;
}
	
	

.patient_h h2{
width: 100%;
position: relative;
font-size: 3.2rem;
color: #473a2c;
display: inline-block;
letter-spacing: .2rem;
line-height: 1;
font-weight: 700;
font-family: YakuHanJP, "Zen Maru Gothic", sans-serif;

}

.patient_h h2 span{
}

/*
.merit2h h2::before{
content: "";
background: url("../images/logo-s.svg");
display: block;
width: 60px;
height: 60px;
margin: 0 auto 10px;
}*/

.patient_h h2 span::after{
content: "Patient";
color: #171c61;
background-image: linear-gradient(to right,#00a1db 0,#171c61 160%);
font-size: 1.6rem;
background-clip: text;
-webkit-text-fill-color: transparent;
text-transform: uppercase;
display: block;
margin: 15px auto 0;
line-height: 1;
letter-spacing: .1rem;
font-weight: 700;
font-family: YakuHanJP, "Zen Maru Gothic", sans-serif;
}
.patient3 {
    width: 100%;
    margin: 0 auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background-position: left 30px top 40px;
} 
.patient4 {
    width: 100%;
    padding: 0 0 60px 0;
}
	
	
	
	

/* corona */

.topcorona__w{
width: 100%;
background: #ff5152;
text-align: center;
padding: 20px 0;

}

.topcorona__w span{
line-height: 1;
color: #fff;
font-size: 2.2rem;
}
.topcorona__w span::before{
    content: "";
    display: inline-block;
    background: url("../images/ic_shield.svg");
    margin: 0 10px 0 0;
    width: 2.5rem;
    height: 2.5rem;
  vertical-align: sub;
}
/* corona */

/* fujimi */

.topfujimi__w {
  width: 100%;
  padding: 8rem 0;
  position: relative;
  z-index: 1;
  background-color: #fff;
/*background: url(../images/header01.png) no-repeat left center, url(../images/header02.png) no-repeat right center, #fafdff;*/
}









/* footer */
footer{
width: 100%;
/*background: url("../images/footerbg.jpg");*/
background:	#eaf8fb;
background-size: cover;
padding: 9rem 0 6rem;
}

.footer__w{
width: 1150px;
display: flex;
flex-wrap: wrap;
align-items: flex-start;
margin: 0 auto;
}
.footer__w_access{
width: 1150px;
display: flex;
flex-wrap: wrap;
align-items: flex-start;
margin: 0 auto;
}

.footer__w2{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: flex-start;
}

.footer1{
width: 570px;
display: flex;
flex-wrap: wrap;
justify-content: center;
}

.footer2{
width: 100%;
text-align: center;
}

.footer2 img{
width: 450px;
}

.footer3{
width: 90%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
margin: 0 auto 30px;
}

.footer4{
display: inline-block;
font-weight: 500;
font-size: 1.5rem;
letter-spacing: 0.05rem;
background: #f9e440;
color: #000;
text-align: center;
padding: 2px 10px;
margin: 0 0 0 0;
width: 24%;
border-radius: 100px;
}

.footer5{
width: 100%;
text-align: center;
margin: 0 0 30px 0;
}

.footer6{
width: 100%;
font-weight: 700;
font-size: 1.4rem;
letter-spacing: 0.05rem;

}


.footer7{
width: 100%;
}


.footer7 a{
width: 100%;
display: block;
font-size: 4rem;
color: #4c4948;
font-weight: 900;
line-height: 1;
}

.footer7 a span{

}

.footer7 a span::before{
content: "";
background: url("../images/ic_tel.svg");
display: inline-block;
width: 3.2rem;
height: 3.2rem;
margin: 0 10px 0 0;
vertical-align: bottom;
}

.footer8{
width: 100%;
text-align: center;
font-size: 2rem;
margin: 0 0 30px 0;
}

.footer9{
font-size: 1.5rem;
font-weight: 500;
margin: 0 auto;
border-radius: 3px;
width: 500px;
}

.footer10{
display: inline-block;
background: #ffffff;
text-align: center;
padding: 3px 14px;
margin: 0 15px 0 0;
color: #36a34c;
border-radius: 3px;
font-size: 1.4rem;
letter-spacing: 0;
border: 1px solid #36a34c;
width: 10rem;
}

.footer11{
font-size: 1.5rem;
font-weight: 500;
margin: 0 auto 10px;
border-radius: 3px;
width: 500px;
}

.footer12{
display: inline-block;
background: #ffffff;
text-align: center;
padding: 3px 14px;
margin: 0 15px 0 0;
color: #f57b43;
border-radius: 3px;
font-size: 1.4rem;
letter-spacing: 0;
border: 1px solid #f57b43;
width: 10rem;
}

.footer13{
font-size: 1.4rem;
margin: 0 auto;
width: 100%;
text-align: center;
}

.footer14{
margin: 0 auto 30px;
width: 90%;
text-align: center;
}
.footer14 img{
width: 100%;
}

.footer15{
margin: 0 auto;
width: 100%;
text-align: center;
background: #fffdf1;
display: flex;
flex-wrap: wrap;
justify-content: center;
}

.footer16{
margin: 0 40px 0 0;
width: 550px;
text-align: center;
padding: 35px 0;
}
.footer16 img{
width: 100%;
box-shadow: 4px 4px 10px #DCD8BE;
}

.footer16:last-child{
margin: 0 0 0 0;
}



.footer17{
width: 100%;
margin: 0 0 20px 0;
}

.footer18{
width: 100%;
text-align: center;
font-size: 2.5rem;
font-weight: 700;
letter-spacing: .15rem;
color: #006cb8;
margin: 0 0 5px 0;
}

.footer19{
width: 100%;
text-align: center;
margin: 0 0 10px 0;
}

.footer19 a{
width: 100%;
display: block;
font-size: 3.5rem;
color: #333;
font-weight: 900;
line-height: 1;
}

.footer19 a span{

}

.footer19 a span::before{
content: "";
background: url("../images/ic_tel.svg");
display: inline-block;
width: 2.8rem;
height: 2.8rem;
margin: 0 5px 0 0;
vertical-align: middle;
}



.footer20{
width: 100%;
font-size: 1.6rem;
letter-spacing: 0;
text-align: center;
}


.footer21{
width: 100%;
margin: 0 0 20px 0;
}


.footer22{
width: 100%;
text-align: center;
font-size: 1.4rem;
font-weight: 500;
letter-spacing: .02rem;
color: #545454;
margin: 0 0 2px 0;
}

.footer23{
width: 100%;
text-align: center;
margin: 0 0 30px 0;
}

.footer23 a{
width: 100%;
display: block;
font-size: 3.8rem;
color: #333;
font-weight: 900;
line-height: 1;
}

.footer23 a span{

}

.footer23 a span::before{
content: "";
background: url("../images/ic_tel.svg");
display: inline-block;
width: 3.2rem;
height: 3.2rem;
margin: 0 10px 0 0;
vertical-align: middle;
}

.footer24{
width: 500px;
background: #fff;
border-radius: 10px;
padding: 2rem;
}

.footer25{
width: 100%;
text-align: center;
}

.footer25 span{
display: inline-block;
font-size: 1.8rem;
font-weight: 700;
letter-spacing: .3rem;
color: #285472;
background: #f2f5f6;
margin: 0 auto;
text-align: center;
padding: 5px 50px;
border-radius: 200px;
}

.footer26{
line-height: 1.9;
font-size: 1.5rem;
width: 100%;

}

.footer27{
width: 100%;
text-align: center;
font-size: 1.4rem;
font-weight: 500;
letter-spacing: .15rem;
color: #111;
margin: 2rem 0 0 0;
}

.footer27 span::before {
}

.footer28{
width: 100%;
}

.footer28 a{
display: block;
font-weight: 500;
font-size: 1.7rem;
text-align: center;
padding: 15px 25px;
border: 2px solid #86c8f8;
border-radius: 5px;
color: #ffffff;
box-shadow: 8px 8px 12px #bceaff;
background: linear-gradient(330deg, rgb(0 108 184) 0%, rgb(80 159 216) 30%, rgb(71 199 210) 100%);
width: 90%;
margin: 0 auto;
}

.footer28 a span::before {
content: "→";
display: inline-block;
margin: 0 7px 0 0;
}

.footer29{
width: 100%;
}

.footer29 a{
width: 100%;
display: block;
font-size: 4rem;
font-weight: 700;
color: #2f2f2f;
font-family: 'Asap', sans-serif;
line-height: 1;
text-align: center;
}

.footer29 a span::before {
content: "";
background: url("../images/ic_tel.svg");
display: inline-block;
width: 2.8rem;
height: 2.8rem;
margin: 0 .5rem 0 0;
vertical-align: middle;
}


.footer30{
width: 100%;
display: flex;
justify-content: space-between;
flex-wrap: wrap;
background: #fff;
border-radius: 10px;
padding: 25px 40px;
box-shadow: 3px 3px 8px #d0f5f8;
margin: 35px 0;
align-items: flex-end;
}

.footer31{
width: 100%;
padding: 1.5rem 0;
}

.footer32{
width: 100%;
}

.footer32 span{
display: inline-block;
font-size: 1.6rem;
font-weight: 700;
letter-spacing: .3rem;
background: #f7f7f7;
margin: 0 auto;
text-align: center;
padding: .3rem 2rem;
border-radius: 200px;
}

.footer33{
width: 100%;
font-weight: 700;
font-size: 1.6rem;
padding: 0 0 0 2rem;
}


.footer34{
width: 100%;
padding: 0 0 0 2rem;
}

.footer34 span{
display: inline-block;
font-size: 1.4rem;
}

.footer35{
width: 57%;
}

.footer36{
width: 100%;
}

.footer36 img{
width: 100%;
border: 2px solid #006cb8;
border-radius: 10px;
background: #fff;
padding: 15px 20px 22px 10px;
}

.footer37{
width: 100%;
text-align: center;

}

.footer37 span{
    display: inline-block;
    text-align: center;
    background: #ffffff;
    color: #ed7676;
    border: 1px solid #ed7676;
    padding: .4rem .7rem;
    font-size: 1.4rem;
    line-height: 1;
    font-weight: 700;
    letter-spacing: .15rem;
}

.footer38{
width: 100%;
font-size: 1.4rem;
line-height: 1.4;
text-align: center
}






.footerbnr__w{
width: 500px;
margin: 0 auto;
}

.footerbnr__w img{
width: 100%;
border: 1px solid #009f59;
}

.footerbnr1{
width: 160px;
}

.footerbnr1 a img{
width: 100%;
border: 1px dotted #dbdbdb;
box-shadow: 2px 2px 2px rgb(241 241 241 / 70%);
border-radius: 5px;
}




.sitemap__w{
background: #faf8f5;
display: flex;
flex-wrap: wrap;
justify-content: center;
padding: 30px 0 30px 0;
width: 100%;
}

.sitemap1{
margin: 0 5rem 0 0;
line-height: 2.7;
letter-spacing: .01rem;
}

.sitemap1:last-child{
margin: 0 0 0 0;
}

.sitemap2{
width: 100%;
}

.sitemap2 a{
font-weight: 500;
font-size: 2rem;
font-family: 'Zen Maru Gothic';
}

.sitemap3{
width: 100%;
font-size: 1.5rem;
line-height: 2.3;
}

.sitemap3 a{
display: block;
width: 100%;
}

.googlemaps__w{
width: calc(100%);
text-align: center;
}

.googlemaps__w iframe{
width: calc(100%);
margin: 0 auto;
height: 300px;
border-radius: 10px;
}
.toptimetable7{
width: 100%;

}

table.toptimetable8{
width: 100%;
background: #fff;
margin: 0 auto;
}

table.toptimetable8 th{
background: #00a1db;
text-align: center;
font-weight: 500;
font-size: 1.9rem;
padding: 15px 0;
line-height: 1;
width: 10%;
color: #fff;
letter-spacing: .3rem;
}

table.toptimetable8 th:first-child{
width: 30%;
}

table.toptimetable8 td{
background: #fff;
text-align: center;
font-weight: 500;
font-size: 1.8rem;
padding: 0 0;
line-height: 1;
width: 10%;
color: #83ccd2;
letter-spacing: 0.05rem;
border-bottom: 1px solid #e1e1e1;
vertical-align: middle;
height: 7rem;
}

table.toptimetable8 td:first-child{
width: 30%;
color: #000;
background: #f5f4f4;
}

table.toptimetable8 tr{
}

table.toptimetable8 td img{
width: 35%;
}

.toptimetable9{
width: 570px;
margin: 0 auto;
text-align: right;
padding: 0 15px 0 0;
font-size: 1.8rem;
}

table.toptimetable8 td.toptimetable10a{
color: #fff;
text-align: center;
font-size: 1.8rem;
font-family: 'Zen Maru Gothic', serif;
letter-spacing: .35rem;
padding: 10px 0;
background: linear-gradient(90deg, #ed6d00, #ed6d00);
line-height: 1;
font-weight: 500;
}

table.toptimetable8 td.toptimetable10b{
color: #fff;
text-align: center;
font-size: 1.8rem;
font-family: 'Zen Maru Gothic', serif;
letter-spacing: .15rem;
padding: 10px 0;
background: linear-gradient(90deg, #01aee4, #01aee4);
line-height: 1;
font-weight: 500;
}

.toptimetable11{
font-size: 1.3rem;
letter-spacing: -.05rem;
font-weight: 700;
}

.toptimetable12{
width: 750px;
text-align: center;
margin: 0 auto;
}

.toptimetable12 > .closed{
display: inline-block;
text-align: center;
padding: 3px 12px;
background: #fff;
font-size: 1.5rem;
color: #ef6276;
margin: 0 0 20px;    
border: 1px solid #ef6276;
}
.toptimetable12 > .repletion{
width: 100%;
margin: 0 auto;
text-align: center;
}
.toptimetable12_f{
text-align: center;
width: 500px;
margin: 0 auto;
}

.toptimetable12_f > .closed{
display: inline-block;
text-align: center;
padding: .4rem 1.5rem;
background: #fff;
font-size: 1.5rem;
color: #ef6276;
border: 1px solid #ef6276;
border-radius: 3px;
}
.toptimetable12_f > .repletion{
width: 100%;
margin: 0 auto;
text-align: left;
font-size: 1.4rem;    
} 
.toptimetable12b{
width: 750px;
/*text-align: center;*/
margin: 0 auto;
}
.toptimetable12b > .closed{
display: inline-block;
text-align: center;
padding: 3px 12px;
background: #fff;
font-size: 1.5rem;
color: #ef6276;
margin: 0 0 20px;    
border: 1px solid #ef6276;
}
	
	
.toptimetable13{
width: 100%;
text-align: center;
}

.toptimetable13 span{
display: inline-block;
text-align: center;
padding: 5px 20px;
background: #fff;
font-size: 1.7rem;
color: #1ea189;
border: 2px solid #1ea189;
border-radius: 5px;
}

.toptimetable14{
width: 930px;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin: 0 auto;
}

.toptimetable15{
width: 100%;
text-align: center;
}

.toptimetable15 span{
display: inline-block;
text-align: center;
padding: 8px 30px;
background: #ffffff;
font-size: 1.9rem;
color: #1fa189;
border: 1px solid #1fa189;
font-weight: 700;
}

.toptimetable16{
width: 450px;
}

.toptimetable16 a{
display: inline-block;
text-align: center;
background: #fff;
font-size: 1.6rem;
color: #1ea189;
border: 1px solid #1ea189;
font-weight: 700;
line-height: 1;
box-shadow: 4px 4px 10px #ced1d8;
box-sizing: content-box;
width: 450px;
}

.toptimetable16 a:hover{
opacity: .7;
}

.toptimetable16 a img{
width: 100%;
}

.toptimetable17{
width: 450px;
}

.toptimetable17 a{
display: inline-block;
text-align: center;
background: #fff;
font-size: 1.6rem;
color: #1ea189;
border: 1px solid #fd6c58;
font-weight: 700;
line-height: 1;
box-shadow: 4px 4px 10px #ced1d8;
box-sizing: content-box;
width: 450px;
}

.toptimetable17 a:hover{
opacity: .7;
}

.toptimetable17 a img{
width: 100%;
}




.toptimetable18{
width: 750px;
margin: 0 auto;
}

.toptimetable18 a{
width: 100%;
display: block;
text-align: center;
}


.toptimetable18 a img{
width: 55%;
box-shadow: 10px 10px 15px #bfbfbf;
border-radius: 5px;
}

.toptimetable19{
color: #ccc;
font-weight: 400;
}

.toptimetable20{
color: #ef6276;
font-size: 1.4rem;
}

.toptimetable21{
font-family: 'Asap', sans-serif;
}

.toptimetable22{
width: 100%;
padding: 0 5rem;
}

.toptimetable23{
font-family: 'Asap', sans-serif;
width: 100%;
padding: 0 5rem;
}




/* footer */





/* copyright */


.copyright {
width: 100%;
padding: 2rem 0;
background: #171c61;
background-size:cover;
text-align: center;
color: #fff;
font-size: 1.6rem;
letter-spacing: .3rem;
font-weight: 400;
}



/* copyright */




/* subnavigation */

.subnavigation__w{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 4rem 0 2rem;
  background: #faf8f5;
}

.subnavigation1{
width: 900px;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin: 0 auto;
}

.subnavigation2{
width: 100%;
text-align: center;
}

.subnavigation2 span{
width: 100%;
position: relative;
display: block;
font-size: 4.2rem;
color: #604c3d;
font-weight: 400;
letter-spacing: .5rem;
}

.subnavigation2 span::before{
content: "Medical";
font-size: 2rem;
font-family: "Open Sans";
width: 100%;
display: block;
line-height: 1;
color: #78bd1d;
font-weight: 400;
letter-spacing: .3rem;
}

.subnavigation2 span::after{
background: url(../images/logo-s.svg);
width: 4rem;
height: 4rem;
display: block;
position: absolute;
top: 0%;
left: 50%;
transform: translateX(-50%);
}

.subnavigation3{
width: 100%;
font-size: 1.8rem;
text-align: center;
line-height: 2;
letter-spacing: .15rem;
}

.subnavigation4{
width: 900px;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}

.subnavigation5{
width: 32%;
display: block;
background: #fff;
padding: 2rem 0;
box-shadow: 4px 4px 0 #27a879;
border: 1px solid #27a879;
border-radius: 7px;
}

.subnavigation5 a{
width: 100%;
display: block;
}

.subnavigation5 a:hover{
opacity: .5;
transform: translateY(-.7rem);
}

.subnavigation6{
width: 100%;
text-align: center;
}

.subnavigation6 img{
width: 35%;
}

.subnavigation7{
width: 100%;
font-weight: 500;
font-size: 2.5rem;
font-family: YakuHanJP, "Zen Maru Gothic", sans-serif;

text-align: center;
}

.subnavigation7 span{

}
/* subnavigation */






/* subpage */

.subpagetitle__w{
width: 100%;
background: url("../images/copyrightbg.jpg");
background-size: cover;
padding: 30px 0;
}
.subnavigation1{
width: 900px;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin: 0 auto;
}

.subpagetitle1{
text-align: center;
margin: 0 auto;
width: 100%;
}

.subpagetitle1 h2{
font-size: 2.8rem;
font-weight: 500;
letter-spacing: .8rem;
color: #fff;
line-height: 1;
}

.subpagetitle1 h2 span{
}

.subpagetitle1 h2 span::after{
    display: block;
    text-align: center;
    font-size: 1.2rem;
    letter-spacing: .1rem;
    border-top: 1px dashed #cbecff;
    width: 25rem;
    margin: 12px auto 0;
    padding: 10px 0 0 0;
    color: #cbecff;
    font-weight: 400;
    line-height: 1;
}

.subpagetitle1a h2 span::after{
content: "DOCTOR";
}

.subpagetitle1b h2 span::after{
content: "MEDICAL";
}

.subpagetitle1c h2 span::after{
content: "FLOW";
}

.subpagetitle1d h2 span::after{
content: "FACILITY";
}

.subpagetitle1e h2 span::after{
content: "ACCESS";
}

.subpagetitle1f h2 span::after{
content: "RESERVATION";
}




.subpagetitle2{
width: 1000px;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}

.subpagetitle3{
width: 100%;
background: #fff;
padding: 20px 20px 20px;
border-radius: 30px 10px 30px 10px;

}
.subpagetitle4{
width: 100%;
}

.subpagetitle4 img{
border-radius: 30px 10px 30px 10px;
}

.subpage__w{
width: 100%;
background: #faf8f5;
padding: 20px 0 40px;
color:#314e70;
position: relative;
	
}
.subpage__w::after {
    position: absolute;
  	content: "";
    background: url(../images/merit_bg001.svg);
    background-size: 100% auto;
    width: 100%;
    /*bottom: -1000px;*/
    bottom: 0;
    background-repeat: no-repeat;
    height: 0;
	/*height: 1000px;*/

    display: block;
    padding-bottom: 18.5%;
	z-index:0;
}         

.subpage_nav_w {
    width: 100%;
/*background: #d9f2fb;*/
background:url(../images/headerbg02.png);
padding: 40px 0 40px;
background-repeat: no-repeat;
    background-size: cover;
}
.subpage_nav {
    width: 1000px;
    margin: 0 auto;
}
.subpage1{
    width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: rgba(255, 255, 255, 0.6);
	padding: 20px 50px 70px;
    border-radius: 10px;
	z-index: 1;
	position: relative;
}

.subpage2{
width: 100%;
border-bottom: 6px solid #ECECEC;
margin: 0 0 50px 0;
}

.subpage2 h2{
    font-size: 3.1rem;
    font-weight: 700;
    letter-spacing: .4rem;
    line-height: 1;
    padding: 40px 0 30px 0;
    text-align: center;
    color: #354e71;
}
.subpage2 h2:first-letter{
color: #00a1db;
}
/*.subpage2 h2 span {
    display: block;
    position: relative;
    padding-top: 45px;
}

.subpage2 h2 span::before {
    content: "";
    position: absolute;
    background: url(../images/deco_title.svg) no-repeat center;
    display: block;
    text-align: center;
    width: 120px;
    height: 40px;
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
}*/


.subpage3{
width: 100%;
padding: 0 10px;
line-height: 1.9;
}

.subpage4{
width: 100%;
}

.subpage4 a{
display: block;
width: 400px;
margin: 0 auto;
background: #ffee9c;
padding: 20px 0;
text-align: center;
letter-spacing: -.005rem;
color: #643e2f;
box-shadow: 6px 6px 15px #fff2b3;
font-weight: 500;
font-size: 2rem;
line-height: 1;
position: relative;
}

.subpage4 a span{
display: block;
width: 100%;
}

.subpage4 a span::after{
content: "";
background: url("../images/ic_arrow1.svg");
display: inline-block;
width: 2.2rem;
height: 2.2rem;
position: absolute;
top: 20px;
right: -10px;
}

.subpage4 a:hover{
transform: translateY(-3px);
opacity: .5;
}

.subpage5{
width: 100%;
position: relative;
padding: 30px 30px;
background: #f7fbff;
border: 2px solid #c7e3fc;
border-radius: 10px;
}

.subpage5 ul{
width: 100%;
}

.subpage5 ul li{
width: 100%;
line-height: 2;
margin: 0 0 15px 0;
}

.subpage5 ul li:last-child{
margin: 0 0 0 0;
}

.subpage5 ul li span{
width: 100%;
}

.subpage5 ul li span::before{
content: "";
display: inline-block;
background: url("../images/ic_check.svg");
width: 2rem;
height: 2rem;
margin: 0 10px 0 0;
vertical-align: sub;
}

.subpage6{
width: 100%;
padding: 30px 30px;
position: relative;
background: #f5f5f5;
border-radius: 10px;
}

.subpage6 ul{
width: 100%;
}

.subpage6 ul li{
width: 100%;
line-height: 2;
margin: 0 0 15px 0;
}

.subpage6 ul li:last-child{
margin: 0 0 0 0;
}

.subpage6 ul li span{
width: 100%;
}

.subpage6 ul li span::before{
content: "";
display: inline-block;
background: url("../images/ic_check2.svg");
width: 2rem;
height: 2rem;
margin: 0 10px 0 0;
vertical-align: sub;
}

.subpage6 .subpage_list-1of2 {
display: flex;
flex-wrap: wrap;
}

.subpage6 .subpage_list-1of2 li {
width: 50%;
}

.subpage7{
width: 100%;
}

.subpage7 ul{
width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.subpage7 ul::after{
  content:"";
  display: block;
  width:45%;
}
.subpage7 ul li{
width: 45%;
margin: 0 0 28px 0;
display: flex;
flex-direction: column;
}

/*.subpage7 ul li:nth-child(3) {
    width:100%;
}*/
.subpage7 ul.checkup li a {
    background: url(../images/bg03.jpg) !important;
}
.subpage7 ul li a {
  display: flex;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    /*background: url(../images/bg02.jpg);*/
	background:#fff;
    padding: 15px 0;
    text-align: center;
    letter-spacing:.05rem;
    color: #105eb1;
    font-weight: 500;
    font-size: 2rem;
    line-height: 1.3;
    position: relative;
    box-shadow: 3px 3px 5px #195e9e;
    border-radius: 5px;
    flex-grow: 1;
/*    border: solid 2px #90d4ec;*/
    height: 80px;
}
.subpage7 ul li:nth-last-child{
    margin: 0;
}

.subpage7 ul li:nth-child(3) a {
    width: 450px;
}
/*.subpage7 ul li:nth-last-child(1){
margin: 0 3% 0 0;
}

.subpage7 ul li:nth-last-child(2){
margin: 0 3% 0 0;
}

.subpage7 ul li:nth-last-child(3){
margin: 0 3% 0 0;
}*/

.subpage7 ul li a:hover{
transform: translateY(-4px);
opacity: .8;
box-shadow: 0px 6px 6px #105eb1;
}

.subpage7 ul li a span{
width: 100%;
}

.subpage7 ul li span::after {
    content: "";
    background: url("../images/ic_arrow01b.svg");
	display: inline-block;
    width: 2rem;
    height: 2rem;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    opacity: .9;
}

.subpage8{
width: 100%;
}

.subpage8 h3{
    font-size: 2.2rem;
    letter-spacing: .02rem;
    line-height: 1.2;
    padding: 5px 0 5px 25px;
    position: relative;
    font-weight: 700;
}

.subpage8 h3::before{
    border-left: 10px solid #57c2e9;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
}

.subpage9{
width: 400px;
margin: 0 auto;
}

.subpage9 img{
width: 100%;
border-radius: 10px;
}

.subpage10{
width: 100%;
background: #F5F5F5;
position: relative;
padding: 30px 30px 30px;
border-radius: 0;
margin: 0 auto;
}

.subpage10 ul{
width: 100%;
}

.subpage10 ul li{
width: 100%;
line-height: 2.2;
}

.subpage10 ul li span{
width: 100%;
}

.subpage10 ul li span::before{
content: "";
display: inline-block;
background: url("../images/ic_check3.svg");
width: 2rem;
height: 2rem;
margin: 0 10px 0 0;
vertical-align: sub;
}

.subpage11{
display: inline-block;
margin: -4.5rem 0 0 0;
background: #47c8af;
color: #fff;
text-align: center;
padding: 4px 20px;
border-radius: 3px;
position: absolute;
font-size: 1.7rem;
}

.subpage12{
padding: 12px 0 0 0;
font-size: 1.6rem;
line-height: 2;
}

.subpage13{
display: inline-block;
margin: -4.5rem 0 0 0;
background: #00afec;
color: #fff;
text-align: center;
padding: 4px 20px;
border-radius: 3px;
position: absolute;
font-size: 1.7rem;
}

.subpage14{
display: inline-block;
margin: -4.5rem 0 0 0;
background: #7dadd4;
color: #fff;
text-align: center;
padding: 4px 20px;
border-radius: 3px;
position: absolute;
font-size: 1.7rem;
}

.subpage15{
width: 100%;
line-height: 1.8;
}

.subpage16{
width: 100%;
}

.subpage16 span{
line-height: 1.8;
font-size: 1.7rem;
font-family: 'Zen Old Mincho', serif;
font-weight: 700;
display: inline-block;
padding: 2px 20px;
letter-spacing: 0;
background: #fff;
border-radius: 100px;
color: #4387bf;
}

.subpage17{
width: 100%;
}

.subpage17 span{
    line-height: 1.8;
    font-size: 1.7rem;
    font-weight: 700;
    display: inline-block;
    padding: 2px 20px;
    letter-spacing: .1rem;
    background: #f3f3f3;
    border-radius: 100px;
}

.subpage18{
width: 100%;
}
.subpage18 h3{
    font-weight: 900;
    font-size: 1.7rem;
}
.subpage18 a {
	text-decoration: underline!important;
    font-weight: 900!important;
	color: #31470;
}

.subpage18 nav ul{
display: flex;
justify-content: space-between;
flex-wrap: wrap;  
background-color: #fff;
padding: 0;
}


/*各ナビゲーション横幅*/
.subpage18 nav ul li{
width:33.3%;
}

/*ナビゲーションaタグの形状*/
.subpage18 nav ul li a{
color: #044589;
padding: 15px 0 15px;
font-size: 1.8rem;
font-weight: 500;
letter-spacing: 0;
}

.subpage18 nav ul li a:hover,
.subpage18 nav ul li a:active{
background:#fffdec;
}

.subpage18 nav ul li img {
width: 50%;
height: auto;
transition: all .5s;
vertical-align: bottom;
border-radius: 15px 5px 15px 5px;
}

.subpage18 nav ul li img:hover{
transform: scale(1.2);
}

.subpage18 nav ul li dt{
overflow: hidden;
margin: 0 0 8px 0;
}


.subpage19{
width: 1000px;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
padding: 30px 0 30px;
}

.subpage20{
width: 100%;
margin: 0 0 15px 0;
}

.subpage20 h4{
  font-size: 1.9rem;
  letter-spacing: .05em;
  line-height: 1.5;
  position: relative;
  font-weight: 500;
  padding: 5px 15px;
  display: inline-block;
  margin: 0 0 0 10px;
  color: #32698f;
  background: #fdfdfd;
  border: 1px solid #83aac5;
}

.subpage21{
  font-size: 1.6rem;
  letter-spacing: .05rem;
  font-weight: 700;
  display: inline-block;
  margin: 0 0 15px 10px;
  color: #2a2840;
  background: #f5f5f5;
  padding: 7px 15px;
}

.subpage22{
  width: 880px;
  border: 1px dashed #ffabab;
  background: #fff8f8;
  padding: 22px 20px 28px;
  color: #e93131;
  margin: 0 auto;
  text-align: center;
}

.subpage23{
margin: 0 0 15px 0;
font-size: 1.7rem;
text-align: left;
line-height: 1.4;
}

.subpage24{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}

.subpage25{
width: 49%;
border: 1px solid #70b4e4;
}

.subpage26{
  background: #70b4e4;
  font-size: 2.5rem;
  color: #fff;
  padding: 5px;
  display: flex;
  align-items: center;
  width: 100%;
  line-height: 1.6;
}

.subpage26 span::before{
  content: "";
  background: url("../images/ic_first1.svg");
  width: 4rem;
  height: 4rem;
  display: inline-block;
  vertical-align: middle;
  margin: 0 15px 0 0;
}


.subpage27{
padding: 15px;
font-size: 1.8rem;
font-weight: 700;
line-height: 2;
}

.subpage28{
  margin: 0 15px 15px 15px;
  background: #eaf6ff;
  padding: 5px;
  }

.subpage29{
width: 49%;
border: 1px solid #70b4e4;
}

.subpage30{
  background: #0093DF;
  font-size: 2.5rem;
  color: #fff;
  padding: 5px;
  display: flex;
  align-items: center;
  width: 100%;
  line-height: 1.6;
}

.subpage30 span::before{
  content: "";
  background: url("../images/ic_first2.svg");
  width: 4rem;
  height: 4rem;
  display: inline-block;
  vertical-align: middle;
  margin: 0 15px 0 0;
}

.subpage31{
padding: 15px;
font-size: 1.8rem;
font-weight: 700;
line-height: 2;
}

.subpage32{
  margin: 0 15px 15px 15px;
  background: #eaf6ff;
  padding: 5px;
}

.subpage33{
  width: 100%;
  padding: 15px 20px;
  line-height: 2.4;
  background: #f7f7f7;
  color: #204354;
}

.subpage33 ul{

}

.subpage33 ul{

}

.subpage33 ul li::before{
  content: "";
  background: url("../images/ic_checkbox.svg");
  width: 2rem;
  height: 2rem;
  display: inline-block;
  vertical-align: sub;
  margin: 0 10px 0 0;
}
.subpage33b{
  width: 100%;
  padding: 15px 20px;
  line-height: 2.4;
  background: #eaf8fb;
  color: #204354;
}
	
.subpage33w{
  width: 100%;
  padding: 15px 20px;
  line-height: 2.4;
  background: #fff;
  color: #204354;
}

.subpage33w ul{

}

.subpage33w ul{

}

.subpage33w ul li::before{
  content: "";
  background: url("../images/ic_checkbox.svg");
  width: 2rem;
  height: 2rem;
  display: inline-block;
  vertical-align: sub;
  margin: 0 10px 0 0;
}

.subpage34{
width: 100%;
}

.subpage34 table{
width: 100%;
border: 1px solid #000;

}

.subpage34 table th{
padding: 2rem 1rem;
font-size: 2rem;
text-align: center;
border: 1px solid #015a33;
background: #009f59;
color: #fff;
}

.subpage34 table td{
    padding: 2rem 1rem;
    text-align: center;
    font-size: 1.7rem;
    border: 1px solid #015a33;
    background: #faf9f7;
}

.subpage34-1{

}

.subpage34-2{
color: #f9e440 !important;
}

.subpage34-3{

}

.subpage34-4{
text-align: center;
}

.subpage34-5{
    color: #009f59;
    font-weight: 900 !important;
}

.subpage34-6{

}
.subpage35{
    /*box-shadow: 0 3px 0 #eee;
    border: 2px solid #eee;
    border-radius: 15px;  */
    padding: 30px 40px;
    background: #fff;
    width: 100%;
	z-index: 1;
}
.item_list li {
    width: 100%;
    line-height: 1.5;
    margin: 0 0 10px 0;
}
.item_list li:last-child {
    width: 100%;
    line-height: 2;
    margin: 0;
}    
.item_list li:before {
    content: "";
    width: 10px;
    height: 10px;
    display: inline-block;
    background: #2da932;
    border-radius: 50%;
    margin-right: 12px;
}
 .subpage36 {
    width: 100%;
    text-align: center;
     margin: 0 0 50px;
}   
.subpage36 a {
    width: 70%;
    display: block;
}    
.subpage36 a img {
    width: 100%;
    box-shadow: 5px 5px 10px #ccc;
} 
    
.item_list_2 li {
    width: 100%;
    line-height: 1.5;
    margin: 0 0 10px 0;
    font-size: 1.8rem;
}
.item_list_2 li:last-child {
    width: 100%;
    line-height: 2;
    margin: 0;
}    
.item_list_2 li:before {
    content: "";
    width: 10px;
    height: 10px;
    display: inline-block;
    background: #9b9b9b;
    border-radius: 50%;
    margin-right: 12px;
}
.info_memo_h {
    font-size: 2.2rem;
    color: #2da932;
    margin: 0 0 30px 0;
    line-height: 1;
}    
/* subpage */
	
	
/* medical */
.wrap {
  margin: 2em 0;
  padding: 0;
}

.wrap label {
  display: block;
  /*padding : 8px;*/
  font-weight: bold;
  /*background: #999;*/
  cursor: pointer;
text-decoration: underline!important
}
	
.wrap label::before{
  content: "";
  background: url("../images/ic_arrow01b.svg");
  width: 1.6rem;
  height: 1.6rem;
  display: inline-block;
  vertical-align: sub;
  margin: 0 10px 0 0;
}


.wrap input[type="checkbox"] {
  display: none;
}

.wrap .content {
  height: 0;
  padding: 0;
  overflow: hidden;
  margin-bottom: 10px;
  /*border: 1px solid #ccc;*/
}

.switch:checked + .content {
  height: auto;
  padding: 8px;
  background: #fff;
}
	
	
	
.medical_list03{
  width: 100%;
  padding: 15px 20px;
  line-height: 2.4;
  background: #fff;
  color: #204354;
}

.medical_list03 ul{

}

.medical_list03 ul{

}

.medical_list03 ul li::before{
  content: "";
  background: url("../images/ic_arrow01c.svg");
  width: 1.6rem;
  height: 1.6rem;
  display: inline-block;
  vertical-align: sub;
  margin: 0 10px 0 0;
}


/* access */

.access__w{
width: 100%;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}

.access1{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin: 0 0 60px 0;
}

.access2{
width: 100%;
text-align: center;
}

.access2 img{
width: 400px;
}

.access3{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
text-align: center;
}

.access4{
width: 100%;
font-weight: 700;
font-size: 1.5rem;
letter-spacing: 0.15rem;
color: #6b3e03;
}

.access5{
width: 100%;
}


.access5 a{
width: 100%;
display: block;
font-size: 4rem;
color: #4b4948;
font-weight: 900;
line-height: 1;
}

.access5 a span{

}

.access5 a span::before{
content: "";
background: url("../images/ic_tel.svg");
display: inline-block;
width: 3.2rem;
height: 3.2rem;
margin: 0 10px 0 0;
vertical-align: bottom;
}

.access6{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}

.access7{
width: 85%;
border-radius: 10px;
margin: 0 auto;
}

.access8{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: stretch;
margin: 0 0 5px 0;
}

.access8:first-child{
}


.access8:last-child{

}

.access9{
width: 30%;
font-size: 1.6rem;
line-height: 1.2;
background: #f9f8f5;
padding: 25px 15px;
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
color: #4c4948;
}

.access10{
width: 66%;
line-height: 1.5;
font-weight: 500;
font-size: 1.6rem;
padding: 25px 0;
}

.access11{
width: 80%;
margin: 0 auto;
}

.access12{
}

.access13{
width: 100%;
}

.access14{
width: 100%;
margin: 0 0 20px;    
}

.access14 iframe{
width: 100%;
border-radius: 20px;
}

.access15{
width: 100%;
padding: 20px;
background: #f7f7f7;
border-radius: 20px;
}

.access16{
width: 100%;
text-align: center;
}

.access16 img{
width: 100%;
}

.access17{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin: 0 auto 50px;
}

.access18{
width: 32%;
}

.access18 img{
width: 100%;
border-radius: 3px;
margin: 0 0 15px;    
}
.access18 span{   
padding-left:1em;
text-indent:-1em;
display: inline-block;    
}


.access19{
width: 100%;
margin: 20px 0 0;
text-align: center;
}

.access20{
  font-size: 1.9rem;
  text-align: center;
  display: inline-block;
  padding: 8px 25px;
  border-radius: 5px;
  color: #1258a3;
  background: #effbfd;
}

.access21{
width: 100%;
font-size: 1.6rem;
font-weight: 700;
margin: 0 0 5px 0;

}
.access22{
width: 100%;
margin: 0 0 15px 0;
}

.access22:last-child{
/*width: 100%;
margin: 0 0 0 0;*/
}




.access_route {
    width: 100%;
    margin: 0 0 20px 0;
}
.access_route span {
    display: inline-block;
    padding: 0 15px;
    border: 1px solid #28634c;
    background: #fff;
    color: #28634c;
    border-radius: 3px;
    font-size: 2rem;
}


/* access */
.access_map1{
  width: 900px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  /*align-items: center;*/
}

.access_map2{
width: 430px;
margin-right:10px;
}

.access_map2 img{
border-radius: 5px;
}

.access_map3{
width: 430px;
/*display: flex;
flex-wrap: wrap;*/
text-align: left;
}

.googlemaps__access{
    width: calc(100% - 450px);
    padding: 0 3rem 0 0;
    background: #fff;
}

.googlemaps__access iframe{
width: 100%;
height: 540px;
border-radius: 20px;
}
.bnr_w{
    display: flex;
    justify-content: space-between;
       width: 1200px;
margin: 0 auto 0;
    padding: 10px 0;
}
.bnr02a{
width: 48%;
    display:flex;
}    

.bnr02a img{
border-radius: 5px;
}    
.bnr03a{
width: 48%;
    display:flex;
} 
.bnr03a img{
border-radius: 5px;
}    




/* dooctor */

.doctor1{
  width: 850px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;

}

.doctor2{
width: 300px;
margin-right:30px;
}

.doctor2 img{
border-radius: 10px;
}

.doctor3{
width: 400px;
display: flex;
flex-wrap: wrap;
border: 1px solid #dcdcdc;
padding: 20px 0 40px;
background: #fff;
justify-content: center;
align-items: center;
margin: 20px 0;
border-radius: 5px;
}

.doctor4{
font-size: 2.2rem;
line-height: 1.4;
margin: 15px 0 10px 0;
color: #314e70;
font-weight: 700;
width: 100%;
letter-spacing: .25rem;
text-indent:.25rem;
text-align: center;
}

.doctor5{
font-size: 4.5rem;
margin: 0 0 5px 0;
color: #314e70;
width: 100%;
font-weight: 700;
text-align: center;
letter-spacing: 0.2em;
text-indent: 0.2em;
}

.doctor6{
font-size: 1.4rem;
text-align: center;
width: 100%;
color: #314e70;
/*letter-spacing: .3rem;
text-indent: .3em;*/
}

.doctor6{
width: 100%;
margin: 0 0 0 0;
}


.doctor7{

}

.doctor7 h3{
font-size: 2.2rem;
text-align: center;
color: #354e71;
letter-spacing: .2rem;
font-weight: 700;
font-family: "YuMincho, 'Yu Mincho', serif, YakuHanJP_Narrow, 'Noto Serif JP', serif , "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif";
}

.doctor8{
background: #fff;
border-radius: 10px;
padding: 50px 70px;
width: 1000px;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
line-height: 1.7;
box-shadow: 5px 5px 0px #cdcdcda8;
}

.doctor9{
  width: 100%;
  margin: 0 auto 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.doctor9:last-child{
  margin: 0 auto 0;
}

.doctor10{
  width: 100%;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
  color: #939393;
}

.doctor11{
    width: 100%;
    padding-left: 1em;
    text-indent: -1em;
}

.doctor11 span {
    width: 10px;
    height: 10px;
    display: inline-block;
}

.doctor12{
background: #fff;
border-radius: 10px;
padding: 30px 70px;
width: 100%;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}

.doctor13{
width: 100%;
color: #314e70;
font-weight: 400;
}

.doctor14{
width: 100%;
margin: 0 0 18px 0;
line-height: 1.3;
}

.doctor15{
width: 48%;
}

.doctor16{
background: #fff;
border-radius: 10px;
padding: 30px 60px;
width: 100%;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
line-height: 2;
}
.doctor16 ul li{
padding-left:1em;
text-indent:-1em;
}
.doctor17{
  width: 100%;
  font-size: 2.7rem;
  text-align: center;
  margin: 0 0 30px 0;
  color: #36a34c;
  font-weight: 500;
}

.doctor18{
width: 100%;
font-size: 1.6rem;
line-height: 1.8;
}

.doctor19{
    width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.doctor20 {
    width: 48%;
    display: flex;
    flex-direction: column;
	z-index: 1;
}  
.doctor21 {
    background: #ffffff;
    border-radius: 10px;
    padding: 60px 30px 60px 60px;
    width: 100%;
    margin: 0 auto;
    flex-grow: 1;
    background-color: rgba(255, 255, 255, 0.6);
    box-shadow: 5px 5px 0px #cdcdcda8;
}

.doctor22 {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin:8px 0;
}

.doctor23 {
    width: 15%;
}

.doctor24 {
    width: 83%;
}
/* dooctor */


/*medical*/



/* about */

.about1{
width: 90%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin: 0 auto;
}

.about2{
width: 45%;
background: #F7F7F7;
/*border-radius: 30px 10px 10px 10px;*/
border-radius: 5px;
margin: 0 0 40px 0;
}
.about2 p {
font-size: 1.6rem;
line-height: 1.8;
padding: 0 1vw;
}

.about3{
width: 100%;
margin: 0 0 15px 0;
}

.about3 img{
width: 100%;
/*border-radius: 30px 10px 1px 1px;*/
border-radius: 5px 5px 1px 1px;	
}

.about4{
width: 100%;
font-size: 2.2rem;
text-align: center;

margin: 0 0 15px 0;
line-height: 1.4;
}

.about5{
width: 100%;
padding: 0 20px;
margin: 0 0 20px 0;
font-size: 1.5rem;
letter-spacing: 0;
}

/* about */



/* check */
.check1{
width: 100%;
}

table.check2{
width: 100%;
}

.check2 th{
padding: 15px 20px;
text-align: center;
background: #f1f1f1;
border: 1px solid #D0D0D0;
}

.check2 th:nth-child(1){
width: 25%
}

.check2 th:nth-child(2){
width: 50%
}

.check2 th:nth-child(3){
width: 25%
}

.check2 td{
padding: 15px 20px;
border: 1px solid #D0D0D0;
vertical-align: middle;
background: #FDFDFD;
}

.check2 td:nth-child(1){
text-align: center;
}

.check2 td:nth-child(2){
width: 50%
}

.check2 td:nth-child(3){
text-align: center;
}

/* check */








/* top-seikeigeka */

.service_nav{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: flex-start;
}

.service_nav1{
width: 31%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
background: #fafafa;
box-shadow: 8px 8px 3px #eaebeb;
margin: 0 3% 30px 0;
transition: .5s;
border: solid 1px #e1e1e1;
}
.service_nav1:nth-child(3n){
margin: 0 0 30px 0;
}

.service_nav1:hover{
transform: translateY(-5px);
}

.service_nav2{
display: block;
}

.service_nav3{
width: 100%;
text-align: center;
}
.service_nav3 img{
width: 100%;
}
.service_nav4{
width: 100%;
text-align: center;
font-size: 1.9rem;
padding: 25px 0;
letter-spacing: .03rem;
font-weight: 500;
color: #162c4c;

}

.service_nav4 span{
position: relative;
display: block;
width: 100%;
}

.service_nav4 span::after{
position: absolute;
right: 7px;
top: 1.1rem;
content: "";
background: url("../images/ic_arrow2.svg");
width: 15px;
height: 15px;
display: inline-block;
margin: 0 0 0 8px;
text-align: center;
}



/* top-seikeigeka */



/*renewal*/

.renewal__w{
width: 100%;
display: flex;
flex-wrap: wrap;
padding: 80px 0;
background: #fffdf0;
}

.renewal1{
width: 800px;
display: flex;
flex-wrap: wrap;
margin: 0 auto;
}
.renewal2{
width: 100%;
margin: 0 0 20px 0;
}
.renewal3{
width: 100%;
text-align: center;
font-size: 3.2rem;
margin: 0 0 40px 0;
font-family: 'Zen Old Mincho', serif;
font-weight: 700;
}

.renewal4{
width: 100%;
text-align: center;
margin: 0 0 30px 0;
}

.renewal4 img{
width: 550px;
}

.renewal5{
width: 100%;
text-align: center;
font-size: 3.2rem;
font-family: 'Zen Old Mincho', serif;
font-weight: 700;
}

.renewal6{
width: 100%;
text-align: center;
margin: 0 0 80px 0;
}

.renewal7{
width: 100%;
font-family: 'Zen Old Mincho', serif;
font-size: 3rem;
  color: #623f2f;
font-weight: 900;
letter-spacing: .5rem;
}

.renewal8{
  width: 100%;
  font-family: 'Zen Old Mincho', serif;
  font-size: 5rem;
  color: #623f2f;
  font-weight: 900;
  letter-spacing: .7rem;
  line-height: 1.4;
}

.renewal9{
    text-align: center;
    padding: 30px 50px;
    border: 2px solid #38a34c;
    margin: 0 auto;
    background: #ffffff;
    color: #42372e;
    border-radius: 5px;

}

.renewal10{
width: 100%;
margin: -60px 0 20px 0;
}

.renewal10 span{
display: inline-block;
background: #38a34c;
padding: 10px 40px;
text-align: center;
color: #fff;
font-size: 2.5rem;
border-radius: 5px;
}

.renewal11{
width: 100%;
font-size: 3.4rem;
margin: 0 0 0 0;
font-weight: 700;

}

.renewal12{
width: 100%;
font-size: 2.7rem;
margin: 0 0 15px 0;
font-weight: 700;

}

.renewal13{
width: 100%;
font-size: 1.5rem;
text-align: left;
}

/*renewal*/










/*sns*/
.sns__w{
position: fixed;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
width: 100px;
z-index: 1000;
bottom: 150px;
right: 0;
}

.sns1{
    width: 100%;
    margin: 0 auto 15px;
    display: flex;
    border-radius: 300px;
    text-align: center;
    align-items: center;
}

.sns1:hover{
transform: translateY(-3px);
color: #000;
}

.sns2{
width: 100%;
margin: 0 auto;
}

.sns2 img{
width: 60%;
}

.sns3{
width: 100%;
text-align: center;
font-size: 1.4rem;
font-weight: 700;
}

/*sns*/









.nav1::after{
content: "home";
display: block;
margin-top: .5rem;
text-align: center;
font-family: 'Zen Maru Gothic', sans-serif;  
font-size: 1.5rem;
color: #00afec;
font-weight: 400;
}

.nav2::after{
content: "doctor";
display: block;
margin-top: .5rem;
text-align: center;
font-family: 'Zen Maru Gothic', sans-serif;  
font-size: 1.5rem;
color: #00afec;
font-weight: 400;
}


.nav3::after{
content: "clinic";
display: block;
margin-top: .5rem;
text-align: center;
font-family: 'Zen Maru Gothic', sans-serif;  
font-size: 1.5rem;
color: #00afec;
font-weight: 400;
}

.nav4::after{
content: "medical";
display: block;
margin-top: .5rem;
text-align: center;
font-family: 'Zen Maru Gothic', sans-serif;  
font-size: 1.5rem;
color: #00afec;
font-weight: 400;
}

.nav5::after{
content: "flow";
display: block;
margin-top: .5rem;
text-align: center;
font-family: 'Zen Maru Gothic', sans-serif;  
font-size: 1.5rem;
color: #00afec;
font-weight: 400;
}

.nav6::after{
content: "access";
display: block;
margin-top: .5rem;
text-align: center;
font-family: 'Zen Maru Gothic', sans-serif;  
font-size: 1.5rem;
color: #00afec;
font-weight: 400;
}


/*HeightMinというクラス名がついたら高さを小さく、上部固定に*/
#fixnav.HeightMin{
    position: fixed;
    z-index: 999;/*最前面へ*/
    animation: DownAnime 0.5s forwards;
  top: 0;
  width: 100%;
  text-align: center;
}

#fixnav{
background: #ffffff;
}


/*nav*/



/*topdoctor*/

.topdoctor__w {
    width: 100%;
    background: #f4fafe;
    padding: 7rem 0;
    position: relative;
    z-index: 1;
}

.topdoctor_bg {
    background-image:url(../images/ilst07.svg);
    background-repeat:no-repeat;
    background-size:contain;
    background-position:bottom;
    width: 180px;
    height: 180px;
    position:absolute;
    top:-80px;
    z-index:2;
}

.topdoctor_ilst {
    background-image:url(../images/ilst06.svg);
    background-repeat:no-repeat;
    background-size:contain;
    background-position:top;
width: 240px;
    height: 240px;
    position: absolute;
    bottom: 0;
    right: 30px;
    z-index: -1;
    top: 0;
    margin: auto;
}

.topdoctor_ilst2 {
    background-image:url(../images/ilst09.svg);
    background-repeat:no-repeat;
    background-size:contain;
    background-position:bottom;
    width: 100%;
    height: 100%;
    position:absolute;
    bottom:0px;
    left:0;
    z-index:2;
}

.topdoctor1{
text-align: center;
margin: 0 0 90px 0;
}

.topdoctor1 h2{
font-size: 2.5rem;
font-weight: 400;
letter-spacing: .5rem;
color: #ffffff;
background: linear-gradient(45deg, #4dcb64, #27bb77);
width: 500px;
margin: 0 auto;
box-shadow: 15px 15px 0px rgb(66 198 106 / 20%);
text-align: right;
padding: 18px 22px;
}

.topdoctor1 h2 span{
display: block;
position: relative;
}

.topdoctor1 h2 span::before{
content: "GREETING";
display: block;
text-align: right;
font-size: 4.5rem;
letter-spacing: .6rem;
color: #fff;
font-weight: 400;
line-height: 1;

margin: 0 0 3px 0;
}

.topdoctor1 h2 span::after{
content: "";
background: url("../images/ic_nav1.svg");
width: 70px;
height: 70px;
display: block;
top: -40px;
left: -40px;
position: absolute;
filter: drop-shadow(4px 4px 3px #469C57);
}


.topdoctor2{
width: 900px;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
background: #fdfdfb;
box-shadow: 15px 15px 0px rgb(186 238 200);
}

.topdoctor3{
width: 100%;
margin: 0 0 35px 0;
}

.topdoctor3 img{
width: 100%;
}

.topdoctor4{
width: 100%;
font-size: 3.3rem;

margin: 0 0 10px 0;
text-align: center;
color: #36a34b;
font-weight: 700;
letter-spacing: -0.1rem;
transform: scaleY(1.05);
}

.topdoctor5{
width: 100%;
font-size: 1.8rem;
padding: 20px 80px 30px;
line-height: 1.7;
}

.topdoctor6{
width: 100%;
font-size: 2.3rem;
text-align: right;
padding: 0 40px 10px 0;
font-family: 'Zen Old Mincho';
font-weight: 700;
}

.topdoctor7{
width: 100%;
font-size: 1.5rem;
text-align: right;
padding: 0 40px 40px 0;
}



/*TOPページ院長挨拶*/


.topdoctor__wi {
    width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: self-start;
    background: url(../images/topdoctorbg1.png) no-repeat left top, url(../images/topdoctorbg2.png) no-repeat right bottom;
    background-size: 100px;
    padding: 5rem 5rem 5rem 7rem;
}
.topdoctor_i {
    width: 360px;
    margin-top: 40px;
}

.topdoctor_img {
    text-align:center;
}

.topdoctor_img img {
    width: 67%;
    border-radius: 5px;
    margin: 0 0 20px;
}   
.topdoctor_logo{
    width: 50%;
    margin: 0 auto;
    padding: 0 0 20px;
}   
.topdoctor_logo img{
    width: 100%;
}   
.topdoctor_t {
    width: 550px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.topdoctor_t1 {
    font-size: 3rem;
    font-weight:700;
    
    letter-spacing: .1rem;
    line-height: 1.8;
    transform: scaleY(1.05);
    margin: 0 0 4rem;
    position:relative;
    padding-top: 55px;
    width: 100%;
}


.topdoctor_t2 {
line-height: 2.3;
padding: 35px 0;
    width: 100%;
font-size: 1.6rem
}

.topdoctor_t3 {
    font-size: 2.1rem;
    text-align: center;
    /*letter-spacing: .25rem;
    text-indent:.25rem;*/
    color: #363636;
    font-weight: 700;
    width: 100%;
    margin: 0 0 20px;
}

.topdoctor_t3 span {
    font-size: 1.6rem;
    text-align: center;
    /*letter-spacing: .25rem;
    text-indent:.25rem;*/
    color: #363636;
    font-weight: 700;
    width: 100%;
    margin: 0 0 5px; /* 余白を調整 */
    display: block;
}

.topdoctor_t3 ruby {
    margin-top: 0; /* 上方向の余白を削除 */
    display: block;
	text-indent:.25rem;
}
.topdoctor_t3 ruby span{
    font-size: 0.9rem; /* 上方向の余白を削除 */
    display: block;
	text-indent:.25rem;
}


.topdoctor_btn {
    text-align: center;
    width: 100%;
}
.topdoctor_btn a {
    display: inline-block;
    border-radius: 5px;
    background: #7474BF;
    background: -webkit-linear-gradient(to right, #348AC7, #7474BF);
    background: linear-gradient(to right, #348AC7, #7474BF);
    box-shadow: 10px 10px 20px #b6d7ff;
    color: #fff;
    text-align: center;
    padding: 12px 0;
    transition: .6s;
    position: relative;
    font-size: 1.6rem;
    width: 240px;
    margin-left: 3px;
}
.topdoctor_btn span::after {
    content: "";
    background: url(../images/arrow-white.svg);
    width: 1.8rem;
    height: 1.8rem;
    position: absolute;
    right: 15px;
    font-size: 1rem !important;
    top: 1.5rem;
    color: #aedce0;
}
    






/*toppcr*/

.toppcr__w{
width: 100%;
padding: 80px 0;
background: url("../images/toppcrbg.jpg");
background-size: cover;
}

.toppcr1{
width: 960px;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
background: rgba(255,255,255,.80);
padding: 50px 30px 60px;
}

.toppcr2{
width: 100%;
text-align: center;
}

.toppcr2 h2{
font-size: 5.3rem;
font-weight: 900;
margin: 0 0 30px 0;
color: #36a34b;
letter-spacing: 0.5rem;
transform: scaleY(1.05);
line-height: 1.4;
}

.toppcr3{
width: 100%;
text-align: center;
margin: 0 0 40px 0;
}

.toppcr3 span{
display: inline-block;
text-align: center;
font-size: 3.2rem;
font-weight: 700;
padding: 8px 40px;
background: #f7f7f7;
color: #fd6da3;
border-radius: 2px;

width: 100%;
}

.toppcr4{
width: 900px;
margin: 0 auto 50px;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}

.toppcr5{
width: 500px;

font-size: 2.4rem;
font-weight: 500;
text-align: center;
line-height: 1.7;
}

.toppcr5b{
width: 100%;
margin: 40px 0 0 0;
display: flex;
flex-wrap: wrap;
justify-content: center;
}

.toppcr5b span{
display: inline-block;
text-align: center;
font-size: 1.7rem;
padding: 2px 15px;
background: #1AAFC9;
color: #ffffff;
border-radius: 200px;
font-family: 'Zen Kaku Gothic New', sans-serif;
margin: 0 12px 0 0;
}

.toppcr6{
width: 380px;
background: #cfeeef;
}

.toppcr6 img{
width: 100%;
}


.toppcr7{
width: 900px;
margin: 0 auto 20px;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: baseline;
}

.toppcr8{
width: 72%;
margin: 0 0 20px 0;
display: flex;
flex-wrap: wrap;
justify-content: center;
}

.toppcr8 span{
display: block;
text-align: center;
font-size: 2rem;
padding: 8px 15px;
color: #314e70;
border-radius: 2px;
font-family: YakuHanJP, 'Zen Kaku Gothic New', sans-serif;
margin: 0 12px 0 0;
border-bottom: 5px solid #0b891a;
font-weight: 700;
letter-spacing: 0;
width: 100%;
}

.toppcr9{
width: 28%;
}

.toppcr9 span{
display: block;
text-align: center;
font-size: 2.7rem;
font-weight: 700;
padding: 8px 15px;
background: #0b891a;
color: #fff;
border-radius: 2px;
font-family: YakuHanJP, 'Zen Maru Gothic', sans-serif;
margin: 0 12px 0 0;
border: 1px solid #0b891a;
}



.toppcr9 span > a,
.toppcr12 span > a{
color:#ffffff;
}

.toppcr10{
width: 900px;
margin: 0 auto 20px;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: baseline;
}

.toppcr11{
width: 72%;
margin: 0 0 20px 0;
display: flex;
flex-wrap: wrap;
justify-content: center;
}

.toppcr11 span{
display: block;
text-align: center;
font-size: 2rem;
padding: 8px 15px;
color: #314e70;
border-radius: 2px;
font-family: YakuHanJP, 'Zen Kaku Gothic New', sans-serif;
margin: 0 12px 0 0;
border-bottom: 5px solid #2bb73c;
font-weight: 700;
letter-spacing: 0;
width: 100%;
}

.toppcr12{
width: 28%;
}

.toppcr12 span{
display: block;
text-align: center;
font-size: 2.7rem;
font-weight: 700;
padding: 8px 15px;
background: #2bb73c;
color: #fff;
border-radius: 2px;

margin: 0 12px 0 0;
border: 1px solid #2bb73c;
}

.toppcr13{
width: 100%;
text-align: center;
margin: 0 0 40px 0;
font-size: 1.6rem;
}

.toppcr14{
width: 100%;
text-align: center;
}

.toppcr14 a{
display: inline-block;
background: #fff;
text-align: center;
padding: 10px 40px;
color: #2bb73c;
font-weight: 700;
font-size: 1.7rem;
letter-spacing: -.06rem;
box-shadow: 15px 15px 15px #bfdae7;
border-radius: 5px;
}

.toppcr14 a span{
}

.toppcr14 a span::before{
content:"";
background: url("../images/ic_arrow2.svg");
width: 1.8rem;
height: 1.8rem;
display: inline-block;
margin: 0 15px 0 0;
vertical-align: middle;
}

.toppcr15{
font-size: 1.5rem;
display: inline;
}

.toppcr16{
font-size: 2.8rem;
display: block;
letter-spacing: .05rem;
font-weight: 500;
}

.toppcr17{
width: 960px;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
background: rgba(255,255,255,.80);
padding: 50px 30px 60px;
}

.toppcr18{
width: 100%;
text-align: center;
}

.toppcr18 h2{
font-size: 4rem;
font-weight: 900;
margin: 0 0 30px 0;
color: #36a34b;
letter-spacing: 0.3rem;
transform: scaleY(1.05);
line-height: 1.4;
}

.toppcr19{
font-size: 1.6rem;
width: 100%;
margin: 0 0 30px 0;
padding: 0 0 0 150px;
line-height: 2;
}

.toppcr20{
width: 95%;
margin: 0 auto 40px;
display: flex;
flex-wrap: wrap;
background: rgba(255,255,255,.50);
padding: 30px 30px;
}

.toppcr21{
margin: 0 0 18px 0;
}

.toppcr21:last-child{
margin: 0 0 0 0;
}

.toppcr21 span::before{
content: "●";
color: #36a34b;
display: inline-block;
margin: 0 5px 0 0;
}

.toppcr22{
width: 100%;
text-align: center;
font-size: 1.7rem;
margin: 0 0 30px 0;
}

.toppcr23{
width: 960px;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
background: rgb(54 163 76);
padding: 40px 30px 40px;
}

.toppcr24{
width: 100%;
margin: 0 auto 20px;
display: flex;
flex-wrap: wrap;
background: #fff;
align-items: center;
border-radius: 5px;

}

.toppcr25{
width: 40%;
text-align: center;
padding: 15px 0;
font-weight: 700;
color: #157e2a;
font-size: 1.7rem;
font-family: YakuHanJP, 'Zen Maru Gothic', sans-serif;
}

.toppcr26{
font-size: 1.5rem;
width: 18%;
}

.toppcr27{
font-size: 1.5rem;
}

.toppcr28{
width: 100%;
text-align: center;
}

.toppcr28 a{
text-align: center;
display: inline-block;
border-bottom: 1px dotted #eaff8a;
color: #eaff8a;
}

/*toppcr*/

.newspage1{
width: 100%;
display: flex;
flex-wrap: wrap;

}

.newspage2{
width: 100%;
font-size: 1.4rem;
  margin: 0 0 8px 0;
color: #555;
}

.newspage3{
  width: 100%;
  font-size: 2.2rem;
  color: #3caa30;
  margin: 0 0 10px 0;
}

.newspage4{
width: 100%;
  font-size: 1.6rem;
}





.cashless__w{
width: 100%;
background: #e7f0f9;
padding: 60px 0;
}

.cashless1{
width: 850px;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}

.cashless2{
text-align: center;
margin: 0 0 30px 0;
width: 100%;
}

.cashless2 span{
display: inline-block;
text-align: center;
background: #004d9f;
padding: 7px 30px;
color: #fff;
font-size: 2rem;
font-family: "Zen Maru Gothic";
border-radius: 100px;
}

.cashless3{
margin: 0 0 15px 0;
font-size: 1.8rem;
text-align: center;
width: 100%;
}

.cashless4{
  width: 100%;
  font-size: 1.8rem;
  text-align: center;
  font-weight: 900;
  margin: 0 0 15px 0;

}

.cashless5{
  width: 100%;
  font-size: 1.5rem;
  text-align: center;
  color: #f31d1d;
  font-weight: 700;
  margin: 0 0 30px 0;
}

.cashless6{
width: 100%;
text-align: center;
}

.cashless6 img{
width: 750px;
border-radius: 10px;
}




/* <!--btn reservation--> */
.btn_fix__w{
    position: fixed;
    top: 200px;
    right: 30px;
    z-index: 2100;
}

.btn_fix__w a{
  width: 140px;
  height: 120px;
  display: flex;
  color: #ffffff;
  text-align: center;
  font-size: 1.7rem;
  position: relative;
  letter-spacing: .06rem;
  box-shadow: 5px 5px 5px 0px #e1decf;
  vertical-align: middle;
  line-height: 1.2;
  transition: .5s;
  background: linear-gradient(135deg, #f8a23f  0%, #f76b1c 100%);
  justify-content: center;
  border: 3px solid #ffffff;
  border-radius: 10px 10px;
  align-items: center;
}

.btn_fix__w a:hover,
.btn_fix__w a:active{
opacity: .8;
box-shadow: 0px 0px 10px 0px #00000014;
transform: translateY(-5px);
}

.btn_fix__w a span::before{
  content: "";
  background: url("../images/ic_header_rsv.svg");
  width: 36px;
  height: 36px;
  display: block;
  margin: 0 auto 10px;
  opacity: .9;
}
	
	
	
.btn_fix__w2{
    position: fixed;
    top: 340px;
    right: 30px;
    z-index: 2100;
}

.btn_fix__w2 a{
  width: 140px;
  height: 120px;
  display: flex;
  color: #ffffff;
  text-align: center;
  font-size: 1.7rem;
  position: relative;
  letter-spacing: .06rem;
  box-shadow: 5px 5px 5px 0px #e1decf;
  vertical-align: middle;
  line-height: 1.2;
  transition: .5s;
  background: linear-gradient(135deg, #00a1db 0%, #0383b1 100%);
  justify-content: center;
  border: 3px solid #ffffff;
  border-radius: 10px 10px;
  align-items: center;
}

.btn_fix__w2 a:hover,
.btn_fix__w2 a:active{
opacity: .8;
box-shadow: 0px 0px 10px 0px #00000014;
transform: translateY(-5px);
}

.btn_fix__w2 a span::before{
  content: "";
  background: url("../images/ic_check4.svg");
  width: 36px;
  height: 36px;
  display: block;
  margin: 0 auto 10px;
  opacity: .9;
}
	
	
	
	
	
/*.btn_fix__w{
    position: fixed;
    top: 200px;
    right: 30px;
    z-index: 2100;
}

.btn_fix__w a::after{
    position: absolute;
    right: 60px;
    top: 80px;
    background: url("../images/ic_yoyaku.svg") top center no-repeat;
    width: 100%;
    height: 120px;
    background-size: contain;
    content: "";
    transform-origin: center bottom;
    animation: yurayura 2s linear infinite;

}
    
.btn_fix__w a{
  width: 150px;
    height: 150px;
    display: flex;
    color: #ffffff;
    text-align: center;
    font-size: 1.8rem;
    position: relative;
    letter-spacing: .03rem;
    vertical-align: middle;
    line-height: 1.2;
    transition: .5s;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    border: 2px dashed #fff1f1;
    box-shadow: 0 0 0 8px #ed8599;
    padding: 15px;
    background: #ed8599;
    border-radius: 10px;
}

.btn_fix__w a:hover,
.btn_fix__w a:active{
opacity: .8;
transform: translateY(-5px);
box-shadow: 0 0 0 8px #ed8599;    
}

/*.btn_fix__w a span::before{
  content: "";
  background: url("../images/ic_calendar.svg");
  width: 40px;
  height: 40px;
  display: block;
  margin: 0 auto 15px;
}*/


/* <!--btn reservation--> */
.btn_fix2__w{
    position: fixed;
    top: 400px;
    right: 30px;
    z-index: 2100;
}
.btn_fix2__w a::after {
    position: absolute;
    right: 60px;
    top: 80px;
    background: url(../images/ic_yoyaku2.svg) top center no-repeat;
    width: 100%;
    height: 120px;
    background-size: contain;
    content: "";
    transform-origin: center bottom;
    animation: yurayura 2s linear infinite;
}
.btn_fix2__w a{
  width: 150px;
    height: 150px;
    display: flex;
    color: #ffffff;
    text-align: center;
    font-size: 1.8rem;
    position: relative;
    letter-spacing: .03rem;
    vertical-align: middle;
    line-height: 1.2;
    transition: .5s;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    border: 2px dashed #fff1f1;
    box-shadow: 0 0 0 8px #fbcb09;
    padding: 15px;
    background: #fbcb09;
    border-radius: 10px;
}

.btn_fix2__w a:hover,
.btn_fix2__w a:active{
opacity: .8;
transform: translateY(-5px);
box-shadow: 0 0 0 8px #fbcb09;    
}















    
    
/*アレルギー*/
.movie {
    width: 100%;
    text-align: center;
}
.movie video {
    width: 90%;
    border-radius: 10px;
}  
.movie img {
    width: 90%;
    border-radius: 10px;
} 


.open_w {
width: 100%;
padding: 9rem 0;
background: url("../images/topmedicalbg.jpg");
background-size: cover;
}

.open1 {
width: 750px;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
background: #fff;
padding: 4rem;
border-radius: 5px;
font-weight: 700;
letter-spacing: .3rem;
}

.open2 {
width: 100%;
text-align: center;
margin-bottom: .5rem;
}


.open2 span {
display: inline-block;
font-size: 2rem;
margin-bottom: .1rem;
/*font-family: 'Roboto', YakuHanJP_Narrow, 'Zen Old Mincho', Meiryo, sans-serif;*/
padding: .1rem 1rem;
border: 1px solid #1FC74C;
text-align: center;
color:#1FC74C;
font-weigt:700;
}

.open3 {
width: 100%;
text-align: center;
font-size: 2.2rem;
}

.open4 {
width: 100%;
text-align: center;
font-size: 1.9rem;
margin-bottom: 1rem;

}

.open5 {
width: 100%;
text-align: center;
font-size: 1.5rem;
line-height: 2;
font-weight: 500;
}

.open6 {
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
margin-bottom: 2rem;
}

.open7 {
width: 100%;
text-align: center;
}

.open7 span {
display: inline-block;
padding: .1rem 1rem;
background: #d53369;  /* fallback for old browsers */
background: linear-gradient(to right, #fc6295, #ec497f);
color: #fff;
text-align: center;
font-size: 2rem;
}


.open8 {
width: 100%;
text-align: center;
font-size: 3rem;
margin-left: 2rem;
color: #ec497f;
margin-bottom: 3rem;
}


/*medical 装飾追加*/

.item_list_1 {
    width: 100%;
    display: block;
    list-style: none;
    font-size: 1.6rem;
    border-radius: 10px;
    margin: 0 0 10px;
}
.item_list_1 li {
    width: 100%;
    line-height: 1.5;
    margin: 0 0 10px 0;
    padding-left: 1em;
    text-indent: -1em;
}
.item_list_1 li:before {
    content: "";
    width: 10px;
    height: 10px;
    display: inline-block;
    background: #ccc;
    border-radius: 50%;
    margin-right: 12px;
}
.item_list_3_w {
    width: 100%;
    position: relative;
    padding: 30px 40px 20px;
    border: solid 1px #d6d6d6;
}  
.item_list_3_ttl {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    border-radius: 5px 5px 0 0;
/*    background-color: #57aa00;*/
    background:url(../images/bg02.jpg);
    text-align: center;
    width: 200px;
    color: #fff;
}    
.item_list_3 {
    width: 100%;
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    font-size: 1.6rem;
    position: relative;
} 
.item_list_3::after {
    content: "";
    width: 33%;
}     
.item_list_3 li {
    width: 33%;
    line-height: 1.5;
    margin: 0 0 10px 0;
}
.item_list_3 li:last-child {
    width: auto;
}
.item_list_3 li span {
    font-size:1.3rem;
}

.item_list_3 li.medi05 {
    width:54%;
}
.item_list_3 li:before {
    content: "";
    width: 10px;
    height: 10px;
    display: inline-block;
    background: #57aa00;
    border-radius: 50%;
    margin-right: 12px;
}

.topdoctor_btn.subpage a {
    width:280px;
}

#schedule {
    position:relative;
}

#schedule::after {
    content:"";
    background:url(../images/ilst_sche.svg) space;
    position:absolute;
    top:0;
    right:0;
    left:0;
    display:block;
    width:780px;
    height: 40px;
    margin: auto;
    right:-40px;
}

#schedule .subpage2 {
    text-align:center;
    border-bottom:0;
}

#schedule .subpage2 h2 {
    background: url(../images/bg08.jpg) no-repeat;
    background-size:cover;
    display:inline-block;
    border-radius:20px;
    width: 480px;
    color:#fff;
    font-weight:700;
    font-size:2.1rem;
    padding:20px 0;
    margin-top: 30px;
    letter-spacing: .4rem;
}

#schedule table {
border-collapse: collapse;
width: 100%;
line-height: 1.5;
}

#schedule th, #schedule td {
border: solid 1px #d6d6d6 !important;
padding: 14px 8px;
text-align: left;
}

#schedule td {
font-size: 1.4rem;
font-weight: 400;
}

#schedule td.name {
    font-size:1.55rem;
    font-weight:600;
    width:23%;
}

/*#schedule td.name2 {
    font-weight: 600;
}*/

#schedule th {
background-color: #C8EFEA;
}

#schedule th.th-first {
    width:34%;
}

#schedule th.th-second {
    width:34%;
}

.ft_ilst {
    background: #fff;
}

.ft_ilst img {
    width:100%;
}


/*求人告知*/
.toprecruit__w {
    padding: 50px 0;
    background:url(../images/bg.jpg);
    text-align: center;
}

.toprecruit__w_inner {
    width:500px;
    margin:auto;
}

/*.toprecruit__w_inner {
    background:#fff;
    width:500px;
    margin:auto;
    border-radius:50px 20px 50px 20px;
    position:relative;
    top: -20px;
    z-index:1;
    border: 2px dashed  #354e71;
    box-shadow:0 0 0 8px #fff;
}

.toprecruit1 {
    position: relative;
    display: inline-block;
    height: 40px;
    line-height: 40px;
    padding: 0 1rem;
    background: #354e71;
    color: #fff;
    font-family:'Zen Maru Gothic', sans-serif;
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    z-index:2;
}

.toprecruit1::before,
.toprecruit1::after {
    position: absolute;
    top: 0;
    width: 0px;
    height: 0px;
    border-color: #354e71 transparent;
    border-style: solid;
    content: '';
}

.toprecruit1::before {
    left: -15px;
    border-width: 20px 0px 20px 15px;
}

.toprecruit1::after {
    right: -15px;
    border-width: 20px 15px 20px 0px;
}

.toprecruit_2 {
    display:flex;
    width:500px;
    align-items:center;
    margin: 3rem auto 0;
}

.toprecruit_2 img {
    display:flex;
    width:45%;
    border-radius:20px;
}

.toprecruit_2 p {
    display:inline-block;
    width:calc(100% - 50%);
    font-size:2.4rem;
    font-family:'Zen Maru Gothic', sans-serif;
    letter-spacing:.12em;
}*/

.toprecruit_3 {
    background: #ffd58a;
    display:inline-block;
    padding:4px 20px;
    border-radius:3px;
    width:100%;
}

.toprecruit_3 span {
    background:#fff;
    padding: 1px 10px;
    border-radius:50px;
    margin: 0 10px;
    letter-spacing: .1em;
}
/*flow*/	
.detail_btn {
    text-align: center;
    width: 100%;
}
.detail_btn a {
    display: inline-block;
    border-radius: 15px;
    background: #00a1db;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    transition: .6s;
    position: relative;
    font-size: 1.8rem;
    width: 400px;
    box-shadow: 3px 3px 10px #dadada;
}
.detail_btn span::after {
    content: "";
    background: url(../images/arrow-white.svg);
    width: 1.8rem;
    height: 1.8rem;
    position: absolute;
    right: 15px;
    font-size: 1rem !important;
    top: 2.4rem;
    color: #aedce0;
}
.flowstep01 {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin:8px 0 20px;
	line-height: 1.8;
}

.flowstep02 {
    width: 12%;
	height:40px;
	margin: 0 auto;
	text-align: center;
	font-size: 1.7rem;
    font-weight: 700;
    display: inline-block;
    padding: 2px 20px;
    letter-spacing: .1rem;
    background: #00a1db;
    border-radius: 100px;
	color: #ffffff;

}

.flowstep03 {
    width: 85%;
}

	
.medical-care-dx{
    letter-spacing: .1rem;
    line-height: 1.6;
    padding: 4vw;
    border-radius: 10px;
    width: 92%;
    margin: 0 auto 3rem;
    font-size: 1.4rem;
    text-align: justify;
    background: #ebf3f3;
    } 
.medical-care-dx_ttl{
       padding: 0 0 1rem;
        line-height: 1;
        color: #00a155;
        font-size: 1.6rem;
    }    
	
	
	

}
/* PC */




































@keyframes DownAnime{
  from {
    opacity: 0;
    transform: translateY(-170px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}




@keyframes yurayura {
  0% , 100%{
      transform: rotate(10deg);
  }
  50%{
      transform: rotate(-10deg);
  }
}















/*  */
@media screen and (min-width:751px) and ( max-width:1200px) {

	.top_point_deco_1 {
    width: 350px;
    /*height: 460px;*/
    right: 2%;
    top: -25%;
}       

.topnavigation__w{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
padding: 1rem 0 25rem;
/*background: url("../images/topsubjectbg03.jpg");*/
background: #faf8f5;
}





}




/* sp */
@media screen and (max-width:750px) {

.wrapper {
    overflow: hidden;
    padding-bottom: 7rem;
}

/* header */

header{
width: 100%;
background:#ffffff;
height: 7rem;
}

.header1{
  width: 100%;
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
height: 7rem;
}

.header2{
  width: 100%;
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
}

.header2 h1{
width: auto;
height: 4.6rem;
}

.header2 h1 a{
display: block;
}

.header2 h1 a img{
width: auto;
height: 5.0rem;
padding: 0;
}
.header3{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin-top: 2rem;
}

.header4{
width: 100%;
text-align: center;
}

.header4 a{
width: 100%;
display: block;
font-size: 3rem;
color: #fff;
font-weight: 700;
line-height: 1;
}

.header4 a span{

}

.header4 a span::before{
    content: "";
    background: url("../images/ic_tel_white.svg");
    display: inline-block;
    width: 2.4rem;
    height: 2.4rem;
    margin: 0 5px -1px 0;
    background-repeat: no-repeat;
}
.header4b{
width: 100%;
text-align: center;
display: block;
font-size: 1.4rem;
color: #fff;
font-weight: 500;
line-height: 1;
margin-top:20px;
}

.header5{
    width: 100%;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: .15rem;
    color: #007ab4;
    padding: 1.5rem 2rem;
    position: relative;
    background: url(../images/headerbg.png);
    margin-bottom: 5rem;
}
.header5b{
    width: 20.4rem;
	/*display: flex;*/
    justify-content: space-between;
	font-size:　1.6rem;
	text-align: center;
}

.header6{
width: 35rem;
margin: 0 auto;
font-size: 1.5rem;
font-weight: 500;
line-height: 1.4;
}

.header7{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin: 0 0 1vw 0;
}

.header8{
width: 7.5rem;
text-align: center;
}

.header8 span{
display: inline-block;
border-radius: 100px;
text-align: center;
line-height: 1;
width: 100%;
color: #fff;
font-size: 1.3rem;
}

.header9{
width: calc(100% - 9rem);
color: #fff;
font-size: 1.3rem;
}
.header9b{
width: calc(100% - 8rem);
color: #fff;
font-size: 1.3rem;
}
.header10{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
}

.header11{
width: 7.5rem;
text-align: center;
}

.header11 span{
display: inline-block;
border-radius: 100px;
text-align: center;
line-height: 1;
width: 100%;
    color: #FBAFAF;
font-size: 1.3rem;
}

.header12{
    width: calc(100% - 9rem);
    color: #FBAFAF;
    font-size: 1.3rem;

}



.header13{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0rem;
    padding: .5rem;
    line-height: 1.4;
    text-align: center;
    font-size: 1.1rem;
}

.header13 span{
  /*border-bottom: 2px dotted #f9e43f;*/
  }

.header14{
  width: 100%;
  font-size: 1.3rem;
  letter-spacing: 0;
}

.header15{
  width: 100%;
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
}
.header18 span{
    display: inline-block;
    text-align: center;
    font-size: 1.2rem;
    letter-spacing: .07rem;
    width: 100%;
    /*padding: .7rem 1.2rem;*/
    font-family: YakuHanJP, 'Kosugi Maru', sans-serif;
    line-height: 1;
    color: #007ab4;}

/* header */









/* nav */

/*========= ナビゲーションのためのCSS ===============*/

#g-nav{
    position: fixed;
    z-index: -1;
    opacity: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background: #297bb6;
    background-size:cover;
    transition: all 0.3s;
	display: none;
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive{
opacity: 1;
z-index:999;
display: block;	
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
/*ナビの数が増えた場合縦スクロール*/
position: fixed;
z-index: 999; 
width: 100%;
height: 100vh;/*表示する高さ*/
overflow: auto;
-webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
display: none;
/*ナビゲーション天地中央揃え*/
z-index: 999;
}

#g-nav.panelactive ul {
width: 100%;
display: flex !important;
flex-wrap: wrap;
justify-content: space-between;
margin: 15vw 0 0 0;
}

/*リストのレイアウト設定*/

#g-nav li{
list-style: none;
text-align: center; 
width: 90%;
margin: 0 auto;
}

#g-nav li a{
    color: #fff;
    text-decoration: none;
    padding: 1rem;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    font-weight: 700;
    font-size: 1.5rem;
    border-radius: 5px;
    margin: 0 auto;
}

#g-nav.panelactive ul li ul{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: flex-start;
margin: 2vw auto 0;
}

#g-nav.panelactive ul li ul li{
width: 49%;
margin: 0 2% 2vw 0;
align-items: center;
display: flex;
}

#g-nav.panelactive ul li ul li:nth-child(2n){
margin: 0 0 2vw 0;
}

#g-nav.panelactive ul li ul li a{
font-size: 1.3rem;
background: #36a34b;
line-height: 1.2;
padding: 1vw 1vw;
display: block;
width: 100%;
letter-spacing: -0.05rem;
border-radius: 200px;
}

#g-nav.panelactive ul li ul li img{
width: 100%;
border-radius: 10px 3px 10px 3px;
}








/*========= ボタンのためのCSS ===============*/
.openbtn{
position:fixed;
z-index: 9999;/*ボタンを最前面に*/
top:1rem;
right: 1rem;
cursor: pointer;
width: 5rem;
height:5rem;
background: #fff;
}

/*×に変化*/    
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background: #007ab4;
    width: 45%;
}

.active span{
display: inline-block;
transition: all .4s;
position: absolute;
left: 14px;
height: 3px;
border-radius: 2px;
background: #007ab4;
width: 45%;
}

.openbtn span:nth-of-type(1) {
top:15px;   
}

.openbtn span:nth-of-type(2) {
top:23px;
}

.openbtn span:nth-of-type(3) {
top:31px;
}

.openbtn.active span:nth-of-type(1) {
top: 18px;
left: 18px;
transform: translateY(6px) rotate(-45deg);
width: 30%;
}

.openbtn.active span:nth-of-type(2) {
opacity: 0;
}

.openbtn.active span:nth-of-type(3){
top: 30px;
left: 18px;
transform: translateY(-6px) rotate(45deg);
width: 30%;
}


nav ul li.has-child dt{
overflow: hidden;
margin: 0 0 1vw 0;
}

nav ul li.has-child dd{
padding: 1vw 0;
font-weight: 500;
letter-spacing: -.05rem;
}

nav ul li.has-child dd.has-child-last{
padding: 0;
}




#g-nav li.navbnr a{
background: #02b2bf;
color: #fff;
}

.spnavinfo__w{
width: 100%;
display: flex;
flex-wrap: wrap;
align-content: center;
}

.spnavinfo1{
width: 100%;
margin-bottom: 5rem;
}

.spnavinfo2{

}



/* nav */






/* slider */

/* slider */

.swiper__w {
    width: 100%;
    position: relative;
}

.swiper {
    width: 100%;
    height: 50vh;
    position: relative;
}

.swiper-slide {
text-align: center;
font-size: 18px;
background: #fff;

/* Center slide text vertically */
display: -webkit-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
-webkit-justify-content: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
-webkit-align-items: center;
align-items: center;
}

.swiper-slide img {
display: block;
width: 100%;
height: 50vh;
object-fit: cover;
}

.swiper-slide:nth-child(2) img {/*先生の写真のみ調整*/
display: block;
width: 100%;
height: 100%;
object-fit: cover;
object-position: 0 10%;
}
	
	
	

.swiper_txt2 {
    position: absolute;
    left: 2.4rem;
    bottom: 70px;
    width: 400px;
    z-index: 10;
	

}

.swiper_txt2 img {
    display: block;
    width: 90%;
}
	
	
	
	
	
	
	
	
/*	
.swiper {
width: 100%;
height: 100%;
}

.swiper-slide {
text-align: center;
font-size: 18px;
background: #fff;

display: -webkit-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
-webkit-justify-content: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
-webkit-align-items: center;
align-items: center;
}

.swiper-slide img {
display: block;
width: 100%;
height: 100%;
object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev {
--swiper-navigation-color: #009f88;
width:50%	
}*/
	
	
	
	
	


/* slider */










/* pagetop */


#page-top {
position: fixed;
bottom: 9rem;
right: 1rem;
z-index: 99;
opacity: .9;
}
#page-top a {
width: 12vw;
display: block;
opacity: 0.9;
transition: all .3s ease;
}
#page-top a:hover {
text-decoration: none;
opacity: .5;
}


#page-top a img{
width: 100%;
display: block;
}


/* pagetop */






/* breadcrumb */

.breadcrumb__w{
width: 100%;
padding: 3vw 0 3vw 3vw;
font-size: 1.2rem;
background: #fff;
}

.breadcrumb__w ol{
padding: 0;
color: #333 !important;
width: 100%;
margin: 0 auto;

}

.breadcrumb__w ol li{
list-style:none;
display:inline;
}

.breadcrumb__w ol li a:link,
.breadcrumb__w ol li a:visited{
color:#333 !important;
}

.breadcrumb__w ol li a:hover,
.breadcrumb__w ol li a:active{
opacity: .7;
}

.breadcrumb__w ol li:last-of-type a{
color:#333 !important;
}

.breadcrumb__w ol li:last-of-type a:hover,
.breadcrumb__w ol li:last-of-type a:active{
opacity: .7;
}

/* breadcrumb */




/*特徴*/
.topfeature1{
text-align: center;
margin: 0 0 5rem 0;
}

.topfeature1 h2 span::after{
  content: "feature";
  display: block;
  letter-spacing: .2rem;
  text-align: center;
  font-family: 'Tangerine', cursive;
  font-size: 3rem;
  color: #00afec;
  font-weight: 400;
}

.topfeature1 h2 span{
display: block;
position: relative;
}

.topfeature1 h2 {
  display: block;
  text-align: center;
  font-size: 2rem;
  letter-spacing: .3rem;
  color: #354e71;
  line-height: 1;
  font-weight: 500;
}
  
  
  
  
  
  
  
/*当院の特徴*/
.merit__ww {
    width: 100%;
}
.merit__w {
    width: 100%;
    margin: 0 auto;
    position: relative;
    background: #faf8f5;
}  
	
.program1{
text-align: center;
font-size: 2.7rem;
width: 100%;
padding: 0 2.0rem;
font-weight: 600;
font-family: 'Zen Maru Gothic', sans-serif;  
	color:#171c61;
}

.program1 span{
    line-height: 2;
    padding: 0 0.5vw 2.5vw;
}
	
.merit__w::after {
    position: absolute;
  	content: "";
    background: url(../images/merit_bg001.svg);
    background-size: 100% auto;
    width: 100%;
    /*bottom: -1000px;*/
    bottom: 0;
    background-repeat: no-repeat;
    height: 0;
	/*height: 1000px;*/

    display: block;
    padding-bottom: 18.5%;

	
	
}         
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
.merit1 {
    width: 100%;
    margin: 0 auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-radius: 10px;
    padding: 1rem 0 0;
    z-index: 1;
    position: relative;
}
.merit2 {
    text-align: center;
    margin: 0 0 18vw 0;
    width: 100%;
}
.merit2 span {
    text-align: center;
    padding: 3vw 8vw;
    font-size: 2rem;
    color: #ffffff;
    letter-spacing: .1rem;
    font-weight: 700;
    border-radius: 100px;
    background: #c9401a;
}  
.merit2h h2{
width: 100%;
position: relative;
font-size: 2.5rem;
color: #473a2c;
display: inline-block;
letter-spacing: .2rem;
line-height: 1;
font-weight: 700;
font-family: YakuHanJP, "Zen Maru Gothic", sans-serif;
text-align: center
}

.merit2h h2 span{
}

/*
.merit2h h2::before{
content: "";
background: url("../images/logo-s.svg");
display: block;
width: 60px;
height: 60px;
margin: 0 auto 10px;
}*/

.merit2h h2 span::after{
content: "Features";
color: #171c61;
background-image: linear-gradient(to right,#00a1db 0,#171c61 160%);
font-size: 1.4rem;
background-clip: text;
-webkit-text-fill-color: transparent;
text-transform: uppercase;
display: block;
margin: 15px auto 0;
line-height: 1;
letter-spacing: .1rem;
font-weight: 700;
font-family: YakuHanJP, "Zen Maru Gothic", sans-serif;
}



.merit2h{
width: 100%;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;

}
	
.merit3 {
    width: 100%;
    margin: 0 auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background-position: right 3vw top 4vw;
}   
.merit4 {
    width: 100%;
    padding: 0 0 10vw 0;
}  
.merit4b {
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    /* background: url(../images/meritbg_l.png) no-repeat; */
    background-position: right 0 top 4vw;
}  
.merit4_02 {
    width: 100%;
    padding: 0;
}  
.merit4b_02 {
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    /* background: url(../images/meritbg_l.png) no-repeat; */
    background-position: right 0 top 4vw;
}  
.merit5 {
    width: 100%;
    margin: 0 auto 5vw;
}  
.merit5 img {
    width: 100%;
    border-radius: 10px;
}   
.merit6 {
    width: 100%;
    padding: 4vw;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 10px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    position: relative;
    border: solid 1px #00a1db
} 
.merit6 .no {
    position: absolute;
    top: 3vw;
    left: 3vw;
    color: #00a1db;
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1;
}    
.merit7 {
    color: #00a1db;
    font-size: 1.7rem;
    line-height: 1.6;
    letter-spacing: .1rem;
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 0 0 0 5vw;
    font-weight: 600;
    font-family: 'Zen Maru Gothic', sans-serif;
}   
.merit7 span {
    display: inline;
    background: linear-gradient(transparent 70%, #e3e3e3 70%);
}  
.merit8 {
    font-size: 1.3rem;
    padding: 0 3vw;
    margin: 3vw 0 0 0;
}
.merit32 {
    width: 100%;
    margin: 0 auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background-position: left 3vw top 4vw;
}   
.merit42 {
    width: 100%;
    padding: 0 0 10vw 0;
}
.merit42b {
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    /* background: url(../images/meritbg_r.png) no-repeat; */
    justify-content: space-between;
}    
.merit52 {
    width: 100%;
    margin: 0 auto 5vw;
}    
.merit52 img {
    width: 100%;
    border-radius: 10px;
}    
.merit62 {
   width: 100%;
    padding: 4vw;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 10px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    position: relative;
    border: solid 1px #7bcbdf;
}  
.merit62 .no {
   position: absolute;
    top: 3vw;
    left: 3vw;
    color: #00a1db;
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1;
}    
.merit72 {
    color: #00a1db;
    font-size: 1.7rem;
    line-height: 1.4;
    letter-spacing: .1rem;
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 0 0 0 5vw;
    font-weight: 600;
    font-family: 'Zen Maru Gothic', sans-serif;
}   
.merit72 span {
    display: inline;
    background: linear-gradient(transparent 70%, #e3e3e3 70%);
} 
.top_point_deco_1 {
    width: 80%;
	margin: 0 auto 50px;
    /*height: 460px;*/

}       
.top_point_deco_2 {
    /*width: 160px;
    height: 160px;
    left: 9%;
    top: 70%;*/
}   
/*.top_point_deco {
    position: absolute;
    z-index: 2;
}    */
	
	
	
	
	
/*当院の特長*/

/*患者様*/
.patient__ww {
    width: 100%;
}
.patient__w {
    width: 100%;
    margin: 0 auto;
    position: relative;
    background: #EAF8FB;
}  
	
	
.patient_h h2{
width: 100%;
position: relative;
font-size: 2.5rem;
color: #473a2c;
display: inline-block;
letter-spacing: .2rem;
line-height: 1;
font-weight: 700;
font-family: YakuHanJP, "Zen Maru Gothic", sans-serif;
text-align: center
}

.patient_h h2 span{
}

.patient_h h2 span::after{
content: "Patient";
color: #171c61;
background-image: linear-gradient(to right,#00a1db 0,#171c61 160%);
font-size: 1.4rem;
background-clip: text;
-webkit-text-fill-color: transparent;
text-transform: uppercase;
display: block;
margin: 15px auto 0;
line-height: 1;
letter-spacing: .1rem;
font-weight: 700;
font-family: YakuHanJP, "Zen Maru Gothic", sans-serif;
}



.patient_h{
width: 100%;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;

}
	
.patient3 {
    width: 100%;
    margin: 0 auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background-position: right 3vw top 4vw;
}   
.patient4 {
    width: 100%;
    padding: 0 0 10vw 0;
}  
	

/*患者様*/
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
.topreservation__w {   
width: 100%;
padding: 7rem 0 8rem;
background: #1488CC;
background: -webkit-linear-gradient(to right, #2B32B2, #1488CC);
background: linear-gradient(to right, #2B32B2, #1488CC);
}

.topreservation1{
text-align: center;
margin: 0 0 5rem 0;
width: 100%;
}

.topreservation1 h2 span::after{
content: "reservation";
display: block;
letter-spacing: .2rem;
text-align: center;
font-family: 'Tangerine', cursive;
font-size: 4rem;
color: #96c8e7;
font-weight: 400;
}

.topreservation1 h2 span{
display: block;
position: relative;
}

.topreservation1 h2 {
display: block;
text-align: center;
font-size: 2.5rem;
letter-spacing: .3rem;
color: #ffffff;
line-height: 1;
font-weight: 500;
/*font-family: 'Roboto', YakuHanJP_Narrow, 'Zen Old Mincho', Meiryo, sans-serif;*/
}



.topreservation2 {
width: 100%;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}

.topreservation3 {
width: 100%;
color: #fff;
font-size: 1.4rem;
text-align: center;
letter-spacing: .1rem;
font-weight: 400;
margin-bottom: 5rem;
}

.topreservation4 {
width: 100%;
text-align: center;
}

.topreservation4 a {
display: inline-block;
/*background: linear-gradient(to right, #f399b5, #ec497f);*/
background: linear-gradient(135deg, #f993b5 0%, #ec497f 100%);
padding: 2.5rem 3rem;
text-align: center;
color: #fff;
font-size: 1.5rem;
font-weight: 400;
letter-spacing: .2rem;
border-radius: 10px;
box-shadow: 5px 5px 5px #3c42a7;
}

.topreservation4 a span {
}

.topreservation4 a span::before {
display: inline-block;
content: "";
background: url("../images/ic_link.svg");
width: 1.8rem;
height: 1.8rem;
margin-right: 1rem;
vertical-align: middle;
}
.topreservation5 {
background: linear-gradient(transparent 85%, rgb(0 209 255 / 50%) 15%);
display: inline-block;
}






/* medical */
.topsubject__w{
width: 100%;
/*background: url("../images/topsubjectbg.jpg") center bottom;*/
background-size: cover;
padding: 0 2vw;
}

.topsubject1{
text-align: center;
margin: 0 0 5vw 0;
}
.topsubject1 h2{
text-align: center;
width: 100%;
margin: 0 0 7vw 0;
/*font-family: "Zen Maru Gothic";*/
}

.topsubject1 h2 span{
display: inline-block;
font-size: 1.8rem;
letter-spacing: 0.2rem;
text-align: center;
margin: 0 auto;
font-weight: 700;
}


.topsubject1 h2::before{
content: "";
background: url(../images/logo-s.svg) no-repeat;
display: block;
width: 6vw;
height: 6vw;
margin: 0 auto 1vw;
background-size: cover;
}

.topsubject1 h2 span::after{
content: "medical";
display: block;
font-weight: 400;
font-size: 1.2rem;
letter-spacing: .1rem;
color: #4099d5;
}

	
.topmedical__w{
  width: 100%;
  padding: 8rem 0 7rem;
  background: url("../images/topmedicalbg.jpg");
  background-size: cover;
  position: relative;
  z-index: 1;
}

.topmedical_bg {
    content:"";
    display:block;
    width: 90vw;
    height: 440px;
    background-image:url(../images/ilst05.svg);
    background-repeat:no-repeat;
    background-size: contain;
    background-position:right bottom;
    position:absolute;
    bottom:0;
    right: 1vw;
    z-index:-1;
}

.topmedical_ilst {
    background-image:url(../images/ilst06.svg);
    background-repeat:no-repeat;
    background-size:contain;
    background-position:top;
    width:280px;
    height: 280px;
    position:absolute;
    top:34px;
    left:30px;
}

.topmedical1{
text-align: center;
margin: 0 0 6rem 0;
}

.topmedical1 h2{
  display: block;
  text-align: center;
  font-size: 2rem;
  letter-spacing: .3rem;
  color: #fff;
  line-height: 1;
  font-weight: 500;
}

.topmedical1 h2 span{
    display: block;
    position: relative;
}

.topmedical1 h2 span::after{
  content: "medical";
  display: block;
  letter-spacing: .2rem;
  text-align: center;
  font-family: 'Tangerine', cursive;
  font-size: 3rem;
  color: #bbedff;
  font-weight: 400;
}

/*.topmedical1 h2 span::after{
    content: "";
    background: url(../images/ic_medical.svg);
    width: 70px;
    height: 70px;
    display: block;
    top: -40px;
    left: -40px;
    position: absolute;
}*/

.topmedical2{
width: 100%;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
padding: 0 1rem;
}
.submedical2{
width: 100%;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
padding: 0 1rem;
}

/*追加*/
.topsubject_box {
    width: 48%;
    text-align: center;
    border-radius: 20px;
    margin: 0 0 2rem 0;
}

.topsubject_box a::before {
    content: "";
    position: absolute;
    display: block;
    background: url(../images/ic_arrow2.svg) no-repeat;
    width: 1.5rem;
    height: 1.5rem;
    right: 1rem;
    top: 2.5rem;
}


.topsubject_box a{
    width: 100%;
    padding: 2rem 1rem;
    display: flex;
    height: 100%;
    border-radius: 8px;
    background: #ffffff;
    transition: all .3s;
    color: #105eb1;
    position: relative;
    box-shadow: 3px 3px 5px #cfc5b1;
	background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    font-size: 1.3rem;
    line-height: 1.4;
    letter-spacing: .0rem;
    font-weight: 700;
}

.topsubject_box a span::before{
background: url("../images/ic_topmedical.svg");
width: 1.6rem;
height: 1.6rem;
display: inline-block;
top: 2.9rem;
left: 1rem;
position: absolute;
}

.topsubject_box div.icon {
    width: 80px;
    height: 80px;
    display: block;
    margin: 0 auto 20px;
}


.topsubject_t {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.topsubject_box a span {

}

.topmedical3{
width: 19%;
background-size: cover;
box-shadow: 5px 5px 5px #F7F6F4;
border-radius: 30px 10px 30px 10px;
opacity: 1;
padding: 0 0 10px 0;
}

.topmedical4{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
position: relative;
margin: 0 0 60px 0;
}

.topmedical4 a{
display: block;
width: 100%;
border-radius: 2px 2px 2px 2px;
}


.topmedical5{
position: absolute;
z-index: 2;
width: 100%;
left: 50%;
bottom: -50px;
transform: translateX(-50%);
}

.topmedical5b{
  display: block;
  width: 92%;
  height: 100%;
  background: linear-gradient(0deg, white, rgb(255 255 255 / 85%));
  text-align: center;
  font-size: 2.2rem;
  font-weight: 500;
  padding: 30px 0;
  font-family: 'Zen Maru Gothic', serif;
  position: relative;
  box-shadow: 2px 2px 1px rgb(106 199 122);
  border-radius: 3px;
  margin: 0 auto;
}

.topmedical5b span{
display: block;
}

.topmedical5b span::before{
content: "";
position: absolute;
display: block;
background: url("../images/ic_arrow3.svg") no-repeat;
width: 15px;
height: 15px;
right: 5px;
bottom: 5px;
}

.topmedical6{
position: relative;
z-index: 1;
}

.topmedical6 img{
  width: 100%;
  border-radius: 10px 40px 10px 40px;
}

.topmedical7{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
position: relative;
}

.topmedical8{
width: 100%;
margin: 0 0 10px 0;
}

.topmedical8 a{
width: 93%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
position: relative;
background: #fff;
margin: 0 auto;
align-items: center;
padding: 5px 5px;
border-radius: 2px 2px 2px 2px;
}

.topmedical9{
width: 20%;
}

.topmedical9 img{
width: 100%;
}

.topmedical10{
width: 75%;
}

.topmedical11{
font-weight: 500;
width: 100%;
font-size: 1.7rem;
text-align: center;
letter-spacing: 0.02rem;
position: relative;
line-height: 1.3;
}

.topmedical11 span{
display: block;
}

/*
.topmedical11 span::after{
position: absolute;
content: "";
background: url("../images/ic_arrow2.svg") no-repeat;
display: block;
width: 1.2rem;
height: 1.2rem;
margin: 0 0 0 9px;
vertical-align: baseline;
right: 2px;
top: 11px;
}
*/

.topmedical12{
width: 100%;
font-size: 1.3rem;
letter-spacing: 0;
line-height: 1.6;
margin: 0 0 12px 0;
}


/* medical */


/*flow*/
.topsubject__w_f{
width: 100%;
background-size: cover;
padding: 0 10px;
}

.topsubject1f{
text-align: left;
display: inline-block;
font-size: 1.4rem;
letter-spacing: 0.2rem;
margin: 0 auto 30px;
}	
.subpage1f{
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
   /* padding: 20px 50px;*/
}




/* news */

.topnews__w{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
background: #ffffff;
	
  padding: 10px 0 60px;
  position: relative;
  z-index: 0
	
	
}
.topnews__w::after {
    position: absolute;
  	content: "";
    background: url(../images/doctor_bg001.svg);
    background-size: 100% auto;
    width: 100%;
    /*bottom: -1000px;
	height: 1000px;*/
    bottom: 0;
    background-repeat: no-repeat;
    height: 0;
    padding-bottom: 18.5%;

} 	

.topnews1{
text-align: center;
    background-size: cover;
    padding: 4rem 0 2rem;
    width: 100%;
}

.topnews2{
text-align: center;
}

.topnews2 h2{
width: 100%;
position: relative;
font-size: 2.5rem;
color: #473a2c;
display: inline-block;
letter-spacing: .2rem;
line-height: 1;
font-weight: 700;
font-family: YakuHanJP, "Zen Maru Gothic", sans-serif;
	
	
}

.topnews2 h2 span{
}

.topnews2 h2 span::after{
content: "NEWS";
color: #171c61;
background-image: linear-gradient(to right,#00a1db 0,#171c61 160%);
font-size: 1.4rem;
background-clip: text;
-webkit-text-fill-color: transparent;
text-transform: uppercase;
display: block;
margin: 15px auto 0;
line-height: 1;
letter-spacing: .1rem;
font-weight: 700;
font-family: YakuHanJP, "Zen Maru Gothic", sans-serif;
	
}


.topnews3{
width: 100%;
}

.topnews4{
width: 100%;
padding: 5vw 5vw;
background: #ffffff;
  z-index: 1;
}

.topnews4 iframe {
width: 100%;
height: 40vh;    
}

.topnews5{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: flex-start;
align-items: center;
margin: 0 0 2vw;
border-bottom: 1px dotted #ccc;
padding: 0 0 3vw 0;
}


.topnews6{
width: 100%;
font-size: 1.2rem;
color: #a4a4a4;
}
.topnews7{
width: 100%;
color: #4b4948;
font-size: 1.4rem;
font-weight: 700;
}

.topnews7 a{
display: block;
}

.topnews7 a span{
}

.topnews7 a span::after{
content: "";
background: url("../images/ic_arrow2.svg") no-repeat;
display: inline-block;
width: 1.4rem;
height: 1.4rem;
margin: 0 0 0 6vw;
vertical-align: baseline;
}

.topnews8{
width: 100%;
color: #4b4948;
text-align: center;
margin: 5vw 0 0 0;
}

.topnews8 a{
display: inline-block;
border: 1px solid #009f88;
border-radius: 200px;
text-align: center;
padding: 1vw 5vw;
background: #fff;
color: #009f88;
font-size: 1.4rem;
}

.topnews8 a span{
}

.topnews8 a span::after{
}


.topnews8{
width: 100%;
color: #4b4948;
font-size: 1.8rem;
text-align: center;
margin: 30px 0 0 0;
}

.topnews9{
width: 100%;
font-size: 1.3rem;
color: #454545;
line-height: 1.4;
}
.newskiji1 {
    margin: 0 auto 4vw;
    border-bottom: 1px solid #cac8bc;
    padding: 0 0 4vw 0;
}
.newskiji2 {
    width: 100%;
    font-size: 1.25rem;
    margin: 0 0 0 0;
    color: #354e71;
}
.newskiji3 {
    width: 100%;
}
.newskiji4 {
    display: inline-block;
    font-size: 1.6rem;
    margin: 0 0 1rem 0;
    color: #00a1db;
	} 

.newskiji5 {
    width: 100%;
    line-height: 1.4;
    font-size: 1.5rem;
}    
/* news */


/* topnavigation */

.topnavigation__w{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
padding: 0 0 0rem;
/*background: url("../images/topsubjectbg03.jpg");*/
background: #faf8f5;
}
.topnavigation__w::after {
    position: absolute;
  	content: "";
    background: url(../images/white_bg_right01.svg);
    background-size: 100% auto;
    width: 100%;
    bottom: 0;
    background-repeat: no-repeat;
    height: 0;
    display: block;
    padding-bottom: -18.5%;
}         

.topnavigation1{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}

	
.topnavigation2{
width: 100%;
text-align: center;
margin: 0 0 50px 0;
}

.topnavigation2 h2{
width: 100%;
position: relative;
font-size: 2.5rem;
color: #473a2c;
display: inline-block;
letter-spacing: .2rem;
line-height: 1;
font-weight: 700;
font-family: YakuHanJP, "Zen Maru Gothic", sans-serif;

}

.topnavigation2 h2 span{
}

/*
.topnavigation2 h2::before{
content: "";
background: url("../images/logo-s.svg");
display: block;
width: 60px;
height: 60px;
margin: 0 auto 10px;
}*/

.topnavigation2 h2 span::after{
content: "Symptom";
color: #171c61;
background-image: linear-gradient(to right,#00a1db 0,#171c61 160%);
font-size: 1.4rem;
background-clip: text;
-webkit-text-fill-color: transparent;
text-transform: uppercase;
display: block;
margin: 15px auto 0;
line-height: 1;
letter-spacing: .1rem;
font-weight: 700;
font-family: YakuHanJP, "Zen Maru Gothic", sans-serif;
}



.topnavigation2{
width: 900px;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;

}
	
	
.topnavigation3{
width: 100%;
font-size: 1.5rem;
padding: 0 3rem;
}

.topnavigation4{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
padding: 0 5%;
}
.topnavigation4b{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
padding: 0 5%;
}

.topnavigation5{
width: 31%;
display: block;
background: #fff;
padding: 3rem 0;
box-shadow: 3px 3px 0 #eaf8fb;
border: 1px solid #b0e5f8;
border-radius: 7px;
}

.topnavigation5 a{
width: 100%;
display: block;
padding: 2rem 0;
}

.topnavigation5 a:hover{
opacity: .5;
transform: translateY(-.7rem);
}
.topnavigation5b{
width: 48%;
display: block;
background: #fff;
padding: 3rem 0;
box-shadow: 3px 3px 0 #eaf8fb;
border: 1px solid #b0e5f8;
border-radius: 7px;
}

.topnavigation5b a{
width: 100%;
display: block;
padding: 2rem 0;
}

.topnavigation5b a:hover{
opacity: .5;
transform: translateY(-.7rem);
}

.topnavigation6{
width: 100%;
text-align: center;
}

.topnavigation6 img{
width: 35%;
}

.topnavigation7{
width: 100%;
font-weight: 500;
font-size: 1.8rem;
font-family: YakuHanJP, "Zen Maru Gothic", sans-serif;

text-align: center;
}

.topnavigation7 span{

}

.topnavigation7a::before{
content: "";
background: url("../images/topmedical1.svg");
width: 4rem;
height: 4rem;
display: block;
margin: 0 auto 1rem;
}

.topnavigation7b::before{
content: "";
background: url("../images/topmedical2.svg");
width: 4rem;
height: 4rem;
display: block;
margin: 0 auto 1rem;
}

.topnavigation7c::before{
content: "";
background: url("../images/topmedical3.svg");
width: 4rem;
height: 4rem;
display: block;
margin: 0 auto 1rem;
}
.topnavigation7d::before{
content: "";
background: url("../images/topmedical4.svg");
width: 4rem;
height: 4rem;
display: block;
margin: 0 auto 1rem;
}
.topnavigation7e::before{
content: "";
background: url("../images/topmedical5.svg");
width: 4rem;
height: 4rem;
display: block;
margin: 0 auto 1rem;
}

.topnavigation8{
width: 100%;
font-size: 1.8rem;
}


/* topnavigation */





.topcovid19__w{
    width: 100%;
    background: #f7f6f4;
    padding: 8vw 0;
}
.infection_w {
    width: 100%;
    margin: 0 auto;
}
.infection0 {
    text-align: center;
    color: #ffffff;
    font-size: 1.5rem;
    letter-spacing: .1rem;
    line-height: 1.5;
    padding: 2vw 0;
    background: #ff6262;
    width: 90%;
    margin: 0 auto 4vw;
}
.infection1 {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}
.infection2 {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.infection3 {
    width: 60%;
    margin: 0 auto 30px;
    position: relative;
}


.infection3 img {
    width: 100%;
}
.infection4 {
    width: 100%;
    font-size: 1.6rem;
    letter-spacing: .1rem;
    line-height: 1.5;
    display: inline-block;
    text-align: center;
    margin: 0 0 2vw;
    border-radius: 15px;
    font-weight: 700;
    color: #41241F;
}
.infection4::first-letter {
    color: #ff6262;
}
.infection5 {
    letter-spacing: .05rem;
    font-size: 1.3rem;
    text-align: justify;
    line-height: 1.7;
        color: #41241F;
        width: 90%;
        margin: 0 auto;
}


    
    
    
    

/* timetable */

.toptimetable__w {
  width: 100%;
  padding: 1rem 0;
  position: relative;
  z-index: 1;
 /* background-color: #eaf8fb;*/
}

.toptimetable__w.yoyaku {
    padding-top: 20px;
}


.toptimetable_ilst {
    width: 100%;
    height: 100%;
    position: absolute;
    top:-20px;
    right:0;
    z-index:-1;
}

.toptimetable1{
text-align: center;
margin: 0 0 5rem 0;
}

.toptimetable1 h2{
  display: block;
  text-align: center;
  font-size: 2rem;
  letter-spacing: .3rem;
  color: #354e71;
  line-height: 1;
  font-weight: 500;
}

.toptimetable1 h2 span{
display: block;
    position: relative;
}

.toptimetable1 h2 span::after{
  content: "timetable";
  display: block;
  letter-spacing: .2rem;
  text-align: center;
  font-family: 'Tangerine', cursive;
  font-size: 3rem;
  color: #00afec;
  font-weight: 400;
}
.toptimetable_t{
margin: 0 auto;
padding: 2vw 2vw;
}
	
.toptimetable_txt{
  width: 100%;
  margin: 10px 0!important;
  text-align: left;
  padding: 1rem 1.2rem;
  line-height: 1.6;
  /*background: #ffffff;*/
	font-size: 1.2rem;
  color: #204354;
}
	
.topinspection1{
text-align: center;
margin: 0 0 5rem 0;
}

.topinspection1 h2{
  display: block;
  text-align: center;
  font-size: 2rem;
  letter-spacing: .3rem;
  color: #354e71;
  line-height: 1;
  font-weight: 500;
}

.topinspection1 h2 span{
display: block;
    position: relative;
}

.topinspection1 h2 span::after{
  content: "inspection";
  display: block;
  letter-spacing: .2rem;
  text-align: center;
  font-family: 'Tangerine', cursive;
  font-size: 3rem;
  color: #00afec;
  font-weight: 400;
}

/*.toptimetable2 h2 span::after{
    content: "";
    background: url("../images/ic_timetable.svg");
    width: 70px;
    height: 70px;
    display: block;
    top: -40px;
    left: -40px;
    position: absolute;
}*/


.toptimetable3{
}

.toptimetable4{
}

.toptimetable4a{
background: url(../images/toptimetable1.png) no-repeat left center;
background-size: 450px 300px;
}

.toptimetable4b{
background: url(../images/toptimetable2.png) no-repeat right center;
background-size: 450px 300px;
}

.toptimetable4c{
background: url(../images/toptimetable3.png) no-repeat left center;
background-size: 450px 300px;
}

.toptimetable4d{
background: url(../images/toptimetable4.png) no-repeat right center;
background-size: 450px 300px;
}

.toptimetable4e{
background: url(../images/toptimetable5.png) no-repeat left center;
background-size: 450px 300px;
}



.toptimetable5{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: flex-start;
align-items: center;
margin: 0 auto;
}

.toptimetable6{
color: #000;
display: block;
text-align: center;
font-size: 1.2rem;
font-weight: 700;
font-family: 'Zen Old Mincho', serif;
margin: 0 0 2rem 0;
width: 100%;
letter-spacing: .05rem;
}


.step {
    position:absolute;
    content:"";
    display:inline-block;
    width:75px;
    height: 75px;
    line-height:75px;
    text-align:center;
    border-radius: 50%;
    border:1px solid #354e71;
    background:#fff;
    font-size:1.4rem;
    top:-40px;
    left:0;
}

.step_info {
    font-size:1.5rem;
    padding: 0 1em 2em 1em;

}

.step_info span {
    font-weight:bold;
}


.toptimetable25-item img {
    display:block;
    width:70%;
    margin:auto;
}

.lacoon {
    width:300px;
    margin: 50px auto 0;
}

.lacoon a {
    display:block;
    width:300px;
}
.lacoon a img {
    border-radius:10px;
}


/* timetable */


/* fujimi */

.topfujimi__w {
  width: 100%;
  padding: 8rem 0;
  position: relative;
  background-color: #fff;
  background-size: 20vw;
}
/* fujimi */






/* corona */

.topcorona__w{
width: 100%;
background: #ff5152;
text-align: center;
padding: 1.7vw 0;

}

.topcorona__w span{
line-height: 1.3;
color: #fff;
font-size: 1.2rem;
display: inline-block;
}
.topcorona__w span::before{
    content: "";
    display: inline-block;
    background: url("../images/ic_shield.svg");
    margin: 0 1.5vw 0 0;
    width: 1.3rem;
    height: 1.3rem;
  vertical-align: middle;
}


/* corona */








/* footer */
footer{
width: 100%;
/*background: url("../images/footerbg.jpg");*/
background:	#eaf8fb;
background-size: cover;
padding: 2rem 0 0;
}

.footer__w{
width: 100%;
display: flex;
flex-wrap: wrap;
align-items: flex-start;
margin: 0 auto;
	position:relative;
}
.footer__w::before {
    position: absolute;
  	content: "";
    background: url(../images/merit_bg001.svg);
    background-size: 100% auto;
    width: 100%;
    /*bottom: -1000px;*/
    top: -4.35%;
    background-repeat: no-repeat;
    height: 0;
	/*height: 1000px;*/

    display: block;
    padding-bottom: 18.5%;
}
.footer__w_access{
width: 100%;
display: flex;
flex-wrap: wrap;
align-items: flex-start;
margin: 0 auto;
	position:relative;
}
.footer__w_access::before {
    position: absolute;
  	content: "";
    background: url(../images/merit_bg001.svg);
    background-size: 100% auto;
    width: 100%;
    /*bottom: -1000px;*/
    top: -6.65%;
    background-repeat: no-repeat;
    height: 0;
	/*height: 1000px;*/

    display: block;
    padding-bottom: 18.5%;
}

.footer__w2{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: flex-start;
}

.footer1{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: center;
}

.footer2{
width: 100%;
text-align: center;
}

.footer2 img{
width: 80%;
}

.footer3{
width: 90%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
margin: 0 auto 3rem;
}

.footer4{
display: inline-block;
font-weight: 500;
font-size: 1.5rem;
letter-spacing: 0.05rem;
background: #f9e440;
color: #000;
text-align: center;
padding: 2px 10px;
margin: 0 0 0 0;
width: 24%;
border-radius: 100px;
}

.footer5{
width: 100%;
text-align: center;
margin: 0 0 30px 0;
}

.footer6{
width: 100%;
font-weight: 700;
font-size: 1.4rem;
letter-spacing: 0.05rem;

}


.footer7{
width: 100%;
}


.footer7 a{
width: 100%;
display: block;
font-size: 4rem;
color: #4c4948;
font-weight: 900;
line-height: 1;
}

.footer7 a span{

}

.footer7 a span::before{
content: "";
background: url("../images/ic_tel.svg");
display: inline-block;
width: 3.2rem;
height: 3.2rem;
margin: 0 10px 0 0;
vertical-align: bottom;
}

.footer8{
width: 100%;
text-align: center;
font-size: 2rem;
margin: 0 0 30px 0;
}

.footer9{
font-size: 1.5rem;
font-weight: 500;
margin: 0 auto;
border-radius: 3px;
width: 500px;
}

.footer10{
display: inline-block;
background: #ffffff;
text-align: center;
padding: 3px 14px;
margin: 0 15px 0 0;
color: #36a34c;
border-radius: 3px;
font-size: 1.4rem;
letter-spacing: 0;
border: 1px solid #36a34c;
width: 10rem;
}

.footer11{
font-size: 1.5rem;
font-weight: 500;
margin: 0 auto 10px;
border-radius: 3px;
width: 500px;
}

.footer12{
display: inline-block;
background: #ffffff;
text-align: center;
padding: 3px 14px;
margin: 0 15px 0 0;
color: #f57b43;
border-radius: 3px;
font-size: 1.4rem;
letter-spacing: 0;
border: 1px solid #f57b43;
width: 10rem;
}

.footer13{
font-size: 1.4rem;
margin: 0 auto;
width: 100%;
text-align: center;
}

.footer14{
margin: 0 auto 30px;
width: 90%;
text-align: center;
}
.footer14 img{
width: 100%;
}

.footer15{
margin: 0 auto;
width: 100%;
text-align: center;
background: #fffdf1;
display: flex;
flex-wrap: wrap;
justify-content: center;
}

.footer16{
margin: 0 40px 0 0;
width: 550px;
text-align: center;
padding: 35px 0;
}
.footer16 img{
width: 100%;
box-shadow: 4px 4px 10px #DCD8BE;
}

.footer16:last-child{
margin: 0 0 0 0;
}



.footer17{
width: 100%;
margin: 0 0 20px 0;
}

.footer18{
width: 100%;
text-align: center;
font-size: 2.5rem;
font-weight: 700;
letter-spacing: .15rem;
color: #006cb8;
margin: 0 0 5px 0;
}

.footer19{
width: 100%;
text-align: center;
margin: 0 0 10px 0;
}

.footer19 a{
width: 100%;
display: block;
font-size: 3.5rem;
color: #333;
font-weight: 900;
line-height: 1;
}

.footer19 a span{

}

.footer19 a span::before{
content: "";
background: url("../images/ic_tel.svg");
display: inline-block;
width: 2.8rem;
height: 2.8rem;
margin: 0 5px 0 0;
vertical-align: middle;
}



.footer20{
width: 100%;
font-size: 1.6rem;
letter-spacing: 0;
text-align: center;
}


.footer21{
width: 100%;
margin: 0 0 20px 0;
}


.footer22{
width: 100%;
text-align: center;
font-size: 1.4rem;
font-weight: 500;
letter-spacing: .02rem;
color: #545454;
margin: 0 0 2px 0;
}

.footer23{
width: 100%;
text-align: center;
margin: 0 0 30px 0;
}

.footer23 a{
width: 100%;
display: block;
font-size: 3.8rem;
color: #333;
font-weight: 900;
line-height: 1;
}

.footer23 a span{

}

.footer23 a span::before{
content: "";
background: url("../images/ic_tel.svg");
display: inline-block;
width: 3.2rem;
height: 3.2rem;
margin: 0 10px 0 0;
vertical-align: middle;
}

.footer24{
width: 94%;
margin: 0 auto;;
background: #fff;
border-radius: 10px;
padding: 2rem;
}

.footer25{
width: 100%;
text-align: center;
}

.footer25 span{
display: inline-block;
font-size: 1.8rem;
font-weight: 700;
letter-spacing: .3rem;
color: #285472;
background: #f2f5f6;
margin: 0 auto;
text-align: center;
padding: 5px 50px;
border-radius: 200px;
}

.footer26{
line-height: 1.9;
font-size: 1.5rem;
width: 100%;

}

.footer27{
width: 100%;
text-align: center;
font-size: 1.4rem;
font-weight: 500;
letter-spacing: .15rem;
color: #111;
}

.footer27 span::before {
}

.footer28{
width: 100%;
}

.footer28 a{
display: block;
font-weight: 500;
font-size: 1.7rem;
text-align: center;
padding: 15px 25px;
border: 2px solid #86c8f8;
border-radius: 5px;
color: #ffffff;
box-shadow: 8px 8px 12px #bceaff;
background: linear-gradient(330deg, rgb(0 108 184) 0%, rgb(80 159 216) 30%, rgb(71 199 210) 100%);
width: 90%;
margin: 0 auto;
}

.footer28 a span::before {
content: "→";
display: inline-block;
margin: 0 7px 0 0;
}

.footer29{
width: 100%;
}

.footer29 a{
width: 100%;
display: block;
font-size: 2.8rem;
font-weight: 700;
color: #2f2f2f;
font-family: 'Asap', sans-serif;
line-height: 1;
text-align: center;
}

.footer29 a span::before {
content: "";
background: url("../images/ic_tel.svg");
display: inline-block;
width: 2rem;
height: 2rem;
margin: 0 .5rem 0 0;
vertical-align: middle;
}


.footer30{
width: 100%;
display: flex;
justify-content: space-between;
flex-wrap: wrap;
background: #fff;
border-radius: 10px;
padding: 25px 40px;
box-shadow: 3px 3px 8px #d0f5f8;
margin: 35px 0;
align-items: flex-end;
}

.footer31{
width: 100%;
padding: 1.5rem 0;
}

.footer32{
width: 100%;
}

.footer32 span{
display: inline-block;
font-size: 1.4rem;
font-weight: 700;
letter-spacing: .3rem;
background: #f7f7f7;
margin: 0 auto;
text-align: center;
padding: .3rem 2rem;
border-radius: 200px;
}

.footer33{
width: 100%;
font-weight: 500;
font-size: 1.4rem;
padding: 0 0 0 2rem;
}


.footer34{
width: 100%;
padding: 0 0 0 2rem;
}

.footer34 span{
display: inline-block;
font-size: 1.4rem;
}

.footer35{
width: 57%;
}

.footer36{
width: 100%;
}

.footer36 img{
width: 100%;
border: 2px solid #006cb8;
border-radius: 10px;
background: #fff;
padding: 15px 20px 22px 10px;
}

.footer37{
width: 100%;
text-align: center;

}

.footer37 span{
    display: inline-block;
    text-align: center;
    background: #ffffff;
    color: #ed7676;
    border: 1px solid #ed7676;
    padding: .4rem .7rem;
    font-size: 1.2rem;
    line-height: 1;
    font-weight: 700;
    letter-spacing: .15rem;
}

.footer38{
width: 100%;
font-size: 1.2rem;
line-height: 1.4;
text-align: center
}









.footerbnr__w{
width: 90%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
background: #fff;
margin: 5vw auto 0;
}

.footerbnr__w a{
width: 100%;
display: block;}

.footerbnr__w a img{
width: 100%;
border: 1px solid #009f59;
}

.footerbnr1{
width: 32%;
text-align: center;
margin: 0 0 3vw 0;
}

.footerbnr1 a img{
width: 100%;
border: 1px dotted #dbdbdb;
box-shadow: 2px 2px 2px rgb(241 241 241 / 70%);
border-radius: 5px;
}



.sitemap__w{
width: 100%;
background: #faf8f5;
display: flex;
flex-wrap: wrap;
justify-content: flex-start;
padding: 5vw 7vw;
text-align: center;
}

.sitemap1{
line-height: 2.7;
letter-spacing: .05rem;
text-align: left;
margin: 0 auto;
width: 100%;
}


.sitemap2{

}

.sitemap2 a{
font-weight: 500;
font-size: 1.5rem;
}

.sitemap3{
font-size: 1.2rem;
padding: 0 0 0 3vw;
}

.sitemap3 a{
display: block;
width: 100%;
}

.googlemaps__w{
width: 100%;
text-align: center;
}

.googlemaps__w iframe{
width: 100%;
height: 40vh;
margin: 0 auto;
}


.toptimetable7{
width: 100%;
padding: 0 2rem;
}

table.toptimetable8{
    width: 100%;
    background: #fff;
    margin: 0 auto;
    border: 1px solid #cfcfcf;
}

table.toptimetable8 th{
    background: #f7f7f7;
    text-align: center;
    font-weight: 500;
    font-size: 1.2rem;
    padding: 2rem 0;
    line-height: 1;
    width: 10%;
    color: #314e70;
    letter-spacing: .05rem;
        border: 1px solid #cfcfcf;
}

table.toptimetable8 th:first-child{
width: 30%;
}

table.toptimetable8 td{
    background: #fdfdfd;
    text-align: center;
    font-weight: 500;
    font-size: 1.2rem;
    padding: 1.5rem 0;
    line-height: 1;
    width: 10%;
    color: #F993B5;
    letter-spacing: 0.05rem;
    border: 1px solid #cfcfcf;
    vertical-align: middle;
}

table.toptimetable8 td:first-child{
    width: 30%;
    color: #314e70;
    background: #f7f7f7;
}

table.toptimetable8 tr{
}

.toptimetable9{
width: 570px;
margin: 0 auto;
text-align: right;
padding: 0 15px 0 0;
font-size: 1.8rem;
}

table.toptimetable8 td.toptimetable10a{
color: #fff;
text-align: center;
font-size: 1.8rem;
font-family: 'Zen Maru Gothic', serif;
letter-spacing: .35rem;
padding: 10px 0;
background: linear-gradient(90deg, #ed6d00, #ed6d00);
line-height: 1;
font-weight: 500;
}

table.toptimetable8 td.toptimetable10b{
color: #fff;
text-align: center;
font-size: 1.8rem;
font-family: 'Zen Maru Gothic', serif;
letter-spacing: .15rem;
padding: 10px 0;
background: linear-gradient(90deg, #01aee4, #01aee4);
line-height: 1;
font-weight: 500;
}

.toptimetable11{
font-size: 1.3rem;
letter-spacing: -.05rem;
font-weight: 700;
}

.toptimetable12{
width: 100%;

padding: 0 3rem;
}

.toptimetable12 > .closed{
    display: inline-block;
    color: #F46464;
    width: 680px;
    margin: 0 auto 10px;
    text-align: left;    
}
.toptimetable12 > .repletion{
width: 680px;
margin: 0 auto;
text-align: left;
}

.repletionline {
    background: linear-gradient(transparent 85%, rgb(254 255 183) 15%);
    display: inline-block;
    }





.toptimetable12_f{
text-align: center;
width: 100%;
margin: 0 auto;
}

.toptimetable12_f > .closed{
font-size: 1.5rem;
color: #F46464;
width: 100%;
margin: 0 auto;
text-align: left;    
}
.toptimetable12_f > .repletion{
width: 100%;
margin: 0 auto 2rem;
text-align: left;
}    
.toptimetable13{
width: 100%;
text-align: center;
}

.toptimetable13 span{
display: inline-block;
text-align: center;
padding: 5px 20px;
background: #fff;
font-size: 1.7rem;
color: #1ea189;
border: 2px solid #1ea189;
border-radius: 5px;
}

.toptimetable14{
width: 930px;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin: 0 auto;
}

.toptimetable15{
width: 100%;
text-align: center;
}

.toptimetable15 span{
  display: inline-block;
  text-align: center;
  padding: 8px 30px;
  background: #ffffff;
  font-size: 1.9rem;
  color: #1fa189;
  border: 1px solid #1fa189;
  font-weight: 700;
}

.toptimetable16{
width: 450px;
}

.toptimetable16 a{
  display: inline-block;
  text-align: center;
  background: #fff;
  font-size: 1.6rem;
  color: #1ea189;
  border: 1px solid #1ea189;
  font-weight: 700;
  line-height: 1;
  box-shadow: 4px 4px 10px #ced1d8;
  box-sizing: content-box;
    width: 450px;
}

.toptimetable16 a:hover{
opacity: .7;
}

.toptimetable16 a img{
width: 100%;
}

.toptimetable17{
width: 450px;
}

.toptimetable17 a{
  display: inline-block;
  text-align: center;
  background: #fff;
  font-size: 1.6rem;
  color: #1ea189;
  border: 1px solid #fd6c58;
  font-weight: 700;
  line-height: 1;
  box-shadow: 4px 4px 10px #ced1d8;
  box-sizing: content-box;
  width: 450px;
}

.toptimetable17 a:hover{
opacity: .7;
}

.toptimetable17 a img{
width: 100%;
}




.toptimetable18{
width: 750px;
margin: 0 auto;
}

.toptimetable18 a{
width: 100%;
display: block;
text-align: center;
}


.toptimetable18 a img{
  width: 55%;
  box-shadow: 10px 10px 15px #bfbfbf;
  border-radius: 5px;
}


.toptimetable19{
color: #ccc;
font-weight: 400;
}

.toptimetable20{
color: #000;
font-size: 1.1rem;
}

.toptimetable22{
width: 100%;
padding: 0 2.5rem;
}

.toptimetable23{
font-family: 'Asap', sans-serif;
width: 100%;
padding: 0 2.5rem;
}


/* footer */






/* copyright */


.copyright {
width: 100%;
padding: 2rem 2rem;
background: #171c61;
background-size:cover;
text-align: center;
color: #fff;
font-size: 1.1rem;
font-weight: 400;
line-height: 1.8;
}



/* copyright */







/* sp footer */

.spfooternav__w{
width: 100%;
display: flex !important;
justify-content: space-between;
position: fixed;
bottom: 0;
z-index: 1000;
height: 7rem;

}

.spfooternav1{
  width: calc(100% - 10rem);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background: #ffffff;
  font-weight: 700;
/*border-right: 1px solid #ffffff;*/
	}

.spfooternav1 a{
font-size: 1.8rem;
line-height: 1.5;
color: #004ea2;
display: flex;
align-items: center;
justify-content: center;
width: 100%;
}

.spfooternav1 a span{

}

.spfooternav1 a span::before{
content: "";
background: url("../images/ic_tel.svg") no-repeat;
display: inline-block;
width: 1.7rem;
height: 1.7rem;
vertical-align: middle;
margin-right: .5rem;
}

.spfooternav2{
width: 10rem;
display: flex;
align-items: center;
justify-content: center;
/*background: linear-gradient(to right, #f8a23f 0%, #f76b1c 100% );*/
background: #eff9fb;
border-right: 2px solid #ffffff;
}

.spfooternav2 a{
display: flex;
align-items: center;
justify-content: center;
width: 100%;
font-size: 1.2rem;
color: #004ea2;
letter-spacing: 0.1rem;
}

.spfooternav2 a span::before{
content: "";
background: url("../images/ic_calendar3.svg") no-repeat;
display: block;
width: 2.4rem;
height: 2.4rem;
margin: 0 auto .5rem;
}




.spfooternav2 a span{

}

.spfooternav3{
width: 10rem;
display: flex;
align-items: center;
justify-content: center;
background: #00a1db;
}

.spfooternav3 a{
display: flex;
align-items: center;
justify-content: center;
width: 100%;
font-size: 1.2rem;
color: #fff;
letter-spacing: 0rem;
text-align: center;
letter-spacing: 0.1rem;

}

.spfooternav3 a span{
line-height: 1.2;
}

.spfooternav3 a span::before{
content: "";
background: url(../images/ic_access.svg) no-repeat;
display: block;
width: 2.4rem;
height: 2.4rem;
margin: 0 auto .5rem;
}
	
.spfooternav4{
width: 10rem;
display: flex;
align-items: center;
justify-content: center;
background: #eff9fb;
border-right: 2px solid #ffffff;
	
}

.spfooternav4 a{
display: flex;
align-items: center;
justify-content: center;
width: 100%;
font-size: 1.2rem;
color: #004ea2;
letter-spacing: 0rem;
text-align: center;
letter-spacing: 0.1rem;

}

.spfooternav4 a span{
line-height: 1.2;
}

.spfooternav4 a span::before{
content: "";
background: url(../images/ic_check2.svg) no-repeat;
display: block;
width: 2.0rem;
height: 2.0rem;
margin: 0 auto .5rem;
}
	

.spfooternav5{
font-size: 1.2rem;
color: #fff;
display: flex;
align-items: center;
justify-content: center;
width: 100%;
letter-spacing: 0.1rem;
margin: 0 0 0 0;
line-height: 1;
}


/* sp footer */



/* subnavigation */

.subnavigation__w{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
padding: 3rem 0 0;
background: #faf8f5;
}

.subnavigation1{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin: 0 auto;
}

.subnavigation2{
width: 100%;
text-align: center;
}

.subnavigation2 span{
width: 100%;
position: relative;
display: block;
padding: 4.5rem 0 0 0;
font-size: 2.5rem;
color: #604c3d;
font-weight: 500;
letter-spacing: .3rem;
}

.subnavigation2 span::before{
content: "Medical";
font-size: 1.6rem;
font-family: "Open Sans";
width: 100%;
display: block;    line-height: 1;
color: #78bd1d;
font-weight: 400;
letter-spacing: .3rem;
}

.subnavigation2 span::after{
content: "";
background: url(../images/logo-s.svg);
width: 4rem;
height: 4rem;
display: block;
position: absolute;
top: 0%;
left: 50%;
transform: translateX(-50%);
}

.subnavigation3{
width: 100%;
font-size: 1.5rem;
padding: 0 3rem;
}

.subnavigation4{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
padding: 0 5%;
}

.subnavigation5{
width: 30%;
display: block;
background: #fff;
padding: 2rem 0;
box-shadow: 4px 4px 0 #27a879;
border: 1px solid #27a879;
border-radius: 7px;
}

.subnavigation5 a{
width: 100%;
display: block;
}

.subnavigation5 a:hover{
opacity: .5;
transform: translateY(-.7rem);
}

.subnavigation6{
width: 100%;
text-align: center;
}

.subnavigation6 img{
width: 35%;
}

.subnavigation7{
width: 100%;
font-weight: 500;
font-size: 1.6rem;
font-family: YakuHanJP, "Zen Maru Gothic", sans-serif;

text-align: center;
}

.subnavigation7 span{

}





/* subpage */

.subpagetitle__w{
width: 100%;
background: url("../images/copyrightbg.jpg") right top;
background-size: cover;
padding: 4vw 0;
}

.subpagetitle1{
text-align: center;
margin: 0 auto;
width: 100%;
}

.subpagetitle1 h2{
font-size: 1.8rem;
font-weight: 700;
letter-spacing: .3rem;
color: #fff;
line-height: 1;
}

.subpagetitle1 h2 span{
}

.subpagetitle1 h2 span::after{
display: block;
text-align: center;
font-size: 1.1rem;
letter-spacing: .1rem;
    border-top: 1px dashed #cbecff;width: 15rem;
margin: 1.7vw auto 0;
padding: 1.7vw 0 0 0;
color: #cbecff;
font-weight: 500;
line-height: 1;
}

.subpagetitle1a h2 span::after{
content: "DOCTOR";
}

.subpagetitle1b h2 span::after{
content: "MEDICAL";
}

.subpagetitle1c h2 span::after{
content: "FLOW";
}

.subpagetitle1d h2 span::after{
content: "FACILITY";
}

.subpagetitle1e h2 span::after{
content: "ACCESS";
}

.subpagetitle1f h2 span::after{
content: "RESERVATION";
}


.subpagetitle2{
width: 100%;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}

.subpagetitle3{
width: 90%;
background: #fff;
padding: 2vw;
border-radius: 30px 10px 30px 10px;
margin: 0 auto;
}

.subpagetitle4{
width: 100%;
}

.subpagetitle4 img{
border-radius: 30px 10px 30px 10px;
}

.subpage_nav_w{
width: 100%;
/*background: #d9f2fb;*/
background:url("../images/headerbg02.png");
padding: 10vw 0 10vw;
background-repeat: no-repeat;
    background-size: cover;
}    
.subpage_nav {
width: 95%;
margin: 0 auto;
} 
.subpage__w{
width: 100%;
background: #faf8f5;
padding: 5vw 0 5vw;
color:#314e70;
    position: relative;
	}
.subpage__w::after {
    position: absolute;
	bottom: 0px;
  	content: "";
    background: url(../images/merit_bg001.svg);
    background-size: 100% auto;
    width: 100%;
    background-repeat: no-repeat;
    /*height: 2000px;*/
    display: block;
    padding-bottom: 18.5%;
	z-index: -1;
}         

.subpage1{
width: 95%;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
background: #fff;
padding: 2vw 5vw 6vw;
border-radius: 10px;
background-color: rgba(255, 255, 255, 0.5);
z-index: 1;
}

.subpage2{
width: 100%;
border-bottom: 6px solid #ECECEC;
margin: 0 0 5vw 0;
}


.subpage2 h2{
font-size: 1.8rem;
font-weight: 700;
letter-spacing: .2rem;
line-height: 1.5;
  padding: 24px 0 3vw 0;
  text-align: center;
  color: #354e71;
}
.subpage2 h2:first-letter{
color: #00a1db;
}

.subpage3{
width: 100%;
padding: 0 1vw;
line-height: 1.8;
}

.subpage4{
width: 100%;
}

.subpage4 a{
display: block;
width: 80%;
margin: 0 auto;
background: #ffee9c;
padding: 4vw 0;
text-align: center;
letter-spacing: -.005rem;
color: #643e2f;
box-shadow: 6px 6px 15px #fff2b3;
font-weight: 500;
font-size: 1.4rem;
line-height: 1;
position: relative;
}

.subpage4 a span{
display: block;
width: 100%;
}

.subpage4 a span::after{
content: "";
background: url("../images/ic_arrow1.svg");
display: inline-block;
width: 2.2rem;
height: 2.2rem;
position: absolute;
top: 1.2rem;
right: -1.2rem;
}

.subpage4 a:hover{
transform: translateY(-3px);
opacity: .5;
}

.subpage5{
width: 100%;
position: relative;
padding: 5vw 5vw;
background: #f7fbff;
border: 2px solid #c7e3fc;
border-radius: 10px;
}

.subpage5 ul{
width: 100%;
}

.subpage5 ul li{
width: 100%;
line-height: 1.6;
margin: 0 0 4vw 0;
}

.subpage5 ul li:last-child{
margin: 0 0 0 0;
}

.subpage5 ul li span{
width: 100%;
}

.subpage5 ul li span::before{
content: "";
display: inline-block;
background: url("../images/ic_check.svg");
width: 1.6rem;
height: 1.6rem;
margin: 0 1vw 0 0;
vertical-align: sub;
}

.subpage6{
width: 100%;
padding: 5vw 5vw;
position: relative;
background: #f5f5f5;
border-radius: 10px;
}

.subpage6 ul{
width: 100%;
}

.subpage6 ul li{
width: 100%;
line-height: 2;
margin: 0 0 4vw 0;
}

.subpage6 ul li:last-child{
margin: 0 0 0 0;
}

.subpage6 ul li span{
width: 100%;
}

.subpage6 ul li span::before{
content: "";
display: inline-block;
background: url("../images/ic_check2.svg");
width: 1.6rem;
height: 1.6rem;
margin: 0 1vw 0 0;
vertical-align: sub;
}

.subpage7{
width: 100%;
}

.subpage7 ul{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.subpage7 ul li{
  width: 49%;
  margin: 0 0 4vw 0;
}

.subpage7 ul li:last-child{
margin: 0 0 0 0;
}

.subpage7 ul li a {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    /*background: url(../images/bg02.jpg);*/
	background:#fff;
    padding: 2vw 0;
    text-align: center;
    letter-spacing: -.005rem;
    color: #105eb1;
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 1.4;
    position: relative;
    box-shadow: 3px 3px 5px #195e9e;
    border-radius: 5px;
    flex-grow: 1;
/*    border: solid 1px #90d4ec;*/
}

.subpage7 ul.checkup li a {
    background: url(../images/bg03.jpg) !important;
}

.subpage7 ul li a:hover{
transform: translateY(-4px);
opacity: .8;
box-shadow: 0px 6px 6px #105eb1;
}

.subpage7 ul li a span{
width: 95%;
    margin: 0 auto;
}

.subpage7 ul li span::after {
    content: "";
    background: url("../images/ic_arrow01b.svg");
    display: block;
    width: 1.7rem;
    height: 1.7rem;
    opacity: .9;
    margin: 1vw auto 0;
}

.subpage8{
width: 100%;
margin: 0 0 6vw 0;
}

.subpage8 h3{
font-size: 1.7rem;
letter-spacing: .02rem;
line-height: 1.2;
padding: 1vw 0 1vw 2rem;
position: relative;
font-weight: 700;
}

.subpage8 h3::before{
    border-left: 10px solid #57c2e9;
content: "";
height: 100%;
left: 0;
position: absolute;
top: 0;
}

.subpage9{
width: 80%;
margin: 0 auto;
}

.subpage9 img{
width: 100%;
border-radius: 10px;
}

.subpage10{
width: 100%;
background: #F5F5F5;
position: relative;
padding: 5vw;
border-radius: 0;
margin: 0 auto;
}

.subpage10 ul{
width: 100%;
}

.subpage10 ul li{
width: 100%;
line-height: 2.2;
}

.subpage10 ul li span{
width: 100%;
}

.subpage10 ul li span::before{
content: "";
display: inline-block;
background: url("../images/ic_check3.svg");
width: 1.6rem;
height: 1.6rem;
margin: 0 10px 0 0;
vertical-align: sub;
}

.subpage11{
display: inline-block;
margin: -4.5rem 0 0 0;
background: #47c8af;
color: #fff;
text-align: center;
padding: 1vw 3vw;
border-radius: 3px;
position: absolute;
font-size: 1.5rem;
}

.subpage12{
padding: 2vw 0 0 0;
font-size: 1.4rem;
line-height: 2;
}

.subpage13{
display: inline-block;
margin: -4.5rem 0 0 0;
background: #00afec;
color: #fff;
text-align: center;
padding: 1vw 3vw;
border-radius: 3px;
position: absolute;
font-size: 1.5rem;
}

.subpage14{
display: inline-block;
margin: -4.5rem 0 0 0;
background: #7dadd4;
color: #fff;
text-align: center;
padding: 1vw 3vw;
border-radius: 3px;
position: absolute;
font-size: 1.5rem;
}

.subpage15{
width: 100%;
line-height: 1.8;
}

.subpage16{
width: 100%;
}

.subpage16 span{
line-height: 1.8;
font-size: 1.5rem;
font-family: 'Zen Old Mincho', serif;
font-weight: 700;
display: inline-block;
padding: 1vw 3vw;
letter-spacing: 0;
background: #fff;
border-radius: 100px;
color: #4387bf;
}

.subpage17{
width: 100%;
}

.subpage17 span{
line-height: 1.8;
font-size: 1.4rem;
font-weight: 700;
display: inline-block;
padding: 1vw 3vw;
letter-spacing: .1rem;
    background: #f3f3f3;
    border-radius: 100px;
}


.subpage18 {
width: 100%;
}
.subpage18 h3{
    font-weight: 700;
    font-size: 1.7rem;
}
.subpage18 a {
	text-decoration: underline!important;
    font-weight: 900!important;
	color: #31470;
}
.subpage18 ul{
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}

.subpage18 ul li {
width: 32%;
margin: 0 0 2vw 0;
align-items: stretch;
display: flex;
text-align: center;
}

.subpage18 ul li a {
width: 100%;
font-size: 1.1rem;
line-height: 1.2;
padding: 1vw 1vw 1vw;
color: #18599d;
display: block;
}
.subpage18 ul li dt{
margin: 0 0 1vw 0;
}

.subpage18 ul li dt img {
width: 80%;
border-radius: 10px 3px 10px 3px;
}

.subpage18 ul li dd{
padding: 1vw 0;
font-weight: 500;
letter-spacing: -.05rem;
}



.subpage22{
  width: 100%;
  border: 1px dashed #ffabab;
  background: #fff8f8;
  padding: 3vw 2vw 4vw;
  color: #e93131;
  margin: 0 auto;
}

.subpage23{
margin: 0 0 2vw 0;
font-size: 1.3rem;
}

.subpage24{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}

.subpage25{
width: 49%;
border: 1px solid #70b4e4;
}

.subpage26{
  background: #70b4e4;
  font-size: 1.6rem;
  color: #fff;
  padding: 1vw;
  display: flex;
  align-items: center;
  width: 100%;
  line-height: 1.6;
}

.subpage26 span::before{
  content: "";
  background: url("../images/ic_first1.svg");
  width: 3rem;
  height: 3rem;
  display: inline-block;
  vertical-align: middle;
  margin: 0 1vw 0 0;
}


.subpage27{
padding: 2vw;
font-size: 1.4rem;
font-weight: 700;
line-height: 1.5;
}

.subpage28{
  margin: 0 2vw 2vw 2vw;
  background: #eaf6ff;
  padding: 5px;
  }

.subpage29{
width: 49%;
border: 1px solid #70b4e4;
}

.subpage30{
  background: #0093DF;
  font-size: 1.6rem;
  color: #fff;
  padding: 1vw;
  display: flex;
  align-items: center;
  width: 100%;
  line-height: 1.6;
}

.subpage30 span::before{
  content: "";
  background: url("../images/ic_first2.svg");
  width: 3rem;
  height: 3rem;
  display: inline-block;
  vertical-align: middle;
  margin: 0 1vw 0 0;
}

.subpage31{
padding: 2vw;
font-size: 1.4rem;
font-weight: 700;
line-height: 1.5;
}

.subpage32{
  margin: 0 2vw 2vw 2vw;
  background: #eaf6ff;
  padding: 5px;
}

.subpage33{
  width: 100%;
  padding: 3vw 3vw;
  line-height: 1.6;
  background: #f7f7f7;
  color: #204354;
}
.subpage33 ul{

}

.subpage33 ul li{
margin: 0 0 1rem 0;

}

.subpage33 ul li::before{
  content: "";
  background: url("../images/ic_checkbox.svg");
  width: 1.8rem;
  height: 1.8rem;
  display: inline-block;
  vertical-align: sub;
  margin: 0 1vw 0 0;
}
.subpage33b{
  width: 100%;
  padding: 3vw 3vw;
  line-height: 1.6;
  background: #eaf8fb;
  color: #204354;
}
	
.subpage33w{
  width: 100%;
  padding: 3vw 3vw;
  line-height: 1.6;
  background: #fff;
  color: #204354;
}
.subpage33w{
  width: 100%;
  padding: 3vw 3vw;
  line-height: 1.6;
  background: #fff;
  color: #204354;
}
.subpage33w ul{

}

.subpage33w ul li{
margin: 0 0 1rem 0;

}

.subpage33w ul li::before{
  content: "";
  background: url("../images/ic_checkbox.svg");
  width: 1.8rem;
  height: 1.8rem;
  display: inline-block;
  vertical-align: sub;
  margin: 0 1vw 0 0;
}


.subpage34{
width: 100%;
}

.subpage34 table{
width: 100%;
border: 1px solid #000;

}

.subpage34 table th{
padding: 2rem .5rem;
font-size: 1.3rem;
text-align: center;
border: 1px solid #015a33;
background: #009f59;
color: #fff;
}

.subpage34 table td{
    padding: 2rem .5rem;
    text-align: center;
    font-size: 1.3rem;
    border: 1px solid #015a33;
    background: #faf9f7;
}

.subpage34-1{

}

.subpage34-2{
color: #f9e440 !important;
}

.subpage34-3{

}

.subpage34-4{
text-align: center;
}

.subpage34-5{
    color: #009f59;
    font-weight: 900 !important;
}

.subpage34-6{

}





/* subpage */


/* medical */
.wrap {
  margin: 2em 0;
  padding: 0;
}

.wrap label {
  display: block;
  /*padding : 8px;*/
  font-weight: bold;
  /*background: #999;*/
  cursor: pointer;
text-decoration: underline!important
}
	
.wrap label::before{
  content: "";
  background: url("../images/ic_arrow01b.svg");
  width: 1.6rem;
  height: 1.6rem;
  display: inline-block;
  vertical-align: sub;
  margin: 0 10px 0 0;
}


.wrap input[type="checkbox"] {
  display: none;
}

.wrap .content {
  height: 0;
  padding: 0;
  overflow: hidden;
  margin-bottom: 10px;
  /*border: 1px solid #ccc;*/
}

.switch:checked + .content {
  height: auto;
  padding: 8px;
  background: #fff;
}
	
	
	
.medical_list03{
  width: 100%;
  padding: 15px 20px;
  line-height: 2.4;
  background: #fff;
  color: #204354;
}

.medical_list03 ul{

}

.medical_list03 ul{

}

.medical_list03 ul li::before{
  content: "";
  background: url("../images/ic_arrow01c.svg");
  width: 1.6rem;
  height: 1.6rem;
  display: inline-block;
  vertical-align: sub;
  margin: 0 10px 0 0;
}










/* access */

.access__w{
width: 100%;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}

.access1{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin: 0 0 8vw 0;
}

.access2{
width: 100%;
text-align: center;
margin: 0 0 7vw 0;
}

.access2 img{
width: 70%;
}

.access3{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
text-align: center;
}

.access4{
width: 100%;
font-weight: 700;
font-size: 1.4rem;
letter-spacing: 0.05;
color: #6b3e03;
}

.access5{
width: 100%;
}


.access5 a{
width: 100%;
display: block;
font-size: 3rem;
color: #4b4948;
font-weight: 900;
line-height: 1;
}

.access5 a span{

}

.access5 a span::before{
content: "";
background: url("../images/ic_tel.svg");
display: inline-block;
width: 2.2rem;
height: 2.2rem;
margin: 0 1.5vw 0 0;
vertical-align: bottom;
}

.access6{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}

.access7{
width: 100%;
border-radius: 7px;
}

.access8{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: stretch;
color: #4c4948;
margin: 0 0 1vw 0;
}

.access8:first-child{

}


.access9{
width: 10rem;
text-align: center;
font-size: 1.2rem;
letter-spacing: .025rem;
line-height: 1.5;
background: #f9f8f5;
padding: 5vw 2vw;
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
color: #4c4948;
}

.access10{
width: calc(100% - 12rem);
line-height: 1.5;
font-weight: 500;
font-size: 1.2rem;
letter-spacing: .025rem;
padding: 5vw 0;
display: flex;
flex-wrap: wrap;
align-items: center;
}

.access11{
width: 100%;
}

.access12{
width: 100%;
margin: 0 auto;
}

.access13{
width: 100%;
}

.access14{
width: 100%;
margin: 0 auto 2vw;
}

.access14 iframe{
width: 100%;
border-radius: 20px;
}

.access15{
width: 100%;
padding: 3vw;
background: #f7f7f7;
border-radius: 20px;
}

.access16{
width: 100%;
text-align: center;
}

.access16 img{
width: 100%;
}

.access17{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin: 0 auto 5vw;
}

.access18{
width: 48%;
margin: 0 0 2vw;
}
.access18:last-child{
width: 48%;
margin: 0;
}
.access18 img{
width: 100%;
border-radius: 3px;
margin: 0 0 1vw;    
}
.access18 span {
    padding-left: 1em;
    text-indent: -1em;
    display: inline-block;
    line-height: 1.5;
}


.access19{
width: 100%;
margin: 3vw 0 0;
text-align: center;
}

.access20{
  font-size: 1.5rem;
  text-align: center;
  display: inline-block;
  padding: 1vw 3vw;
  border-radius: 5px;
  color: #1258a3;
  background: #effbfd;
}

.access21{
width: 100%;
font-size: 1.3rem;
font-weight: 700;
margin: 0 0 1vw 0;

}
.access22{
width: 100%;
margin: 0 0 2vw 0;
}

.access22:last-child{
width: 100%;
margin: 0 0 1vw 0;
}


.access_route {
    width: 100%;
    margin: 0 0 2vw 0;
}
.access_route span {
    display: inline-block;
    padding: 0 2vw;
    border: 1px solid #28634c;
    background: #fff;
    color: #28634c;
    border-radius: 3px;
    font-size: 1.5rem;
}
	
.access_map1{
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.access_map2{
  width: 100%;
  margin: 20px auto;
}

.access_map2 img{
}

.access_map3{
width: 430px;
display: flex;
flex-wrap: wrap;
text-align: left;
}
	
	
.googlemaps__access{
    width: 100%;
    background: #fff;
    text-align: center;
    /*padding: 0 1.5rem;*/
}

.googlemaps__access iframe{
width: 100%;
height: 60vh;
border-radius: 10px;
}
.bnr_w{
    width: 90vw;
margin: 0 auto 0;
    padding: 5vw 0;
}
.bnr02a{
width: 100%;
	margin: 10px 0;
}  
.bnr02a img{
width: 100%;
border-radius: 10px;
	}  
.bnr03a{
width: 100%;
	margin: 10px 0;
} 
.bnr03a img{
width: 100%;
border-radius: 10px;}  
	
	
/* access */



/* dooctor */

.doctor1{
width: 100%;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}

.doctor2{
width: 100%;
text-align: center;
margin: 0 0 5vw 0;
}

.doctor2 img{
width: 60%;
border-radius: 10px;
}

.doctor3{
width: 80%;
display: flex;
flex-wrap: wrap;
border: 1px solid #dcdcdc;
padding: 4vw 0;
background: #fff;
justify-content: center;
margin: 0 auto;
border-radius: 5px;
}

.doctor4{
font-size: 1.5rem;
line-height: 1.3;
margin: 0 0 1vw 0;
color: #314e70;
font-weight: 700;
width: 100%;
letter-spacing: .3rem;
text-align: center;
}

.doctor5 {
font-size: 2.8rem;
color: #314e70;
width: 100%;
font-weight: 700;
text-align: center;
}

.doctor6{
font-size: 1.4rem;
text-align: center;
width: 100%;
color: #314e70;
letter-spacing: .1rem;
}

.doctor6{
width: 100%;
margin: 0 0 0 0;
}


.doctor7{

}

.doctor7 h3{
font-size: 1.7rem;
text-align: center;
color: #354e71;
letter-spacing: .2rem;
margin: 0 0 2vw 0;
font-weight: 700;
font-family: 'YuMincho, 'Yu Mincho', serif, YakuHanJP_Narrow, 'Noto Serif JP', serif , "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif';
}

.doctor8{
background: #fff;
/*border-radius: 10px;*/
padding: 5vw 5vw;
width: 90%;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
box-shadow: 3px 3px 0px #cdcdcda8; 
line-height: 2.3;
	}

.doctor9{
    width: 100%;
    margin: 0 auto 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.doctor9:last-child{
  margin: 0 auto 0;
}

.doctor10{
    width: 100%;
  font-weight: 700;
  line-height: 1.2;
  color: #939393;
  font-size: 1.2rem;
}

.doctor11{
    width: 100%;
    padding-left: 1em;
    text-indent: -1em;
}
.doctor11 span {
    width: 10px;
    height: 10px;
    display: inline-block;
}
.doctor11 h3{
    font-size: 1.7rem;
    color: #4c4948;
    letter-spacing: .3rem;
    margin: 0 0 2vw 0;
    font-weight: 700;
    font-family: 'Zen Old Mincho', serif;
    text-align: center;
}

.doctor12{
background: #fff;
border-radius: 10px;
padding: 3vw 5vw;
width: 90%;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}

.doctor13{
width: 100%;
color: #314e70;
font-weight: 400;
}

.doctor14{
width: 100%;
}

.doctor15{
width: 100%;
}

.doctor16{
background: #fff;
border-radius: 10px;
padding: 3vw 5vw;
width: 90%;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
line-height: 2;
}

.doctor17{
width: 100%;
font-size: 1.8rem;
  color: #36a34c;
  font-weight: 500;
  text-align: center;
  margin: 0 0 3vw 0;
  line-height: 1.6;
}

.doctor18{
width: 100%;
font-size: 1.4rem;
}
.doctor20 {
width: 100%;
    display: flex;
    flex-direction: column;

	z-index: 1;
}  
	
.doctor21{    
background: #fff;
    border-radius: 10px;
    padding: 5vw 6.5vw;
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    box-shadow: 3px 3px 0px #cdcdcda8;
	background-color: rgba(255, 255, 255, 0.5);
	z-index: 1;

}

.doctor19,
.doctor22 {
    width: 100%;
    display: block;
}

.doctor22 {
    margin:2vw 0;
}

.doctor23,
.doctor24 {
    width:100%;
}

/* dooctor */






/* about */

.about1{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}

.about2{
width: 48%;
background: #F7F7F7;
/*border-radius: 30px 10px 10px 10px;*/
border-radius: 5px;
margin: 0 0 5vw 0;
}

.about2:nth-child(2n){
margin: 0 0% 5vw 0;
}
.about2 span{
padding: 0 1vw;
}
	
.about3{
width: 100%;
margin: 0 0 2vw 0;
}

.about3 img{
width: 100%;
/*border-radius: 30px 10px 1px 1px;*/
border-radius: 5px 5px 1px 1px;	
}

.about4{
width: 100%;
font-size: 1.3rem;
padding: 0 2vw;

margin: 0 0 2vw 0;
line-height: 1.4;
text-align: center;
}

.about5{
width: 100%;
padding: 0 2vw;
margin: 0 0 3vw 0;
font-size: 1.3rem;
letter-spacing: 0;
line-height: 1.5;
word-break: break-word;
}

/* about */




/* check */
.check1{
width: 100%;
}

table.check2{
width: 100%;
}

.check2 th{
padding: 2vw 2vw;
text-align: center;
background: #f1f1f1;
border: 1px solid #D0D0D0;
font-size: 1.2rem;
}

.check2 th:nth-child(1){
width: 25%
}

.check2 th:nth-child(2){
width: 50%
}

.check2 th:nth-child(3){
width: 25%
}

.check2 td{
padding: 2vw 2vw;
border: 1px solid #D0D0D0;
vertical-align: middle;
background: #FDFDFD;
font-size: 1.2rem;
}

.check2 td:nth-child(1){
text-align: center;
}

.check2 td:nth-child(2){
width: 50%
}

.check2 td:nth-child(3){
text-align: center;
}

/* check */







/* top-seikeigeka */

.service_nav{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}

.service_nav1{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
background: #fafafa;
box-shadow: 8px 8px 5px #f5f5f5;
margin: 0 0 4vw 0;
}
.service_nav2{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
}

.service_nav3{
width: 30%;
text-align: center;
}
.service_nav3 img{
width: 100%;
}
.service_nav4{
width: 70%;
text-align: center;
font-size: 1.4rem;
padding: 2vw 0;
letter-spacing: 0;
font-weight: 500;
color: #162c4c;
}

.service_nav4::after{
content: "";
background: url("../images/ic_arrow2.svg");
width: 1.5rem;
height: 1.5rem;
display: block;
margin: 1vw auto 0;
text-align: center;
}

/* top-seikeigeka */





/*renewal*/

.renewal__w{
width: 100%;
display: flex;
flex-wrap: wrap;
padding: 5vw 0 10vw;
background: #fffdf0;
}

.renewal1{
width: 100%;
display: flex;
flex-wrap: wrap;
margin: 0 auto;
}
.renewal2{
width: 100%;
margin: 3vw 0 3vw 0;
}
.renewal3{
width: 100%;
text-align: center;
font-size: 1.8rem;
margin: 0 0 5vw 0;
font-family: 'Zen Old Mincho', serif;
font-weight: 700;
}

.renewal4{
width: 100%;
text-align: center;
margin: 0 0 3vw 0;
}

.renewal4 img{
width: 60%;
}

.renewal5{
width: 100%;
text-align: center;
font-size: 1.8rem;
font-family: 'Zen Old Mincho', serif;
font-weight: 700;
}

.renewal6{
width: 100%;
text-align: center;
margin: 0 0 12vw 0;
}

.renewal7{
width: 100%;
font-family: 'Zen Old Mincho', serif;
font-size: 2.5rem;
color: #623f2f;
font-weight: 900;
letter-spacing: .5rem;
}

.renewal8{
width: 100%;
font-family: 'Zen Old Mincho', serif;
font-size: 2.5rem;
color: #623f2f;
font-weight: 900;
}

.renewal9{
width: 90%;
text-align: center;
padding: 3vw;
border: 1px solid #38a34c;
margin: 0 auto;
    background: #ffffff;
    color: #42372e;
}

.renewal10{
width: 100%;
margin: -7vw 0 3vw 0;
}

.renewal10 span{
display: inline-block;
background: #38a34c;
padding: 1vw 4vw;
text-align: center;
color: #fff;
font-size: 1.5rem;
}

.renewal11{
width: 100%;
font-size: 1.6rem;
font-weight: 700;
}

.renewal12{
width: 100%;
font-size: 1.6rem;
margin: 0 0 2vw 0;
font-weight: 700;

}

.renewal13{
width: 100%;
font-size: 1.2rem;
line-height: 1.4;
text-align: left;
}

/*renewal*/



/*sns*/
.sns__w{
  position: absolute;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 20vw;
  z-index: 100;
  top: 15px;
  right: calc(50px + 5vw);
  align-items: center;
}

.sns1{
  width: 32%;
  padding: 1vw 1vw;
  display: block;
}

.sns1:hover{
transform: translateY(-3px);
color: #000;
}

.sns2{
width: 100%;
margin: 0 auto;
}

.sns2 img{
width: 100%;
}

.sns3{
display: none;
}

/*sns*/





/*topdoctor*/

.topdoctor__w {
    width: 100%;
    background: #f4fafe;
    padding: 0 0;
    position: relative;
    z-index: 1;
}

.topdoctor_bg {
    background-image:url(../images/ilst07.svg);
    background-repeat:no-repeat;
    background-size:contain;
    background-position:bottom;
    width: 180px;
    height: 180px;
    position:absolute;
    top:-80px;
    z-index:2;
}

.topdoctor_ilst {
    background-image:url(../images/ilst06.svg);
    background-repeat:no-repeat;
    background-size:contain;
    background-position:top;
width: 240px;
    height: 240px;
    position: absolute;
    bottom: 0;
    right: 30px;
    z-index: -1;
    top: 0;
    margin: auto;
}

.topdoctor_ilst2 {
    background-image:url(../images/ilst09.svg);
    background-repeat:no-repeat;
    background-size:contain;
    background-position:bottom;
    width: 100%;
    height: 100%;
    position:absolute;
    bottom:0px;
    left:0;
    z-index:2;
}

.topdoctor1{
text-align: center;
margin: 0 0 90px 0;
}

.topdoctor1 h2{
font-size: 2.5rem;
font-weight: 400;
letter-spacing: .5rem;
color: #ffffff;
background: linear-gradient(45deg, #4dcb64, #27bb77);
width: 500px;
margin: 0 auto;
box-shadow: 15px 15px 0px rgb(66 198 106 / 20%);
text-align: right;
padding: 18px 22px;
}

.topdoctor1 h2 span{
display: block;
position: relative;
}

.topdoctor1 h2 span::before{
content: "GREETING";
display: block;
text-align: right;
font-size: 4.5rem;
letter-spacing: .6rem;
color: #fff;
font-weight: 400;
line-height: 1;

margin: 0 0 3px 0;
}

.topdoctor1 h2 span::after{
content: "";
background: url("../images/ic_nav1.svg");
width: 70px;
height: 70px;
display: block;
top: -40px;
left: -40px;
position: absolute;
filter: drop-shadow(4px 4px 3px #469C57);
}


.topdoctor2{
width: 900px;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
background: #fdfdfb;
box-shadow: 15px 15px 0px rgb(186 238 200);
}

.topdoctor3{
width: 100%;
margin: 0 0 35px 0;
}

.topdoctor3 img{
width: 100%;
}

.topdoctor4{
width: 100%;
font-size: 3.3rem;

margin: 0 0 10px 0;
text-align: center;
color: #36a34b;
font-weight: 700;
letter-spacing: -0.1rem;
transform: scaleY(1.05);
}

.topdoctor5{
width: 100%;
font-size: 1.8rem;
padding: 20px 80px 30px;
line-height: 1.7;
}

.topdoctor6{
width: 100%;
font-size: 2.3rem;
text-align: right;
padding: 0 40px 10px 0;
font-family: 'Zen Old Mincho';
font-weight: 700;
}

.topdoctor7{
width: 100%;
font-size: 1.5rem;
text-align: right;
padding: 0 40px 40px 0;
}



/*TOPページ院長挨拶*/


.topdoctor__wi {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: self-start;
    background: url(../images/topdoctorbg1.png) no-repeat left top, url(../images/topdoctorbg2.png) no-repeat right bottom;
    background-size: 100px;
    padding: 3rem 2rem 10rem;
    
}
.topdoctor_i {
    width: 360px;
    margin-top: 40px;
}

.topdoctor_img {
    text-align:center;
}

.topdoctor_img img {
    width: 67%;
    border-radius: 5px;
    margin: 0 0 20px;
}   
.topdoctor_logo{
    width: 50%;
    margin: 0 auto;
    padding: 0 0 20px;
}   
.topdoctor_logo img{
    width: 100%;
}   
.topdoctor_t {
    width: 550px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.topdoctor_t1 {
    font-size: 2.1rem;
    font-weight: 700;
    letter-spacing: .1rem;
    line-height: 1.8;
    transform: scaleY(1.05);
    position: relative;
    padding: 4rem 3rem;
    width: 100%;
    text-align: center;
}


.topdoctor_t2 {
line-height: 2;
padding: 1rem 3rem;
    width: 100%;
font-size: 1.5rem;
}

.topdoctor_t3 {
    font-size: 2.1rem;
    text-align: center;
    /*letter-spacing: .25rem;
    text-indent:.25rem;*/
    color: #363636;
    font-weight: 700;
    width: 100%;
    margin: 0 0 3rem;
}

.topdoctor_t3 span {
    font-size: 1.6rem;
    text-align: center;
    /*letter-spacing: .25rem;
    text-indent:.25rem;*/
    color: #363636;
    font-weight: 700;
    width: 100%;
    margin: 0 0 5px; /* 余白を調整 */
    display: block;
}

.topdoctor_t3 ruby {
    margin-top: 0; /* 上方向の余白を削除 */
    display: block;
    text-indent:.25rem;
}

.topdoctor_btn {
    text-align: center;
    width: 100%;
}
.topdoctor_btn a {
    display: inline-block;
    border-radius: 5px;
    background: #7474BF;
    background: -webkit-linear-gradient(to right, #348AC7, #7474BF);
    background: linear-gradient(to right, #348AC7, #7474BF);
    box-shadow: 10px 10px 20px #b6d7ff;
    color: #fff;
    text-align: center;
    padding: 1.5rem 5rem;
    transition: .6s;
    position: relative;
    font-size: 1.5rem;
    margin-left: 3px;
    max-width: 95vw;
}
.topdoctor_btn span::after {
    content: "";
    background: url(../images/arrow-white.svg);
    width: 1.8rem;
    height: 1.8rem;
    position: absolute;
    right: 1.5rem;
    font-size: 1rem !important;
    top: 1.8rem;
    color: #aedce0;
}
    



/*toppcr*/

.toppcr__w{
width: 100%;
padding: 4vw 0;
background: url("../images/toppcrbg.jpg");
background-size: cover;
}

.toppcr1{
width: 92%;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
background: rgba(255,255,255,.80);
padding: 5vw 5vw 10vw;
}

.toppcr2{
width: 100%;
text-align: center;
}

.toppcr2 h2{
font-size: 2rem;
font-weight: 900;
margin: 0 0 3vw 0;
color: #36a34b;
letter-spacing: 0.5rem;
transform: scaleY(1.05);
line-height: 1.4;
}

.toppcr3{
width: 100%;
text-align: center;
margin: 0 0 3vw 0;
}

.toppcr3 span{
display: inline-block;
text-align: center;
font-size: 1.5rem;
font-weight: 500;
padding: 2vw 2vw;
background: #f7f7f7;
color: #fd6da3;
border-radius: 2px;

width: 100%;
line-height: 1.4;
}

.toppcr4{
width: 100%;
margin: 0 auto 5vw;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}

.toppcr5{
width: 100%;

text-align: center;
line-height: 1.7;
}

.toppcr5b{
width: 100%;
margin: 3vw 0 5vw 0;
display: flex;
flex-wrap: wrap;
justify-content: center;
}

.toppcr5b span{
display: inline-block;
text-align: center;
font-size: 1.2rem;
padding: 1vw 2vw;
background: #1AAFC9;
color: #ffffff;
border-radius: 200px;
font-family: 'Zen Kaku Gothic New', sans-serif;
margin: 0 1vw 0 0;
}

.toppcr6{
width: 100%;
background: #cfeeef;
text-align: center;
}

.toppcr6 img{
width: 60%;
}


.toppcr7{
width: 100%;
margin: 0 auto 5vw;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: baseline;
}

.toppcr8{
width: 100%;
margin: 0 0 3vw 0;
display: flex;
flex-wrap: wrap;
justify-content: center;
}

.toppcr8 span{
display: block;
font-size: 1.4rem;
padding: 2vw 2vw;
color: #314e70;
border-radius: 2px;
font-family: YakuHanJP, 'Zen Kaku Gothic New', sans-serif;
margin: 0 3vw 0 0;
border-bottom: 5px solid #0b891a;
font-weight: 700;
letter-spacing: 0;
width: 100%;
line-height: 1.4;
}

.toppcr9{
width: 100%;
text-align: center;
}

.toppcr9 span{
display: inline-block;
text-align: center;
font-size: 2rem;
font-weight: 700;
padding: 8px 15px;
background: #0b891a;
color: #fff;
border-radius: 2px;
font-family: YakuHanJP, 'Zen Maru Gothic', sans-serif;
margin: 0 12px 0 0;
border: 1px solid #0b891a;
}



.toppcr9 span > a,
.toppcr12 span > a{
color:#ffffff;
}

.toppcr10{
width: 900px;
margin: 0 auto 7vw;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: baseline;
}

.toppcr11{
width: 100%;
margin: 0 0 3vw 0;
display: flex;
flex-wrap: wrap;
justify-content: center;
}

.toppcr11 span{
display: block;
font-size: 1.4rem;
padding: 2vw 2vw;
color: #314e70;
border-radius: 2px;
font-family: YakuHanJP, 'Zen Kaku Gothic New', sans-serif;
margin: 0 3vw 0 0;
border-bottom: 5px solid #2bb73c;
font-weight: 700;
letter-spacing: 0;
width: 100%;
line-height: 1.4;
}

.toppcr12{
width: 100%;
text-align: center;
}

.toppcr12 span{
display: inline-block;
text-align: center;
font-size: 2rem;
font-weight: 700;
padding: 8px 15px;
background: #2bb73c;
color: #fff;
border-radius: 2px;
font-family: YakuHanJP, 'Zen Maru Gothic', sans-serif;
margin: 0 12px 0 0;
border: 1px solid #2bb73c;
}

.toppcr13{
width: 100%;
text-align: center;
margin: 0 0 5vw 0;
font-size: 1.2rem;
}

.toppcr14{
width: 100%;
text-align: center;
}

.toppcr14 a{
display: inline-block;
background: #fff;
text-align: center;
padding: 3vw 7vw;
color: #2bb73c;
font-weight: 700;
font-size: 1.3rem;
letter-spacing: -.06rem;
box-shadow: 15px 15px 15px #bfdae7;
border-radius: 5px;
}

.toppcr14 a span{
}

.toppcr14 a span::before{
content:"";
background: url("../images/ic_arrow2.svg");
width: 1.4rem;
height: 1.4rem;
display: inline-block;
margin: 0 1vw 0 0;
vertical-align: middle;
}

.toppcr15{
font-size: 1.5rem;
display: inline;
}

.toppcr16{
font-size: 1.3rem;
display: block;
letter-spacing: .05rem;
font-weight: 500;
}


.toppcr17{
width: 92%;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
background: rgba(255,255,255,.80);
padding: 5vw 5vw 10vw;
}

.toppcr18{
width: 100%;
text-align: center;
}

.toppcr18 h2{
font-size: 2rem;
font-weight: 900;
margin: 0 0 3vw 0;
color: #36a34b;
letter-spacing: 0.2rem;
transform: scaleY(1.05);
line-height: 1.4;
}

.toppcr19{
font-size: 1.3rem;
width: 100%;
margin: 0 0 5vw 0;
line-height: 2;
}

.toppcr20{
width: 100%;
margin: 0 auto 5vw;
display: flex;
flex-wrap: wrap;
background: rgba(255,255,255,.50);
padding: 4vw 4vw;
}

.toppcr21{
margin: 0 0 3vw 0;
font-size: 1.3rem;
}

.toppcr21:last-child{
margin: 0 0 0 0;
}

.toppcr21 span::before{
content: "●";
color: #36a34b;
display: inline-block;
margin: 0 1vw 0 0;
}

.toppcr22{
width: 100%;
font-size: 1.3rem;
margin: 0 0 6vw 0;
}

.toppcr23{
width: 100%;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
background: rgb(54 163 76);
padding: 3vw;
}

.toppcr24{
width: 100%;
margin: 0 auto 20px;
display: flex;
flex-wrap: wrap;
background: #fff;
align-items: center;
border-radius: 5px;
padding: 2vw;
}

.toppcr25{
width: 100%;
text-align: center;
font-weight: 700;
color: #157e2a;
font-size: 1.4rem;
font-family: YakuHanJP, 'Zen Maru Gothic', sans-serif;
}

.toppcr26{
font-size: 1.2rem;
width: 100%;
text-align: center;
}

.toppcr27{
width: 100%;
font-size: 1.3rem;
text-align: center;
}

.toppcr28{
width: 100%;
text-align: center;
}

.toppcr28 a{
text-align: center;
display: block;
border: 1px dotted #eaff8a;
color: #eaff8a;
font-size: 1.3rem;
line-height: 1.3;
padding: 2vw;
}










/*toppcr*/







.cashless__w{
width: 100%;
background: #e7f0f9;
padding: 8vw 0 8vw;
}

.cashless1{
width: 90%;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}

.cashless2{
text-align: center;
margin: 0 0 3vw 0;
width: 100%;
}

.cashless2 span{
display: inline-block;
text-align: center;
background: #004d9f;
padding: 1vw 5vw;
color: #fff;
font-size: 1.5rem;
font-family: "Zen Maru Gothic";
border-radius: 100px;
}

.cashless3{
margin: 0 0 3vw 0;
font-size: 1.4rem;
text-align: center;
width: 100%;
}

.cashless4{
  width: 100%;
  font-size: 1.4rem;
  text-align: center;
  font-weight: 900;
  margin: 0 0 3vw 0;

}

.cashless5{
  width: 100%;
  font-size: 1.3rem;
  text-align: center;
  color: #f31d1d;
  font-weight: 700;
  margin: 0 0 3vw 0;
}

.cashless6{
width: 100%;
text-align: center;
}

.cashless6 img{
width: 750px;
border-radius: 10px;
}








/*アレルギー*/
.movie {
    width: 100%;
    text-align: center;
}
.movie video {
    width: 100%;
    border-radius: 10px;
}
.movie img {
    width: 100%;
    border-radius: 10px;
}



.open_w {
width: 100%;
padding: 4rem 2rem;
background: url("../images/topmedicalbg.jpg");
background-size: cover;
}

.open1 {
width: 100%;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
background: #fff;
padding: 3rem 2rem;
font-weight: 700;
border-radius: 5px;}

.open2 {
width: 100%;
text-align: center;
margin-bottom: .5rem;
}

.open2 span {
width: 100%;
font-size: 1.6rem;
margin-bottom: 2rem;
padding: .1rem 1rem;
border: 1px solid #1FC74C;
text-align: center;
color:#1FC74C;
font-weigt:700;
	}

.open3 {
width: 100%;
text-align: center;
font-size: 1.8rem;

}

.open4 {
width: 100%;
text-align: center;
font-size: 1.8rem;
margin-bottom: 2rem;
font-weight: 500;
}

.open5 {
width: 100%;
text-align: left;
font-size: 1.3rem;
line-height: 2;
font-weight: 500;
}

.open6 {
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
margin-bottom: 2rem;
}

.open7 {
width: 100%;
text-align: center;
margin-bottom: .5rem;
}

.open7 span {
display: inline-block;
padding: .1rem 1rem;
background: #d53369;  /* fallback for old browsers */
background: linear-gradient(to right, #fc6295, #ec497f);
color: #fff;
text-align: center;
font-size: 1.6rem;
}


.open8 {
width: 100%;
text-align: center;
font-size: 2rem;
margin-left: 2rem;
color: #ec497f;
margin-bottom: 3rem;
}







.subpage35{
    /*box-shadow: 0 3px 0 #eee;
    border: 2px solid #eee;
    border-radius: 5px; */  
    padding: 3vw 4vw;
    background: #fff;
    width: 100%;
	z-index: 1;
}
.item_list li {
    width: 100%;
    line-height: 1.3;
    margin: 0 0 10px 0;
}
.item_list li:last-child {
    width: 100%;
    line-height: 1.3;
    margin: 0;
}    
.item_list li:before {
    content: "";
    width: 10px;
    height: 10px;
    display: inline-block;
    background: #2da932;
    border-radius: 50%;
    margin-right: 1vw;
}
 .subpage36 {
    width: 100%;
    text-align: center;
     margin: 0 0 5vw;
}   
.subpage36 a {
    width: 100%;
    display: block;
}    
.subpage36 a img {
    width: 100%;
    box-shadow: 5px 5px 10px #ccc;
} 
    
.item_list_2 li {
    width: 100%;
    line-height: 1.3;
    margin: 0 0 10px 0;
}
.item_list_2 li:last-child {
    width: 100%;
    line-height: 1.3;
    margin: 0;
}    
.item_list_2 li:before {
    content: "";
    width: 10px;
    height: 10px;
    display: inline-block;
    background: #9b9b9b;
    border-radius: 50%;
    margin-right: 1vw;
}
.info_memo_h {
    font-size: 1.7rem;
    color: #2da932;
    margin: 0 0 3vw 0;
    line-height: 1;
}


/*medical 装飾追加*/
.item_list_1 {
    width: 100%;
    display: block;
    list-style: none;
    font-size: 1.3rem;
    border-radius: 10px;
    margin: 0 0 10px;
}
.item_list_1 li {
    width: 100%;
    line-height: 1.5;
    margin: 0 0 10px 0;
    padding-left: 1em;
    text-indent: -1em;
}
.item_list_1 li:before {
    content: "";
    width: 0.7em;
    height: 0.7em;
    display: inline-block;
    background: #ccc;
    border-radius: 50%;
    margin-right: 1vw;
}



.item_list_3_ttl {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 7vw;
    border-radius: 5px 5px 0 0;
/*    background-color: #13ae67;*/
    background: url(../images/bg02.jpg);
    text-align: center;
    width: 40%;
    color: #fff;
} 
.item_list_3_w {
    width: 100%;
    position: relative;
    padding: 3vw 4vw 2vw;
    border: solid 1px #d6d6d6;
} 
.item_list_3 {
    width: 100%;
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    justify-content: space-between;
}
.item_list_3 li {
    width: 100%;
    line-height: 1.3;
    margin: 0 0 1vw 0;
}
.item_list_3 li span {
    font-size:1.3rem;
}
.item_list_3 li:before {
    content: "";
    width: 0.7em;
    height: 0.7em;
    display: inline-block;
    background: #57aa00;
    border-radius: 50%;
    margin-right: 1.5vw;
}

#schedule {
    position:relative;
}

#schedule::after {
    content:"";
    background:url(../images/ilst_sche.svg) space;
    position:absolute;
    top:0;
    right:0;
    left:0;
    display:block;
    width: 80%;
    height: 20px;
    margin: auto;
    right:-20px;
}

#schedule .subpage2 {
    text-align:center;
    border-bottom:0;
}

#schedule .subpage2 h2 {
    background: url(../images/bg08.jpg);
    display:inline-block;
    border-radius:8px;
    width: 100%;
    color:#fff;
    font-size:1.6rem;
    padding:10px 0;
    margin-top: 30px;
}

#schedule table {
border-collapse: collapse;
width: 100%;
line-height: 1.5;
}

#schedule th, #schedule td {
border: solid 1px #d6d6d6 !important;
padding: 8px;
text-align: left;
}

#schedule td {
font-size: 1.3rem;
font-weight: 400;
}

#schedule td.name {
    font-size:1.3rem;
    font-weight:600;
}

/*#schedule td.name2 {
    font-weight: 600;
}*/

#schedule th {
background-color: #DFECAA;
width:33%;
}

/*#schedule th.th-first {
    width:18%;
}*/


.ft_ilst {
    background: #fff;
}

.ft_ilst img {
    width:100%;
}




/*求人告知*/
.toprecruit__w {
    padding: 40px 0 50px;
    background:url(../images/bg.jpg);
    text-align: center;
}

.toprecruit__w_inner {
    width:95%;
    margin:auto;
}
/*
.toprecruit1 {
    position: relative;
    display: inline-block;
    height: 30px;
    line-height: 30px;
    padding: 0 1rem;
    background: #354e71;
    color: #fff;
    font-family:'Zen Maru Gothic', sans-serif;
    font-size: 1.4rem;
    font-weight: bold;
    text-align: center;
    z-index:2;
}

.toprecruit1::before,
.toprecruit1::after {
    position: absolute;
    top: 0;
    width: 0px;
    height: 0px;
    border-color: #354e71 transparent;
    border-style: solid;
    content: '';
}

.toprecruit1::before {
    left: -15px;
    border-width: 15px 0px 15px 15px;
}

.toprecruit1::after {
    right: -15px;
    border-width: 15px 15px 15px 0px;
}

.toprecruit_2 {
    width: 80%;
    align-items:center;
    margin: 3.5rem auto 0;
}

.toprecruit_2 img {
    width: 70%;
    border-radius:20px;
    margin: 1.2rem auto 0;
}

.toprecruit_2 p {
    display:inline-block;
    width: 100%;
    text-align:center;
    font-size: 2.2rem;
    font-family:'Zen Maru Gothic', sans-serif;
    letter-spacing:.12em;
}*/

.toprecruit_3 {
    background: #ffd58a;
    display: inline-block;
    padding:4px 10px;
    border-radius:3px;
    letter-spacing:0;
    width: 100%;
}

.toprecruit_3 span {
    background:#fff;
    padding: 1px 7px;
    border-radius:50px;
    margin: 0 2px;
    letter-spacing: .1em;
}
	
	
	
	
	
	/*flow*/
.detail_btn {
 text-align: center;
margin: 0 auto;    
}
.detail_btn a {
display: inline-block;
border-radius: 15px;
background: #00a1db;
color: #fff;
text-align: center;
padding: 2vw 11vw;
transition: .6s;
position: relative;
font-size: 1.4rem;
 width: 100%;
letter-spacing: 0.01rem;
box-shadow: 3px 3px 10px #dadada;
}
.detail_btn span::after {
content: "";
background: url(../images/arrow-white.svg);
width: 1.6rem;
height: 1.6rem;
position: absolute;
right: 3vw;
font-size: 1rem !important;
top: 1.3rem;
color: #aedce0;
}
.flowstep01 {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin:8px 0;
	line-height: 1.8;
}

.flowstep02 {
    width: 20%;
	height:30px;
	margin: 0 auto;
	text-align: center;
	font-size: 1.2rem;
    font-weight: 700;
    display: inline-block;
    padding: 2px 2px;
    letter-spacing: .1rem;
    background: #00a1db;
    border-radius: 100px;
	color: #ffffff;

}

.flowstep03 {
    width: 78%;
}
	
.medical-care-dx{
    width: 90%;
    margin: 0 auto 50px;
    padding: 30px;
    border-radius: 10px;
    background: #ebf3f3;
	font-size: 1.6rem;
    }    
.medical-care-dx_ttl{
       padding: 0 0 15px;
        line-height: 1;
        color: #00a155;
        font-size: 1.8rem;
    }
	
	
	

}
/* sp */




@media screen and (min-width: 1560px) {
.ft_ilst {
    margin-top:-70px;
}
}


















