@charset "UTF-8";
html{font-size: 62.5%;}
* {box-sizing: border-box;}
body {
  line-height: 1.4;
  display: block;
  font-family: "Shippori Mincho", serif;
  min-width: 320px;
  font-weight: 400;
}
body.home{
	background: #1c1c1c;
}
body * {
  font-weight: 400;
}
main{
  overflow: hidden;
}
.relative{
  position: relative;
}
.absolute{
  position: absolute;
}
img{
  width: 100%;
  font-size: 0;
}
.flex{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 5%;
}
.flex:last-of-type{
	margin-bottom: 0;
}
.w1100{
  max-width: 1140px;
  padding: 0 20px;
  margin-inline: auto;
}
.txt-center{
  text-align: center;
}
.txt-end{
  text-align: end;
}
.btn{
  display: flex;
  justify-content: center;
}
.btn a{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 50px;
  background: #fff;
  font-size: 1.4rem;
  transition: .3s;
  border: solid 1px #AD904C;
  color: #AD904C;
  letter-spacing: -0.02em;
}
.btn a::after{
	content: "";
    display: inline-block;
    vertical-align: middle;
    color:#AD904C;
    line-height: 1;
    width: 8px;
    height: 8px;
    box-sizing: border-box;
    transform: translateY(-50%) rotate(45deg);
    position: absolute;
    top: 50%;
    right: 20px;
    border-width: 1px 1px 0px 0px;
    border-style: solid solid;
    border-color: currentcolor currentcolor;
    border-image: initial;
    border-left: 0px;
    border-bottom: 0px;
	transition: .3s;
}
.btn.btn-line a{
	background: #06C755;
	color: #fff;
	border: solid 1px #06C755;
}
.btn.btn-line a::after{
	color: #fff;
}
.btn-line a::before{
	content: "";
	display: block;
	width: 25px;
	height: 25px;
	background-image: url(../image/line-btn-icon.png);
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	transition: .3s;
	position: absolute;
	top: 50%;
	left: 12%;
	transform: translateY(-50%);
}
.fs0{
  font-size: 0;
}
.home section{
	padding: 6% 0;
}
.en{
	font-family: "Marcellus", serif;
	font-weight: 400;
}
.home h1{
	font-size: 7rem;
	line-height: 1.2;
color: #AD904C;
}
.home h2{
font-size: 3.8rem;
color: #AD904C;
font-weight: 500;
}
.home h3{
font-size: 4rem;
margin-bottom: 10px;
}
.home p{
	font-size: 1.6rem;
	color: #fff;
}
.home p.mb{
	margin-bottom: 15px;
}
.home .flex .img{
	width: 48%;
}
.home .flex .txt{
	width: 50%;
}
.home .ttl-area{
	margin-bottom: 25px;
}
.home .ttl-area span{
	position: relative;
	font-size: 1.4rem;
	display: block;
	color: #fff;
	padding-left: 60px;
}
.home .ttl-area span::before{
	content: "";
	display: block;
	width: 55px;
	height: 1px;
	background: #fff;
	position: absolute;
	top: 50%;
	left: 0;
}
.btn-flex{
	justify-content: center!important;
  }
  .btn-flex .btn{
	margin: 10px;
  }

header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 80px;
	background: #FFF9F1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 30px;
	box-sizing: border-box;
	z-index: 1000;
	transition: all 0.3s ease;
	border-bottom: 1px solid #eee;
}

/* スクロール時のヘッダー変化 */
header.scrolled {
	height: 60px;
	box-shadow: 0 4px 10px rgba(0,0,0,0.1);
	padding: 0 20px;
}

/* --- ロゴエリア --- */
/* メニューより手前に表示するためにz-indexを指定 */
.header-logo {
	display: flex;
	align-items: center;
	z-index: 1002; 
	position: relative; /* z-indexを効かせるため */
	mix-blend-mode: multiply;
}

.logo-icon {
	width: 200px;
	margin-right: 15px;
	transition: font-size 0.3s;
	font-size: 0;
}

header.scrolled .logo-icon {
	width: 160px;
}

