@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) {

/* header */

header{
width: 100%;
display: flex;
align-items: center;
background: #fffdf4;
flex-wrap: wrap;
}

.header1{
width: 1100px;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
}

.header2{
width: 400px;
}

.header2 h1{

}

.header2 h1 a{

}

.header2 h1 a img{
width: 100%;
}

.header3{
text-align: center;
}

.header4{
}

.header4 a{
width: 100%;
display: block;
background: linear-gradient(90deg, #1ea189, #0cbd7c);
text-align: center;
font-size: 2rem;
font-weight: 500;
color: #fff;
border-radius: 200px;
line-height: 1;
padding: 20px 0;
box-shadow: 7px 7px 20px #9ff4c2;
letter-spacing: .05rem;
}

.header4 a span::before{
content: "";
background: url("../images/ic_arrow1.svg") no-repeat;
display: inline-block;
width: 1.5rem;
height: 1.5rem;
margin: 0 8px 0 0;
vertical-align: middle;
}

.header5{
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
}

.header6{
text-align: center;
}

.header6 a{
width: 100%;
display: block;
font-size: 4rem;
color: #4b4948;
font-weight: 900;
line-height: 1;
}

.header6 a span{

}

.header6 a span::before{
content: "";
background: url("../images/ic_tel.svg");
display: inline-block;
width: 3rem;
height: 3rem;
margin: 0 6px 0 0;
vertical-align: bottom;
}

.header7{
  background: #ec6d81;
  text-align: center;
  padding: 12px 22px 12px 22px;
  margin: 10px 0 8px 0;
  color: #fff;
  font-size: 1.8rem;
  letter-spacing: .05rem;
  border-bottom: 2px solid #dadada;
  display: inline-block;
  font-family: 'Zen Maru Gothic';
  border-radius: 50px;
}

.header8{
width: 100%;
padding: 5px 0;
text-align: center;
background: #28634c;
font-size: 1.5rem;
color: #fff;
border-bottom: 2px solid #28634c;
font-weight: 400;
}

.header9{
width: 100%;
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
padding: 35px 0;
}




/* header */















/* nav */


/*========= ドロップダウンのためのCSS ===============*/

/*==ナビゲーション全体の設定*/
nav{
text-align: center;
padding: 20px 0 20px;

}

/*ナビゲーションを横並びに*/
nav ul{
/*2階層目の基点にするためrelativeを指定*/
position: relative;
list-style: none;
display: flex;
justify-content: center;
width: 1280px;
margin: 0 auto;
border-radius: 6px;
}

nav ul li{
margin: 0 50px 0 0;
}

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;
  padding: 1px 1px 0 14px;
  transition: all .3s;
  font-size: 1.9rem;
  font-weight: 500;
  letter-spacing: .15rem;
  font-family: 'Zen Maru Gothic';
  /*text-shadow: 1px 1px 3px #237833;*/
}

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: 100%;
height: 100%;
object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev {
--swiper-navigation-color: #009f88; 
}

/* slider */









/* pagetop */


#page-top {
position: fixed;
bottom: 20px;
right: 20px;
z-index: 99;
}
#page-top a {
width: 60px;
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 */










/* medical */

.topmedical__w{
width: 100%;
padding: 100px 0 100px;
background: url("../images/medi_bg.jpg")center center;
background-size: cover;   
}

.topmedical1{
text-align: center;
margin: 0 0 90px 0;
}

.topmedical1 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;
}

.topmedical1 h2 span{
display: block;
position: relative;
}

.topmedical1 h2 span::before{
content: "MEDICAL";
display: block;
text-align: right;
font-size: 4.5rem;
letter-spacing: .6rem;
color: #fff;
font-weight: 400;
line-height: 1;
font-family: 'Zen Maru Gothic', sans-serif;
margin: 0 0 3px 0;
}

.topmedical1 h2 span::after{
content: "";
background: url("../images/ic_medical.svg");
width: 70px;
height: 70px;
display: block;
top: -40px;
left: 0;
position: absolute;
/*filter: drop-shadow(4px 4px 3px #469C57);*/
}

.topmedical2{
width: 1200px;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}

/*追加*/
.topsubject_box {
    width: 23.5%;
    text-align: center;
    border-radius: 10px;
    margin: 0 0 20px 0;
}
.topsubject_box a::before {
    content: "";
    position: absolute;
    display: block;
    background: url(../images/ic_arrow3.svg) no-repeat;
    width: 15px;
    height: 15px;
    right: 5px;
    bottom: 5px;
}    
.topsubject_box a {
    width: 100%;
    padding: 30px 0;
    display: block;
    height: 100%;
    border-radius: 3px;
    background: #caeace;
    transition: all .3s;
    color: #28634c;
    /*box-shadow: 6px 6px 3px #e5f5ff;*/
    /*border: 1px solid #28634c;*/
    position: relative;
}
.topsubject_t {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}
.topsubject_box a span {
    text-align: center;
    display: inline-block;
    font-size: 2.2rem;
    line-height: 1.6;
    letter-spacing: .1rem;
}
.subjectic01 span::before {
    content: "";
    background: url(../images/ic_subjectic_01.svg);
    width: 80px;
    height: 80px;
    display: block;
    margin: 0 auto;
}
.subjectic02 span::before {
    content: "";
    background: url(../images/ic_subjectic_02.svg);
    width: 80px;
    height: 80px;
    display: block;
    margin: 0 auto;
} 
.subjectic03 span::before {
    content: "";
    background: url(../images/ic_subjectic_03.svg);
    width: 80px;
    height: 80px;
    display: block;
    margin: 0 auto;
} 
.subjectic04 span::before {
    content: "";
    background: url(../images/ic_subjectic_04.svg);
    width: 80px;
    height: 80px;
    display: block;
    margin: 0 auto;
} 
.subjectic05 span::before {
    content: "";
    background: url(../images/ic_subjectic_05.svg);
    width: 80px;
    height: 80px;
    display: block;
    margin: 0 auto;
} 
.subjectic06 span::before {
    content: "";
    background: url(../images/ic_subjectic_06.svg);
    width: 80px;
    height: 80px;
    display: block;
    margin: 0 auto;
} 
.subjectic07 span::before {
    content: "";
    background: url(../images/ic_subjectic_07.svg);
    width: 80px;
    height: 80px;
    display: block;
    margin: 0 auto;
} 
.subjectic08 span::before {
    content: "";
    background: url(../images/ic_subjectic_08.svg);
    width: 80px;
    height: 80px;
    display: block;
    margin: 0 auto;
} 
.subjectic09 span::before {
    content: "";
    background: url(../images/ic_subjectic_09.svg);
    width: 80px;
    height: 80px;
    display: block;
    margin: 0 auto;
}   
.subjectic10 span::before {
    content: "";
    background: url(../images/ic_subjectic_10.svg);
    width: 80px;
    height: 80px;
    display: block;
    margin: 0 auto;
}   
.subjectic11 span::before {
    content: "";
    background: url(../images/ic_subjectic_11.svg);
    width: 80px;
    height: 80px;
    display: block;
    margin: 0 auto;
}   
.subjectic12 span::before {
    content: "";
    background: url(../images/ic_subjectic_12.svg);
    width: 80px;
    height: 80px;
    display: block;
    margin: 0 auto;
}       
/*追加*/    
    
.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 */







/* news */

.topnews__w{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
background: #f8f9fa;
}

.topnews1{
text-align: center;
background: url("../images/topnewsbg.jpg") left center;
background-size: cover;
padding: 80px 0 110px;
width: 500px;
}

.topnews2{
text-align: center;
margin: 0 0 90px 0;
}

.topnews2 h2{
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: .5rem;
  color: #ffffff;
  background: linear-gradient(45deg, #4dcb64, #27bb77);
  width: 550px;
  margin: 0 auto;
  box-shadow: 15px 15px 0px rgb(223 233 243 / 60%);
  text-align: right;
  padding: 18px 22px;
}

.topnews2 h2 span{
}

.topnews2 h2 span::before{
content: "NEWS";
display: block;
text-align: right;
font-size: 4.5rem;
letter-spacing: .6rem;
color: #fff;
font-weight: 400;
line-height: 1;
font-family: 'Zen Maru Gothic', sans-serif;
margin: 0 0 3px 0;
}


.topnews3{
width: calc(100% - 550px);
background: #f8f9fa;
}

.topnews4{
width: 700px;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
padding: 105px 0 70px 70px;
}

.topnews4 iframe{
width: 100%;
height: 700px;
}

.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;
    color: #9697A6;
    margin: 0 0 0 0;
}  
.newskiji3 {
    width: 100%;
}
.newskiji4 {
    width: 100%;
    font-size: 2rem;
    color: #28634c;
    margin: 0 0 5px 0;
    font-weight: 700;
} 
.newskiji5 {
    width: 100%;
}    
/* news */













.topcovid19__w{
    width: 100%;
    background: #f5f5f5;
    padding: 50px 0 50px;
}
.infection_w {
    width: 1080px;
    padding: 0 0 40px;
    background: #ffffff;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 0 #e2e2e2;
}
.infection0 {
    text-align: center;
    color: #ffffff;
    font-size: 2.5rem;
    letter-spacing: .1rem;
    line-height: 1.5;
    padding: 10px 0;
    background: #28634c;
    border-radius: 100px;
    width: 90%;
    margin: 40px auto;
}
.infection1 {
    width: 95%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}
.infection2 {
    width: 28%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}
.infection3 {
    width: 60%;
    margin: 0 auto 30px;
}
.infection3 img {
    width: 100%;
}
.infection4 {
    width: 100%;
    font-size: 1.8rem;
    letter-spacing: .1rem;
    height: 75px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 0 15px;
    background: #f8f8f8;
    border: #cdcdcd 1px solid;
    border-radius: 15px;
}
.infection5 {
    letter-spacing: .05rem;
    font-size: 1.6rem;
    text-align: justify;
    line-height: 1.5;
}
    
    
    
/* timetable */

.toptimetable__w{
width: 100%;
padding: 80px 0 20px;
background: url("../images/toptimetablebg.jpg") right center;
background-size: cover;
}

.toptimetable1{
text-align: center;
margin: 0 0 90px 0;
}

.toptimetable1 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;
}

.toptimetable1 h2 span{
    display: block;
    position: relative;
}

.toptimetable1 h2 span::before{
content: "TIMETABLE";
display: block;
text-align: right;
font-size: 4.5rem;
letter-spacing: .3rem;
color: #fff;
font-weight: 400;
line-height: 1;
font-family: 'Zen Maru Gothic', sans-serif;
margin: 0 0 3px 0;
}

.toptimetable2 h2 span::after{
content: "";
background: url("../images/ic_timetable.svg");
width: 70px;
height: 70px;
display: block;
top: -40px;
left: 0;
position: absolute;
/*filter: drop-shadow(4px 4px 3px #469C57);*/
}


.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;
}

.toptimetable7{
width: 100%;

}

table.toptimetable8{
width: calc(90% + 6px);
background: #fff;
margin: 0 auto;
border: 2px solid #28634c;
}

table.toptimetable8 th{
  background: #28634c;
    text-align: center;
    font-weight: 500;
    font-size: 1.5rem;
    padding: 10px 0;
    line-height: 1;
    width: 10%;
    border: 1px solid #cdcdcd;
    color: #fff
}

table.toptimetable8 th:first-child{
width: 30%;
}

table.toptimetable8 td{
    background: #fdfdfd;
    text-align: center;
    font-weight: 500;
    font-size: 2rem;
    padding: 15px 0;
    line-height: 1;
    width: 10%;
    color: #28634c;
    letter-spacing: 0.05rem;
    border: 1px solid #e1e1e1;
    vertical-align: middle;
}

table.toptimetable8 td:first-child{
    width: 30%;
    color: #000;
    background: #f5f4f4;
}

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%;
text-align: center;
}

.toptimetable12 > .closed{
display: inline-block;
text-align: center;
padding: 3px 12px;
background: #fff;
font-size: 1.5rem;
color: #ef6276;
border-radius: 5px;
border: 1px solid #ef6276;
margin: 0 0 20px;    
}
.toptimetable12 > .repletion{
width: 600px;
margin: 0 auto;
text-align: left;
}
.toptimetable12 > .repletion p{
padding-left:1em;
text-indent:-1em;
}   
    
.toptimetable12_f{
text-align: center;
width: 500px;
margin: 0 auto;
}

.toptimetable12_f > .closed{
display: inline-block;
text-align: center;
padding: 3px 12px;
background: #fff;
font-size: 1.5rem;
color: #ef6276;
border-radius: 5px;
border: 1px solid #ef6276;
margin: 0 0 10px;    
}
.toptimetable12_f > .repletion{
width: 100%;
margin: 0 auto;
text-align: left;
font-size: 1.4rem;    
} 
.toptimetable12_f > .repletion p{
padding-left:1em;
text-indent:-1em;    
}   
.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;
}


/* timetable */





/* feature */
.feature__w {
    width: 100%;
    padding: 100px 0 100px;
    background: url("../images/fea_bg.svg");
    background-repeat: repeat;
    background-size: 15%;
}
    
.feature__wi {
    width: 1080px;
    margin: 0 auto;
}
.feature1 {
    text-align: center;
    margin: 0 0 90px 0;
}
.feature1 h2 {
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: .5rem;
    color: #ffffff;
    background: linear-gradient(45deg, #937165, #583428);
    width: 500px;
    margin: 0 auto;
    box-shadow: 15px 15px 0px rgb(97 55 42 / 20%);
    text-align: right;
    padding: 18px 22px;
} 
.feature1 h2 span {
    display: block;
    position: relative;
}
.feature1 h2 span::before {
    content: "FEATURE";
    display: block;
    text-align: right;
    font-size: 4.5rem;
    letter-spacing: .6rem;
    color: #fff;
    font-weight: 400;
    line-height: 1;
    font-family: 'Zen Maru Gothic', sans-serif;
    margin: 0 0 3px 0;
} 
.feature1 h2 span::after {
    content: "";
    background: url(../images/ic_feature.svg);
    width: 70px;
    height: 70px;
    display: block;
    top: -40px;
    left: 0;
    position: absolute;
    /*filter: drop-shadow(4px 4px 3px #469C57);*/
}    
.feature1_box {
    position: relative;
    height: 400px;
    margin-bottom: 60px;
}
.feature1_i {
    position: absolute;
    width: 600px;
}
.feature1_i img {
    width: 100%;
    border-radius: 120px 10px 70px 10px;
}
.feature1_bg {
    background: #fff;
    position: absolute;
    top: 90px;
    right: 0;
    width: 550px;
    padding: 65px 20px 75px 20px;
    box-shadow: 20px 20px 20px #e0ddca;
    border-radius: 3px
}
.feature1_hh {
    color: #28634c;
    font-size: 2.5rem;
    line-height: 1.4;
    letter-spacing: 0.1rem;
    text-align: center;
    font-weight: 700;
}
.feature1_hh span {
  border-bottom:2px dashed #f39800;
  padding: 0 0 10px;
}
.feature1_h {
    padding: 30px 0 0;
    color: #3c3c3d;
    font-size: 1.7rem;
    letter-spacing: .1rem;
    line-height: 1.8;
    text-align: center;
}
.feature2_box {
    position: relative;
    height: 400px;
    margin: 0 0 60px 0;
}
.feature2_i {
    position: absolute;
    right: 0;
    width: 600px;
}
.feature2_i img {
    width: 100%;
    border-radius: 20px 120px 10px 70px;
}
.feature2_bg {
    background: #fff;
    position: absolute;
    top: 90px;
    width: 550px;
    padding: 65px 20px 75px 20px;
    box-shadow: -20px 20px 20px #e0ddca;
    border-radius: 3px
}
.feature2_hh {
    color: #28634c;
    font-size: 2.5rem;
    line-height: 1.4;
    letter-spacing: 0.1rem;
    text-align: center;
    font-weight: 700;
}
.feature2_hh span {
  border-bottom:2px dashed #f39800;
  padding: 0 0 10px;
}    
.feature2_h {
    padding: 30px 0 0;
    color: #3c3c3d;
    font-size: 1.7rem;
    letter-spacing: .1rem;
    line-height: 1.8;
    text-align: center;
}
.feature3_box {
    position: relative;
    height: 400px;
    margin: 0;
}
.feature3_i {
    position: absolute;
    width: 600px;
}
.feature3_i img {
    width: 100%;
    border-radius: 120px 10px 70px 10px;
}
.feature3_bg {
    background: #fff;
    position: absolute;
    top: 90px;
    right: 0;
    width: 550px;
    padding: 65px 20px 75px 20px;
    box-shadow: 20px 20px 20px #e0ddca;
    border-radius: 3px
}
.feature3_hh {
    color: #28634c;
    font-size: 2.5rem;
    line-height: 1.4;
    letter-spacing: 0.1rem;
    text-align: center;
    font-weight: 700;
}
.feature3_hh span {
  border-bottom:2px dashed #f39800;
  padding: 0 0 10px;
}    
.feature3_h {
    padding: 30px 0 0;
    color: #3c3c3d;
    font-size: 1.7rem;
    letter-spacing: .1rem;
    line-height: 1.8;
    text-align: center;
}
/* feature */




/* 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 */











/* footer */
footer{
width: 100%;
background: #fff;
}

.footer__w{
width: 100%;
display: flex;
flex-wrap: wrap;
align-items: flex-start;
}

.footer__w2{
width: 100%;
display: flex;
flex-wrap: wrap;
align-items: flex-start;
}

.footer1{
width: 550px;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
background: #fff;
padding: 80px 0 0;
}

.footer2{
width: 100%;
text-align: center;
margin: 0 0 10px 0;
}

.footer2 img{
width: 300px;
}

.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.3rem;
  letter-spacing: 0.05rem;
  background: #36a34c;
  color: #fff;
  text-align: center;
  padding: 2px 5px;
  margin: 0 0 0 0;
  /*width: 19.2%;*/
  border-radius: 2px;
}

.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: 1.3rem;
margin: 0 0 15px 0;
}

.footer9{
  font-size: 1.5rem;
  font-weight: 500;
  padding: 8px 25px;
  margin: 0 auto;
  border-radius: 3px;
  background: #f5f5f5;
  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;
  padding: 8px 25px;
  margin: 0 auto 10px;
  border-radius: 3px;
  background: #f5f5f5;
  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;
}

.footerbnr__w{
  width: 500px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: #fff;
  margin: 30px auto 0;
}
.footerbnr__w a:first-child{
  margin: 0 auto 15px;
}
.footerbnr__w a:nth-child(2){
border: solid 1px #ccc;
}    
.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: #f5f5f5;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 30px 0 30px 0;
  width: 100%;
  margin: 60px 0 0 0;
}

