@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: #2ca6e0;
    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: 100;
width: 100%;
}

header{
    width: 100%;
    display: flex;
    align-items: center;
    background: #fff;
    height: 10rem;
}

.header1{
width: 1100px;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
}

.header2{
width: 380px;
}

.header2 h1{

}

.header2 h1 a{

}

.header2 h1 a img{
width: 100%;
}

.header3{
}

.header4{
width: 100%;
text-align: center;
}

.header4 a{
    width: 100%;
    display: block;
    font-size: 1.8rem;
    color: #fff;
    font-weight: 500;
    background: #d22141;
    padding: .7rem 3rem .8rem;
    text-align: center;
    border-radius: 300px;
    box-shadow: 7px 7px 20px #ffbac7;
}

.header4 a:hover{
opacity: .5;
}

.header4 a span{

}

.header4 a span::before{
content: "";
background: url("../images/ic_mail.svg") no-repeat;
display: inline-block;
width: 1.9rem;
height: 1.9rem;
margin: 0 1rem 0 0;
vertical-align: middle;
}



.header5{
width: 100%;
text-align: center;
font-size: 1.4rem;
font-weight: 500;
color: #0050a3;
}

.header6{
width: 340px;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
font-size: 1.5rem;
font-weight: 500;
line-height: 1.4;
}

.header7{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}

.header8{
width: 9rem;
text-align: center;
}

.header8 span{
display: inline-block;
border-radius: 100px;
text-align: center;
background: #4dbbed;
padding: 3px 5px 5px;
line-height: 1;
width: 100%;
color: #fff;
}

.header9{
width: calc(100% - 10.2rem);
}

.header10{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}

.header11{
width: 9rem;
text-align: center;
}

.header11 span{
display: inline-block;
border-radius: 100px;
text-align: center;
background: #f38aa3;
padding: 3px 5px 5px;
line-height: 1;
width: 100%;
color: #fff;
}

.header12{
    width: calc(100% - 10.2rem);
    color: #ed719f;
}




/* header */















/* nav */


/*========= ドロップダウンのためのCSS ===============*/

/*==ナビゲーション全体の設定*/
nav{
color: #fff;
text-align: center;
background: #dbf4f9;
}

/*ナビゲーションを横並びに*/
nav ul{
/*2階層目の基点にするためrelativeを指定*/
position: relative;
list-style: none;
display: flex;
justify-content: center;
background: #f9f9f5;
margin: 0 auto;
border-radius: 6px;

}

nav ul li{
display: block;
}

/*2階層目以降は横並びにしない*/
nav ul ul{
display: block;
}

/*ナビゲーションのリンク設定*/
nav ul li a{
/*矢印の基点にするためrelativeを指定*/
    position: relative;
    display: block;
    text-decoration: none;
    color: #222214;
    padding: 1.4rem 35px;
    transition: all .3s;
    font-size: 1.9rem;
    width: 100%;
    height: 6.4rem;
}

nav ul li li a{
padding:20px;
}

nav ul li:hover{
color: #6B98C8;
background: #e3f4fc;

}

/*==矢印の設定*/

/*2階層目を持つliの矢印の設定*/

nav ul li.has-child > a::before{
content:'';
position: absolute;
left:15px;
top:27px;
width:6px;
height:6px;
border-top: 2px solid #222214;
border-right:2px solid #222214;
transform: rotate(135deg);
}

/*==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{
font-size: 1.8rem;
font-weight: 400;
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: 64px;
    z-index: 4;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    background: #e3f4fc;
    width: 148px;
    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:140px;
}

/*ナビゲーションaタグの形状*/
nav li.has-child ul li a{
    color: #044589;
    padding: 0;
    font-size: 1.7rem;
    font-weight: 400;
    letter-spacing: 0;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}

nav li.has-child ul li a:hover,
nav li.has-child ul li a:active{
opacity: .6;
}

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 */











/* slider */

.swiper {
    width: 100%;
    height: 100%;
    margin-top: 16.4rem;
}

.swiper-slide {
text-align: center;
font-size: 18px;
background: #fff;

/* Center slide text vertically */
display: -webkit-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
-webkit-justify-content: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
-webkit-align-items: center;
align-items: center;
}

.swiper-slide img {
display: block;
width: 100%;
height: 100%;
object-fit: cover;
}

.swipertxt{
position: absolute;
z-index: 10;
display: flex;
flex-wrap: wrap;
    top: 30%;
    left: 30%;
    transform: translate(-50%, -50%);
      width: 60rem;
}
    
.swipertxt img {
  max-width: 450px;
  display: block;
  width: 100%;
  filter: drop-shadow(0 0 30px #fff) drop-shadow(0px 0px 30px #fff);
}  
 
.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%;
}



/* slider */









/* pagetop */


#page-top {
position: fixed;
bottom: 20px;
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 12rem;
    background: #fafeff;
}

.topnavigation1{
width: 900px;
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;
padding: 4.5rem 0 0 0;
font-size: 2.2rem;
color: #005183;
font-weight: 700;
letter-spacing: .2rem;
}

.topnavigation2 span::before{
    content: "Service";
    font-size: 5rem;
    font-family: "Open Sans";
    width: 100%;
    display: block;
    line-height: 1;
    color: #2ca6e0;
    font-weight: 400;
    margin: 0 0 1rem 0;
    letter-spacing: .3rem;
}

.topnavigation2 span::after{
    content: "";
    background: url(../images/logo-s.svg);
    width: 3rem;
    height: 3rem;
    display: block;
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translateX(-50%);
}

.topnavigation3{
    width: 100%;
    font-size: 2rem;
    color: #000000;
    text-align: center;
}

.topnavigation4{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}

.topnavigation5{
width: 48%;
display: block;
}

.topnavigation5 a{
width: 100%;
display: block;
}

.topnavigation5 a:hover{
opacity: .5;
transform: translateY(-.7rem);
}

.topnavigation6{
width: 100%;
}

.topnavigation6 img{
width: 100%;
border-radius: 5px 5px 100px 5px;
}

.topnavigation7{
    width: 100%;
    font-weight: 700;
    font-size: 4rem;
}

.topnavigation7 span{

}

.topnavigation7 span::before{
content: "";
background: url("../images/ic_arrow.svg");
width: 3rem;
height: 3rem;
display: inline-block;
vertical-align: baseline;
margin: 0 1.2rem 0 0;
}

.topnavigation8{
width: 100%;
font-size: 1.8rem;
}


/* topnavigation */















/* topnews */

.topnews__w{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 7rem 0 12rem;
    background: #F3F3F3;
}

.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;
padding: 4.5rem 0 0 0;
font-size: 2.2rem;
color: #005183;
font-weight: 700;
letter-spacing: .2rem;
}

.topnews2 span::before{
    content: "News";
    font-size: 5rem;
    font-family: "Open Sans";
    width: 100%;
    display: block;
    line-height: 1;
    color: #2ca6e0;
    font-weight: 400;
    margin: 0 0 1rem 0;
    letter-spacing: .3rem;
}

.topnews2 span::after{
    content: "";
    background: url(../images/logo-s.svg);
    width: 3rem;
    height: 3rem;
    display: block;
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translateX(-50%);
}

.topnews3{
width: 900px;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin: 0 auto;
    padding: 3rem 4rem;
    background: #fff;
    border-radius: 10px;
}

.topnews4{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-top:1px dotted #ECECEC;
    padding: 2rem 0;
}

.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 */
















/* topsales */
.topsales__w{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 7rem 0 12rem;
    background: #fafeff;
    }