.logo-text-group {
	display: flex;
	flex-direction: column;
}

.logo-main {
	font-family: "Times New Roman", serif;
	font-size: 26px;
	letter-spacing: 0.08em;
	color: #333;
	line-height: 1.1;
}

.logo-sub {
	font-size: 11px;
	color: #666;
	margin-top: 4px;
	opacity: 1;
	transition: opacity 0.3s;
}

header.scrolled .logo-sub {
	opacity: 0; 
	height: 0;
	overflow: hidden;
	margin: 0;
}

/* --- 右側アクションエリア --- */
header .right {
	display: flex;
	align-items: center;
	position: relative;
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 15px;
	z-index: 1001; /* メニューより手前に */
	position: relative;
}

/* 予約ボタン共通（ヘッダー用） */
.rs-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 230px;
	height: 48px;
	padding: 0 24px;
	color: #fff;
	font-weight: bold;
	font-size: 1.3rem;
	transition: all 0.3s;
	box-sizing: border-box;
    letter-spacing: -0.01em;
}

.rs-btn::after {
	content: "";
	display: inline-block;
	vertical-align: middle;
	color: #fff;
	line-height: 1;
	width: 8px;
	height: 8px;
	border: 1px solid currentColor;
	border-left: 0;
	border-bottom: 0;
	box-sizing: border-box;
	transform: translateY(-50%) rotate(45deg);
	position: absolute;
	top: 50%;
	right: 10px;
}

.rs-btn.btn-web {
	background-color: #fff;
	border: solid 1px #355b46;
	color: #355b46;
}
.rs-btn.btn-web::after{
	color: #355b46;
}
.rs-btn.btn-beauty-w {
	background-color: #fff;
	border: solid 1px #f091b8;
	color: #f091b8;
}
.rs-btn.btn-beauty-w::after{
	color: #f091b8;
}
.rs-btn.btn-beauty-m{
	background-color: #fff;
	border: solid 1px #4da1f7;
	color: #4da1f7;
}
.rs-btn.btn-beauty-m::after{
	color: #4da1f7;
}

.arrow-icon { margin-left: 8px; font-size: 0.9em; }
.line-icon { margin-right: 6px; font-size: 1.4em; }

header.scrolled .rs-btn {
    height: 40px;
    padding: 0 18px;
    font-size: 13px;
}


/* --- ハンバーガーメニュー --- */
.hamburger {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 32px;
	height: 22px;
	cursor: pointer;
	margin-left: 25px;
	z-index: 1021;
	transition: all 0.3s;
}

.hamburger span {
	display: block;
	width: 100%;
	height: 2px;
	background-color: #1c1c1c;
	transition: all 0.3s;
	border-radius: 2px;
}

/* アクティブ時の×印アニメーション */
.hamburger.active span:nth-child(1) {
	transform: translateY(10px) rotate(45deg);
	background-color: #1c1c1c;
}
.hamburger.active span:nth-child(2) {
	opacity: 0;
}
.hamburger.active span:nth-child(3) {
	transform: translateY(-10px) rotate(-45deg);
	background-color: #1c1c1c;
}

/* --- ドロワーメニュー（header内配置・上からスライド） --- */
.nav-menu {
	position: fixed; /* header内に入れても画面全体基準で配置 */
	top: -100vh;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	color: #333;
	overflow-y: auto;
	transition: top 0.5s cubic-bezier(0.16, 1, 0.3, 1);
	z-index: 1011; /* header内の他の要素（ロゴなど）より後ろにする */
	padding-top: 100px;
	padding-bottom: 50px;
	box-sizing: border-box;
}

.nav-menu.open {
	top: 0;
}

/* メニュー内のレイアウト */
.nav-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 40px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	opacity: 0;
	transform: translateY(20px);
	transition: 0.5s;
	transition-delay: 0.2s;
}

.nav-inner h3{
	font-size: 2.5rem;
}

.nav-menu.open .nav-inner {
	opacity: 1;
	transform: translateY(0);
}