.sitemap1{
margin: 0 2.8rem 0 0;
line-height: 2.7;
letter-spacing: .01rem;
}

.sitemap1:last-child{
margin: 0 0 0 0;
}

.sitemap2{
width: 100%;
font-weight: 500;
font-size: 1.5rem;
}

.sitemap3{
width: 100%;
font-size: 1.5rem;
line-height: 2.3;
}

.sitemap3 a{
display: block;
width: 100%;
}

.googlemaps__w{
width: calc(100% - 550px);
padding: 80px 0 0 20px;
}

.googlemaps__w iframe{
width: 90%;
/*height: 610px;*/
height: 850px;
}




/* footer */






/* copyright */


.copyright {
width: 100%;
padding: 20px 0;
background: #36a34b;
text-align: center;
color: #fff;
font-size: 1.4rem;
}



/* copyright */













/* subpage */

.subpagetitle__w{
width: 100%;
padding: 60px 0;
position: relative;
}

.subpagetitle__w::after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}

/*.subpagetitle__w1{
background: #ebd5c8 url(../images/subpagetitle1.jpg) left center no-repeat;
background-size: contain;
}*/

.subpagetitle__w1{
background: #ebd5c8 url(../images/subpagetitle1.jpg) left center no-repeat;
background-size: cover;
}

.subpagetitle__w2{
background: #ebd5c8 url(../images/subpagetitle2.jpg) left center no-repeat;
background-size: cover;
}

.subpagetitle__w3{
background: #ebd5c8 url(../images/subpagetitle3.jpg) left center no-repeat;
background-size: cover;
}

.subpagetitle__w4{
background: #ebd5c8 url(../images/subpagetitle4.jpg) left center no-repeat;
background-size: cover;
}

.subpagetitle__w5{
background: #ebd5c8 url(../images/subpagetitle5.jpg) left center no-repeat;
background-size: cover;
}




.subpagetitle1{
text-align: center;
position: relative;
z-index: 10;
}

.subpagetitle1 h2{
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: .3rem;
    color: #fff;
    line-height: 1.2;
    display: inline-block;
    background: rgb(30 170 57 / 70%);
    padding: 35px 0;
    border-radius: 5px;
    width: 760px;
    text-shadow: 4px 4px 5px #1eaa39;
}

.subpagetitle1 h2 span{
}

.subpagetitle1 h2 span::after{
    display: block;
    text-align: center;
    font-size: 1.5rem;
    letter-spacing: .2rem;
    border-top: 1px solid #caeace;
    width: 50rem;
    margin: 12px auto 0;
    padding: 12px 0 0 0;
    color: #caeace;
    font-weight: 700;
    line-height: 1.2;
    white-space: pre-wrap;
    font-family: 'Zen Old Mincho', serif;
}

.subpagetitle1a h2 span::after{
content: "MEDICAL";
}

.subpagetitle1b h2 span::after{
content: "INSPECTION";
}

.subpagetitle1c h2 span::after{
content: "DOCTOR";
}

.subpagetitle1d h2 span::after{
content: "FACILITY";
}

.subpagetitle1e h2 span::after{
content: "ACCESS";
}

.subpagetitle1f h2 span::after{
content: "NEWS";
}

.subpagetitle1g h2 span::after{
content: "RECRUIT";
}

.subpagetitle1h h2 span::after{
content: "CONTACT LENS";
}

.subpagetitle1i h2 span::after{
content: "TRAINING";
}    
















.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: #f5f5f5;
padding: 80px 0 110px;
}

.subpage1{
width: 1000px;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
background: #fff;
padding: 60px 50px 70px;
box-shadow: 15px 15px 5px #ededed;
border-radius: 30px 10px 30px 10px;
}

.subpage2{
width: 100%;
margin: 0 0 50px 0;
}

.subpage2 h2{
  font-size: 3.7rem;
  font-weight: 700;
  letter-spacing: .3rem;
  line-height: 1;
  text-align: center;
  color: #524b48;
  border-bottom: 20px solid #f7f7f7;
padding: 0 0 30px 0;
}

.subpage3{
width: 100%;
padding: 0 10px;
line-height: 1.8;
}

.subpage3 h4{
font-size: 2rem;
letter-spacing: .04rem;
line-height: 1.2;
padding:0 0 10px;
font-weight: 500;
font-family: YakuHanRP, 'Zen Maru Gothic', serif;
}
    
.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: #f5f5f5;
border-radius: 10px;
}

.subpage5 ul{
width: 100%;
display: flex;
list-style: none;
flex-wrap: wrap;    
}

.subpage5 ul li{
width: 50%;
line-height: 1.6;
margin: 0 0 15px 0;
padding-left: 3rem;
text-indent: -3rem;
}

.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;
padding-left: 3rem;
text-indent: -3rem;
}

.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;
}

.subpage7{
width: 100%;
}

.subpage7 ul{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: flex-start;
}

.subpage7 ul li{
width: 45%;
margin: 0 3% 28px 0;
}

.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 a{
display: block;
width: 100%;
margin: 0 auto;
background: #1eaa39;
padding: 25px 0;
text-align: center;
letter-spacing: -.005rem;
color: #ffffff;
box-shadow: 6px 6px 15px #ebebeb;
font-weight: 500;
font-size: 2rem;
line-height: 1;
position: relative;
border-radius: 5px;
}

.subpage7 ul li a:hover{
transform: translateY(-3px);
opacity: .5;
}

.subpage7 ul li a span{
width: 100%;
}

.subpage7 ul li span::after{
content: "";
background: url("../images/ic_arrow4.svg");
display: inline-block;
width: 1.5rem;
height: 1.5rem;
position: absolute;
top: 30px;
right: 10px;
transform: rotate(90deg);
opacity: .9;
}

.subpage8{
width: 100%;
}

.subpage8::before{
  content: '';
  display: block; 
    padding-bottom: 1rem;
    background-image: repeating-linear-gradient(90deg, #ffddd7 0, #ffddd7 3px, #fff 3px, #fff 6px);
    background-repeat: no-repeat;
    background-size: 100% 0.5rem;

}

.subpage8 h3{
font-size: 2.7rem;
letter-spacing: .04rem;
line-height: 1.2;
padding: 50px 10px 60px;
font-weight: 500;
color: #28634c;
font-family: YakuHanRP, 'Zen Maru Gothic', serif;
}

/*.subpage8 h3:first-letter{
color: #009f88;
}*/


.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: -5.5rem 0 0 0;
background: #927ab9;
color: #fff;
text-align: center;
padding: 12px 30px;
border-radius: 3px;
position: absolute;
font-size: 1.8rem;
line-height: 1.4;
}

.subpage12{
padding: 12px 0 0 0;
font-size: 1.6rem;
line-height: 2;
}

.subpage13{
display: inline-block;
margin: -5.5rem 0 0 0;
background: #1eaa39;
color: #fff;
text-align: center;
padding: 12px 30px;
border-radius: 3px;
position: absolute;
font-size: 1.8rem;
line-height: 1.4;
}

.subpage14{
display: inline-block;
margin: -5.5rem 0 0 0;
background: #7dadd4;
color: #fff;
text-align: center;
padding: 12px 30px;
border-radius: 3px;
position: absolute;
font-size: 2rem;
line-height: 1.4;
}

.subpage15{
width: 100%;
line-height: 1.8;
}

.subpage16{
width: 100%;
}

.subpage16 span{
line-height: 1.8;
font-size: 2.2rem;
font-weight: 700;
display: block;
padding: 3px 20px;
letter-spacing: 0.1rem;
background: #fff;
color: #213546;
border-left: 10px solid #7dadd4;
font-family: 'Zen Old Mincho', serif;
}

.subpage17{
width: 100%;
}

.subpage17 span{
line-height: 1.8;
font-size: 1.8rem;
font-weight: 700;
display: inline-block;
padding: 6px 30px;
letter-spacing: .1rem;
background: #ffffff;
border-bottom: 1px solid #47c8af;
}

.subpage18{
width: 100%;
}

.subpage19{
width: 100%;
position: relative;
padding: 30px 30px;
background: #f5f5f5;
border-radius: 10px;
}

.subpage19 ul{
width: 100%;
}

.subpage19 ul li{
width: 100%;
line-height: 2;
margin: 0 0 5px 0;
}

.subpage19 ul li:last-child{
margin: 0 0 0 0;
}

.subpage19 ul li span{
width: 100%;
}

.subpage19 ul li span::before{

}

.subpage20{
display: inline-block;
margin: -5.5rem 0 0 0;
background: #fbfdd5;
color: #25cf40;
text-align: center;
padding: 12px 30px;
border-radius: 3px;
position: absolute;
font-size: 1.8rem;
line-height: 1.4;
border: 2px solid #25cf40;
font-weight: 700;
}

.subpage21::before{
content: "";
display: inline-block;
background: url("../images/ic_check4.svg");
width: 2rem;
height: 2rem;
margin: 0 10px 0 0;
vertical-align: sub;
}

.subpage22{
display: inline-block;
margin: -5.5rem 0 0 0;
background: #0ba524;
color: #fff;
text-align: center;
padding: 12px 30px;
border-radius: 3px;
position: absolute;
font-size: 1.8rem;
line-height: 1.4;
}

.subpage23::before{
content: "";
display: inline-block;
background: url("../images/ic_check5.svg");
width: 2rem;
height: 2rem;
margin: 0 10px 0 0;
vertical-align: sub;
}


.subpage24{
width: 320px;
margin: 0 auto 30px;
}

.subpage24 a{
width: 100%;
display: block;
background: linear-gradient(90deg, #1ea189, #0cbd7c);
text-align: center;
font-size: 2rem;
font-weight: 500;
color: #fff;
border-radius: 200px;
line-height: 1;
padding: 20px 0;
box-shadow: 7px 7px 20px #9ff4c2;
letter-spacing: .05rem;
}

.subpage24 a span::before{
content: "";
background: url("../images/ic_arrow1.svg") no-repeat;
display: inline-block;
width: 1.5rem;
height: 1.5rem;
margin: 0 8px 0 0;
vertical-align: middle;
}

.subpage25{
width: 100%;
font-size: 3rem;
font-family: 'Zen Old Mincho', serif;
padding: 30px 40px;
background: #f1fff6;
}


.subpage26{
display: inline-block;
padding: 0 0 0 50px;
}

.subpage26::first-letter{
color: #009f88;
display: inline-block;
font-weight: 900;
font-size: 5rem;
margin: 0 5px 0 0;
}

.subpage27{
display: inline-block;
padding: 0 0 0 150px;
}

.subpage27::first-letter{
color: #00a341;
display: inline-block;
font-weight: 900;
font-size: 5rem;
margin: 0 5px 0 0;
}

.subpage28{
display: inline-block;
padding: 0 0 0 250px;
}

.subpage28::first-letter{
color: #36a34b;
display: inline-block;
font-weight: 900;
font-size: 5rem;
margin: 0 5px 0 0;
}

.subpage29{
width: 100%;
}

.subpage29 span{
line-height: 1.8;
font-size: 1.6rem;
font-weight: 500;
display: inline-block;
padding: 4px 25px;
letter-spacing: .1rem;
background: #ffffff;
border: 1px solid #7cb1db;
color: #499de1;
border-radius: 200px;
}

.subpage30{
    width: 100%;
    padding: 23px 26px;
    display: flex;
    flex-wrap: wrap;
    background: #fffee7;
    border-radius: 5px;
}

.subpage31{
width: 100%;
color: #e95446;
margin: 0 0 15px 0;
font-size: 2.4rem;
text-align: center;
}

.subpage32{
width: 100%;
font-size: 1.5rem;
color: #4a2811;
}

.subpage33{
width: 100%;
text-align: center;
}

.subpage34{
width: 100%;
}

.subpage34 span{
display: block;
padding: 12px 40px;
color: #ffffff;
font-size: 2.3rem;
font-weight: 500;
margin: 0 0 40px 0;
background: linear-gradient(90deg, #009f88, #3f9fcb);
border-radius: 3px 13px 3px 13px;
}

.subpage35{
width: 600px;
}

.subpage35 img{
width: 100%;
border-radius: 3px;
}

.subpage36{
width: 100%;
position: relative;
padding: 30px 30px;
background: #f5f5f5;
border-radius: 10px;
}

.subpage36 ul{
width: 100%;
}

.subpage36 ul li{
width: 100%;
line-height: 2;
margin: 0 0 5px 0;
}

.subpage36 ul li:last-child{
margin: 0 0 0 0;
}

.subpage36 ul li span{
width: 100%;
}

.subpage36 ul li span::before{
content: "";
display: inline-block;
background: url("../images/ic_cross.svg");
width: 2rem;
height: 2rem;
margin: 0 10px 0 0;
vertical-align: sub;
}

.subpage37{
display: inline-block;
margin: -5.5rem 0 0 0;
background: #ef506b;
color: #fff;
text-align: center;
padding: 12px 30px;
border-radius: 3px;
position: absolute;
font-size: 1.8rem;
line-height: 1.4;
}



.subpage38{
width: 100%;
margin: 0 0 30px 0;
padding: 10px 30px;
font-size: 2.2rem;
font-weight: 700;
color: #009f88;
border-bottom: 1px solid #e5e5e5;
}


.subpage39{
width: 100%;
margin: 0 0 15px 0;
padding: 0 0 0 20px;
}

.subpage39 span{
display: inline-block;
text-align: center;
padding: 5px 40px;
border-radius: 200px;
font-size: 1.8rem;
color: #009f88;
font-weight: 700;
border: 1px solid #009f88;
}


.subpage40{
width: 100%;
font-size: 2.8rem;
font-family: 'Zen Old Mincho', serif;
padding: 0 0 0 60px;
font-weight: 700;
}

.subpage41{
font-size: 1.8rem;
font-weight: 400;
display: inline-block;
margin: 0 0 0 5px;
}

.subpage42{
font-size: 1.6rem;
font-weight: 500;
padding: 0 0 0 60px;
width: 100%;
}

.subpage43{
width: 100%;
display: flex;
flex-wrap: wrap;
}

.subpage44{
width: 100%;
margin: 0 0 15px 0;
}

.subpage44 span{
display: inline-block;
background: #009f88;
color: #fff;
padding: 2px 8px;
border-radius: 3px;
margin: 0 15px 0 0;
}

.subpage45{
width: 100%;
margin: 0 0 35px 0;
}

.subpage45:last-child{
margin: 0 0 0 0;
}

.subpage45 span{
display: inline-block;
background: #fff;
color: #009f88;
padding: 2px 8px;
border-radius: 3px;
margin: 0 15px 0 0;
border: solid 1px #009f88;
}

.subpage46{
width: 800px;
margin: 0 auto;
}

.subpage46 img{
width: 100%;
}




.subpage47{
width: 100%;
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}

.subpage48{
text-align: center;
font-size: 3.7rem;
width: 100%;
  color: #009f88;
  font-family: 'Zen Old Mincho', serif;
  letter-spacing: .5rem;
    font-weight: 500;
    margin: 0 0 40px 0;
}

.subpage49{
    font-size: 3.5rem;
    font-weight: 900;
    color: #009f88;
    letter-spacing: .005rem;
    font-family: YakuHanJP, 'Zen Kaku Gothic New', sans-serif;
    line-height: 1.2;
}

.subpage50{
width: 100%;
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}

.subpage51{
  width: 100%;
  padding: 20px 20px;
  background: #f4f0e1;
  margin: 0 0 25px 0;
  font-size: 1.8rem;
  font-weight: 700;
  border-radius: 3px;
  color: #3c2f19;
  text-align: center;
}

.subpage52{
text-align: center;
  width: 100%;
}

.subpage53 span{
  font-size: 1.7rem;
  background: #fff;
  padding: 3px 20px;
  color: #eb7777;
  border-radius: 5px;
  display: inline-block;
  font-weight: 700;
  border: solid 1px #eb7777;
}

.subpage54{
  width: 100%;
color: #eb7777;
  font-size: 1.7rem;
margin: 0 0 5px 0;
}

.subpage55{
    width: 100%;
    color: #383618;
    font-size: 1.5rem;
}



.subpage56{
width: 100%;
}

table.subpage57{
width: 100%;
}

table.subpage57 th{
border: 1px solid #e9e9e9;
}

table.subpage57 td{
border: 1px solid #e9e9e9;
height: 7rem;
}

.subpage58{
width: 25%;
vertical-align: middle;
padding: 10px 20px;
background: #f6f6f6;
}

.subpage59{
width: 55%;
padding: 10px 20px;
vertical-align: middle;
  font-size: 1.7rem;
}

.subpage60{
width: 20%;
padding: 10px 20px;
text-align: right;
  vertical-align: middle;
}

.subpage61{
font-size: 1.5rem;
font-weight: 500;
display: inline-block;
background: #fff;
padding: 1px 12px;
text-align: center;
color: #4a6396;
margin: 6px 0 0 0;
border: 1px solid #c5cddd;
}

.subpage62{
width: 100%;
margin: 0 0 10px 0;
}

.subpage62 a{
display: block;
width: 100%;
background: #fff;
padding: 20px 20px 25px;
font-size: 1.8rem;
}

.subpage62 a span{
display: inline-block;
border-bottom: 1px dotted #5779bc;
color: #5779bc !important;
}

.subpage62 a span::before{
content: "";
display: inline-block;
margin: 0 10px 0 0;
background: url("../images/ic_link.svg");
width: 1.5rem;
height: 1.5rem;
}

.subpage63{
display: inline-block;
margin: -5.5rem 0 0 0;
background: #47c8af;
color: #fff;
text-align: center;
padding: 12px 30px;
border-radius: 3px;
position: absolute;
font-size: 1.8rem;
line-height: 1.4;
width: 93%;
}

.subpage64{
width: 800px;
}

.subpage64 img{
width: 100%;
border-radius: 3px;
}

.subpage65{
width: 800px;
text-align: center;
}

.subpage65 img{
width: 50%;
border-radius: 3px;
}

.subpage66{
width: 25%;
vertical-align: middle;
padding: 10px 20px;
background: #f6f6f6;
}

.subpage67{
width: 38%;
padding: 10px 20px;
vertical-align: middle;
  font-size: 1.7rem;
}

.subpage68{
width: 37%;
padding: 10px 20px;
  vertical-align: middle;
}

.subpage69{
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 0 12px 0;
}

.subpage69:last-child{
  margin: 0 0 0 0;
}


.subpage70{
  width: 42%;
  display: inline-block;
  padding: 1px 0;
  text-align: center;
  border: 1px solid #059f88;
  margin: 0 15px 0 0;
  background: #059f88;
  color: #fff;
  border-radius: 2px;
  font-size: 1.5rem;
  font-weight: 700;
}

.subpage71{
width: 30%;
margin: 0 0 0 0;
text-align: right;
}

.subpage72{
width: 100%;
text-align: center;
}

.subpage72 a{
width: 100%;
text-align: center;
display: block;
}

.subpage72 a img{
  width: 728px;
  box-shadow: 5px 5px 10px #c7f5d1;
}

.subpage73{
width: 100%;
}    
.subpage73 h3 {
font-size: 2.3rem;
letter-spacing: .04rem;
line-height: 1.2;
font-family: YakuHanRP, 'Zen Maru Gothic', serif;
font-weight: 500;
padding: 0.5em 0.5em 0.5em 0.7em;
border-left: solid 5px #1eaa39;
margin: 0 0 40px;
border-bottom: 1px solid #cbcbcb;
}
.subpage74{
display: flex;
flex-direction: row;
flex-wrap: wrap;
column-gap: 80px;
margin: 0 0 50px;
} 
.subpage75{
width: 300px;
}     
.subpage75 img{
width: 100%;
}    
.subpage76{
flex: 1;
}    
.subpage77{
padding: 1.5em 2em;
border: 1px solid #f8ab9e;
border-radius: 10px;
display: flex;
flex-direction: column;
flex-wrap: wrap;
column-gap: 40px;
background: #fff9f8;
width: calc(100% / 2);
} 
.subpage78{
flex: 1;
}
.subpage79{
width: 100%;
margin: 0 0 20px;
}     
.subpage79 img{
width: 100%;
}  
.subpage80{
display: block;
font-size: 2rem;
letter-spacing: .04rem;
line-height: 1.2;
margin: 0 0 20px;
position: relative;
padding: 0 0 0 1.3em;
}  
.subpage80::before{
display: block;
position: absolute;
top: .6rem;
left: 0;
width: 1.3rem;
height: 1.3rem;
background-color: #f8ab9e;
content: '';
}  
.subpage81{
display: flex;
column-gap: 20px;
margin: 0 0 70px;
}     

.subpage82 {
font-size: 2.2rem;
padding: 0 0 5px 0;
margin: 0 0 3rem;
position: relative;
border-bottom: 3px solid #efefef;
width: 100%;
line-height: 2;
}   
.subpage82::before {
content: '';
position: absolute;
bottom: -3px;
width: 15%;
height: 3px;
background: #1eaa39;
}  
.subpage83 {
width: 100%;
position: relative;
padding: 30px 30px;
background: #f5f5f5;
border-radius: 10px;
}  
.subpage83 ul {
width: 100%;
display: flex;
list-style: none;
flex-wrap: wrap;
}
.subpage83 ul li {
width: 100%;
line-height: 1.6;
margin: 0 0 15px 0;
padding-left: 3rem;
text-indent: -3rem;
}
.subpage83 ul li:last-child {
margin: 0;
}    
.subpage83 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;
}
    
.subpage84{
display: flex;
flex-direction: row;
flex-wrap: wrap;
column-gap: 80px;
} 
.subpage85{
flex: 1;
}     
.subpage86{
width: 250px;
}     
.subpage86 img{
width: 100%;
}    
      
/* subpage */












/* access */

.access__w{
width: 1000px;
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 70px 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.4rem;
letter-spacing: 0.05;
}

.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%;
padding: 25px;
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%;
}

