@charset "UTF-8";
/*
	Filename: home
	Version: 1.0.1
*/
/*-----------------------------------------------------
	#mv
------------------------------------------------------*/
#mv {
  position: relative;
  height: 100vh;
  min-height: 850px;
  overflow: hidden;
}
.mv_bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.mv_bg_item {
  position: absolute;
  inset: 0;
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 2000ms ease;
  transform: scale(1.01);
}
.mv_bg_item.is_active {
  opacity: 1;
}
.mv_inner {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
  z-index: 1;
  width: 100%;
  padding-right: 40px;
	padding-left: 40px;
	text-align: center;
}
.mv_title {
	margin-bottom: 62px;
}
.mv_title img {
	width: 530px;
	max-width: 100%;
	filter:
		drop-shadow(0 0 4px rgba(255, 255, 255, 0.9))
		drop-shadow(0 0 10px rgba(255, 255, 255, 0.7));
}
.mv_lead {
	margin-bottom: 62px;
	font-family: var(--font-ttl);
	font-size: 100px;
	font-weight: 700;
	line-height: 1.1;
	color: #000;
	text-shadow:
	0 1px 3px rgba(255, 255, 255, 1),
	0 0 8px rgba(255, 255, 255, 0.8);
}
.mv_link {
	justify-content: center;
	gap: 22px;
}
.mv_link a {
	display: block;
	width: 264px;
	padding: 10px;
	background: #fff;
	border-radius: 9999px;
	font-size: 17px;
	font-weight: 600;
	line-height: 1.6;
}
.mv_link a:first-of-type {
	background: var(--gold);
	color: #fff;
}
.mv_link a span {
	position: relative;
	padding-left: 18px;
}
.mv_link a span::before {
  content: "";
  display: block;
  position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: url("../img/common/link_arrow.svg") no-repeat center center;
  background-size: cover;
}
.mv_link a:first-of-type span::before {
  background: url("../img/common/w_link_arrow.svg") no-repeat center center;
  background-size: cover;
}
@media screen and (max-width: 750px) {
	#mv {
		height: 139.733vw;
		min-height: auto;
	}
	.mv_inner {
		top: 32vw;
		transform: none;
		width: 100%;
		padding-right: 20px;
		padding-left: 20px;
	}
	.mv_title {
		margin-bottom: 5.333vw;
		font-size: 5.333vw;
	}
	.mv_lead {
		margin-bottom: 5.333vw;
		font-size: 13.333vw;
	}
	.mv_link {
		flex-direction: column;
		justify-content: center;
		gap: 2.667vw;
	}
	.mv_link a {
		width: 70.4vw;
		margin-right: auto;
		margin-left: auto;
		font-size: 4.533vw;
	}
	.mv_link a span {
		padding-left: 4.8vw;
	}
	.mv_link a span::before {
		width: 3.2vw;
		height: 3.2vw;
	}
}
/*-----------------------------------------------------
	.mv_bottom
------------------------------------------------------*/
.mv_bottom {
	position: relative;
	z-index: 2;
	width: 75%;
	margin-top: -62.5px;
	margin-left: 25%;
	padding: 32px 40px;
	background: var(--usugold);
	border-radius: 30px 0 0 30px;
}
.mv_bottom ul{
	gap: 40px;
}
.mv_bottom ul li a {
	display: block;
	position: relative;
	padding-left: 70px;
	font-size: 15px;
  font-weight: 600;
	line-height: 1.4;
}
.mv_bottom ul li a span {
	display: block;
	font-size: 25px;
  font-weight: 600;
	line-height: 1.6;
}
.mv_bottom ul li a::before {
  content: "";
  display: block;
  position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
  width: 58px;
  height: 58px;
  background: url("../img/common/link_arrow.svg") no-repeat center center;
  background-size: cover;
}
@media screen and (max-width: 1300px) {
	.mv_bottom {
		width: calc(100% - 20px);
		margin-left: 20px;
	}
	.mv_bottom ul li a {
		padding-left: 55px;
	}
	.mv_bottom ul li a span {
		font-size: 20px;
	}
	.mv_bottom ul li a::before {
		width: 41px;
		height: 41px;
	}
}
@media screen and (max-width: 900px) {
	.mv_bottom {
		width: calc(100% - 40px);
		margin-top: -33px;
		margin-right: auto;
		margin-left: auto;
		padding: 10px 28px;
		background: var(--usugold);
		border-radius: 15px;
	}
	.mv_bottom ul {
		gap: 10px;
	}
	.mv_bottom ul li a {
		padding-left: 50px;
		font-size: 13px;
	}
	.mv_bottom ul li a span {
		font-size: 18px;
	}
}
@media screen and (max-width: 700px) {
	.mv_bottom ul {
		flex-direction: column;
	}
}
/*-----------------------------------------------------
	#campaign_banner
------------------------------------------------------*/
#campaign_banner {
	padding-top: 44px;
	padding-bottom: 70px;
}
#campaign_banner .wrap {
  background: var(--text-color);
  border-radius: 30px;
  color: #fff;
}
.campaign_banner_inner {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 280px;
  align-items: center;
  gap: 20px;
  min-height: 285px;
  padding: 30px 40px;
}
.campaign_banner_discount {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 218px;
  height: 218px;
  background: var(--gold);
  border-radius: 50%;
  color: #24232a;
  text-align: center;
  flex-shrink: 0;
}
.campaign_banner_discount_main {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  line-height: 0.8;
	color: var(--glay);
}
.campaign_banner_discount_main strong {
	font-family: var(--font-ttl);
  font-size: 86px;
  font-weight: 400;
	line-height: 0.8;
}
.campaign_banner_discount_main span {
  margin: 0 0 8px 5px;
	font-family: var(--font-en);
  font-size: 36px;
  font-weight: 600;
	line-height: 1.4;
}
.campaign_banner_off {
  margin-bottom: 5px;
  font-size: 36px;
  font-weight: 600;
	line-height: 1;
	color: var(--glay);
}
.campaign_banner_visit {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  color: #fff;
}
.campaign_banner_content {
  min-width: 0;
}
.campaign_banner_opening {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}
.campaign_banner_title {
  font-size: 25px;
  font-weight: 600;
  line-height: 1.4;
}
.campaign_banner_price {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 10px;
  line-height: 1;
}
.campaign_banner_regular {
  position: relative;
  margin-right: 6px;
  font-size: 18px;
  white-space: nowrap;
}
.campaign_banner_regular::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  transform: translateY(-50%);
}
.campaign_banner_arrow {
  margin-right: 8px;
}
.campaign_banner_price strong {
  font-size: clamp(31px, 3.7vw, 42px);
  font-weight: 400;
  letter-spacing: -0.03em;
  white-space: nowrap;
  color: var(--gold);
}
.campaign_banner_note {
  margin-bottom: 10px;
  font-size: 15px;
	font-weight: 400;
  line-height: 1.6;
  color: var(--gold);
}
.campaign_banner_details {
  width: 100%;
  max-width: 430px;
  padding: 5px 13px;
  background: var(--gold);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
	color: #fff;
  text-align: center;
}
.campaign_banner_action {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.campaign_banner_period {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
}
.campaign_banner_button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  width: 220px;
  min-height: 50px;
  padding: 10px 20px;
  background: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 999px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  box-sizing: border-box;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}
