@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);
}

}



/*--------------------- */
/* ------ demo03 ------ */
/* -------------------- */

/* common */
.demo03-section{
margin-top: 80px;
}

.demo03-section:first-of-type{
margin-top: 0;
}

/* zoom block */
.zoom-block{
overflow: hidden;
}

.zoom-block-bg{
width: 100%;
height: 0;
padding-top: 56.25%;
background: url(../img/sample.jpg) no-repeat center/cover;
}

/* slide block */
.slide-block{
margin-top: 40px;
}

.slide-block:first-of-type{
margin-top: 0;
}

.slide-block-contents{
margin-top: 20px;
}

.slide-block-ttl{
font-size: 18px;
font-weight: bold;
}

.slide-block-txt{
margin-top: 10px;
}

/* fade up block */
.fade-up-block-image{
margin-top: 20px;
}

.fade-up-block-image:first-of-type{
margin-top: 0;
}

/* marker block */
.marker-block{
margin-top: 40px;
}

.marker-block:first-of-type{
margin-top: 0;
}

.marker-block-contents{
margin-top: 20px;
}

.marker-block-ttl{
font-size: 18px;
font-weight: bold;
}

.marker-block-txt{
margin-top: 10px;
}

/* fade left block */
.fade-left-block-item{
display: flex;
align-items: center;
margin-top: 10px;
}

.fade-left-block-item:first-of-type{
margin-top: 0;
}

.fade-left-block-num{
color: #fff;
background-color:#FFA500;
width: 30px;
height: 30px;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
line-height: 1;
}

.fade-left-block-txt{
width: calc(100% - 40px);
margin-left: 10px;
}

@media screen and (min-width: 768px) {
/* common */
.demo03-section{
    margin-top: 200px;
}

/* slide block */
.slide-block{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
}

.slide-block:nth-child(odd){
    flex-direction: row-reverse;
}

.slide-block-image{
    width: 48%;
}

.slide-block-contents{
    width: 48%;
    margin-top: 0;
}

/* fade up block */
.fade-up-block{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.fade-up-block-image{
    width: 32%;
}

.fade-up-block-image:nth-child(-n+3){
    margin-top: 0;
}

/* marker block */
.marker-block{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.marker-block-image{
    width: 48%;
}

.marker-block-contents{
    width: 48%;
    margin-top: 0;
}

/* fade left block */
.fade-left-block-txt{
    line-height: 1.8;
}
}


/*------------------------------ */
/* ------ animation style ------ */
/* ----------------------------- */


/* fade zoom */
.u-fade-type-zoom.is-active{
transition: 8s;
transform: scale(1.06);
}

/* fade up */
.u-fade-type-up{
transform: translateY(50px);
opacity: 0;
}

.u-fade-type-up.is-active{
transition: .6s;
transform: translateY(0);
opacity: 1;
}

.is-active .u-fade-type-up{
transition: .6s;
transform: translateY(0);
opacity: 1;
}

.is-active .u-fade-type-up:nth-child(2){transition-delay: .4s;}
.is-active .u-fade-type-up:nth-child(3){transition-delay: .8s;}
.is-active .u-fade-type-up:nth-child(4){transition-delay: 1.2s;}
.is-active .u-fade-type-up:nth-child(5){transition-delay: 1.6s;}
.is-active .u-fade-type-up:nth-child(6){transition-delay: 2s;}

/* fade left */
.u-fade-type-left{
transform: translateX(50px);
opacity: 0;
}

.u-fade-type-left.is-active{
transition: .6s;
transform: translateX(0);
opacity: 1;
}

.is-active .u-fade-type-left{
transition: .6s;
transform: translateX(0);
opacity: 1;

}

.is-active .u-fade-type-left:nth-child(2){transition-delay: .2s;}
.is-active .u-fade-type-left:nth-child(3){transition-delay: .4s;}
.is-active .u-fade-type-left:nth-child(4){transition-delay: .6s;}
.is-active .u-fade-type-left:nth-child(5){transition-delay: .8s;}

/* img */
.u-fade-type-slide{
position: relative;
}

.u-fade-type-slide::after{
content: '';
display: block;
width: 100%;
transform: scaleX(1);
transform-origin: 100% 0;
height: 100%;
background-color: #f1e600;
position: absolute;
top: 0;
right: 0;
}

.u-fade-type-slide.is-active::after{
transition: .6s;
transform: scaleX(0);
}

/* single marker */
.u-fade-type-marker {
background: linear-gradient(to right, transparent 50%,  rgba(255, 165, 0, 0.3) 50%);
background: linear-gradient(to right, transparent 50%, rgba(255, 165, 0, 0.3) 50%);
background-repeat: repeat-x;
background-size: 200% .6em;
background-position: 0 .6em;
padding-bottom: .6em;
}

.u-fade-type-marker.is-active{
transition: all 1.2s ease;
background-position: -100% .6em;
}








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

.wrap{
position: relative;
}

/* header */

.headerfix{
position: fixed;
top: 0;
z-index: 110;
width: 100%;
}

header{
width: 100%;
display: flex;
align-items: center;
background: #fff;

}

.header1{
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    height: 19rem;
}

.header2{
    width: 1200px;
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    position: relative;
    justify-content: flex-end;
    padding: 1rem 0 0;
}



.logo{
  width: 120px;
  position: absolute;
  left: calc(50% - 60px);
  top: 1rem;
}

.logo a{

}

.logo a img{
width: 100%;
}

.header3{
    display: flex !important;
    align-items: center !important;
    width: 27rem;
    flex-wrap: wrap;
    justify-content: flex-end;

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

.header4 a{
width: 100%;
display: block;
font-size: 3rem;
font-weight: 700;
font-family: 'Asap', sans-serif;
}

.header4 a:hover{
opacity: .5;
}

.header4 a span{

}

.header4 a span::before{
content: "";
background: url("../images/ic_tel.svg") no-repeat;
display: inline-block;
width: 2rem;
height: 2rem;
margin: 0 .4rem 0 0;
vertical-align: middle;
}



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



.header5a{
    padding: 0 .5rem;
    display: inline-block;
    text-align: center;
    font-size: 1.6rem;
    border-bottom: dotted 2px #ca090f;
}

.header5b{
font-size: 2.8rem;
color: #ca090f;
font-weight: 700;
padding: 0 .2rem;

}














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

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

.header8{
width: 100%;
font-weight: 700;
font-size: 1.3rem;
}

.header8 span{
display: inline-block;
text-align: center;
width: 100%;
}

.header9{
width: 9rem;
display: flex;
flex-wrap: wrap;
text-align: right;
}

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

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

.header11 span{
display: inline-block;
text-align: center;
width: 100%;
}

.header12{
width: calc(100% - 7.6rem);
}

.header13{
width: 100%;
display: flex;
flex-wrap: wrap;
font-size: 1.2rem;
}

.header14{
width: calc(100% - 10rem);
}

.header15{
width: 5rem;
display: flex;
flex-wrap: wrap;
}

.header16{
width: calc(100% - 6rem);
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}


/* header */















/* nav */


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

/*==ナビゲーション全体の設定*/
nav{
    width: 100%;
    color: #fff;
    text-align: center;
    right: 0;
    top: 0;
    display: flex;
    align-items: center;
}

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

}

nav ul li{
    display: block;
    margin: 0 1.2rem;
}

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

/*ナビゲーションのリンク設定*/
nav ul li a{
    position: relative;
    display: block;
    text-decoration: none;
    color: #222214;
    padding: .3rem 2rem;
    transition: all .3s;
    font-size: 1.7rem;
    width: 100%;
    border-radius: 3px;
}

nav ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-bottom: 1rem solid #c80107;
  border-left: 1rem solid transparent;
}

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



nav ul li a:hover{

background: #FFE8E8;

}

/*==矢印の設定*/

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

nav ul li.has-child > a::before{
content: '';
position: absolute;
left: 8px;
top: 21px;
width: 4px;
height: 4px;
border-top: 2px solid #0077c3;
border-right: 2px solid #0077c3;
transform: rotate(135deg);
}
nav ul li.has-child a{
padding: 1rem 1.2rem 1rem 2.5rem;      
}

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

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

/*hoverしたら画像拡大*/
nav ul li.has-child img:hover{
}

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

nav ul li.has-child dd{
letter-spacing: .08rem;
}

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

}

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

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

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

/*各ナビゲーション横幅*/
nav li.has-child ul li{
width:100%;
}

/*ナビゲーションaタグの形状*/
nav li.has-child ul li a{
color: #ffffff;
padding: 1.2rem 2rem;
font-size: 1.5rem !important;
font-weight: 500;
letter-spacing: 0;
display: flex;
width: 100%;
align-items: center;
background: #0077c3;
}

nav li.has-child ul li a:hover,
nav li.has-child ul li a:active{
background: #90CAF3;
opacity: 1;
}

nav li.has-child ul li:hover{
border: 0;
}


.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 */






/* mainimage */

.mainimage__w{
width: 100%;
margin: 0 0 0 0;
background: #f9f9f9;
}

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

.mainimage2{
width: 33%;
margin: 22rem 0 0 0;

}

.mainimage2 img{
width: 100%;
}

.mainimage3{
width: 32%;
margin: 14rem 0 0 0;
}

.mainimage3 img{
width: 100%;
}

.mainimage4{
width: 32%;
margin: 27rem 0 0 0;
}

.mainimage4 img{
width: 100%;
}


/* mainimage */














/* slider */
.swiper__w{
    width: 100%;
    background: #fffceb;
    position: relative;
    height: calc(100vh - 19rem);
    z-index: 100;
    margin-top: 19rem;
}


.swiper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin-top: 100px;
    margin-left: unset !important;
    opacity: 0;
    transition: opacity 1s ease-out;
}

.is-loaded.swiper {
opacity: 1;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    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%;
}

.swipertxt{
    position: absolute;
    z-index: 10;
    display: flex;
    flex-wrap: wrap;
    top: 100px;
    right: 150px;
    width: 600px;
}

.swipertxt img{
width: 100%;
max-height: 50vh;
}

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

.swipertxt1 span{
display: inline-block;
background: rgb(241 100 178 / 90%);
color: #fff;
text-align: center;
font-size: 3.4rem;
letter-spacing: .3rem;
padding: 15px 0;
font-weight: 700;
border-radius: 2px;
width: 100%;
}

.swipertxt2{
position: absolute;
z-index: 9;
bottom: 7rem;
left: 3rem;
transition-delay: 1s !important;
line-height: 1.8;
padding: 3rem 0;
width: 600px;
}

.swipertxt2a {
width: 100%;
opacity: .9;

}

.swipertxt2a img {
width: 100%;
display: inline-block;
border-radius: 200px;
}

.swipertxt2b {
width: 100%;
opacity: .9;
}

.swipertxt2b img {
width: 100%;
display: inline-block;
border-radius: 200px;
}

.swipertxt3{
    position: absolute;
    z-index: 9;
    bottom: 0;
    right: 3rem;
    transition-delay: 1s !important;
    line-height: 1.8;
    padding: 3rem 0;
    width: 50%;
}

.swipertxt3a {
width: 100%;
opacity: .9;
}

.swipertxt3a img {
width: 100%;
display: inline-block;
border-radius: 200px;
}


/* slider */









/* pagetop */


#page-top {
position: fixed;
bottom: 9.5rem;
right: 20px;
z-index: 99;
}
#page-top a {
width: 100px;
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: #002c5a !important;
width: 900px;
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:#002c5a !important;
}

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

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

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

/* breadcrumb */





/* topnavigation */

.topnavigation__w{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
padding: 5rem 0 10rem;
background: #efefef;
}

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

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

.topnavigation2 span{
width: 100%;
position: relative;
display: block;
font-size: 2.5rem;
font-weight: 400;
letter-spacing: .3rem;
}

.topnavigation2 span::before{
content: "─ MEDICAL ─";
font-size: 1.5rem;
width: 100%;
display: block;
line-height: 1;
color: #848484;
font-weight: 400;
letter-spacing: .1rem;
margin-bottom: .5rem;
}

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

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

.topnavigation5{
/*width: 18%;5つボタンの時*/
width: 23%;/*4つボタンの時*/
display: block;
background: #ffffff;
border-radius: 10px;
}

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

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

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

.topnavigation6 img{
width: 35%;
}

.topnavigation7{
width: 100%;
font-weight: 500;
font-size: 2rem;

  text-align: center;
}

.topnavigation7 span{

}

.topnavigation7 span::before{
content: "";
background: url("../images/ic_arrow2.svg");
width: 1.1rem;
height: 1.1rem;
display: inline-block;
vertical-align: baseline;
margin: 0 .7rem 0 0;
}

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

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

.topnavigation10 {
  position: relative;
  display: inline-block;
  padding: 0 55px;
  font-size: 2rem;
  text-align: center;
  width: 40rem;
  margin: 0 auto 2rem;;
}

.topnavigation10:before, .topnavigation10:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 45px;
  height: 1px;
  background-color: black;
}

.topnavigation10:before {
  left:0;
}
.topnavigation10:after {
  right: 0;
}


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

.topnavigation12 {
width: 68rem;
margin: 0 auto;
}

.topnavigation12 span {

}

.topnavigation12 span::before {
content: "";
background: url("../images/ic_check.svg");
display: inline-block;
width: 1.8rem;
height: 1.8rem;
margin-right: .6rem;
vertical-align: text-bottom;
}

/* topnavigation */















/* topnews */

.topnews__w{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
padding: 8rem 0 4rem;
background: #fff url("../images/news-line.jpg") no-repeat right 5rem top 2rem;
background-size: 80rem;
position: relative;
z-index: 100;
}

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

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

.topnews2 span{
width: 100%;
position: relative;
display: block;
font-size: 2.5rem;
font-weight: 400;
letter-spacing: .3rem;
}

.topnews2 span::before{
content: "─ INFORMATION ─";
font-size: 1.5rem;
width: 100%;
display: block;
line-height: 1;
color: #848484;
font-weight: 400;
letter-spacing: .1rem;
margin-bottom: .5rem;
}


.topnews3{
width: 900px;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin: 0 auto;
padding: 3rem 4rem;
background: #fff;
border-radius: 10px;
border: 1px solid #555;
}

.topnews4{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
border-bottom:1px dotted #ECECEC;
padding: 2rem 0;
}

.topnews4:last-child{
border-bottom:none;
}

.topnews5{
width: 100%;
font-size: 1.3rem;
font-weight: 400;
}

.topnews6{
width: 100%;
font-size: 1.8rem;
font-weight: 700;
}

.topnews7{
width: 100%;
font-size: 1.5rem;
}












/* topnews */




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

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

.topline2 {
width: 640px;
border-top: solid 1px #555;
border-bottom: solid 1px #555;
padding: 2rem 0;
text-align: center;
font-size: 2rem;
}

.topline2 span {

}

.topline2 span::after {
content: "▲";
display: inline-block;
margin-left: 3rem;
transform: rotate(90deg);

}

.topline3 {
width: 230px;
display: flex;
justify-content: center;
align-items: center;
}

.topline3 a {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
background: #06c755;
color: #fff;
text-align: center;
padding: 2.3rem;
font-size: 1.8rem;
}


/*attention*/
.topattention1 {
width: 1000px;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin: 0 auto;
padding: 0 1rem;
}

.topattention2 {
width: 52rem;
margin: 0 auto;
	/*text-align: center;*/
}

.topattention2 p {

}

.topattention2 p::before {
content: "";
background: url("../images/ic_attention.svg");
display: inline-block;
width: 2.2rem;
height: 2.2rem;
margin-right: .6rem;
vertical-align: text-bottom;
}
	






/* topsales */
.topsales__w{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
padding: 4rem 0 6rem;
background: #82cdd3;
}

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

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

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

/*
.topsales2 span::before{
content: "Countermeasures against COVID-19";
font-size: 2rem;
font-family: "Open Sans";
width: 100%;
display: block;
line-height: 1;
color: #c2ebef;
font-weight: 400;
margin: 0 0 1rem 0;
letter-spacing: .3rem;
}

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

.topsales3{
width: 1200px;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin: 0 auto;
background: #f6f6f6;
position: relative;
border-radius: 10px;
}

.topsales4{
width: 600px;
position: absolute;
top: -2rem;
left: -45rem;
}

.topsales5{
width: 100%;
}

.topsales5 img{
width: 100%;
border-radius: 2px;
}

.topsales6{
padding: 5rem 2rem;
display: flex;
justify-content: space-between;
flex-wrap: wrap;
text-align: center;
}

.topsales7{
width: calc(33.3% - 1rem);
}

.topsales8{
width: 100%;
font-size: 1.5rem;
font-weight: 500;
color: #4c341f;
}

.topsales9{
width: 100%;
color: #1d2744;
}

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

.topsales11{
width: 100%;
font-size: 1.6rem;
text-align: center;
line-height: 1.7;
letter-spacing: .05rem;
background: #FFFBFB;
padding: 1.5rem 3rem;
border-radius: 100px;
  color: #e93131;
}

.topsales12 {
width: 160px;
height: 160px;
display: flex;
justify-content: center;
align-items: center;
margin: 0 auto 1rem;
background-color: #fff;
padding: 0 2rem;
border-radius: 50%;
}

/* topsales */
















/* topsupport */

/* topsupport */
.topsupport__w{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
padding: 7rem 0 20rem;
background: #ecfbff;
}

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

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

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

.topsupport2 span::before{
content: "Countermeasures against COVID-19";
font-size: 2rem;
font-family: "Open Sans";
width: 100%;
display: block;    line-height: 1;
color: #0054a4;
font-weight: 400;
letter-spacing: .3rem;
}

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

.topsupport3{
width: 1200px;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin: 0 auto;
background: #ffffff;
position: relative;
}

.topsupport4{
width: 600px;
position: absolute;
top: -2rem;
left: -45rem;
}

.topsupport5{
width: 100%;
}

.topsupport5 img{
width: 100%;
border-radius: 2px;
}

.topsupport6{
padding: 6rem 4rem 7rem 210px;
}

.topsupport7{
width: 100%;
color: #005183;
}

.topsupport8{
width: 100%;
font-size: 2.2rem;
font-weight: 500;
}

.topsupport8::first-letter{
color: #2ca6e0;
font-weight: 700;
}

.topsupport9{
width: 100%;
}

/* topsupport */















/* footer */
footer{
width: 100%;
background: #fff;
background-size: cover;
padding: 8rem 0 5rem;
}

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

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

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

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

.footer2 img{
width: 200px;
}

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

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

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

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

}


.footer7{
width: 100%;
}


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

.footer7 a span{

}

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

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

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

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

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

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

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

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

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

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

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



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

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

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

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

.footer19 a span{

}

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



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


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


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

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

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

.footer23 a span{

}

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

.footer24{
width: 570px;
background: #fff;
border-radius: 10px;
padding: 25px 40px;
}

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

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

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

}

