/*
Theme Name: Sakura Bust Clinic
Theme URI: https://example.com/
Author: Shinya Maeda
Author URI: https://example.com/
Description: さくらバストクリニック用オリジナルテーマ
Version: 1.0
Text Domain: sakura-bust
*/

html {
	font-family: "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", sans-serif;
	color: #030209;
	font-size: 62.5%;
	scroll-behavior: smooth;
}
body {
	color: #030209;
	letter-spacing: 0.08em;
	font-size: 1.5rem;
	font-family: "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", sans-serif;
	font-weight: 400;
	font-feature-settings: 'palt'1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
	background: url("image/mv_bg.png") top center no-repeat;
}
p {
	line-height: 2.0;
	text-align: justify;
	margin-bottom: 1.4em;
}
p:last-child {
	margin-bottom: 0!important;
}
a {
	text-decoration: none;
	transition: .3s;
}
a:hover {
	opacity: 0.7;
}
@media screen and (max-width: 780px) { /*-----------------SP----- */
	body {
		font-size: 1.3rem;
		line-height: 1.875em;
		letter-spacing: 0.1em;
	}
	p {
		line-height: 1.8;
	}
}

@media only screen and (min-width: 781px) {
    .sp { display: none!important; }
    .pc { display: block; }
}
@media only screen and (max-width: 780px) {
    .pc { display: none!important; }
    .sp { display: block!important; }
}

/* header
--------------------------------------------------------*/
header {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 999;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #EEB9B8;
	padding: 0 40px;
	height: 80px;
}
header .head_logo {
	max-width: 120px;
}
header .head_btn {
	display: flex;
    align-items: center;
}
header .head_btn1 {
	margin: 0 20px 0 0;
}
header .head_btn2 {
	margin: 0;
}
header .head_btn1 a, header .head_btn2 a {
	display: block;
	padding: 9px 26px;
	font-weight: bold;
	font-size: 1.5rem;
	text-decoration: none;
	line-height: 20px;
	border-radius: 100px;
}
header .head_btn1 a {
	background-color: #fff;
	color: #502200;
	display: flex;
	gap: 8px;
	align-items: center;
}
header .head_btn1 a img {
	width: 20px;
}
header .head_btn2 a {
	background-color: #502200;
	color: #fff;
}
.nav_pc {
	display: flex;
	margin-right: 40px;
}
.nav_pc li {
	margin-right: 30px;
}
.nav_pc li:last-child {
	margin-right: 0;
}
.nav_pc li a {
	color: #fff;
	font-weight: bold;
	font-size: 1.4rem;
}
@media screen and (max-width: 1140px) { /*-----------------SP----- */
	.nav_pc {
		display: none;
	}
	header .head_btn2 {
		margin: 0 30px 0 0;
	}
}
@media screen and (max-width: 780px) { /*-----------------SP----- */
	header {
		padding: 0 20px 0 10px;
		height: 60px;
	}
	header .head_logo {
		max-width: 80px;
	}
	header .head_btn1 {
		margin: 0 10px 0 0;
	}
	header .head_btn2 {
		margin: 0 20px 0 0;
	}
	header .head_btn1 a, header .head_btn2 a {
		padding: 8px 10px;
		font-size: 1.1rem;
		letter-spacing: 0.01em;
		line-height: 16px;
		border-radius: 10px;
	}
	header .head_btn1 a img {
		width: 16px;
	}
}


/* ───────── ハンバーガーボタン ───────── */
.hamburger {
  display: none; /* PCでは非表示 */
  width: 28px;
  height: 20px;
  flex-direction: column;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: #502200;
  border-radius: 3px;
  transition: 0.3s;
}

/* ボタンが開いた時の × 変形 */
.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
@media screen and (max-width: 1140px) {
  .hamburger {
    display: flex; /* ← SPで表示 */
  }
}

/* ───────── SPメニュー ───────── */
.sp-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 360px;
  height: 100vh;
  background: #fff;
  padding: 100px 50px 60px 20px;
  transition: 0.3s ease;
  z-index: 998;
	opacity: 0;
}
@media screen and (max-width: 780px) { /*-----------------SP----- */
	.sp-nav {
	  padding: 70px 50px 60px 20px;
	  width: 70%;
	}
}
.sp-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sp-nav li {
}
.sp-nav a {
	display: block;
	color: #502200;
	font-size: 1.4rem;
	font-weight: bold;
	line-height: 1;
	padding: 14px 20px;
	border-bottom: 1px solid #EEB9B8;
}

/* 表示時 */
.sp-nav.active {
	right: 0;
	opacity: 1;
}
body.no-scroll {
  overflow: hidden;
}

/* オーバーレイ（背景） */
.overlay {
  display: none;
  position: fixed;
  inset: 0; /* top/right/bottom/left:0 の省略形 */
  background: rgba(0, 0, 0, 0.2);
  z-index: 997;
}

/* 表示時 */
.overlay.active {
  display: block;
}


/* mv
--------------------------------------------------------*/
.sec_mv {
	background: url("image/mv.jpg") right bottom no-repeat;
	background-size: cover;
	height: calc( 100vh - 80px );
	margin-top: 80px;
	padding: 0 20px;
}
.sec_mv_wrap {
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	height: 100%;
}
.sec_mv .box {
	display: inline-block;
}
.sec_mv h2 {
	font-family: "Noto Serif JP", serif;
	font-size: 4.0rem;
	font-weight: bold;
	color: #fff;
	line-height: 1.4;
	text-align: left;
	margin-bottom: 30px;
}
.sec_mv p {
	font-size: 2.0rem;
	font-weight: 400;
	color: #fff;
	line-height: 1.8;
	text-align: left;
	margin-bottom: 50px;
}
.mv_logo {
	max-width: 400px;
	margin: 0 auto;
	padding-right: 80px;
}
@media screen and (max-width: 780px) { /*-----------------SP----- */
	.sec_mv {
		background: url("image/mv_sp.jpg") right bottom no-repeat;
		background-size: cover;
		height: calc( 100vh - 60px );
		margin-top: 60px;
		padding: 0 0 12%;
	}
	.sec_mv_wrap {
		align-items: flex-end;
	}
	.sec_mv .box {
		background-color: rgb(173 123 91 / 0.46);
		width: 100%;
		padding: 20px 20px 30px;
	}
	.sec_mv h2 {
		font-size: 3.0rem;
		line-height: 1.6;
		margin-bottom: 14px;
		text-align: center;
	}
	.sec_mv p {
		font-size: 1.3rem;
		margin-bottom: 20px;
		text-align: center;
	}
	.mv_logo {
		max-width: 60%;
		padding: 0;
	}
}


/* common
--------------------------------------------------------*/
.sec01 h2, .sec03 h2, .sec04 h2, .sec05 h2 {
	background: url("image/logo_ttl.png") top center no-repeat;
	background-size: auto 14px;
	font-size: 2.8rem;
	font-weight: bold;
	text-align: center;
	color: #502200;
	line-height: 1;
	letter-spacing: 0.1em;
	padding-top: 36px;
}
.sec01 .intro, .sec03 .intro {
	text-align: center;
	color: #D46A6A;
	font-weight: 600;
	margin-bottom: 40px;
}
@media screen and (max-width: 780px) { /*-----------------SP----- */
	.sec01 h2, .sec03 h2, .sec04 h2, .sec05 h2 {
		background: url("image/logo_ttl.png") top center no-repeat;
		background-size: auto 10px;
		font-size: 2.0rem;
		letter-spacing: 0.06em;
		padding-top: 26px;
	}
	.sec01 .intro, .sec03 .intro {
		margin-bottom: 30px;
	}
}