.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;
padding: 4.5rem 0 0 0;
font-size: 2.2rem;
color: #005183;
font-weight: 700;
letter-spacing: .2rem;
}

.topsales2 span::before{
    content: "Sales";
    font-size: 5rem;
    font-family: "Open Sans";
    width: 100%;
    display: block;
    line-height: 1;
    color: #2ca6e0;
    font-weight: 400;
    margin: 0 0 1rem 0;
    letter-spacing: .3rem;
}

.topsales2 span::after{
    content: "";
    background: url(../images/logo-s.svg);
    width: 3rem;
    height: 3rem;
    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;
}

.topsales4{
width: 600px;
position: absolute;
top: -2rem;
left: -45rem;
}

.topsales5{
    width: 100%;
    }

.topsales5 img{
    width: 100%;
border-radius: 2px;
}

.topsales6{
    padding: 6rem 4rem 7rem 210px;
}

.topsales7{
    width: 100%;
}

.topsales8{
  width: 100%;
  font-size: 3.2rem;
  font-weight: 500;
  color: #082568;
}

.topsales8::first-letter{
    color: #2ca6e0;
    font-weight: 500;
}

.topsales9{
    width: 100%;
    color: #1d2744;
}

/* topsales */






















/* topsupport */

/* topsupport */
.topsupport__w{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 7rem 0 10rem;
    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: 2.2rem;
color: #005183;
font-weight: 700;
letter-spacing: .2rem;
}

.topsupport2 span::before{
    content: "Support";
    font-size: 5rem;
    font-family: "Open Sans";
    width: 100%;
    display: block;
    line-height: 1;
    color: #2ca6e0;
    font-weight: 400;
    margin: 0 0 1rem 0;
    letter-spacing: .3rem;
}

.topsupport2 span::after{
    content: "";
    background: url(../images/logo-s.svg);
    width: 3rem;
    height: 3rem;
    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: #061e4e;
    padding: 5rem 0;
}


.footer1{
    width: 1200px;
margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer2{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
}

.footer3{
}

.footer4{
font-size: 1.7rem;
}

.footer4 a{
color: #dde2ed;
line-height: 2.5;
}


.footer5{
font-size: 1.4rem;
}

.footer5 a{
color: #dde2ed;
line-height: 2.7;
}

.footer6{
width: 500px;

}

.footer6 img{
width: 100%;
}

.footer7{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
    align-items: center;
}

.footer8{
width: 700px;
}

.footer9{
width: 100%;
}

.footer9 a img{
width: 400px;
}


.footer10{
width: 100%;
color: #fff;
}

.footer11{
    width: 500px;
    background: #0f347f;
    padding: 3rem;
    text-align: center;
    height: 20rem;
    align-items: center;
    flex-wrap: wrap;
    display: flex !important;
}

.footer12{
color: #dde2ed;
width: 100%;
}

.footer13{
width: 100%;
}


.footer13 a{
color: #dde2ed;
font-size: 5rem;
font-family: "Open Sans";
font-weight: 600;
}

.footer13 a span::before{
    content: "";
    width: 3.4rem;
    height: 3.4rem;;
    display: inline-block;
    margin: 0 .8rem 0 0;
    vertical-align: middle;
    background: url("../images/ic_tel_white.svg");
}


























































/* 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;
}












.toptimetable__w{
width: 100%;
background: url("../images/toptimetablebg.jpg");
background-size: cover;
margin: 50px 0 0 0;
}

.toptimetable1{
text-align: center;
margin: 0 0 30px 0;
}

.toptimetable1 h2{
font-size: 2.7rem;
font-weight: 700;
letter-spacing: .3rem;
color: #646a71;
font-family: 'Zen Maru Gothic', sans-serif;
line-height: 1.3;
}

.toptimetable1 h2 span{
}

.toptimetable1 h2 span::after{
content: "timetable";
display: block;
text-align: center;
    font-size: 1.5rem;
    letter-spacing: .3rem;
border-top: 1px solid #fafcff;
width: 50rem;
    margin: 6px auto 0;
    padding: 8px 0 0 0;
color: #4799D3;
font-weight: 400;
line-height: 1;
    font-family: "Zen Old Mincho";
}

.toptimetable2{
width: 800px;
margin: 0 auto;
background: #fff;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
padding: 40px 40px;
border-radius: 10px;
}

.toptimetable3{
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;
}

.toptimetable3:last-child{
margin: 0 0 0 0;
}


.toptimetable4{
width: 100%;
font-size: 1.4rem;
color: #A8A8A8;
margin: 0 0 5px 0;
letter-spacing: .2rem;
}



.toptimetable5{
width: 100%;
font-size: 2rem;
font-weight: 700;
margin: 0 0 5px 0;
color: #0f6eb1;
}


.toptimetable6{
width: 100%;
font-size: 1.6rem;
}


















/* 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%;
background: #fff1f1;
background-size: cover;
padding: 80px 0 80px;
}

.topcorona1{
width: 1000px;
margin: 0 auto;
background: #fff;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
padding: 40px 40px 60px;
}

.topcorona2{
width: 100%;
text-align: center;
margin: 0 0 25px 0;
}

.topcorona2 h2{
font-size: 3rem;
font-weight: 900;
letter-spacing: .3rem;
font-family: 'Zen Old Mincho', serif;
color: #f96866;
text-shadow: 3px 3px 5px #ffffff;
}

.topcorona3{
width: 100%;
color: #000;
margin: 0 0 40px 0;
font-size: 1.7rem;
text-align: center;
line-height: 2;
}

.topcorona4{
width: 100%;
text-align: center;
}

.topcorona4 span{
display: inline-block;
border-radius: 0px;
background: #f96866;
text-align: center;
padding: 20px 60px;
color: #fff;
font-size: 2.2rem;
line-height: 1.5;
}


/* 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;
}




.sitemap__w{
width: 100%;
}

.sitemap1{
width: 100%;
}

.sitemap1 ul{
width: 70%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
margin: 0 auto;
}

.sitemap1 ul li{
}

.sitemap1 ul li a{
font-size: 1.6rem;
display: block;
padding: 5px 5px;
}

.sitemap1 ul li a:hover{

background: #F0F0F0;
}


.sitemap1 ul li a span{
}

.sitemap1 ul li a span::before{

content: "";
display: inline-block;
width: .7rem;
height: .7rem;
background: url("../images/ic_arrow2.svg");
margin: 0 7px 0 0;
vertical-align: middle;
}





/* footer */






/* copyright */


.copyright {
width: 100%;
padding: 20px 0;
background: #1391cb;
text-align: center;
color: #fff;
font-size: 1.4rem;
}



/* copyright */













/* subpage */

.subpagetitle__w{
width: 100%;
background: url("../images/subpagetitlebg1.jpg") center center;
background-size: cover;
padding: 30px 0;
margin-top: 16.4rem;
}

.subpagetitle1{
text-align: center;
margin: 0 auto;
width: 100%;
}

.subpagetitle1 h2{
font-size: 2.8rem;
font-weight: 500;
letter-spacing: .5rem;
color: #ffffff;
line-height: 1;
}

.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{

}

.subpagetitle1a h2 span::after{
content: "PRODUCT";
}

.subpagetitle1b h2 span::after{
content: "SUPPORT";
}

.subpagetitle1c h2 span::after{
content: "PRIVACY POLICY";
}

.subpagetitle1d h2 span::after{
content: "ABOUT";
}

.subpagetitle1e h2 span::after{
content: "access";
}

.subpagetitle1f h2 span::after{
content: "doctor";
}

.subpagetitle1g h2 span::after{
content: "about";
}

.subpagetitle1h h2 span::after{
content: "access";
}

.subpagetitle1i h2 span::after{
content: "facility";
}

.subpagetitle1j h2 span::after{
content: "hearing aid";
}

.subpagetitle2{
width: 1000px;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}

.subpagetitle3{
width: 100%;
background: #fff;
padding: 20px 20px 20px;
border-radius: 30px 10px 30px 10px;

}
.subpagetitle4{
width: 100%;
}

.subpagetitle4 img{
border-radius: 30px 10px 30px 10px;
}

.subpage__w{
width: 100%;
background: #f5f5f5;
padding: 40px 0 110px;
}

.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: 30px 10px 30px 10px;
}

