@charset "utf-8";

/*
  File Name   : top.css
  Description : Write top content styles
*/

/* kv-wrap
============================================================ */
#home .kv-wrap {
  position: relative;
    z-index: 1;
    width: 100%;
    margin-bottom: 100px;
}


@media screen and (max-width: 600px) {
#home .kv-wrap {
    margin-bottom: 0px;
}
}

#home .kv-wrap .kv-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 30px;
}


@media screen and (max-width: 600px) {
#home .kv-wrap .kv-inner {
    padding: 0 20px;
}
}



#home .kv-wrap .kv-inner .kv-area {
  overflow: hidden;
  position: relative;
  z-index: 1;
  width: 100%;
  opacity: 0;
}
#home .kv-wrap .kv-inner .kv-item {
  vertical-align: top;
}
#home .kv-wrap .kv-inner .kv-item:nth-child(n+2) {
  display: none;
}
#home .kv-wrap .kv-inner .slick-initialized .kv-item {
  display: inline-block;
}
#home .kv-wrap .kv-inner .kv-item .kv-item-img {
  overflow: hidden;
  text-indent: -9999px;
  height: 700px;
  background: no-repeat center bottom;
  background-size: cover;
  border-radius: 30px;
}

@media screen and (max-width: 1300px) {
	
#home .kv-wrap .kv-inner .kv-item .kv-item-img {
    height: 560px;
	}
}


@media screen and (max-width: 900px) {
#home .kv-wrap .kv-inner .kv-item .kv-item-img {
    border-radius: 20px;
}
}

@media screen and (max-width: 470px) {
#home .kv-wrap .kv-inner .kv-item .kv-item-img {
        border-radius: 15px;
    }
}



#home .kv-wrap .kv-inner .kv-item .sp-img {
  display: none;
}
#home .kv-wrap .kv-inner .slick-list {
  overflow: hidden;
  width: 100%;
  height: auto;
  padding: 0;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 811px) {
  #home .kv-wrap .kv-inner .kv-item .kv-item-img {
    min-height: 500px;
    height: calc(100vh - 60px);
    max-height: 530px;
  }
  #home .kv-wrap .kv-inner .kv-item .pc-img {
    display: none;
  }
  #home .kv-wrap .kv-inner .kv-item .sp-img {
    display: block;
  }
}
@media screen and (max-width: 481px) {
  #home .kv-wrap .kv-inner .kv-item .kv-item-img {
    min-height: inherit;
    height: 460px;
    max-height: inherit;
  }
}

@media screen and (max-width: 420px) {
  #home .kv-wrap .kv-inner .kv-item .kv-item-img {
    height: 380px;
  }
}