/* sec01
--------------------------------------------------------*/
.sec01 {
	background: url("image/sec01_bg.jpg") top center no-repeat;
	padding: 100px 20px 150px;
}
@media screen and (min-width: 1921px) { /*-----------------SP----- */
	.sec01 {
		background: url("image/sec01_bg.jpg") top center no-repeat;
		background-size: cover;
	}
}
.sec01_wrap {
	max-width: 1100px;
	margin: 0 auto;
}
.sec01 h2 {
	margin-bottom: 20px;
}
.sec01 ul {
	display: flex;
}
.sec01 li {
	width: calc( 100% / 3 );
	padding: 10px 0 24%;
	position: relative;
}
.sec01 li.line {
	width: 1px;
	background-color: #EEB9B8;
	margin: 0 30px;
	align-self: stretch;
}
.sec01 h3 {
	color: #502200;
	font-size: 2.0rem;
	margin-bottom: 30px;
	min-height: 3em;
}
.sec01 img {
	position: absolute;
	bottom: 10px;
}
@media screen and (max-width: 780px) { /*-----------------SP----- */
	.sec01 {
		background: url("image/sec01_bg.jpg") top center no-repeat;
		background-size: cover;
		padding: 4em 6%;
	}
	.sec01 ul {
		display: block;
	}
	.sec01 li {
		width: 100%;
		padding: 0;
		position: relative;
	}
	.sec01 li.line {
		width: 100%;
		height: 1px;
		background-color: #EEB9B8;
		margin: 2em 0;
	}
	.sec01 h3 {
		font-size: 1.6rem;
		text-align: center;
		margin-bottom: 20px;
		min-height: auto;
	}
	.sec01 img {
		position: static;
		width: 80%;
		margin: 0 auto;
	}
}


/* sec02
--------------------------------------------------------*/
.sec02 {
	background-color: #FEF4F4;
	padding: 150px 20px;
}
.sec02_wrap {
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}
.sec02 .txt {
	width: 60%;
}
.sec02 .txt h2 {
	font-family: "Noto Serif JP", serif;
	letter-spacing: -0.02em;
	color: #502200;
	font-size: 2.8rem;
	margin-bottom: 40px;
}
.sec02 .txt p {
	margin-bottom: 1.4em;
}
.sec02 .img {
	width: 34%;
}
.sec02 .img img {
	margin-bottom: 6px;
}
.sec02 .img h3 {
	font-size: 1.5rem;
	text-align: right;
}
.sec02 .img h3 strong {
	font-size: 1.8rem;
	font-weight: bold;
}
@media screen and (max-width: 780px) { /*-----------------SP----- */
	.sec02 {
		padding: 4em 6%;
	}
	.sec02_wrap {
		display: block;
	}
	.sec02 .txt {
		width: 100%;
	}
	.sec02 .txt h2 {
		font-size: 2.0rem;
		margin-bottom: 30px;
	}
	.sec02 .img {
		width: 100%;
		margin-top: 2em;
	}
	.sec02 .img img {
		width: 80%;
		margin: 0 auto 6px;
	}
	.sec02 .img h3 {
		font-size: 1.3rem;
		text-align: center;
	}
	.sec02 .img h3 strong {
		font-size: 1.3rem;
	}
}


/* sec03
--------------------------------------------------------*/
.sec03 {
	background: url("image/sec03_bg.jpg") top center no-repeat;
	padding: 100px 20px 150px;
}
@media screen and (min-width: 1921px) { /*-----------------SP----- */
	.sec03 {
		background: url("image/sec03_bg.jpg") top center no-repeat;
		background-size: cover;
	}
}
.sec03_wrap {
	max-width: 1100px;
	margin: 0 auto;
}
.sec03 h2 {
	margin-bottom: 20px;
}
.sec03 .menu {
	display: flex;
	justify-content: center;
	align-items: center;
}
.sec03 .menu img {
	width: 400px;
}
.sec03 .menu ul {
	margin-left: -20px;
}
.sec03 .menu li {
	background-color: rgba(255, 255, 255, 0.8);
	border-radius: 6px;
	line-height: 1;
	padding: 14px 40px;
	text-align: center;
	color: #502200;
	font-size: 2.0rem;
	font-weight: bold;
	margin-bottom: 16px;
}
.sec03 .menu li:last-child {
	margin-bottom: 0;
}
@media screen and (max-width: 780px) { /*-----------------SP----- */
	.sec03 {
		padding: 4em 6%;
	}
	.sec03 .menu {
		display: block;
	}
	.sec03 .menu img {
		width: 80%;
		margin: 0 auto 10px;
	}
	.sec03 .menu ul {
		width: 80%;
		margin: 0 auto;
	}
	.sec03 .menu li {
		padding: 14px 20px;
		font-size: 1.5rem;
		margin-bottom: 4px;
	}
}


/* sec04
--------------------------------------------------------*/
.sec04 {
	background-color: #FEF4F4;
	padding: 100px 20px 150px;
}
.sec04_wrap {
	max-width: 1100px;
	margin: 0 auto;
}
.sec04 h2 {
	margin-bottom: 40px;
}
.sec04 ul {
	display: flex;
	gap: 4%;
	justify-content: center;
}
.sec04 li {
	width: 50%;
}
@media screen and (max-width: 780px) { /*-----------------SP----- */
	.sec04 {
		padding: 4em 6%;
	}
	.sec04 h2 {
		margin-bottom: 30px;
	}
	.sec04 ul {
		display: block;
	}
	.sec04 li {
		width: 100%;
		margin-bottom: 2em;
	}
	.sec04 li:last-child {
		margin-bottom: 0;
	}
}


/* sec05
--------------------------------------------------------*/
.sec05 {
	background: url("image/sec05_bg.jpg") top center no-repeat;
	padding: 100px 20px 150px;
}
@media screen and (min-width: 1921px) { /*-----------------SP----- */
	.sec05 {
		background: url("image/sec05_bg.jpg") top center no-repeat;
		background-size: cover;
	}
}
.sec05_wrap {
	max-width: 1100px;
	margin: 0 auto;
}
.sec05 h2 {
	margin-bottom: 40px;
}
.sec05 .flex {
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
}
.sec05 .map {
	width: 48%;
}
.sec05 .map iframe {
	width: 100%;
	height: 100%;
}
.sec05 .txt {
	width: 46%;
	padding-bottom: 60px;
}
.sec05 .txt h3 {
	font-size: 1.6rem;
	font-weight: bold;
	color: #502200;
	margin-bottom: 40px;
}
.sec05 .txt h3 strong {
	font-size: 2.4rem;
	font-weight: bold;
	display: block;
}
.sec05 .txt table {
	border-collapse: collapse;
	border-spacing: 0;
}
.sec05 .txt th {
	border-right: 1px solid #EEB9B8;
	text-align: left;
	vertical-align: top;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-top: 20px;
}
.sec05 .txt td {
	padding-left: 20px;
	padding-bottom: 20px;
	padding-top: 20px;
}
.sec05 .txt td a {
	letter-spacing: 0.01em;
	font-size: 1.4rem;
	text-decoration: underline;
	color: #1473e8;
}
@media screen and (max-width: 780px) { /*-----------------SP----- */
	.sec05 {
		padding: 4em 0 0;
	}
	.sec05 h2 {
		margin-bottom: 30px;
	}
	.sec05 .flex {
		display: block;
	}
	.sec05 .map {
		width: 100%;
		line-height: 1;
		height: 240px;
	}
	.sec05 .map iframe {
		height: 100%;
	}
	.sec05 .txt {
		width: 100%;
		padding: 0 6%;
		margin-bottom: 2em;
	}
	.sec05 .txt h3 {
		font-size: 1.2rem;
		margin-bottom: 20px;
		text-align: center;
	}
	.sec05 .txt h3 strong {
		font-size: 1.8rem;
	}
	.sec05 .txt th {
		white-space: nowrap;
		padding-bottom: 14px;
		padding-top: 14px;
		font-size: 1.3rem;
	}
	.sec05 .txt td {
		padding-bottom: 14px;
		padding-top: 14px;
		line-height: 1.6;
	}
	.sec05 .txt td a {
		font-size: 1.3rem;
	}
}


/* footer
--------------------------------------------------------*/
footer {
	padding: 100px 60px 30px;
	background-color: #EEB9B8;
	color: #fff;
}
footer .flex {
	max-width: 1100px;
	margin: 0 auto 100px;
	display: flex;
	justify-content: space-between;
}
.foot_logo {
	max-width: 200px;
}
footer .flex li {
	margin-bottom: 20px;
}
footer .flex li a {
	color: #fff;
	font-size: 1.4rem;
	font-weight: 500;
}
footer .flex li:last-child {
	margin-bottom: 0;
}