.subpage2{
width: 100%;
border-bottom: 6px solid #ECECEC;
margin: 0 0 50px 0;
}

.subpage2 h2{
  font-size: 3.1rem;
  font-weight: 700;
  letter-spacing: .2rem;
  line-height: 1;
  padding: 0 0 25px 0;
  text-align: center;
  color: #3A3A30;
}

.subpage2 h2:first-letter{
  color: #2ca6e0;
}


.subpage3{
width: 100%;
padding: 0 10px;
line-height: 1.9;
}

.subpage4{
width: 100%;
}

.subpage4 a{
display: block;
width: 400px;
margin: 0 auto;
background: #ffee9c;
padding: 20px 0;
text-align: center;
letter-spacing: -.005rem;
color: #643e2f;
box-shadow: 6px 6px 15px #fff2b3;
font-weight: 500;
font-size: 2rem;
line-height: 1;
position: relative;
}

.subpage4 a span{
display: block;
width: 100%;
}

.subpage4 a span::after{
content: "";
background: url("../images/ic_arrow1.svg");
display: inline-block;
width: 2.2rem;
height: 2.2rem;
position: absolute;
top: 20px;
right: -10px;
}

.subpage4 a:hover{
transform: translateY(-3px);
opacity: .5;
}

.subpage5{
width: 100%;
position: relative;
padding: 30px 30px;
background: #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;
}

.subpage8 h3::before{
border-left: 4px solid #61bcef;
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.9rem;
  font-weight: 700;
  display: inline-block;
  padding: 2px 15px;
  letter-spacing: .1rem;
  background: #ffffff;
  border: 1px solid #70bdf1;
}

.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: 1px dashed #ffabab;
  background: #fff8f8;
  padding: 22px 20px 28px;
  color: #e93131;
  margin: 0 auto;
  text-align: center;
}

.subpage23{
margin: 0 0 15px 0;
font-size: 1.7rem;
text-align: left;
line-height: 1.4;
}

.subpage24{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}

.subpage25{
width: 49%;
border: 1px solid #70b4e4;
}

.subpage26{
  background: #70b4e4;
  font-size: 2.5rem;
  color: #fff;
  padding: 5px;
  display: flex;
  align-items: center;
  width: 100%;
  line-height: 1.6;
}

.subpage26 span::before{
  content: "";
  background: url("../images/ic_first1.svg");
  width: 4rem;
  height: 4rem;
  display: inline-block;
  vertical-align: middle;
  margin: 0 15px 0 0;
}


.subpage27{
padding: 15px;
font-size: 1.8rem;
font-weight: 700;
line-height: 2;
}

.subpage28{
  margin: 0 15px 15px 15px;
  background: #eaf6ff;
  padding: 5px;
  }

.subpage29{
width: 49%;
border: 1px solid #70b4e4;
}

.subpage30{
  background: #0093DF;
  font-size: 2.5rem;
  color: #fff;
  padding: 5px;
  display: flex;
  align-items: center;
  width: 100%;
  line-height: 1.6;
}

.subpage30 span::before{
  content: "";
  background: url("../images/ic_first2.svg");
  width: 4rem;
  height: 4rem;
  display: inline-block;
  vertical-align: middle;
  margin: 0 15px 0 0;
}

.subpage31{
padding: 15px;
font-size: 1.8rem;
font-weight: 700;
line-height: 2;
}

.subpage32{
  margin: 0 15px 15px 15px;
  background: #eaf6ff;
  padding: 5px;
}

.subpage33{
  width: 100%;
  padding: 15px 20px;
  line-height: 2.4;
  background: #f7f7f7;
  color: #204354;
}

.subpage33 ul{

}

.subpage33 ul{

}

.subpage33 ul li::before{
  content: "";
  background: url("../images/ic_checkbox.svg");
  width: 2rem;
  height: 2rem;
  display: inline-block;
  vertical-align: sub;
  margin: 0 10px 0 0;
}


.subpage34{
  width: 100%;
}

.subpage34 img{
  width: 100%;
}


.subpage35{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
    border-bottom: 1px solid #E5E5E5;
    margin: 0 auto;
}

.subpage36{
  width: 49%;
  border-right: 1px solid #E5E5E5;
  padding: 0rem 2rem 4rem;
}

.subpage36:nth-child(2n){
  border-right: 0;
}

.subpage37{
  width: 100%;
}

.subpage37 span{
  display: inline-block;
  padding: .3rem 1.5rem;
  color: #fff;
  font-size: 1.8rem;
  border-radius: 100px;
  width: 15rem;
  text-align: center;
  line-height: 1.4;
}

.subpage37-1 span{
background: #00567d;
}

.subpage37-2 span{
background: #ff6c29;
}

.subpage37-3 span{
background: #e04848;
}

.subpage37-4 span{
background: #007fb4;
}

.subpage37-5 span{
background: #e6da2e;
}

.subpage37-6 span{
background: #ffaa00;
}

.subpage37-7 span{
background: #910c5f;
}

.subpage37-8 span{
background: #00d6a4;
}

.subpage37-9 span{
background: #08bccb;
}

.subpage38{
  width: 100%;
  font-size: 2.5rem;
  font-weight: 700;
}

.subpage39{
  width: 100%;

}

.subpage39 img{
  width: 80%;
  border-radius: 10px;
}

.subpage40{
    width: 100%;
    line-height: 1.8;
    font-size: 1.5rem;
}

.subpage41{
width: 100%;
text-align: center;
display: flex;
flex-wrap: wrap;
justify-content: center;
}

.subpage41 img{
width: 350px;
border-radius: 7px;
}

.subpage42{
width: 100%;
text-align: center;
}

.subpage42 span{
    padding: 2rem 3rem;
    border: 1px solid #dfdfdf;
    font-size: 1.5rem;
    display: inline-block;
    background: #f7f8fa;
    color: #003555;
    width: 680px;
    text-align: left;
    border-radius: 3px;
    line-height: 2;
}

.subpage43{
    width: 1000px;
    margin: 0 auto;
    background: #3271b5;
    text-align: center;
    padding: 3rem 0;
    font-size: 3.3rem;
    color: #fff;
    letter-spacing: .5rem;
}

.subpage44{
width: 100%;
text-align: center;
}

.subpage44 span{
    padding: 1rem 3rem;
    border: 1px solid #dfdfdf;
    font-size: 1.6rem;
    display: inline-block;
    background: #f7f8fa;
    color: #003555;
    width: 30rem;
    border-radius: 3px;
    line-height: 2;
}



/* 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{

}
.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;
}




/* access */







/* dooctor */

.doctor1{
width: 100%;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: flex-end;
align-items: center;
}

.doctor2{
width: 100%;
text-align: center;
}

.doctor2 img{
width: 400px;
border-radius: 5px;
}

.doctor3{
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
}

.doctor4{
font-size: 1.6rem;
line-height: 1.4;
padding: 0 1.3vw 0 0;
color: #454458;
font-weight: 400;
letter-spacing: .2rem;
text-align: center;
}