.campaign_banner_button span {
	position: relative;
	padding-left: 18px;
}
.campaign_banner_button span::before {
  content: "";
  display: block;
  position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: url("../img/common/w_link_arrow.svg") no-repeat center center;
  background-size: cover;
}
@media screen and (max-width: 1160px) {
	#campaign_banner .wrap {
		width: fit-content;
	}
  .campaign_banner_inner {
    grid-template-columns: 200px minmax(0, 1fr);
  }
  .campaign_banner_discount {
    width: 190px;
    height: 190px;
  }
  .campaign_banner_discount_main strong {
    font-size: 70px;
  }
  .campaign_banner_discount_main span {
    font-size: 29px;
  }
  .campaign_banner_off {
    font-size: 28px;
  }
  .campaign_banner_action {
    grid-column: 1 / -1;
    flex-direction: row;
    gap: 30px;
  }
  .campaign_banner_period {
    margin: 0;
  }
}
@media screen and (max-width: 750px) {
  #campaign_banner {
		padding-top: 30px;
		padding-bottom: 0;
	}
	#campaign_banner .wrap {
		max-width: calc(100% - 40px);
	}
  .campaign_banner_inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 50px 27px 30px;
  }
  .campaign_banner_discount {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    height: auto;
    margin: 0 auto;
    background: transparent;
    border-radius: 0;
    color: var(--gold);
    text-align: center;
  }
  .campaign_banner_discount_main {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
    width: auto;
    line-height: 1;
  }
  .campaign_banner_discount_main strong {
    font-size: 86px;
		line-height: 0.7;
		color: var(--gold);
  }
  .campaign_banner_discount_main span {
    margin: 0 0 3px 4px;
    font-size: 36px;
		color: var(--gold);
  }
  .campaign_banner_off {
    display: block;
    margin: 0 0 0 4px;
    font-size: 57px;
    color: var(--gold);
    vertical-align: bottom;
  }
  .campaign_banner_visit {
		width: 100%;
    margin: 10px 0 0;
    color: var(--gold);
    font-size: 14px;
  }
  .campaign_banner_content {
    width: 100%;
    text-align: center;
  }
  .campaign_banner_opening {
    font-size: 16px;
  }
  .campaign_banner_title {
    font-size: 18px;
  }
  .campaign_banner_price {
    justify-content: center;
  }
  .campaign_banner_regular {
    font-size: 16px;
  }
  .campaign_banner_price strong {
    width: 100%;
    margin-top: 10px;
    font-size: 26px;
  }
  .campaign_banner_note {
    margin-bottom: 14px;
  }
  .campaign_banner_details {
    max-width: none;
    font-size: 15px;
  }
  .campaign_banner_action {
    width: 100%;
    flex-direction: column;
    gap: 16px;
  }
  .campaign_banner_period {
    font-size: 17px;
  }
  .campaign_banner_button {
    width: 100%;
    max-width: 280px;
  }
}
/*-----------------------------------------------------
	#about
------------------------------------------------------*/
#about .flex {
	height: min(100vh, 800px);
  min-height: 650px;
}
.about_l {
	width: 50%;
	display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 92px;
  padding-right: clamp(40px, 7vw, 120px);
  padding-bottom: 92px;
  padding-left: clamp(60px, 12vw, 200px);
}
.about_text {
	width: 460px;
}
.about_text h2 {
	margin-bottom: 30px;
	font-size: 40px;
	font-weight: 500;
	line-height: 1.4;
}
.about_text p {
	margin-bottom: 30px;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.4;
}
.about_r {
	width: 50%;
	height: 100%;
}
.about_r img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media screen and (max-width: 1500px) {
	.about_l {
		padding-top: 92px;
		padding-right: 40px;
		padding-bottom: 92px;
		padding-left: 40px;
	}
}
@media screen and (max-width: 1300px) {
	#about .flex {
		height: min(100vh, 700px);
	}
	.about_l {
		width: 65%;
		padding-top: 40px;
		padding-bottom: 40px;
	}
	.about_r {
		width: 35%;
	}
}
@media screen and (max-width: 900px) {
	#about .flex {
		margin-top: -33px;
	}
}
@media screen and (max-width: 750px) {
	#about .flex {
		height: auto;
		min-height: auto;
		margin-top: 0;
	}
	.about_l {
		width: 100%;
		padding-top: 30px;
		padding-right: 20px;
		padding-bottom: 30px;
		padding-left: 20px;
	}
	.about_l .left {
		text-align: center !important;
	}
	.about_text {
		width: 100%;
	}
	.about_text h2 {
		margin-bottom: 10px;
		font-size: 26px;
	}
	.about_text p {

		margin-bottom: 10px;
		font-size: 16px;
	}
	.about_r {
		width: 100%;
		height: auto;
	}
	.about_r img {
		height: auto;
		object-fit: contain;
	}
}