.foot_nav {
	display: flex;
	gap: 70px;
}
.copyright {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1;
    letter-spacing: 0.01em;
}
@media screen and (max-width: 780px) { /*-----------------SP----- */
	footer {
		padding: 4em 6% 20px;
	}
	footer .flex {
		margin: 0 auto 4em;
		display: block;
	}
	.foot_logo {
		max-width: 100px;
		margin: 0 auto 2em;
	}
	footer .flex ul {
		margin-bottom: 20px;
	}
	footer .flex li {
		text-align: center;
		margin-bottom: 20px;
		line-height: 1.2;
	}
	footer .flex li a {
		font-size: 1.3rem;
	}
	.foot_nav {
		display: block;
		gap: 70px;
	}
	.copyright {
		font-size: 1.0rem;
	}
}


/* sns
--------------------------------------------------------*/
.sns {
	position: fixed;
	right: 18px;
	top: 300px;
	z-index: 999;
}
.sns_ttl {
	font-family: "Noto Serif JP", serif;
	font-size: 1.5rem;
	color: #707070;
	letter-spacing: 0.01em;
	margin: 0;
	writing-mode: vertical-rl;
	transform: rotate(0deg);
	line-height: 20px;
}
.sns ul {
	width: 20px;
	margin-top: 14px;
}
.sns li {
	margin-bottom: 14px;
}
.sns li:last-child {
	margin-bottom: 0;
}
@media screen and (max-width: 780px) { /*-----------------SP----- */
	.sns {
		position: fixed;
		right: 14px;
		top: 100px;
	}
	.sns_ttl {
		font-size: 1.3rem;
		line-height: 18px;
	}
	.sns ul {
		width: 18px;
		margin-top: 20px;
	}
	.sns li {
		margin-bottom: 20px;
	}
}




/* page
--------------------------------------------------------*/
.page {
	background: url("image/bg_page.jpg") top center repeat-y;
	background-size: cover;
	color: #502200;
}
.single-case {
	background: url("image/bg_page.jpg") top center repeat-y;
	background-size: cover;
	color: #502200;
}
.archive {
	background: url("image/bg_page.jpg") top center repeat-y;
	background-size: cover;
	color: #502200;
}
.single-post {
	background: url("image/bg_page.jpg") top center repeat-y;
	background-size: cover;
	color: #502200;
}


/* fv
--------------------------------------------------------*/
.sec_fv {
	margin-top: 80px;
	padding: 0 50px 70px;
	height: 344px;
	margin-bottom: 20px;
}
.sec_fv_wrap {
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	height: 100%;
}
.sec_fv p {
	font-family: "Noto Serif JP", serif;
	font-size: 5.0rem;
	font-weight: 400;
	color: #fff;
	line-height: 1;
	text-align: left;
	margin-bottom: 20px;
}
.sec_fv h1 {
	font-size: 2.0rem;
	font-weight: 400;
	color: #fff;
	line-height: 1;
	text-align: left;
}
.sec_fv h2 {
	font-size: 2.0rem;
	font-weight: 400;
	color: #fff;
	line-height: 1;
	text-align: left;
}
@media screen and (max-width: 780px) { /*-----------------SP----- */
	.sec_fv {
		margin-top: 60px;
		padding: 0 6% 30px;
		height: 150px;
	}
	.sec_fv p {
		font-size: 2.8rem;
		margin-bottom: 6px;
		text-shadow: 1px 2px 10px rgba(0, 0, 0, 0.32);
	}
	.sec_fv h1 {
		font-size: 1.4rem;
		font-weight: 500;
		text-shadow: 1px 2px 10px rgba(0, 0, 0, 0.32);
	}
	.sec_fv h2 {
		font-size: 1.4rem;
		font-weight: 500;
		text-shadow: 1px 2px 10px rgba(0, 0, 0, 0.32);
	}
}


#price .sec_fv {
	background: url("image/fv_price.png") top center no-repeat;
	background-size: cover;
}
#clinic .sec_fv {
	background: url("image/fv_clinic.png") top center no-repeat;
	background-size: cover;
}
#doctor .sec_fv {
	background: url("image/fv_doctor.png") top center no-repeat;
	background-size: cover;
}
#privacy .sec_fv {
	background: url("image/fv_privacy.png") top center no-repeat;
	background-size: cover;
}
#contact .sec_fv {
	background: url("image/fv_contact.png") top center no-repeat;
	background-size: cover;
}
#question .sec_fv {
	background: url("image/fv_question.png") top center no-repeat;
	background-size: cover;
}
#case .sec_fv {
	background: url("image/fv_case.png") top center no-repeat;
	background-size: cover;
}
#column .sec_fv {
	background: url("image/fv_column.png") top center no-repeat;
	background-size: cover;
}
#recruit .sec_fv {
	background: url("image/fv_recruit.png") top center no-repeat;
	background-size: cover;
}
@media screen and (max-width: 780px) { /*-----------------SP----- */
	#price .sec_fv {
		background: url("image/fv_price.png") top center no-repeat;
		background-size: auto 150px;
	}
	#clinic .sec_fv {
		background: url("image/fv_clinic.png") top center no-repeat;
		background-size: auto 150px;
	}
	#doctor .sec_fv {
		background: url("image/fv_doctor.png") top center no-repeat;
		background-size: auto 150px;
	}
	#privacy .sec_fv {
		background: url("image/fv_privacy.png") top center no-repeat;
		background-size: auto 150px;
	}
	#contact .sec_fv {
		background: url("image/fv_contact.png") top center no-repeat;
		background-size: auto 150px;
	}
	#question .sec_fv {
		background: url("image/fv_question.png") top center no-repeat;
		background-size: auto 150px;
	}
	#case .sec_fv {
		background: url("image/fv_case.png") top center no-repeat;
		background-size: auto 150px;
	}
	#column .sec_fv {
		background: url("image/fv_column.png") top center no-repeat;
		background-size: auto 150px;
	}
	#recruit .sec_fv {
		background: url("image/fv_recruit.png") top center no-repeat;
		background-size: auto 150px;
	}
}



/* price
--------------------------------------------------------*/
.price01 {
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 20px 10px;
}
.price01 .cate_btn {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 60px;
}
.price01 .cate_btn li {
	width: 240px;	
}
.price01 .cate_btn li a {
	background-color: #EEB9B8;
	padding: 14px 5px;
	display: block;
	letter-spacing: 0.01em;
	text-align: center;
	color: #fff;
	font-weight: bold;
	border-radius: 10px;
}
.price01 .kome {
	font-size: 1.2rem;
	font-weight: bold;
	color: #502200;
	text-align: right;
}
.price_box {
	background-color: #fff;
	max-width: 1140px;
	margin: 0 auto 100px;
	padding: 50px 20px 80px;
}
.price_box h2 {
	background: url("image/logo_ttl.png") top center no-repeat;
	background-size: auto 14px;
	font-size: 2.8rem;
	font-weight: bold;
	text-align: center;
	color: #502200;
	line-height: 1;
	letter-spacing: 0.1em;
	padding-top: 36px;
	margin-bottom: 30px;
}
.price_box table {
	max-width: 770px;
	width: 100%;
	margin: 0 auto 40px;
	border-top: 1px solid #502200;
	border-left: 1px solid #502200;
}
.price_box table:last-child {
	margin: 0 auto;
}
.price_box table th, .price_box table td {
	border-bottom: 1px solid #502200;
	border-right: 1px solid #502200;
	line-height: 1.6;
}
.price_box table th {
	background-color: #FEF4F4;
	text-align: left;
	padding: 14px 26px;
	width: 62%;
}
.price_box table td {
	text-align: right;
	padding: 14px 26px;
	font-weight: bold;
}
.price_box table td strong {
	font-weight: bold;
	color: #D46A6A;
}
.price_box table th.ttl {
	background-color: #EEB9B8;
	font-size: 1.8rem;
	color: #fff;
	padding: 14px;
	text-align: center;
}
.price_box table th.ttl_sub {
	background-color: #502200;
	font-size: 1.5rem;
	color: #fff;
	padding: 4px;
	text-align: center;
}
.mb150 {
	margin-bottom: 150px!important;
}
@media screen and (max-width: 780px) { /*-----------------SP----- */
	.price01 {
		padding: 0 6% 10px;
	}
	.price01 .cate_btn {
		gap: 12px;
		margin-bottom: 30px;
	}
	.price01 .cate_btn li {
		width: 48%;	
	}
	.price01 .cate_btn li a {
		padding: 0 4px;
		font-size: 1.2rem;
		line-height: 1.4;
		height: 46px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.price_box {
		margin: 0 auto 30px;
		padding: 40px 6% 50px;
	}
	.price_box h2 {
		background: url("image/logo_ttl.png") top center no-repeat;
		background-size: auto 10px;
		font-size: 2.0rem;
		letter-spacing: 0.06em;
		padding-top: 26px;
	}
	.price_box table th, .price_box table td {
		font-size: 1.1rem;
		line-height: 1.5;
	}
	.price_box table th {
		padding: 10px 12px;
		width: 60%;
	}
	.price_box table td {
		padding: 10px 12px;
		white-space: nowrap;
	}
	.price_box table th.ttl {
		font-size: 1.6rem;
		padding: 10px;
	}
	.price_box table th.ttl_sub {
		font-size: 1.4rem;
		padding: 4px;
	}
	.mb150 {
		margin-bottom: 60px!important;
	}
}


/* privacy
--------------------------------------------------------*/
#privacy h1 {
	font-size: 2.8rem;
	font-weight: bold;
}
.privacy01 {
	max-width: 1140px;
	margin: 0 auto 140px;
	padding: 0 20px;
}
#privacy h2 {
	font-size: 2.8rem;
	font-weight: bold;
	margin-bottom: 40px;
}
#privacy h3 {
	font-size: 2.0rem;
	font-weight: bold;
	margin-top: 60px;
	margin-bottom: 30px;
	color: #333333;
}
#privacy p {
	color: #333333;
}
.privacy_mail {
	margin-top: 60px;
}