.doctor5{
font-size: 2.5rem;
color: #454458;
font-weight: 700;
text-align: center;
}

.doctor6{
font-size: 1.4rem;
text-align: center;
width: 100%;
color: #454458;
font-style: italic;
letter-spacing: .1rem;
font-weight: 500;
font-family: "Zen Old Mincho";
}

.doctor6{
width: 100%;
margin: 0 0 0 0;
}


.doctor7{
width: 100%;
text-align: center;
}

.doctor7 h3{
font-size: 2.4rem;
text-align: center;
color: #3e3a39;
letter-spacing: .3rem;
font-weight: 700;
}

.doctor8{
background: #fff;
border-radius: 10px;
padding: 50px 70px;
width: 1000px;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
line-height: 1.6;
}

.doctor9{
  width: 1000px;
  margin: 0 auto 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.doctor9:last-child{
  margin: 0 auto 0;
}

.doctor10{
    width: 100%;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.2;
    color: #83ccd2;
}

.doctor11{

}

.doctor12{
background: #fff;
border-radius: 10px;
padding: 30px 70px;
width: 100%;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}

.doctor13{
width: 100%;
color: #323232;
font-weight: 400;
}

.doctor14{
width: 100%;
margin: 0 0 18px 0;
line-height: 1.3;
}

.doctor15{
width: 48%;
}

.doctor16{
background: #fff;
border-radius: 10px;
padding: 30px 60px;
width: 100%;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
line-height: 2;
}
.doctor16 ul li{
padding-left:1em;
text-indent:-1em;
}
.doctor17{
  width: 100%;
  font-size: 2.7rem;
  text-align: center;
  margin: 0 0 30px 0;
  color: #36a34c;
  font-weight: 500;
}

.doctor18{
width: 100%;
font-size: 1.6rem;
line-height: 1.8;
}

.doctor19{
    background: #fafafa;
    border-radius: 10px;
    padding: 5rem 5rem;
    width: 780px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    line-height: 2.2;
    font-size: 1.6rem;
    box-shadow: 0px 0px 0px 7px #fff inset;
    color: #0c0c0c;
}
.doctor19 p{
    width: 100%;
}
.doctor20{
  width: 430px;
  margin: 0 0 15px 0;
}







/* dooctor */






/* about */

.about1{
width: 100%;
display: flex;
flex-wrap: wrap;
}

.about2{
width: 32%;
background: #F7F7F7;
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: 30px 10px 1px 1px;
}

.about4{
width: 100%;
font-size: 2rem;
text-align: center;
font-family: 'Zen Maru Gothic', sans-serif;
margin: 0 0 15px 0;
line-height: 1.4;
}

.about5{
width: 100%;
padding: 0 20px;
margin: 0 0 20px 0;
font-size: 1.5rem;
letter-spacing: 0;
}

/* about */



/* check */
.check1{
width: 100%;
}

table.check2{
width: 100%;
}

.check2 th{
padding: 15px 20px;
text-align: center;
background: #f1f1f1;
border: 1px solid #D0D0D0;
}

.check2 th:nth-child(1){
width: 25%
}

.check2 th:nth-child(2){
width: 50%
}

.check2 th:nth-child(3){
width: 25%
}

.check2 td{
padding: 15px 20px;
border: 1px solid #D0D0D0;
vertical-align: middle;
background: #FDFDFD;
}

.check2 td:nth-child(1){
text-align: center;
}

.check2 td:nth-child(2){
width: 50%
}

.check2 td:nth-child(3){
text-align: center;
}

/* check */







/* topsubject */

.topsubject__w{
width: 100%;
background: url("../images/topsubjectbg.jpg");
background-size: cover;
padding: 40px 0 60px;
}

.topsubject1{
text-align: center;
margin: 0 0 30px 0;
}

.topsubject1 h2{
    font-size: 2.7rem;
    font-weight: 700;
    letter-spacing: .3rem;
    color: #24729f;
    font-family: 'Zen Maru Gothic', sans-serif;
    line-height: 1.3;
}

.topsubject1 h2 span{
}

.topsubject1 h2 span::after{
content: "symptom";
display: block;
text-align: center;
    font-size: 1.5rem;
    letter-spacing: .3rem;
border-top: 1px solid #fafcff;
width: 50rem;
margin: 6px auto 0;
padding: 8px 0 0 0;
color: #fff;
font-weight: 400;
line-height: 1;
    font-family: "Zen Old Mincho";
}



.topsubject2{
    width: 800px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
}

.topsubject3{
    width: 31%;
    padding: 15px 0 15px;
    display: block;
    transition: all .5s;
    background: #e3f4fc;
    border-radius: 3px;
}

.topsubject3:hover,
.topsubject3:active{
opacity: .6;
transform: translateY(-6px);
}

.topsubject4{
    width: 100%;
    text-align: center;
    margin: 0 0 10px 0;
}

.topsubject4 img{
width: 50%;
border-radius: 15px 5px 15px 5px;
}

.topsubject5{
    width: 100%;
    text-align: center;
    color: #044589;
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: .1rem;
}



/* topsubject */








/* topdoctor */

.topdoctor__w{
    width: 100%;
    padding: 50px 0 70px;
    background: #f5f5f5;
}

.topdoctor1{
text-align: center;
margin: 0 0 40px 0;
}

.topdoctor1 h2{
font-size: 2.7rem;
font-weight: 700;
letter-spacing: .3rem;
color: #103546;
font-family: 'Zen Maru Gothic', sans-serif;
line-height: 1.3;
}

.topdoctor1 h2 span{
}

.topdoctor1 h2 span::after{
content: "doctor";
display: block;
text-align: center;
font-size: 1.5rem;
letter-spacing: .3rem;
border-top: 1px solid #103546;
width: 50rem;
margin: 6px auto 0;
padding: 8px 0 0 0;
color: #103546;
font-weight: 400;
line-height: 1;
}



.topdoctor2{
width: 840px;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
border-radius: 10px;
}

.topdoctor3{
    width: 100%;
    font-size: 3rem;
    text-align: center;
    font-family: 'Zen Old Mincho', serif;
    font-weight: 700;
    line-height: 1.6;
    color: #103546;
    margin: 0 0 60px 0;
}


.topdoctor4{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin: 0 auto 40px;
}

.topdoctor5{
    width: 50%;
    font-size: 1.8rem;
    line-height: 1.8;
}

.topdoctor6{
width: 400px;

}

.topdoctor7{
width: 100%;
margin: 0 0 10px 0;
}

.topdoctor7 img{
width: 100%;
}


.topdoctor8{
width: 100%;
text-align: center;
font-size: 2.3rem;
font-family: 'Zen Old Mincho', serif;
font-weight: 700;
color: #484848;
}

.topdoctor9{
width: 100%;
}

.topdoctor9 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;
}

.topdoctor9 a span{
display: block;
width: 100%;
}

.topdoctor9 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;
}

.topdoctor9 a:hover{
transform: translateY(-3px);
opacity: .5;
}


/* 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*/



.link_license{
  display: inline-block;
  padding: 1rem 1.5rem;
  border: 1px solid #a3c7f5;
  border-radius: 3px;
  text-align: center;
  line-height: 1;
  margin: 1.5rem 0 0 0;
  background: #fff;
  color: #1459af;
  box-shadow: 3px 3px 5px #d3e6ff;
}

.link_license span{

}

.link_license span::before{
  content: "▲";
  transform: rotate(90deg);
  display: inline-block;
  margin: 0 .4rem 0 0;
  font-size: 1.2rem;
  color: #f96565;
}