/* 左側のロゴエリア（メニュー内） */
.nav-logo-area {
	width: 18%;
	margin-bottom: 40px;
}
.nav-logo-icon {
	font-size: 60px;
	color: #b59b7c;
	margin-bottom: 10px;
	/* 画像用に追加 */
	width: 100%;
	max-width: 150px;
	display: block;
}

/* 右側のコンテンツエリア */
.nav-content-area {
	width: 75%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.nav-col {
	width: 100%;
	margin-bottom: 40px;
	/* スマホ時の並び替え用にflexコンテナ化 */
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 2%; 
}
.nav-col .item{
	width: 48%;
	margin-bottom: 50px;
}
.nav-title {
	font-size: 18px;
	font-weight: bold;
	color: #AD904C;
	border-bottom: 1px solid #AD904C;
	padding-bottom: 10px;
	margin-bottom: 20px;
	letter-spacing: 0.05em;
}

.nav-links li {
	margin-bottom: 12px;
}
.nav-links a {
	font-size: 1.6rem;
	color: #333;
	transition: color 0.3s;
	display: block;
}
.nav-links a:hover {
	color: #AD904C;
	text-decoration: underline;
}

.nav-btn {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 50px;
	color: #fff;
	font-weight: bold;
	margin-bottom: 15px;
	transition: .3s;
	position: relative;
	font-size: 1.6rem;
}
.nav-btn::after{
	content: "";
	display: inline-block;
	vertical-align: middle;
	line-height: 1;
	width: 8px;
	height:8px;
	border: 1px solid currentColor;
	border-left: 0;
	border-bottom: 0;
	box-sizing: border-box;
	transform: translateY(-50%) rotate(45deg);
	position: absolute;
	top: 50%;
	right: 20px;
	transition: .3s;
}

.nav-btn .nav-arrow {
	position: absolute;
	right: 20px;
	font-size: 14px;
}

.btn-nav-internal { background: #fff; color: #355b46; border: solid 1px #355b46;}
.btn-nav-internal::after{ color: #355b46;}
.btn-nav-beauty-f { background: #fff; color: #f091b8; border: solid 1px #f091b8; }
.btn-nav-beauty-f::after{color: #f091b8;}
.btn-nav-beauty-m { background: #fff; color: #4da1f7; border: solid 1px #4da1f7;}
.btn-nav-beauty-m::after{color: #4da1f7;}

.nav-sns {
	display: flex;
	gap: 15px;
	margin-top: 10px;
}
.sns-circle {
	width: 35px;
	height: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 20px;
	transition: 0.3s;
}
.sns-circle img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* fv---------------------------------------------------------------- */
.fv {
	margin-top: 70px;
}
.fv .sp{
	display: none;
}
.swiper-pagination{
	bottom: -30px!important;
}

/* about---------------------------------------------------------------- */
.about{
	background-image: url(../image/about-bg.webp);
	background-position: bottom;
	background-repeat: no-repeat;
	background-size: cover;
}
.about h2{
	margin-bottom: 20px;
}
.about h3{
	color: #AD904C;
}

/* medical ---------------------------------------------------------------- */
.home .medical{
	background-image: linear-gradient(135deg, #dcbd94, #ae914e);
}
.medical .flex .item{
	width: 49%;
	background: #fff;
	border: solid 1px #20573A;
	overflow: hidden;
	border-radius: 20px;
}
.medical .flex .item .thum{
	position: relative;
	padding-top: 55%;
	overflow: hidden;
}
.medical .flex .item img{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	object-fit: cover;
}
.medical h2{
	color: #fff;
	margin-bottom: 15px;
}
.medical .flex .txt .en{
	font-size: 3rem;
	color: #AD904C;
	mix-blend-mode: multiply;
}
.medical .flex p{
	margin-bottom: 30px;
}
.medical .btn.green a{
	border: solid 1px #355b46;
	color: #355b46;
}
.medical .btn.green a::after{
	color: #355b46;
}
.medical .btn.pink a{
	border: solid 1px #f091b8;
	color: #f091b8;
}
.medical .btn.pink a::after{
	color: #f091b8;
}
.medical .btn.blue a{
	border: solid 1px #4da1f7;
	color: #4da1f7;
}
.medical .btn.blue a::after{
	color: #4da1f7;
}


/* news------------------------------------------------------------------- */
.news .flex{
	margin-bottom: 30px;
}
.news .flex::after{
	content: "";
	display: block;
	width: 32%;
}
.news .flex li{
	width: 32%;
	border:  solid 1px #DADADA;
	border-radius: 20px;
	overflow: hidden;
}
.news .flex li .thum{
	position: relative;
	padding-top: 55%;
	overflow: hidden;
}
.news .flex li .thum img{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	object-fit: cover;
	height: 100%;
}
.news .flex li .txt-area{
	padding: 20px;
}
.news .flex li .day{
	font-size: 1.4rem;
	color: #797979;
}
.news .flex li .title{
	font-size: 1.6rem;
	color: #666;
	margin-bottom: 0;
}

/* doctor ---------------------------------------------------------------- */
.home .doctor{
	background-image: url(../image/doctor_bg.webp);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.home .doctor h3{
font-size: 3rem;
color: #AD904C;
margin-bottom: 20px;
}

.home .doctor p{
font-size: 1.6rem;
}
.home .doctor .name {
	text-align: end;
	margin-top: 30px;
	margin-bottom: 30px;
}
.home .doctor .name span{
	display: block;
	font-size: 1.4rem;
	color: #fff;
}
.home .doctor .name p{
	font-size: 3rem;
}
.home .flex .txt .btn{
	justify-content: flex-start;
}
  
  /* フッター ----------------------------------------------------- */
  footer {
	  background: #fff;
	  padding-top: 5%;
  }
.page-template-default footer{
	  background: #FFF9F1;
	  padding-top: 5%;
  }
  .footer-inner .flex .left{
	width: 30%;
  }
  .footer-inner .flex .right{
	width: 65%;
  }
  .footer-inner .flex .right .item{
	width: 48%;
	margin-bottom: 20px;
  }
  .footer-inner {
	  padding-bottom: 40px;
  }
  .footer-logo {
	  text-align: center;
	  margin-bottom: 20px;
  }
  .footer-logo img {
	  width: 180px;
	  mix-blend-mode: multiply;
  }
  .footer-address {
	  font-size: 1.3rem;
	  line-height: 1.6;
	  margin-bottom: 20px;
  }
  .footer-links h4 {
	  font-size: 2rem;
	  color: #AD904C;
	  font-weight: 700;
	  margin-bottom: 10px;
	  border-bottom: 1px solid #ccc;
	  padding-bottom: 10px;
  }
  .footer-links ul {
	  list-style: none;
	  padding: 0;
	  margin: 0;
  }
  .footer-links li {
	  margin-bottom: 5px;
	  font-size: 1.4rem;
  }
  .footer-links li a{
	  color: #333;
  }
  footer p{
	font-size: 1.4rem!important;
	color: #1c1c1c!important;
  }
  
  /* フッターボタン */
  
  .footer-btn-area {
	  display: flex;
	  flex-direction: column;
	  gap: 15px;
  }
  .footer-btn-area .btn a{
	width: 100%;
	font-size: 1.4rem;
  }
  .footer-btn-area .btn.btn-green a{
	background:#fff;
	border: solid 1px #355b46;
	color: #355b46;
  }
  .footer-btn-area .btn.btn-green a::after{
	color: #355b46;
  }
  .footer-btn-area .btn.btn-pink a{
	background: #fff;
	border: solid 1px #f091b8;
	color: #f091b8;
  }
  .footer-btn-area .btn.btn-pink a::after{
	color: #f091b8;
  }
  .footer-btn-area .btn.btn-blue a{
	background: #fff;
	border: solid 1px #4da1f7;
	color: #4da1f7;
  }
  .footer-btn-area .btn.btn-blue a::after{
	color: #4da1f7;
  }
  
  .copyright {
	  background: #B19453;
	  color: #fff;
	  text-align: center;
	  padding: 15px 0;
	  font-size: 1.1rem;
  }