.privacy02 {
	max-width: 1140px;
	margin: 0 auto 150px;
	padding: 0 20px;
}
.privacy02 table {
	width: 100%;
}
.privacy02 table th, .privacy02 table td {
	border-bottom: 1px solid #502200;
	text-align: left;
	color: #333;
	padding: 14px;
}
@media screen and (max-width: 780px) { /*-----------------SP----- */
	#privacy h1 {
		font-size: 1.5rem;
		line-height: 1.4;
	}
	.privacy01 {
		padding: 0 6%;
	}
	#privacy h2 {
		font-size: 2.0rem;
		margin-bottom: 1.4em;
	}
	#privacy h3 {
		font-size: 1.8rem;
		margin-top: 3em;
		margin-bottom: 1.4em;
	}
	.privacy_mail {
		margin-top: 3em;
	}

	.privacy02 {
		margin: 0 auto 6em;
		padding: 0 6%;
	}
	.privacy02 table th, .privacy02 table td {
		display: block;
		border-bottom: 1px solid #502200;
		text-align: left;
		padding: 14px 0;
	}
	.privacy02 table th {
		border-bottom: none;
		padding-bottom: 0;
	}
	.privacy02 table td {
		padding-top: 8px;
	}
}




/* clinic
--------------------------------------------------------*/
.clinic01 {
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 20px 70px;
}
.clinic01 h2 {
	font-family: "Noto Serif JP", serif;
	font-size: 2.8rem;
	font-weight: bold;
	color: #D46A6A;
	text-align: center;
	margin-bottom: 50px;
	letter-spacing: 0.01em;
}
@media screen and (max-width: 1100px) { /*-----------------SP----- */
	.clinic01 h2 {
		padding: 0 50px 0 0;
		text-align: left;
	}
}
.clinic01 ul {
	display: flex;
}
.clinic01 li {
	width: calc( 100% / 3 );
	padding: 10px 0 24%;
	position: relative;
}
.clinic01 li.line {
	width: 1px;
	background-color: #EEB9B8;
	margin: 0 30px;
	align-self: stretch;
}
.clinic01 h3 {
	color: #502200;
	font-size: 2.0rem;
	margin-bottom: 30px;
	min-height: 3em;
}
.clinic01 img {
	position: absolute;
	bottom: 10px;
}
@media screen and (max-width: 780px) { /*-----------------SP----- */
	#clinic .sec_fv p {
		font-size: 2.2rem;
	}
	.clinic01 {
		padding: 0 6% 4em;
	}
	.clinic01 h2 {
		font-size: 1.6rem;
		text-align: center;
		margin-bottom: 30px;
		line-height: 1.6;
		padding: 0;
	}
	.clinic01 ul {
		display: block;
	}
	.clinic01 li {
		width: 100%;
		padding: 0;
		position: relative;
	}
	.clinic01 li.line {
		width: 100%;
		height: 1px;
		background-color: #EEB9B8;
		margin: 2em 0;
	}
	.clinic01 h3 {
		font-size: 1.6rem;
		text-align: center;
		margin-bottom: 20px;
		min-height: auto;
	}
	.clinic01 img {
		position: static;
		width: 80%;
		margin: 0 auto;
	}
}

.clinic02 {
	background-color: #FEF4F4;
	padding: 70px 20px 70px;
}
.clinic02_wrap {
	max-width: 1100px;
	margin: 0 auto;
}
.clinic02 h2 {
	background: url("image/logo_ttl.png") top center no-repeat;
	background-size: auto 14px;
	font-size: 2.8rem;
	font-weight: bold;
	text-align: center;
	color: #502200;
	line-height: 1;
	letter-spacing: 0.1em;
	padding-top: 36px;
	margin-bottom: 10px;
}
.clinic02_box {
	display: flex;
	gap: 40px;
	padding: 50px 7%;
	border-bottom: 1px solid #502200;
}
.clinic02_box:last-child {
	border: none;
	padding-bottom: 0;
}
@media screen and (max-width: 1100px) { /*-----------------調整----- */
	.clinic02_box {
		gap: 30px;
		padding: 50px 20px;
	}
}
.clinic02_box .step {
	width: 84px;
	height: auto;
}
.clinic02_box .clinic_btn {
	display: flex;
    align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}
.clinic02_box .clinic_btn1, .clinic02_box .clinic_btn2 {
	margin: 0;
}
.clinic02_box .clinic_btn1 a, .clinic02_box .clinic_btn2 a {
	padding: 9px 26px;
	font-weight: bold;
	font-size: 1.5rem;
	text-decoration: none;
	line-height: 20px;
	border-radius: 100px;
	width: 320px;
	background-color: #fff;
	border: 2px solid #502200;
	color: #502200;
	display: flex;
	justify-content: center;
	gap: 8px;
	align-items: center;
}
.clinic02_box .clinic_btn1 a img, .clinic02_box .clinic_btn2 a img {
	height: 30px;
	width: auto;
}
.clinic02_txt {
	flex: 1;
}
.clinic02_txt h3 {
	font-size: 2.2rem;
	font-weight: bold;
	margin-bottom: 24px;
}
@media screen and (max-width: 780px) { /*-----------------SP----- */
	.clinic02 {
		padding: 4em 6% 3em;
	}
	.clinic02 h2 {
		background-size: auto 10px;
        font-size: 2.0rem;
        letter-spacing: 0.06em;
        padding-top: 26px;
	}
	.clinic02_box {
		display: block;
		padding: 30px 0;
	}
	.clinic02_box .step {
		width: 44px;
		margin: 0 auto 14px;
	}
	.clinic02_box .clinic_btn {
		display: block;
	}
	.clinic02_box .clinic_btn1 {
		margin-bottom: 20px;
	}
	.clinic02_box .clinic_btn1 a, .clinic02_box .clinic_btn2 a {
		padding: 12px 20px;
		font-size: 1.3rem;
		width: 80%;
		min-width: 280px;
		letter-spacing: 0.01em;
		margin: 0 auto;
	}
	.clinic02_box .clinic_btn1 a img, .clinic02_box .clinic_btn2 a img {
		height: 20px;
	}
	.clinic02_txt h3 {
		font-size: 1.8rem;
		margin-bottom: 10px;
		text-align: center;
	}
}