.link_license:hover{
opacity: .5;
transform: translateY(-.2rem);
}






}
/* PC */












































































/* sp */
@media screen and (max-width:750px) {

.wrap{
position: relative;
padding: 0 0 7rem 0;
}

/* header */

header{
width: 100%;
height: 7vh;
}

.header1{
width: 100%;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}

.header2{
width: 50%;
}

.header2 h1{

}

.header2 h1 a{
padding: 3vw 3vw;
display: block;
}

.header2 h1 a2 img{
width: 100%;
}

.header3{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
padding: 5vw 0;
}

.header4{
width: 100%;
text-align: center;
margin: 0 0 2vw 0;
}

.header4 a{
width: 100%;
display: block;
font-size: 3rem;
color: #fff;
font-weight: 900;
line-height: 1;
text-shadow: 2px 2px 10px #123352;

}

.header4 a span{

}

.header4 a span::before{
content: "";
background: url("../images/ic_tel_white.svg");
display: inline-block;
width: 2.1rem;
height: 2.1rem;
margin: 0 1.5vw 0 0;
vertical-align: middle;
}

.header5{
width: 100%;
text-align: center;
font-size: 1.3rem;
font-weight: 400;
letter-spacing: 0;
color: #fff;
text-shadow: 2px 2px 10px #123352;
}



.header6{
width: 29rem;
margin: 0 auto;
font-size: 1.5rem;
font-weight: 500;
line-height: 1.4;
}

.header7{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin: 0 0 1vw 0;
}

.header8{
width: 7.5rem;
text-align: center;
}

.header8 span{
display: inline-block;
border-radius: 100px;
text-align: center;
background: #4dbbed;
padding: 3px 5px 5px;
line-height: 1;
width: 100%;
color: #fff;
font-size: 1.3rem;
}

.header9{
width: calc(100% - 9rem);
color: #fff;
font-size: 1.3rem;
}

.header10{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
}

.header11{
width: 7.5rem;
text-align: center;
}

.header11 span{
display: inline-block;
border-radius: 100px;
text-align: center;
background: #f38aa3;
padding: 3px 5px 5px;
line-height: 1;
width: 100%;
color: #fff;
font-size: 1.3rem;
}

.header12{
    width: calc(100% - 9rem);
    color: #f3a0bf;
    font-size: 1.3rem;

}


/* 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: url(../images/subpagetitlebg1.jpg) center center;
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive{
opacity: 1;
z-index:999;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
/*ナビの数が増えた場合縦スクロール*/
position: fixed;
z-index: 999; 
width: 100%;
height: 100vh;/*表示する高さ*/
overflow: auto;
-webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
display: none;
/*ナビゲーション天地中央揃え*/
z-index: 999;
}

#g-nav.panelactive ul {
width: 80%;
display: flex !important;
flex-wrap: wrap;
justify-content: space-between;
margin: 7vh auto 0;
}

/*リストのレイアウト設定*/

#g-nav li{
list-style: none;
text-align: center; 
width: 100%;
margin: 0 auto;
}

#g-nav li a{
    color: #18599d;
    text-decoration: none;
    padding: 1rem 0;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    font-weight: 700;
    font-size: 1.6rem;
    background: #fff;
    border-radius: 5px;
    width: 100%;
    margin: 0 auto;
}

#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: 49%;
    margin: 0;
}

#g-nav.panelactive ul li ul li a{
font-size: 1.6rem;
background: #fff;
line-height: 1.2;
    padding: 1rem 0;
border-radius: 5px;
font-weight: 700;
display: block;
width: 100%;}

#g-nav.panelactive ul li ul li img{
width: 40%;
border-radius: 10px;
}








/*========= ボタンのためのCSS ===============*/
.openbtn{
    position: fixed;
    z-index: 9999;
    top: 1vh;
    right: 1vh;
    width: 5vh;
    height: 5vh;
    background: #fff;
    border-radius: 20px;
}

/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    /* left: 14px; */
    height: 3px;
    border-radius: 2px;
    background-color: #005183;
    width: 50%;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
}

.openbtn span:nth-of-type(1) {
top:1.4vh;	
}

.openbtn span:nth-of-type(2) {
top:2.4vh;
}

.openbtn span:nth-of-type(3) {
top:3.4vh;
}

.openbtn.active span:nth-of-type(1) {
top: calc(1.4vh);
left: 25%;
transform: translateY(6px) rotate(-45deg);
width: 50%;
}

.openbtn.active span:nth-of-type(2) {
opacity: 0;
}

.openbtn.active span:nth-of-type(3){
top: calc(3.4vh - 1.5px);
left: 25%;
transform: translateY(-6px) rotate(45deg);
width: 50%;
}


nav ul li.has-child dt{
overflow: hidden;
margin: 0 0 1.5vw 0;
}

nav ul li.has-child dd{
padding: 0 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;
}

.spnavinfo1{

}

.spnavinfo2{

}



/* nav */






/* slider */

.swiper {
width: 100%;
height: 100%;
}

.swiper-slide {
text-align: center;
font-size: 18px;
background: #fff;

/* Center slide text vertically */
display: -webkit-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
-webkit-justify-content: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
-webkit-align-items: center;
align-items: center;
}

.swiper-slide img {
display: block;
width: 100%;
height: 100%;
object-fit: cover;
}

.swipertxt{
position: absolute;
z-index: 10;
display: flex;
flex-wrap: wrap;
    top: 5vh;
    left: 50%;
    transform: translate(-50%, 0);
      width: 25rem;
}
    
.swipertxt img {
  margin: 0 auto;
  display: block;
  width: 80%;
  filter: drop-shadow(0 0 20px #fff) drop-shadow(0px 0px 20px #fff);
} 
    
.swipertxt1{
width: 100%;
text-align: center;
}

.swipertxt1 span{
  display: inline-block;
  background: rgb(241 100 178 / 90%);
  color: #fff;
  text-align: center;
  font-size: 1.8rem;
  letter-spacing: .1rem;
  padding: 1vw 0;
  font-weight: 700;
  border-radius: 2px;
  width: 100%;
}


/* slider */










/* pagetop */


#page-top {
position: fixed;
bottom: 10rem;
right: 1vw;
z-index: 99;
opacity: .9;
}
#page-top a {
width: 12vw;
display: block;
opacity: 0.9;
transition: all .3s ease;
}
#page-top a:hover {
text-decoration: none;
opacity: .5;
}


#page-top a img{
width: 100%;
display: block;
}


/* pagetop */






/* breadcrumb */

.breadcrumb__w{
width: 100%;
padding: 3vw 0 3vw 3vw;
font-size: 1.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 12rem;
    background: #fafeff;
}

.topnavigation1{
    width: 100%;
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;
padding: 4.5rem 0 0 0;
font-size: 2.2rem;
color: #005183;
font-weight: 700;
letter-spacing: .2rem;
}

.topnavigation2 span::before{
    content: "Service";
    font-size: 3rem;
    font-family: "Open Sans";
    width: 100%;
    display: block;
    line-height: 1;
    color: #2ca6e0;
    font-weight: 400;
    margin: 0 0 1rem 0;
    letter-spacing: .3rem;
}

.topnavigation2 span::after{
    content: "";
    background: url(../images/logo-s.svg);
    width: 3rem;
    height: 3rem;
    display: block;
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translateX(-50%);
}

.topnavigation3{
    width: 100%;
    font-size: 1.5rem;
    color: #000000;
    text-align: center;
}

.topnavigation4{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}

.topnavigation5{
width: 90%;
display: block;
}

.topnavigation5 a{
width: 100%;
display: block;
}