/*-----------------------------------------------------
	#doctor
------------------------------------------------------*/
#doctor {
	padding: 100px 0;
	background: var(--text-color);
}
.doctor {
	justify-content: space-between;
}
.doctor_l {
	width: 36.6%;
}
.doctor_l img {
	width: 100%;
	height: auto;
}
.doctor_r {
	width: 57.7%;
}
.doctor_text {
	width: 652px;
	color: #fff;
}
.doctor_text h2 {
	margin-bottom: 30px;
}
.doctor_text h3 {
	margin-bottom: 30px;
	font-size: 25px;
	font-weight: 600;
	line-height: 1.4;
}
.doctor_text h4 {
	margin-bottom: 30px;
	padding: 10px 0;
	border-bottom: 1px solid var(--gold);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.6;
	color: var(--gold);
}
.doctor_text p {
	margin-bottom: 30px;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.4;
}
.doctor_text ul {
	margin-bottom: 30px;
	margin-left: 20px;
}
.doctor_text ul li {
	list-style-type: disc;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.6;
}
@media screen and (max-width: 1300px) {
	.doctor_r {
		padding-right: 40px;
	}
	.doctor_text {
		width: 100%;
	}
}
@media screen and (max-width: 900px) {
	.doctor {
		padding: 0 40px;
	}
	.doctor_l {
		width: 100%;
		margin-bottom: 20px;
		text-align: center;
	}
	.doctor_l img {
		width: 456px;
		height: auto;
	}
	.doctor_r {
		width: 100%;
		padding-right: 0;
	}
	.doctor_r .left {
		text-align: center !important;
	}
}
@media screen and (max-width: 750px) {
	#doctor {
		padding: 30px 0;
	}
	.doctor {
		padding: 0 20px;
	}
	.doctor_l img {
		width: 60.8vw;
	}
	.doctor_text h2 {
		margin-bottom: 10px;
	}
	.doctor_text h3 {
		margin-bottom: 10px;
		font-size: 18px;
	}
	.doctor_text h4 {
		margin-bottom: 10px;
	}
	.doctor_text p {
		margin-bottom: 10px;
		font-size: 16px;
	}
	.doctor_text ul {
		margin-bottom: 10px;
	}
}
/*-----------------------------------------------------
	#why
------------------------------------------------------*/
#why {
	padding: 100px 0;
	background: var(--glay);
}
#why h2 {
	margin-bottom: 40px;
	text-align: center;
}
.why {
	gap: 13px;
}
.why_child {
	width: calc((100% - 39px) / 4);
	padding: 20px;
	background: var(--gold);
	border-radius: 15px;
	text-align: center;
	color: #fff;
}
.why_child h3 {
	margin-bottom: 10px;
	font-size: 25px;
	font-weight: 600;
	line-height: 1.4;
}
.why_child p {
	font-size: 18px;
	font-weight: 400;
	line-height: 1.4;
}
@media screen and (max-width: 1160px) {
	.why_child {
		width: calc((100% - 13px) / 2);
	}
}
@media screen and (max-width: 750px) {
	#why {
		padding: 30px 0;
	}
	#why h2 {
		margin-bottom: 20px;
	}
	.why {
		gap: 20px;
	}
	.why_child {
		width: 100%;
		padding: 10px;
	}
	.why_child h3 {
		font-size: 18px;
	}
	.why_child p {
		font-size: 16px;
		line-height: 1.8;
	}
}
/*-----------------------------------------------------
	#services
------------------------------------------------------*/
#services {
	padding-top: 100px;
}
#services h2 {
	margin-bottom: 40px;
	text-align: center;
}
#services p {
	margin-bottom: 40px;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.4;
	text-align: center;
}
.treatment_slider_area {
  padding: 40px 0 100px;
  overflow: hidden;
}
.treatment_slider_wrap {
  position: relative;
  width: 1080px;
  max-width: 100%;
  margin: 0 auto;
  padding-bottom: 66px;
}
.treatment_swiper {
  width: 1080px;
  max-width: 100%;
  overflow: hidden;
}
.treatment_card {
  display: block;
  overflow: hidden;
  border-radius: 15px;
}
.treatment_card figure {
  margin: 0;
  aspect-ratio: 348 / 216;
  overflow: hidden;
}
.treatment_card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.treatment_card p {
	margin-bottom: 0 !important;
  padding: 20px 10px;
  background: var(--text-color);
	border-radius: 0 0 15px 15px;
  color: #fff;
}
.treatment_prev_pc,
.treatment_next_pc {
  top: calc((100% - 25px) / 2);
  transform: translateY(-50%);
  z-index: 5;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(212, 168, 91, 0.6);
  color: #fff;
}
.treatment_prev_pc {
  left: -30px;
}
.treatment_next_pc {
  right: -30px;
}
.treatment_prev_pc::after,
.treatment_next_pc::after {
  font-size: 24px;
  font-weight: bold;
}
.treatment_prev_sp,
.treatment_next_sp {
  display: none;
}
.treatment_pagination {
  bottom: 0 !important;
}
.treatment_pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  margin: 0 9px !important;
  background: rgba(194,177,144,1);
  opacity: .3;
}
.treatment_pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--gold);
}
@media screen and (max-width: 1260px) {
	.treatment_slider_area {
		padding: 40px 40px 100px;
	}
}
@media screen and (max-width: 750px) {
	#services {
		position: relative;
		padding-top: 30px;
	}
	#services h2 {
		margin-bottom: 20px;
	}
	#services p {
		margin-bottom: 20px;
		font-size: 16px;
		line-height: 1.8;
	}
	.treatment_prev_pc,
  .treatment_next_pc {
    display: none;
  }
	.treatment_prev_sp,
  .treatment_next_sp {
    position: absolute;
		top: 31px;
    display: flex;
    flex-shrink: 0;
    width: 29px;
    height: 29px;
    margin: 0;
    border-radius: 50%;
    background: rgba(212, 168, 91, 0.6);
    color: #fff;
    transform: none;
  }
  .treatment_prev_sp::after,
  .treatment_next_sp::after {
    font-size: 14px;
    font-weight: bold;
  }
	.treatment_prev_sp {
    left: 20px;
  }
  .treatment_next_sp {
    right: 20px;
  }
	.treatment_slider_area {
		padding: 30px 0 30px;
	}
	.treatment_slider_wrap {
		padding-bottom: 47px;
	}
	.treatment_card {
		border-radius: 12px;
	}
	.treatment_card p {
		margin-bottom: 0 !important;
		padding: 14px 10px;
		border-radius: 0 0 12px 12px;
		font-size: 14px;
		line-height: 1.4;
	}
	.treatment_pagination .swiper-pagination-bullet {
		width: 4.8px;
		height: 4.8px;
		margin: 0 7.2px !important;
	}
}