.clinic03 {
	padding: 70px 20px 70px;
}
.clinic03_wrap {
	max-width: 1100px;
	margin: 0 auto;
}
.clinic03 h2 {
	background: url("image/logo_ttl.png") top center no-repeat;
	background-size: auto 14px;
	font-size: 2.8rem;
	font-weight: bold;
	text-align: center;
	color: #502200;
	line-height: 1;
	letter-spacing: 0.1em;
	padding-top: 36px;
	margin-bottom: 40px;
}
.clinic03 .flex {
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
}
.clinic03 .map {
	width: 48%;
}
.clinic03 .map iframe {
	width: 100%;
	height: 100%;
}
.clinic03 .txt {
	width: 46%;
	padding-bottom: 60px;
}
.clinic03 .txt h3 {
	font-size: 1.6rem;
	font-weight: bold;
	color: #502200;
	margin-bottom: 40px;
}
.clinic03 .txt h3 strong {
	font-size: 2.4rem;
	font-weight: bold;
	display: block;
}
.clinic03 .txt table {
	border-collapse: collapse;
	border-spacing: 0;
}
.clinic03 .txt th {
	border-right: 1px solid #EEB9B8;
	text-align: left;
	vertical-align: top;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-top: 20px;
	width: 6em;
}
.clinic03 .txt td {
	padding-left: 20px;
	padding-bottom: 20px;
	padding-top: 20px;
	line-height: 1.8;
}
.clinic03 .txt td a {
	letter-spacing: 0.01em;
	font-size: 1.4rem;
	text-decoration: underline;
	color: #1473e8;
}
@media screen and (max-width: 780px) { /*-----------------SP----- */
	.clinic03 {
		padding: 4em 0 0;
	}
	.clinic03 h2 {
		background-size: auto 10px;
        font-size: 2.0rem;
        letter-spacing: 0.06em;
        padding-top: 26px;
		margin-bottom: 30px;
	}
	.clinic03 .flex {
		display: block;
	}
	.clinic03 .map {
		width: 100%;
		line-height: 1;
		height: 240px;
	}
	.clinic03 .map iframe {
		height: 100%;
	}
	.clinic03 .txt {
		width: 100%;
		padding: 0 6%;
		margin-bottom: 2em;
	}
	.clinic03 .txt h3 {
		font-size: 1.2rem;
		margin-bottom: 20px;
		text-align: center;
	}
	.clinic03 .txt h3 strong {
		font-size: 1.8rem;
	}
	.clinic03 .txt th {
		white-space: nowrap;
		padding-bottom: 14px;
		padding-top: 14px;
		font-size: 1.3rem;
	}
	.clinic03 .txt td {
		padding-bottom: 14px;
		padding-top: 14px;
		line-height: 1.6;
	}
	.clinic03 .txt td a {
		font-size: 1.3rem;
	}
}

.clinic04 {
	background-color: #FEF4F4;
	padding: 70px 20px 70px;
}
.clinic04_wrap {
	max-width: 1100px;
	margin: 0 auto;
}
.clinic04 h2 {
	background: url("image/logo_ttl.png") top center no-repeat;
	background-size: auto 14px;
	font-size: 2.8rem;
	font-weight: bold;
	text-align: center;
	color: #502200;
	line-height: 1;
	letter-spacing: 0.1em;
	padding-top: 36px;
	margin-bottom: 40px;
}
.clinic04 ul {
	display: flex;
	gap: 4%;
	justify-content: center;
}
.clinic04 li {
	width: 50%;
}
@media screen and (max-width: 780px) { /*-----------------SP----- */
	.clinic04 {
		padding: 4em 6%;
	}
	.clinic04 h2 {
		background-size: auto 10px;
        font-size: 2.0rem;
        letter-spacing: 0.06em;
        padding-top: 26px;
		margin-bottom: 30px;
	}
	.clinic04 h2 {
		margin-bottom: 30px;
	}
	.clinic04 ul {
		display: block;
	}
	.clinic04 li {
		width: 100%;
		margin-bottom: 2em;
	}
	.clinic04 li:last-child {
		margin-bottom: 0;
	}
}

.clinic05 {
	padding: 70px 20px 150px;
}
.clinic05_wrap {
	max-width: 1100px;
	margin: 0 auto;
}
.clinic05 h2 {
	background: url("image/logo_ttl.png") top center no-repeat;
	background-size: auto 14px;
	font-size: 2.8rem;
	font-weight: bold;
	text-align: center;
	color: #502200;
	line-height: 1;
	letter-spacing: 0.1em;
	padding-top: 36px;
	margin-bottom: 40px;
}
.clinic05 p {
	text-align: center;
	font-weight: bold;
}
.clinic05 .clinic05_img {
	background-color: #fff;
	max-width: 550px;
	margin: 0 auto;
	padding: 24px 100px;
}
@media screen and (max-width: 780px) { /*-----------------SP----- */
	.clinic05 {
		padding: 4em 6%;
	}
	.clinic05 h2 {
		background-size: auto 10px;
        font-size: 2.0rem;
        letter-spacing: 0.06em;
        padding-top: 26px;
		margin-bottom: 30px;
	}
	.clinic05 h2 {
		margin-bottom: 30px;
	}
	.clinic05 .clinic05_img {
		padding: 24px 30px;
	}
}


/* doctor
--------------------------------------------------------*/
.doctor01 {
	padding: 0 20px 70px;
}
.doctor01_wrap {
	max-width: 880px;
	margin: 0 auto; 
}
.doctor01 h2 {
	background: url("image/logo_ttl_pink.png") top center no-repeat;
	background-size: auto 14px;
	font-size: 2.8rem;
	font-weight: bold;
	text-align: center;
	color: #EEB9B8;
	line-height: 1;
	letter-spacing: 0.1em;
	padding-top: 36px;
	margin-bottom: 50px;
}
.doctor01_flex {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	flex-direction: row-reverse;
	margin-bottom: 70px;
}
.doctor01_txt {
	width: 56%;
}
.doctor01_txt h3 {
	font-size: 1.6rem;
	font-weight: bold;
	margin: 40px 0 0;
}
.doctor01_img {
	width: 36%;
}
.doctor01_flex2 {
	display: flex;
}
.doctor01_flex2 dl {
	width: 50%;
}
.doctor01_flex2 dl:first-child {
	padding-right: 50px;
}
.doctor01_flex2 dt {
	font-size: 2.0rem;
	font-weight: bold;
	border-left: 1px solid #502200;
	padding: 14px 20px;
	margin-bottom: 40px;
}
.doctor01_flex2 dd {
	margin-bottom: 10px;
}
.doctor01_flex2 dd:last-child {
	margin-bottom: 0;
}

.doctor02 {
	background-color: #FEF4F4;
	padding: 70px 20px 150px;
}
.doctor02_wrap {
	max-width: 880px;
	margin: 0 auto; 
}
.doctor02 h2 {
	background: url("image/logo_ttl_pink.png") top center no-repeat;
	background-size: auto 14px;
	font-size: 2.8rem;
	font-weight: bold;
	text-align: center;
	color: #EEB9B8;
	line-height: 1;
	letter-spacing: 0.1em;
	padding-top: 36px;
	margin-bottom: 50px;
}
.doctor02_sns {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 40px;
	margin-bottom: 150px;
}
.doctor02_sns li {
	width: 40px;
}
.doctor02_media {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}
.doctor02_media li {
	width: calc( 100% / 2 - 15px);
}
@media screen and (max-width: 780px) { /*-----------------SP----- */
	.doctor01 {
		padding: 0 6% 4em;
	}
	.doctor01_wrap {
		max-width: 880px;
		margin: 0 auto; 
	}
	.doctor01 h2 {
		background-size: auto 10px;
        font-size: 2.0rem;
        letter-spacing: 0.06em;
        padding-top: 26px;
		margin-bottom: 30px;
	}
	.doctor01_flex {
		display: block;
		margin-bottom: 3em;
	}
	.doctor01_txt {
		width: 100%;
	}
	.doctor01_txt h3 {
		font-size: 1.5rem;
		margin: 30px 0 0;
	}
	.doctor01_img {
		width: 70%;
		margin: 0 auto 20px;
	}
	.doctor01_flex2 {
		display: block;
	}
	.doctor01_flex2 dl {
		width: 100%;
	}
	.doctor01_flex2 dl:first-child {
		padding-right: 0;
		margin-bottom: 2em;
	}
	.doctor01_flex2 dt {
		font-size: 1.6rem;
		border-left: 1px solid #502200;
		padding: 4px 14px;
		margin-bottom: 20px;
	}
	.doctor01_flex2 dd {
		margin-bottom: 6px;
	}
	.doctor02 {
		padding: 4em 6%;
	}
	.doctor02_wrap {
		max-width: 880px;
		margin: 0 auto; 
	}
	.doctor02 h2 {
		background-size: auto 10px;
        font-size: 2.0rem;
        letter-spacing: 0.06em;
        padding-top: 26px;
		margin-bottom: 30px;
	}
	.doctor02_sns {
		margin-bottom: 4em;
	}
	.doctor02_sns li {
		width: 24px;
	}
	.doctor02_media {
		display: flex;
		flex-wrap: wrap;
		gap: 10px;
	}
	.doctor02_media li {
		width: calc( 100% / 2 - 5px);
	}
}