.topnavigation5 a:hover{
opacity: .5;
transform: translateY(-.7rem);
}

.topnavigation6{
width: 100%;
}

.topnavigation6 img{
width: 100%;
border-radius: 0 5px 100px 0;
}

.topnavigation7{
    width: 100%;
    font-weight: 700;
    font-size: 3rem;
    padding: 0 0 0 2rem;
}

.topnavigation7 span{

}

.topnavigation7 span::before{
content: "";
background: url("../images/ic_arrow.svg");
width: 2.5rem;
height: 2.5rem;
display: inline-block;
vertical-align: baseline;
margin: 0 1.2rem 0 0;
}

.topnavigation8{
width: 100%;
font-size: 1.5rem;
    padding: 0 0 0 2rem;

}


/* topnavigation */















/* topnews */

.topnews__w{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 4rem 0 6rem;
    background: #F3F3F3;
}

.topnews1{
    width: 100%;
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;
padding: 4.5rem 0 0 0;
font-size: 2.2rem;
color: #005183;
font-weight: 700;
letter-spacing: .2rem;
}

.topnews2 span::before{
    content: "News";
    font-size: 3rem;
    font-family: "Open Sans";
    width: 100%;
    display: block;
    line-height: 1;
    color: #2ca6e0;
    font-weight: 400;
    margin: 0 0 1rem 0;
    letter-spacing: .3rem;
}

.topnews2 span::after{
    content: "";
    background: url(../images/logo-s.svg);
    width: 3rem;
    height: 3rem;
    display: block;
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translateX(-50%);
}

.topnews3{
width: 90%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin: 0 auto;
    padding: 3rem 2rem;
    background: #fff;
    border-radius: 10px;
}

.topnews4{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-top:1px dotted #ECECEC;
    padding: 2rem 0;
}

.topnews5{
    width: 100%;
font-size: 1.2rem;
font-weight: 400;
}

.topnews6{
    width: 100%;
font-size: 1.6rem;
font-weight: 700;
}

.topnews7{
    width: 100%;
    font-size: 1.5rem;
}












/* topnews */
















/* topsales */
.topsales__w{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 4rem 0 6rem;
    background: #fafeff;
    }

.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;
padding: 4.5rem 0 0 0;
font-size: 2.2rem;
color: #005183;
font-weight: 700;
letter-spacing: .2rem;
}

.topsales2 span::before{
    content: "Sales";
    font-size: 3rem;
    font-family: "Open Sans";
    width: 100%;
    display: block;
    line-height: 1;
    color: #2ca6e0;
    font-weight: 400;
    margin: 0 0 1rem 0;
    letter-spacing: .3rem;
}

.topsales2 span::after{
    content: "";
    background: url(../images/logo-s.svg);
    width: 3rem;
    height: 3rem;
    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;
}

.topsales4{
width: 100%;
}

.topsales5{
    width: 100%;
    margin: 0 auto;
    }

.topsales5 img{
    width: 100%;
border-radius: 2px;
}

.topsales6{
    padding: 3rem;
}

.topsales7{
    width: 100%;
}

.topsales8{
    width: 100%;
    font-size: 2.2rem;
font-weight: 700;
  color: #082568;
}

.topsales8::first-letter{
    color: #2ca6e0;
}

.topsales9{
    width: 100%;
    color: #1d2744;
}

/* 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: 2.2rem;
color: #005183;
font-weight: 700;
letter-spacing: .2rem;
}

.topsupport2 span::before{
    content: "Sales";
    font-size: 3rem;
    font-family: "Open Sans";
    width: 100%;
    display: block;
    line-height: 1;
    color: #2ca6e0;
    font-weight: 400;
    margin: 0 0 1rem 0;
    letter-spacing: .3rem;
}

.topsupport2 span::after{
    content: "";
    background: url(../images/logo-s.svg);
    width: 3rem;
    height: 3rem;
    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 */






















/* footer */
footer{
    width: 100%;
    background: #061e4e;
    padding: 4rem 0 0;
}


.footer1{
width: 100%;
margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer2{
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
}

.footer3{
width: 100%;
}

.footer4{
font-size: 1.6rem;
}

.footer4 a{
color: #dde2ed;
line-height: 2.5;
}


.footer5{
font-size: 1.6rem;
}

.footer5 a{
color: #dde2ed;
line-height: 2.7;
}

.footer6{
width: 100%;
text-align: center;
}

.footer6 img{
width: 100%;
}

.footer7{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
    align-items: center;
}

.footer8{
width: 700px;
}

.footer9{
width: 100%;
text-align: center;
}

.footer9 a img{
width: 70%;
}


.footer10{
width: 100%;
color: #fff;
text-align: center;
}

.footer11{
width: 500px;
background: #0f347f;
padding: 3rem;
text-align: center;
}

.footer12{
color: #dde2ed;
}

.footer13{
}


.footer13 a{
color: #dde2ed;
font-size: 5rem;
font-family: "Open Sans";
font-weight: 600;
}

.footer13 a span::before{
    content: "";
    width: 3.4rem;
    height: 3.4rem;;
    display: inline-block;
    margin: 0 .8rem 0 0;
    vertical-align: middle;
    background: url("../images/ic_tel_white.svg");
}






/* copyright */


.copyright {
width: 100%;
padding: 2vw 0;
text-align: center;
font-size: 1rem;
}



/* copyright */





/* sp footer */

.spfooternav__w{
    width: 100%;
    display: flex !important;
    justify-content: space-between;
    position: fixed;
    bottom: 0;
    z-index: 10;
    height: 7rem;
    background: #0f347f;
    align-items: center;
}

.spfooternav1{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
        padding: 1rem 0;
}

.spfooternav2{
/*font-size: 1.2rem;
color: #dde2ed;
display: flex;
align-items: center;
justify-content: center;
width: 100%;
letter-spacing: 0.025rem;
margin: 0 0 1rem 0;
line-height: 1;*/
width: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #d22141;    
}
.spfooternav2 a {
    padding: 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-size: 1.1rem;
    letter-spacing: 0rem;
    height: 7rem;
    border-right: solid 1px #e6e6e6;
    color: #fff;
}
.spfooternav2 a span::before {
    content: "";
    background: url(../images/ic_mail.svg) no-repeat;
    display: block;
    width: 2.2rem;
    height: 2.2rem;
    margin: 0 auto 0.5rem;
}    
.spfooternav3{
font-size: 2.6rem;
color: #fff;
display: flex;
align-items: center;
justify-content: center;
width: 100%;
line-height: 1;

}

.spfooternav3 span{
display: block;
font-weight: 700;
}

.spfooternav3 span::before{
content: "";
background: url("../images/ic_tel_white.svg") no-repeat;
display: inline-block;
width: 1.8rem;
height: 1.8rem;
vertical-align: middle;
margin-right: .6rem;
}


/* sp footer */









/* subpage */

.subpagetitle__w{
width: 100%;
background: url("../images/subpagetitlebg1.jpg") center center;
background-size: cover;
padding: 6vw 0;
}

.subpagetitle1{
text-align: center;
margin: 0 auto;
width: 100%;
}

.subpagetitle1 h2{
font-size: 1.8rem;
font-weight: 700;
letter-spacing: .3rem;
color: #ffffff;
line-height: 1;
}

.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{

}


.subpagetitle1a h2 span::after{
content: "PRODUCT";
}

.subpagetitle1b h2 span::after{
content: "SUPPORT";
}

.subpagetitle1c h2 span::after{
content: "PRIVACY POLICY";
}

.subpagetitle1d h2 span::after{
content: "ABOUT";
}

.subpagetitle1e h2 span::after{
content: "access";
}

.subpagetitle1f h2 span::after{
content: "doctor";
}

.subpagetitle1g h2 span::after{
content: "about";
}

.subpagetitle1h h2 span::after{
content: "access";
}

.subpagetitle1i h2 span::after{
content: "facility";
}

.subpagetitle1j h2 span::after{
content: "hearing aid";
}

.subpagetitle2{
width: 100%;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}

.subpagetitle3{
width: 90%;
background: #fff;
padding: 2vw;
border-radius: 30px 10px 30px 10px;
margin: 0 auto;
}

.subpagetitle4{
width: 100%;
}

.subpagetitle4 img{
border-radius: 30px 10px 30px 10px;
}

.subpage__w{
width: 100%;
background: #f5f5f5;
padding: 5vw 0 10vw;
}

.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: 30px 10px 30px 10px;
}