/* kv loading
============================================================ */
#home .kv-loading {
  position: absolute;
  z-index: 0;
  top: calc(50% - 40px - 30px);
  left: calc(50% - 40px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
#home .kv-loading::after {
  content: "";
  position: absolute;
  z-index: -1;
  overflow: hidden;
  width: 80px;
  height: 80px;
  border-top: 4px solid rgba(0, 0, 0, .1);
  border-right: 4px solid rgba(0, 0, 0, .1);
  border-bottom: 4px solid rgba(0, 0, 0, .1);
  border-left: 4px solid #333;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-animation: load-animation 1.1s infinite linear;
          animation: load-animation 1.1s infinite linear;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 811px) {
  #home .kv-loading {
    top: calc(50% - 35px);
    left: calc(50% - 35px);
  }
  #home .kv-loading::after {
    width: 70px;
    height: 70px;
  }
}
@-webkit-keyframes load-animation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load-animation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* emergency
============================================================ */
#home .sect-emergency {
  padding: 40px 0;
}
#home .sect-emergency .section-inner {
  width: 100%;
  max-width: 1040px;
  padding: 0 20px;
  margin: 0 auto;
}
#home .sect-emergency .title-wrap {
  margin-bottom: 0;
  padding: 10px 20px;
  background: #f80000;
  color: #fff;
  border-bottom: none;
}
#home .sect-emergency h2 {
  display: inline-block;
}
#home .sect-emergency .emergency-list {
  padding: 30px 20px;
  border: 1px solid #f80000;
  border-top: none;
}
#home .sect-emergency .emergency-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px dotted #f80000;
}
#home .sect-emergency .emergency-list li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
#home .sect-emergency .emergency-list li .date {
  width: 110px;
  color: #6c6c6c;
  font-size: .933333333333em;
  line-height: 2;
  letter-spacing: 2px;
}
#home .sect-emergency .emergency-list li .new {
  background: #f80000;
  color: #fff;
  margin-left: 6px;
  padding: 2px 5px;
  font-size: .8em;
}
#home .sect-emergency .emergency-list li .title {
  width: calc(100% - 110px);
  padding-left: 10px;
}
#home .sect-emergency .emergency-list li .title a {
  line-height: 1.6;
  color: #4c4c4c;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 811px) {
  #home .sect-emergency {
    padding: 20px 0;
  }
  #home .sect-emergency .emergency-list {
    padding: 20px 20px 25px;
  }
  #home .sect-emergency .emergency-list li {
    display: block;
    margin-bottom: 20px;
    padding-bottom: 25px;
  }
  #home .sect-emergency .emergency-list li .date {
    display: block;
    width: auto;
  }
  #home .sect-emergency .emergency-list li .title {
    display: block;
    width: 100%;
    margin-top: 1px;
    padding-left: 0;
  }
}
@media screen and (max-width: 481px) {
  #home .sect-emergency h2 {
    display: block;
    text-align: center;
  }
}


/* kv-copy
------------------------------------------------------------ */


.kv-copy,.kv-tel{
	position: absolute;
	z-index: 99;
}

.kv-copy{
	top: 50px;
	right: 70px;
	opacity: 0;
	-webkit-animation: key_lay-title 0.4s ease-in 0.3s forwards;
    animation: key_lay-title 0.4s ease-in 0.3s forwards;
}

.kv-copy img{
	width: 100%;
	max-width: 450px;
}


@media screen and (max-width: 1300px) {
.kv-copy img {
    max-width: 400px;
}
}

@media screen and (max-width: 900px) {
.kv-copy img {
        max-width: 350px;
    }
}


@media screen and (max-width: 700px) {
	
	
.kv-copy {        
	top: 35px;
    right: 60px;
}
	
.kv-copy img {
        max-width: 300px;
    }
}

@media screen and (max-width: 600px) {
	
	
.kv-copy {        
	top: 35px;
    right: 50px;
}
}


@media screen and (max-width: 470px) {
	
	
.kv-copy img {
        max-width: 250px;
    }
	
}

@media screen and (max-width: 420px) {
	
	
.kv-copy img {
        max-width: 210px;
    }
	
}


.kv-tel{
	left: 60px;
/*	right: 60px;*/
	bottom: 30px;
	animation: fuwafuwa 2s ease-in-out infinite alternate-reverse;
}



.kv-tel img{
	width: 100%;
	max-width: 350px;
}


@media screen and (max-width: 1300px) {
.kv-tel img {
    max-width: 250px;
}
}

@media screen and (max-width: 700px) {
.kv-tel {
/*	right: 50px;*/
    left: 50px;
    bottom: 20px;
}
	
	
.kv-tel img{
	max-width: 220px;
}

	
}


@media screen and (max-width: 600px) {
.kv-tel{
	display: none;
}
}