.book_link {
	align-items: center;
	gap: 20px;
	width: 65%;
	margin-left: 35%;
	padding: 42px 40px;
	background: var(--usugold);
	border-radius: 30px 0 0 30px;
}
.book_link span {
	display: inline-block;
	font-size: 25px;
	font-weight: 600;
	line-height: 1.4;
	color: #27272F;
}
.book_link span a {
	display: block;
	padding: 9px 20px;
	background: var(--text-color);
	border-radius: 9999px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.6;
	color: #fff;
}
@media screen and (max-width: 1300px) {
	.book_link {
		width: calc(100% - 20px);
		margin-left: 20px;
	}
}
@media screen and (max-width: 900px) {
	.book_link {
		flex-direction: column;
		justify-content: center;
		gap: 10px;
		width: calc(100% - 40px);
		margin-right: auto;
		margin-left: auto;
		border-radius: 15px;
		text-align: center;
	}
}
@media screen and (max-width: 750px) {
	.book_link {
		padding: 10px;
	}
	.book_link span {
		font-size: 18px;
	}
}
/*-----------------------------------------------------
  #flow
------------------------------------------------------*/
#flow {
  padding-top: 100px;
	padding-bottom: 100px;
	background: #F5F5F5;
}
.flow {
	justify-content: space-between;
}
.flow_l {
	width: 36.6%;
}
.flow_l img {
	width: 100%;
	height: auto;
}
.flow_r {
	width: 57.7%;
}
.flow_text {
	counter-reset: flow-num;
	width: 652px;
}
.flow_text h2 {
	margin-bottom: 30px;
	font-size: 40px;
	font-weight: 500;
	line-height: 1.4;
}
.flow_text p {
	margin-bottom: 30px;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.4;
}
.flow_child {
	counter-increment: flow-num;
	position: relative;
	padding-left: 62px;
}
.flow_child::before {
  content: counter(flow-num);
  display: block;
  position: absolute;
	top: 5px;
	left: 0;
  width: 50px;
  height: 50px;
	padding: 9px 0;
	border-radius: 50%;
  background: var(--gold);
	font-family: var(--font-ttl);
	font-size: 40px;
	font-weight: 700;
	line-height: 1;
	color: #fff;
	text-align: center;
}
.flow_child h3 {
	margin-bottom: 10px;
	font-size: 25px;
	font-weight: 600;
	line-height: 1.4;
}
@media screen and (max-width: 1300px) {
	.flow_r {
		padding-right: 40px;
	}
	.flow_text {
		width: 100%;
	}
}
@media screen and (max-width: 900px) {
	.flow_l {
		width: 100%;
		text-align: center;
	}
	.flow_l img {
		width: 100%;
		height: auto;
	}
	.flow_r {
		width: 100%;
		padding-right: 0;
	}
	.flow_text {
		padding: 30px 20px;
	}
	.flow_r .left {
		text-align: center !important;
	}
}
@media screen and (max-width: 750px) {
	#flow {
		padding: 0;
	}
	.flow_text h2 {
		margin-bottom: 10px;
		font-size: 26px;
	}
	.flow_text p {
		margin-bottom: 10px;
		font-size: 16px;
	}
	.flow_child {
		padding-left: 62px;
	}
	.flow_child::before {
		top: 2px;
		width: 40px;
		height: 40px;
		padding: 7px 0;
		font-size: 32px;
	}
	.flow_child h3 {
		margin-bottom: 10px;
		font-size: 18px;
	}
}
/*-----------------------------------------------------
  #technology
------------------------------------------------------*/
#technology {
	padding-top: 100px;
	padding-bottom: 100px;
	background: #27272F;
}
#technology h2 {
	margin-bottom: 40px;
	text-align: center;
}
.technology {
	gap: 13px;
}
.technology_child {
	width: calc((100% - 39px) / 4);
}
.technology_child a {
	flex-direction: column;
}
.technology_child_img {
	position: relative;
	z-index: 0;
	width: 100%;
	height: 216px;
	background: url("../img/home/technology_bg_01.webp") no-repeat center center;
	background-size: cover;
	border-radius: 15px;
	text-align: center;
}
.technology_child:nth-of-type(2) .technology_child_img {
	background: url("../img/home/technology_bg_02.webp") no-repeat center center;
	background-size: cover;
}
.technology_child:nth-of-type(3) .technology_child_img {
	background: url("../img/home/technology_bg_03.webp") no-repeat center center;
	background-size: cover;
}
.technology_child:nth-of-type(4) .technology_child_img {
	background: url("../img/home/technology_bg_04.webp") no-repeat center center;
	background-size: cover;
}
.technology_child_img::after {
  content: "";
  display: block;
  position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.4);
	border-radius: 15px;
}
.technology_child_img h3 {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	z-index: 3;
	width: 100%;
	font-size: 25px;
	font-weight: 600;
	line-height: 1.4;
	color: #fff;
	text-align: center;
}
.technology_child_text {
	padding: 20px 0;
	text-align: center;
}
.technology_child_text p {
	font-size: 18px;
	font-weight: 400;
	line-height: 1.4;
	color: #fff;
	text-align: center;
}
@media screen and (max-width: 1160px) {
	.technology_child {
		width: calc((100% - 13px) / 2);
	}
}
@media screen and (max-width: 750px) {
	#technology {
		padding-top: 30px;
		padding-bottom: 30px;
	}
	#technology h2 {
		margin-bottom: 20px;
	}
	.technology {
		gap: 29px;
	}
	.technology_child {
		width: 100%;
	}
	.technology_child a {
		flex-direction: row;
		gap: 10px;
	}
	.technology_child_img {
		width: 55.8%;
		height: 41.333vw;
		border-radius: 10px;
		text-align: center;
	}
	.technology_child_img::after {
		border-radius: 10px;
	}
	.technology_child_img h3 {
		font-size: 18px;
	}
	.technology_child_text {
		width: calc(44.2% - 10px);
		padding: 0;
		text-align: left;
	}
	.technology_child_text p {
		font-size: 16px;
		line-height: 1.8;
		text-align: left;
	}
}
/*-----------------------------------------------------
  #case
------------------------------------------------------*/
#case {
  padding-top: 100px;
	padding-bottom: 100px;
	background: var(--usugold);
}
#case h2 {
  text-align: center;
}
.case_slider_area {
  padding: 40px 0;
  overflow: hidden;
}
.case_slider_wrap {
  position: relative;
  width: 1080px;
  max-width: 100%;
  margin: 0 auto;
  padding-bottom: 66px;
}
.case_swiper {
  width: 1080px;
  max-width: 100%;
  overflow: hidden;
}
.case_card {
  display: block;
  overflow: hidden;
  border-radius: 15px;
  text-decoration: none;
}
.case_card figure {
  margin: 0;
  aspect-ratio: 348 / 216;
  overflow: hidden;
}
.case_card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.case_card p {
  margin-bottom: 0 !important;
  padding: 20px 10px;
  background: var(--text-color);
  border-radius: 0 0 15px 15px;
	text-align: center;
  color: #fff;
}
.case_prev_pc,
.case_next_pc {
  top: calc((100% - 25px) / 2);
  transform: translateY(-50%);
  z-index: 5;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(39, 39, 47, 0.6);
  color: #fff;
}
.case_prev_pc {
  left: -30px;
}
.case_next_pc {
  right: -30px;
}
.case_prev_pc::after,
.case_next_pc::after {
  font-size: 24px;
  font-weight: bold;
}
.case_prev_sp,
.case_next_sp {
  display: none;
}
.case_pagination {
  bottom: 0 !important;
}
.case_pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  margin: 0 9px !important;
  background: #fff;
  opacity: .8;
}
.case_pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: #27272F;
}
@media screen and (max-width: 1260px) {
  .case_slider_area {
    padding: 40px;
  }
}