.subpage2{
width: 100%;
border-bottom: 6px solid #ECECEC;
margin: 0 0 5vw 0;
}


.subpage2 h2{
font-size: 2rem;
font-weight: 700;
letter-spacing: .2rem;
line-height: 1.5;
  padding: 0 0 3vw 0;
  text-align: center;
  color: #3A3A30;
}

.subpage2 h2:first-letter{
  color: #2ca6e0;
}

.subpage3{
width: 100%;
padding: 0 1vw;
line-height: 1.8;
}

.subpage4{
width: 100%;
}

.subpage4 a{
display: block;
width: 80%;
margin: 0 auto;
background: #ffee9c;
padding: 4vw 0;
text-align: center;
letter-spacing: -.005rem;
color: #643e2f;
box-shadow: 6px 6px 15px #fff2b3;
font-weight: 500;
font-size: 1.4rem;
line-height: 1;
position: relative;
}

.subpage4 a span{
display: block;
width: 100%;
}

.subpage4 a span::after{
content: "";
background: url("../images/ic_arrow1.svg");
display: inline-block;
width: 2.2rem;
height: 2.2rem;
position: absolute;
top: 1.2rem;
right: -1.2rem;
}

.subpage4 a:hover{
transform: translateY(-3px);
opacity: .5;
}

.subpage5{
width: 100%;
position: relative;
padding: 5vw 5vw;
background: #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;
}

.subpage8 h3::before{
border-left: 4px solid #3a87c2;
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: #ffffff;
  border: 1px solid #70bdf1;
}



.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: 1px dashed #ffabab;
  background: #fff8f8;
  padding: 3vw 2vw 4vw;
  color: #e93131;
  margin: 0 auto;
}

.subpage23{
margin: 0 0 2vw 0;
font-size: 1.3rem;
}

.subpage24{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}

.subpage25{
width: 49%;
border: 1px solid #70b4e4;
}

.subpage26{
  background: #70b4e4;
  font-size: 1.6rem;
  color: #fff;
  padding: 1vw;
  display: flex;
  align-items: center;
  width: 100%;
  line-height: 1.6;
}

.subpage26 span::before{
  content: "";
  background: url("../images/ic_first1.svg");
  width: 3rem;
  height: 3rem;
  display: inline-block;
  vertical-align: middle;
  margin: 0 1vw 0 0;
}


.subpage27{
padding: 2vw;
font-size: 1.4rem;
font-weight: 700;
line-height: 1.5;
}

.subpage28{
  margin: 0 2vw 2vw 2vw;
  background: #eaf6ff;
  padding: 5px;
  }

.subpage29{
width: 49%;
border: 1px solid #70b4e4;
}

.subpage30{
  background: #0093DF;
  font-size: 1.6rem;
  color: #fff;
  padding: 1vw;
  display: flex;
  align-items: center;
  width: 100%;
  line-height: 1.6;
}

.subpage30 span::before{
  content: "";
  background: url("../images/ic_first2.svg");
  width: 3rem;
  height: 3rem;
  display: inline-block;
  vertical-align: middle;
  margin: 0 1vw 0 0;
}

.subpage31{
padding: 2vw;
font-size: 1.4rem;
font-weight: 700;
line-height: 1.5;
}

.subpage32{
  margin: 0 2vw 2vw 2vw;
  background: #eaf6ff;
  padding: 5px;
}

.subpage33{
  width: 100%;
  padding: 3vw 3vw;
  line-height: 1.6;
  background: #f7f7f7;
  color: #204354;
}

.subpage33 ul{

}

.subpage33 ul li{
margin: 0 0 1rem 0;

}

.subpage33 ul li::before{
  content: "";
  background: url("../images/ic_checkbox.svg");
  width: 1.8rem;
  height: 1.8rem;
  display: inline-block;
  vertical-align: sub;
  margin: 0 1vw 0 0;
}


.subpage34{
  width: 100%;
}

.subpage34 img{
  width: 100%;
}


.subpage35{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
    margin: 0 auto;
}

.subpage36{
  width: 100%;
  padding: 5rem 2rem;
      border-bottom: 1px solid #E5E5E5;

}

.subpage36:last-child{
}

.subpage37{
  width: 100%;
}

.subpage37 span{
  display: inline-block;
  padding: .3rem 1.5rem;
  color: #fff;
  font-size: 1.5rem;
  border-radius: 100px;
  width: 15rem;
  text-align: center;
  line-height: 1.4;
}

.subpage37-1 span{
background: #00567d;
}

.subpage37-2 span{
background: #ff6c29;
}

.subpage37-3 span{
background: #e04848;
}

.subpage37-4 span{
background: #007fb4;
}

.subpage37-5 span{
background: #e6da2e;
}

.subpage37-6 span{
background: #ffaa00;
}

.subpage37-7 span{
background: #910c5f;
}

.subpage37-8 span{
background: #00d6a4;
}

.subpage37-9 span{
background: #08bccb;
}

.subpage38{
  width: 100%;
  font-size: 2rem;
  font-weight: 700;
}

.subpage39{
  width: 100%;

}

.subpage39 img{
  width: 100%;
  border-radius: 10px;
}

.subpage40{
  width: 100%;
  line-height: 2;
  font-size: 1.4rem;
}

.subpage41{
width: 100%;
text-align: center;
display: flex;
flex-wrap: wrap;
justify-content: center;
}

.subpage41 img{
width: 60%;
border-radius: 7px;
}

.subpage42{
width: 100%;
text-align: center;
}

.subpage42 span{
    padding: 2rem 2rem;
    border: 1px solid #dfdfdf;
    font-size: 1.3rem;
    display: inline-block;
    background: #f7f8fa;
    color: #003555;
    width: 100%;
    text-align: left;
    border-radius: 3px;
    line-height: 2;
}

.subpage43{
    width: 95%;
    margin: 0 auto;
    background: #3271b5;
    text-align: center;
    padding: 2rem 0;
    font-size: 2rem;
    color: #fff;
    letter-spacing: .5rem;
    font-weight: 700;
}

.subpage44{
width: 100%;
text-align: center;
}

.subpage44 span{
    padding: 1.2rem 1rem;
    border: 1px solid #dfdfdf;
    font-size: 1.5rem;
    display: inline-block;
    background: #f7f8fa;
    color: #003555;
    width: 90%;
    border-radius: 3px;
    line-height: 2;
    font-weight: 700;
}


/* 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: 20px;
}

.access15{
width: 100%;
padding: 5vw;
background: #f7f7f7;
border-radius: 20px;
}

.access16{
width: 100%;
text-align: center;
}

.access16 img{
width: 100%;
}

.access17{

}
.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;
}

/* access */



/* dooctor */