@keyframes key_lay-title{
	
0% {
    opacity: 0;
    -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}
	
50% {
    opacity: 1;
}
	
100% {
    opacity: 1;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
	
}

@keyframes fuwafuwa {
  0% {
    transform: translateY(-2%);
  }
  100% {
    transform: translateY(2%);
  }
}





/* top common
------------------------------------------------------------ */

.top-inner{
	width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
}


.top-title{
	text-align: center;
    margin-bottom: 30px;
}


.top-title h2{
	font-family: 'Zen Maru Gothic', sans-serif;
	color: var(--color_font);
	font-size: 2.6em;
    padding-bottom: 10px;
}

@media screen and (max-width: 440px) {
.top-title h2 {
    font-size: 2.4em;
}
}

.top-title .sub-title{
	color: var(--color_main);
	font-weight: bold;
}

@media screen and (max-width: 600px) {
.top-inner {
    padding: 60px 20px;
}
}

/* medical-care
------------------------------------------------------------ */

.medical-care{
	position: relative;
    padding-top: 50px;
	background-size: auto auto;
/*
	background-color: rgba(255, 255, 255, 1);
	background-image: repeating-linear-gradient(45deg, transparent, transparent 5px, rgba(255, 238, 222, 1) 5px, rgba(255, 238, 222, 1) 10px );
*/
	background-image: linear-gradient(90deg, #e8a256, #ed6e22);
}


.medical-care .top-title .sub-title {
    color: #fff;
}


@media screen and (max-width: 680px) {
.medical-care .top-inner {
    padding: 32px 30px 50px 30px;
}
}

@media screen and (max-width: 480px) {
.medical-care .top-inner {
        padding: 22px 20px 40px 20px;
    }
}


.medical-care .top-title{
	position: absolute;
	top: -25px;
	width: 100%;
}

.md-list {
    display: flex;
    justify-content: space-between;
}

@media screen and (max-width: 570px) {
.md-list {
    display: block;
}
}

.md-contents {
/*	position: relative;*/
    background-color: #fff;
    margin: 0 auto;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    width: 100%;
    max-width: 750px;
	display: flex;
    align-items: center;
    justify-content: center;
}




@media screen and (max-width: 530px) {
.md-contents {
    padding: 20px;
}
}
	
.md-contents.md02{
	display: none;
}



	
@media screen and (max-width: 480px) {
.md-contents {
    display: block;
    max-width: 280px;
}
	
}


.md-contents h3{
	color: var(--color_sub);
	font-size: 130%;
    margin-bottom: 18px;
	display: none;
}

.md-text {
    line-height: 160%;
    font-size: 160%;
}




@media screen and (max-width: 720px) {
.md-text {
    font-size: 130%;
}
}

.md-text p{
	font-weight: bold;
}

@media screen and (max-width: 600px) {
.md-text p span{
	display: block;
}
}



.md-img {
    padding-right: 50px;
/*
    position: absolute;
	top: -50px;
	margin: 0 auto;
	right: 0;
    left: 0;
*/
}


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

.md-img {
    padding-right: 30px;
	}
	
}

.md-img img{
	width: 100%;
	max-width: 100px;
}

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

	
.md-img img {
    max-width: 80px;
}
}


@media screen and (max-width: 480px) {
.md-img {
    padding-right: 0;        
	margin-bottom: 10px;
	
}
	
	
.md-img img {
        max-width: 70px;
    }
	
}



/* news
------------------------------------------------------------ */

.news-bg{
    background-image: url(../images/gradation-bg.jpg);
	background-size: cover;
    background-position: center;
}


.news {
    width: 100%;
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
	max-width: 1000px;
    margin: 0 auto;
}



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

.news {
    display: block;
	padding: 0 0 20px 0;
}
}


@media screen and (max-width: 600px) {
.news {
        display: block;
        padding: 0 10px 10px 10px;
    }
}


.news-title {
    width: 20%;
    text-align: left;
}

@media screen and (max-width: 900px) {
.news-title {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}
}

.news-title .top-title {
    text-align: left;
}


@media screen and (max-width: 900px) {
.news-title .top-title {
    display: flex;
	margin-bottom: 0;
	align-items: center;
}
	
	
.news-title .top-title .sub-title {
    padding-left: 15px;
}
	
}