.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;    
}
.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 */







/* dooctor */

.doctor1{
width: 800px;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}

.doctor2{
width: 300px;
}

.doctor2 img{
width: 100%;
border-radius: 5px;
}

.doctor3{
width: calc(100% - 350px);
display: flex;
flex-wrap: wrap;
border: 1px solid #454458;
padding: 20px 0 40px;
background: #fff;
justify-content: center;
align-items: center;
margin: 50px 0;
border-radius: 5px;
}

.doctor4{
font-size: 2.2rem;
line-height: 1.4;
margin: 15px 0 10px 0;
color: #454458;
font-weight: 700;
width: 100%;
letter-spacing: .1rem;
text-align: center;
font-family: 'Zen Old Mincho', serif;
}

.doctor5{
font-size: 4.8rem;
margin: 0 0 10px 0;
color: #454458;
width: 100%;
font-weight: 700;
font-family: 'Zen Old Mincho', serif;
text-align: center;
}

.doctor6{
font-size: 1.4rem;
font-family: 'Zen Old Mincho', serif;
text-align: center;
width: 100%;
color: #454458;
font-style: italic;
letter-spacing: .3rem;
font-weight: 300;
}

.doctor6{
width: 100%;
margin: 0 0 0 0;
}


.doctor7{

}

.doctor7 h3{
font-size: 2.2rem;
text-align: center;
color: #4c4948;
letter-spacing: .2rem;
font-weight: 700;
font-family: 'Zen Old Mincho', serif;
}

.doctor8{
background: #fff;
border-radius: 10px;
padding: 50px 70px;
width: 1000px;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}

.doctor9{
width: 1000px;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}

.doctor10{
width: 100%;
}

.doctor11{

}

.doctor11 h3{
font-size: 2.2rem;
color: #4c4948;
letter-spacing: .2rem;
margin: 0 0 10px 0;
font-weight: 700;
font-family: 'Zen Old Mincho', serif;
text-align: center;
}

.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: #323232;
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;
}

/* dooctor */






/* 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;
margin: 0 0 40px 0;
}


.about3{
width: 100%;
margin: 0 0 15px 0;
}

.about3 img{
width: 100%;
border-radius: 30px 10px 1px 1px;
}

.about4{
width: 100%;
font-size: 2.2rem;
text-align: center;
font-family: 'Zen Maru Gothic', sans-serif;
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::before{
content: "";
display: block;
margin: 0 auto 8px;
background: url("../images/ic_nav1.svg");
width: 50px;
height: 50px;
/*filter: drop-shadow(2px 2px 3px #187a2b);*/
}

.nav2::before{
content: "";
display: block;
margin: 0 auto 8px;
background: url("../images/ic_nav2.svg");
width: 50px;
height: 50px;
}

.nav3::before{
content: "";
display: block;
margin: 0 auto 8px;
background: url("../images/ic_nav3.svg");
width: 50px;
height: 50px;
}

.nav4::before{
content: "";
display: block;
margin: 0 auto 8px;
background: url("../images/ic_nav4.svg");
width: 50px;
height: 50px;
}

.nav5::before{
content: "";
display: block;
margin: 0 auto 8px;
background: url("../images/ic_nav5.svg");
width: 50px;
height: 50px;
}

.nav6::before{
content: "";
display: block;
margin: 0 auto 8px;
background: url("../images/ic_nav6.svg");
width: 50px;
height: 50px;
}

.nav7::before{
content: "";
display: block;
margin: 0 auto 7px;
background: url("../images/ic_nav7.svg");
width: 50px;
height: 50px;
}

.nav8::before{
content: "";
display: block;
margin: 0 auto 7px;
background: url("../images/ic_nav8.svg");
width: 50px;
height: 50px;
}



/*HeightMinというクラス名がついたら高さを小さく、上部固定に*/
#fixnav.HeightMin{
	position: fixed;
    z-index: 999;/*最前面へ*/
	animation: DownAnime 0.5s forwards;
  top: 0;
  width: 100%;
  text-align: center;
}

#fixnav{
background: #caeace;
}


/*nav*/





/*topdoctor*/

.topdoctor__w{
width: 100%;
background: #d8f7e0;
padding: 100px 0 100px;
}

.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;
font-family: 'Zen Maru Gothic', sans-serif;
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;
font-family: 'Zen Maru Gothic', sans-serif;
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;
}








/*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;
font-family: 'Zen Maru Gothic', sans-serif;
width: 100%;
}

.toppcr4{
width: 900px;
margin: 0 auto 50px;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}

.toppcr5{
width: 500px;
font-family: 'Zen Maru Gothic', sans-serif;
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: #323232;
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: #323232;
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;
font-family: 'Zen Maru Gothic', sans-serif;
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;
}





.inspection_list li{
    list-style: none;
   text-indent: -1em;
   padding-left: 1em;
}



.recruit_w {
display: flex;
width: 100%;
margin: 0 0 30px;
flex-direction: column;
align-items: center;
}
.recruit_ttl {
    font-size: 2.3rem;
    color: #f57b43;
    font-weight: bold;
    flex: 1;
    background: #fff1ea;
    padding: 30px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.recruit_img {
        width: 400px;
        margin: 0 0 30px;
}  
.recruit_img img{
    width: 100%;
}      
.recruit_tbl {
    width: 100%;
}
.recruit_tbl table {
    width: 100%;
    margin: 0 auto;
    border: 1px solid #ccc;
}
.recruit_tbl table td {
    border: 1px solid #ccc;
    padding: 15px 20px;
    vertical-align: middle;
}
.recruit_tbl table tr td:first-child {
    width: 20%;
    text-align: center;
    background: #f7f7f7;
    font-size: 1.7rem;
}
    .top_bnr_w {
        width: 100%;
        background: #f5f5f5;
        padding: 50px 0 50px;
    }    
.top_bnr{
    margin: 0 auto 30px;
        text-align: center;
        display: flex;
        justify-content: space-between;
        width: 1200px;
}
.top_bnr a{
    width: 48%;
}  
.top_bnr a img{
    width: 100%;
    border: solid 1px #ccc;
}    
    
    
    .contact_list{

        width: 100%;
        border-top: 1px solid #e6e6e6;

    } 
    .contact_list th {
        width: 55%;
        background-color: #e5f5ee;
        text-align: center;
    }
        .contact_list td, .contact_list th {
        padding: 1.5rem  2rem;
        border: 1px solid #e6e6e6;
    }
        .contact_list td {
        width: 45%;
        padding-right: 2rem;
    }
    
    .subpage_contact_bnr{
        width: 480px;
        margin: 30px 0 0;
    }
        .subpage_contact_bnr a img {
        width: 100%;
        border: solid 1px #ccc;
    }
}
/* PC */



@keyframes DownAnime{
  from {
  	opacity: 0;
	transform: translateY(-170px);
  }
  to {
  	opacity: 1;
	transform: translateY(0);
  }
}








































































/* sp */
@media screen and (max-width:750px) {

/* header */

header{
width: 100%;
}

.header1{
  width: calc(100% - 20px);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 2vw 0 0;
}

.header2{
width: 50%;
}

.header2 h1{

}

.header2 h1 a{
padding: 3vw 3vw;
display: block;
}

.header2 h1 a2 img{
width: 100%;
}

.header3{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
padding: 5vw 0;
background: linear-gradient(90deg, #f3f9ff, #f6fbff);
}

.header4{
width: 100%;
text-align: center;
margin: 0 0 2vw 0;
}

.header4 a{
width: 100%;
display: block;
font-size: 3rem;
color: #002c5a;
font-weight: 900;
line-height: 1;
}

.header4 a span{

}

.header4 a span::before{
content: "";
background: url("../images/ic_tel.svg");
display: inline-block;
width: 2.1rem;
height: 2.1rem;
margin: 0 1.5vw 0 0;
vertical-align: bottom;
}

.header5{
display: flex;
align-items: center;
justify-content: center;
width: 50%;    
}

.header7{
    background: #ec6d81;
    text-align: center;
    padding: .5vw 2vw;
    color: #fff;
    font-size: 1rem;
    letter-spacing: .02rem;
    border-bottom: 2px solid #dadada;
    display: inline-block;
    font-family: 'Zen Maru Gothic';
    border-radius: 50px;
}

.header8{
width: 100%;
padding: 1vw 12vw 1vw 2vw;
background: #fff;
font-size: 1rem;
font-weight: 500;
line-height: 1.3;
color: #1a7617;
}

.header9{
width: 100%;
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
}


/* header */









/* nav */

/*========= ナビゲーションのためのCSS ===============*/

#g-nav{
/*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
position:fixed;
z-index: -1;
opacity: 0;/*はじめは透過0*/
/*ナビの位置と形状*/
top:0;
width:100%;
height: 100vh;/*ナビの高さ*/
background: #edf1e2;
/*動き*/
transition: all 0.3s;
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive{
opacity: 1;
z-index:999;
}

/*ナビゲーションの縦スクロール*/
#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 1vw;
}

#g-nav li a{
color: #ffffff;
text-decoration: none;
padding: .5vw 1.5vw;
display: block;
text-transform: uppercase;
letter-spacing: 0.05rem;
font-weight: 500;
font-size: 1.4rem;
border-radius: 100px;
background: #36a34b;
}

#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:1vw;
right: 1vw;
cursor: pointer;
width: 50px;
height:50px;
}

/*×に変化*/	
.openbtn span{
display: inline-block;
transition: all .4s;
position: absolute;
left: 14px;
height: 3px;
border-radius: 2px;
background-color: #36a34b;
width: 45%;
}

.active span{
display: inline-block;
transition: all .4s;
position: absolute;
left: 14px;
height: 3px;
border-radius: 2px;
background-color: #36a34b !important;
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;
}




/* 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: 100%;
height: 100%;
object-fit: cover;
}




/* slider */










/* pagetop */


#page-top {
position: fixed;
bottom: 30vw;
right: 0;
z-index: 99;
opacity: .9;
}
#page-top a {
width: 8vw;
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 */










/* medical */

.topmedical__w{
width: 100%;
padding: 12vw 0 8vw;
background: url(../images/medi_bg.jpg)left center;
background-size: cover;    
}

.topmedical1{
text-align: center;
margin: 0 0 12vw 0;
}

.topmedical1 h2{
font-size: 1.6rem;
font-weight: 400;
letter-spacing: .3rem;
color: #ffffff;
background: linear-gradient(45deg, #4dcb64, #27bb77);
width: 80%;
margin: 0 auto;
box-shadow: 8px 8px 0px rgb(66 198 106 / 20%);
text-align: right;
padding: 3vw 3vw;
}

.topmedical1 h2 span{
display: block;
position: relative;
}

.topmedical1 h2 span::before{
content: "MEDICAL";
display: block;
text-align: right;
font-size: 2.7rem;
letter-spacing: .6rem;
color: #fff;
font-weight: 400;
line-height: 1;
font-family: 'Zen Maru Gothic', sans-serif;
margin: 0 0 1vw 0;
}

.topmedical1 h2 span::after{
content: "";
background: url(../images/ic_medical.svg);
width: 10vw;
height: 10vw;
display: block;
top: -7vw;
left: 0;
position: absolute;
}

.topmedical2{
width: 90%;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: center;
justify-content: space-between;    
}
.topsubject_box {
    width: 48%;
    text-align: center;
    border-radius: 3px;
    background: #ecebe0;
    margin: 0 0 4vw 0;
}
.topsubject_box a {
    width: 100%;
    padding: 3vw 0 4vw;
    display: block;
    height: 100%;
    border-radius: 10px;
    background: #caeace;
    transition: all .3s;
    color: #28634c;
    position: relative;
} 
.topsubject_box a::before {
    content: "";
    position: absolute;
    display: block;
    background: url(../images/ic_arrow3.svg) no-repeat;
    width: 10px;
    height: 10px;
    right: 5px;
    bottom: 5px;
}    
.subjectic01 span::before {
    content: "";
    background: url(../images/ic_subjectic_01.svg);
    width: 15vw;
    height: 15vw;
    display: block;
    margin: 0 auto;
} 
.subjectic02 span::before {
    content: "";
    background: url(../images/ic_subjectic_02.svg);
    width: 15vw;
    height: 15vw;
    display: block;
    margin: 0 auto;
}  
.subjectic03 span::before {
    content: "";
    background: url(../images/ic_subjectic_03.svg);
    width: 15vw;
    height: 15vw;
    display: block;
    margin: 0 auto;
}  
.subjectic04 span::before {
    content: "";
    background: url(../images/ic_subjectic_04.svg);
    width: 15vw;
    height: 15vw;
    display: block;
    margin: 0 auto;
}  
.subjectic05 span::before {
    content: "";
    background: url(../images/ic_subjectic_05.svg);
    width: 15vw;
    height: 15vw;
    display: block;
    margin: 0 auto;
}  
.subjectic06 span::before {
    content: "";
    background: url(../images/ic_subjectic_06.svg);
    width: 15vw;
    height: 15vw;
    display: block;
    margin: 0 auto;
}  
.subjectic07 span::before {
    content: "";
    background: url(../images/ic_subjectic_07.svg);
    width: 15vw;
    height: 15vw;
    display: block;
    margin: 0 auto;
}  
.subjectic08 span::before {
    content: "";
    background: url(../images/ic_subjectic_08.svg);
    width: 15vw;
    height: 15vw;
    display: block;
    margin: 0 auto;
}  
.subjectic09 span::before {
    content: "";
    background: url(../images/ic_subjectic_09.svg);
    width: 15vw;
    height: 15vw;
    display: block;
    margin: 0 auto;
}  
.subjectic10 span::before {
    content: "";
    background: url(../images/ic_subjectic_10.svg);
    width: 15vw;
    height: 15vw;
    display: block;
    margin: 0 auto;
}  
.subjectic11 span::before {
    content: "";
    background: url(../images/ic_subjectic_11.svg);
    width: 15vw;
    height: 15vw;
    display: block;
    margin: 0 auto;
}  
.subjectic12 span::before {
    content: "";
    background: url(../images/ic_subjectic_12.svg);
    width: 15vw;
    height: 15vw;
    display: block;
    margin: 0 auto;
}      
.topmedical3{
width: 32%;
box-shadow: 5px 5px 5px #F7F6F4;
border-radius: 30px 10px 30px 10px;
opacity: 1;
padding: 0 0 10px 0;
margin: 0 1% 12vw 0;
}

.topmedical4{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
position: relative;
margin: 0 0 0 0;
}

.topmedical4 a{
display: block;
width: 100%;
border-radius: 2px 2px 2px 2px;
}


.topmedical5{
position: absolute;
z-index: 2;
width: 100%;
left: 50%;
bottom: -40px;
transform: translateX(-50%);
}

.topmedical5b{
display: block;
width: 92%;
margin: 0 auto;
background: #fff;
text-align: center;
font-size: 1.4rem;
font-weight: 500;
padding: 3vw 0;
font-family: 'Zen Maru Gothic', serif;
position: relative;
  box-shadow: 2px 2px 1px rgb(106 199 122);

}

.topmedical5b span{
}

.topmedical5b span::before{
content: "";
position: absolute;
display: block;
background: url("../images/ic_arrow3.svg") no-repeat;
width: 3vw;
height: 3vw;
right: 1vw;
bottom: 1vw;
}

.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 4vw 0;
}