.footer27{
width: 100%;
text-align: center;
font-size: 1.4rem;
font-weight: 500;
color: #0050a3;
}

.footer27 span::before {
}

.footer28{
width: 100%;
}

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

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

.footer29{
width: 100%;
}

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

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


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

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

.footer32{
width: 100%;
}

.footer32 span{
display: inline-block;
font-size: 1.4rem;
font-weight: 700;
margin: 0 auto;
text-align: center;
color: #a7a7a7;
}

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


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

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

.footer35{
width: 57%;
}

.footer36{
width: 100%;
}

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


































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

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

.footerbnr1{
width: 160px;
}

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




.sitemap__w{
background: #f1f1f1;
display: flex;
flex-wrap: wrap;
justify-content: center;
padding: 3rem 0;
width: 100%;
}

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

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

.sitemap2{
width: 100%;
}

.sitemap2 a{
font-weight: 500;
font-size: 1.6rem;
}

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

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

.googlemaps__w{
width: 100%;
}

.googlemaps__w iframe{
width: 100%;
height: 500px;
}




/* footer */






/* copyright */


.copyright {
width: 100%;
padding: 20px 0;
background: #b50104;
text-align: center;
color: #fff;
font-size: 1.4rem;
}



/* copyright */





















































/* medical */

.topmedical__w{
width: 100%;
background: url("../images/topmedicalbg.jpg") right bottom;
background-size: cover;
padding: 30px 0 60px;
}

.topmedical1{
text-align: center;
margin: 0 0 40px 0;
}

.topmedical1 h2{
font-size: 2.8rem;
font-weight: 700;
letter-spacing: .6rem;
color: #fbfb8c;
font-family: 'Zen Maru Gothic', sans-serif;
}

.topmedical1 h2 span{
}

.topmedical1 h2 span::after{
content: "feature";
display: block;
text-align: center;
font-size: 1.5rem;
letter-spacing: .3rem;
border-top: 1px solid #eaf4fe;
width: 50rem;
margin: 6px auto 0;
padding: 8px 0 0 0;
color: #f9fafc;
font-weight: 500;
line-height: 1;
font-family: "Zen Old Mincho";
}

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

.topmedical3{
width: 32.5%;
background: #fff;
padding: 20px 20px 35px;
box-shadow: 5px 5px 10px #cde0ef;
border-radius: 30px 10px 30px 10px;
opacity: 0;
}



.topmedical4{
text-align: center;
font-size: 2.4rem;
font-weight: 700;
color: #0f6eb1;
letter-spacing: .05rem;
margin: 0 0 16px 0;
font-family: 'Zen Kaku Gothic New', sans-serif;
line-height: 1.3;
height: 6rem;
display: flex;
align-items: center;
justify-content: center;
}

.topmedical4 span{
}

.topmedical4 span::before{
}


.topmedical8{
width: 100%;
font-size: 1.6rem;
line-height: 1.7;
color: #576c7f;
text-align: center;
letter-spacing: 0;
}

.topmedical9{
width: 100%;
}

.topmedical9 a{
display: block;
width: 200px;
margin: 0 auto;
background: #e56ca3;
padding: 12px 0;
text-align: center;
letter-spacing: -.005rem;
color: #ffffff;
box-shadow: 6px 6px 15px #f1b2cf;
font-weight: 500;
font-size: 1.4rem;
line-height: 1;
position: relative;
border-radius: 3px;
}

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

.topmedical9 a span::after{
content: "";
background: url("../images/ic_arrow1.svg");
display: inline-block;
width: 1.6rem;
height: 1.6rem;
position: absolute;
top: 11px;
right: 8px;
}

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

.topmedical10{
width: 100%;
text-align: center;
margin: 0 0 17px 0;
}

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




/* medical */




.note__w{
width: 550px;
margin: 0 auto 30px;
display: flex;
flex-wrap: wrap;
background: #fff;
padding: 15px 0 30px;
border-radius: 20px;
}

.note1{
width: 100%;
text-align: center;
padding: 3px 20px;
border-radius: 3px;
color: #ef6081;
font-size: 3.3rem;
font-family: 'Zen Maru Gothic', sans-serif;
font-weight: 700;
margin: 0 0 10px 0;
}


.note2{
width: 100%;
text-align: center;
margin: 0 0 12px 0;
}

.note3{
width: 100%;
text-align: center;
font-size: 2.2rem;
font-weight: 700;
color: #103546;
line-height: 1.5;
}

.note4{
width: 550px;
border: 2px solid #ffabab;
background: #fff8f8;
padding: 15px 20px 22px;
color: #e93131;
margin: 0 auto 30px;
text-align: center;
border-radius: 3px;
}

.note5{
margin: 0 0 18px 0;
font-size: 1.5rem;
text-align: left;
line-height: 1.6;
}

.note6{
width: 100%;
}


.note6 a{
width: 100%;
display: block;
font-size: 2.5rem;
color: #0050a3;
font-weight: 900;
line-height: 1;
}

.note6 a span{

}

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

.note7{
width: 550px;
background: #ffffff;
padding: 20px 20px;
color: #295b9a;
margin: 0 auto;
text-align: center;
border-radius: 200px;
}

.note8{
font-size: 1.4rem;
line-height: 1.6;
letter-spacing: 0rem;
}

.note8 span{

}

.note8 span::before{
content: "";
background: url("../images/ic_exclamation.svg");
display: inline-block;
width: 2.2rem;
height: 2.2rem;
margin: 0 7px 0 0;
vertical-align: bottom;
}

.note9{
background: linear-gradient(transparent 75%, #ffff7f 75%);
display: inline-block;
}










/* timetable */

.toptimetable__w{
width: 100%;
padding: 80px 0 70px;
background: url("../images/toptimetablebg.jpg") left center;
background-size: cover;
}

.toptimetable1{
text-align: center;
margin: 0 0 50px 0;
}

.toptimetable2 h2{
font-size: 3rem;
font-weight: 500;
letter-spacing: .3rem;
width: 800px;
margin: 0 auto;
text-align: center;
padding: 15px 0;
line-height: 1.4;
border: 2px solid #86c8f8;
border-radius: 5px;
color: #ffffff;
box-shadow: 8px 8px 12px #bceaff;
background: linear-gradient(330deg, rgb(0 108 184) 0%, rgb(80 159 216) 30%, rgb(71 199 210) 100%);
}

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

.toptimetable2 h2 span::after{

}

.toptimetable2 h2 span::before{

}


.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: 100%;
background: #fff;
margin: 0 auto;
}

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

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

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

table.toptimetable8b th{
background: #cd5e62 !important;
}

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

table.toptimetable8 tr{
}

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

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

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

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

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

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

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

.toptimetable12_f > .closed{
display: inline-block;
text-align: center;
padding: .4rem 2.5rem;
background: #fff;
font-size: 1.5rem;
color: #ef6276;
margin: 0 0 10px;
border: 1px solid #ef6276;
border-radius: 3px;
}
.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;
}

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

.toptimetable20{
color: #000;
font-size: 1.2rem;
}

.toptimetable21{
font-size: 1.4rem;
margin-top: 0.5rem;
}

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

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

.toptimetable23 span{
font-size: 2rem;
font-weight: 500;
color: #0056ab;
text-align: center;
border-bottom: 1px solid #0056ab;
padding: .5rem 1.8rem;
}


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

.toptimetable24 span{
font-size: 2rem;
font-weight: 500;
color: #c80107;
text-align: center;
border-bottom: 1px solid #c80107;
padding: .5rem 1.8rem;
}












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

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

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

.topdoctortable1 tr{
}


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

th.topdoctortable3{
width: 13%;
}

th.topdoctortable4{
width: 20.5%;
}

th.topdoctortable5{
width: 9.5%;
}

td.topdoctortable6{
background: #fffae2;
color: #a16c47;
font-weight: 700;
letter-spacing: 0.2rem;
}

td.topdoctortable7{
background: #eaf6ff;
color: #106ebf;
font-weight: 700;
letter-spacing: 0.2rem;
}

td.topdoctortable8{
background: #fff4fa;
color: #e94287;
font-weight: 700;
letter-spacing: 0.2rem;
}

td.topdoctortable9{
color: #87cff1;
}

td.topdoctortable10{
color: #ff9dc6;
}







/* timetable */










.footertimetable__w{
width: 100%;
background: url("../images/toptimetablebg.jpg");
background-size: cover;
margin: 50px 0 0 0;
}

.footertimetable1{
text-align: center;
margin: 0 0 30px 0;
}

.footertimetable1 h2{
font-size: 3.8rem;
font-weight: 700;
letter-spacing: .5rem;
color: #003894;
font-family: 'Zen Maru Gothic', sans-serif;
text-shadow: 0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff;
text-align: center;
margin: 0 auto;
}

.footertimetable1 h2 span{
}

.footertimetable1 h2 span::after{

}

.footertimetable2{
width: 800px;
margin: 0 auto;
background: #fff;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
padding: 40px 40px;
border-radius: 10px;
}

.footertimetable3{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
border-bottom: 1px dotted #ccc;
margin: 0 0 40px 0;
padding: 0 0 40px 0;
}

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


.footertimetable4{
width: 100%;
font-size: 1.4rem;
color: #A8A8A8;
margin: 0 0 5px 0;
letter-spacing: .2rem;
}



.footertimetable5{
width: 100%;
font-size: 2rem;
font-weight: 700;
margin: 0 0 5px 0;
color: #0f6eb1;
}


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

.footertimetable7{
background: #e9f4fc;
width: 10rem;
font-size: 1.7rem !important;
}

.footertimetable8{
display: inline-block;
transform: rotate(90deg);
}



















/* policy */

.policy__w{
width: 100%;
background-size: cover;
padding: 40px 0 60px;
}

.policy1{
width: 1000px;
margin: 0 auto;
background: #fff;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
padding: 40px 40px 60px;
}

.policy2{
width: 100%;
text-align: center;
margin: 0 0 25px 0;
}

.policy2 h2{
font-size: 3rem;
font-weight: 900;
letter-spacing: .3rem;
font-family: 'Zen Old Mincho', serif;
color: #002c5a;
text-shadow: 3px 3px 5px #ffffff;
}

.policy3{
width: 100%;
color: #000;
margin: 0 0 40px 0;
font-size: 1.7rem;
text-align: center;
line-height: 2;
}

.policy4{
padding-left: 1em;
text-indent: -1em;
margin: 0 auto;
padding: 40px 60px;
background-color: #E3F2FC;
border-radius: 10px;
}

.policy4 li{
margin-top: 20px;
line-height: 2;
}


/* policy */



/* corona */

.topcorona__w {
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
background: #fff9f1;
padding: 7rem 0 8rem;
}

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

.topcorona2 {
width: 100%;
text-align: center;
font-size: 3.9rem;
font-weight: 700;
color: #3293da;
display: inline-block;
}

.topcorona2 span {
color: #d95558;
}

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

.topcorona4 {
width: 100%;
padding-left:1.9rem;
text-indent:-1.9rem;
}

.topcorona4::before {
content: "■";
font-size: 1.4rem;
margin-right: .5rem;
color: #3293da;
}

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

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

.topcorona7 {
width: 15%;

}

.topcorona7 img {
width: 100%;
}



.rinjinews__w {
width: 100%;
display: flex;
justify-content: space-between;
padding: 5rem 0;
background: #fff3f3;
}

.rinjinews1 {
width: 800px;
margin: 0 auto;
border: 3px solid #e03e2d;
border-radius: 10px;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
background: #fff;
}

.rinjinews2 {
width: 100%;
text-align: center;
padding: 1.5rem 1rem;
background: #e03e2d;
color: #fff;
font-size: 2.4rem;
font-weight: 700;
}

.rinjinews3 {
width: 100%;
padding:2rem 2.5rem;
line-height: 2.1
}


/* corona */










.timetable{
width: 100%;
}

.timetable th{
border-bottom: 1px solid #002c5a;
padding: 0 10px 10px;
text-align: center;
font-weight: 700;
color: #002c5a;
font-size: 1.8rem;
}

.timetable td{
border-bottom: 1px solid #002c5a;
padding: 22px 10px;
text-align: center;
font-size: 1.8rem;
font-weight: 700;
color: #002c5a;
line-height: 1;
position: relative;
}

.timetable1{
font-size: 1.3rem;
font-weight: 500;
color: #002c5a;
letter-spacing: -.07rem;
line-height: 1;
position: absolute;
top: 12px;
right: 4px;
}

.timetable2{
width: 100%;
color: #002c5a;
text-align: center;
}

.timetable2 span{
color: #002c5a;
}

.timetable3{
width: 100%;
color: #ed719f;
text-align: center;
}

.timetable4{
width: 100%;
text-align: center;
margin: 0 0 3px 0;
}

.timetable4 span{
text-align: center;
border-radius: 3px;
padding: 1px 10px;
background: #fffbcc;
color: #5a5330;
}

















/* subpage */

.subpagetitle__w{
width: 100%;
background: url("../images/subpagetitlebg1.jpg") center center;
background-size: cover;
padding: 6rem 0;
margin-top: 180px;
}

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

.subpagetitle1 h2{
font-size: 3.5rem;
font-weight: 500;
letter-spacing: .7rem;
color: #ffffff;
line-height: 1;
text-shadow: 2px 2px 3px rgb(101 71 41 / 60%);
font-family: 'Zen Maru Gothic';
}

.subpagetitle1 h2 span{
}

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

.subpagetitle1a{

}

.subpagetitle1b{

}

.subpagetitle1c{

}

.subpagetitle1d{

}

.subpagetitle1e{

}

.subpagetitle1f{

}

.subpagetitle1g{

}

.subpagetitle1h{

}

.subpagetitle1i{

}

.subpagetitle1j{

}


.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: #f5f8fa;
padding: 40px 0 40px;
}
.subpage__wb{
width: 100%;
background: #fff;
padding: 40px 0 0 0;
}
	
.subpage__w0{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
background: #f5f8fa;
padding: 3rem 0 0 0;
}	
	
	
	
	
	
	
	
	
.subpage1{
width: 1000px;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
background: #fff;
padding: 60px 50px 60px;
/*box-shadow: 15px 15px 5px #ededed;*/
border-radius: 10px;
} 
.subpage1a{
width: 100%;
margin: 0 auto;
/*background: #fff;*/
padding: 20px 50px 20px;
line-height: 2.2;
text-align: center;
}
	
.subpage1b{
width: 1000px;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}   

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

.subpage2 h2{
font-size: 2.5rem;
font-weight: 400;
letter-spacing: .3rem;
line-height: 1;
padding: 0 0 25px 0;
text-align: center;
color: #3A3A30;
 background-image: linear-gradient(90deg, #294f9c 0 7%, #e8e7e4 7%);
    background-repeat: no-repeat;
    background-size: 100% 7px;
    background-position: bottom;	
	
	
	
}

.subpage2 h2:first-letter{
/*color: #81C303;*/
}


.subpage3{
width: 100%;
padding: 0 2rem;
line-height: 2.2;
margin: 20px 0 40px 0;
}    

.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%;
}

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

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

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

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

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

.subpage6 ul{
width: 100%;
}

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

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

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

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

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

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

.subpage7{
width: 100%;
}

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

.subpage7 ul li{
width: 30%;
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:nth-last-child(3){
margin: 0 3% 0 0;
}

.subpage7 ul li a{
display: block;
width: 100%;
margin: 0 auto;
background: #ffffff;
padding: 20px 0;
text-align: center;
letter-spacing: .05rem;
color: #3A3A30;
box-shadow: 6px 6px 15px #b9deff;
font-weight: 700;
font-size: 2.2rem;
line-height: 1;
position: relative;
border: 2px solid #499be2;
}

.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_arrow2.svg");
display: inline-block;
width: 1.2rem;
height: 1.2rem;
position: absolute;
top: 2.7rem;
left: 1.5rem;
transform: rotateZ(90deg);
}

.subpage8{
width: 100%;
}

.subpage8 h3{
font-size: 2.2rem;
letter-spacing: .02rem;
line-height: 1.2;
padding: 5px 0 5px 15px;
position: relative;
font-weight: 500;
	text-align: left;
}

.subpage8 h3::before{
border-left: 4px solid #294f9c;
content: "";
height: 100%;
left: 0;
position: absolute;
top: 0;
}

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

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

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

.subpage10 ul{
width: 100%;
}

.subpage10 ul li{
width: 100%;

line-height: 2.2;
}

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

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

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

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

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

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

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

.subpage16{
width: 100%;
}

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

.subpage17{
width: 100%;
}