@media screen and (max-width: 750px) {
  #case {
    position: relative;
    padding-top: 30px;
		padding-bottom: 30px;
  }
  .case_prev_pc,
  .case_next_pc {
    display: none;
  }
  .case_prev_sp,
  .case_next_sp {
    position: absolute;
    top: 31px;
    display: flex;
    flex-shrink: 0;
    width: 29px;
    height: 29px;
    margin: 0;
    border-radius: 50%;
    background: rgba(39, 39, 47, 0.6);
    color: #fff;
    transform: none;
  }
  .case_prev_sp {
    left: 20px;
  }
  .case_next_sp {
    right: 20px;
  }
  .case_prev_sp::after,
  .case_next_sp::after {
    font-size: 14px;
    font-weight: bold;
  }
  .case_slider_area {
    padding: 30px 0 30px;
  }
  .case_slider_wrap {
    padding-bottom: 47px;
  }
  .case_swiper {
    overflow: visible;
  }
  .case_card {
    border-radius: 12px;
  }
  .case_card p {
    margin-bottom: 0 !important;
    padding: 14px 10px;
    border-radius: 0 0 12px 12px;
    font-size: 14px;
    line-height: 1.4;
  }
  .case_pagination .swiper-pagination-bullet {
    width: 4.8px;
    height: 4.8px;
    margin: 0 7.2px !important;
  }
}
/*-----------------------------------------------------
  #post_section
------------------------------------------------------*/
#post_section {
  padding-top: 100px;
  padding-bottom: 100px;
  background: #27272F;
	border-top: 1px solid #C2B190;
  color: #fff;
}
#post_section h2 {
  margin-bottom: 50px;
  text-align: center;
}
.post_section_inner {
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(0, 520px);
  justify-content: space-between;
  gap: 40px;
}
.top_news,
.top_blog {
  min-width: 0;
}
.top_news h3,
.top_blog h3 {
  margin-bottom: 28px;
  color: var(--gold);
  font-size: 25px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
}