.topmedical8 a{
width: 93%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
position: relative;
background: #fff;
margin: 0 auto;
align-items: center;
border-radius: 2px 2px 10px 2px;
padding: 1vw 1vw;
}

.topmedical9{
width: 20%;
}

.topmedical9 img{
width: 100%;
}

.topmedical10{
width: 75%;
}

.topmedical11{
width: 100%;
font-size: 1.6rem;
text-align: center;
font-weight: 500;
}

.topmedical11 span{
position: relative;
width: 100%;
display: block;
}

.topmedical11 span::after{
content: "";
background: url("../images/ic_arrow2.svg") no-repeat;
display: inline-block;
width: 1.4rem;
height: 1.4rem;
margin: 0 0 0 1vw;
vertical-align: baseline;
position: absolute;
right: 0;
top: .7rem;
}

.topmedical12{
width: 100%;
font-size: 1.3rem;
letter-spacing: 0;
line-height: 1.7;
margin: 0 0 4vw 0;
}



/* medical */







/* news */

.topnews__w{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
background: #f8f9fa;
}

.topnews1{
text-align: center;
background: url("../images/topnewsbg.jpg") right center;
background-size: cover;
padding: 10vw 0;
width: 100%;
}

.topnews2{
text-align: center;
}

.topnews2 h2{
font-size: 1.6rem;
font-weight: 400;
letter-spacing: .3rem;
color: #ffffff;
  background: linear-gradient(45deg, #4dcb64, #27bb77);
width: 80%;
margin: 0 auto;
box-shadow: 8px 8px 0px rgb(223 233 243 / 60%);
text-align: right;
padding: 3vw 3vw;
}

.topnews2 h2 span{
}

.topnews2 h2 span::before{
content: "NEWS";
display: block;
text-align: right;
font-size: 2.7rem;
letter-spacing: .6rem;
color: #fff;
font-weight: 400;
line-height: 1;
font-family: 'Zen Maru Gothic', sans-serif;
margin: 0 0 1vw 0;
}


.topnews3{
width: 100%;
background: #f8f9fa;
}

.topnews4{
width: 100%;
padding: 5vw 5vw;
}

.topnews4 iframe{
width: 100%;
height: 100vw;
}

.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.2rem;
    color: #9697A6;
    margin: 0 0 0 0;
}
.newskiji3 {
    width: 100%;
}
.newskiji4 {
    width: 100%;
    font-size: 1.6rem;
    color: #28634c;
    margin: 0 0 1vw 0;
    line-height: 1.4;
} 
.newskiji5 {
    width: 100%;
    line-height: 1.4;
    font-size: 1.3rem;
}    
/* news */







.topcovid19__w{
    width: 100%;
    background: #f5f5f5;
    padding: 8vw 0 8vw;
}

.infection_w {
    overflow: hidden;
    width: 85%;
    padding: 0 0 5vw;
    background: #ffffff;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 5px 0 #e2e2e2;
}
.infection0 {
    text-align: center;
    color: #ffffff;
    font-size: 1.7rem;
    letter-spacing: .1rem;
    line-height: 1.5;
    padding: 1vw 0;
    background: #28634c;
    border-radius: 100px;
    width: 90%;
    margin: 4vw auto;
}
.infection1 {
    width: 85%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}
