@charset "UTF-8";
/* CSS Document */
@font-face {
  font-family: 'CraftMincho';
  src: url('../font/craftmincho.otf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body{
	margin: 0;
	padding: 0;
	font-family: "Zen Kaku Gothic New", sans-serif;
  	font-weight: bolder;
  	font-style: normal;
	background-image: url("../images/background.jpg");
	background-repeat: repeat;
	color: #444444;
	line-height: 1.5;
	font-size: 16px;
}
@media (max-width: 768px){
	body{
		font-size: 14px;
	}
}
a:hover{
	color: #6D706E;
}
.container{
	width: calc(800 / 1440 * 100%);
	margin: 0 auto;
}
@media (max-width: 768px){
	.container{
		width: calc(286 / 375 * 100%);
}
}
/*header*/
#header{
	font-size: 16px;
	max-height: 100px;
	max-width: 1920px;
	width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.8);
}

.header-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 91.53%;
    margin: 0 auto;
}

.header-inner{
	display: flex;
    gap: 50px;
	justify-content: flex-start;
	align-items: center;
}
.header-inner h1 img{
	width: 100px;
	height: auto;
}
.menu{
	display: flex;
	gap: 30px;
}

.header-btn{
	display:flex;
    justify-content: flex-end;
	align-items: center;
    gap: 50px;
}
.header-tel{
	letter-spacing: 1.5px;
	font-weight: 600;
	font-size: 18px;
}
.nav{
    position: static;
    transform: none;
}
@media screen and (min-width: 1024px) {
    .hamburger{
		display: none;
}
}
.header-inner h1 img{
	width: 112px;
	height: 83px;
}
/*WEB予約ボタン*/
.reserve-btn a{
    background: #1F4E6B;
    border-radius: 50px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 260px;
    padding: 10px 25px;
    color: #fff;
    transition: 0.3s ease-in-out;
    font-weight: 500;
	border: solid 1px #1F4E6B;
}
.reserve-btn a:hover{
    background: #fff;
    color: #1F4E6B;
}
@media (max-width: 768px){
	.reserve-btn a{
	margin: 0 auto;
}
}
@media (max-width: 1023px){
  .header-inner > .menu{
    display: none;
  }
  .header-container{
    width: 100%;
	max-width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  /*TEL + WEB予約*/
  .header-btn{
    order: -1;                 
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: stretch;
    padding: 8px 16px;
    box-sizing: border-box;
    gap: 0;
  }
.reserve-btn{
      flex: 1;
      display: flex;
  }

  .reserve-btn a{
      flex: 1;
      width: 100%;
      max-width: none;
      margin: 0;
      border-radius: 0;
      border: none;
      padding: 12px 0;
      justify-content: center;
      align-items: center;
  }
  /*TEL*/
  .header-tel{
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 0;
    font-size: 16px;
    background: #fff;
    text-align: center;
  }

  /*WEB予約*/
  .reserve-btn{
    flex: 1;
  }

  .reserve-btn a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 8px 0;
    border: none;
    border-radius: 0;
    background: #1F4E6B;
    color: #fff;
    font-weight: 500;
    text-align: center;
    margin: 0;
  }
  /*ロゴ + ハンバーガー*/
  .header-inner{
    order: 0;
    width: 100%;
    padding: 8px 16px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0;
  }

  .header-inner h1 img{
    width: 80px;
    height: auto;
  }
  /*ドロワーメニュー*/
  .nav{
    transform: translateX(-100%);
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 82vw;
    max-width: 320px;
    background: rgba(255, 255, 255, 0.9);
    transition: transform .25s ease;
    overflow-y: auto;
    z-index: 1200;
    padding: 16px 14px;
    box-sizing: border-box;
  }

  .nav.is-open{
    transform: translateX(0);
  }

  .nav .menu{
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .nav .menu a{
    display: block;
    padding: 20px 0;
    text-align: center;
    text-decoration: none;
    color: #444;
  }
	/*ハンバーガー*/
  .hamburger{
    width: 45px;
    height: 45px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: none;
    background: rgba(255, 255, 255, 0.8);
    margin-left: auto;
    cursor: pointer;
    z-index: 1300;
    position: relative;
  }
  .hamburger-line{
    width: 25px;
    height: 1px;
    background: #444;
    display: block;
    margin: 3px 0;
    transition: transform .25s, opacity .25s;
    transform-origin: center;
  }
  .hamburger.is-open .line-top{
    transform: translateY(7px) rotate(45deg);
  }
  .hamburger.is-open .line-middle{
    opacity: 0;
  }
  .hamburger.is-open .line-bottom{
    transform: translateY(-7px) rotate(-45deg);
  }
	#header{
    max-height: none;
  }
  .header-container{
    width: 100%;
    margin: 0;
    padding: 0;
    align-items: stretch;
  }
  .header-btn{
    padding: 0;
    gap: 0;
  }

  .header-tel{
    padding: 12px 0;
  }

  .reserve-btn a{
    padding: 12px 0;
    margin: 0;
  }
  .nav .menu{
    display: flex;
    flex-direction: column;
    gap: 0;
  }

}
/*footer*/
#footer{
	background-color: #CFBEA9;
	padding-top: 50px;
	padding-bottom: 10px;
}
.footer-text a img{
	width: 112px;
	height: 83px;
	margin-bottom: 20px;
}
.footer-container{
    width: 91.53%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
.footer-menu{
	display: flex;
	gap: 30px;
}
.fp-copy{
	padding-top: 20px;
}
.fp-copy p{
	font-size: 14px;
}
.footer-time,
.footer-tel{
	padding-bottom: 5px;
}
@media (max-width: 768px){
  .footer-menu{
	display: flex;
    flex-direction: column;
	gap: 10px;
}
	.footer-menu li{
		font-weight: 700;
		list-style-type: disc;
	}
	.footer-container{
    width: 75%;
}
	.fp-copy p{
		font-size: 10px;
	}
}
/*googlemapボタン*/
.map-btn{
	margin: 10px 0;
}
@media (max-width: 768px){
	.map-btn{
	
}
}
.map-btn a{
    background: #8A745A;
    border-radius: 50px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 260px;
    padding: 10px 15px;
    color: #fff;
    transition: 0.3s ease-in-out;
    font-weight: 500;
	border: solid 1px #8A745A;
}
.map-btn a:hover{
    background: #D2C0AA;
    color: #8A745A;
}
@media (max-width: 768px){
	.map-btn a{
	margin-right: auto;
		max-width: 100px;
}
	.footer-adress,
	.footer-tel,
	.footer-time{
		font-size: 12px;
	}
}
/*リンクボタン*/
.more-btn{
	margin-top: 68px;
}
@media (max-width: 768px){
	.more-btn{
	margin-top: 30px;
}
}
.more-btn a{
    background: #42985C;
    border-radius: 50px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 260px;
    padding: 10px 25px;
    color: #fff;
    transition: 0.3s ease-in-out;
    font-weight: 500;
	border: solid 1px #42985C;
}
.more-btn a:hover{
    background: #fff;
    color: #42985C;
}
@media (max-width: 768px){
	.more-btn a{
	margin: 0 auto;
}
}
/*mv*/
.sub-mv{
	width: calc(1200 / 1440 * 100%);
	margin: 0 auto;
	position: relative;
}
.sub-mv-img{
	margin-top: 100px;
}
@media (max-width: 768px){
	.sub-mv-img{
	margin-top: 50px;
}
}
.sub-mv-img img{
	
}
.sub-mv-txt{
	
}
.sub-mv-txt h2{
	font-family: 'CraftMincho',serif;
	color: #1F4E6B;
	font-size: 30px;
	letter-spacing: 2px;
	position: absolute;
	bottom: 50px;
	right: 0px;
	transform: translate(20%,0);
}
.sub-mv-txt nav{
	font-size: 14px;
	position: absolute;
	bottom: 30px;
	right: 0px;
	transform: translate(20%,0);
}
.breadcrumb-list{
	display: flex;
	align-items: center;
	gap: 5px;
}
@media (max-width: 768px){
	.sub-mv-txt h2{
	font-size: 20px;
	bottom: 25px;
}
	.sub-mv-txt nav{
	font-size: 10px;
	bottom: 10px;
}
}
/*md-nav*/
.md-nav{
	padding: 80px 0;
}
.md-nav-flex{
	display: flex;
	gap: 70px;
}
.md-nav-flex li{
	font-size: 14px;
	letter-spacing: 2px;
	position: relative;
}
@media screen and (min-width: 768px) and  (max-width: 1023px) {
       .md-nav-flex li{
	font-size: 12px;
	letter-spacing: 1px;
}
}
.md-nav-flex li:nth-child(1)::after,
.md-nav-flex li:nth-child(2)::after,
.md-nav-flex li:nth-child(3)::after{
	content: "";
	width: 1px;
	height: 1em;
	background-color: #444444;
	position: absolute;
	top: 50%;
	right: -33px;
	transform: translateY(-50%);
}
.md-nav-sp{
	display: none;
}
@media (max-width: 768px){
	.md-nav{
		display: none;
	}
	.md-nav-sp{
	padding: 80px 0;
}
	.md-nav-sp{
		display: block;
	}
	.md-nav-flex-sp li{
	font-size: 10px;
	letter-spacing: 1.5px;
		position: relative;
}
	.md-nav-flex-sp{
		display: flex;
		gap: 20px;
}
	.md-nav-flex-sp li:nth-child(1)::after,
.md-nav-flex-sp li:nth-child(2)::after,
.md-nav-flex-sp li:nth-child(3)::after{
		content: "";
		width: 1px;
		height: 1em;
		background-color: #444444;
		position: absolute;
		top: 50%;
		right: -10px;
		transform: translateY(-50%);
}
}
/*sec-ttl*/
.md-ttl{
	font-family: 'CraftMincho',serif;
	font-size: 28px;
	position: absolute;
	top: 0;
    left: calc(320 / 1440 * 100%);
	transform: translateY(-50%);
}
@media (max-width: 768px){
	.md-ttl{
		font-size: 18px;
	}
}
.md-ttl::before{
	content: "";
	position: absolute;
	top: 0;
	left: -30px;
	transform: translateY(50%);
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background-color: #EB7C7C;
}
@media (max-width: 768px){
	.md-ttl::before{
			width: 16px;
			height: 16px;
				top: 0;
	left: -25px;
	transform: translateY(50%);
	}
}
.md-sub-ttl{
	width: 100%;
	margin-top: 100px;
	margin-bottom: 80px;
	display: flex;
	align-items: center;
	position: relative;
	font-size: 18px;
	text-align: center;
}
@media (max-width: 768px){
	.md-sub-ttl{
		font-size: 16px;
			margin-top: 50px;
	margin-bottom: 50px;
	}
}
.md-sub-ttl::before,
.md-sub-ttl::after{
	content: "";
	flex: 1;
	height: 1px;
	background-color: #444444;
}
.md-sub-ttl::after{
	margin-left: 35px;
}
.md-sub-ttl::before{
	margin-right: 35px;
}
@media (max-width: 768px){
	.md-sub-ttl::after{
	margin-left: 20px;
}
.md-sub-ttl::before{
	margin-right: 20px;
}
}
/*小児科*/
.syounika{
	padding: 100px 0;
	margin-bottom: 100px;
	background-color: rgba(213, 223, 220, 0.37);
	position: relative;
}
.intro-flex{
	display: flex;
	justify-content: space-between;
}
@media screen and (max-width: 1024px){
	.intro-flex{
		flex-direction: column;
}
	.syounika{
	padding: 50px 0;
	margin-bottom: 80px;

}
}
.intro-flex p{
	width: calc(407 / 800 * 100%);
	line-height: 2;
}
@media (max-width: 768px){
	.intro-flex p{
	line-height: 1.8;
}
}
.md-intro-img{
	width: calc(350 / 800 * 100%);
}
@media screen and (max-width: 1024px){
	.intro-flex p{
	width: 100%;
		padding-bottom: 30px;
}
.md-intro-img{
	width: 100%;
}
}
.md-intro-img img{
	
}
/*card*/
.card-grid{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 25px;
}
@media screen and (min-width: 768px) and  (max-width: 1023px) {
       	.card-grid{
			grid-template-columns: repeat(2, 1fr);
}
}
@media screen and (max-width: 768px){
	.card-grid{
	grid-template-columns: 1fr;
}
}
.md-card{
	padding: 50px 30px;
	background-color: #D2C0AA;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
}
.syounika-card-img img,
.al-card-img img{
	height: auto;
}
.syounika-card-ttl,
.al-card-ttl{
	font-size: 16px;
	padding-bottom: 20px;
}
.syounika-card-txt,
.al-card-txt{
	width: calc(189 / 250 * 100%);
	font-size: 14px;
	text-align: justify;
}
/*card-img*/
.pe-1 img{
	width: 142px;
}
.pe-2 img{
	width: 109px;
}
.pe-3 img{
	width: 80px;
}
.pe-4 img{
	width: 65px;
}
.pe-5 img{
	width: 140px;
}
.pe-6 img{
	width: 130px;
}
.al-1 img{
	width: 110px;
}
.al-2 img{
	width: 70px;
}
.al-3 img{
	width: 85px;
}
.al-4 img{
	width: 126px;
}
.al-5 img{
	width: 120px;
}
.al-6 img{
	width: 130px;
}
.syounika-card-img,
.al-card-img{
	height: 110px;
	margin-bottom: 25px;
}
/**/
.md-sub-ttl{
	
}
.md-sub-txt-bold{
	font-weight: bolder;
	line-height: 2;
	padding-bottom: 20px;
}
.md-sub-txt{
	font-size: 14px;
	line-height: 1.5;
}
@media (max-width: 768px){
	.md-sub-txt-bold{
	padding-bottom: 20px;
}
	.md-sub-txt{
	font-size: 12px;
}
}
/*アレルギー*/
.allergie{
	background-color: rgba(213, 223, 220, 0.37);
	padding: 100px 0;
	margin-bottom: 100px;
	position: relative;
}
@media (max-width: 768px){

		.allergie{
	padding: 50px 0;
	margin-bottom: 80px;

}
}
/*予防接種*/
.wakutin{
	background-color: rgba(213, 223, 220, 0.37);
	padding: 100px 0;
	margin-bottom: 100px;
	position: relative;
}
.wt-card-grid{
	display: grid;
	grid-template-columns: repeat(2,1fr);
	grid-gap: 20px;
}
@media (max-width: 768px){
	.wt-card-grid{
	grid-template-columns: 1fr;
}
		.wakutin{
	padding: 50px 0;
	margin-bottom: 80px;

}
}
.wt-card{
	background-color: rgba(210, 192, 170, 0.42);
}
.wt-card-ttl{
	padding: 30px 0;
	background-color: #D2C0AA;
	font-size: 16px;
	text-align: center;
}
.wt-card-list{
	padding: 40px 0 40px 40px;
}
.wt-card-list li{
	padding-left: 1em;
	font-size: 14px;
}
.wt-card-list li::before{
	content: "・";
}
.wt-card-list li:not(:last-child){
	margin-bottom: 20px;
}
/*乳幼児健診*/
.checkup{
	background-color: rgba(213, 223, 220, 0.37);
	padding: 100px 0;
	margin-bottom: 100px;
	position: relative;
}
@media (max-width: 768px){

		.checkup{
	padding: 50px 0;
	margin-bottom: 80px;

}
}
.cu-card-flex{
	display: flex;
	justify-content: space-between;
}
@media screen and (max-width: 1024px){
	.cu-card-flex{
		flex-direction: column;
}
}
.cu-card-list li::before{
	content: "・";
}
.cu-card-list li{
	padding-left: 1em;
	margin-bottom: 20px;
}
@media screen and (max-width: 1024px){
		.cu-card{
	padding-bottom: 20px;
}
}
/*cta*/
.fp-cta{
	padding: 100px 0 100px 70px;
	background-color: rgba(213, 223, 220, 0.37);
	border-top-left-radius: 120px;
}
@media (max-width: 768px){
	.fp-cta{
		padding: 50px 0 50px 40px;
	}
}
.fp-cta-flex{
	display: flex;
	justify-content: space-between;
}
@media (max-width: 768px){
	.fp-cta-flex{
		flex-direction: column;
}
}
/*
.gallery-img{
	width: calc(932 / 1440 * 100%);
	display: flex;
}
.gallery-img img{
	margin-right: 10px;
	width: calc(400 / 932 * 100%);
}*/
.gallery-img{
	width: calc(932 / 1440 * 100%);
	margin-left: auto;
}
.gallery-img .slick-list{
	overflow: hidden;
}
.gallery-img .slick-track{
	display: flex;
}
.gallery-img .slick-slide{
	margin-right: 10px;
}
.gallery-img .slick-slide:last-child{
	margin-right: 0;
}
.gallery-img img{
	width: 100%;
	height: auto;
	display: block;
}

.fp-cta-txt-btn{
	width: calc(300 / 1440 * 100%);
}
@media screen and (min-width: 768px) and  (max-width: 1200px) {
	.gallery-img{
		width: calc(830 / 1440 * 100%);
	}
	.fp-cta-txt-btn{
		width: calc(500 / 1440 * 100%);
	}
}
@media (max-width: 768px){
		.gallery-img{
		width: 100%;
	}
	.fp-cta-txt-btn{
		width: 100%;
		text-align: center;
		padding-right: 40px;
		padding-bottom: 50px;
	}
}
.cta-txt{
	
}
.cta-txt h3{
	padding-bottom: 5px;
	margin-bottom: 10px;
	font-size: 18px;
	font-weight: 800;
	letter-spacing: 2px;
	line-height: 1.8;
	border-bottom: dotted 1px #ACA8A8;
	width: fit-content;
}
.cta-txt p{
	letter-spacing: 1px;
	font-size: 16px;
}
@media (max-width: 768px){
	.cta-txt h3{
		font-size: 16px;
		margin: 0 auto;
}
	.cta-txt p{
		font-size: 14px;
		text-align: justify;
		margin-top: 10px;
}
}
.slider .slick-prev {
  left: 0;
  z-index: 2;
}

.slider .slick-next {
  right: 0;
  z-index: 2;
}