/* NEWS */
.top_news_list {
  border-top: 1px solid #C2B190;
}
.top_news_item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 85px;
  padding: 18px 0;
  border-bottom: 1px solid #C2B190;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s;
}
.top_news_item:hover {
  opacity: 0.65;
}
.top_news_meta {
  display: flex;
  align-items: center;
  gap: 13px;
}
.top_news_meta time {
  color: #cbb996;
  font-size: 17px;
  white-space: nowrap;
}
.top_news_category {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.top_news_category span,
.top_blog_category span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 69px;
  padding: 3px 10px;
  border: 1px solid var(--gold);
  border-radius: 100px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}
.top_news_title {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* BLOG */
.top_blog_list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.top_blog_item {
  min-width: 0;
}
.top_blog_item a {
  display: block;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s;
}
.top_blog_item a:hover {
  opacity: 0.7;
}
.top_blog_thumbnail {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 160 / 118;
  margin-bottom: 8px;
  border-radius: 10px;
  background: #b4dfe3;
}
.top_blog_thumbnail_img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.top_blog_item a:hover .top_blog_thumbnail_img {
  transform: scale(1.04);
}
.top_blog_meta {
  margin-bottom: 5px;
}
.top_blog_meta time {
  display: block;
  margin-bottom: 5px;
  color: #cbb996;
  font-size: 16px;
  line-height: 1.3;
}
.top_blog_category {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.top_blog_title {
  margin: 0;
  display: -webkit-box;
  overflow: hidden;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.01em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
/* ボタン */
.top_post_button {
  margin-top: 45px;
  text-align: center;
}

.top_post_button a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  min-height: 40px;
  padding: 10px 20px;
  border-radius: 100px;
  background: var(--gold);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
}
.top_post_empty {
  text-align: center;
}

@media screen and (max-width: 750px) {
  #post_section {
    padding-top: 30px;
    padding-bottom: 35px;
  }
  #post_section .wrap {
    width: calc(100% - 38px);
  }
  #post_section h2 {
    margin-bottom: 25px;
    font-size: 31px;
  }
  .post_section_inner {
    display: block;
  }
  .top_news h3,
  .top_blog h3 {
    margin-bottom: 15px;
    font-size: 20px;
  }
  /* NEWS */
  .top_news_item {
    display: block;
    min-height: 0;
    padding: 14px 0;
  }
  .top_news_meta {
    gap: 12px;
    margin-bottom: 8px;
  }
  .top_news_meta time {
    font-size: 17px;
  }
  .top_news_title {
    font-size: 17px;
    line-height: 1.5;
    white-space: normal;
  }
  .top_news .top_post_button {
    margin-top: 24px;
  }
  /* BLOG */
  .top_blog {
    margin-top: 31px;
  }
  .top_blog_list {
    display: block;
  }
  .top_blog_item + .top_blog_item {
    margin-top: 20px;
  }
  .top_blog_item a {
    display: grid;
    grid-template-columns: 140px minmax(0, 1fr);
    align-items: start;
    gap: 10px;
  }
  .top_blog_thumbnail {
    aspect-ratio: 140 / 102;
    margin-bottom: 0;
    border-radius: 9px;
  }
  .top_blog_content {
    min-width: 0;
  }
  .top_blog_meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px 10px;
    margin-bottom: 4px;
  }
  .top_blog_meta time {
    margin-bottom: 0;
    font-size: 16px;
  }
  .top_blog_category span {
    min-width: 76px;
    font-size: 10px;
  }
  .top_blog_title {
    font-size: 17px;
    line-height: 1.42;
    -webkit-line-clamp: 3;
  }
  .top_blog .top_post_button {
    margin-top: 24px;
  }
  .top_post_button a {
    min-width: 160px;
    min-height: 40px;
    font-size: 13px;
  }
}

.post_link {
	display: flex;
}
.post_link .top_post_button {
	width: 50%;
	text-align: center;
}
@media screen and (max-width: 750px) {
	.post_link {
		display: none;
	}
}
/*-----------------------------------------------------
  #faq
------------------------------------------------------*/
#faq {
	padding-top: 100px;
	padding-bottom: 100px;
	background: #F5F5F5;
}
#faq h2 {
	margin-bottom: 40px;
	text-align: center;
}
.faq_item {
  border-bottom: 5px solid #fff;
}
.faq_question {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 30px 20px;
  border: none;
  background: #27272F;
  color: #fff;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.4;
  text-align: left;
  cursor: pointer;
}
.faq_icon {
  position: relative;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
}
.faq_icon::before,
.faq_icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  height: 2px;
  background: var(--gold);
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.faq_icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq_item.is-open .faq_icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}
.faq_answer {
  display: none;
  background: #fff;
}
.faq_item.is-open .faq_answer {
  display: block;
}
.faq_answer_inner {
  padding: 25px 20px 30px;
}
.faq_answer_inner p {
  font-size: 18px;
  line-height: 1.4;
}

@media screen and (max-width: 750px) {
	#faq {
		padding-top: 30px;
		padding-bottom: 30px;
	}
	#faq h2 {
		margin-bottom: 20px;
	}
  .faq_question {
    padding: 22px 15px;
    font-size: 18px;
  }
  .faq_icon {
    width: 20px;
    height: 20px;
  }
  .faq_icon::before,
  .faq_icon::after {
    width: 20px;
  }
  .faq_answer_inner {
    padding: 22px 16px 28px;
  }
  .faq_answer_inner p {
    font-size: 16px;
		line-height: 1.6;
  }
}