@media screen and (max-width: 900px) {
.news-wrap {
    width: 80%;
}
}


.news-wrap {
    width: 100%;
}


.news-more {
    
}  

.news-more a{
	display: block;
    text-decoration: none;
    border: 1px solid #ed6e22;
    padding: 5px 20px 5px 15px;
    border-radius: 50px;
    font-size: 75%;
    width: 100px;
    font-weight: bold;
    background-image: url(../images/common/arrow.png);
    background-position: right 12px top 11px;
    background-size: 7px;
    background-repeat: no-repeat;
	transition: all 0.2s ease-in-out;
}


@media screen and (max-width: 811px) {
.news-more a {
    background-position: right 12px top 9px;
}
}

@media screen and (max-width: 460px) {
.news-more a {
    width: 90px;
}
}

.news-more a:hover{
	background-color: var(--color_pale);
	background-position: right 8px top 11px;
	transition: all 0.2s ease-in-out;
}



/* f-slide-list
------------------------------------------------------------ */

.slider-wrapper {
  display: flex; /* スライドのグループを横並び */
  overflow: hidden; /* はみ出たスライドを隠す */
}


.f-slide-list {
    display: flex;
    animation: loop-slide 20s infinite linear 1s both;
}

ul.f-slide-list li{
	width: calc(100vw / 4);
}

@media screen and (max-width: 1024px) {
ul.f-slide-list li{
	width: calc(100vw / 3);
}
}

@media screen and (max-width: 790px) {
ul.f-slide-list li{
	width: calc(100vw / 2);
}
}



ul.f-slide-list li img {
    display: block;
    width: 100%;
    object-fit: cover;
    height: 240px;
}


@media screen and (max-width: 540px) {
	
ul.f-slide-list li img {
    height: 180px;
}
	
}

@media screen and (max-width: 420px) {
	
ul.f-slide-list li img {
    height: 140px;
}
	
}



@keyframes loop-slide {
  0% {
    transform: translateX(0);
  }
	
  100% {
    transform: translateX(-100%);
  }
}




/*sp-tel-wrap*/

.sp-tel-wrap{
	display: none;
}

@media screen and (max-width: 600px) {
.sp-tel-wrap{
	display: block;
    margin-bottom: 30px;
}
}



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

.sp-tel-area {
    position: relative;
    border: 3px solid #fce398;
    border-radius: 25px;
    padding: 30px;
    text-align: center;
}
	
	
.sp-tel-area h4{
    font-size: 140%;
    letter-spacing: 0;
	text-align: center;
  	position: relative; /*positionをrelativeに指定*/
	}
	
	
.sp-tel-area h4::after{
	position: absolute; /*positionをabsoluteに指定*/
	content: "";
	background-color: #fce398; /*下線の色*/
	width: 80px; /*線の幅*/
	height: 3px; /*線の太さ*/
	bottom: -18px; /*線のタテ位置*/
	left: 50%;  /*線のヨコ位置*/
	transform: translateX(-50%);
	border-radius: 50px;
	}
	
.sp-tel-area h4 span{}
	
.sprel-number {
    display: inline-block;
        margin: 30px 0 15px 0;
}
	
.sprel-number span.number {
        font-size: 240%;
        background-position: left top 8px;
        background-size: 32px;
        padding-left: 35px;
    }
	
.sprel-number span.uketsuke {
    font-size: 95%;
    display: block;
    padding-left: 30px;
    margin-top: 5px;
}
	
p.sptel-text{}
	

	
p.sptel-text span{
	font-weight: bold;        
	margin-right: 20px;
    }
	
	
	
.sp-tel-chara{
	position: absolute;
    top: -35px;
    right: 10px;
	animation: fuwafuwa2 2s ease-in-out infinite alternate-reverse;
	}
	
.sp-tel-chara img{
	width: 100%;
	max-width: 80px;
	}

}




@keyframes fuwafuwa2 {
  0% {
    transform: translateY(-7%);
  }
  100% {
    transform: translateY(7%);
  }
}