/* contact
--------------------------------------------------------*/
.contact {
	padding: 0 20px 150px;
}
.contact_wrap {
	max-width: 1100px;
	margin: 0 auto; 
}
.contact_intro {
	margin-bottom: 80px;
}
.contact_intro_txt {
	text-align: center;
	margin-bottom: 40px;
}
.contact_btn {
	display: flex;
    align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
}
.contact_btn1, .contact_btn2 {
	margin: 0;
}
.contact_btn1 a, .contact_btn2 a {
	padding: 9px 26px;
	font-weight: bold;
	font-size: 1.5rem;
	text-decoration: none;
	line-height: 20px;
	border-radius: 100px;
	width: 320px;
	background-color: #fff;
	border: 2px solid #502200;
	color: #502200;
	display: flex;
	justify-content: center;
	gap: 8px;
	align-items: center;
}
.contact_btn1 a img, .contact_btn2 a img {
	height: 30px;
	width: auto;
}
.contact_form {
	max-width: 600px;
	margin: 0 auto;
}
.contact_form p {
	font-weight: bold;
	margin: 0;
}
.contact_form p.privacy {
	text-align: center;
	margin-bottom: 24px;
	margin-top: 20px;
}
.contact_form p.privacy a {
	text-decoration: underline;
	color: #502200;
}
.contact_form p.privacy .wpcf7-list-item {
	margin: 0;
}
.contact_form input.wpcf7-text, .contact_form textarea {
	width: 100%;
	border: 1px solid #707070;
	border-radius: 5px;
	padding: 6px 8px;
	font-weight: 400;
	margin-top: 3px;
	margin-bottom: 24px;
}
.contact_form input::placeholder, .contact_form textarea::placeholder {
	color: #B5B5B5;
}
.contact_form span.hissu {
	background-color: #D46A6A;
	color: #fff;
	font-size: 1.0rem;
	line-height: 1;
	padding: 1px 4px 2px;
	margin-left: 10px;
}
.contact_form .submit {
	text-align: center;
}
.contact_form .wpcf7-submit {
	background-color: #502200;
	color: #fff;
	font-size: 1.8rem;
	font-weight: bold;
	border-radius: 100px;
	padding: 12px 30px;
	width: 200px;
	border: none;
	cursor: pointer;
}
.contact_form .wpcf7-submit:hover {
	opacity: 0.7;
}
.contact_form .submit .wpcf7-spinner {
	display: block;
}
@media screen and (max-width: 780px) { /*-----------------SP----- */
	.contact_btn1 a, .contact_btn2 a {
		padding: 8px 14px;
        font-size: 1.1rem;
        width: 80%;
        min-width: 280px;
        letter-spacing: 0.01em;
        margin: 0 auto;	
	}
	.contact_btn1 a img, .contact_btn2 a img {
        height: 20px;
    }
	.contact_intro_txt {
		margin-bottom: 20px;
	}
	.contact_intro {
		margin-bottom: 40px;
	}
	.contact {
		padding: 0 6% 4em;
	}
}



/* question
--------------------------------------------------------*/
.question {
	padding: 20px 20px 150px;
}
.question_wrap {
	max-width: 1100px;
	margin: 0 auto; 
}
.question_cate {
	display: flex;
	justify-content: space-between;
	margin-bottom: 70px;
}
.question_cate li {
	border-left: 1px solid #EEB9B8;
	width: calc( 100% / 3 );
}
.question_cate li:last-child {
	border-right: 1px solid #EEB9B8;
}
.question_cate li a {
	display: block;
	text-align: center;
	padding: 6px 0;
	font-weight: bold;
	color: #502200;
}
.question_cate li a img  {
	display: block;
	margin: 12px auto 0;
	width: 14px;
}
.question_area h2 {
	background: url("image/logo_ttl_pink.png") top center no-repeat;
	background-size: auto 14px;
	font-size: 2.8rem;
	font-weight: bold;
	text-align: center;
	color: #EEB9B8;
	line-height: 1;
	letter-spacing: 0.1em;
	padding-top: 36px;
	margin-bottom: 50px;
}
.question_area .qa {
	background-color: #fff;
	padding: 40px 6%;
	margin-bottom: 20px;
}
.question_area .qa dt, .question_area .qa dd {
	font-weight: bold;
	display: flex;
	
}
.question_area .qa dt {
	font-size: 1.6rem;
	margin-bottom: 20px;
}
.question_area .qa dd {
	font-size: 1.5rem;
	color: #D46A6A;
}
.question_area .qa span {
	font-size: 2.4rem;
	margin-right: 30px;
}
.question_area .qa p {
	flex: 1;
}
#question01, #question02 {
	margin-bottom: 100px;
}
@media screen and (max-width: 780px) { /*-----------------SP----- */
	.question {
		padding: 0 6% 4em;
	}
	.question_cate {
		margin-bottom: 50px;
	}
	.question_cate li a {
		font-size: 1.0rem;
		letter-spacing: 0.01em;
	}
	.question_cate li a img  {
		margin: 8px auto 0;
	}
	.question_area h2 {
		background-size: auto 10px;
        font-size: 2.0rem;
        letter-spacing: 0.06em;
        padding-top: 26px;
		margin-bottom: 30px;
	}
	.question_area .qa {
		padding: 20px 6%;
	}
	.question_area .qa dt {
		font-size: 1.4rem;
		margin-bottom: 14px;
	}
	.question_area .qa dd {
		font-size: 1.3rem;
	}
	.question_area .qa span {
		font-size: 2.0rem;
		margin-right: 10px;
	}
	#question01, #question02 {
		margin-bottom: 60px;
	}
}




/* archive-case 症例一覧
--------------------------------------------------------*/
.case_archive {
	padding: 20px 20px 100px;
}
.case_archive_wrap {
	max-width: 1100px;
	margin: 0 auto;
}
.archive_list {
	flex-wrap: wrap;
}


.case_pagination { /* ページネーション全体 */
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	margin-top: 60px;
}
.case_pagination .page-numbers { /* 数字・ドット・矢印 共通 */
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 2px solid #502200;
	color: #502200;
	font-size: 1.8rem;
	font-weight: bold;
	font-family: "Roboto", sans-serif;
	text-decoration: none;
	transition: all 0.2s ease;
	box-sizing: border-box;
	background-color: #fff;
}
.case_pagination .page-numbers.current { /* 現在ページ */
	background-color: #502200;
	color: #fff;
	border-color: #502200;
	pointer-events: none;
}
.case_pagination .page-numbers.dots { /* ドット（…） */
	border: none;
	width: auto;
	height: auto;
	padding: 0 6px;
	color: #5a2d0c;
	font-size: 3.0rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	position: relative;
	top: -6px;
	background-color: transparent;
}
.case_pagination .page-numbers:not(.dots):not(.prev):not(.next) { /* 数字の縦位置を微調整（2px下げる） */
	line-height: 1;
	padding-top: 2px;
}
.case_pagination a.page-numbers:not(.prev):not(.next):hover {
	background-color: #5a2d0c;
	color: #fff;
}
.case_pagination .prev, .case_pagination .next { /* 矢印（画像） */
	border: none;
	width: auto;
	height: auto;
	padding: 0 10px;
	background: none;
}
.case_pagination .prev img, .case_pagination .next img { /* 矢印画像サイズ */
	width: 26px;
	height: auto;
}
.case_pagination .prev:hover img, .case_pagination .next:hover img {
	opacity: 0.7;
}

/* タブ切り替え */
.case_filter {
	margin-bottom: 40px;
}
.case_filter_tabs {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	width: 90%;
	margin: 0 auto;
}