.subpage17 span{
line-height: 1.8;
font-size: 1.7rem;
font-weight: 500;
display: inline-block;
padding: 5px 30px;
background: linear-gradient(270deg, #8cbc30, #33bec2);
color: #fff;
border-radius: 4px 20px 20px 4px;
}

.subpage18{
width: 100%;
}


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


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

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

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

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

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

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


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

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

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

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

.subpage22{
width: 880px;
border: 2px dotted #acd9f8;
background: #f7faff;
padding: 20px 30px;
color: #005791;
margin: 0 auto;
font-size: 1.4rem;
line-height: 2;
}

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

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

.subpage25{
width: 100%;
background: #fafafa;
border-radius: 5px;
}

.subpage26{
background: #eeeeee;
font-size: 2.2rem;
color: #323232;
padding: 2rem;
display: flex;
align-items: center;
width: 100%;
line-height: 1.6;
}

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


.subpage27{
padding: 2rem 3rem;
font-size: 1.8rem;
line-height: 2.5;
}

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

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

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

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

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

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

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

.subpage33 ul{

}

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

.subpage33 ul.sub{
padding: 0 0 0 2vw;
color: #4c6e7e;
}

.subpage33 ul.sub li{
line-height: 1.8;
}

.subpage33 ul.sub li:before {
content: "";
background: url(../images/ic_arrow2.svg);
width: 1rem;
height: 1rem;
display: inline-block;
vertical-align: sub;
margin: 0 10px 0 0;
transform: translateY(-50%);
top: 50%;
position: relative;
}    

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

.subpage34 img{
width: 400px;
border-radius: 7px;
}

.subpage35{
width: 100%;
/*text-align: center;*/
display: flex;
flex-wrap: wrap;
justify-content: center;
}

.subpage35 a{
display: block;
}

.subpage35 a:hover{
opacity: .8;
transform: translateY(-5px);
}

.subpage35 a img{
width: 500px;
}

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

.subpage36 video{
width: 90%;
border-radius: 10px;
}

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

.subpage37 span {
display: inline-block;
position: relative;
padding: 0 1.5rem 1rem;
text-align: center;
font-size: 2rem;
letter-spacing: .2rem;
font-weight: 700;
color: #484848;
}

.subpage37 span:after {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 3px;
content: '';
border-radius: 3px;
background-image: linear-gradient(to left, #00d7d3 0%, #00aad8 100%);
}
.subpage38{
width: 100%; 
}
.subpage39{
margin: 0 0 5px 0;
}    
.subpage39 span {
display: inline-block;
text-align: center;
font-size: 1.7rem;
padding: 2px 15px;
background: #caf2ff;
color: #282C36;
border-radius: 10px;
margin: 0 12px 0 0;
line-height: 1.5;
}
.subpage40{
margin: 0 0 5px 0;
}     
.subpage40 span {
display: inline-block;
text-align: center;
font-size: 1.7rem;
padding: 2px 15px;
background: #fccfe7;
color: #282C36;
border-radius: 10px;
margin: 0 12px 0 0;
line-height: 1.5;
} 
.subpage41 {
width: 100%;
padding: 15px 20px;
line-height: 1.8;
background: #f7f7f7;
color: #204354;
}    
.subpage42 {
width: 100%;
padding: 0 50px;
line-height: 2.2;
}
.subpage42 p{
font-size: 2rem;
font-weight: 700;
width: 100%;
padding: 0 50px;
line-height: 2.2;
text-align: left;
margin: 0 0 10px;
}    
.subpage42 ol {
display: flex;
flex-wrap: wrap;
gap: 20px;
margin: 0 auto;
counter-reset: my-counter;
list-style: none;
padding: 0 50px;
line-height: 2.2;
}

.subpage42 ol li {
width: calc((100% - 20px * 2) / 3);
display: flex;
flex-direction: column;
}    
.subpage42 ol li a:before {
content: counter(my-counter);
counter-increment: my-counter;
background-color: #349ADF;
border: 1px solid;
border-radius: 50%;
box-sizing: border-box;
display: flex;
justify-content: center;
align-items: center;
height: 22px;
width: 22px;
color: #ffffff;
font-size: 85%;
line-height: 1;
margin: 0 5px 0 0;
}
.subpage42 ol li a{    
display: flex;
padding: 10px;
background: #eee;
line-height: 1.5;
position: relative;
align-items: center;
border-radius: 5px;   
}
.subpage42 ol li a:hover{    
background: #c8e9ff;
color: #282C36;
}    
	
	

	
	

	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
/* 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: 40px 0 0 0;
}

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

.access2 img{
width: 450px;
}

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

.access4{
width: 100%;
font-size: 1.4rem;
letter-spacing: 0.05;
color: #0050a3;
}

.access5{
width: 100%;
}


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

.access5 a span{

}

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

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

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

.access8{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
border-bottom: 3px solid #ffffff;
padding: 22px 0;
color: #292929;
background: #fafafa;
}

.access8:first-child{

}


.access8:last-child{

}

.access9{
width: 22%;
text-align: center;
font-size: 1.6rem;
line-height: 1.2;
}

.access10{
width: 78%;
line-height: 2;
font-weight: 500;
font-size: 1.6rem;
}

.access10 > ul li {
margin-top: 4px;
padding-left: 1em;
text-indent: -1em;
}

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

.access12{
}

.access13{
width: 100%;
}

.access14{
width: 100%;
}

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

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

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

.access16 img{
width: 100%;
}

.access17{
width: 50%;
margin-left: auto;
margin-right: auto;
}

.access17 img {
border: 3px solid #000;
border-radius: 10px;
}
.access18{

}

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

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

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

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

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

.access23 {
margin-top: 10rem;
}

.access23 .heading {
text-align: center;
font-size: 2rem;
color: #2fa314;
font-weight: 700;
margin-bottom: 1.5rem;
}

.access23 ol {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
list-style: none;
padding-left: 0;
overflow: hidden;
}

.access23 ol li {
width: calc(33.3% - 3rem);
margin-bottom: 2rem;
position: relative;
}

.access23 ol li .img {
margin-bottom: 1rem;
}

.access23 ol li .img + p {
font-size: 1.3rem;
}

.access23 ol li .img img {
width: 100%;
}

.access23 ol li:nth-child(n+2):before {
content: "";
display: block;
position: absolute;
left: -3.5rem;
top: 50%;
width: 30px;
height: 30px;
transform: translateY(-100%);
background: url(../images/ic_arrow2.svg) no-repeat 50% 50%;
background-size: 30px;
}

	
.topaccess3{
width: 1000px;
margin: 30px auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
background: #fff;
border-radius: 5px;
padding: 4rem 4rem;
}

.topaccess4{
width: 100%;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
border-bottom: 1px solid #ddd;
padding-bottom: 3rem;
align-items: center;
}

.topaccess5{
width: 20%;
font-family: 'Zen Maru Gothic', serif;
font-size: 1.8rem;
color: #294f9c;
text-align: right;
}

.topaccess6{
width: 76%;
line-height: 1.8;
}
	
.access_map_ttl{
width: 100%;
text-align: center;
margin:30
}

.access_map_ttl span{
width: 100%;
position: relative;
display: block;
font-size: 2.5rem;
font-weight: 400;
letter-spacing: .3rem;
}

.access_map_ttl span::before{
content: "─ ACCESS MAP ─";
font-size: 1.5rem;
width: 100%;
display: block;
line-height: 1;
color: #848484;
font-weight: 400;
letter-spacing: .1rem;
margin-bottom: .5rem;
}
.access_fab_ttl{
width: 100%;
text-align: center;
}

.access_fab_ttl span{
width: 100%;
position: relative;
display: block;
font-size: 2.5rem;
font-weight: 400;
letter-spacing: .3rem;
}

.access_fab_ttl span::before{
content: "─ ACCESS MAP ─";
font-size: 1.5rem;
width: 100%;
display: block;
line-height: 1;
color: #848484;
font-weight: 400;
letter-spacing: .1rem;
margin-bottom: .5rem;
}
	



/* recruit */

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

.recruit_ttl span{
width: 100%;
position: relative;
display: block;
font-size: 2.5rem;
font-weight: 400;
letter-spacing: .3rem;
}

.recruit_ttl span::before{
content: "─ recruit ─";
font-size: 1.5rem;
width: 100%;
display: block;
line-height: 1;
color: #848484;
font-weight: 400;
letter-spacing: .1rem;
margin-bottom: .5rem;
}


	
	
/* recruit */	
	
/* report */

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

.report_ttl span{
width: 100%;
position: relative;
display: block;
font-size: 2.5rem;
font-weight: 400;
letter-spacing: .3rem;
}

.report_ttl span::before{
content: "─ report ─";
font-size: 1.5rem;
width: 100%;
display: block;
line-height: 1;
color: #848484;
font-weight: 400;
letter-spacing: .1rem;
margin-bottom: .5rem;
}


	
	
/* recruit */	
	
	
	
	
	
	
/* clinic */	

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

.clinic_ttl span{
width: 100%;
position: relative;
display: block;
font-size: 2.5rem;
font-weight: 400;
letter-spacing: .3rem;
}

.clinic_ttl span::before{
content: "─ medical ─";
font-size: 1.5rem;
width: 100%;
display: block;
line-height: 1;
color: #848484;
font-weight: 400;
letter-spacing: .1rem;
margin-bottom: .5rem;
}
.clinic_img01{
width: 100%;
text-align: center;
	margin: 5rem 0 5rem 0;
}

.clinic_img01 img{
width: 500px;
}
.clinic_img02{
width: 100%;
text-align: center;
	margin: 0 0 5rem 0;
}

.clinic_img02 img{
width: 700px;
}
	
.clinic8b{
background: #f5f8fa;
border-radius: 10px;
width: 100%;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
line-height: 1.6;
font-size: 1.6rem;
}
.clinic8b ol.list02{
background: #f5f8fa;
width: 600px;
margin: 30px auto;
}
.clinic8b ol.list02 li{
background: #f5f8fa;
letter-spacing: 0.3em;
    margin-bottom: 0.3rem;
}


.clinic9{
width: 100%;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
line-height: 2.2;
    font-size: 1.6rem;
    position: relative;
    font-weight: 500;
    padding-left: 1.3rem;
}

.clinic9::before {
    display: block;
    position: absolute;
    top: 1.4rem;
    left: -0.2rem;
    width: 0.8rem;
    height: 0.8rem;
    background-color: #294f9c;
    content: '';
}

.clinic9:last-child{
margin: 0 auto;
}
	
.clinic20{
width: 800px;
margin: 3rem auto 0.5rem;
display: flex;
justify-content: space-between;
flex-wrap: wrap;

}

.clinic21{
width: 45%;
}
	
	
	
	
	
	
	
/* clinic */	

/* dooctor */
	
.doctor1{
    width:720px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.doctor2{
width: 250px;
}

.doctor2 img{
width: 100%;
border-radius: 5px;
}

.doctor3{
    width: 400px;
    display: flex;
    flex-wrap: wrap;
    padding: 50px 0 50px;
    background: #fff;
    justify-content: center;
    box-shadow: 10px 10px 2px #efefee;
    border: 1px solid #ebe6d2;
}

.doctor4{
font-size: 1.6rem;
line-height: 1.8;
color: #454458;
font-weight: 600;
width: 100%;
letter-spacing: .4rem;
text-align: center;
/*font-family: 'Zen Old Mincho', serif;*/
}

.doctor5{
font-size: 4rem;
margin: 10px 0;
color: #454458;
width: 100%;
font-weight: 600;
/*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;
}
	
	
	
	
/*
.doctor1{
width: 1000px;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-around;
align-items: center;
}

.doctor2{
width: 450px;
}

.doctor2 img{
width: 100%;
}

.doctor3{
    width: 40%;
    display: flex;
    flex-wrap: wrap;
    padding: 40px 0 50px;
    background: #fff;
    justify-content: center;
    box-shadow: 20px 20px 5px rgb(235 230 210 / 50%);
}

.doctor4{
font-size: 2.2rem;
line-height: 1.2;
color: #454458;
font-weight: 700;
width: 100%;
letter-spacing: .4rem;
text-align: center;

}

.doctor5{
font-size: 4rem;
margin: 0 0 10px 0;
color: #454458;
width: 100%;
font-weight: 700;

text-align: center;
}

.doctor6{
font-size: 1.4rem;

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{
width: 100%;
}

.doctor7 h3{
    font-size: 2.5rem;
    font-weight: 400;
    text-align: center;
letter-spacing: .4rem;
}


.doctor7 h3::after{
content: "";
display: block;
width: 5rem;
height: .1rem;
background: #390b0b;
margin: 1.2rem auto 0;
}



.doctor8{
background: #fff;
border-radius: 10px;
width: 100%;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
line-height: 1.6;
font-size: 1.6rem;
}
.doctor8 ol.list02{
background: #fff;
width: 600px;
margin: 30px auto;
}
.doctor8 ol.list02 li{
background: #fff;
letter-spacing: 0.3em;
    margin-bottom: 1rem;
}
	
.doctor8b{
background: #f5f8fa;
border-radius: 10px;
width: 100%;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
line-height: 1.6;
font-size: 1.6rem;
}
.doctor8b ol.list02{
background: #f5f8fa;
width: 600px;
margin: 30px auto;
}
.doctor8b ol.list02 li{
background: #f5f8fa;
letter-spacing: 0.3em;
    margin-bottom: 1rem;
}

.doctor8_h{
width: 100%;
margin: 0 0 35px 0;
    font-size: 2.6rem;
    text-align: center;
    letter-spacing: .03rem;
    color: #0d141a;
    line-height: 1.8;
    transform: scaleY(1.05);
}

.doctor9{
width: 100%;
margin: 0 auto 1rem;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
line-height: 1.6;
    font-size: 1.6rem;
    position: relative;
    font-weight: 500;
    padding-left: 1.3rem;
}

.doctor9::before {
    display: block;
    position: absolute;
    top: 1rem;
    left: -0.2rem;
    width: 0.8rem;
    height: 0.8rem;
    background-color: rgba(106, 97, 89, 0.2);
    content: '';
}

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

.doctor10{
width: 100%;
font-size: 1.6rem;
color: #888;
}

.doctor11{
width: 100%;
}

.doctor11  h3{
font-size: 2.5rem;
color: #454458;
letter-spacing: .3rem;
margin: 0 0 10px 70px;
font-weight: 700;

}

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

.doctor13{
width: 100%;
}

.doctor14{
width: 100%;
}

.doctor15{
width: 48%;
}

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

.doctor17 {
background: #fafafa;
border-radius: 10px;
padding: 30px 70px;
width: 100%;
}

.doctor17 > .hospital_list{
margin-top: 20px;
}

.doctor17 > .hospital_list dd {
margin-top: 10px;
}

.doctor17 > .hospital_list dd ul {
padding-left: 20px;
}

.doctor17 > .hospital_list dd li{
list-style-type: disc;
}

.doctor18{
font-size: 1.4rem;
margin: 0 0 10px 0;
}

.doctor19{
width: 100%;
font-size: 1.6rem;
margin: 0 auto 1rem;
padding: 0 0 0 1.2rem;
}




.doctor20bg{
width: 100%;
background: #f5f8fa;
padding: 3vw 0 3vw 0;
}



.doctor20{
width: 900px;
margin: 3rem auto 3rem;
display: flex;
justify-content: space-between;
flex-wrap: wrap;

}

.doctor21{
width: 45%;
}


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

.doctor23{
width: 11rem;
position: relative;
    padding-left: 1.3rem;
    margin-bottom: 1rem;
}

.doctor23::before {
    display: block;
    position: absolute;
    top: 1rem;
    left: -0.2rem;
    width: 0.8rem;
    height: 0.8rem;
    background-color: rgba(106, 97, 89, 0.2);
    content: '';
}

.doctor23:last-child{
    margin-bottom: 0;
}

.doctor24{
width: calc(100% - 14rem);
}

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




/* dooctor */





/* about */

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

.about2{
width: 32%;
background: #FFFFFF;
border-radius: 30px 10px 10px 10px;
margin: 0 2% 40px 0;
}

.about2:nth-child(3n){
margin: 0 0% 40px 0;
}

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

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

.about4{
width: 100%;
font-size: 2rem;
text-align: center;
margin: 0 0 15px 0;
line-height: 1.4;
}

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

/* about */



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

table.check2{
width: 100%;
}

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

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

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

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

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

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

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

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

/* check */







/* topsubject */

.topsubject__w{
width: 100%;
background: url("../images/topsubjectbg.jpg");
background-size: cover;
padding: 50px 0 30px;
}

.topsubject1{
text-align: center;
margin: 0 0 50px 0;
}

.topsubject1 h2{
font-size: 3.2rem;
color: #23333e;
display: inline-block;
letter-spacing: .2rem;
line-height: 1;
font-weight: 700;

}

.topsubject1 h2 span{
}


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

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



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

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

}
/*
.topsubject2::before{
width: 210px;
width: 300px;
display: block;
content:"";
 order: 1;
}       

.topsubject2::after{
width: 210px;
display: block;
content:"";
}

.topsubject2-01 {
justify-content: center;
}

.topsubject2-01 .topsubject3 {
margin-left: 2rem;
margin-right: 2rem;
}

.topsubject2-01:before,
.topsubject2-01:after {
content: none;
}

.topsubject_cat{
width: 900px;
margin: 0 auto;
color: #009d8e;
font-size: 2rem;
letter-spacing: .075rem;
display: flex;
align-items: center;
position: relative;
}     

.topsubject_cat:before {
position: absolute;
width: 6px;
height: 50%;
content: '';
opacity: .2;
border-radius: 3px;
background: #7b7b7b;
}   

.topsubject_cat span {
padding: 1rem 2rem;
}    

.topsubject_about{
width: 900px;
margin: 0 auto;
color: #3a3a30;
font-size: 1.5rem;
letter-spacing: .075rem;
} */

.topsubject3{
width: 300px;
padding: 2rem 0;
display: flex;
flex-wrap: wrap;
transition: all .5s;
background: #ffffff;
border-radius: 5px;
margin: 0 0 25px 0;
box-shadow: 4px 6px 2px #e2e2e2;
transition-duration: .4s;
z-index: 2;
overflow: hidden;
position: relative;
}




.topsubject3.circle::after {
background: #4da1fc;
content: "";
display: block;
margin: auto;
opacity: 0;
pointer-events: none;
position: absolute;
top: 50%;
left: 0;
right: 0;
width: 100%;
padding-top: 100%;
height: 0;
z-index: -1;
transform: translateY(-50%) scale(0.1);
transition: opacity .5s, transform 0s;
transition-delay: 0s, .4s;
}

.topsubject3.circle:hover {
color: #fff !important;
}
.topsubject3.circle:hover::after {
opacity: 1;
transform: translateY(-50%) scale(1.1);
transition-delay: 0s;
transition: opacity .8s, transform .4s ease-in-out;
}

.topsubject3_3col{
width: 285px;
padding: 2rem 0;
display: flex;
flex-wrap: wrap;
transition: all .5s;
background: #ffffff;
border-radius: 5px;
margin: 0 0 25px 0;
box-shadow: 4px 6px 2px #e2e2e2;
transition-duration: .4s;
z-index: 2;
overflow: hidden;
position: relative;
}




.topsubject3_3col.circle::after {
background: #4da1fc;
content: "";
display: block;
margin: auto;
opacity: 0;
pointer-events: none;
position: absolute;
top: 50%;
left: 0;
right: 0;
width: 100%;
padding-top: 100%;
height: 0;
z-index: -1;
transform: translateY(-50%) scale(0.1);
transition: opacity .5s, transform 0s;
transition-delay: 0s, .4s;
}

.topsubject3_3col.circle:hover {
color: #fff !important;
}
.topsubject3_3col.circle:hover::after {
opacity: 1;
transform: translateY(-50%) scale(1.1);
transition-delay: 0s;
transition: opacity .8s, transform .4s ease-in-out;
}









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

.topsubject4 img{
width: 50px;
}

.topsubject5{
width: 100%;
text-align: center;
color: #3a3a30;
font-size: 1.8rem;
letter-spacing: .075rem;
line-height: 1.2;
display: flex;
align-items: center;
height: 4.8rem;
justify-content: center;
}

.topsubject5 span{

}

.topsubject5 span::after{
content: "▲";
display: block;
width: 100%;
text-align: center;
margin: .6rem 0 0 0;
transform: rotate(180deg);
font-size: 1.2rem;
color: #294f9c;
}


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

.topsubject6 span{
display: inline-block;
font-size: 2.3rem;
color: #eb78c3;
font-weight: 700;
line-height: 1;
background: #fff;
padding: 40px 30px;
border-radius: 5px;
letter-spacing: .3rem;
border: 1px dashed #eb78c3;
width: 900px;
}









/*topdoctor*/

.topdoctor__w{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
background: #f5f8fa;
padding: 8rem 0 0 0;
}
.topdoctor__wb{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
background: #fff;
padding: 8rem 0 3rem 0;
}
.topdoctor1{
width: 1000px;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
background: #fff;
padding: 5rem;
align-items: flex-start;
border-radius: 10px;
}

.topdoctor2{
width: 560px;
display: flex;
flex-wrap: wrap;
justify-content: space-between;

}

.topdoctor3{
width: 100%;
font-size: 2.7rem;
}

.topdoctor3 span::before{
content: "DOCTOR";
color: #0077c3;
font-size: 1.4rem;
/*font-family: 'Zen Maru Gothic', serif;*/
font-weight: 700;
letter-spacing: .4rem;
display: block;
line-height: 1;
margin-bottom: .7rem;

}

.topdoctor3 span::after{
content: "";
display: block;
width: 7.8rem;
border-bottom: 1px dashed #3e1f03;
margin-top: .7rem;
}
.topdoctor3b{
width: 100%;
font-size: 2.7rem;
}

.topdoctor3b span::before{
content: "DOCTOR";
color: #0077c3;
font-size: 1.4rem;
/*font-family: 'Zen Maru Gothic', serif;*/
font-weight: 700;
letter-spacing: .4rem;
display: block;
line-height: 1;
margin-bottom: .7rem;

}

.topdoctor3b span::after{
content: "";
display: block;
width: 7.8rem;
border-bottom: 1px dashed #3e1f03;
margin-top: .7rem;
}


.topdoctor4{
width: 100%;
font-size: 2.5rem;
letter-spacing: .5rem;
}
.topdoctor4b{
width: 100%;
font-size: 1.8rem;
letter-spacing: .5rem;
}

.topdoctor5{
line-height: 2.5;
}
.topdoctor5b{
background: #fff;
border-radius: 10px;
padding: 40px 50px;
width: 1000px;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
line-height: 2;
font-size: 1.6rem;
}

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

.topdoctor6 a span{
display: inline-block;
background: #fff;
padding: 1.5rem 3rem;
box-shadow: 5px 5px #0077c3;
border: 2px solid #0077c3;
}

.topdoctor6 a span::before{
content: "";
background: url("../images/ic_arrow2.svg");
width: 1.1rem;
height: 1.1rem;
display: inline-block;
margin: 0 .8rem 0 0;
vertical-align: baseline;
}


.topdoctor7{
width: 280px;
margin-top: 7rem;
}


.topdoctor7 img{
width: 100%;
border-radius: 10px;
}
	
.topdoctor7b{
width: 280px;
margin-top: -11rem;
}


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


/* topdoctor */







/*faq*/
.faq__w{
width: 100%;
display: flex;
flex-wrap: wrap;
margin: 0 0 40px 0;
border-bottom: 1px dashed #ccc;
padding: 0 0 40px 0;
}

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

.faq1{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin: 0 0 10px 0;
align-items: center;
}

.faq2{
width: 4%;
}

.faq2 span{
display: block;
background: #61bcef;
color: #fff;
text-align: center;
border-radius: 2px;
}

.faq3{
width: 94.5%;
font-size: 2rem;
font-weight: 700;
}


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

}

.faq5{
width: 4%;
}

.faq5 span{
display: block;
background: #ffffff;
color: #61bcef;
text-align: center;
border-radius: 2px;
border: solid 1px #61bcef;
}

.faq6{
width: 94.5%;
}

.faq7w{
width: 90%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin: 40px auto 0;
background: #fafafa;
padding: 25px 30px;
}

.faq7{
width: 100%;
background: #ededed;
padding: 5px 15px;
font-weight: 700;
font-size: 1.7rem;
color: #333;
line-height: 1.7;
margin: 0 0 20px 0;
}

.faq7 span{
}

.faq8{
width: 100%;
margin: 0 0 10px 0;
padding: 0 15px;
}

.faq9{
width: 100%;
font-size: 1.4rem;
padding: 0 15px;
margin: 0 0 45px 0;
}
.faq10w{
width: 95%;
margin: 0 auto;
background: #fff;
padding: 20px 20px;
border: solid 1px #e9e9e9;
}

.faq10{
width: 100%;
margin: -35px 0 15px 0;
}

.faq10 span{
display: inline-block;
padding: 2px 20px;
text-align: center;
background: #fdeec5;
border-radius: 100px;
color: #83702e;
font-weight: 700;
font-size: 1.6rem;
}

.faq11{
width: 100%;
font-weight: 700;
font-size: 1.7rem;

}

.faq12{
width: 100%;
font-size: 1.5rem;
}

.faq13{
width: 100%;
padding: 25px 0 35px 50px;
}


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

.faq13 a span{

}

.faq13 a span::before{
content: "";
background: url("../img/ic_tel.svg");
display: inline-block;
width: 2.5rem;
height: 2.5rem;
margin: 0 7px 0 0;
vertical-align: bottom;
}





/*faq*/








.open__w{
width: 100%;
padding: 2rem 0;
background: #5abcc3;
color: #fff;
}

.open1{
width: 100%;
text-align: center;
display: inline-block;
color: #fff;
border-radius: 2px;
}

.open2{
font-size: 5.4rem;
letter-spacing: .3rem;
font-weight: 700;
margin: 0 0 1rem 0;

}

.open3{
font-size: 1.82rem;
letter-spacing: .15rem;
line-height: 1;
margin: 2rem 0 0 0;
}
.open4{
width:85%;
margin: 0 auto;
position: absolute;
top: -1.5rem;
}
.open4 span{
font-size: 2.8rem;
color: #35a7af;
background: #daeff1;
border-radius: 3px;
padding: 0.4rem 0;
width: 100%;
display: inline-block;
box-shadow: 0px 2px 5px #c3c3c3;
}
.open5 {
font-size: 3.5rem;
letter-spacing: .3rem;
font-weight: 700;
margin: 6rem 0 0 0;

line-height: 1.6;
}
.open6 {
display: none;
}
.open_tour_w{
width: 650px;
display: flex;
flex-wrap: wrap;
justify-content: center;
margin: 3rem auto 0;
border-radius: 5px;
color: #35a7af;
padding: 0 3rem 3rem;
position: relative;
background: #ffffff;
}    

.detail_btn {
text-align: center;
width: 100%;
}
.detail_btn a {
display: inline-block;
border-radius: 5px;
background: #33bec2;
color: #fff;
text-align: center;
padding: 12px 0;
transition: .6s;
position: relative;
font-size: 1.6rem;
width: 240px;
box-shadow: 3px 3px 10px #dadada;
}
.detail_btn span::after {
content: "";
background: url(../images/arrow-white.svg);
width: 1.8rem;
height: 1.8rem;
position: absolute;
right: 15px;
font-size: 1rem !important;
top: 1.5rem;
color: #aedce0;
}

.detail_btn-md a {
width: 360px;
}


.subttl {
padding: 0 2rem;
}

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

.subttl h3::before {
border-left: 4px solid #a3cc55;
content: "";
height: 100%;
left: 0;
position: absolute;
top: 0;
} 

.subitem{
font-size: 2rem;
letter-spacing: .02rem;
line-height: 1.2;
font-weight: bold;
margin: 2vw 0 1vw;
color: #517c91;
}

.link{
width: 100%;
}    
.link a {
color: #2196f3;
border-bottom: 1px #2196f3 dotted;
padding: 0 0 5px;
font-size: 1.8rem;
line-height: 2.2;}    

.notes {
width: 880px;
border: 1px dotted #4e9ed5;
background: #f5f8fa;
padding: 20px 30px;
color: #294f9c;
margin: 0 auto;
font-size: 1.6rem;
line-height: 2;
}        

.notes ul li{
padding: 0 0 1em 1.5em;
line-height: 1.5;
}    

.notes li:before {
content: "〇";
display: inline-block;
width: 1.5em;
margin-left: -1.5em;
}


.notes_ttl{
font-size: 1.6rem;
font-weight: bold;
margin:  0 0 1vw 0;
}

.check_tbl_w {
width: 90%;
margin: 0 auto;
}    

.check_tbl {
width: 100%;
margin: 0 auto;
}
.check_tbl-hd {
background-color: #604c3d;
}
.check_tbl-hd th {
text-align: center;
padding: 5px 5px;
border: 1px solid #e2e2e2;
font-size: 1.8rem;
vertical-align: middle;
color: #ffffff;
}
.check_tbl td {
padding: 15px 20px;
border: 1px solid #e2e2e2;
vertical-align: middle;
background: #ffffff;
}

.check_tbl td.item {
background: #f5f5f5;
}    
.check_tbl td.price {
text-align: center;
}    

.consultation_tbl_w {
width: 90%;
margin: 0 auto;
}    
.consultation_tbl {
width: 100%;
margin: 0 auto;
}
.consultation_tbl-hd {
background-color: #604c3d;
}
.consultation_tbl-hd th {
text-align: center;
padding: 5px 5px;
border: 1px solid #e2e2e2;
font-size: 1.8rem;
vertical-align: middle;
color: #ffffff;
}
.consultation_tbl td {
padding: 15px 20px;
border: 1px solid #e2e2e2;
vertical-align: middle;
background: #ffffff;
}
.consultation_tbl td.item {
background: #f5f5f5;
}       
.consultation_tbl td.price {
text-align: center;
}   
.consultation_notes {
padding: 0 0 2vw;
font-size: 1.4rem;
} 
.consultation_quote {
text-align: right;
padding: 1vw 0 2vw;
font-size: 1.3rem;
color: #999;
}  

.subpage-subttl {
margin: 0 auto 50px;
text-align: center;
border-bottom: 8px solid #91dadc;
border-image-slice: 1;
font-size: 3.5rem;
font-weight: bold;
display: block;
letter-spacing: .3rem;
padding: 30px 0;
width: 1000px;
color: #797979;

}    

.subpage43 {
width: 1000px;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
background: #33bec2;
padding: 30px 50px 30px;
box-shadow: 15px 15px 5px #ededed;
border-radius: 10px;
color: #fff;
}  

.subpage44 {
width: 100%;
/*background: #fff;*/
padding: 30px 0 20px;
color: #2e2e2e;
background: url("../images/about_bg.jpg");
background-size: cover;
position: relative;
  z-index: 1;
} 
.subpage45 {
width: 1000px;
padding: 4rem;
margin: 0 auto 2rem;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
font-size: 1.6rem;
line-height: 2.5;
background-color: rgba( 255, 255, 255, 0.55 );
	border-radius: 20px;
} 
.subpage45_name {
width: 1000px;
margin:5rem 0 0 0;	

} 
.subpage45_name span{
	float:right;
display: inline-block;
flex-wrap: wrap;
justify-content: space-between;
text-align: right;
font-size: 1.7rem;
line-height: 2.5;	
} 

.subpage46 {
width: calc(33.3% - 2rem);
margin-bottom: 3rem;
overflow: hidden;
border-radius: 10px;
background-color: #fafafa;
}


.subpage48 {
padding: 1.5rem;
}

.subpage49 {
font-size: 1.8rem;
letter-spacing: .02rem;
line-height: 1.2;
padding: 5px 0 5px 15px;
position: relative;
font-weight: 500;
margin-bottom: 1rem;
}

.subpage49:before {
border-left: 4px solid #a3cc55;
content: "";
height: 100%;
left: 0;
position: absolute;
top: 0;
}

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

.subpage51 {
width: 34%;
padding-left: 4rem;
}

.subpage52 {
flex: 1;
}

.subpage54 {
position: relative;
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}

.subpage54:after {
content: "";
width: calc(33.3% - 2rem);
}

.subpage55 {
display: flex;
justify-content: space-between;
align-items: center;
}

.subpage55 .subpage17 {
width: 150px;
}

.subpage55 > p {
flex: 1;
}

.subpage56 {
background-color: #fff;
text-align: center;
padding: 4rem;
}

.side-cta {
position: fixed;
right: 0;
top: 50%;
transform: translateY(-50%);
width: 65px;
height: 238px;
}

.side-cta a {
display: block;
writing-mode: vertical-rl;
text-orientation: upright;
padding: 6rem 1rem 4rem;
letter-spacing: 0.2rem;
font-weight: 700;
font-size: 2.4rem;
background-color: #fff;
border-radius: 10px 0 0 10px;
border-top: 4px solid #0054a4;
border-left: 4px solid #0054a4;
border-bottom: 4px solid #0054a4;
}

.side-cta a:before {
content: "";
display: block;
position: absolute;
left: 50%;
top: 2rem;
transform: translateX(-50%);
width: 3rem;
height: 3rem;
background: url('../images/ic_reservation.svg') no-repeat 75% 50%;
background-size: contain;
}















.topfeature__w{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background: #efefef url("../images/featurebg.png") center top no-repeat;
    background-size: contain;
    padding: 30rem 0 0;
}


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

}

.topfeature2{
width: 45%;
margin: 0 auto;
display: flex;
justify-content: space-between;
background: #294f9c;
}

.topfeature2:nth-child(odd) .topfeature4{
}    

.topfeature2:nth-child(even) .topfeature4{

}    

.topfeature3{
width: 400px;
}

.topfeature3 img{
width: 100%;
border-radius: 40% 60% 40% 50% / 60% 60% 50% 60%;
}

.topfeature3-2{
order: 2;
}

.topfeature4{
    width: 100%;
    position: relative;
    padding: 4rem 5rem;
}

.topfeature5{
font-size: 2.4rem;
font-weight: 700;
letter-spacing: .2rem;
height: 12rem;
width: 100%;
display: flex;
align-items: center;
margin-bottom: 1.5rem;
}

.topfeature5-1 span,
.topfeature5-3 span,
.topfeature5-2 span,
.topfeature5-4 span
{
    color: #fff;
    position: relative;
    display: block;
}


.topfeature5-1::before{
    content: "";
    background: url("../images/topfeature1.svg") no-repeat;
    display: block;
    width: 7rem;
    height: 7rem;
    position: absolute;
    top: -2.5rem;
    left: -2.5rem;
}

.topfeature5-2::before{
    content: "";
    background: url("../images/topfeature2.svg") no-repeat;
    display: block;
    width: 7rem;
    height: 7rem;
    position: absolute;
    top: -2.5rem;
    left: -2.5rem;

}

.topfeature5-3::before{
    content: "";
    background: url("../images/topfeature3.svg") no-repeat;
    display: block;
    width: 7rem;
    height: 7rem;
    position: absolute;
    top: -2.5rem;
    left: -2.5rem;
}

.topfeature5-4::before{
    content: "";
    background: url("../images/topfeature4.svg") no-repeat;
    display: block;
    width: 7rem;
    height: 7rem;
    position: absolute;
    top: -2.5rem;
    left: -2.5rem;
}

.topfeature5-5 span::before{
content: "5";
font-size: 9rem;
display: block;
border-bottom: solid 1px #0077c3;
line-height: 1.2;
margin: 0 0 4rem 0;
color: #0077c3;

font-weight: 900; 
}

.topfeature6{
line-height: 2;
font-size: 1.7rem;
color: #fff;
}


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

.topfeature7 span{
width: 100%;
position: relative;
display: block;
font-size: 2.5rem;
font-weight: 400;
letter-spacing: .3rem;
}

.topfeature7 span::before{
content: "─ FEATURES ─";
font-size: 1.5rem;
width: 100%;
display: block;
line-height: 1;
color: #848484;
font-weight: 400;
letter-spacing: .1rem;
margin-bottom: .5rem;
}


.topfeature8 {
display: inline;


  background: linear-gradient(transparent 75%, #ca090f 75%);
  background-position: 0;
  background-size: 0;
  background-repeat: no-repeat;
  transition: background 1s;
}
.topfeature8.active {
  background-size: 100% ;
}








/* ==========================
  フローティングバナー（追従バナー）
========================== */
.bl_floatingBanner {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    max-width: 100%;
    background: rgba(240,243,243,.9);
    padding: 2rem;
    box-sizing: border-box;
    z-index: 1000;
    border: 2px solid #155da3;
    transition: 2s;
}
.bl_floatingBanner.js_close {
  display: none;
}
.bl_floatingBanner_img {
  display: block;
  transition: 0.3s;
}
.bl_floatingBanner_img:hover {
}
.bl_floatingBanner_close {
    width: 2rem;
    height: 2rem;
    position: absolute;
    right: 1rem;
    top: 1rem;
    cursor: pointer;
}
.bl_floatingBanner_close span:nth-of-type(1) {
  position: absolute;
  top: 7px;
  right: 0;
  width: 15px;
  height: 1px;
  background-color: #000;
  transform: rotate(45deg);
}
.bl_floatingBanner_close span:nth-of-type(2) {
  position: absolute;
  top: 0;
  right: 7px;
  width: 1px;
  height: 15px;
  background-color: #000;
  transform: rotate(45deg);
}

/* ==========================
  コンテンツの中身
========================== */
.ly_inner {
  width: 100%;
  max-width: 1080px;
  margin: 100px auto;
  padding: 20px;
  background-color: #ccc;
}
.ly_inner h2 {
  font-size: 150%;
  font-weight: bold;
  margin-bottom: 30px;
}
.md_textblock > * + * {
  margin-top: 10px;
}




table.fixtimetable8{
width: 400px;
background: #fff;
margin: 0 auto;
}

table.fixtimetable8 th{
background: #5b94cb;
text-align: center;
font-weight: 500;
font-size: 1.4rem;
padding: .5rem 0;
line-height: 1;
width: 10%;
color: #fff;
letter-spacing: .3rem;
}

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

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

table.fixtimetable8b th{
background: #cd5e62 !important;
}

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

table.fixtimetable8 tr{
}

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

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

table.fixtimetable8 td.fixtimetable10a{
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.fixtimetable8 td.fixtimetable10b{
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;
}

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

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

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

.fixtimetable12_f > .closed{
display: inline-block;
text-align: center;
padding: .4rem 2.5rem;
background: #fff;
font-size: 1.5rem;
color: #ef6276;
margin: 0 0 10px;
border: 1px solid #ef6276;
border-radius: 3px;
}
.fixtimetable12_f > .repletion{
width: 100%;
margin: 0 auto;
text-align: left;
font-size: 1.4rem;    
}    
.fixtimetable13{
width: 100%;
text-align: center;
}

.fixtimetable13 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;
}

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

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

.fixtimetable15 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;
}

.fixtimetable16{
width: 450px;
}

.fixtimetable16 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;
}

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