@media screen and (max-width: 525px) {
	
p.sptel-text{
	font-size: 90%;
	}


	
}


@media screen and (max-width: 520px) {
.sprel-number span.number {
        font-size: 200%;
        background-position: left top 8px;
        background-size: 25px;
        padding-left: 28px;
    }
	
}

@media screen and (max-width: 490px) {
	
p.sptel-text{
	font-size: 100%;
	}
	
p.sptel-text span{
/*	display: block;*/
	margin-right: 12px;
	}

}


@media screen and (max-width: 430px) {
.sp-tel-chara{
    top: -40px;
	}
}


@media screen and (max-width: 410px) {
.sp-tel-area {
        border-radius: 15px;
        padding: 30px 20px 20px 20px;
    }
}

@media screen and (max-width: 370px) {
	
.sp-tel-area h4 {
    line-height: 140%;
}
	
.sp-tel-area h4 span{
	display: block;
}
}



/*Hospital Information*/


.hs-info {
	background: #FEEFC9;
    background: linear-gradient(90deg,rgba(254, 239, 201, 1) 0%, rgba(250, 207, 182, 1) 100%);
}

.hs-info .top-inner {
    padding: 60px 40px 30px 40px;
}

@media screen and (max-width: 600px) {
	
.hs-info .top-inner {
    padding: 60px 20px 30px 20px;
}
	
}


.hs-wrap{
	background-color: #fff;
    border-radius: 10px;
    padding: 50px;
	display: flex;
    justify-content: space-between;
}

/*
.hs-wrap02{
	border-radius: 0 0 10px 10px;
	background-color: #fff;
	padding: 10px 50px 50px 50px;
}
*/

@media screen and (max-width: 1010px) {
.hs-wrap{
    padding: 30px; 
}
/*
	
.hs-wrap02{
	background-color: #fff;
	padding: 10px 30px 30px 30px;
}
	
*/
}

@media screen and (max-width: 850px) {
.hs-wrap {
        display: block;
    }
}


.hs-l,.hs-r{
	width: 47%;
	font-size: 120%;
}

@media screen and (max-width: 1045px) {
.hs-l, .hs-r {
    font-size: 90%;
	width: 48%;
}
}



@media screen and (max-width: 850px) {
.hs-l, .hs-r {
/*    font-size: 100%;*/
	width: 100%;
}
}

.hs-l iframe{
	border-radius: 10px;
}

@media screen and (max-width: 850px) {
	
.hs-l iframe{
	border-radius: 10px;
	width: 100%!important;
	margin-bottom: 50px;
}
	
}

@media screen and (max-width: 530px) {
	
.hs-l iframe{
	height: 300px!important;
}
	
}

@media screen and (max-width: 450px) {
	
.hs-l iframe{
	height: 270px!important;
}
	
}



.f-logo{
	text-align: center;
}

.f-logo img{
	width: 100%;
	max-width: 260px;
	display: block;
    margin: 0 auto;
}

@media screen and (max-width: 1045px) {
.f-logo img {
    max-width: 230px;
}
}
@media screen and (max-width: 420px) {
.f-logo img {
        max-width: 160px;
    }
}

.f-sdd,.f-tel{
	display: block;
    margin: 15px;
}

.f-sdd{
	font-size: 90%;
}

span.f-tel {
    display: block;
    font-size: 200%;
    line-height: 130%;
    font-weight: bold;
    background-image: url(../images/common/tel.png);
    background-position: left top 8px;
    background-size: 38px;
    background-repeat: no-repeat;
    padding-left: 40px;
    width: 310px;
    margin: 0 auto 30px auto;
}

@media screen and (max-width: 1045px) {
span.f-tel {
    width: 242px;
        background-size: 28px;
        padding-left: 20px;
}
}
/*

@media screen and (max-width: 850px) {
span.f-tel {
        width: 262px;
    }
}
*/