.case_filter_tab {
	border: 0;
	padding: 16px 10px;
	font-weight: bold;
	cursor: pointer;
	border-radius: 6px 6px 0 0;
	background-color: #A2A2A2;
	color: #fff;
	font-size: 1.8rem;
	display: block;
}
.case_filter_tab {
  transition: transform .2s ease, background-color .2s ease;
}
/* 非アクティブ（少し下げる） */
.case_filter_tab:not(.is-active) {
  transform: translateY(6px);
}
/* アクティブ（上に出る） */
.case_filter_tab.is-active {
  transform: translateY(0);
}
.case_filter_tab.is-active {
	background-color: #D46A6A;
}
.case_filter_panel {
	background-color: #fff;
	border-radius: 6px;
	padding: 20px;
	position: relative;
	z-index: 100;
}
.case_filter_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* ★ 最終行を中央に */
  gap: 16px 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
/* 1行4つ固定 */
.case_filter_item {
  width: calc((100% - 80px) / 4); /* gap(20px×3)を引く */
}
/* ボタン */
.case_filter_btn {  
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 50px;
	background: #EEB9B8;
	color: #fff;
	font-size: 1.5rem;
	font-weight: bold;
	border-radius: 10px;
	letter-spacing: 0.01em;
	text-decoration: none;
	text-align: center;
	transition: opacity .2s ease;
}

.case_filter_btn:hover {
  opacity: .8;
}
/* パネル表示切替 */
.case_filter_panel { display: none; }
.case_filter_panel.is-active { display: block; }

/* タームのアクティブ（例：濃いピンク） */
.case_filter_term.is-active {
  background: #d86f6f;
  color: #fff;
}
.case_filter_btn.is-active {
	background: #D46A6A;
}




/* single-case 症例詳細
--------------------------------------------------------*/
.case_area {
	padding: 20px 20px 100px;
}
.case_wrap {
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}
.case_main {
	width: 66%;
	background-color: #fff;
	padding: 50px;
}
.case_title {
	color: #EEB9B8;
	font-size: 2.4rem;
	border-bottom: 2px solid #EEB9B8;
	padding: 0 0 8px;
	margin-bottom: 20px;
}
.case_head {
	display: flex;
	justify-content: space-between;
	font-size: 1.2rem;
	margin-bottom: 40px;
}
.case_treatment {
	background-color: #fff;
	border: 1px solid #502200;
	border-radius: 6px;
	padding: 6px 10px;
	line-height: 1;
	font-weight: bold;
	letter-spacing: 0.01em;
	margin: 0;
	display: inline-block;
}
.case_cate_under {
	display: flex;
	gap: 10px;
	margin-top: 10px;
}
.case_concern, .case_age {
	background-color: #502200;
	color: #fff;
	border-radius: 6px;
	padding: 6px 10px;
	line-height: 1;
	font-weight: bold;
	letter-spacing: 0.01em;
	margin: 0;
}
.case_doctor {
	display: flex;
	gap: 14px;
	align-items: center;
}
.doctor_photo {
	width: 60px;
	margin: 0;
}
.doctor_name {
	line-height: 1.5;
	font-weight: bold;
	letter-spacing: 0.01em;
	margin: 0;
}
.case_content .wp-block-image {
	margin-bottom: 1.6em;
}
.case_content p {
	font-weight: 500;
}

.case_sidebar {
	width: 28%;
}
.case_sidebox {
	margin-bottom: 60px;
}
.case_sidebox:last-child {
	margin-bottom: 0;
}
.case_sidebox_title {
	color: #EEB9B8;
	font-size: 1.8rem;
	font-weight: bold;
	border-bottom: 1px solid #EEB9B8;
	padding-bottom: 4px;
	margin-bottom: 14px;
}
.case_sidebox_item {
	font-weight: bold;
	margin-bottom: 14px;
}
.case_sidebox_item:last-child {
	margin-bottom: 0;
}
.case_sidebox_item a {
	color: #502200;
	background: url("image/case_arrow.png") left 4px center no-repeat;
	background-size: auto 10px;
	padding-left: 20px;
}


.case_foot {
	padding: 0 20px 150px;
	max-width: 1140px;
	margin: 0 auto;
}
.case_related {
	margin-bottom: 80px;
}
.case_related:last-child {
	margin-bottom: 0;
}
.case_related_title {
	font-size: 2.0rem;
	font-weight: bold;
	color: #D46A6A;
	border-bottom: 2px solid #D46A6A;
	padding-bottom: 6px;
	margin-bottom: 30px;
}

.case_related_list {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
}
.case_related_list li {
	width: calc( 100% / 3 - 20px );
}
@media screen and (max-width: 960px) { /*-----------------調整----- */
	.case_related_list li {
		width: calc( 100% / 2 - 20px );
	}
}
.case_related_list li a {
	display: block;
	border: 1px solid #EEB9B8;
	border-radius: 6px;
	padding: 20px;
	background-color: #fff;
	color: #502200;
	font-weight: bold;
}
.case_related_thumb {
	margin-bottom: 12px;
}
.case_related_list h3 {
	font-size: 1.5rem;
	margin-bottom: 14px;
}
.case_related_treatment {
	background-color: #fff;
	border: 1px solid #502200;
	border-radius: 6px;
	padding: 6px 10px;
	line-height: 1;
	font-weight: bold;
	letter-spacing: 0.01em;
	margin: 0 0 8px;
	display: block;
	width: fit-content;
	font-size: 1.2rem;
}
.case_related_concern {
	background-color: #502200;
	color: #fff;
	border-radius: 6px;
	padding: 6px 10px;
	line-height: 1;
	font-weight: bold;
	letter-spacing: 0.01em;
	margin: 0;
	display: block;
	width: fit-content;
	font-size: 1.2rem;
}

.breadcrumb {
	padding: 0 20px 20px;
	max-width: 1140px;
	margin: 0 auto;
	font-size: 1.2rem;
}
.breadcrumb a {
	color: #502200;
	text-decoration: underline;
}



/* column コラム一覧
--------------------------------------------------------*/
.column_area {
	padding: 20px 20px 100px;
}
.column_wrap {
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}
.column_main {
	width: 66%;
}
.column_recommended {
	background-color: #fff;
	padding: 30px;
	border-radius: 6px;
	margin-bottom: 50px;
}
.column_card_thumb {
	margin-bottom: 10px;
	aspect-ratio: 4 / 3;
	width: 100%;
	overflow: hidden;
	background: #FFF; /* 読み込み前のチラつき防止（任意） */
}
.column_card_thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}
.column_sec_title {
	font-size: 2.0rem;
	font-weight: bold;
	color: #fff;
	background-color: #D46A6A;
	padding: 4px 14px;
	display: inline-block;
	margin-bottom: 20px;
}
.column_cards {
	display: flex;
	flex-wrap: wrap;
	gap: 30px 20px;
}
.column_card {
	width: calc( 100% / 3 - 14px );
}
.column_card_title {
	color: #502200;
	font-size: 1.5rem;
	font-weight: bold;
	margin-bottom: 4px;
	text-align: justify;
}
.column_card_cat {
	color: #502200;
	font-size: 1.0rem;
	font-weight: bold;
	letter-spacing: 0.01em;
	line-height: 1;
	border: 1px solid #502200;
	padding: 4px 10px;
	display: inline-block;
}
/* 一覧タイトルの省略表示 */
.column_card_title,
.case_related_name {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3; /* 3行まで */
  overflow: hidden;
}



.column_news {
	background-color: #fff;
	padding: 30px;
	border-radius: 6px;
}
/* =========================
   Pagination wrapper
========================= */
.column_pagination{
  margin-top: 40px;
}

/* paginate_links(type=list) が出力する ul */
.column_pagination > ul.page-numbers{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;

  list-style: none;
  padding: 0;
  margin: 0;
}

/* li の余計なレイアウトを消す */
.column_pagination > ul.page-numbers > li{
  margin: 0;
  padding: 0;
  display: flex;
}

/* =========================
   Buttons: a / span のみに適用
========================= */
.column_pagination a.page-numbers,
.column_pagination span.page-numbers{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 38px;
  height: 38px;

  border-radius: 50%;
  border: 2px solid #502200;
  color: #502200;

  font-size: 1.5rem;
  font-weight: bold;
  font-family: "Roboto", sans-serif;

  text-decoration: none;
  transition: all 0.2s ease;
  box-sizing: border-box;
  background-color: #fff;
}

