@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;
}
/*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;
  }

}



.container{
	/*width: calc(1247 / 1440 * 100%);*/
	width: calc(1200 / 1440 * 100%);
	margin: 0 auto;
}
@media (max-width: 768px){
	.container{
		width: calc(286 / 375 * 100%);
}
}


/*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: 30px;
}
}
.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;
}
}
/*アクセス・診察時間*/
.schedule-access{
	padding: 100px 0;
	margin: 100px 0;
	background-color: rgba(213, 223, 220, 0.37);
	border-top-left-radius: 120px;
}
@media (max-width: 768px){
	.schedule-access{
		padding: 50px 0;
		margin: 50px 0;
}
}
.fp-schedule{
	width: calc(557 / 1247 * 100%);
	text-align: center;
}
.fp-schedule-ttl{
	width: 100%;
	text-align: center;
}
.schedule-ttl{
	margin-bottom: 3px;
		font-weight: 700;
	font-size: 18px;
}
.ttl-en{
	color: #42985C;
	margin-bottom: 50px
}
.schedule-grid{
	display: grid;
	grid-template-columns: 100px repeat(7, 1fr);
}
.cell{
	padding: 25px 0;
	border-bottom: solid 1px #444444;
}
.cell-green{
	color: #42985C;
}
.cell-blank{
	
}
.cell-time{
	
}
.schedule-txt{
	margin-top: 30px;
	text-align: center;
}
.schedule-close{
	
}
.schedule-time{
	margin-top: 10px;
}
/*アクセス*/
.fp-access{
		width: calc(557 / 1247 * 100%);
}
.fp-access-ttl{
	width: 100%;
	text-align: center;
}
.google-map{
    width: 100%;
    aspect-ratio: 16 / 5;
    overflow: hidden;
}

.google-map iframe{
    width: 100% !important;
    height: 100% !important;
}
.schedule-access-flex{
	display: flex;
	justify-content: space-between;
}
@media (max-width: 768px){
	.schedule-access-flex{
		flex-direction: column;
}
	.fp-access{
		width: 100%;
		margin-top: 80px;
}
	.fp-schedule{
		width: 100%;
}
	.ttl-en{
		margin-bottom: 30px
}
}
.access-txt-flex h4{
	margin-top: 30px;
}
.access-car{
	
}
.access-txt-flex p{
	margin-top: 10px;
	text-align: justify;
}
.access-txt-flex{
	display: flex;
}
.access-train-txt{
	width: calc(270 / 557 * 100%);
}
.access-car-txt{
	width: calc(270 / 557 * 100%);
}
@media (max-width: 768px){
	.access-txt-flex{
		flex-direction: column;
}
	.access-train-txt{
	width: 100%;
}
.access-car-txt{
	width: 100%;
}
}
/*introご挨拶*/
.fp-intro{
	margin-bottom: 100px;
}
@media (max-width: 768px){
	.fp-intro{
		margin-bottom: 50px;
}
}
.fp-intro-flex{
	display: flex;
	gap: calc(50 / 1247 * 100%);
	justify-content: center;
}
@media (max-width: 768px){
	.fp-intro-flex{
		flex-direction: column-reverse;
}
}
.intro-txt{
	width: calc(580 / 1247 * 100%);
}
.intro-txt h3{
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 2px;
	line-height: 1.8;
}
@media (max-width: 768px){
	.intro-txt{
		width: 100%;
}
	.intro-txt h3{
		margin-top: 10px;
		font-size: 16px;
}
}
.intro-txt p{
	margin-top: 30px;
	font-size: 16px;
	letter-spacing: 1.5px;
	line-height: 1.8;
}
.fp-dr-img{
	width: calc(480 / 1247 * 100%);
}
@media (max-width: 768px){
	.fp-dr-img{
		width: 100%;
}
		.intro-txt p{
		margin-top: 20px;
		font-size: 14px;
}
}
.fp-dr-img img{
	width: 100%;
	max-width: 640px;
}
.fp-sec-ttl{
	text-align: center;
}
/*経歴*/
.profile-card{
	width: calc(450 / 1200 * 100%);
	background-color: #F8F0E8;
	padding: 80px 80px;
}
.profile-card h4{
	font-size: 18px;
	margin-bottom: 20px;
}
.profile-card-list{
	
}
.profile-card-list li{
	margin-bottom: 10px;
}
.card-flex{
	display: flex;
	margin-top: 50px;
	justify-content: center;
	gap: calc(50 / 1247 * 100%);
}
@media (max-width: 1024px){
	.card-flex{
	flex-direction: column;
}
}
.license-card{
	width: calc(450 / 1200 * 100%);
	background-color: #FBFFEA;
	padding: 80px;
}
@media (max-width: 1024px){
	.license-card{
		width: 70%;
		margin: 50px auto 0;
}
	.profile-card{
		width: 70%;
		margin: 0 auto;
}
}
	.card-list span{
		display: block;
	}
@media (max-width: 768px){
		.license-card{
			width: 100%;
			padding: 50px;
}
	.profile-card{
		width: 100%;
		padding: 50px;
}
}
.license-card h4{
	font-size: 18px;
	margin-bottom: 30px;
}
@media (max-width: 1024px){
	.license-card h4{
		
	}
}
.license-card-list{

}
@media (max-width: 1024px){
	.card-txt{
		margin: 0 auto;
		width: fit-content;
}
}
.license-card-list li{
	margin-bottom: 10px;
}
.card-list li:first-child,
.card-list li:nth-child(2),
.card-list li:nth-child(3),
.card-list li:nth-child(4){
	margin-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%);
}
.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;
}
