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

body{
	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: 100vw;
    max-width: none;
    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*/
.container{
	/*width: calc(1247 / 1440 * 100%);*/
	width: calc(1200 / 1440 * 100%);
	margin: 0 auto;
}
@media (max-width: 768px){
	.container{
		width: calc(286 / 375 * 100%);
}
}
/*mv*/
.fp-mv{
	width: 100%;
	z-index: 0;
}
.fp-mv-wrap{
	width: calc(1100 / 1440 * 100%);
    margin: 0 auto;
    position: relative;
}
@media (max-width: 768px){
	.fp-mv-wrap{
		width: calc(267 / 375 * 100%);
		margin: 0 auto;
}
}
  .fp-mv-wrap::before{
	content: "";
	position: absolute;
	width: calc(455 / 1440 * 100%);
	aspect-ratio: 1 / 1;
	top: -30px;
	left: -60px;
	border-radius: 50%;
	background-color: rgba(213, 223, 220, 0.4);
	z-index: -1;
}
.fp-pc-mv-img{
	/*width: calc(1029 / 1124 * 100%);*/
	margin-top: 125px;
}
@media (max-width: 768px){
	.fp-pc-mv-img{
		display: none;
	}
}
.fp-sp-mv-img{
	display: none;
	
}
@media (max-width: 768px){
	.fp-sp-mv-img{
		display: block;
		margin-top: 40px;
}
}
.fp-mv-catch{
	position: absolute;
	top: 80px;
	left: 40px;
	color: #1F4E6B;
    font-size: 32px;
	font-family: 'CraftMincho',serif;
}    
   @media screen and (min-width: 768px) and  (max-width: 999px) {
	   .fp-mv-catch{
		   font-size: 26px;
		   	top: 40px;
			left: 20px;
	   }
}    
@media (max-width: 768px){
	.fp-mv-catch{
	 	font-size: 14px;
		writing-mode: vertical-rl;
		top: 5%;
		left: -10px;
		line-height: 1.3;
	}
	  .fp-mv-wrap::before{
		width: calc(180 / 331 * 100%);
		top: -30px;
		left: -30px;
}
}
.fp-mv-catch span{
	display: block;
	padding-bottom: 25px;
}
@media (max-width: 768px){
	.fp-mv-catch span{
	padding-left: 5px;
}
}
/*schedule*/
.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;
}
/*リンクボタン*/
.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;
}
}
/*当院の特徴*/
.fp-clinic{
	padding: 100px 0;
	margin: 100px 0;
	background-color: rgba(213, 223, 220, 0.37);
	border-top-left-radius: 120px;
}
@media (max-width: 768px){
	.fp-clinic{
		padding: 50px 0 0;
		margin: 50px 0;
}
}
.fp-sec-ttl{
	text-align: center;
}
.fp-sec-ttl h3{
	font-size: 18px;
	font-weight: 700;
}
.fp-sec-ttl p{
	
}
.clinic-contens-flex{
	width: 100%;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}
@media (max-width: 768px){
	.clinic-contens-flex{
		flex-direction: column;
}
}
.clinic-contents{
	width: calc(390 / 1220 * 100%);
}
@media screen and (min-width: 768px) and  (max-width: 1200px) {
    .clinic-contents{
		width: calc(590 / 1220 * 100%);
	}
}
@media (max-width: 768px){
	.clinic-contents{
		width: 100%;
}
}
.clinic-contents h4{
	padding-top: 20px;
	font-size: 18px;
}
@media (max-width: 768px){
	.clinic-contents h4{
		font-size: 16px;
}
}
.clinic-contents p{
	padding-top: 10px;
	padding-bottom: 50px;
	text-align: justify;
}
.fp-clinic-img{
	
}
.no{
	position: relative;
}
.no img{
	width: 92px;
	height: 70px;
	position: absolute;
	top: 0;
	left: 0;
	transform: translateY(-50%);
}
.fp-clinic-img img{
}
/*診療内容*/
.fp-medical{
		padding-bottom: 100px;
}
@media (max-width: 768px){
	.fp-medical{
		padding-bottom: 50px;
}
}
@media (max-width: 768px){
	.fp-medical-ttl-en{
		margin-bottom: 0;
}
}
.medical-contents-flex{
	display: flex;
	gap: 20px;
}
@media (max-width: 768px){
	.medical-contents-flex{
		flex-direction: column;
}
}
@media screen and (min-width: 768px) and  (max-width: 1200px) {
       .medical-contents-flex{
		   flex-wrap: wrap; 
}
}

.medical-contents{
	width: calc(307 / 1220 * 100%);
}
@media screen and (min-width: 768px) and  (max-width: 1200px) {
      .medical-contents{
		width: calc(590 / 1220 * 100%);
}  
}
@media (max-width: 768px){
	.medical-contents{
		width: 100%;
		margin-top: 30px;
}
}
.fp-medical-img{
	
}
.medical-contents h4{
	padding-top: 20px;
	font-size: 18px;
	text-align: center;
}
.medical-contents p{
	padding-top: 20px;
	text-align: justify;
}
.clinic-btn a{
	margin: 0 auto;
}
.clinic-btn{
	margin-top: 20px;
}
.medical-contents .more-btn{
	
}
/*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(849 / 1440 * 100%);
	display: flex;
}
.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;
}
}
.cta-btn{
	
}
/*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;
	}
}