.fixtimetable16 a img{
width: 100%;
}

.fixtimetable17{
width: 450px;
}

.fixtimetable17 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;
}

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

.fixtimetable17 a img{
width: 100%;
}




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

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


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

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

.fixtimetable20{
color: #000;
font-size: 1.2rem;
}

.fixtimetable21{
font-size: 1.4rem;
margin-top: 0.5rem;
}

.fixtimetable22{
width: 100%;
text-align: center;
font-size: 1.3rem;
margin-top: .5rem;
}

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

.fixtimetable23 span{
font-size: 1.5rem;
font-weight: 500;
color: #0056ab;
text-align: center;
border-bottom: 1px solid #0056ab;
padding: .2rem .5rem;
}


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


.fixtimetable24 span{
font-size: 1.5rem;
font-weight: 500;
color: #c80107;
text-align: center;
border-bottom: 1px solid #c80107;
padding: .2rem .5rem;
}




/*フッターまでスクロールしたら消す*/
.is-hidden {
  visibility: hidden;
  opacity: 0;
  transition: .8s;
}


/*about*/
.about_gaiyo_ttl{
width: 100%;
text-align: center;
}

.about_gaiyo_ttl span{
width: 100%;
position: relative;
display: block;
font-size: 2.5rem;
font-weight: 400;
letter-spacing: .3rem;
}