.infection2 {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.infection3 {
    width: 40%;
    margin: 2vw auto 2vw;
}
.infection3 img {
    width: 100%;
}
.infection4 {
    width: 100%;
    font-size: 1.6rem;
    letter-spacing: .1rem;
    line-height: 1.5;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 0 2vw;
    padding: 1vw 0 1vw;
    background: #f8f8f8;
    border: #cdcdcd 1px solid;
    border-radius: 10px;
}
.infection5 {
    letter-spacing: .05rem;
    font-size: 1.3rem;
    text-align: justify;
    line-height: 1.5;
    margin: 0 0 5vw;
}
.infection5.last {
    letter-spacing: .05rem;
    font-size: 1.3rem;
    text-align: justify;
    line-height: 1.5;
    margin: 0;
}




/* timetable */

.toptimetable__w{
width: 100%;
padding: 12vw 0 6vw;
background: url(../images/toptimetablebg.jpg) right center;
background-size: cover;
}

.toptimetable1{
text-align: center;
margin: 0 0 10vw 0;
}

.toptimetable1 h2{
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: .3rem;
  color: #ffffff;
  background: linear-gradient(45deg, #4dcb64, #27bb77);
  width: 80%;
  margin: 0 auto;
  box-shadow: 8px 8px 0px rgb(66 198 106 / 20%);
  text-align: right;
  padding: 3vw 3vw;
}

.toptimetable1 h2 span{
display: block;
position: relative;
}

.toptimetable1 h2 span::before{
  content: "TIMETABLE";
display: block;
text-align: right;
font-size: 2.7rem;
letter-spacing: .3rem;
color: #fff;
font-weight: 400;
line-height: 1;
font-family: 'Zen Maru Gothic', sans-serif;
margin: 0 0 1vw 0;
}

.toptimetable1 h2 span::after{
content: "";
background: url("../images/ic_timetable.svg");
width: 10vw;
height: 10vw;
display: block;
top: -7vw;
left: 0;
position: absolute;
}


.toptimetable3{
}

.toptimetable4{
padding: 3vw 0;
}

.toptimetable4a{
background: url(../images/toptimetable1.png) no-repeat left top;
background-size: 60vw 30vw;
}

.toptimetable4b{
background: url(../images/toptimetable2.png) no-repeat right top;
background-size: 60vw 30vw;
}

.toptimetable4c{
background: url(../images/toptimetable3.png) no-repeat left top;
background-size: 60vw 30vw;
}

.toptimetable4d{
background: url(../images/toptimetable4.png) no-repeat left top;
background-size: 60vw 30vw;
}

.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: 2.2rem;
font-weight: 700;
font-family: 'Zen Old Mincho', serif;
margin: 0 0 10vw 0;
width: 100%;
letter-spacing: .3rem;
text-shadow:
3px 3px 3px #fff, -3px -3px 3px #fff,
-3px 3px 3px #fff,  3px -3px 3px #fff,
3px 0px 3px #fff, -3px -0px 3px #fff,
0px 3px 3px #fff,  0px -3px 3px #fff;
line-height: 1.4;
}

.toptimetable7{
width: 100%;
}

table.toptimetable8{
width: 90%;
background: #fff;
margin: 0 auto;
border: 2px solid #28634c;    
}

table.toptimetable8 th{
background: #28634c;
text-align: center;
font-weight: 500;
font-size: 1.2rem;
padding: 1.5vw 0;
line-height: 1;
width: 10%;
border: 1px solid #cdcdcd;
color: #fff;
}

table.toptimetable8 th:first-child{
width: 23%;
}

table.toptimetable8 td{
background: #fdfdfd;
text-align: center;
font-weight: 700;
font-size: 1.2rem;
padding: 1vw 0;
line-height: 1;
width: 11%;
color: #28634c;
border: 1px solid #e1e1e1;
vertical-align: middle;
}

table.toptimetable8 td:first-child{
    width: 23%;
    color: #000;
    background: #f5f4f4;
}

table.toptimetable8 tr{

}

.toptimetable9{
width: 90%;
margin: 0 auto;
text-align: right;
padding: 0 1vw 0 0;
font-size: 1.4rem;
}



table.toptimetable8 td.toptimetable10a{
color: #fff;
text-align: center;
font-size: 1.6rem;
font-family: 'Zen Maru Gothic', serif;
letter-spacing: .15rem;
padding: 1.5vw 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.6rem;
font-family: 'Zen Maru Gothic', serif;
letter-spacing: .15rem;
padding: 1.5vw 0;
background: linear-gradient(90deg, #01aee4, #01aee4);
line-height: 1;
font-weight: 500;
}

.toptimetable11{
font-size: 1.1rem;
letter-spacing: -.05rem;
font-weight: 700;
}

.toptimetable12{
width: 100%;
text-align: center;
}

.toptimetable12 > .closed{
display: inline-block;
text-align: center;
padding: .2vw 2vw;
background: #fff;
font-size: 1.3rem;
color: #ef6276;
border-radius: 3px;
border: 1px solid #ef6276;
margin: 0 0 2vw;    
}
.toptimetable12 > .repletion {
    width: 90%;
    margin: 0 auto;
    text-align: left;
}
.toptimetable12 > .repletion p{
padding-left:1em;
text-indent:-1em;
}      
.toptimetable12_f{
width: 100%;
text-align: center;
}

.toptimetable12_f  > .closed{
display: inline-block;
text-align: center;
padding: .2vw 2vw;
background: #fff;
font-size: 1.3rem;
color: #ef6276;
border-radius: 3px;
border: 1px solid #ef6276;
margin: 0 0 1vw;    
}
.toptimetable12_f > .repletion {
    width: 90%;
    margin: 0 auto;
    text-align: left;
} 
.toptimetable12_f > .repletion p{
padding-left:1em;
text-indent:-1em;
}       
.toptimetable13{
width: 100%;
text-align: center;
}

.toptimetable13 span{
display: inline-block;
text-align: center;
padding: 1vw 3vw;
background: #fff;
font-size: 1.3rem;
color: #1ea189;
border-radius: 5px;
border: 2px solid #1ea189;
line-height: 1.3;
}

.toptimetable14{
width: 100%;
text-align: center;
}

.toptimetable14 a{
  display: inline-block;
  border: 1px solid #1ea189;
  box-shadow: 4px 4px 10px #ced1d8;
  width: 60%;
  box-sizing: content-box;
}

.toptimetable14 a:hover{
opacity: .7;
}

.toptimetable14 a img{
width: 100%;
}

.toptimetable15{
width: 100%;
text-align: center;
}

.toptimetable15 span{
  display: inline-block;
  text-align: center;
  padding: 1vw 3vw;
  background: #ffffff;
  font-size: 1.3rem;
  color: #1fa189;
  border: 1px solid #1fa189;
  letter-spacing: 0.005rem;
}

.toptimetable16{
    display: block;
    transform: rotate(90deg);
    margin: .5vw 0;
}


.toptimetable18{
width: 100%;
margin: 0 auto;
}

.toptimetable18 a{
width: 100%;
display: block;
text-align: center;
}


.toptimetable18 a img{
  width: 60%;
  box-shadow: 10px 10px 15px #bfbfbf;
  border-radius: 5px;
}




/* timetable */












/* feature */
.feature__w {
    width: 100%;
    padding: 12vw 0 20vw;
    background: #eae7da url(../images/fea_bg.svg);
    background-repeat: repeat;
    background-size: 30%;
}    
.feature1 {
    text-align: center;
    margin: 0 0 12vw 0;
}
.feature1 h2 {
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: .3rem;
    color: #ffffff;
    background: linear-gradient(45deg, #937165, #583428);
    width: 80%;
    margin: 0 auto;
    box-shadow: 8px 8px 0px rgb(97 55 42 / 20%);
    text-align: right;
    padding: 3vw 3vw;
}
.feature1 h2 span {
    display: block;
    position: relative;
}
.feature1 h2 span::before {
    content: "FEATURE";
    display: block;
    text-align: right;
    font-size: 2.7rem;
    letter-spacing: .6rem;
    color: #fff;
    font-weight: 400;
    line-height: 1;
    font-family: 'Zen Maru Gothic', sans-serif;
    margin: 0 0 1vw 0;
}
.feature1 h2 span::after {
    content: "";
    background: url(../images/ic_feature.svg);
    width: 10vw;
    height: 10vw;
    display: block;
    top: -7vw;
    left: 0;
    position: absolute;
}    
.feature1_box {
    position: relative;
    margin-bottom: 25vw;
}
.feature1_i {
    width: 100%;
}
.feature1_i img {
    width: 70%;
}
.feature1_bg {
    background: #fff;
    position: absolute;
    bottom: -20vw;
    right: 0;
    width: 80%;
    padding: 5vw;
    box-shadow: 10px 10px 10px #e0ddca;;
}
.feature1_hh {
    color: #28634c;
    font-size: 1.6rem;
    line-height: 1.4;
    letter-spacing: 0.1rem;
    font-weight: 700;
    margin: 0 0 3vw 0;
}
.feature1_hh span {
    border-bottom: 2px dashed #f39800;
}    
.feature1_h {
    color: #3c3c3d;
    font-size: 1.3rem;
    letter-spacing: .1rem;
    line-height: 1.6;
}
.feature2_box {
    position: relative;
    margin-bottom: 25vw;
}
.feature2_i {
    width: 100%;
    text-align: right;
}
.feature2_i img {
    width: 70%;
}
.feature2_bg {
    background: #fff;
    position: absolute;
    bottom: -20vw;
    left: 0;
    width: 80%;
    padding: 5vw;
    box-shadow: -10px 10px 10px #e0ddca;
}
.feature2_hh {
    color: #28634c;
    font-size: 1.6rem;
    line-height: 1.4;
    letter-spacing: 0.1rem;
    font-weight: 700;
    margin: 0 0 3vw 0;
}
.feature2_hh span {
    border-bottom: 2px dashed #f39800;
}       
.feature2_h {
    color: #3c3c3d;
    font-size: 1.3rem;
    letter-spacing: .1rem;
    line-height: 1.6;
}
.feature3_box {
    position: relative;
    margin-bottom: 30vw;
}
.feature3_i {
    width: 100%;
}
.feature3_i img {
    width: 70%;
}
.feature3_bg {
    background: #fff;
    position: absolute;
    bottom: -35vw;
    right: 0;
    width: 80%;
    padding: 5vw;
    box-shadow: 10px 10px 10px #e0ddca;
}
.feature3_hh {
    color: #28634c;
    font-size: 1.6rem;
    letter-spacing: 0.1rem;
    font-weight: 700;
    margin: 0 0 3vw 0;
}
.feature3_hh span {
    border-bottom: 2px dashed #f39800;
}       
.feature3_h {
    color: #3c3c3d;
    font-size: 1.3rem;
    letter-spacing: .1rem;
    line-height: 1.6;
}    
/* feature */    



















/* 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: #fff;
}

.footer__w{
width: 100%;
display: flex;
flex-wrap: wrap;
}

.footer1{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
background: #fff;
padding: 12vw 0 5vw;
padding: 6vw 0 5vw;

}

.footer2{
width: 100%;
text-align: center;
margin: 0 0 5vw 0;
}

.footer2 img{
width: 70%;
}

.footer3{
width: 90%;
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
margin: 0 auto 5vw;
}

.footer4{
display: block;
font-weight: 500;
font-size: 1.2rem;
letter-spacing: 0.05rem;
background: #36a34c;
color: #fff;
text-align: center;
padding: .3vw 2vw;
margin:  0 1vw 1vw 0;
/*width: 32%;*/
border-radius: 2px;
}

.footer5{
width: 100%;
text-align: center;
margin: 0 0 6vw 0;
}

.footer6{
width: 100%;
font-weight: 500;
font-size: 1.4rem;
letter-spacing: 0.05rem;

}


.footer7{
width: 100%;
}


.footer7 a{
width: 100%;
display: block;
font-size: 3.5rem;
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: 2.7rem;
height: 2.7rem;
margin: 0 2vw 0 0;
vertical-align: bottom;
}

.footer8{
width: 90%;
text-align: center;
margin: 0 auto 6vw;
}

.footer9{
font-size: 1.2rem;
font-weight: 500;
padding: 1vw 1vw;
margin: 0 auto;
border-radius: 3px;
background: #f5f5f5;
width: 90%;
}


.footer10{
display: inline-block;
background: #ffffff;
text-align: center;
  padding: .2vw 1vw;
margin: 0 2vw 0 0;
color: #36a34c;
border-radius: 3px;
font-size: 1.2rem;
letter-spacing: 0;
border: 1px solid #36a34c;
  width: 8rem;
}

.footer11{
font-size: 1.2rem;
font-weight: 500;
padding: 1vw 1vw;
margin: 0 auto 2vw;
border-radius: 3px;
background: #f5f5f5;
width: 90%;
}

.footer12{
  display: inline-block;
  background: #ffffff;
  text-align: center;
  padding: .2vw 1vw;
  margin: 0 2vw 0 0;
  color: #f57b43;
  border-radius: 3px;
  font-size: 1.2rem;
  letter-spacing: 0;
  border: 1px solid #f57b43;
  width: 8rem;
}

.footer13{
  font-size: 1.2rem;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

.footer14{
  margin: 0 auto 5vw;
  width: 90%;
  text-align: center;
}
.footer14 img{
  width: 100%;
}

.footer15{
    margin: 0 auto;
    width: 100%;
    text-align: center;
    background: #fffdf1;
      padding: 6vw 0;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
}

.footer16{
  margin: 0 0 5vw 0;
  width: 90%;
  text-align: center;
}
.footer16 img{
    width: 100%;
    box-shadow: 4px 4px 10px #DCD8BE;
}

.footer16:last-child{
  margin: 0 0 0 0;
}

.footerbnr__w{
  width: 90%;
    display: flex;
    justify-content: center;
    background: #fff;
    margin: 5vw auto 0;
    flex-wrap: wrap;
}
.footerbnr__w a:first-child{
  margin: 0 auto 15px;
}
.footerbnr__w a:nth-child(2){
border: solid 1px #ccc;
}    
.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: #f5f5f5;
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{
font-weight: 500;
font-size: 1.2rem;
}

.sitemap3{
font-size: 1.2rem;
padding: 0 0 0 3vw;
}

.sitemap3 a{
display: block;
width: 100%;
}

.googlemaps__w{
width: 100%;
text-align: center;
margin: 0 0 10vw 0;
}

.googlemaps__w iframe{
width: 90%;
height: 45vh;
}




/* footer */






/* copyright */


.copyright {
  width: 100%;
  padding: 1vw 0;
  background: #ededed;
  text-align: center;
  font-size: 1.1rem;
  margin: 0 0 18vw 0;
  color: #525252;
}



/* copyright */






/* sp footer */

.spfooternav__w{
width: 100%;
display: flex !important;
justify-content: space-between;
position: fixed;
bottom: 0;
z-index: 10;
height: 18vw;

}

.spfooternav1{
width: 80%;
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
padding: 3vw 0;
background: linear-gradient(315deg, #36a34b, #1e8d33);
}

.spfooternav1 a{
font-size: 2.6rem;
line-height: 1.5;
color: #fff;
display: flex;
align-items: center;
justify-content: center;
width: 100%;
}

.spfooternav1 a span{
font-weight: 900;

}

.spfooternav1 a span::before{
content: "";
background: url("../images/ic_tel_white.svg") no-repeat;
display: inline-block;
width: 2rem;
height: 2rem;
vertical-align: middle;
margin-right: .5rem;
}

.spfooternav2{
width: 20%;
display: flex;
align-items: center;
justify-content: center;
background: #f7f7f7;
}

.spfooternav2 a{
padding: 2vh 0;
display: flex;
align-items: center;
justify-content: center;
width: 100%;
font-size: 1.2rem;
color: #24282c;
letter-spacing: -0.05rem;
}

.spfooternav2 a span::before{
content: "";
background: url("../images/ic_access.svg") no-repeat;
display: block;
width: 2.5rem;
height: 2.5rem;
margin: 0 auto 1vw;
}




.spfooternav2 a span{

}

.spfooternav3{
width: 20%;
display: flex;
align-items: center;
justify-content: center;
background: #f7f7f7;
}

.spfooternav3 a{
padding: 2vh 0;
display: flex;
align-items: center;
justify-content: center;
width: 100%;
font-size: 1.1rem;
color: #24282c;
letter-spacing: 0rem;
}

.spfooternav3 a span{

}

.spfooternav3 a span::before{
content: "";
background: url("../images/ic_map.svg") no-repeat;
display: block;
width: 2.2rem;
height: 2.2rem;
margin: 0 auto 1vw;
}

.spfooternav5{
font-size: 1.2rem;
color: #fff;
display: flex;
align-items: center;
justify-content: center;
width: 100%;
letter-spacing: 0.025rem;
margin: 0 0 0 0;
line-height: 1;
}


/* sp footer */









/* subpage */

.subpagetitle__w{
width: 100%;
padding: 5vw 0;
position: relative;

}

.subpagetitle__w::after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}

.subpagetitle__w1{
background: #ebd5c8 url(../images/subpagetitle1.jpg) left center no-repeat;
background-size: cover;
}

.subpagetitle__w2{
background: #ebd5c8 url(../images/subpagetitle2.jpg) left center no-repeat;
background-size: cover;
}

.subpagetitle__w3{
background: #ebd5c8 url(../images/subpagetitle3.jpg) left center no-repeat;
background-size: cover;
}

.subpagetitle__w4{
background: #ebd5c8 url(../images/subpagetitle4.jpg) left center no-repeat;
background-size: cover;
}

.subpagetitle__w5{
background: #ebd5c8 url(../images/subpagetitle5.jpg) left center no-repeat;
background-size: cover;
}


.subpagetitle1{
text-align: center;
position: relative;
z-index: 100;
}

.subpagetitle1 h2{
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: .1rem;
    color: #ffffff;
    line-height: 1.2;
    display: inline-block;
    background: rgb(30 170 57 / 70%);
    padding: 3vw 0;
    border-radius: 5px;
    width: 70%;
        text-shadow: 4px 4px 5px #1eaa39;

}

.subpagetitle1 h2 span{
}

.subpagetitle1 h2 span::after{
    display: block;
    text-align: center;
    font-size: 1rem;
    letter-spacing: .3rem;
    border-top: 1px solid #caeace;
    width: 80%;
    margin: 1.5vw auto 0;
    padding: 1.5vw 0 0 0;
    color: #caeace;
    font-weight: 500;
    line-height: 1.2;
    font-family: 'Zen Old Mincho', serif;
    white-space: pre-wrap;
}

.subpagetitle1a h2 span::after{
content: "MEDICAL";
}

.subpagetitle1b h2 span::after{
content: "INSPECTION";
}

.subpagetitle1c h2 span::after{
content: "DOCTOR";
}

.subpagetitle1d h2 span::after{
content: "FACILITY";
}

.subpagetitle1e h2 span::after{
content: "ACCESS";
}

.subpagetitle1f h2 span::after{
content: "NEWS";
}

.subpagetitle1g h2 span::after{
content: "RECRUIT";
}

.subpagetitle1h h2 span::after{
content: "CONTACT LENS";
}    

.subpagetitle1i h2 span::after{
content: "TRAINING";
}    
    
.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__w{
width: 100%;
background: #f5f5f5;
padding: 10vw 0 10vw;
}

.subpage1{
width: 95%;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
background: #fff;
padding: 6vw 5vw 6vw;
box-shadow: 15px 15px 5px #ededed;
border-radius: 30px 10px 30px 10px;
}

.subpage2{
width: 100%;
margin: 0 0 5vw 0;
}

.subpage2 h2{
font-size: 2.2rem;
font-weight: 700;
letter-spacing: .1rem;
line-height: 1.3;
text-align: center;
  color: #524b48;
  border-bottom: 15px solid #f7f7f7;
padding: 0 0 5vw 0;
}


.subpage3{
width: 100%;
padding: 0 1vw;
line-height: 1.8;
}

.subpage3 h4{
font-size: 1.5rem;
letter-spacing: .04rem;
line-height: 1.2;
padding:0 0 2vw;
font-weight: 500;
font-family: YakuHanRP, 'Zen Maru Gothic', serif;
}    
    
.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: #f5f5f5;
border-radius: 10px;
}

.subpage5 ul{
width: 100%;
}

.subpage5 ul li{
width: 100%;
line-height: 1.8;
margin: 0 0 2vw 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: 1.6;
margin: 0 0 2vw 0;
padding-left: 2.2rem;
text-indent: -2.2rem;
}

.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: 48%;
margin: 0 0 4vw 0;
}

.subpage7 ul li:last-child{
margin: 0 0 0 0;
}

.subpage7 ul li a{
display: block;
width: 100%;
margin: 0 auto;
background: #1eaa39;
padding: 2vw 0;
text-align: center;
letter-spacing: -.005rem;
color: #fff;
box-shadow: 6px 6px 15px #ebebeb;
font-weight: 500;
font-size: 1.4rem;
line-height: 1.4;
position: relative;
}

.subpage7 ul li a:hover{
transform: translateY(-3px);
opacity: .5;
}

.subpage7 ul li a span{
width: 100%;
display: block;
text-align: center;
}

.subpage7 ul li span::after{
content: "";
background: url("../images/ic_arrow4.svg");
display: block;
width: 1.2rem;
height: 1.2rem;
transform: rotate(90deg);
opacity: .9;
margin: 1.5vw auto 0;
}

.subpage8{
width: 100%;
}

.subpage8::before{
content: '';
    display: block;
    padding-bottom: 1rem;
    background-image: repeating-linear-gradient(90deg, #ffddd7 0, #ffddd7 3px, #fff 3px, #fff 6px);
    background-repeat: no-repeat;
    background-size: 100% 0.5rem;
}

.subpage8 h3{
font-size: 2rem;
letter-spacing: .1rem;
line-height: 1.5;
padding: 5vw 1vw 5vw;
font-weight: 500;
color: #28634c;
font-family: YakuHanRP, 'Zen Maru Gothic', serif;
}

/*.subpage8 h3:first-letter{
color: #009f88;
}*/


.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: #927ab9;
color: #fff;
text-align: center;
padding: 1.5vw 5vw;
border-radius: 3px;
position: absolute;
font-size: 1.6rem;
line-height: 1.2;
}

.subpage12{
padding: 2vw 0 0 0;
font-size: 1.4rem;
line-height: 2;
}

.subpage13{
display: inline-block;
margin: -4.5rem 0 0 0;
background: #1eaa39;
color: #fff;
padding: 1.5vw 3vw;
border-radius: 3px;
position: absolute;
font-size: 1.6rem;
line-height: 1.2;
}

.subpage14{
display: inline-block;
margin: -4.5rem 0 0 0;
background: #7dadd4;
color: #fff;
text-align: center;
padding: 1.5vw 5vw;
border-radius: 3px;
position: absolute;
font-size: 1.6rem;
line-height: 1.2;
}

.subpage15{
width: 100%;
line-height: 1.8;
}

.subpage16{
width: 100%;
}

.subpage16 span{
line-height: 1.8;
font-size: 1.5rem;
font-weight: 700;
display: block;
padding: 1vw 3vw;
letter-spacing: 0.1rem;
background: #fff;
color: #213546;
border-left: 10px solid #7dadd4;
font-family: 'Zen Old Mincho', serif;
}

.subpage17{
width: 100%;
}

.subpage17 span{
line-height: 1.8;
font-size: 1.5rem;
font-weight: 700;
display: inline-block;
padding: 1vw 4vw;
letter-spacing: .1rem;
background: #ffffff;
border-bottom: 1px solid #47c8af;
}


.subpage18{
width: 100%;
}

.subpage19{
width: 100%;
position: relative;
padding: 30px 30px;
background: #f5f5f5;
border-radius: 10px;
}

.subpage19 ul{
width: 100%;
}

.subpage19 ul li{
width: 100%;
line-height: 2;
margin: 0 0 5px 0;
}

.subpage19 ul li:last-child{
margin: 0 0 0 0;
}

.subpage19 ul li span{
width: 100%;
}

.subpage19 ul li span::before{

}

.subpage20{
display: inline-block;
margin: -5.5rem 0 0 0;
background: #fbfdd5;
color: #25cf40;
text-align: center;
padding: 2vw 5vw;
border-radius: 3px;
position: absolute;
font-size: 1.6rem;
line-height: 1.4;
border: 2px solid #25cf40;
font-weight: 700;
}

.subpage21::before{
content: "";
display: inline-block;
background: url("../images/ic_check4.svg");
width: 2rem;
height: 2rem;
margin: 0 10px 0 0;
vertical-align: sub;
}

.subpage22{
display: inline-block;
margin: -5.5rem 0 0 0;
background: #0ba524;
color: #fff;
text-align: center;
padding: 2vw 5vw;
border-radius: 3px;
position: absolute;
font-size: 1.6rem;
line-height: 1.4;
}

.subpage23::before{
content: "";
display: inline-block;
background: url("../images/ic_check5.svg");
width: 2rem;
height: 2rem;
margin: 0 1vw 0 0;
vertical-align: sub;
}


.subpage24{
width: 100%;
margin: 0 auto 3vw;
text-align: center;
}

.subpage24 a{
display: inline-block;
background: linear-gradient(90deg, #1ea189, #0cbd7c);
text-align: center;
font-size: 1.4rem;
font-weight: 500;
color: #fff;
border-radius: 200px;
line-height: 1;
padding: 3vw 7vw;
box-shadow: 7px 7px 20px #9ff4c2;
letter-spacing: .05rem;
}

.subpage24 a span::before{
content: "";
background: url("../images/ic_arrow1.svg") no-repeat;
display: inline-block;
width: 1.3rem;
height: 1.3rem;
margin: 0 1.5vw 0 0;
vertical-align: middle;
}

.subpage25{
width: 100%;
font-size: 1.6rem;
font-family: 'Zen Old Mincho', serif;
padding: 6vw 3vw;
background: #f1fff6;
}


.subpage26{
display: inline-block;
padding: 0 0 0 5vw;
}

.subpage26::first-letter{
color: #009f88;
display: inline-block;
font-weight: 900;
font-size: 2.2rem;
margin: 0 1vw 0 0;
}

.subpage27{
display: inline-block;
padding: 0 0 0 8vw;
}

.subpage27::first-letter{
color: #00a341;
display: inline-block;
font-weight: 900;
font-size: 2.2rem;
margin: 0 1vw 0 0;
}

.subpage28{
display: inline-block;
padding: 0 0 0 12vw;
}

.subpage28::first-letter{
color: #36a34b;
display: inline-block;
font-weight: 900;
font-size: 2.2rem;
margin: 0 1vw 0 0;
}


.subpage29{
width: 100%;
}

.subpage29 span{
line-height: 1.8;
font-size: 1.4rem;
font-weight: 500;
display: inline-block;
padding: .5vw 5vw;
letter-spacing: .1rem;
background: #ffffff;
border: 1px solid #7cb1db;
color: #499de1;
border-radius: 200px;
}

.subpage30{
width: 100%;
padding: 4vw 4vw;
display: flex;
flex-wrap: wrap;
background: #fffee7;
    border-radius: 5px;
}


.subpage31{
width: 100%;
color: #e95446;
margin: 0 0 2vw 0;
font-size: 1.7rem;
text-align: center;
}

.subpage32{
width: 100%;
font-size: 1.3rem;
color: #4a2811;
line-height: 1.5;
}

.subpage33{
width: 100%;
text-align: center;
}

.subpage34{
width: 100%;
}

.subpage34 span{
display: block;
padding: 3vw 4vw;
color: #ffffff;
font-size: 1.8rem;
font-weight: 500;
margin: 0 0 5vw 0;
background: linear-gradient(90deg, #009f88, #3f9fcb);
border-radius: 3px 13px 3px 13px;
line-height: 1.5;
}

.subpage35{
width: 100%;
}

.subpage35 img{
width: 100%;
border-radius: 3px;
}

.subpage36{
width: 100%;
position: relative;
padding: 30px 30px;
background: #f5f5f5;
border-radius: 10px;
}

.subpage36 ul{
width: 100%;
}

.subpage36 ul li{
width: 100%;
line-height: 2;
margin: 0 0 5px 0;
}

.subpage36 ul li:last-child{
margin: 0 0 0 0;
}

.subpage36 ul li span{
width: 100%;
}

.subpage36 ul li span::before{
content: "";
display: inline-block;
background: url("../images/ic_cross.svg");
width: 2rem;
height: 2rem;
margin: 0 10px 0 0;
vertical-align: sub;
}

.subpage37{
  display: inline-block;
  margin: -4.5rem 0 0 0;
  background: #ef506b;
  color: #fff;
  padding: 1.5vw 3vw;
  border-radius: 3px;
  position: absolute;
  font-size: 1.6rem;
  line-height: 1.2;
}



.subpage38{
width: 100%;
margin: 0 0 3vw 0;
padding: 2vw 3vw;
font-size: 1.8rem;
font-weight: 700;
color: #009f88;
border-bottom: 1px solid #e5e5e5;
}


.subpage39{
width: 100%;
margin: 0 0 2vw 0;
padding: 0 0 0 2vw;
}

.subpage39 span{
display: inline-block;
text-align: center;
padding: 1vw 5vw;
border-radius: 200px;
font-size: 1.5rem;
color: #009f88;
font-weight: 700;
border: 1px solid #009f88;
}


.subpage40{
width: 100%;
font-size: 2.5rem;
font-family: 'Zen Old Mincho', serif;
padding: 0 0 0 6vw;
font-weight: 700;
}

.subpage41{
font-size: 1.5rem;
font-weight: 400;
display: inline-block;
margin: 0 0 0 1vw;
}

.subpage42{
font-size: 1.4rem;
font-weight: 500;
padding: 0 0 0 6vw;
width: 100%;
}

.subpage43{
width: 100%;
display: flex;
flex-wrap: wrap;
}

.subpage44{
width: 100%;
margin: 0 0 2vw 0;
}

.subpage44 span{
display: inline-block;
background: #009f88;
color: #fff;
padding: .5vw 1.5vw;
border-radius: 3px;
margin: 0 2vw 0 0;
}

.subpage45{
width: 100%;
margin: 0 0 3vw 0;
}

.subpage45:last-child{
margin: 0 0 0 0;
}

.subpage45 span{
display: inline-block;
background: #fff;
color: #009f88;
padding: .5vw 1.5vw;
border-radius: 3px;
margin: 0 2vw 0 0;
border: solid 1px #009f88;
}

.subpage46{
width: 100%;
margin: 0 auto;
}

.subpage46 img{
width: 100%;
}


.subpage47{
width: 100%;
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}

.subpage48{
text-align: center;
font-size: 2rem;
width: 100%;
  color: #009f88;
  font-family: 'Zen Old Mincho', serif;
  letter-spacing: .2rem;
    font-weight: 500;
    margin: 0 0 6vw 0;
}

.subpage49{
    font-size: 2.2rem;
    font-weight: 900;
    color: #009f88;
    letter-spacing: .05rem;
    font-family: YakuHanJP, 'Zen Kaku Gothic New', sans-serif;
    line-height: 1.4;
}

.subpage50{
width: 100%;
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}

.subpage51{
  width: 100%;
  padding: 2vw 4vw;
  background: #f4f0e1;
  margin: 0 0 4vw 0;
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 3px;
  color: #3c2f19;
}

.subpage52{
  width: 100%;
}

.subpage53 span{
  font-size: 1.4rem;
  background: #fff;
  padding: 1vw 2vw;
  color: #eb7777;
  border-radius: 5px;
  display: inline-block;
  font-weight: 700;
  border: solid 1px #eb7777;
  line-height: 1.3;
}

.subpage54{
  width: 100%;
color: #eb7777;
  font-size: 1.5rem;
margin: 0 0 1vw 0;
}

.subpage55{
  width: 100%;
  font-size: 1.3rem;
  color: #383618;
  line-height: 1.5;
}

.subpage56{
width: 100%;
}

table.subpage57{
width: 100%;
}

table.subpage57 th{
 display: block;
}

table.subpage57 td{
 display: block;
}

.subpage58{
width: 100%;
vertical-align: middle;
padding: 2vw 2vw;
background: #f6f6f6;
  font-size: 1.4rem;
  line-height: 1.4;
}

.subpage59{
width: 100%;
padding: 1vw 2vw;
vertical-align: middle;
  font-size: 1.3rem;
}

.subpage60{
    width: 100%;
    padding: 0 2vw 1vw;
    vertical-align: middle;
    font-size: 1.4rem;
    font-weight: 700;
    border-bottom: 1px solid #e9e9e9;
    text-align: right;
}

.subpage61{
font-size: 1.2rem;
font-weight: 500;
display: inline-block;
background: #fff;
padding: .2vw 2vw;
text-align: center;
color: #4a6396;
margin: 1vw 0 0 0;
border: 1px solid #c5cddd;
}

.subpage62{
width: 100%;
margin: 0 0 10px 0;
}

.subpage62 a{
display: block;
width: 100%;
background: #fff;
padding: 2vw 2vw;
font-size: 1.4rem;
line-height: 1.3;
}

.subpage62 a span{
display: inline-block;
color: #5779bc !important;
}

.subpage62 a span::before{
content: "";
display: inline-block;
margin: 0 10px 0 0;
background: url("../images/ic_link.svg");
width: 1.5rem;
height: 1.5rem;
}

.subpage63{
display: inline-block;
margin: -4.5rem 0 0 0;
background: #47c8af;
color: #fff;
padding: 2vw 3vw;
border-radius: 3px;
position: absolute;
font-size: 1.6rem;
line-height: 1.2;
width: 88%;
}


.subpage64{
width: 100%;
}

.subpage64 img{
width: 100%;
border-radius: 3px;
}

.subpage65{
width: 100%;
text-align: center;
}

.subpage65 img{
width: 70%;
border-radius: 3px;
}

.subpage66{
width: 100%;
vertical-align: middle;
padding: 2vw 2vw;
background: #f6f6f6;
}

.subpage67{
width: 100%;
padding: 1vw 2vw;
vertical-align: middle;
  font-size: 1.3rem;
}

.subpage68{
width: 100%;
padding: 1vw 2vw;
  vertical-align: middle;
  border-bottom: 1px solid #e9e9e9;
}

.subpage69{
  width: 100%;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 0 2vw 0;
}

.subpage69:last-child{

}


.subpage70{
  width: 10rem;
  display: inline-block;
  padding: 0 1vw;
  text-align: center;
  border: 1px solid #059f88;
  margin: 0 2vw 0 0;
  background: #059f88;
  color: #fff;
  border-radius: 2px;
  font-size: 1.3rem;
  font-weight: 700;
}

.subpage71{
  width: 8rem;
margin: 0 0 0 0;
text-align: right;
}



.subpage72{
width: 100%;
text-align: center;
}

.subpage72 a{
width: 100%;
text-align: center;
display: block;
}

.subpage72 a img{
width: 100%;
  box-shadow: 5px 5px 10px #c7f5d1;
}
.subpage73{
width: 100%;
}    
.subpage73 h3 {
font-size: 1.6rem;
CONTAIN-INTRINSIC-BLOCK-SIZE: AUTO 100PX;
line-height: 1.2;
font-family: YakuHanRP, 'Zen Maru Gothic', serif;
font-weight: 500;
padding: 0.5em 0.5em 0.5em 0.7em;
border-left: solid 5px #1eaa39;
margin: 0 0 2rem;
border-bottom: 1px solid #cbcbcb;
}
.subpage74{
display: flex;
flex-direction: column;
flex-wrap: wrap;
margin: 0 0 2rem;
} 
.subpage75{
width: 80%;
margin: 0 auto;
padding: 0 0 3rem;    
}     
.subpage75 img{
width: 100%;
}    
.subpage76{
flex: 1;
}    
.subpage77{
padding: 1.5em 2em;
border: 1px solid #f8ab9e;
border-radius: 10px;
display: flex;
flex-direction: column;
flex-wrap: wrap;
column-gap: 40px;
background: #fff9f8;
width: 100%;
} 
.subpage78{
flex: 1;
}
.subpage79{
width: 100%;
margin: 0 0 20px;
}     
.subpage79 img{
width: 100%;
}  
.subpage80{
display: block;
font-size: 1.6rem;
letter-spacing: .04rem;
line-height: 1.2;
margin: 0 0 2rem;
position: relative;
padding: 0 0 0 1.3em;
}  
.subpage80::before{
display: block;
position: absolute;
top: .3rem;
left: 0;
width: 1.2rem;
height: 1.2rem;
background-color: #f8ab9e;
content: '';
}  
.subpage81{
display: flex;
grid-row-gap: 2rem;
margin: 0 0 5rem;
width: 100%;
flex-direction: column;
}     

.subpage82 {
font-size: 1.7rem;
padding: 0 0 5px 0;
margin: 0 0 3rem;
position: relative;
border-bottom: 3px solid #efefef;
width: 100%;
line-height: 1.7;
}   
.subpage82::before {
content: '';
position: absolute;
bottom: -3px;
width: 15%;
height: 3px;
background: #1eaa39;
}  
.subpage83 {
width: 100%;
position: relative;
padding: 30px 30px;
background: #f5f5f5;
border-radius: 10px;
}  
.subpage83 ul {
width: 100%;
display: flex;
list-style: none;
flex-wrap: wrap;
}
.subpage83 ul li {
width: 100%;
line-height: 1.6;
margin: 0 0 15px 0;
padding-left: 3rem;
text-indent: -3rem;
}
.subpage83 ul li:last-child {
margin: 0;
}    
.subpage83 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;
}
.subpage84{
display: flex;
flex-direction: column;
flex-wrap: wrap;
margin: 0 0 2rem;
} 
.subpage85{
flex: 1;
padding: 0 0 3rem;    
}  
    
.subpage86{
width: 80%;
margin: 0 auto;   
}     
.subpage86 img{
width: 100%;
}    





/* subpage */












/* 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 10vw 0;
}

.access2{
width: 100%;
text-align: center;
margin: 0 0 7vw 0;
}

.access2 img{
width: 50%;
}

.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;
}

.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%;
margin: 0 0 10vw 0;
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;
}

.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;
}    
.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 */



/* 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: 40%;
border-radius: 3px;
}

.doctor3{
width: 80%;
display: flex;
flex-wrap: wrap;
border: 1px solid #454458;
padding: 4vw 0;
background: #fff;
justify-content: center;
margin: 0 auto;
border-radius: 5px;
}

.doctor4{
font-size: 1.6rem;
line-height: 1.2;
margin: 0 0 1vw 0;
color: #454458;
font-weight: 700;
width: 100%;
letter-spacing: .4rem;
text-align: center;
font-family: 'Zen Old Mincho', serif;
}

.doctor5{
font-size: 2.8rem;
margin: 0 0 1vw 0;
color: #454458;
width: 100%;
font-weight: 700;
font-family: 'Zen Old Mincho', serif;
text-align: center;
}

.doctor6{
font-size: 1.4rem;
font-family: 'Zen Old Mincho', serif;
text-align: center;
width: 100%;
color: #454458;
font-style: italic;
letter-spacing: .3rem;
font-weight: 300;
}

.doctor6{
width: 100%;
margin: 0 0 0 0;
}


.doctor7{

}

.doctor7 h3{
font-size: 1.7rem;
text-align: center;
color: #4c4948;
letter-spacing: .2rem;
margin: 0 0 2vw 0;
font-weight: 700;
font-family: 'Zen Old Mincho', serif;
}

.doctor8{
background: #fff;
border-radius: 10px;
padding: 3vw 5vw;
width: 90%;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}

.doctor9{
width: 100%;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}

.doctor10{
width: 100%;
}

.doctor11{

}

.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: #323232;
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;
}


/* 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;
margin: 0 0 5vw 0;
}

.about2:nth-child(2n){
margin: 0 0% 5vw 0;
}

.about3{
width: 100%;
margin: 0 0 2vw 0;
}

.about3 img{
width: 100%;
border-radius: 30px 10px 1px 1px;
}

.about4{
width: 100%;
font-size: 1.3rem;
padding: 0 2vw;
font-family: 'Zen Maru Gothic', sans-serif;
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;
}

/* 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: #d8f7e0;
padding: 10vw 0;
}

.topdoctor1{
text-align: center;
margin: 0 0 12vw 0;
}

.topdoctor1 h2{
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: .3rem;
  color: #ffffff;
  background: linear-gradient(45deg, #4dcb64, #27bb77);
  width: 80%;
  margin: 0 auto;
  box-shadow: 15px 15px 0px rgb(66 198 106 / 20%);
  text-align: right;
  padding: 3vw 3vw;
}

.topdoctor1 h2 span{
display: block;
position: relative;
}

.topdoctor1 h2 span::before{
  content: "GREETING";
  display: block;
  text-align: right;
  font-size: 2.7rem;
  letter-spacing: .6rem;
  color: #fff;
  font-weight: 400;
  line-height: 1;
  font-family: 'Zen Maru Gothic', sans-serif;
  margin: 0 0 1vw 0;
}

.topdoctor1 h2 span::after{
content: "";
background: url("../images/ic_nav1.svg");
width: 10vw;
height: 10vw;
display: block;
top: -7vw;
left: -7vw;
position: absolute;
filter: drop-shadow(4px 4px 3px #469C57);
}


.topdoctor2{
width: 90%;
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 5vw 0;
}

.topdoctor3 img{
width: 100%;
}

.topdoctor4{
width: 100%;
font-size: 1.8rem;
font-family: 'Zen Maru Gothic', sans-serif;
margin: 0 0 2vw 0;
text-align: center;
color: #36a34b;
font-weight: 700;
letter-spacing: -0.1rem;
transform: scaleY(1.05);
}

.topdoctor5{
width: 100%;
font-size: 1.3rem;
padding: 3vw 5vw 6vw;
line-height: 1.7;
}

.topdoctor6{
width: 100%;
font-size: 1.8rem;
text-align: right;
padding: 0 6vw 2vw 0;
font-family: 'Zen Old Mincho';
font-weight: 700;
}

.topdoctor7{
width: 100%;
font-size: 1.2rem;
text-align: right;
padding: 0 6vw 6vw 0;
}




/*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;
font-family: 'Zen Maru Gothic', sans-serif;
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%;
font-family: 'Zen Maru Gothic', sans-serif;
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: #323232;
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: #323232;
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*/






.inspection_list li{
   list-style: none;
   text-indent: -1em;
   padding-left: 1em;
}

    
.recruit_w {
            display: flex;
        width: 100%;
        margin: 0 0 3vw;
        flex-direction: column;
}
.recruit_ttl {
    font-size: 1.6rem;
    color: #f57b43;
    font-weight: bold;
    background: #fff1ea;
    padding: 30px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.recruit_img {
    width: 60%;
    margin: 0 auto 3vw;
}
.recruit_img img {
    width: 100%;
} 
.recruit_tbl {
    width: 100%;
}    
.recruit_tbl table {
    width: 100%;
    margin: 0 auto;
    border: 1px solid #ccc;
}
.recruit_tbl table td {
    border: 1px solid #ccc;
    padding: 1vw 3vw;
    vertical-align: middle;
}    
.recruit_tbl table tr td:first-child {
    width: 30%;
    text-align: center;
    background: #f7f7f7;
    font-size: 1.3rem;
} 
.top_bnr_w{
        width: 100%;
        background: #f5f5f5;
        padding: 8vw 0 8vw;
    }
.top_bnr{
    width: 90%;
        margin: 0 auto 0;
        text-align: center;
        display: flex;
        justify-content: space-around;
        flex-direction: column;
}
.top_bnr a{
    width: 100%;
}  
.top_bnr a:first-child{
    width: 100%;
    margin: 0 0 2rem 0;
}      
.top_bnr a img{
    width: 100%;
    border: solid 1px #ccc;
}   

.contact_list {
width: 100%;
border-top: 1px solid #e6e6e6;
}
.contact_list th {
width: 55%;
background-color: #e5f5ee;
text-align: center;
}
.contact_list td {
width: 45%;
padding-right: 1rem;
vertical-align: middle;
}
.contact_list td, .contact_list th {
padding: 1rem;
border: 1px solid #e6e6e6;
}
.subpage_contact_bnr{
width: 100%;
margin: 3rem auto 0;
}
.subpage_contact_bnr a img {
width: 100%;
border: solid 1px #ccc;
}
}
/* sp */


















/* print */
@media print and (min-width:1px) {
/* header */

header{
width: 100%;
display: flex;
align-items: center;
background: #fffdf4;
flex-wrap: wrap;
}

.header1{
width: 1100px;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
}

.header2{
width: 400px;
}

.header2 h1{

}

.header2 h1 a{

}

.header2 h1 a img{
width: 100%;
}

.header3{
text-align: center;
}

.header4{
}

.header4 a{
width: 100%;
display: block;
background: linear-gradient(90deg, #1ea189, #0cbd7c);
text-align: center;
font-size: 2rem;
font-weight: 500;
color: #fff;
border-radius: 200px;
line-height: 1;
padding: 20px 0;
box-shadow: 7px 7px 20px #9ff4c2;
letter-spacing: .05rem;
}

.header4 a span::before{
content: "";
background: url("../images/ic_arrow1.svg") no-repeat;
display: inline-block;
width: 1.5rem;
height: 1.5rem;
margin: 0 8px 0 0;
vertical-align: middle;
}

.header5{
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
}

.header6{
text-align: center;
}

.header6 a{
width: 100%;
display: block;
font-size: 4rem;
color: #4b4948;
font-weight: 900;
line-height: 1;
}

.header6 a span{

}

.header6 a span::before{
content: "";
background: url("../images/ic_tel.svg");
display: inline-block;
width: 3rem;
height: 3rem;
margin: 0 6px 0 0;
vertical-align: bottom;
}

.header7{
  background: #ec6d81;
  text-align: center;
  padding: 12px 22px 12px 22px;
  margin: 10px 0 8px 0;
  color: #fff;
  font-size: 1.8rem;
  letter-spacing: .05rem;
  border-bottom: 2px solid #dadada;
  display: inline-block;
  font-family: 'Zen Maru Gothic';
  border-radius: 50px;
}

.header8{
width: 100%;
padding: 5px 0;
text-align: center;
background: #28634c;
font-size: 1.5rem;
color: #fff;
border-bottom: 2px solid #28634c;
font-weight: 400;
}

.header9{
width: 100%;
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
padding: 35px 0;
}




/* header */















/* nav */


/*========= ドロップダウンのためのCSS ===============*/

/*==ナビゲーション全体の設定*/
nav{
text-align: center;
padding: 20px 0 20px;

}

/*ナビゲーションを横並びに*/
nav ul{
/*2階層目の基点にするためrelativeを指定*/
position: relative;
list-style: none;
display: flex;
justify-content: center;
width: 1280px;
margin: 0 auto;
border-radius: 6px;
}

nav ul li{
margin: 0 50px 0 0;
}

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;
  padding: 1px 1px 0 14px;
  transition: all .3s;
  font-size: 1.9rem;
  font-weight: 500;
  letter-spacing: .15rem;
  font-family: 'Zen Maru Gothic';
  /*text-shadow: 1px 1px 3px #237833;*/
}

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: 100%;
height: 100%;
object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev {
--swiper-navigation-color: #009f88; 
}

/* slider */









/* pagetop */


#page-top {
position: fixed;
bottom: 20px;
right: 20px;
z-index: 99;
}
#page-top a {
width: 60px;
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 */










/* medical */

.topmedical__w{
width: 100%;
padding: 100px 0 100px;
background: url("../images/medi_bg.jpg")center center;
background-size: cover;   
}

.topmedical1{
text-align: center;
margin: 0 0 90px 0;
}

.topmedical1 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;
}

.topmedical1 h2 span{
display: block;
position: relative;
}

.topmedical1 h2 span::before{
content: "MEDICAL";
display: block;
text-align: right;
font-size: 4.5rem;
letter-spacing: .6rem;
color: #fff;
font-weight: 400;
line-height: 1;
font-family: 'Zen Maru Gothic', sans-serif;
margin: 0 0 3px 0;
}

.topmedical1 h2 span::after{
content: "";
background: url("../images/ic_medical.svg");
width: 70px;
height: 70px;
display: block;
top: -40px;
left: 0;
position: absolute;
/*filter: drop-shadow(4px 4px 3px #469C57);*/
}

.topmedical2{
width: 1200px;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}

/*追加*/
.topsubject_box {
    width: 23.5%;
    text-align: center;
    border-radius: 10px;
    margin: 0 0 20px 0;
}
.topsubject_box a::before {
    content: "";
    position: absolute;
    display: block;
    background: url(../images/ic_arrow3.svg) no-repeat;
    width: 15px;
    height: 15px;
    right: 5px;
    bottom: 5px;
}    
.topsubject_box a {
    width: 100%;
    padding: 30px 0;
    display: block;
    height: 100%;
    border-radius: 3px;
    background: #caeace;
    transition: all .3s;
    color: #28634c;
    /*box-shadow: 6px 6px 3px #e5f5ff;*/
    /*border: 1px solid #28634c;*/
    position: relative;
}
.topsubject_t {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}
.topsubject_box a span {
    text-align: center;
    display: inline-block;
    font-size: 2.2rem;
    line-height: 1.6;
    letter-spacing: .1rem;
}
.subjectic01 span::before {
    content: "";
    background: url(../images/ic_subjectic_01.svg);
    width: 80px;
    height: 80px;
    display: block;
    margin: 0 auto;
}
.subjectic02 span::before {
    content: "";
    background: url(../images/ic_subjectic_02.svg);
    width: 80px;
    height: 80px;
    display: block;
    margin: 0 auto;
} 
.subjectic03 span::before {
    content: "";
    background: url(../images/ic_subjectic_03.svg);
    width: 80px;
    height: 80px;
    display: block;
    margin: 0 auto;
} 
.subjectic04 span::before {
    content: "";
    background: url(../images/ic_subjectic_04.svg);
    width: 80px;
    height: 80px;
    display: block;
    margin: 0 auto;
} 
.subjectic05 span::before {
    content: "";
    background: url(../images/ic_subjectic_05.svg);
    width: 80px;
    height: 80px;
    display: block;
    margin: 0 auto;
} 
.subjectic06 span::before {
    content: "";
    background: url(../images/ic_subjectic_06.svg);
    width: 80px;
    height: 80px;
    display: block;
    margin: 0 auto;
} 
.subjectic07 span::before {
    content: "";
    background: url(../images/ic_subjectic_07.svg);
    width: 80px;
    height: 80px;
    display: block;
    margin: 0 auto;
} 
.subjectic08 span::before {
    content: "";
    background: url(../images/ic_subjectic_08.svg);
    width: 80px;
    height: 80px;
    display: block;
    margin: 0 auto;
} 
.subjectic09 span::before {
    content: "";
    background: url(../images/ic_subjectic_09.svg);
    width: 80px;
    height: 80px;
    display: block;
    margin: 0 auto;
}   
.subjectic10 span::before {
    content: "";
    background: url(../images/ic_subjectic_10.svg);
    width: 80px;
    height: 80px;
    display: block;
    margin: 0 auto;
}   
.subjectic11 span::before {
    content: "";
    background: url(../images/ic_subjectic_11.svg);
    width: 80px;
    height: 80px;
    display: block;
    margin: 0 auto;
}   
.subjectic12 span::before {
    content: "";
    background: url(../images/ic_subjectic_12.svg);
    width: 80px;
    height: 80px;
    display: block;
    margin: 0 auto;
}       
/*追加*/    
    
.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 */







/* news */

.topnews__w{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
background: #f8f9fa;
}

.topnews1{
text-align: center;
background: url("../images/topnewsbg.jpg") left center;
background-size: cover;
padding: 80px 0 110px;
width: 500px;
}

.topnews2{
text-align: center;
margin: 0 0 90px 0;
}

.topnews2 h2{
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: .5rem;
  color: #ffffff;
  background: linear-gradient(45deg, #4dcb64, #27bb77);
  width: 550px;
  margin: 0 auto;
  box-shadow: 15px 15px 0px rgb(223 233 243 / 60%);
  text-align: right;
  padding: 18px 22px;
}

.topnews2 h2 span{
}

.topnews2 h2 span::before{
content: "NEWS";
display: block;
text-align: right;
font-size: 4.5rem;
letter-spacing: .6rem;
color: #fff;
font-weight: 400;
line-height: 1;
font-family: 'Zen Maru Gothic', sans-serif;
margin: 0 0 3px 0;
}


.topnews3{
width: calc(100% - 550px);
background: #f8f9fa;
}

.topnews4{
width: 700px;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
padding: 105px 0 70px 70px;
}



.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;
    color: #9697A6;
    margin: 0 0 0 0;
}  
.newskiji3 {
    width: 100%;
}
.newskiji4 {
    width: 100%;
    font-size: 2rem;
    color: #28634c;
    margin: 0 0 5px 0;
    font-weight: 700;
} 
.newskiji5 {
    width: 100%;
}    
/* news */













.topcovid19__w{
    width: 100%;
    background: #f5f5f5;
    padding: 100px 0 100px;
}
.infection_w {
    width: 1080px;
    padding: 0 0 40px;
    background: #ffffff;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 0 #e2e2e2;
}
.infection0 {
    text-align: center;
    color: #ffffff;
    font-size: 2.5rem;
    letter-spacing: .1rem;
    line-height: 1.5;
    padding: 10px 0;
    background: #28634c;
    border-radius: 100px;
    width: 90%;
    margin: 40px auto;
}
.infection1 {
    width: 95%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}
.infection2 {
    width: 28%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}
.infection3 {
    width: 60%;
    margin: 0 auto 30px;
}
.infection3 img {
    width: 100%;
}
.infection4 {
    width: 100%;
    font-size: 1.8rem;
    letter-spacing: .1rem;
    height: 75px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 0 15px;
    background: #f8f8f8;
    border: #cdcdcd 1px solid;
    border-radius: 15px;
}
.infection5 {
    letter-spacing: .05rem;
    font-size: 1.6rem;
    text-align: justify;
    line-height: 1.5;
}
    
    
    
/* timetable */

.toptimetable__w{
width: 100%;
padding: 80px 0 20px;
background: url("../images/toptimetablebg.jpg") right center;
background-size: cover;
}

.toptimetable1{
text-align: center;
margin: 0 0 90px 0;
}

.toptimetable1 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;
}