.book_link_02 {
	align-items: flex-end;
	gap: 20px;
	width: 62%;
	margin-left: 38%;
	padding: 40px;
	background: var(--usugold);
	border-radius: 30px 0 0 30px;
}
.book_link_02 span {
	display: inline-block;
}
.book_link_02 span h2 {
	font-size: 25px;
	font-weight: 600;
	line-height: 1.4;
	color: #27272F;
}
.book_link_02 span p {
	font-size: 18px;
	font-weight: 600;
	line-height: 1.4;
	color: #27272F;
}
.book_link_02 span a {
	display: block;
	padding: 9px 20px;
	background: var(--text-color);
	border-radius: 9999px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.6;
	color: #fff;
}
@media screen and (max-width: 1300px) {
	.book_link_02 {
		width: calc(100% - 20px);
		margin-left: 20px;
	}
}
@media screen and (max-width: 900px) {
	.book_link_02 {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 10px;
		width: calc(100% - 40px);
		margin-right: auto;
		margin-left: auto;
		border-radius: 15px;
		text-align: center;
	}
}
@media screen and (max-width: 750px) {
	.book_link_02 {
		padding: 10px;
	}
	.book_link_02 span h2 {
		margin-bottom: 10px;
		font-size: 18px;
		text-align: center;
	}
	.book_link_02 span p {
		font-size: 16px;
		line-height: 1.8;
		text-align: left;
	}
}
/*-----------------------------------------------------
	#contact
------------------------------------------------------*/
#contact {
	padding: 100px 0;
	background: var(--text-color);
}
#contact .flex {
	justify-content: space-between;
}
.contact_l {
	width: 48%;
}
.contact_l h2 {
	margin-bottom: 30px;
}
.contact_l p {
	margin-bottom: 30px;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.4;
	color: #fff;
}
.contact_l h3 {
	margin-bottom: 10px;
	padding: 10px 0;
	border-bottom: 1px solid var(--gold);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.6;
	color: var(--gold);
}
.contact_l dl dt {
	width: 117px;
	padding-bottom: 15px;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.6;
	color: var(--gold);
}
.contact_l dl dd {
	width: calc(100% - 117px);
	padding-bottom: 15px;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.4;
	color: #fff;
}
.contact_l dl dd a {
	color: #fff;
}
.contact_r {
	width: 48%;
	padding: 30px;
	background: var(--glay);
	border-radius: 15px;
}
/* Contact Form 7 */
.form_area_dark {
  font-family: var(--font-en);
}
.form_area_dark .form_row {
  margin-bottom: 15px;
}
.form_area_dark .form_label {
  display: block;
  margin-bottom: 5px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
	color: var(--gold);
}
.form_area_dark .req {
  color: #B60000;
}
.form_area_dark input[type="text"],
.form_area_dark input[type="email"],
.form_area_dark input[type="tel"],
.form_area_dark select,
.form_area_dark textarea {
  width: 100%;
  height: 44px;
  padding: 10px;
  background: var(--text-color);
  border: none;
  border-radius: 5px;
	font-family: var(--font-en);
  font-size: 15px;
  font-weight: 600;
  color: var(--usugold);
  outline: none;
}
.form_area_dark textarea {
  height: 148px;
  padding: 12px 10px;
  resize: vertical;
}
.form_area_dark input::placeholder,
.form_area_dark textarea::placeholder {
  color: var(--usugold);
  opacity: .4;
}
/* Name 2カラム */
.form_name_2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
/* ラジオ */
.form_row_contact {
  display: grid;
  grid-template-columns: 161px 1fr;
  align-items: center;
  gap: 5px;
}
.form_row_contact .form_label {
  margin-bottom: 0;
}
.form_radio_box {
  min-height: 44px;
  padding: 0;
  background: var(--text-color);
  border-radius: 5px;
  display: flex;
	justify-content: center;
  align-items: center;
}
.form_radio_box .wpcf7-form-control {
  display: flex;
  align-items: center;
  gap: 18px;
}
.form_radio_box .wpcf7-list-item {
  margin: 0;
}
.form_radio_box label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--usugold);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}
.form_area_dark .form_radio_box input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  margin: 0;
  border: 1px solid var(--usugold);
  border-radius: 50%;
  background: transparent;
  position: relative;
  vertical-align: middle;
}
.form_area_dark .form_radio_box input[type="radio"]:checked::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--usugold);
}
.form_radio_box input[type="radio"] {
	margin: 0;
  accent-color: var(--usugold);
}
.date_candidate {
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: center;
  gap: 15px;
  margin-bottom: 5px;
}
.date_num {
  color: var(--gold);
  font-size: 15px;
  font-weight: 600;
}
.date_selects {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.form_area_dark select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 35px;
  background-color: var(--text-color);
  background-image:
    linear-gradient(45deg, transparent 50%, var(--usugold) 50%),
    linear-gradient(135deg, var(--usugold) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 18px,
    calc(100% - 10px) 18px;
  background-size:
    8px 8px,
    8px 8px;
  background-repeat: no-repeat;
}
.form_btn_area {
  margin-top: 45px;
  text-align: center;
}
.form_area_dark input[type="submit"] {
  min-width: 176px;
  height: 40px;
  padding: 0 40px;
  background: var(--gold);
  border: none;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.form_area_dark input[type="submit"]:hover {
  opacity: 0.6;
}

.form_area_dark input.js_datepicker {
  cursor: pointer;
}
/* CF7独自 */
.form_area_dark .wpcf7-form-control-wrap {
  display: block;
}
.form_area_dark p {
  margin: 0;
}
.form_area_dark .wpcf7-not-valid-tip {
  margin-top: 5px;
  font-size: 14px;
  color: #B60000;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
  color: #fff !important;
}
.wpcf7-spinner {
	display: none;
}
/* 縦並びラジオ */
.form_radio_box_block {
	display: block;
	min-height: 0;
	padding: 12px 15px;
}
.form_radio_box_block .wpcf7-form-control {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
}
.form_radio_box_block .wpcf7-list-item {
	display: block;
	width: 100%;
}
.form_radio_box_block label {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	line-height: 1.5;
}
/* Treatment 選択不可 */
.service_radio_box .wpcf7-list-item.is-disabled {
	opacity: .4;
}
.service_radio_box .wpcf7-list-item.is-disabled label {
	cursor: not-allowed;
}
.service_radio_box input[type="radio"]:disabled {
	cursor: not-allowed;
}
/* 生年月日 */
.form_area_dark input.js_birth_datepicker {
	cursor: pointer;
}
/* Datepicker 年月セレクト */
.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
	width: auto;
	height: 32px;
	padding: 2px 25px 2px 8px;
	font-size: 14px;
	color: #333;
	background-color: #fff;
}
/* =========================
  Datepicker - simple
========================= */
.ui-datepicker td span, .ui-datepicker td a {
	text-align: center !important;
}
.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
	font-size: 12px !important;
}
@media screen and (max-width: 1160px) {
	.contact_l {
		width: 47%;
	}
	.contact_l h2 {
		font-size: 54px;
	}
	.contact_r {
		width: 50%;
	}
}
@media screen and (max-width: 900px) {
	#contact .wrap.flex {
		gap: 20px;
	}
	.contact_l {
		width: 100%;
	}
	.contact_l h2 {
		font-size: 60px;
	}
	.contact_r {
		width: 100%;
	}
}
@media screen and (max-width: 750px) {
	#contact {
		padding: 30px 0;
	}
	#contact .wrap.flex {
		gap: 5px;
		width: 100%;
	}
	.contact_l {
		padding-right: 20px;
		padding-left: 20px;
	}
	.contact_l h2 {
		font-size: 32px;
		margin-bottom: 10px;
	}
	.contact_l p {
		margin-bottom: 10px;
		font-size: 16px;
	}
	.contact_l dl dt {
		width: 100%;
		padding-bottom: 0;
	}
	.contact_l dl dd {
		width: 100%;
		font-size: 16px;
	}
	.contact_r {
		padding: 30px 20px;
		border-radius: 0;
	}
	.form_area_dark textarea {
		height: 250px;
	}
	/* ラジオ */
	.form_row_contact {
    display: block;
  }
	.form_row_contact .form_label {
		margin-bottom: 15px;
	}
	.form_radio_box {
		width: 100%;
	}
	.form_btn_area {
		margin-top: 28px;
	}
	.form_radio_box_block {
		padding: 12px;
	}
	.form_radio_box_block .wpcf7-form-control {
		gap: 10px;
	}
	.form_radio_box_block label {
		font-size: 14px;
		line-height: 1.5;
	}
}