.about_gaiyo_ttl span::before{
content: "─ ABOUT ─";
font-size: 1.5rem;
width: 100%;
display: block;
line-height: 1;
color: #848484;
font-weight: 400;
letter-spacing: .1rem;
margin-bottom: .5rem;
}
.about_doctor_ttl{
width: 100%;
text-align: center;
}

.about_doctor_ttl span{
width: 100%;
position: relative;
display: block;
font-size: 2.5rem;
font-weight: 400;
letter-spacing: .3rem;
}

.about_doctor_ttl span::before{
content: "─ DOCTOR ─";
font-size: 1.5rem;
width: 100%;
display: block;
line-height: 1;
color: #848484;
font-weight: 400;
letter-spacing: .1rem;
margin-bottom: .5rem;
}
.about_doctor_ttl2{
width: 100%;
text-align: center;
}

.about_doctor_ttl2 span{
width: 100%;
position: relative;
display: block;
font-size: 2.5rem;
font-weight: 400;
letter-spacing: .3rem;
}


	
	
.qa-container {
/*width: 48%;*/
width: 70%;
display: flex;
justify-content: space-between;
flex-wrap: wrap;
margin: 0 auto;

}

.qa-list {
width: 100%;
	}

.qa-list:not(:first-child) {
  margin-top: 10px;
}

.question-title {
  background: #fff;  
  cursor: pointer;
  font-size: 1.8rem;
  padding: 1rem 2rem;
  position: relative;
  border: 2px solid #294f9c;
  text-align: center;}

.question-title:before {

}

.question-title:after {
  position: absolute;
  display: block;
  content: '';
  top: 1.7rem;
  right: 1.5rem;
  width: 8px;
  height: 8px;
  border-top: 2px solid #294f9c;
  border-right: 2px solid #294f9c;
  transform: rotate(135deg);
  transition: all .3s ease-in-out;
}

.question-title.open:after {
  transform: rotate(-45deg);
  top: 45%;
}

	
.answer-text {
  display: none;
  padding: 2rem;
  position: relative;
  background: #fff;
}

.answer-text:before {

}

.answer-text1 {

}

.answer-text2 {
    width: 90%;
    position: relative;
    margin: 0 auto;
    font-weight: 700;
    line-height: 1.9;
}

.answer-text2::before {
  display: block;
  position: absolute;
  top: 1.2rem;
  left: -1.4rem;
  width: 0.8rem;
  height: 0.8rem;
  background-color: #294f9c;
  content: '';
}


.answer-text3 {
font-size: 1.6rem;
font-weight: 700;
line-height: 1.9;
}
	
.answer-text3 ol.list02{
margin: 30px auto;
}
.answer-text3 ol.list02 li{
letter-spacing: 0.2em;
    margin-bottom: 1.8rem;
}
	
	

	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	

}





/* PC */












































































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

.wrap{
position: relative;
padding: 0 0 7rem 0;
}

/* header */

header{
    width: calc(100% - 50px);
    height: 6rem;
    display: flex;
    align-items: center;
}

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

.header2{
    width: 100%;
    margin: 0 auto;
    height: 6rem;
    display: flex;
    align-items: center;
}

.header2 h1{
    text-align: center;
    width: calc(100% - 8rem);
    margin: 0 auto;
}

.header2 h1 a{

}

.header2 h1 a img{
    /*height: 4.2rem;*/
    margin: 0 auto;
}

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

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

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

.header4 a span{

}

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

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

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

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

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

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

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

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

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

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

.header11 span{
display: inline-block;
text-align: center;

line-height: 1;
width: 100%;
color: #ed6a70;
}

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





.header13{
width: 100%;
display: flex;
align-items: center;
justify-content: center;
height: 3.5rem;
font-size: 1.5rem;
color: #342626;
font-weight: 700;
letter-spacing: .15rem;
padding: 25px 0 30px;
}

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

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

.header15{
width: 100%;
padding: 0 0 20px 0;
}

.header16{
width: 30%;
margin: 1rem auto 0;
}



/* header */









/* nav */

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

#g-nav{
/*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
position:fixed;
z-index: -1;
opacity: 0;/*はじめは透過0*/
/*ナビの位置と形状*/
top:0;
width:100%;
height: 100vh;/*ナビの高さ*/
/*動き*/
transition: all 0.3s;
background: rgba(0,84,164,1);
}

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

/*ナビゲーションの縦スクロール*/
#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: calc(100% - 17rem);
  display: flex !important;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 3rem auto 0;
}

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

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

#g-nav li a{
text-decoration: none;
padding: 1rem 0;
display: block;
text-transform: uppercase;
letter-spacing: 0.1rem;
font-weight: 500;
font-size: 1.7rem;
background: #fff;
border-radius: 3px;
width: 100%;
margin: 0 auto;
color: #0054a4;
position: relative;
}

#g-nav li a::after {
  content: "";
  position: absolute;
  bottom: .3rem;
  right: .3rem;
  width: 0;
  height: 0;
  border-bottom: 1rem solid #c80107;
  border-left: 1rem solid transparent;
}


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

#g-nav.panelactive ul li ul li{
width: 70%;
margin: 0 auto 1rem;
display: flex;
flex-direction: column;
}

#g-nav.panelactive ul li ul li a{
background: #fff;
line-height: 1.2;
padding: 1rem .2rem;
border-radius: 3px;
font-weight: 500;
width: 100%;
flex-grow: 1;
display: flex;
justify-content: center;
}

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








/*========= ボタンのためのCSS ===============*/
.openbtn{
  position: fixed;
  z-index: 9999;
  top: .5rem;
  right: .5rem;
  width: 5rem;
  height: 5rem;
  background: #c80107;
  border-radius: 5px;
}

/*×に変化*/	
.openbtn span{
display: inline-block;
transition: all .4s;
position: absolute;
/* left: 14px; */
height: 3px;
border-radius: 2px;
background-color: #fff;
width: 50%;
top: 50%;
left: 50%;
transform: translateY(-50%) translateX(-50%);
}

.openbtn span:nth-of-type(1) {
top:1.5rem;	
}

.openbtn span:nth-of-type(2) {
top:2.5rem;
}

.openbtn span:nth-of-type(3) {
top:3.5rem;
}

.openbtn.active span:nth-of-type(1) {
  top: calc(1.75rem);
  left: 13%;
  transform: translateY(6px) rotate(-45deg);
  width: 75%;
}

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

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


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

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

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




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


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

.spnavinfo1{

}

.spnavinfo2{

}



/* nav */









/* mainimage */

.mainimage__w{
width: 100%;
margin: 0 0 0 0;
background: #f9f9f9;
}

.mainimage1{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
padding: 0 1rem 2rem;
}

.mainimage2{
width: 39%;
margin: 4rem 0 0 0;

}

.mainimage2 img{
width: 100%;
}

.mainimage3{
width: 39%;
margin: 8rem 0 0 0;
}

.mainimage3 img{
width: 100%;
}

.mainimage4{
width: 22%;
margin: 1rem 0 0 0;
}

.mainimage4 img{
width: 100%;
}


/* mainimage */








/* slider */

.swiper__w {
    position: relative;
    width: 100%;
    background: #efefec;
    max-height: calc(100vh - 28rem);
    z-index: 100;
}
.swiper-wrapper {
    height: calc(100vh - 28rem) !important;
}


.swiper {
width: calc(100%);
    height: calc(100vh - 28rem);
margin-right: unset !important;
transition: opacity 1s ease-out;
opacity: 0;
}

.is-loaded.swiper {
opacity: 1;
}



.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 {
object-fit: cover;
    display: block;
    width: 100%;
    height: 100%;


}

.swipertxt{
    position: absolute;
    z-index: 10;
    display: flex;
    flex-wrap: wrap;
    top: 2rem;
    width: 100%;
    text-align: center;
    justify-content: center;
}

.swipertxt img{
width: 80%;
}

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

.swipertxt1 span{
display: inline-block;
background: rgb(241 100 178 / 90%);
color: #fff;
text-align: center;
font-size: 3.4rem;
letter-spacing: .3rem;
padding: 15px 0;
font-weight: 700;
border-radius: 2px;
width: 100%;
}

.swipertxt2{
position: absolute;
z-index: 9;
bottom: 7rem;
left: 3rem;
transition-delay: 1s !important;
line-height: 1.8;
padding: 3rem 0;
width: 600px;
}

.swipertxt2a {
width: 100%;
opacity: .9;

}

.swipertxt2a img {
width: 100%;
display: inline-block;
border-radius: 200px;
}

.swipertxt2b {
width: 100%;
opacity: .9;
}

.swipertxt2b img {
width: 100%;
display: inline-block;
border-radius: 200px;
}

.swipertxt3{
    position: absolute;
    z-index: 9;
    bottom: 3rem;
    right: 5%;
    transition-delay: 1s !important;
    line-height: 1.8;
    width: 90%;
}

.swipertxt3a {
width: 100%;
opacity: .9;
}

.swipertxt3a img {
width: 100%;
display: inline-block;
border-radius: 200px;
}


/* slider */










/* pagetop */


#page-top {
position: fixed;
bottom: 15rem;
right: 1rem;
z-index: 99;
opacity: .9;
}
#page-top a {
width: 7rem;
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.4rem;
background: #f5f5f5;
margin: 0 0 4vw 0;
}

.breadcrumb__w ol{
padding: 0;
color: #002c5a !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:#002c5a !important;
}

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

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

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

/* breadcrumb */








/* topnavigation */

.topnavigation__w{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
padding: 5rem 0 5rem;
background: #efefef;
}

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

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

.topnavigation2 span{
width: 100%;
position: relative;
display: block;
font-size: 2.5rem;
font-weight: 400;
letter-spacing: .3rem;
}

.topnavigation2 span::before{
content: "─ MEDICAL ─";
font-size: 1.5rem;
width: 100%;
display: block;
line-height: 1;
color: #848484;
font-weight: 400;
letter-spacing: .1rem;
margin-bottom: .5rem;
}

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

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

.topnavigation5{
width: 48%;
display: block;
background: #ffffff;
border-radius: 10px;
margin-bottom: 2rem;
}

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

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

.topnavigation6{
width: 100%;
text-align: center;
margin-bottom: 2rem;
}

.topnavigation6 img{
width: 30%;
}

.topnavigation7{
width: 100%;
font-weight: 500;
font-size: 1.7rem;

  text-align: center;
}

.topnavigation7 span{

}

.topnavigation7 span::before{
content: "";
background: url("../images/ic_arrow2.svg");
width: 1rem;
height: 1rem;
display: inline-block;
vertical-align: baseline;
margin: 0 .4rem 0 0;
}

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

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

.topnavigation10 {
  position: relative;
  display: inline-block;
  font-size: 1.7rem;
  text-align: center;
  width: 100%;
  margin: 0 auto 4rem;
}

.topnavigation10:before, .topnavigation10:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 2rem;
  height: 1px;
  background-color: black;
}

.topnavigation10:before {
    margin-left: -4rem;
}
.topnavigation10:after {
    margin-left: 2rem;

}


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

.topnavigation12 {
width: 100%;
margin: 0 auto;
font-size: 1.6rem;
line-height: 2;
}

.topnavigation12 span {

}

.topnavigation12 span::before {
content: "";
background: url("../images/ic_check.svg");
display: inline-block;
width: 1.6rem;
height: 1.6rem;
margin-right: .4rem;
vertical-align: middle;
}

/* topnavigation */














/* topnews */

.topnews__w{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
padding: 5rem 0 4rem;
background: #fff url("../images/news-line.jpg") no-repeat right 2rem top 10rem;
background-size: 15rem;
position: relative;
z-index: 100;
}

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

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

.topnews2 span{
width: 100%;
position: relative;
display: block;
font-size: 2.5rem;
font-weight: 400;
letter-spacing: .3rem;
}

.topnews2 span::before{
content: "─ INFORMATION ─";
font-size: 1.5rem;
width: 100%;
display: block;
line-height: 1;
color: #848484;
font-weight: 400;
letter-spacing: .1rem;
margin-bottom: .5rem;
}


.topnews3{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin: 0 auto;
padding: 2rem 3rem;
background: #fff;
border-radius: 10px;
border: 1px solid #555;
}

.topnews4{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
border-bottom:1px dotted #ECECEC;
padding: 1rem 0;
}

.topnews4:last-child{
border-bottom:none;
}

.topnews5{
width: 100%;
font-size: 1.3rem;
font-weight: 400;
margin-bottom: .5rem;
}

.topnews6{
width: 100%;
font-size: 1.7rem;
font-weight: 700;
margin-bottom: 1rem;
}

.topnews7{
width: 100%;
font-size: 1.5rem;
}







/* topnews */







.topline__w {
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
padding: 0 0 6rem;
background: #fff;
}

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

.topline2 {
width: 85%;
border-top: solid 1px #555;
border-bottom: solid 1px #555;
padding: 1.5rem 0;
text-align: center;
font-size: 1.7rem;
margin: 0 auto 2rem;
}

.topline2 span {

}

.topline2 span::after {
content: "▲";
display: inline-block;
margin-left: 1rem;
transform: rotate(180deg);

}

.topline3 {
width: 20rem;
display: flex;
justify-content: center;
align-items: center;
margin: 0 auto;
}

.topline3 a {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
background: #06c755;
color: #fff;
text-align: center;
padding: 1.5rem;
font-size: 1.8rem;
}
	
/*attention*/
	
.topattention1 {
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin: 0 auto;
padding: 0 1rem;
}

.topattention2 {
width: 100%;
margin: 0 auto;
font-size: 1.6rem;
line-height: 2;
}

.topattention2 p {

}

.topattention2 p::before {
content: "";
background: url("../images/ic_attention.svg");
display: inline-block;
width: 2.2rem;
height: 2.2rem;
margin-right: .4rem;
vertical-align: middle;
}









/* topsales */
.topsales__w{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
padding: 4rem 0 6rem;
background: #82cdd3;


}

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

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

.topsales2 span{
width: 100%;
position: relative;
display: block;
font-size: 2.5rem;
color: #fff;
font-weight: 700;
letter-spacing: .3rem;
line-height: 1.4;
}

/*
.topsales2 span::before{
content: "Countermeasures against COVID-19";
font-size: 1.4rem;
font-family: "Open Sans";
width: 100%;
display: block;
line-height: 1;
color: #c2ebef;
font-weight: 400;
margin: 0 0 1rem 0;
letter-spacing: .1rem;
}

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

.topsales3{
width: 90%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin: 0 auto;
background: #f6f6f6;
position: relative;
border-radius: 10px 10px 10px 10px;
}

.topsales4{
width: 100%;
}

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

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

.topsales6{
padding: 3rem;
background-color: #f7f7f7;
}

.topsales7{
width: 100%;
}

.topsales8{
width: 100%;
font-size: 1.5rem;
font-weight: 500;
text-align: center;
}


.topsales9{
width: 100%;
color: #1d2744;
}

.topsales10{
width: 100%;
font-size: 1.5rem;

line-height: 2;
color: #fff;
letter-spacing: .15rem;
padding: 0 3rem;
}

.topsales11{
width: 90%;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.7;
letter-spacing: .05rem;
background: #FFFBFB;
padding: 1.5rem 1.5rem;
border-radius: 10px;
  color: #e93131;
}

.topsales12 {
width: 140px;
height: 140px;
display: flex;
justify-content: center;
align-items: center;
margin: 0 auto 1rem;
background-color: #fff;
padding: 0 2rem;
border-radius: 50%;
}


/* topsales */






















/* topsupport */

.topsupport__w{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
padding: 4rem 0 6rem;
background: #ecfbff;
}

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

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

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

.topsupport2 span::before{
content: "Countermeasures against COVID-19";
font-size: 2rem;
font-family: "Open Sans";
width: 100%;
display: block;    line-height: 1;
color: #0054a4;
font-weight: 400;
letter-spacing: .3rem;
}

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


.topsupport3{
width: 90%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin: 0 auto;
background: #fff;
position: relative;
}

.topsupport4{
width: 100%;
}

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

.topsupport5 img{
width: 100%;
border-radius: 2px;
}

.topsupport6{
padding: 3rem;
}

.topsupport7{
width: 100%;
color: #005183;
}

.topsupport8{
width: 100%;
font-size: 1.8rem;
font-weight: 700;
}

.topsupport8::first-letter{
color: #2ca6e0;
}

.topsupport9{
width: 100%;
}

/* topsupport */




/* timetable */

.toptimetable__w{
width: 100%;
padding: 7vw 0 7vw;
background: url("../images/toptimetablebg.jpg") left center;
background-size: cover;
}

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

.toptimetable1 h2{
display: block;
font-weight: 500;
font-size: 1.5rem;
text-align: center;
padding: 1rem 1rem;
border: 2px solid #86c8f8;
border-radius: 5px;
color: #ffffff;
background: linear-gradient(330deg, rgb(0 108 184) 0%, rgb(80 159 216) 30%, rgb(71 199 210) 100%);
width: 90%;
margin: 0 auto;
}

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

.toptimetable1 h2 span::after{

}



.toptimetable3{
}

.toptimetable4{
}

.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: 100%;
background: #fff;
margin: 0 auto;
}

table.toptimetable8 th{
background: #5b94cb;
text-align: center;
font-weight: 700;
font-size: 1.3rem;
padding: 1rem 0;
line-height: 1;
width: 10%;
color: #fff;
}
table.toptimetable8b th{
background: #cd5e62 !important;
}

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

table.toptimetable8 td{
background: #fff;
text-align: center;

font-size: 1.2rem;
padding: .5rem 0;
line-height: 1;
width: 11%;
border-bottom: 1px solid #e1e1e1;
vertical-align: middle;
}

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

table.toptimetable8 tr{

}

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


.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: 1rem 2rem;
background: #fff;
font-size: 1.3rem;
color: #ef6276;
border-radius: 3px;
margin: 0 0 2vw;
border: 1px solid #ef6276;
}
.toptimetable12 > .repletion {
width: 90%;
margin: 0 auto;
text-align: left;
    font-size: 1.3rem;
line-height: 1.5;
}

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