.doctor1{
width: 100%;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: flex-end;
align-items: center;
}

.doctor2{
width: 100%;
text-align: center;
margin: 0 0 3vw 0;
}

.doctor2 img{
width: 80%;
border-radius: 3px;
}

.doctor3{
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
}

.doctor4{
font-size: 1.5rem;
line-height: 1.3;
padding: 0 1.3vw 0 0;
color: #454458;
font-weight: 400;
letter-spacing: .1rem;
text-align: center;
}

.doctor5{
font-size: 1.8rem;
color: #454458;
font-weight: 700;
text-align: center;
}

.doctor6{
font-size: 1.2rem;
text-align: center;
width: 100%;
color: #454458;
font-style: italic;
letter-spacing: .1rem;
font-weight: 300;
}

.doctor6{
width: 100%;
margin: 0 0 0 0;
}


.doctor7{
width: 100%;
text-align: center;
}

.doctor7 h3{
font-size: 2rem;
text-align: center;
color: #4c4948;
letter-spacing: .2rem;
font-weight: 700;
}

.doctor8{
background: #fff;
border-radius: 10px;
padding: 5vw 5vw;
width: 90%;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}

.doctor9{
width: 100%;
margin: 0 auto 1rem;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}

.doctor9:last-child{
  margin: 0 auto 0;
}

.doctor10{
width: 100%;
  font-weight: 700;
  line-height: 1.2;
    color: #83ccd2;
  font-size: 1.2rem;
}

.doctor11{

}

.doctor11 h3{
font-size: 1.7rem;
color: #4c4948;
letter-spacing: .3rem;
margin: 0 0 2vw 0;
font-weight: 700;
text-align: center;
}

.doctor12{
background: #fff;
border-radius: 10px;
padding: 3vw 5vw;
width: 90%;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}

.doctor13{
width: 100%;
color: #323232;
font-weight: 400;
}

.doctor14{
width: 100%;
}

.doctor15{
width: 100%;
}

.doctor16{
background: #fff;
border-radius: 10px;
padding: 3vw 5vw;
width: 90%;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
line-height: 2;
}

.doctor17{
width: 100%;
font-size: 1.8rem;
  color: #36a34c;
  font-weight: 500;
  text-align: center;
  margin: 0 0 3vw 0;
  line-height: 1.6;
}

.doctor18{
width: 100%;
font-size: 1.4rem;
}

.doctor19{
    background: #fafafa;
    border-radius: 10px;
    padding: 3rem;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    line-height: 1.8;
    color: #0c0c0c;
}

.doctor20{
width: 100%;
margin: 0 auto .7rem;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}


/* dooctor */







/* about */

.about1{
width: 100%;
display: flex;
flex-wrap: wrap;
}

.about2{
width: 48%;
background: #F7F7F7;
border-radius: 30px 10px 10px 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: 30px 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;
}

/* 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{
font-size: 2rem;
font-weight: 700;
letter-spacing: .2rem;
color: #646a71;
font-family: 'Zen Maru Gothic', sans-serif;
line-height: 1;
}

.topsubject1 h2 span{
}

.topsubject1 h2 span::after{
content: "symptom";
display: block;
text-align: center;
font-size: 1.1rem;
letter-spacing: .3rem;
border-top: 1px solid #fafcff;
width: 20rem;
margin: 2vw auto 0;
padding: 2vw 0 0 0;
color: #fff;
line-height: 1;
font-family: "Zen Old Mincho";
}



.topsubject2{
width: 90%;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
background: #fff;
padding: 3vw 3vw;
border-radius: 10px;
}

.topsubject3{
width: 32%;
padding: 2vw 0 2vw;
    display: block;
    transition: all .5s;
    background: #e3f4fc;
    border-radius: 3px;
}

.topsubject3:hover,
.topsubject3:active{
opacity: .6;
}

.topsubject4{
width: 100%;
text-align: center;
margin: 0 0 1vw 0;
}

.topsubject4 img{
width: 55%;
border-radius: 15px 5px 15px 5px;
}

.topsubject5{
width: 100%;
text-align: center;
color: #044589;
font-size: 1.5rem;
font-weight: 400;
letter-spacing: 0;
}



/* topsubject */








/* topdoctor */

.topdoctor__w{
width: 100%;
padding: 7vw 0 10vw;
background: #f5f5f5;
}

.topdoctor1{
text-align: center;
margin: 0 0 5vw 0;
}

.topdoctor1 h2{
font-size: 2rem;
font-weight: 700;
letter-spacing: .1rem;
color: #103546;
font-family: 'Zen Maru Gothic', sans-serif;
line-height: 1;
}

.topdoctor1 h2 span{
}

.topdoctor1 h2 span::after{
content: "doctor";
display: block;
text-align: center;
font-size: 1.1rem;
letter-spacing: .3rem;
border-top: 1px solid #103546;
width: 20rem;
margin: 2vw auto 0;
padding: 2vw 0 0 0;
color: #103546;
font-weight: 300;
line-height: 1;
font-family: 'Zen Old Mincho', serif;
}



.topdoctor2{
width: 90%;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
background: #fff;
border-radius: 10px;
padding: 5vw 5vw;
}

.topdoctor3{
width: 100%;
font-size: 1.8rem;
letter-spacing: 0;
text-align: center;
font-family: 'Zen Old Mincho', serif;
font-weight: 700;
line-height: 1.6;
color: #4c463f;
margin: 0 0 6vw 0;
}


.topdoctor4{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin: 0 auto 3vw;
}

.topdoctor5{
width: 100%;
font-size: 1.3rem;
line-height: 1.8;
order: 2;
margin: 0 0 2vw 0;
}

.topdoctor6{
width: 100%;
order: 1;
margin: 0 0 4vw 0;

}

.topdoctor7{
width: 100%;
margin: 0 0 1vw 0;
text-align: center;
}

.topdoctor7 img{
width:60%;
}


.topdoctor8{
width: 100%;
text-align: center;
font-size: 1.5rem;
font-family: 'Zen Old Mincho', serif;
font-weight: 700;
color: #484848;
}

.topdoctor9{
width: 100%;
order: 3;
margin: 0 0 2vw 0;
}


.topdoctor9 a{
    display: block;
    width: 80%;
    margin: 0 auto;
    background: #e56ca3;
    padding: 2vw 0;
    text-align: center;
    letter-spacing: -.005rem;
    color: #ffffff;
    box-shadow: 6px 6px 15px #f1b2cf;
    font-weight: 500;
    font-size: 1.3rem;
    line-height: 1;
    position: relative;
}

.topdoctor9 a span{
display: block;
width: 100%;
}

.topdoctor9 a span::after{
    content: "";
    background: url("../images/ic_arrow1.svg");
    display: inline-block;
    width: 1.6rem;
    height: 1.6rem;
    position: absolute;
    top: .85rem;
    right: 1rem;
}

.topdoctor9 a:hover{
transform: translateY(-3px);
opacity: .5;
}


/* 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;
}

.link_license{
  display: inline-block;
  padding: .8rem 1.5rem;
  border: 1px solid #a3c7f5;
  border-radius: 3px;
  text-align: center;
  line-height: 1;
  margin: 1.2rem 0 0 0;
  background: #fff;
  color: #1459af;
  box-shadow: 3px 3px 5px #d3e6ff;
}

.link_license span{

}

.link_license span::before{
  content: "▲";
  transform: rotate(90deg);
  display: inline-block;
  margin: 0 .4rem 0 0;
  font-size: 1.1rem;
  color: #f96565;
}

.link_license:hover{
opacity: .5;
transform: translateY(-.2rem);
}











}
/* sp */

