.toptimetable1 h2 span{
    display: block;
    position: relative;
}

.toptimetable1 h2 span::before{
content: "TIMETABLE";
display: block;
text-align: right;
font-size: 4.5rem;
letter-spacing: .3rem;
color: #fff;
font-weight: 400;
line-height: 1;
font-family: 'Zen Maru Gothic', sans-serif;
margin: 0 0 3px 0;
}

.toptimetable2 h2 span::after{
content: "";
background: url("../images/ic_timetable.svg");
width: 70px;
height: 70px;
display: block;
top: -40px;
left: 0;
position: absolute;
/*filter: drop-shadow(4px 4px 3px #469C57);*/
}


.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;
}

.toptimetable7{
width: 100%;

}

table.toptimetable8{
width: calc(90% + 6px);
background: #fff;
margin: 0 auto;
border: 2px solid #28634c;
}

table.toptimetable8 th{
  background: #28634c;
    text-align: center;
    font-weight: 500;
    font-size: 1.5rem;
    padding: 10px 0;
    line-height: 1;
    width: 10%;
    border: 1px solid #cdcdcd;
    color: #fff
}

table.toptimetable8 th:first-child{
width: 30%;
}

table.toptimetable8 td{
    background: #fdfdfd;
    text-align: center;
    font-weight: 500;
    font-size: 2rem;
    padding: 15px 0;
    line-height: 1;
    width: 10%;
    color: #28634c;
    letter-spacing: 0.05rem;
    border: 1px solid #e1e1e1;
    vertical-align: middle;
}