.toptimetable12_f  > .closed{
display: inline-block;
text-align: center;
padding: .5rem 2rem;
background: #fff;
font-size: 1.3rem;
color: #ef6276;
border-radius: 3px;
margin: 0 0 2vw;
border: 1px solid #ef6276;
}
.toptimetable12_f > .repletion {
width: 90%;
margin: 0 auto;
text-align: left;
}   
.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;
}

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

.toptimetable20{
color: #000;
font-size: 1.1rem;
}

.toptimetable21{
width: 90%;
margin: 0 auto;
font-size: 1.2rem;
margin-top: 0.5rem;
}



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

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

.toptimetable23 span{
font-size: 1.6rem;
font-weight: 500;
color: #0056ab;
text-align: center;
border-bottom: 1px solid #0056ab;
padding: .5rem 1.8rem;
}


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

.toptimetable24 span{
font-size: 1.6rem;
font-weight: 500;
color: #c80107;
text-align: center;
border-bottom: 1px solid #c80107;
padding: .5rem 1.8rem;
}

















.topdoctortable1{
width: 90%;
background: #fff;
margin: 0 auto;
}

.topdoctortable1 th{
background: #006cb8;
text-align: center;
font-weight: 700;
font-size: 1.4rem;
padding: 2rem 0;
line-height: 1;
color: #fff;
letter-spacing: .2rem;
vertical-align: middle;
}

.topdoctortable1 td{
background: #fff;
text-align: center;
font-weight: 700;
font-size: 1.4rem;
padding: 2rem 0;
line-height: 1.2;
width: 10%;
color: #83ccd2;
letter-spacing: 0.05rem;
border-bottom: 1px solid #e1e1e1;
vertical-align: middle;
}

.topdoctortable1 tr{
}


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

th.topdoctortable3{
width: 9%;
}

th.topdoctortable4{
width: 16%;
}

th.topdoctortable5{
width: 10%;
}

td.topdoctortable6{
background: #fffae2;
color: #a16c47;
font-weight: 700;
}

td.topdoctortable7{
background: #eaf6ff;
color: #106ebf;
font-weight: 700;
}

td.topdoctortable8{
background: #fff4fa;
color: #e94287;
font-weight: 700;
}

td.topdoctortable9{
color: #87cff1;
}

td.topdoctortable10{
color: #ff9dc6;
}

/* timetable */












/* footer */
footer{
width: 100%;
background: #fff;
background-size: cover;
padding: 5rem 0;
}

.footer__w{
width: 90%;
display: flex;
flex-wrap: wrap;
align-items: flex-start;
margin: 0 auto;
}

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

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

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

.footer2 img{
width: 40%;
}

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

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

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

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

}


.footer7{
width: 100%;
}


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

.footer7 a span{

}

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

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

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

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

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

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

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

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

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

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

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



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

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

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

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

.footer19 a span{

}

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



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


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


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

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

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

.footer23 a span{

}

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

}

.footer24{
width: 100%;
background: #fff;
border-radius: 10px;

}

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

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

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

}

.footer27{
width: 100%;
text-align: center;
font-size: 1.4rem;
font-weight: 500;
color: #0050a3;
}

.footer27 span::before {
}

.footer28{
width: 100%;
}

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

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

.footer29{
width: 100%;
}

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

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


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

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

.footer32{
width: 100%;
}

.footer32 span{
display: inline-block;
font-size: 1.4rem;
font-weight: 700;
margin: 0 auto;
text-align: center;
color: #a7a7a7;
}

.footer33{
width: 100%;
font-weight: 700;
font-size: 1.4rem;
}


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

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

.footer35{
width: 57%;
}

.footer36{
width: 100%;
}

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


































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

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

.footerbnr1{
width: 160px;
}

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




.sitemap__w{
background: #f1f1f1;
display: flex;
flex-wrap: wrap;
justify-content: center;
padding: 3rem 0;
width: 100%;
}

.sitemap1{
width: 100%;
padding: 0 4rem;
line-height: 3;
letter-spacing: .01rem;
}

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

.sitemap2{
width: 100%;
}

.sitemap2 a{

}

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

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

.googlemaps__w{
width: 100%;
}

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




/* footer */






/* copyright */


.copyright {
width: 100%;
padding: 20px 0;
background: #b50104;
text-align: center;
color: #fff;
font-size: 1.4rem;
}



/* copyright */






/* sp footer */

.spfooternav__w{
width: 100%;
display: flex !important;
justify-content: space-between;
position: fixed;
bottom: 0;
z-index: 100;
height: 7rem;
background: #f1f1f1;
align-items: center;
align-items: stretch;
}

.spfooternav1{
flex-wrap: wrap;
padding: 1rem 0;
border-right: 1px solid #c6bdb5;
width: 80%;
display: flex;
align-items: center;
justify-content: center;
}
.spfooternav1_1{
font-size: 1.2rem;
display: flex;
align-items: center;
justify-content: center;
width: 100%;
letter-spacing: 0.025rem;
margin: 0 0 1rem 0;
line-height: 1;
}
.spfooternav1_2{
font-size: 2.6rem;
display: flex;
align-items: center;
justify-content: center;
width: 100%;
line-height: 1;
}  
.spfooternav1_2 span {
display: block;
font-weight: 700;
font-size: 2.2rem;
font-family: 'Asap', sans-serif;
} 
.spfooternav1_2 span::before {
content: "";
background: url(../images/ic_tel.svg) no-repeat;
display: inline-block;
width: 1.7rem;
height: 1.7rem;
vertical-align: middle;
margin-right: 0.4rem;
}    
.spfooternav2{
width: 20%;
display: flex;
align-items: center;
justify-content: center;
border-right: 1px solid #c6bdb5;
padding: 1rem 0;    
}
.spfooternav2 span {
display: block;
font-weight: 700;
}    
.spfooternav2 a {
display: flex;
align-items: center;
justify-content: center;
width: 100%;
font-size: 1.1rem;
padding: 1rem 0;
}    
.spfooternav2 a span::before {
content: "";
background: url("../images/ic_reservation.svg") no-repeat 50% 0;
display: block;
width: 2.2rem;
height: 2.2rem;
margin: 0 auto 2vw;
}
.spfooternav3{
width: 20%;
display: flex;
align-items: center;
justify-content: center;
}

.spfooternav3 span{
display: block;
font-weight: 700;
}
.spfooternav3 a {
display: flex;
align-items: center;
justify-content: center;
width: 100%;
font-size: 1.1rem;
padding: 1rem 0;
}
.spfooternav3 a span::before {
content: "";
background: url(../images/ic_map.svg) no-repeat;
display: block;
width: 2.2rem;
height: 2.2rem;
margin: 0 auto .5rem;
}

/* sp footer */









/* subpage */

.subpagetitle__w{
width: 100%;
background: url("../images/subpagetitlebg1.jpg") right center;
background-size: cover;
padding: 5rem 0;
}

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

.subpagetitle1 h2{
font-size: 2rem;
font-weight: 700;
letter-spacing: .5rem;
color: #ffffff;
line-height: 1;
text-shadow: 2px 2px 3px rgb(101 71 41 / 60%);
}

.subpagetitle1 h2 span{
}

.subpagetitle1 h2 span::after{
display: block;
text-align: center;
font-size: 1.1rem;
letter-spacing: .3rem;
border-top: 1px dashed #cbecff;
width: 26rem;
margin: 1.7vw auto 0;
padding: 1vw 0 0 0;
color: #cbecff;
font-weight: 500;
line-height: 1;
}

.subpagetitle1a{
}

.subpagetitle1b{

}

.subpagetitle1c{

}

.subpagetitle1d{

}

.subpagetitle1e{

}

.subpagetitle1f{

}

.subpagetitle1g{

}

.subpagetitle1h{

}

.subpagetitle1i{

}

.subpagetitle1j{

}



.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: #f5f8fa;
padding: 5vw 0 5vw;
}
.subpage__wb{
width: 100%;
background: #fff;
padding: 5vw 0 5vw;
}
	
	
.subpage__w0{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
background: #f5f8fa;
padding: 1rem 0 1rem 0;
}
	
	
	
	
	
.subpage1{
width: 95%;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
background: #fff;
padding: 5vw 5vw 5vw;
/*box-shadow: 15px 15px 5px #ededed;*/
border-radius: 10px;
}
.subpage1a{
width: 95%;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
/*background: #fff;*/
padding: 5vw 5vw 5vw;
/*box-shadow: 15px 15px 5px #ededed;*/
border-radius: 10px;
line-height: 2.2;}

.subpage2{
width: 100%;
/*border-bottom: 6px solid #ECECEC;*/
margin: 1vw 0 5vw 0;
}


.subpage2 h2{
font-size: 2rem;
font-weight: 400;
letter-spacing: .2rem;
line-height: 1.5;
padding: 0 0 3vw 0;
text-align: center;
color: #3A3A30;
background-image: linear-gradient(90deg, #294f9c 0 7%, #e8e7e4 7%);
background-repeat: no-repeat;
background-size: 100% 6px;
background-position: bottom;
}
	
	
	

.subpage2 h2:first-letter{
/*color: #81C303;*/
}

.subpage3{
width: 100%;
padding: 0 1vw;
line-height: 1.8;
margin:0 0 2vw 0;
}

.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.6;
margin: 0 0 4vw 0;
}

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

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

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

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

.subpage6 ul{
width: 100%;
}

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

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

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

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

.subpage7{
width: 100%;
}

.subpage7 ul{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: center;
}

.subpage7 ul li{
width: 90%;
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: #ffffff;
padding: 3vw 0;
text-align: center;
letter-spacing: .05rem;
color: #3A3A30;
box-shadow: 6px 6px 15px #b9deff;
font-weight: 700;
font-size: 1.4rem;
line-height: 1;
position: relative;
border: 2px solid #499be2;

}

.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_arrow2.svg");
display: inline-block;
width: 1.1rem;
height: 1.1rem;
position: absolute;
top: 1.7rem;
left: 1.2rem;
transform: rotateZ(90deg);

}

.subpage8{
width: 100%;
margin: 0 0 6vw 0;
}

.subpage8 h3{
font-size: 1.7rem;
letter-spacing: .02rem;
line-height: 1.2;
padding: 1vw 0 1vw 2.3vw;
position: relative;
font-weight: 700;
	text-align: left
}

.subpage8 h3::before{
border-left: 4px solid #294f9c;
content: "";
height: 100%;
left: 0;
position: absolute;
top: 0;
}

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

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

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

.subpage10 ul{
width: 100%;
}

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

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

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

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

.subpage12{
padding: 2vw 0 0 0;
font-size: 1.4rem;
line-height: 2;
}

.subpage13{
display: inline-block;
margin: -4.5rem 0 0 0;
background: #f99027;
color: #fff;
text-align: center;
padding: 1vw 3vw;
border-radius: 3px;
position: absolute;
font-size: 1.5rem;
}

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

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

.subpage16{
width: 100%;
}

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

.subpage17{
width: 100%;
}