/* 現在ページ（span.current） */
.column_pagination span.page-numbers.current{
  background-color: #502200;
  color: #fff;
  border-color: #502200;
}

/* dots（span.dots） */
.column_pagination span.page-numbers.dots{
  border: none;
  width: auto;
  height: auto;
  padding: 0 6px;

  color: #5a2d0c;
  font-size: 3.0rem;
  line-height: 1;

  background-color: transparent;

  position: relative;
  top: -6px;
}

/* 数字の縦位置を微調整（2px下げ） */
.column_pagination a.page-numbers:not(.prev):not(.next),
.column_pagination span.page-numbers:not(.dots):not(.current){
  line-height: 1;
  padding-top: 2px;
}

/* hover（数字ボタンのみ） */
.column_pagination a.page-numbers:not(.prev):not(.next):hover{
  background-color: #5a2d0c;
  color: #fff;
}

/* =========================
   Prev / Next arrows
========================= */
.column_pagination a.page-numbers.prev,
.column_pagination a.page-numbers.next{
  border: none;
  width: auto;
  height: auto;
  border-radius: 0;
  padding: 0 10px;
  background: none;
}

.column_pagination a.page-numbers.prev img,
.column_pagination a.page-numbers.next img{
  width: 26px;
  height: auto;
  display: block;
}

.column_pagination a.page-numbers.prev:hover img,
.column_pagination a.page-numbers.next:hover img{
  opacity: 0.7;
}



.column_sidebar {
	width: 28%;
}
.column_sidebox {
	margin-bottom: 60px;
}
.column_sidebox:last-child {
	margin-bottom: 0;
}
.column_sidebox_popular {
	margin-bottom: 60px;
}
.column_sidebox_title {
	color: #EEB9B8;
	font-size: 1.8rem;
	font-weight: bold;
	border-bottom: 1px solid #EEB9B8;
	padding-bottom: 4px;
	margin-bottom: 16px;
}
.column_sidebox_item {
	font-weight: bold;
	margin-bottom: 14px;
}
.column_sidebox_item:last-child {
	margin-bottom: 0;
}
.column_sidebox_item a {
	color: #502200;
}
.column_sidebox_link {
	display: flex;
	gap: 14px;
}
.column_sidebox_thumb {
	aspect-ratio: 4 / 3;
	width: 40%;
	overflow: hidden;
	background: #FFF; /* 読み込み前のチラつき防止（任意） */
}
.column_sidebox_thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}
.column_sidebox_txt {
	width: 60%;
}
.column_sidebox_name {
	font-size: 1.3rem;
	font-weight: bold;
	line-height: 1.5;
	margin-bottom: 4px;
	display: -webkit-box;	
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3; /* 3行まで */
	overflow: hidden;
}
.column_sidebox_cat {
	color: #502200;
	font-size: 1.0rem;
	font-weight: bold;
	letter-spacing: 0.01em;
	line-height: 1;
	border: 1px solid #502200;
	padding: 4px 10px;
	display: inline-block;
	background-color: #fff;
	border-radius: 4px;
}


.column_cat_list li {
	margin-bottom: 14px;
}
.column_cat_list li:last-child {
	margin-bottom: 0;
}
.column_cat_list a {
	font-size: 1.5rem;
	font-weight: bold;
	color: #502200;
	background: url("image/case_arrow.png") left 4px center no-repeat;
	background-size: auto 10px;
	padding-left: 20px;
}

/* コラム記事 
--------------------------------------------------------*/
.single-post .column_main {
	background-color: #fff;
	padding: 50px;
}
.column_title {
	color: #EEB9B8;
	font-size: 2.4rem;
	border-bottom: 2px solid #EEB9B8;
	padding: 0 0 8px;
	margin-bottom: 20px;
}
.column_head {
	display: flex;
	justify-content: space-between;
	font-size: 1.2rem;
	margin-bottom: 40px;
}
.column_cat {
	background-color: #fff;
	border: 1px solid #502200;
	border-radius: 6px;
	padding: 6px 10px;
	line-height: 1;
	font-weight: bold;
	letter-spacing: 0.01em;
	margin: 0;
	display: inline-block;
}
.column_date {
	line-height: 1;
	font-weight: bold;
	letter-spacing: 0.01em;
	margin: 0;
}

.column_content .wp-block-image {
	margin-bottom: 1.6em;
}
.column_content p {
	font-weight: 500;
}

.column_related {
	padding: 0 20px 150px;
	max-width: 1140px;
	margin: 0 auto;
}
.column_related_title {
	font-size: 2.0rem;
	font-weight: bold;
	color: #D46A6A;
	border-bottom: 2px solid #D46A6A;
	padding-bottom: 6px;
	margin-bottom: 30px;
}

.column_related_list {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
}
.column_related_list li {
	width: calc( 100% / 3 - 20px );
}
@media screen and (max-width: 960px) { /*-----------------調整----- */
	.column_related_list li {
		width: calc( 100% / 2 - 20px );
	}
}
.column_related_list li a {
	display: block;
	border: 1px solid #EEB9B8;
	border-radius: 6px;
	padding: 20px;
	background-color: #fff;
	color: #502200;
	font-weight: bold;
}
.column_related_thumb {
	margin-bottom: 12px;
}
.column_related_list h3 {
	font-size: 1.5rem;
	margin-bottom: 14px;
}
.column_related_cat {
	background-color: #fff;
	border: 1px solid #502200;
	border-radius: 6px;
	padding: 6px 10px;
	line-height: 1;
	font-weight: bold;
	letter-spacing: 0.01em;
	margin: 0 0 8px;
	display: block;
	width: fit-content;
	font-size: 1.2rem;
}


/* recruit
--------------------------------------------------------*/
.recruit_area {
	padding: 0 20px 150px;
}
.recruit_wrap {
	max-width: 660px;
	margin: 0 auto;
}
.recruit_area h2 {
    background: url(image/logo_ttl_pink.png) top center no-repeat;
    background-size: auto 14px;
    font-size: 2.8rem;
    font-weight: bold;
    text-align: center;
    color: #EEB9B8;
    line-height: 1;
    letter-spacing: 0.1em;
    padding-top: 36px;
    margin-bottom: 50px;
}
/* =========================
  募集職種（全体）
========================= */
.recruit_jobs {
  margin: 0 auto 100px;
}

.recruit_title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 30px;
}

/* =========================
  アコーディオン1件
========================= */
.recruit_job {
  overflow: hidden;
  margin-bottom: 16px;
}

/* =========================
  トリガー（見出し）
========================= */
.recruit_job_trigger {
  width: 100%;
  background: #EEB9B8;
  border: none;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 2.0rem;
  font-weight: bold;
  color: #fff;
  text-align: left;
  border-radius: 6px;
}

/* 矢印 */
.recruit_job_icon {
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

/* 開いているとき */
.recruit_job.is-open .recruit_job_icon {
  transform: rotate(-135deg);
}

/* =========================
  パネル（中身）
  - max-height をJSで実測して入れる
  - opacity も同時にふわっと
========================= */
.recruit_job_panel {
  background: transparent;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.25s ease;
}

/* 開いた状態 */
.recruit_job.is-open .recruit_job_panel {
  opacity: 1;
}

/* =========================
  定義リスト
  ※padding は panel の中身として効くので dl に入れてOK
========================= */
.recruit_dl {
  padding: 10px 6px 0;
}

.recruit_item {
  display: grid;
  grid-template-columns: 160px 1fr;
  column-gap: 0;
}

.recruit_item:last-child {
  border-bottom: none;
}

.recruit_dt {
  font-weight: bold;
  color: #502200;
  padding: 20px 20px;
  border-bottom: 1px solid #502200;
	display: flex;
	align-items: center;
}

.recruit_dd {
	font-weight: 500;
  padding: 20px 20px;
  border-bottom: 1px solid #EEB9B8;
}

.recruit_dd small {
  display: block;
  font-size: 0.9em;
  margin-top: 4px;
}

/* =========================
  スマホ調整
========================= */
@media (max-width: 768px) {
  .recruit_item {
    grid-template-columns: 1fr;
    row-gap: 6px;
  }

  .recruit_dt {
    font-size: 0.95em;
  }
}


.recruit_apply p {
	color: #502200;
	font-weight: 500;
	text-align: center;
}
.recruit_apply p a {
	letter-spacing: 0.01em;
}