/* ========================================
   Booking Modal
======================================== */
.booking_modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  visibility: hidden;
  opacity: 0;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}
.booking_modal.is-open {
  visibility: visible;
  opacity: 1;
}
.booking_modal_bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  cursor: pointer;
}

.booking_modal_content {
  position: relative;
  z-index: 1;
  width: min(100%, 680px);
  max-height: calc(100vh - 60px);
  max-height: calc(100dvh - 60px);
  overflow: hidden;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.booking_modal.is-open .booking_modal_content {
  transform: translateY(0);
}
.booking_modal_inner {
  max-height: calc(100vh - 60px);
  max-height: calc(100dvh - 60px);
  padding: 48px 50px 50px;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.booking_modal h2 {
  margin: 0 50px 28px 0;
	font-family: var(--font-ttl);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-color);
}
.booking_modal_text {
  margin-bottom: 35px;
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-color);
}
.booking_modal_text p {
  margin: 0 0 18px;
}
.booking_modal_text p:last-child {
  margin-bottom: 0;
}
/* 閉じるボタン */
.booking_modal_close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  width: 42px;
  height: 42px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.booking_modal_close:hover {
  background: #f2f2f2;
}
.booking_modal_close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 2px;
  background: var(--text-color);
}
.booking_modal_close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}
.booking_modal_close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.booking_modal_buttons {
  display: grid;
  gap: 14px;
}
.booking_modal_button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 15px 30px;
  border: 2px solid transparent;
  border-radius: 6px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease;
}

.booking_modal_button_primary {
  color: #fff;
  background: var(--gold);
  border-color: var(--gold);
}

.booking_modal_button_primary:hover {
	opacity: 1;
  color: var(--gold);
  background: #fff;
}

.booking_modal_button_secondary {
  color: var(--gold);
  background: #fff;
  border-color: var(--gold);
}

.booking_modal_button_secondary:hover {
	opacity: 1;
  color: #fff;
  background: var(--gold);
}
body.is-booking-modal-open {
  overflow: hidden;
}

/* スマートフォン */
@media screen and (max-width: 750px) {
  .booking_modal {
    align-items: center;
    padding: 20px;
  }
  .booking_modal_content {
    width: 100%;
    max-height: calc(100vh - 40px);
    max-height: calc(100dvh - 40px);
    border-radius: 10px;
  }
  .booking_modal_inner {
    max-height: calc(100vh - 40px);
    max-height: calc(100dvh - 40px);
    padding: 38px 24px 30px;
  }
  .booking_modal h2 {
    margin-right: 35px;
    margin-bottom: 22px;
    font-size: 23px;
  }
  .booking_modal_text {
    margin-bottom: 28px;
    font-size: 14px;
    line-height: 1.8;
  }
  .booking_modal_close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
  }
  .booking_modal_close span {
    width: 22px;
  }
  .booking_modal_button {
    min-height: 56px;
    padding: 13px 15px;
    font-size: 15px;
  }
}