.subpage17 span{
line-height: 1.8;
font-size: 1.4rem;
font-weight: 700;
display: inline-block;
padding: 1vw 3vw;
letter-spacing: .1rem;
background: linear-gradient(270deg, #8cbc30, #33bec2);
  color: #fff;
border-radius: 4px 20px 20px 4px;
}



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

.subpage18 ul li {
width: 32%;
margin: 0 0 2vw 0;
align-items: stretch;
display: flex;
text-align: center;
}

.subpage18 ul li a {
width: 100%;
font-size: 1.1rem;
line-height: 1.2;
padding: 1vw 1vw 1vw;
color: #18599d;
display: block;
}
.subpage18 ul li dt{
margin: 0 0 1vw 0;
}

.subpage18 ul li dt img {
width: 80%;
border-radius: 10px 3px 10px 3px;
}

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



.subpage22{
width: 100%;
  border: 2px dotted #acd9f8;  
  background: #f7faff;
padding: 3vw 5vw;
color: #005791;
margin: 0 auto;
line-height: 2;  

}

.subpage23{
margin: 0 0 2vw 0;
font-size: 1.3rem;
}

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

.subpage25{
width: 100%;
background: #fafafa;
border-radius: 5px;

}

.subpage26{
background: #eeeeee;
font-size: 1.6rem;
color: #323232;
padding: 2rem;
display: flex;
align-items: center;
width: 100%;
line-height: 1.6;
  font-weight: 700;
}

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


.subpage27{
padding: 2rem;
font-size: 1.4rem;
line-height: 2.3;
}

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

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

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

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

.subpage31{
padding: 2vw;
font-size: 1.4rem;
font-weight: 700;
line-height: 1.5;
}

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

.subpage33{
width: 100%;
padding: 3vw 3vw;
line-height: 1.6;
background: #f7f7f7;
color: #204354;
text-align: left;
}

.subpage33 ul{

}

.subpage33 ul li{
margin: 0 0 1rem 0;
}

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

.subpage33 ul li::before{
content: "";
background: url("../images/ic_checkbox.svg");
width: 1.8rem;
height: 1.8rem;
display: inline-block;
vertical-align: sub;
margin: 0 1vw 0 0;
}

.subpage33 ul.sub{
padding: 0 0 0 3vw;
color: #4c6e7e;
}

.subpage33 ul.sub li{
line-height: 1.6;
padding-left:1.5em;
text-indent:-1.5em;
}      
.subpage33 ul.sub li:before {
content: "";
background: url(../images/ic_arrow2.svg);
width: 1rem;
height: 1rem;
display: inline-block;
margin: 0 10px 0 0;
transform: translateY(-50%);
top: 50%;
position: relative;
}    
.subpage34{
width: 100%;
text-align: center;
display: flex;
flex-wrap: wrap;
justify-content: center;
}

.subpage34 img{
width: 70%;
border-radius: 7px;
margin: 0 0 3vw 0;
}

.subpage35{
width: 100%;
/*text-align: center;*/
display: flex;
flex-wrap: wrap;
justify-content: center;
}

.subpage35 a{
display: block;
width: 75%;
}

.subpage35 a img{
width: 100%;
}

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

.subpage36 video{
width: 100%;
border-radius: 10px;
}

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

.subpage37 span {
display: inline-block;
position: relative;
padding: 0 1.5rem .5rem;
text-align: center;
font-size: 1.6rem;
letter-spacing: .2rem;
font-weight: 700;
color: #484848;
}

.subpage37 span:after {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 3px;
content: '';
border-radius: 3px;
background-image: linear-gradient(to left, #00d7d3 0%, #00aad8 100%);
}

.subpage38 {
width: 100%;
}

.subpage39{
margin: 0 0 1vw 0;
}    

.subpage39 span {
display: inline-block;
text-align: center;
font-size: 1.4rem;
padding: 2px 15px;
background: #caf2ff;
color: #282C36;
border-radius: 5px;
margin: 0 12px 0 0;
line-height: 1.5;
}

.subpage40{
margin: 0 0 1vw 0;
}    

.subpage40 span {
display: inline-block;
text-align: center;
font-size: 1.4rem;
padding: 2px 15px;
background: #fccfe7;
color: #282C36;
border-radius: 5px;
margin: 0 12px 0 0;
line-height: 1.5;
}  
.subpage41 {
width: 100%;
padding: 3vw 3vw;
line-height: 1.5;
background: #f7f7f7;
color: #204354;
}
.subpage42 {
width: 100%;
padding: 0 1vw;
line-height: 1.8;
}
.subpage42 p {
font-size: 1.8rem;
font-weight: 700;
width: 100%;
line-height: 2.2;
text-align: left;
margin: 0 0 1vw;
}    
.subpage42 ol {
display: flex;
flex-wrap: wrap;
gap: 2vw;
margin: 0 auto 3vw;
counter-reset: my-counter;
list-style: none;
line-height: 2.2;
padding: 0;
}

.subpage42 ol li {
width: calc((100% - 2vw * 1) / 2);
display: flex;
flex-direction: column;
}    
.subpage42 ol li a:before {
content: counter(my-counter);
counter-increment: my-counter;
background-color: #349ADF;
border: 1px solid;
border-radius: 50%;
box-sizing: border-box;
display: flex;
justify-content: center;
align-items: center;
height: 22px;
width: 22px;
color: #ffffff;
font-size: 85%;
line-height: 1;
margin: 0 3px 0 0;
}
.subpage42 ol li a{    
display: flex;
padding: 10px;
background: #eee;
line-height: 1.5;
position: relative;
align-items: center;
border-radius: 5px;   
}
.subpage42 ol li a:hover{    
background: #c8e9ff;
color: #282C36;
}

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

.subpage55 .subpage17 {
width: 100px;
}

.subpage55 > p{
flex: 1;
}

.subpage56 {
padding: 2rem;
}
	
	
	
	
	
	
	
	
	
	
	
	
	

/* 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: 3rem 0 0 0;
}

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

.access2 img{
width: 60%;
}

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

.access4{
width: 100%;
font-size: 1.3rem;
letter-spacing: 0.05;
color: #0050a3;
}

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


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

.access5 a span{

}

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

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

.access7{
width: 100%;
border-radius: 7px;
}

.access8{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
border-bottom: 2px solid #fff;
padding: 3rem 0;
color: #292929;
background: #fafafa;
}

.access8:first-child{
}


.access9{
width: 10rem;
text-align: center;
font-size: 1.2rem;
letter-spacing: .025rem;
line-height: 1.5;
}

.access10{
width: calc(100% - 10rem);
line-height: 1.5;
font-weight: 500;
font-size: 1.2rem;
letter-spacing: .025rem;
}

.access11{
width: 100%;
}

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

.access13{
width: 100%;
}

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

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

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

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

.access16 img{
width: 100%;
}

.access17 img {
border: 3px solid #000;
border-radius: 10px;
}
.access18{

}

.access19{
width: 100%;
margin: 3vw 0 0;
text-align: center;
}

.access20{
font-size: 1.5rem;
text-align: center;
display: inline-block;
padding: 1vw 3vw;
border-radius: 5px;
color: #1258a3;
background: #effbfd;
}

.access21{
width: 100%;
font-size: 1.3rem;
font-weight: 500;
margin: 0 0 1vw 0;

}
.access22{
width: 100%;
margin: 0 0 2vw 0;
}

.access22:last-child{
width: 100%;
margin: 0 0 1vw 0;
}

.access23 {
margin-top: 5rem;
}
.access23 .heading {
text-align: center;
font-size: 1.6rem;
color: #2fa314;
font-weight: 700;
margin-bottom: 1rem;
}

.access23 ol {
list-style: none;
padding-left: 0;
}

.access23 ol li {
margin-bottom: 5rem;
position: relative;
}



.access23 ol li .img {
margin-bottom: 1rem;
}
.access23 ol li .img img {
width: 100%;
}
.access23 ol li:nth-child(n+2):before {
content: "";
display: block;
position: absolute;
left: 50%;
top: -4rem;
width: 30px;
height: 30px;
transform: translateX(-50%) rotate(90deg);
background: url('../images/ic_arrow2.svg') no-repeat 50% 50%;
background-size: 30px;
}

	
.topaccess3{
width: 90%;
margin: 30px auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
background: #fff;
border-radius: 10px;
padding: 1rem 2rem;
}

.topaccess4{
width: 100%;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
border-bottom: 1px solid #ddd;
padding: 2rem 0;
align-items: center;
}

.topaccess4:last-child{
border-bottom: 0;
}

.topaccess5{
width: 100%;
font-family: 'Zen Maru Gothic', serif;
font-size: 1.5rem;
color: #294f9c;
}

.topaccess6{
width: 100%;
line-height: 1.6;
}
	
.access_map_ttl{
width: 100%;
text-align: center;
}

.access_map_ttl span{
width: 100%;
position: relative;
display: block;
font-size: 2.2rem;
font-weight: 400;
letter-spacing: .3rem;
}

.access_map_ttl span::before{
content: "─ ACCESS MAP─";
font-size: 1.4rem;
width: 100%;
display: block;
line-height: 1;
color: #848484;
font-weight: 400;
letter-spacing: .1rem;
margin-bottom: .5rem;
}
.access_fab_ttl{
width: 100%;
text-align: center;
}

.access_fab_ttl span{
width: 100%;
position: relative;
display: block;
font-size: 2.2rem;
font-weight: 400;
letter-spacing: .3rem;
}

.access_fab_ttl span::before{
content: "─ ACCESS MAP─";
font-size: 1.4rem;
width: 100%;
display: block;
line-height: 1;
color: #848484;
font-weight: 400;
letter-spacing: .1rem;
margin-bottom: .5rem;
}
	
	
	

/* access */


	
	
	
	
	
/* recruit */	
.recruit_ttl{
width: 100%;
text-align: center;
}

.recruit_ttl span{
width: 100%;
position: relative;
display: block;
font-size: 2.2rem;
font-weight: 400;
letter-spacing: .3rem;
}

.recruit_ttl span::before{
content: "─ ACCESS MAP─";
font-size: 1.4rem;
width: 100%;
display: block;
line-height: 1;
color: #848484;
font-weight: 400;
letter-spacing: .1rem;
margin-bottom: .5rem;
}
/* report */		
.report_ttl{
width: 100%;
text-align: center;
}

.report_ttl span{
width: 100%;
position: relative;
display: block;
font-size: 2.2rem;
font-weight: 400;
letter-spacing: .3rem;
}

.report_ttl span::before{
content: "─ REPORT─";
font-size: 1.4rem;
width: 100%;
display: block;
line-height: 1;
color: #848484;
font-weight: 400;
letter-spacing: .1rem;
margin-bottom: .5rem;
}
/* recruit */		
	
	
	
/* clinic */	

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

.clinic_ttl span{
width: 100%;
position: relative;
display: block;
font-size: 2.2rem;
font-weight: 400;
letter-spacing: .3rem;
}

.clinic_ttl span::before{
content: "─ ACCESS MAP─";
font-size: 1.4rem;
width: 100%;
display: block;
line-height: 1;
color: #848484;
font-weight: 400;
letter-spacing: .1rem;
margin-bottom: .5rem;
}
.clinic_img01{
width: 100%;
text-align: center;
margin: 3vw 0 0 0;
}

.clinic_img01 img{
width: 90%;
}
.clinic_img02{
width: 100%;
text-align: center;
margin: 3vw 0 0 0;
}

.clinic_img02 img{
width: 90%;
}
	
.clinic20{
width: 100%;
margin: 1rem auto 1rem;
padding: 0 2rem;
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}

.clinic21{
width: 100%;
}
.clinic8b{
background: #f5f8fa;
width: 100%;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.clinic8b ol.list02{
background: #f5f8fa;
margin: 30px auto;
}
.clinic8 ol.list02 li{
background: #f5f8fa;
letter-spacing: 0.3em;
margin-bottom: 1rem;
}
	



.clinic9{
width: 100%;
margin: 0 auto 1rem;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
line-height: 1.5;
    position: relative;
    font-weight: 500;
    padding-left: 1.2rem;
}

.clinic9::before {
    display: block;
    position: absolute;
    top: .8rem;
    left: -0.2rem;
    width: 0.8rem;
    height: 0.8rem;
    background-color: #294f9c;
    content: '';
}

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


	
	
	
	
	
	
	
	
	
	
	
	
	
	

/* 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: 50%;
border-radius: 5px;
}

.doctor3{
width: 90%;
display: flex;
flex-wrap: wrap;
padding: 6vw 0 7vw;
background: #fff;
justify-content: center;
margin: 0 auto;
    box-shadow: 7px 7px 2px #efefee;
        border: 1px solid #ebe6d2;
}

.doctor4{
font-size: 1.6rem;
line-height: 1.6;
margin: 0 0 .5vw 0;
color: #454458;
font-weight: 700;
width: 100%;
letter-spacing: .4rem;
text-align: center;
}

.doctor5{
font-size: 2.2rem;
margin: 0 0 .5vw 0;
color: #454458;
width: 100%;
font-weight: 700;

text-align: center;
}

.doctor6{
font-size: 1.4rem;
text-align: center;
width: 100%;
color: #454458;
font-style: italic;
letter-spacing: .3rem;
font-weight: 300;
}

.doctor6{
width: 100%;
margin: 0 0 0 0;
}
/*
.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: 50%;
}

.doctor3{
width: 90%;
display: flex;
flex-wrap: wrap;
padding: 6vw 0 7vw;
background: #fff;
justify-content: center;
margin: 0 auto;
    box-shadow: 10px 10px 5px rgb(235 230 210 / 50%);
}

.doctor4{
font-size: 1.6rem;
line-height: 1.2;
margin: 0 0 .5vw 0;
color: #454458;
font-weight: 700;
width: 100%;
letter-spacing: .4rem;
text-align: center;

}

.doctor5{
font-size: 2.2rem;
margin: 0 0 .5vw 0;
color: #454458;
width: 100%;
font-weight: 700;

text-align: center;
}

.doctor6{
font-size: 1.4rem;

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{
width: 100%;
text-align: center;
}

.doctor7 h3{
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: .2rem;
  line-height: 1.5;
  padding: 0 0 2rem 0;
  text-align: center;
}

.doctor7 h3::after{
content: "";
display: block;
width: 5rem;
height: .1rem;
background: #390b0b;
margin: 1.2rem auto 0;
}


.doctor8{
background: #fff;
width: 100%;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.doctor8 ol.list02{
background: #fff;
margin: 30px auto;
}
.doctor8 ol.list02 li{
background: #fff;
letter-spacing: 0.3em;
margin-bottom: 1rem;
}
.doctor8b{
background: #f5f8fa;
width: 100%;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.doctor8b ol.list02{
background: #f5f8fa;
margin: 30px auto;
}
.doctor8 ol.list02 li{
background: #f5f8fa;
letter-spacing: 0.3em;
margin-bottom: 1rem;
}
	



.doctor9{
width: 100%;
margin: 0 auto 1rem;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
line-height: 1.5;
    position: relative;
    font-weight: 500;
    padding-left: 1.2rem;
}

.doctor9::before {
    display: block;
    position: absolute;
    top: .8rem;
    left: -0.2rem;
    width: 0.8rem;
    height: 0.8rem;
    background-color: rgba(106, 97, 89, 0.2);
    content: '';
}

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

.doctor10{
width: 100%;
color: #888;
font-size: 1.2rem;
}

.doctor11{
width: 100%;
}

.doctor11  h3{
font-size: 2.2rem;
color: #454458;
letter-spacing: .3rem;
margin: 0 0 2vw 0;
font-weight: 700;

text-align: center;
}

.doctor12{
background: #fafafa;
border-radius: 10px;
padding: 5vw 5vw;
width: 90%;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}

.doctor13{
width: 100%;
}

.doctor14{
width: 100%;
}

.doctor15{
width: 100%;
}

.doctor16{
background: #fafafa;
border-radius: 10px;
padding: 5vw 5vw;
width: 90%;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
line-height: 2;
}

.doctor17{
background: #fafafa;
border-radius: 10px;
padding: 5vw 5vw;
width: 90%;
margin: 0 auto;
}

.doctor17 > .hospital_list{
margin-top: 20px;
}

.doctor17 > .hospital_list dd {
margin-top: 10px;
}

.doctor17 > .hospital_list dd ul {
padding-left: 20px;
}

.doctor17 > .hospital_list dd li{
list-style-type: disc;
}


.doctor18{
font-size: 1.2rem;
margin: 0 0 4vw 0;
}

.doctor19{
width: 100%;
font-size: 1.4rem;
margin: 0 auto 1rem;
padding: 0 0 0 1.2rem;
}
.doctor20bg{
width: 100%;
background: #f5f8fa;
}

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

.doctor21{
width: 100%;
}



.doctor22{
width: 900px;
margin: 0 auto;
display: flex;
justify-content: space-between;
flex-wrap: wrap;
    margin-bottom: 1rem;
}

.doctor22:last-child{
    margin-bottom: 0;
}


.doctor23{
width: 100%;
position: relative;
    padding-left: 1.3rem;
}

.doctor23::before {
    display: block;
    position: absolute;
    top: 1rem;
    left: -0.2rem;
    width: 0.8rem;
    height: 0.8rem;
    background-color: rgba(106, 97, 89, 0.2);
    content: '';
}


.doctor24{
width: 100%;
}

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







/* dooctor */







/* about */

.about1{
width: 100%;
display: flex;
flex-wrap: wrap;
padding: 0 2vw;
}

.about2{
width: 49%;
background: #FFFFFF;
border-radius: 10px;
margin: 0 2% 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: 10px 10px 1px 1px;
}

.about4{
width: 100%;
font-size: 1.5rem;
padding: 0 2vw;
margin: 0 0 2vw 0;
line-height: 1.4;
text-align: center;
}

.about5{
width: 100%;
padding: 0 2vw;
margin: 0 0 3vw 0;
font-size: 1.3rem;
letter-spacing: 0;
line-height: 1.5;
}
	
.qa-container {
width: 100%;
    display: flex;
justify-content: space-between;
flex-wrap: wrap;
}

.qa-list {
width: 100%;
}

.qa-list:not(:first-child) {
  margin-top: 10px;
}

.question-title {
  background: #fff;  
  cursor: pointer;
  font-size: 1.5rem;
  padding: .5rem 1.5rem;
  position: relative;
  border: 1px solid #294f9c;
}

.question-title:before {

}

.question-title:after {
  position: absolute;
  display: block;
  content: '';
  top: 1.1rem;
  right: 1rem;
  width: 8px;
  height: 8px;
  border-top: 2px solid #294f9c;
  border-right: 2px solid #294f9c;
  transform: rotate(135deg);
  transition: all .3s ease-in-out;
}

.question-title.open:after {
  transform: rotate(-45deg);
  top: 45%;
}

.answer-text {
  display: none;
  padding: 1.5rem 1.5rem;
  position: relative;
  background: #fff;
}

.answer-text:before {

}

.answer-text1 {

}

.answer-text2 {
    width: 90%;
    position: relative;
    margin: 0 auto;
    font-weight: 700;
    line-height: 1.9;
}

.answer-text2::before {
  display: block;
  position: absolute;
  top: 1rem;
  left: -1.4rem;
  width: 0.8rem;
  height: 0.8rem;
  background-color: #294f9c;
  content: '';
}


.answer-text3 {
font-size: 1.3rem;
font-weight: 700;
line-height: 1.9;
}
	
.answer-text3 ol.list02{
margin: 20px auto;
}
.answer-text3 ol.list02 li{
letter-spacing: 0.2em;
    margin-bottom: 1.8rem;
}

	
	

/* 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 */








/* spmedical */
.spmedical__w{
width: 100%;
display: flex !important;
flex-wrap: wrap;
justify-content: center;
margin: 0 auto 0;
background: #f3f6fc;
padding: 5vw 0;
}

.spmedical1{
width: 30%;
margin: 0 2% 2vw 0;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}

.spmedical1 a{
width: 100%;
height: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
font-size: 3vw;
background: #fff;
line-height: 1.2;
padding: 1vw 1vw 1vw;
}

.spmedical2 img{
width: 100%;
}
.spmedical2{
width: 100%;
border-radius: 10px 3px 10px 3px;
}
.spmedical3{
width: 100%;
padding: 2vw 0;
font-weight: 500;
letter-spacing: -.05rem;
text-align: center;
}

/* spmedical */






/* topsubject */

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

.topsubject1{
text-align: center;
margin: 0 0 5vw 0;
}

.topsubject1 h2{
text-align: center;
width: 100%;
margin: 0 0 7vw 0;

}

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


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

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




.topsubject2{
width: 90vw;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.topsubject2b{
width: 90vw;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.topsubject_cat{
width: 90vw;
margin: 0 auto;
color: #009d8e;
font-size: 1.5rem;
letter-spacing: .075rem;
display: flex;
align-items: center;
position: relative;
}     

.topsubject_cat:before {
position: absolute;
width: 6px;
height: 50%;
content: '';
opacity: .2;
border-radius: 3px;
background: #7b7b7b;
}   

.topsubject_cat span {
padding: 1rem 1.5rem;
}    

.topsubject_about{
width: 90vw;
margin: 0 auto;
color: #3a3a30;
font-size: 1.3rem;
letter-spacing: .075rem;
}     

.topsubject3{
width: 47%;
padding: 1.5rem 0;
display: flex;
flex-wrap: wrap;
transition: all .5s;
background: #ffffff;
border-radius: 5px;

box-shadow: 12px 6px 15px #e2e2e2;
transition-duration: .4s;
z-index: 2;
overflow: hidden;
position: relative;
align-items: center;
}

.topsubject3.circle::after {
background: #4da1fc;
content: "";
display: block;
margin: auto;
opacity: 0;
pointer-events: none;
position: absolute;
top: 50%;
left: 0;
right: 0;
width: 100%;
padding-top: 100%;
height: 0;
z-index: -1;
transform: translateY(-50%) scale(0.1);
transition: opacity .5s, transform 0s;
transition-delay: 0s, .4s;
}

.topsubject3.circle:hover {
color: #fff;
}
.topsubject3.circle:hover::after {
opacity: 1;
transform: translateY(-50%) scale(1.1);
transition-delay: 0s;
transition: opacity .8s, transform .4s ease-in-out;
}

.topsubject3_3col{
width: 47%;
padding: 1.5rem 0;
display: flex;
flex-wrap: wrap;
transition: all .5s;
background: #ffffff;
border-radius: 5px;
margin: 0 0 3vw 0;
box-shadow: 12px 6px 15px #e2e2e2;
transition-duration: .4s;
z-index: 2;
overflow: hidden;
position: relative;
align-items: center;
}

.topsubject3_3col.circle::after {
background: #4da1fc;
content: "";
display: block;
margin: auto;
opacity: 0;
pointer-events: none;
position: absolute;
top: 50%;
left: 0;
right: 0;
width: 100%;
padding-top: 100%;
height: 0;
z-index: -1;
transform: translateY(-50%) scale(0.1);
transition: opacity .5s, transform 0s;
transition-delay: 0s, .4s;
}

.topsubject3_3col.circle:hover {
color: #fff;
}
.topsubject3_3col.circle:hover::after {
opacity: 1;
transform: translateY(-50%) scale(1.1);
transition-delay: 0s;
transition: opacity .8s, transform .4s ease-in-out;
}


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

.topsubject4 img{
width: 25%;
border-radius: 15px 5px 15px 5px;
}

.topsubject5{
width: 100%;
text-align: center;
color: #3a3a30;
font-size: 1.5rem;
font-weight: 400;
letter-spacing: 0;
display: flex;
align-items: center;
justify-content: center;
line-height: 1.1;
}

.topsubject5 span::after{
content: "▲";
display: block;
width: 100%;
text-align: center;
margin: .3rem 0 0 0;
transform: rotate(180deg);
font-size: 1.0rem;
color: #294f9c;
}


.topsubject6{
text-align: center;
width: 100%;
margin: 0 0 5vw 0;
}

.topsubject6 span{
display: inline-block;
font-size: 1.5rem;
color: #eb78c3;
font-weight: 700;
line-height: 1;
background: #fff;
padding: 7vw 3vw;
border-radius: 5px;
letter-spacing: .1rem;
border: 1px dashed #eb78c3;
width: 90%;
}




/* topsubject */









/*topdoctor*/

.topdoctor__w{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
background: #f5f8fa;
padding: 5rem 0 1rem 0;
}
.topdoctor__wb{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
background: #fff;
padding: 5rem 0;
}
.topdoctor1{
width: 95%;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
background: #fff;
padding: 2.5rem;
align-items: flex-start;
border-radius: 10px;
}

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

.topdoctor3{
width: 100%;
font-size: 2rem;
order: 1;
}

.topdoctor3 span::before{
content: "DOCTOR";
color: #0077c3;
font-size: 1.2rem;
/*font-family: 'Zen Maru Gothic', serif;*/
font-weight: 700;
letter-spacing: .2rem;
display: block;
line-height: 1;
margin-bottom: .7rem;

}

.topdoctor3 span::after{
content: "";
display: block;
width: 7.8rem;
border-bottom: 1px dashed #3e1f03;
margin-top: 1.2rem;
}
.topdoctor3b{
width: 100%;
margin:0 auto;
font-size: 2rem;
order: 1;
text-align: center;
	}

.topdoctor3b span::before{
content: "DOCTOR";
color: #0077c3;
font-size: 1.2rem;
/*font-family: 'Zen Maru Gothic', serif;*/
font-weight: 700;
letter-spacing: .2rem;
display: block;
line-height: 1;
margin-bottom: .7rem;
text-align: center;
	}

/*.topdoctor3b span::after{
content: "";
display: block;
width: 7.8rem;
border-bottom: 1px dashed #3e1f03;
margin-top: 1.2rem;
text-align: center;
	}*/


.topdoctor4{
width: 100%;
font-size: 2rem;
letter-spacing: .5rem;
text-align: center;
}
.topdoctor4b{
width: 100%;
font-size: 1.8rem;
letter-spacing: .5rem;
text-align: center;
}

.topdoctor5{
line-height: 2;
font-size: 1.5rem;
margin-bottom: 3rem;
}
/*.topdoctor5{
text-align: right;
	}*/
.topdoctor5b{
background: #fff;
border-radius: 10px;
padding: 30px 20px;
width: 90%;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
line-height: 2;
font-size: 1.6rem;
}

.topdoctor6{
width: 100%;
text-align: center;
order: 4;
}

.topdoctor6 a span{
display: inline-block;
background: #fff;
padding: 1.5rem 2rem;
box-shadow: 5px 5px #0077c3;
border: 2px solid #0077c3;
}

.topdoctor6 a span::before{
content: "";
background: url("../images/ic_arrow2.svg");
width: 1.1rem;
height: 1.1rem;
display: inline-block;
margin: 0 .8rem 0 0;
vertical-align: baseline;
}


.topdoctor7{
width: 100%;
text-align: center;
order: 2;
}


.topdoctor7 img{
width: 75%;
border-radius: 10px;
}
.topdoctor7b{
width: 100%;
text-align: center;
order: 2;
}
.topdoctor7b img{
width: 75%;
border-radius: 10px;
}
/* topdoctor */






/*faq*/
.faq__w{
width: 100%;
display: flex;
flex-wrap: wrap;
margin: 0 0 6vw 0;
border-bottom: 1px dashed #ccc;
padding:  0 0 6vw 0;
}

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

.faq1{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin: 0 0 2vw 0;
align-items: center;
}

.faq2{
width: 2rem;

}

.faq2 span{
display: block;
background: #61bcef;
color: #fff;
text-align: center;
border-radius: 2px;
}

.faq3{
width: calc(100% - 3rem);
font-size: 1.4rem;
font-weight: 700;
line-height: 1.4;
}


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

}

.faq5{
width: 2rem;
}

.faq5 span{
display: block;
background: #ffffff;
color: #61bcef;
text-align: center;
border-radius: 2px;
border: solid 1px #61bcef;
}

.faq6{
width: calc(100% - 3rem);
line-height: 1.4;
}


.faq7w{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin: 3vw auto 0;
background: #fafafa;
padding: 3vw 3vw;
}

.faq7{
width: 100%;
background: #ededed;
padding: 1vw 2vw;
font-weight: 700;
font-size: 1.4rem;
color: #333;
line-height: 1.7;
margin: 0 0 3vw 0;
}

.faq7 span{
}

.faq8{
width: 100%;
margin: 0 0 2vw 0;
padding: 0 3vw;
}

.faq9{
width: 100%;
font-size: 1.3rem;
padding: 0 2vw;
margin: 0 0 8vw 0;
}
.faq10w{
width: 95%;
margin: 0 auto;
background: #fff;
padding: 4vw 4vw;
border: solid 1px #e9e9e9;
}

.faq10{
width: 100%;
margin: -3.4rem 0 2vw 0;
}

.faq10 span{
display: inline-block;
padding: .5vw 4vw;
text-align: center;
background: #fdeec5;
border-radius: 100px;
color: #83702e;
font-weight: 700;
font-size: 1.4rem;
}

.faq11{
width: 100%;
font-weight: 700;
font-size: 1.5rem;

}

.faq12{
width: 100%;
font-size: 1.3rem;
}

.faq13{
width: 100%;
padding: 3vw 0 5vw 6vw;
}


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

.faq13 a span{

}

.faq13 a span::before{
content: "";
background: url("../img/ic_tel.svg");
display: inline-block;
width: 1.9rem;
height: 1.9rem;
margin: 0 1vw 0 0;
vertical-align: bottom;
}




.open__w{
width: 100%;
padding: 3rem 0;
background: #5abcc3;
color: #fff;
}

.open1{
width: 100%;
text-align: center;
display: inline-block;
color: #fff;
border-radius: 2px;
}

.open2{
font-size: 2.4rem;
letter-spacing: .3rem;
font-weight: 700;
line-height: 1.5;
}

.open3{
font-size: 1.5rem;
letter-spacing: .15rem;
line-height: 1.3;
margin: 1rem 0 0 0;
width: 100%;
}
.open4{
width: 85%;
margin: 0 auto;
position: absolute;
top: -1.5rem;
}
.open4 span{
font-size: 1.8rem;
color: #35a7af;
background: #daeff1;
border-radius: 3px;
padding: 0.4rem 0;
width: 100%;
display: inline-block;
line-height: 1.2;
box-shadow: 0px 2px 5px #c3c3c3;
}
.open5 {
font-size: 1.9rem;
letter-spacing: .2rem;
font-weight: 700;
margin: 1rem 0 0 0;

line-height: 1.6;
width: 100%;
}
.open_tour_w{
width: 90%;
display: flex;
flex-wrap: wrap;
justify-content: center;
margin: 2rem auto 0;
border-radius: 10px;
color: #35a7af;
padding: 1rem;
position: relative;
background: #ffffff;
}   

.open6{
margin-top: 2rem;
font-size: 1.5rem;
font-weight: 700;
}

.open7{
margin-top: 1rem;
font-size: 1.2rem;
color: #fff;
display: inline-block;
}


.detail_btn {
text-align: center;
margin: 0 auto;    
}
.detail_btn a {
display: inline-block;
border-radius: 5px;
background: #33bec2;
color: #fff;
text-align: center;
padding: 2vw 11vw;
transition: .6s;
position: relative;
font-size: 1.4rem;
letter-spacing: 0.01rem;
box-shadow: 3px 3px 10px #dadada;
}
.detail_btn span::after {
content: "";
background: url(../images/arrow-white.svg);
width: 1.6rem;
height: 1.6rem;
position: absolute;
right: 3vw;
font-size: 1rem !important;
top: 1.3rem;
color: #aedce0;
}

.detail_btn-md a {
width: 100%;
}


.subttl {
width: 100%;
margin: 0 0 6vw 0;
}

.subttl h3 {
font-size: 1.7rem;
letter-spacing: .02rem;
line-height: 1.2;
padding: 1vw 0 1vw 2.3vw;
position: relative;
font-weight: 700;
}

.subttl h3::before {
border-left: 4px solid #a3cc55;
content: "";
height: 100%;
left: 0;
position: absolute;
top: 0;
}
.subitem {
font-size: 1.6rem;
letter-spacing: .02rem;
line-height: 1.2;
font-weight: bold;
margin: 2vw 0 1vw;
color: #517c91;
}

.link {
width: 100%;
padding: 1vw 0 1vw;
}   

.link a {
color: #2196f3;
border-bottom: 1px #2196f3 dotted;
padding: 0 0 0.5vw;
font-size: 1.5rem;
}    

.notes {
width: 100%;
border: 1px dotted #4e9ed5;
background: #f5f8fa;
padding: 3vw 5vw;
color: #294f9c;
margin: 0 auto;
line-height: 2;
}

.notes ul li{
padding: 0 0 1em 1.5em;
line-height: 1.5;
}

.notes ul li {
/*margin: 0 0 0 1em;*/
}    

.notes li:before {
content: "〇";
display: inline-block;
width: 1.5em;
margin-left: -1.5em;
}

.notes_ttl{
font-size: 1.6rem;
font-weight: bold;
margin:  0 0 1vw 0;
}    


.check_tbl {
width: 100%;
}
.check_tbl-hd {
background-color: #604c3d;
}
.check_tbl-hd th {
text-align: center;
padding: 1vw 1vw;
border: 1px solid #e2e2e2;
font-size: 1.2rem;
vertical-align: middle;
color: #ffffff;
}
.check_tbl td {
padding: 2vw 2vw;
border: 1px solid #e2e2e2;
vertical-align: middle;
background: #FDFDFD;
font-size: 1.3rem;
} 

.check_tbl td.item {
background: #f5f5f5;
}

.check_tbl td.price {
text-align: center;
white-space: nowrap;
}


.consultation_tbl {
width: 100%;
}
.consultation_tbl-hd {
background-color: #604c3d;
}
.consultation_tbl-hd th {
text-align: center;
padding: 1vw 1vw;
border: 1px solid #e2e2e2;
font-size: 1.2rem;
vertical-align: middle;
color: #ffffff;
}
.consultation_tbl td {
padding: 2vw 2vw;
border: 1px solid #e2e2e2;
vertical-align: middle;
background: #FDFDFD;
font-size: 1.3rem;
}    
.consultation_tbl td.item {
background: #f5f5f5;
}  
.consultation_tbl td.price {
text-align: center;
}    
.consultation_quote {
text-align: right;
padding: 1vw 0 2vw;
font-size: 1rem;
color: #999;
} 
.consultation_notes {
padding: 0 0 2vw;
font-size: 1.2rem;
} 

.subpage-subttl {
margin: 0 auto 5vw;
text-align: center;
border-bottom: 6px solid #91dadc;
border-image-slice: 1;
font-size: 2rem;
font-weight: bold;
display: block;
letter-spacing: .2rem;
padding: 4vw 0;
width: 100%;
color: #797979;

} 

.subpage43 {
width: 95%;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
background: #33bec2;
padding: 5vw 5vw 5vw;
box-shadow: 15px 15px 5px #ededed;
border-radius: 10px;
color: #fff;
} 

.subpage44 {
width: 100%;
/*background: #fff;*/
background: url("../images/about_bg_sp.jpg");
background-position: center;
background-size: cover;
position: relative;
  z-index: 1;
padding: 30px 0 30px 0;
color: #2e2e2e;
} 
.subpage45 {
width: 95%;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
font-size: 1.5rem;
line-height: 2;	
	padding:1.6rem;
}
.subpage45_name {
width: 95%;
margin:5rem 0 3rem 0;	

} 
.subpage45_name span{
	float:right;
display: inline-block;
flex-wrap: wrap;
justify-content: space-between;
text-align: right;
font-size: 1.5rem;
line-height: 2.5;	
} 

.subpage46 {
background-color: #fafafa;
overflow: hidden;
border-radius: 10px;
}

.subpage48 {
padding: 2rem 1.5rem;
}

.subpage49 {
font-size: 1.7rem;
letter-spacing: .02rem;
line-height: 1.2;
padding: 1vw 0 1vw 2.3vw;
position: relative;
font-weight: 700;
margin-bottom: 1rem;
}

.subpage49:before {
border-left: 4px solid #a3cc55;
content: "";
height: 100%;
left: 0;
position: absolute;
top: 0;
}
.subpage50 {
}
.subpage51 {
margin-top: 2rem;
width: 100%;
margin-left: auto;
margin-right: auto;
}








/* corona */

.topcorona__w {
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
background: #fff9f1;
padding: 5rem 0 7rem;
}

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

.topcorona2 {
width: 100%;
text-align: center;
font-size: 2.7rem;
font-weight: 700;
color: #3293da;
display: inline-block;
}

.topcorona2 span {
color: #d95558;
}

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

.topcorona4 {
width: 100%;
padding-left:1.9rem;
text-indent:-1.9rem;
}

.topcorona4::before {
content: "■";
font-size: 1.4rem;
margin-right: .5rem;
color: #3293da;
}

.topcorona5 {
width: 100%;

font-size: 1.8rem;
font-weight: 500;
line-height: 2;
}

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

.topcorona7 {
width: 15%;

}

.topcorona7 img {
width: 100%;
}



.rinjinews__w {
width: 100%;
display: flex;
justify-content: space-between;
padding: 5rem 0;
background: #fff3f3;
}

.rinjinews1 {
width: 800px;
margin: 0 auto;
border: 3px solid #e03e2d;
border-radius: 10px;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
background: #fff;
}

.rinjinews2 {
width: 100%;
text-align: center;
padding: 1.5rem 1rem;
background: #e03e2d;
color: #fff;
font-size: 2.4rem;
font-weight: 700;
}

.rinjinews3 {
width: 100%;
padding:2rem 2.5rem;
line-height: 2.1
}


/* corona */







.topfeature__w{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background: #efefef url("../images/featurebg.png") center top no-repeat;
    background-size: contain;
    padding: 10rem 3rem 6rem;
}


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

}

.topfeature2{
width: 100%;
margin: 0 auto;
display: flex;
justify-content: space-between;
background: #294f9c;
}

.topfeature2:nth-child(odd) .topfeature4{
}    

.topfeature2:nth-child(even) .topfeature4{

}    

.topfeature3{
width: 400px;
}

.topfeature3 img{
width: 100%;
border-radius: 40% 60% 40% 50% / 60% 60% 50% 60%;
}

.topfeature3-2{
order: 2;
}

.topfeature4{
    width: 100%;
    position: relative;
    padding: 3rem;
}

.topfeature5{
font-size: 2rem;
font-weight: 700;
letter-spacing: .2rem;
width: 100%;
display: flex;
align-items: center;
margin-bottom: 1.5rem;
}

.topfeature5-1 span,
.topfeature5-3 span,
.topfeature5-2 span,
.topfeature5-4 span
{
    color: #fff;
    position: relative;
    display: block;
}


.topfeature5-1::before{
    content: "";
    background: url("../images/topfeature1.svg") no-repeat;
    display: block;
    width: 5rem;
    height: 5rem;
    position: absolute;
    top: -2.5rem;
    left: -2.5rem;
}

.topfeature5-2::before{
    content: "";
    background: url("../images/topfeature2.svg") no-repeat;
    display: block;
    width: 5rem;
    height: 5rem;
    position: absolute;
    top: -2.5rem;
    left: -2.5rem;

}

.topfeature5-3::before{
    content: "";
    background: url("../images/topfeature3.svg") no-repeat;
    display: block;
    width: 5rem;
    height: 5rem;
    position: absolute;
    top: -2.5rem;
    left: -2.5rem;
}

.topfeature5-4::before{
    content: "";
    background: url("../images/topfeature4.svg") no-repeat;
    display: block;
    width: 5rem;
    height: 5rem;
    position: absolute;
    top: -2.5rem;
    left: -2.5rem;
}

.topfeature5-5 span::before{
content: "5";
font-size: 9rem;
display: block;
border-bottom: solid 1px #0077c3;
line-height: 1.2;
margin: 0 0 4rem 0;
color: #0077c3;

font-weight: 900; 
}

.topfeature6{
line-height: 2;
font-size: 1.5rem;
color: #fff;
}


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

.topfeature7 span{
width: 100%;
position: relative;
display: block;
font-size: 2.5rem;
font-weight: 400;
letter-spacing: .3rem;
}

.topfeature7 span::before{
content: "─ FEATURES ─";
font-size: 1.5rem;
width: 100%;
display: block;
line-height: 1;
color: #848484;
font-weight: 400;
letter-spacing: .1rem;
margin-bottom: .5rem;
}


.topfeature8 {
display: inline;


  background: linear-gradient(transparent 75%, #ca090f 75%);
  background-position: 0;
  background-size: 0;
  background-repeat: no-repeat;
  transition: background 1s;
}
.topfeature8.active {
  background-size: 100% ;
}




/* ==========================
  フローティングバナー（追従バナー）
========================== */
.bl_floatingBanner {
  position: fixed;
  bottom: 10rem;
  left: 2.5%;
  width: 95%;
  background: rgba(240,243,243,.9);
  padding: 1rem;
  box-sizing: border-box;
  z-index: 1000;
  border: 2px solid #155da3;
  transition: 2s;
}
.bl_floatingBanner.js_close {
  display: none;
}
.bl_floatingBanner_img {
  display: block;
  transition: 0.3s;
}
.bl_floatingBanner_img:hover {
}
.bl_floatingBanner_close {
    width: 2rem;
    height: 2rem;
    position: absolute;
    right: 1rem;
    top: 1rem;
    cursor: pointer;
}
.bl_floatingBanner_close span:nth-of-type(1) {
  position: absolute;
  top: 7px;
  right: 0;
  width: 15px;
  height: 1px;
  background-color: #000;
  transform: rotate(45deg);
}
.bl_floatingBanner_close span:nth-of-type(2) {
  position: absolute;
  top: 0;
  right: 7px;
  width: 1px;
  height: 15px;
  background-color: #000;
  transform: rotate(45deg);
}




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

table.fixtimetable8 th{
background: #5b94cb;
text-align: center;
font-weight: 500;
font-size: 1.2rem;
padding: .5rem 0;
line-height: 1;
width: 10%;
color: #fff;
letter-spacing: .3rem;
}

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

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

table.fixtimetable8b th{
background: #cd5e62 !important;
}

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

table.fixtimetable8 tr{
}

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

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

table.fixtimetable8 td.fixtimetable10a{
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.fixtimetable8 td.fixtimetable10b{
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;
}

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

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

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

.fixtimetable12_f > .closed{
display: inline-block;
text-align: center;
padding: .4rem 2.5rem;
background: #fff;
font-size: 1.5rem;
color: #ef6276;
margin: 0 0 10px;
border: 1px solid #ef6276;
border-radius: 3px;
}
.fixtimetable12_f > .repletion{
width: 100%;
margin: 0 auto;
text-align: left;
font-size: 1.4rem;    
}    
.fixtimetable13{
width: 100%;
text-align: center;
}

.fixtimetable13 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;
}

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

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

.fixtimetable15 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;
}

.fixtimetable16{
width: 450px;
}

.fixtimetable16 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;
}

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

.fixtimetable16 a img{
width: 100%;
}

.fixtimetable17{
width: 450px;
}

.fixtimetable17 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;
}

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

.fixtimetable17 a img{
width: 100%;
}




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

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


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

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

.fixtimetable20{
color: #000;
font-size: 1.2rem;
}

.fixtimetable21{
font-size: 1.4rem;
margin-top: 0.5rem;
}

.fixtimetable22{
width: 100%;
text-align: center;
font-size: 1.3rem;
margin-top: .5rem;
}

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

.fixtimetable23 span{
font-size: 1.5rem;
font-weight: 500;
color: #0056ab;
text-align: center;
border-bottom: 1px solid #0056ab;
padding: .2rem .5rem;
}


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

.fixtimetable24 span{
font-size: 1.5rem;
font-weight: 500;
color: #c80107;
text-align: center;
border-bottom: 1px solid #c80107;
padding: .2rem .5rem;
}




/*フッターまでスクロールしたら消す*/
.is-hidden {
  visibility: hidden;
  opacity: 0;
  transition: .8s;
}


































/*about*/
.about_gaiyo_ttl{
width: 100%;
text-align: center;
}

.about_gaiyo_ttl span{
width: 100%;
position: relative;
display: block;
font-size: 2.2rem;
font-weight: 400;
letter-spacing: .3rem;
}

.about_gaiyo_ttl span::before{
content: "─ ABOUT ─";
font-size: 1.4rem;
width: 100%;
display: block;
line-height: 1;
color: #848484;
font-weight: 400;
letter-spacing: .1rem;
margin-bottom: .5rem;
}
.about_doctor_ttl{
width: 100%;
text-align: center;
}

.about_doctor_ttl span{
width: 100%;
position: relative;
display: block;
font-size: 2.2rem;
font-weight: 400;
letter-spacing: .3rem;
}

.about_doctor_ttl span::before{
content: "─ ABOUT ─";
font-size: 1.4rem;
width: 100%;
display: block;
line-height: 1;
color: #848484;
font-weight: 400;
letter-spacing: .1rem;
margin-bottom: .5rem;
}
.about_doctor_ttl2{
width: 100%;
text-align: center;
	padding:0 4rem;
}

.about_doctor_ttl2 span{
width: 100%;
position: relative;
display: block;
font-size: 2.2rem;
font-weight: 400;
letter-spacing: .3rem;
}


	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	




}
/* sp */

