@media screen and (max-width: 811px) {
span.f-tel {
    font-size: 230%;
}
}

@media screen and (max-width: 440px) {
    span.f-tel {
        font-size: 200%;
        padding-left: 15px;
        width: 232px;
        background-size: 25px;
    }
	
    span.f-sdd {
    font-size: 90%;
    margin: 15px 0 5px 0;
}
	
}

span.f-tel a{}








@media screen and (max-width: 850px) {
.hours {
    width: 100%;
    max-width: 440px;
    margin: 0 auto 20px auto;
}
}


@media screen and (max-width: 440px) {
.hours {
    margin: 0;
}
}

.hours h4{
	background-color: var(--color_pale);
    border-radius: 4px;
    padding: 9px 12px;
    margin-bottom: 5px;
    margin-top: 10px;
}


@media screen and (max-width: 850px) {
.hours h4 {
    font-size: 120%;
}
}

@media screen and (max-width: 440px) {
.hours h4 {
    border-radius: 4px;
    padding: 10px 12px;
    margin-top: 15px;
}
}

.hours h4.hm{}

.hours h4.gene{
	background-color: #eaf3f5;
}

.hours-wrap{
	font-size: 90%;
    display: flex;
    padding: 10px 12px;
	align-items: center;
}


@media screen and (max-width: 850px) {
.hours-wrap{
	font-size: 100%;
    
}
}

@media screen and (max-width: 380px) {
.hours-wrap{
	font-size: 90%;
    
}
}


@media screen and (max-width: 900px) {
span.hours-more-wrap {
    display: block;
}
}



@media screen and (max-width: 850px) {
span.hours-more-wrap {
    display: inline-block;
}
}

@media screen and (max-width: 510px) {
span.hours-more-wrap {
    display: block;
}
}



.hours-wrap.wrap01{
	border-bottom: 1px dotted #6c6c6c;
}

.week{
	font-weight: bold;
    margin-right: 10px;
    width: 90px;
}

@media screen and (max-width: 1145px) {
	
	
.hs-wrap {
    padding: 30px;
	}
	
.week {
    width: 100px;
}
	
.hours-wrap {
    font-size: 75%;
	}

}



@media screen and (max-width: 1045px) {
.week {
        width: 90px;
    }
	
	
.hours-wrap {
        font-size: 90%;
    }
	
}


@media screen and (max-width: 970px) {
.week {
    width: 80px;
}
}



@media screen and (max-width: 900px) {
	
	
.week {
        width: 110px;
    }
	
.hours {
    font-size: 120%;
}
}
	


	

@media screen and (max-width: 850px) {
.week {
    width: 100px;
}
}


span.ampm{
	margin-right: 10px;
	color: var(--color_sub);
}

span.time {
    margin-right: 20px;
}

@media screen and (max-width: 970px) {
span.time {
    margin-right: 10px;
}
}


span.pm{
    margin-right: 0;
}


span.important {
    font-size: 80%;
    display: block;
    padding: 0 10px;
	color: var(--color_main);
	letter-spacing: 0;
}

@media screen and (max-width: 1010px) {
span.important {
    padding: 0;
}
}


/*hs-l iframe*/

@media screen and (max-width: 1045px) {
.hs-l iframe{
	height: 500px!important;
	}

}

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

.hs-l iframe {
        height: 600px !important;
    }
}


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

.hs-l iframe {
        height: 400px !important;
    }
}


span.small {
    display: block;
    font-size: 70%;
}




ul.f-menu {
    text-align: center;
    max-width: 1060px;
    margin: 0 auto 15px auto;
    display: flex;
    justify-content: center;
}

ul.f-menu li{
	font-size: 90%;
	padding: 0 20px;
	border-right: 1px solid #333;
	line-height: 100%;
}

ul.f-menu li:last-child{
	border-right:none;
}


ul.f-menu li a{
	color: var(--color_font);
	text-decoration: none;
	letter-spacing: 0;
}

