table.toptimetable8 td:first-child{
    width: 30%;
    color: #000;
    background: #f5f4f4;
}

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%;
text-align: center;
}

.toptimetable12 > .closed{
display: inline-block;
text-align: center;
padding: 3px 12px;
background: #fff;
font-size: 1.5rem;
color: #ef6276;
border-radius: 5px;
border: 1px solid #ef6276;
margin: 0 0 20px;    
}
.toptimetable12 > .repletion{
width: 600px;
margin: 0 auto;
text-align: left;
}
.toptimetable12_f{
text-align: center;
width: 500px;
margin: 0 auto;
}

.toptimetable12_f > .closed{
display: inline-block;
text-align: center;
padding: 3px 12px;
background: #fff;
font-size: 1.5rem;
color: #ef6276;
border-radius: 5px;
border: 1px solid #ef6276;
margin: 0 0 10px;    
}
.toptimetable12_f > .repletion{
width: 100%;
margin: 0 auto;
text-align: left;
font-size: 1.4rem;    
}    
.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;
}


/* timetable */





/* feature */
.feature__w {
    width: 100%;
    padding: 100px 0 100px;
    background: url("../images/fea_bg.svg");
    background-repeat: repeat;
    background-size: 15%;
}
    
.feature__wi {
    width: 1080px;
    margin: 0 auto;
}
.feature1 {
    text-align: center;
    margin: 0 0 90px 0;
}
.feature1 h2 {
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: .5rem;
    color: #ffffff;
    background: linear-gradient(45deg, #937165, #583428);
    width: 500px;
    margin: 0 auto;
    box-shadow: 15px 15px 0px rgb(97 55 42 / 20%);
    text-align: right;
    padding: 18px 22px;
} 
.feature1 h2 span {
    display: block;
    position: relative;
}
.feature1 h2 span::before {
    content: "FEATURE";
    display: block;
    text-align: right;
    font-size: 4.5rem;
    letter-spacing: .6rem;
    color: #fff;
    font-weight: 400;
    line-height: 1;
    font-family: 'Zen Maru Gothic', sans-serif;
    margin: 0 0 3px 0;
} 
.feature1 h2 span::after {
    content: "";
    background: url(../images/ic_feature.svg);
    width: 70px;
    height: 70px;
    display: block;
    top: -40px;
    left: 0;
    position: absolute;
    /*filter: drop-shadow(4px 4px 3px #469C57);*/
}    
.feature1_box {
    position: relative;
    height: 400px;
    margin-bottom: 60px;
}
.feature1_i {
    position: absolute;
    width: 600px;
}
.feature1_i img {
    width: 100%;
    border-radius: 120px 10px 70px 10px;
}
.feature1_bg {
    background: #fff;
    position: absolute;
    top: 90px;
    right: 0;
    width: 550px;
    padding: 65px 20px 75px 20px;
    box-shadow: 20px 20px 20px #e0ddca;
    border-radius: 3px
}
.feature1_hh {
    color: #28634c;
    font-size: 2.5rem;
    line-height: 1.4;
    letter-spacing: 0.1rem;
    text-align: center;
    font-weight: 700;
}
.feature1_hh span {
  border-bottom:2px dashed #f39800;
  padding: 0 0 10px;
}
.feature1_h {
    padding: 30px 0 0;
    color: #3c3c3d;
    font-size: 1.7rem;
    letter-spacing: .1rem;
    line-height: 1.8;
    text-align: center;
}
.feature2_box {
    position: relative;
    height: 400px;
    margin: 0 0 60px 0;
}
.feature2_i {
    position: absolute;
    right: 0;
    width: 600px;
}
.feature2_i img {
    width: 100%;
    border-radius: 20px 120px 10px 70px;
}
.feature2_bg {
    background: #fff;
    position: absolute;
    top: 90px;
    width: 550px;
    padding: 65px 20px 75px 20px;
    box-shadow: -20px 20px 20px #e0ddca;
    border-radius: 3px
}
.feature2_hh {
    color: #28634c;
    font-size: 2.5rem;
    line-height: 1.4;
    letter-spacing: 0.1rem;
    text-align: center;
    font-weight: 700;
}
.feature2_hh span {
  border-bottom:2px dashed #f39800;
  padding: 0 0 10px;
}    
.feature2_h {
    padding: 30px 0 0;
    color: #3c3c3d;
    font-size: 1.7rem;
    letter-spacing: .1rem;
    line-height: 1.8;
    text-align: center;
}
.feature3_box {
    position: relative;
    height: 400px;
    margin: 0;
}
.feature3_i {
    position: absolute;
    width: 600px;
}
.feature3_i img {
    width: 100%;
    border-radius: 120px 10px 70px 10px;
}
.feature3_bg {
    background: #fff;
    position: absolute;
    top: 90px;
    right: 0;
    width: 550px;
    padding: 65px 20px 75px 20px;
    box-shadow: 20px 20px 20px #e0ddca;
    border-radius: 3px
}
.feature3_hh {
    color: #28634c;
    font-size: 2.5rem;
    line-height: 1.4;
    letter-spacing: 0.1rem;
    text-align: center;
    font-weight: 700;
}
.feature3_hh span {
  border-bottom:2px dashed #f39800;
  padding: 0 0 10px;
}    
.feature3_h {
    padding: 30px 0 0;
    color: #3c3c3d;
    font-size: 1.7rem;
    letter-spacing: .1rem;
    line-height: 1.8;
    text-align: center;
}
/* feature */




/* 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 */











/* footer */
footer{
width: 100%;
background: #fff;
}

.footer__w{
width: 100%;
display: flex;
flex-wrap: wrap;
align-items: flex-start;
}

.footer__w2{
width: 100%;
display: flex;
flex-wrap: wrap;
align-items: flex-start;
}

.footer1{
width: 550px;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
background: #fff;
padding: 80px 0 0;
}

.footer2{
width: 100%;
text-align: center;
margin: 0 0 10px 0;
}

.footer2 img{
width: 300px;
}

.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.3rem;
  letter-spacing: 0.05rem;
  background: #36a34c;
  color: #fff;
  text-align: center;
  padding: 2px 5px;
  margin: 0 0 0 0;
  /*width: 19.2%;*/
  border-radius: 2px;
}

.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: 1.3rem;
margin: 0 0 15px 0;
}

.footer9{
  font-size: 1.5rem;
  font-weight: 500;
  padding: 8px 25px;
  margin: 0 auto;
  border-radius: 3px;
  background: #f5f5f5;
  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;
  padding: 8px 25px;
  margin: 0 auto 10px;
  border-radius: 3px;
  background: #f5f5f5;
  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;
}

.footerbnr__w{
  width: 500px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: #fff;
  margin: 30px auto 0;
}
.footerbnr__w a:first-child{
  margin: 0 auto 15px;
}
.footerbnr__w a:nth-child(2){
border: solid 1px #ccc;
}    
.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: #f5f5f5;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 30px 0 30px 0;
  width: 100%;
  margin: 60px 0 0 0;
}

.sitemap1{
margin: 0 2.8rem 0 0;
line-height: 2.7;
letter-spacing: .01rem;
}

.sitemap1:last-child{
margin: 0 0 0 0;
}

.sitemap2{
width: 100%;
font-weight: 500;
font-size: 1.5rem;
}

.sitemap3{
width: 100%;
font-size: 1.5rem;
line-height: 2.3;
}

.sitemap3 a{
display: block;
width: 100%;
}

.googlemaps__w{
width: calc(100% - 550px);
padding: 80px 0 0 20px;
}

.googlemaps__w iframe{
width: 90%;
height: 610px;
}




/* footer */






/* copyright */


.copyright {
width: 100%;
padding: 20px 0;
background: #36a34b;
text-align: center;
color: #fff;
font-size: 1.4rem;
}



/* copyright */













/* subpage */

.subpagetitle__w{
width: 100%;
padding: 60px 0;
position: relative;
}

.subpagetitle__w::after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}

/*.subpagetitle__w1{
background: #ebd5c8 url(../images/subpagetitle1.jpg) left center no-repeat;
background-size: contain;
}*/

.subpagetitle__w1{
background: #ebd5c8 url(../images/subpagetitle1.jpg) left center no-repeat;
background-size: cover;
}

.subpagetitle__w2{
background: #ebd5c8 url(../images/subpagetitle2.jpg) left center no-repeat;
background-size: cover;
}

.subpagetitle__w3{
background: #ebd5c8 url(../images/subpagetitle3.jpg) left center no-repeat;
background-size: cover;
}

.subpagetitle__w4{
background: #ebd5c8 url(../images/subpagetitle4.jpg) left center no-repeat;
background-size: cover;
}

.subpagetitle__w5{
background: #ebd5c8 url(../images/subpagetitle5.jpg) left center no-repeat;
background-size: cover;
}




.subpagetitle1{
text-align: center;
position: relative;
z-index: 10;
}

.subpagetitle1 h2{
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: .3rem;
    color: #fff;
    line-height: 1.2;
    display: inline-block;
    background: rgb(30 170 57 / 70%);
    padding: 35px 0;
    border-radius: 5px;
    width: 760px;
    text-shadow: 4px 4px 5px #1eaa39;
}

.subpagetitle1 h2 span{
}

.subpagetitle1 h2 span::after{
    display: block;
    text-align: center;
    font-size: 1.5rem;
    letter-spacing: .2rem;
    border-top: 1px solid #caeace;
    width: 50rem;
    margin: 12px auto 0;
    padding: 12px 0 0 0;
    color: #caeace;
    font-weight: 700;
    line-height: 1.2;
    white-space: pre-wrap;
    font-family: 'Zen Old Mincho', serif;
}

.subpagetitle1a h2 span::after{
content: "MEDICAL";
}

.subpagetitle1b h2 span::after{
content: "INSPECTION";
}

.subpagetitle1c h2 span::after{
content: "DOCTOR";
}

.subpagetitle1d h2 span::after{
content: "FACILITY";
}

.subpagetitle1e h2 span::after{
content: "ACCESS";
}

.subpagetitle1f h2 span::after{
content: "NEWS";
}

.subpagetitle1i h2 span::after{
content: "TRAINING";
}    




















.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: #f5f5f5;
padding: 80px 0 110px;
}

.subpage1{
width: 1000px;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
background: #fff;
padding: 60px 50px 70px;
box-shadow: 15px 15px 5px #ededed;
border-radius: 30px 10px 30px 10px;
}

.subpage2{
width: 100%;
margin: 0 0 50px 0;
}

.subpage2 h2{
  font-size: 3.7rem;
  font-weight: 700;
  letter-spacing: .3rem;
  line-height: 1;
  text-align: center;
  color: #524b48;
  border-bottom: 20px solid #f7f7f7;
padding: 0 0 30px 0;
}

.subpage3{
width: 100%;
padding: 0 10px;
line-height: 1.8;
}

.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: #f5f5f5;
border-radius: 10px;
}

.subpage5 ul{
width: 100%;
display: flex;
list-style: none;
flex-wrap: wrap;    
}

.subpage5 ul li{
width: 50%;
line-height: 1.6;
margin: 0 0 15px 0;
padding-left: 3rem;
text-indent: -3rem;
}

.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;
padding-left: 3rem;
text-indent: -3rem;
}

.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;
}

.subpage7{
width: 100%;
}

.subpage7 ul{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: flex-start;
}

.subpage7 ul li{
width: 45%;
margin: 0 3% 28px 0;
}

.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 a{
display: block;
width: 100%;
margin: 0 auto;
background: #1eaa39;
padding: 25px 0;
text-align: center;
letter-spacing: -.005rem;
color: #ffffff;
box-shadow: 6px 6px 15px #ebebeb;
font-weight: 500;
font-size: 2rem;
line-height: 1;
position: relative;
border-radius: 5px;
}

.subpage7 ul li a:hover{
transform: translateY(-3px);
opacity: .5;
}

.subpage7 ul li a span{
width: 100%;
}

.subpage7 ul li span::after{
content: "";
background: url("../images/ic_arrow4.svg");
display: inline-block;
width: 1.5rem;
height: 1.5rem;
position: absolute;
top: 30px;
right: 10px;
transform: rotate(90deg);
opacity: .9;
}

.subpage8{
width: 100%;
}

.subpage8::before{
  content: '';
  display: block; 
    padding-bottom: 1rem;
    background-image: repeating-linear-gradient(90deg, #ffddd7 0, #ffddd7 3px, #fff 3px, #fff 6px);
    background-repeat: no-repeat;
    background-size: 100% 0.5rem;

}

.subpage8 h3{
font-size: 2.7rem;
letter-spacing: .04rem;
line-height: 1.2;
padding: 50px 10px 60px;
font-weight: 500;
color: #28634c;
font-family: YakuHanRP, 'Zen Maru Gothic', serif;
}

/*.subpage8 h3:first-letter{
color: #009f88;
}*/


.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: -5.5rem 0 0 0;
background: #927ab9;
color: #fff;
text-align: center;
padding: 12px 30px;
border-radius: 3px;
position: absolute;
font-size: 1.8rem;
line-height: 1.4;
}

.subpage12{
padding: 12px 0 0 0;
font-size: 1.6rem;
line-height: 2;
}

.subpage13{
display: inline-block;
margin: -5.5rem 0 0 0;
background: #1eaa39;
color: #fff;
text-align: center;
padding: 12px 30px;
border-radius: 3px;
position: absolute;
font-size: 1.8rem;
line-height: 1.4;
}

.subpage14{
display: inline-block;
margin: -5.5rem 0 0 0;
background: #7dadd4;
color: #fff;
text-align: center;
padding: 12px 30px;
border-radius: 3px;
position: absolute;
font-size: 2rem;
line-height: 1.4;
}

.subpage15{
width: 100%;
line-height: 1.8;
}

.subpage16{
width: 100%;
}

.subpage16 span{
line-height: 1.8;
font-size: 2.2rem;
font-weight: 700;
display: block;
padding: 3px 20px;
letter-spacing: 0.1rem;
background: #fff;
color: #213546;
border-left: 10px solid #7dadd4;
font-family: 'Zen Old Mincho', serif;
}

.subpage17{
width: 100%;
}

.subpage17 span{
line-height: 1.8;
font-size: 1.8rem;
font-weight: 700;
display: inline-block;
padding: 6px 30px;
letter-spacing: .1rem;
background: #ffffff;
border-bottom: 1px solid #47c8af;
}

.subpage18{
width: 100%;
}

.subpage19{
width: 100%;
position: relative;
padding: 30px 30px;
background: #f5f5f5;
border-radius: 10px;
}

.subpage19 ul{
width: 100%;
}

.subpage19 ul li{
width: 100%;
line-height: 2;
margin: 0 0 5px 0;
}

.subpage19 ul li:last-child{
margin: 0 0 0 0;
}

.subpage19 ul li span{
width: 100%;
}

.subpage19 ul li span::before{

}

.subpage20{
display: inline-block;
margin: -5.5rem 0 0 0;
background: #fbfdd5;
color: #25cf40;
text-align: center;
padding: 12px 30px;
border-radius: 3px;
position: absolute;
font-size: 1.8rem;
line-height: 1.4;
border: 2px solid #25cf40;
font-weight: 700;
}

.subpage21::before{
content: "";
display: inline-block;
background: url("../images/ic_check4.svg");
width: 2rem;
height: 2rem;
margin: 0 10px 0 0;
vertical-align: sub;
}

.subpage22{
display: inline-block;
margin: -5.5rem 0 0 0;
background: #0ba524;
color: #fff;
text-align: center;
padding: 12px 30px;
border-radius: 3px;
position: absolute;
font-size: 1.8rem;
line-height: 1.4;
}

.subpage23::before{
content: "";
display: inline-block;
background: url("../images/ic_check5.svg");
width: 2rem;
height: 2rem;
margin: 0 10px 0 0;
vertical-align: sub;
}


.subpage24{
width: 320px;
margin: 0 auto 30px;
}

.subpage24 a{
width: 100%;
display: block;
background: linear-gradient(90deg, #1ea189, #0cbd7c);
text-align: center;
font-size: 2rem;
font-weight: 500;
color: #fff;
border-radius: 200px;
line-height: 1;
padding: 20px 0;
box-shadow: 7px 7px 20px #9ff4c2;
letter-spacing: .05rem;
}

.subpage24 a span::before{
content: "";
background: url("../images/ic_arrow1.svg") no-repeat;
display: inline-block;
width: 1.5rem;
height: 1.5rem;
margin: 0 8px 0 0;
vertical-align: middle;
}

.subpage25{
width: 100%;
font-size: 3rem;
font-family: 'Zen Old Mincho', serif;
padding: 30px 40px;
background: #f1fff6;
}


.subpage26{
display: inline-block;
padding: 0 0 0 50px;
}

.subpage26::first-letter{
color: #009f88;
display: inline-block;
font-weight: 900;
font-size: 5rem;
margin: 0 5px 0 0;
}

.subpage27{
display: inline-block;
padding: 0 0 0 150px;
}

.subpage27::first-letter{
color: #00a341;
display: inline-block;
font-weight: 900;
font-size: 5rem;
margin: 0 5px 0 0;
}

.subpage28{
display: inline-block;
padding: 0 0 0 250px;
}

.subpage28::first-letter{
color: #36a34b;
display: inline-block;
font-weight: 900;
font-size: 5rem;
margin: 0 5px 0 0;
}

.subpage29{
width: 100%;
}

.subpage29 span{
line-height: 1.8;
font-size: 1.6rem;
font-weight: 500;
display: inline-block;
padding: 4px 25px;
letter-spacing: .1rem;
background: #ffffff;
border: 1px solid #7cb1db;
color: #499de1;
border-radius: 200px;
}

.subpage30{
    width: 100%;
    padding: 23px 26px;
    display: flex;
    flex-wrap: wrap;
    background: #fffee7;
    border-radius: 5px;
}

.subpage31{
width: 100%;
color: #e95446;
margin: 0 0 15px 0;
font-size: 2.4rem;
text-align: center;
}

.subpage32{
width: 100%;
font-size: 1.5rem;
color: #4a2811;
}

.subpage33{
width: 100%;
text-align: center;
}

.subpage34{
width: 100%;
}

.subpage34 span{
display: block;
padding: 12px 40px;
color: #ffffff;
font-size: 2.3rem;
font-weight: 500;
margin: 0 0 40px 0;
background: linear-gradient(90deg, #009f88, #3f9fcb);
border-radius: 3px 13px 3px 13px;
}

.subpage35{
width: 600px;
}

.subpage35 img{
width: 100%;
border-radius: 3px;
}

.subpage36{
width: 100%;
position: relative;
padding: 30px 30px;
background: #f5f5f5;
border-radius: 10px;
}

.subpage36 ul{
width: 100%;
}

.subpage36 ul li{
width: 100%;
line-height: 2;
margin: 0 0 5px 0;
}

.subpage36 ul li:last-child{
margin: 0 0 0 0;
}

.subpage36 ul li span{
width: 100%;
}

.subpage36 ul li span::before{
content: "";
display: inline-block;
background: url("../images/ic_cross.svg");
width: 2rem;
height: 2rem;
margin: 0 10px 0 0;
vertical-align: sub;
}

.subpage37{
display: inline-block;
margin: -5.5rem 0 0 0;
background: #ef506b;
color: #fff;
text-align: center;
padding: 12px 30px;
border-radius: 3px;
position: absolute;
font-size: 1.8rem;
line-height: 1.4;
}



.subpage38{
width: 100%;
margin: 0 0 30px 0;
padding: 10px 30px;
font-size: 2.2rem;
font-weight: 700;
color: #009f88;
border-bottom: 1px solid #e5e5e5;
}


.subpage39{
width: 100%;
margin: 0 0 15px 0;
padding: 0 0 0 20px;
}

.subpage39 span{
display: inline-block;
text-align: center;
padding: 5px 40px;
border-radius: 200px;
font-size: 1.8rem;
color: #009f88;
font-weight: 700;
border: 1px solid #009f88;
}


.subpage40{
width: 100%;
font-size: 2.8rem;
font-family: 'Zen Old Mincho', serif;
padding: 0 0 0 60px;
font-weight: 700;
}

.subpage41{
font-size: 1.8rem;
font-weight: 400;
display: inline-block;
margin: 0 0 0 5px;
}

.subpage42{
font-size: 1.6rem;
font-weight: 500;
padding: 0 0 0 60px;
width: 100%;
}

.subpage43{
width: 100%;
display: flex;
flex-wrap: wrap;
}

.subpage44{
width: 100%;
margin: 0 0 15px 0;
}

.subpage44 span{
display: inline-block;
background: #009f88;
color: #fff;
padding: 2px 8px;
border-radius: 3px;
margin: 0 15px 0 0;
}

.subpage45{
width: 100%;
margin: 0 0 35px 0;
}

.subpage45:last-child{
margin: 0 0 0 0;
}

.subpage45 span{
display: inline-block;
background: #fff;
color: #009f88;
padding: 2px 8px;
border-radius: 3px;
margin: 0 15px 0 0;
border: solid 1px #009f88;
}

.subpage46{
width: 800px;
margin: 0 auto;
}

.subpage46 img{
width: 100%;
}




.subpage47{
width: 100%;
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}

.subpage48{
text-align: center;
font-size: 3.7rem;
width: 100%;
  color: #009f88;
  font-family: 'Zen Old Mincho', serif;
  letter-spacing: .5rem;
    font-weight: 500;
    margin: 0 0 40px 0;
}

.subpage49{
    font-size: 3.5rem;
    font-weight: 900;
    color: #009f88;
    letter-spacing: .005rem;
    font-family: YakuHanJP, 'Zen Kaku Gothic New', sans-serif;
    line-height: 1.2;
}

.subpage50{
width: 100%;
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}

.subpage51{
  width: 100%;
  padding: 20px 20px;
  background: #f4f0e1;
  margin: 0 0 25px 0;
  font-size: 1.8rem;
  font-weight: 700;
  border-radius: 3px;
  color: #3c2f19;
  text-align: center;
}

.subpage52{
text-align: center;
  width: 100%;
}

.subpage53 span{
  font-size: 1.7rem;
  background: #fff;
  padding: 3px 20px;
  color: #eb7777;
  border-radius: 5px;
  display: inline-block;
  font-weight: 700;
  border: solid 1px #eb7777;
}

.subpage54{
  width: 100%;
color: #eb7777;
  font-size: 1.7rem;
margin: 0 0 5px 0;
}

.subpage55{
    width: 100%;
    color: #383618;
    font-size: 1.5rem;
}



.subpage56{
width: 100%;
}

table.subpage57{
width: 100%;
}

table.subpage57 th{
border: 1px solid #e9e9e9;
}

table.subpage57 td{
border: 1px solid #e9e9e9;
height: 7rem;
}

.subpage58{
width: 25%;
vertical-align: middle;
padding: 10px 20px;
background: #f6f6f6;
}

.subpage59{
width: 55%;
padding: 10px 20px;
vertical-align: middle;
  font-size: 1.7rem;
}

.subpage60{
width: 20%;
padding: 10px 20px;
text-align: right;
  vertical-align: middle;
}

.subpage61{
font-size: 1.5rem;
font-weight: 500;
display: inline-block;
background: #fff;
padding: 1px 12px;
text-align: center;
color: #4a6396;
margin: 6px 0 0 0;
border: 1px solid #c5cddd;
}

.subpage62{
width: 100%;
margin: 0 0 10px 0;
}

.subpage62 a{
display: block;
width: 100%;
background: #fff;
padding: 20px 20px 25px;
font-size: 1.8rem;
}

.subpage62 a span{
display: inline-block;
border-bottom: 1px dotted #5779bc;
color: #5779bc !important;
}

.subpage62 a span::before{
content: "";
display: inline-block;
margin: 0 10px 0 0;
background: url("../images/ic_link.svg");
width: 1.5rem;
height: 1.5rem;
}

.subpage63{
display: inline-block;
margin: -5.5rem 0 0 0;
background: #47c8af;
color: #fff;
text-align: center;
padding: 12px 30px;
border-radius: 3px;
position: absolute;
font-size: 1.8rem;
line-height: 1.4;
width: 93%;
}

.subpage64{
width: 800px;
}

.subpage64 img{
width: 100%;
border-radius: 3px;
}

.subpage65{
width: 800px;
text-align: center;
}

.subpage65 img{
width: 50%;
border-radius: 3px;
}

.subpage66{
width: 25%;
vertical-align: middle;
padding: 10px 20px;
background: #f6f6f6;
}

.subpage67{
width: 38%;
padding: 10px 20px;
vertical-align: middle;
  font-size: 1.7rem;
}

.subpage68{
width: 37%;
padding: 10px 20px;
  vertical-align: middle;
}

.subpage69{
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 0 12px 0;
}

.subpage69:last-child{
  margin: 0 0 0 0;
}


.subpage70{
  width: 42%;
  display: inline-block;
  padding: 1px 0;
  text-align: center;
  border: 1px solid #059f88;
  margin: 0 15px 0 0;
  background: #059f88;
  color: #fff;
  border-radius: 2px;
  font-size: 1.5rem;
  font-weight: 700;
}

.subpage71{
width: 30%;
margin: 0 0 0 0;
text-align: right;
}

.subpage72{
width: 100%;
text-align: center;
}

.subpage72 a{
width: 100%;
text-align: center;
display: block;
}

.subpage72 a img{
  width: 728px;
  box-shadow: 5px 5px 10px #c7f5d1;
}
.subpage73{
width: 100%;
}    
.subpage73 h3 {
font-size: 2.3rem;
letter-spacing: .04rem;
line-height: 1.2;
font-family: YakuHanRP, 'Zen Maru Gothic', serif;
font-weight: 500;
padding: 0.5em 0.5em 0.5em 0.7em;
border-left: solid 5px #1eaa39;
margin: 0 0 40px;
border-bottom: 1px solid #cbcbcb;
}
.subpage74{
display: flex;
flex-direction: row;
flex-wrap: wrap;
column-gap: 80px;
margin: 0 0 50px;
} 
.subpage75{
width: 300px;
}     
.subpage75 img{
width: 100%;
}    
.subpage76{
flex: 1;
}    
.subpage77{
padding: 1.5em 2em;
border: 1px solid #f8ab9e;
border-radius: 10px;
display: flex;
flex-direction: column;
flex-wrap: wrap;
column-gap: 40px;
background: #fff9f8;
width: calc(100% / 2);
} 
.subpage78{
flex: 1;
}
.subpage79{
width: 100%;
margin: 0 0 20px;
}     
.subpage79 img{
width: 100%;
}  
.subpage80{
display: block;
font-size: 2rem;
letter-spacing: .04rem;
line-height: 1.2;
margin: 0 0 20px;
position: relative;
padding: 0 0 0 1.3em;
}  
.subpage80::before{
display: block;
position: absolute;
top: .6rem;
left: 0;
width: 1.3rem;
height: 1.3rem;
background-color: #f8ab9e;
content: '';
}  
.subpage81{
display: flex;
column-gap: 20px;
margin: 0 0 70px;
}     

.subpage82 {
font-size: 2.2rem;
padding: 0 0 5px 0;
margin: 0 0 3rem;
position: relative;
border-bottom: 3px solid #efefef;
width: 100%;
line-height: 2;
}   
.subpage82::before {
content: '';
position: absolute;
bottom: -3px;
width: 15%;
height: 3px;
background: #1eaa39;
}  
.subpage83 {
width: 100%;
position: relative;
padding: 30px 30px;
background: #f5f5f5;
border-radius: 10px;
}  
.subpage83 ul {
width: 100%;
display: flex;
list-style: none;
flex-wrap: wrap;
}
.subpage83 ul li {
width: 100%;
line-height: 1.6;
margin: 0 0 15px 0;
padding-left: 3rem;
text-indent: -3rem;
}
.subpage83 ul li:last-child {
margin: 0;
}    
.subpage83 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;
}
/* subpage */












/* access */

.access__w{
width: 1000px;
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 70px 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.4rem;
letter-spacing: 0.05;
}

.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%;
padding: 25px;
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%;
}

.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: 90%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin: 0 auto 70px;
}

.access18{
width: 48%;
text-align: center;
}

.access18 img{
width: 100%;
border-radius: 3px;
}


/* access */







/* dooctor */

.doctor1{
width: 800px;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}

.doctor2{
width: 300px;
}

.doctor2 img{
width: 100%;
border-radius: 5px;
}

.doctor3{
width: calc(100% - 350px);
display: flex;
flex-wrap: wrap;
border: 1px solid #454458;
padding: 20px 0 40px;
background: #fff;
justify-content: center;
align-items: center;
margin: 50px 0;
border-radius: 5px;
}

.doctor4{
font-size: 2.2rem;
line-height: 1.4;
margin: 15px 0 10px 0;
color: #454458;
font-weight: 700;
width: 100%;
letter-spacing: .1rem;
text-align: center;
font-family: 'Zen Old Mincho', serif;
}

.doctor5{
font-size: 4.8rem;
margin: 0 0 10px 0;
color: #454458;
width: 100%;
font-weight: 700;
font-family: 'Zen Old Mincho', serif;
text-align: center;
}

.doctor6{
font-size: 1.4rem;
font-family: 'Zen Old Mincho', serif;
text-align: center;
width: 100%;
color: #454458;
font-style: italic;
letter-spacing: .3rem;
font-weight: 300;
}

.doctor6{
width: 100%;
margin: 0 0 0 0;
}


.doctor7{

}

.doctor7 h3{
font-size: 2.2rem;
text-align: center;
color: #4c4948;
letter-spacing: .2rem;
font-weight: 700;
font-family: 'Zen Old Mincho', serif;
}

.doctor8{
background: #fff;
border-radius: 10px;
padding: 50px 70px;
width: 1000px;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}

.doctor9{
width: 1000px;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}

.doctor10{
width: 100%;
}

.doctor11{

}

.doctor11 h3{
font-size: 2.2rem;
color: #4c4948;
letter-spacing: .2rem;
margin: 0 0 10px 0;
font-weight: 700;
font-family: 'Zen Old Mincho', serif;
text-align: center;
}

.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: #323232;
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;
}

/* dooctor */






/* 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;
margin: 0 0 40px 0;
}


.about3{
width: 100%;
margin: 0 0 15px 0;
}

.about3 img{
width: 100%;
border-radius: 30px 10px 1px 1px;
}

.about4{
width: 100%;
font-size: 2.2rem;
text-align: center;
font-family: 'Zen Maru Gothic', sans-serif;
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::before{
content: "";
display: block;
margin: 0 auto 8px;
background: url("../images/ic_nav1.svg");
width: 50px;
height: 50px;
/*filter: drop-shadow(2px 2px 3px #187a2b);*/
}

.nav2::before{
content: "";
display: block;
margin: 0 auto 8px;
background: url("../images/ic_nav2.svg");
width: 50px;
height: 50px;
}

.nav3::before{
content: "";
display: block;
margin: 0 auto 8px;
background: url("../images/ic_nav3.svg");
width: 50px;
height: 50px;
}

.nav4::before{
content: "";
display: block;
margin: 0 auto 8px;
background: url("../images/ic_nav4.svg");
width: 50px;
height: 50px;
}

.nav5::before{
content: "";
display: block;
margin: 0 auto 8px;
background: url("../images/ic_nav5.svg");
width: 50px;
height: 50px;
}

.nav6::before{
content: "";
display: block;
margin: 0 auto 8px;
background: url("../images/ic_nav6.svg");
width: 50px;
height: 50px;
}

.nav7::before{
content: "";
display: block;
margin: 0 auto 7px;
background: url("../images/ic_nav7.svg");
width: 50px;
height: 50px;
}

.nav8::before{
content: "";
display: block;
margin: 0 auto 7px;
background: url("../images/ic_nav8.svg");
width: 50px;
height: 50px;
}



/*HeightMinというクラス名がついたら高さを小さく、上部固定に*/
#fixnav.HeightMin{
	position: fixed;
    z-index: 999;/*最前面へ*/
	animation: DownAnime 0.5s forwards;
  top: 0;
  width: 100%;
  text-align: center;
}

#fixnav{
background: #caeace;
}


/*nav*/





/*topdoctor*/

.topdoctor__w{
width: 100%;
background: #d8f7e0;
padding: 100px 0 100px;
}

.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;
font-family: 'Zen Maru Gothic', sans-serif;
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;
font-family: 'Zen Maru Gothic', sans-serif;
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;
}








/*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;
font-family: 'Zen Maru Gothic', sans-serif;
width: 100%;
}

.toppcr4{
width: 900px;
margin: 0 auto 50px;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}

.toppcr5{
width: 500px;
font-family: 'Zen Maru Gothic', sans-serif;
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: #323232;
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: #323232;
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;
font-family: 'Zen Maru Gothic', sans-serif;
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;
} 
    
}
/* print */

















