@charset "UTF-8";
/*
	Filename: common
	Version: 1.0.1
*/
/*-----------------------------------------------------
	Utility
------------------------------------------------------*/
:root {
	--font-sans: "Zen Kaku Gothic New", sans-serif;
	--font-serif: "Zen Old Mincho",serif;
  --text-color: #5C473A;
}
/* --------------------------------
   Base Typography
-------------------------------- */
html {
  font-family: var(--font-sans);
  font-size: 62.5%;
  font-weight: 400;
}
body {
	background: #FFF9EF;
  font-size: 1.6rem;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
	text-rendering: optimizeLegibility;
  color: var(--text-color);
	overflow-wrap: break-word;
  word-wrap: break-word;
}
.en {
  font-family: "Cardo", serif;
}

/*-----------------------------------------------------
	Elements
------------------------------------------------------*/
ul li {
	list-style-type: none;
}
ol li {
	list-style-type: decimal;
}
address {
	font-style: normal;
}
img {
	vertical-align: bottom;
}
iframe {
	width: 100%;
}
/*-----------------------------------------------------
	Link
------------------------------------------------------*/
a {
	text-decoration: none;
	color: var(--text-color);
  transition: all .25s;
}
a > img {
  transition: all .25s;
}
a:hover > img, a:hover{
	opacity: 0.65;
}
a[href^="tel:"] {
  pointer-events: none;
}
.no_link {
  pointer-events: none;
}
/*-----------------------------------------------------
	Layout
------------------------------------------------------*/
.flex {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}
.wrap {
  width: 1160px;
  margin: 0 auto;
}
@media screen and (max-width: 1240px) {
  .wrap {
    width: calc(100% - 80px);
  }
}
@media screen and (max-width: 750px) {
  .wrap {
    width: calc(100% - 40px);
  }
}
.left {
  text-align: left !important;
}
.center {
  text-align: center !important;
}
.right {
  text-align: right !important;
}
/*-----------------------------------------------------
	haeder
------------------------------------------------------*/
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 104px;
	background: #fff;
}
.header_inner {
  position: relative;
}
.header_logo a {
  position: absolute;
  top: 19px;
  left: 40px;
  z-index: 2;
  display: block;
  width: 237px;
  height: 66px;
  background-image: url("../img/common/logo.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  text-indent: -9999px;
  overflow: hidden;
  white-space: nowrap;
}
.header_nav {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 100%;
}
.header_nav ul.flex {
	justify-content: flex-end;
  align-items: center;
}
.header_nav ul.flex > li {
  position: relative;
}
.header_nav ul.flex > li > a {
  position: relative;
  display: block;
  padding: 44px 16px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
	letter-spacing: 0.1em;
}
.header_nav ul.flex > li.news a {
  padding-right: 24px;
}
.header_nav ul.flex > li.tel {
	text-align: center;
}
.header_nav ul.flex > li.tel::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 100%;
  background: repeating-linear-gradient(
    to bottom,
    var(--text-color) 0,
    var(--text-color) 2px,
    transparent 2px,
    transparent 6px
  );
}
.header_nav ul.flex > li.tel a {
	padding: 25px 24px;
	font-size: 16px;
	letter-spacing: 0.05em;
}
.header_nav ul.flex > li.tel a span {
  position: relative;
	display: inline-block;
	margin-top: 10px;
	padding-left: 39px;
	font-family: "Cardo", serif;
	font-size: 28px;
	font-weight: 700;
	color: #F0848C;
}
.header_nav ul.flex > li.tel a span::before {
  content: "";
  display: block;
  position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: url("../img/common/tel_icon.svg") no-repeat center center;
  background-size: cover;
}
.header_nav ul.flex > li.contact {
	text-align: center;
}
.header_nav ul.flex > li.contact a {
	padding: 17px 19px;
	background: #E5926E;
	line-height: 1.4;
	color: #fff;
}
.header_nav ul.flex > li.contact a img {
	display: block;
	margin: 0 auto 5px;
}
.header_nav ul.flex > li.has-child {
  position: relative;
}
.header_nav ul.flex > li.has-child > a::after {
  content: "";
	position: absolute;
	bottom: 32.5px;
	left: 50%;
	transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--text-color);
	border-radius: 50%;
  transition: transform .3s ease;
}
.header_nav ul.flex > li.has-child > ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
	transform: translate(-50%, 17px);
  z-index: 100;
  width: 370px;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  text-align: left;
}
.header_nav ul.flex > li.has-child > ul::before {
  content: "";
  position: absolute;
  left: 0;
  top: -17px;
  width: 100%;
  height: 17px;
  background: transparent;
}
.header_nav ul.flex > li.has-child.menu-right > ul {
  left: auto;
  right: 0;
}
.header_nav ul.flex > li.has-child:hover > ul {
  display: block;
  opacity: 1;
  visibility: visible;
	transform: translate(-50%, 17px);
}
.header_nav ul.flex > li.has-child > ul > li {
  padding: 0;
}
.header_nav ul.flex li.has-child ul li ul.mega {
  display: flex;
  flex-direction: column;
	padding-bottom: 12px;
	background: #fff;
  border-radius: 17px;
}
.header_nav ul.flex li.has-child ul li ul.mega li a {
  display: block;
	position: relative;
	padding: 12px 12px 12px 52px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
.header_nav ul.flex li.has-child ul li ul.mega li a::before {
  content: "";
  display: block;
  position: absolute;
	top: 50%;
	left: 32px;
	transform: translateY(-50%);
  width: 13px;
  height: 6px;
  background: url("../img/common/mega_arrow.svg") no-repeat center center;
  background-size: cover;
}
.mega_title {
	margin-bottom: 12px;
	padding: 30px 32px;
	border-radius: 17px 17px 0 0;
	font-size: 20px;
	font-weight: 500;
	letter-spacing: 0.1em;
	color: #fff;
}
.title_bg_01 {
	background: url("../img/common/mega_title_01.webp") no-repeat center center;
	background-size: cover;
}
.title_bg_02 {
	background: url("../img/common/mega_title_02.webp") no-repeat center center;
	background-size: cover;
}
#sp-fixed-menu {
  display: none;
}
@media screen and (max-width: 1240px) {
	.header_logo a {
		top: 28.5px;
		left: 20px;
		width: 200px;
		height: 47px;
	}
	.header_nav ul.flex > li > a {
		padding: 44px 10px;
		font-size: 15px;
	}
	.header_nav ul.flex > li.news a {
		padding-right: 15px;
	}
	.header_nav ul.flex > li.tel a {
		padding: 28px 15px;
		font-size: 14px;
	}
	.header_nav ul.flex > li.tel a span {
		margin-top: 10px;
		padding-left: 32px;
		font-size: 20px;
	}
	.header_nav ul.flex > li.tel a span::before {
		width: 25px;
		height: 25px;
	}
	.header_nav ul.flex > li.contact a {
		padding: 18.5px 15px;
	}
}
@media screen and (min-width: 1001px) {
	.hum-nav, .hum-nav ul, .hum-nav__wrapper .header_logo, .nav_cv {
		display: none;
	}
}
@media screen and (max-width: 1000px) {
  header {
    height: 64px;
  }
  .header_nav, .header_top {
    display: none;
  }
	.header_logo {
		height: 64px !important;
  }
  .header_logo a {
		top: 14px;
		left: 16px;
		width: 129px;
		height: 36px;
  }
	/* SPメニュー */
  .hamburger {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10002;
    width: 64px ;
    height: 64px;
    padding: 0;
		background: #F0848C;
    touch-action: manipulation;
  }
	.hamburger::after {
		content: "MENU";
		display: block;
		position: absolute;
		bottom: 12.5px;
		left: 50%;
		transform: translateX(-50%);
		font-family: "Cardo", serif;
		font-size: 11px;
		font-weight: 400;
		color: #fff;
	}
	.hamburger.active::after {
		content: "CLOSE";
	}
  .hamburger__icon {
    position: relative;
    margin-top: 9px;
  }
  .hamburger__icon, .hamburger__icon::before, .hamburger__icon::after {
    width: 20px;
    height: 1px;
		position: absolute;
    top: 14.5px;
		right: 22px;
    display: block;
    background-color: #fff;
    transition-property: background-color, transform;
    transition-duration: 0.4s;
  }
  .hamburger__icon::before, .hamburger__icon::after {
    content: "";
    right: 0;
  }
  .hamburger__icon::before {
		width: 20px;
    top: -5px;
  }
  .hamburger__icon::after {
		width: 20px;
    top: 5px;
  }
	.hamburger.active .hamburger__icon {
    background-color: transparent;
  }
  .hamburger.active .hamburger__icon:before, .hamburger.active .hamburger__icon:after {
		width: 20px;
    height: 1px;
  }
  .hamburger.active .hamburger__icon:before {
    transform: translateY(5px) rotate(30deg);
  }
  .hamburger.active .hamburger__icon:after {
    transform: translateY(-5px) rotate(-30deg);
  }
	.hum-nav {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 9999;
		width: 100%;
		height: 100%;
		overflow-y: auto;
		overflow-x: hidden;
	}
	.hum-nav__wrapper {
		position: absolute;
		top: 64px;
		left: 0;
		display: table;
		table-layout: fixed;
		width: 100%;
		height: calc(100% - 64px);
	}
	.hum-nav_inner {
		width: 100%;
		height: 100%;
		padding: 40px 40px;
		background: #FFF9EF;
	}
	.hum-nav .header_logo {
		position: fixed;
		top: 0;
		left: 0;
		z-index: 10;
		width: 100%;
		height: 64px;
		background: #fff;
	}
	.hum-nav .header_logo a {
		background-image: url("../img/common/logo.svg");
	}
	.hum-nav_inner ul li a {
		display: block;
		position: relative;
		padding: 16px 0;
		font-family: var(--font-serif);
		font-size: 20px;
		font-weight: 500;
		line-height: 1.5;
		letter-spacing: 0.1em;
	}
	.hum-nav_inner ul > li:not(.menu-item-has-children) > a::after {
		content: "";
		display: block;
		position: absolute;
		top: 50%;
		right: 0;
		transform: translateY(-50%);
		width: 9px;
		height: 13px;
		background: url("../img/common/hum-nav_arrow.svg") no-repeat center center;
		background-size: cover;
	}
	.hum-nav_parent {
		display: flex;
		align-items: stretch;
	}
	.hum-nav_parent_link {
		flex: 1;
		display: block;
		position: relative;
		padding: 16px 40px 16px 0 !important;
	}
	.hum-nav_parent_link::after {
		content: "";
		display: block;
		position: absolute;
		top: 50%;
		right: 19px;
		transform: translateY(-50%);
		width: 1px;
		height: 40px;
		background: var(--text-color);
	}
	.aco {
		flex-shrink: 0;
		width: 11px;
		border: none;
		background: transparent;
		cursor: pointer;
		position: relative;
		appearance: none;
		-webkit-appearance: none;
	}
	.aco::after {
		content: "";
		display: block;
		position: absolute;
		top: 50%;
		left: 50%;
		width: 11px;
		height: 11px;
		transform: translate(-50%, -50%) rotate(0deg);
		transform-origin: center;
		transition: transform 0.3s ease, opacity 0.3s ease;
		background: url("../img/common/plus.svg") no-repeat center center;
		background-size: cover;
	}
	.aco.is-active::after {
		transform: translate(-50%, -50%) rotate(180deg);
		width: 11px;
		height: 1px;
		background: url("../img/common/minus.svg") no-repeat center center;
		background-size: cover;
	}
	.hum-nav_menu_list {
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.35s ease;
	}
	.hum-nav_menu_list li a {
		position: relative;
		display: block;
		padding-left: 30px !important;
		font-size: 14px !important;
	}
	.hum-nav_menu_list li a::before {
		content: "";
		position: absolute;
		left: 16px;
		top: 50%;
		transform: translateY(-50%);
		width: 9px;
		height: 13px;
		background: url("../img/common/hum-nav_arrow.svg") no-repeat center center;
		background-size: cover;
	}
	.hum-nav_menu_list li a::after {
		display: none !important;
	}
	ul.nav_cv {
		display: flex;
		flex-direction: column;
		gap: 16px;
		width: 342px;
		max-width: 100%;
		margin: 24px auto 0;
	}
	ul.nav_cv li a {
		display: block;
		padding: 16.5px 10px;
		background: #fff;
		font-family: var(--font-sans);
		font-size: 14px;
		font-weight: 500;
		line-height: 1;
		letter-spacing: 0.05em;
		color: var(--text-color);
		text-align: center;
	}
	ul.nav_cv li a::after {
		display: none !important;
	}
	ul.nav_cv li a em {
		margin-left: 43px;
		font-style: normal;
	}
	ul.nav_cv li a span {
		display: inline-block;
		position: relative;
		margin-top: 5px;
		padding-left: 47px;
		font-family: var(--font-serif);
		font-size: 28px;
		font-weight: 700;
		color: #F0848C;
	}
	ul.nav_cv li a span::before {
		content: "";
		display: block;
		position: absolute;
		top: 50%;
		left: 0;
		transform: translateY(-50%);
		width: 40px;
		height: 40px;
		background: url("../img/common/tel_icon.svg") no-repeat center center;
		background-size: cover;
	}
	ul.nav_cv li:last-of-type a {
		padding: 29px 10px;
		background: #E5926E;
	}
	ul.nav_cv li:last-of-type a span {
		position: relative;
		margin-top: 0;
		padding-left: 55px;
		font-family: var(--font-sans);
		font-size: 22px;
		font-weight: 700;
		color: #fff;
	}
	ul.nav_cv li:last-of-type a span::before {
		width: 40px;
		height: 40px;
		background: url("../img/common/nav_cv_contact.svg") no-repeat center center;
		background-size: cover;
	}
}
@media screen and (max-width: 750px) {
	.hum-nav_inner {
		padding: 40px 24px;
	}
	#sp-fixed-menu {
		display: block;
		position: fixed;
		bottom: 0;
		left: 0;
		z-index: 10;
		width: 100%;
	}
	#sp-fixed-menu > ul.nav_cv {
		display: flex;
		flex-direction: row;
		gap: 0;
		width: 100%;
		max-width: 100%;
		margin: 0;
	}
	#sp-fixed-menu > ul.nav_cv > li {
		width: 50%;
	}
	#sp-fixed-menu > ul.nav_cv li a {
		display: block;
		width: 100%;
		padding: 11px 10px;
		font-size: 12px;
	}
	#sp-fixed-menu > ul.nav_cv li a em {
		margin-left: 36px;
	}
	#sp-fixed-menu > ul.nav_cv li a span {
		margin-top: 5px;
		padding-left: 34px;
		font-size: 17px;
	}
	#sp-fixed-menu > ul.nav_cv li a span::before {
		width: 24px;
		height: 24px;
	}
	#sp-fixed-menu > ul.nav_cv li:last-of-type a {
		padding: 19px 10px;
	}
	#sp-fixed-menu > ul.nav_cv li:last-of-type a span {
		font-size: 13px;
	}
}
/*-----------------------------------------------------
	midasi
------------------------------------------------------*/
.midasi_01 {
	margin-bottom: 48px;
	text-align: center;
}
.midasi_01 img {
	display: block;
	margin: 0 auto 4px;
}
.midasi_01 .en_title {
	font-family: "Cardo", serif;
	font-style: italic;
	font-size: 80px;
	font-weight: 300;
	line-height: 1.25;
	letter-spacing: 0.1em;
}
.midasi_01 h2 {
	position: relative;
	margin: 0 auto;
}
.midasi_01 h2::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	z-index: 0;
	width: 100%;
	height: 2px;
	background: #A69387;
	transform: translateY(-50%);
}
.midasi_01 h2 span {
	display: inline-block;
	position: relative;
	z-index: 1;
	padding-right: 15px;
	padding-left: 15px;
	background: #fff9ef;
	font-family: var(--font-serif);
	font-size: 40px;
	font-weight: 500;
	line-height: 1.5;
	color: var(--text-color);
}
.midasi_01 p {
	display: block;
	margin-top: 10px;
	font-size: 22px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--text-color);
}
@media screen and (max-width: 750px) {
	.midasi_01 img {
		width: 61px;
		height: auto;
	}
	.midasi_01 .en_title {
		margin-bottom: 10px;
		font-size: 48px;
	}
	.midasi_01 h2 span {
		font-size: 24px;
	}
	.midasi_01 p {
		font-size: 16px;
	}
}
/*-----------------------------------------------------
	#page_mv
------------------------------------------------------*/
#page_mv {
  position: relative;
	top: 0;
  z-index: 0;
  width: 100%;
  height: 640px;
	margin-top: 104px;
}
#page_mv::after {
  content: "";
  display: block;
  position: absolute;
	bottom: 0;
	right: 0;
  width: 788px;
  height: 560px;
  background: url("../img/common/page_title_after.webp") no-repeat center center;
  background-size: cover;
}
body.page-id-32 #page_mv::after {
  background: url("../img/common/attract.webp") no-repeat center center;
  background-size: cover;
}
body.page-id-74 #page_mv::after {
  background: url("../img/common/dr.webp") no-repeat center center;
  background-size: cover;
}
body.page-id-93 #page_mv::after {
  background: url("../img/common/dh.webp") no-repeat center center;
  background-size: cover;
}
body.page-id-95 #page_mv::after {
  background: url("../img/common/da.webp") no-repeat center center;
  background-size: cover;
}
body.page-id-99 #page_mv::after {
  background: url("../img/common/office.webp") no-repeat center center;
  background-size: cover;
}
body.page-id-105 #page_mv::after {
  background: url("../img/common/benefits.webp") no-repeat center center;
  background-size: cover;
}
body.page-id-107 #page_mv::after {
  background: url("../img/common/eduication.webp") no-repeat center center;
  background-size: cover;
}
body.page-id-109 #page_mv::after {
  background: url("../img/common/support.webp") no-repeat center center;
  background-size: cover;
}
body.page-id-103 #page_mv::after {
  background: url("../img/common/flow.webp") no-repeat center center;
  background-size: cover;
}
#page_mv img {
  width: calc(100% - 80px);
  height: calc(100% - 80px);
  object-fit: cover;
  object-position: top center;
}
#page_mv .page_title {
  position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
  z-index: 2;
  width: 100%;
	padding-left: 140px;
	text-align: left;
}
#page_mv .page_title::after {
  content: "";
  display: block;
  position: absolute;
	bottom: -220px;
	left: 80px;
	z-index: -1;
  width: 263px;
  height: 178px;
  background: url("../img/common/page_title_illust.svg") no-repeat center center;
  background-size: cover;
}
#page_mv .page_title h1 span, #page_mv .page_title div span {
	display: block;
	font-family: "Cardo", serif;
	font-style: italic;
	font-size: 80px;
	font-weight: 400;
	line-height: 1.25;
	letter-spacing: 0.1em;
}
#page_mv .page_title h1, #page_mv .page_title div {
	font-size: 22px;
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: 0.1em;
}
@media screen and (max-width: 1000px) {
	#page_mv {
		margin-top: 64px;
	}
	#page_mv::after {
		width: 500px;
		height: 355px;
	}
	#page_mv .page_title {
		top: 50px;
		transform: none;
		padding-left: 40px;
	}
	#page_mv .page_title::after {
		bottom: -350px;
		left: 40px;
	}
}
@media screen and (max-width: 750px) {
	#page_mv {
		height: 77.333vw;
		min-height: 352px;
	}
	#page_mv::after {
		width: 66.667vw;
		height: 47.333vw;
	}
	#page_mv img {
		width: calc(100% - 16px);
		height: auto;
		object-fit: contain;
	}
	#page_mv .page_title {
		padding-left: 16px;
	}
	#page_mv .page_title::after {
		bottom: -44.333vw;
		left: 16px;
		width: 118px;
		height: 80px;
	}
	#page_mv .page_title h1 span, #page_mv .page_title div span {
		font-size: 48px;
	}
	#page_mv .page_title h1, #page_mv .page_title div {
		font-size: 16px;
	}
}
/*-----------------------------------------------------
	.main
------------------------------------------------------*/
h1.news_title {
  margin-bottom: 30px;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.1em;
}
.main {
	padding-top: 100px;
	padding-bottom: 100px;
}
.main .date {
	margin-bottom: 15px;
	font-size: 14px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.1em;
}
@media screen and (max-width: 750px) {
	h1.news_title {
		font-size: 22px;
	}
	.main {
		padding-top: 64px;
		padding-bottom: 64px;
	}
}
/*-----------------------------------------------------
	case single
------------------------------------------------------*/
.main .category {
	margin-bottom: 20px;
}
.main .category span {
	display: inline-block;
	margin-right: 10px;
	margin-bottom: 10px;
	padding: 5px 20px;
  background: #dadada;
  border-radius: 100px;
  font-size: 16px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.1em;
  color: var(--sub-color);
}
.main .case_img {
	width: 60%;
	margin: 0 auto 30px;
}
.main .before_after_img img {
  height: auto;
	object-fit: contain;
}
@media screen and (max-width: 750px) {
	.main .category span {
		font-size: 14px;
	}
	.main .case_img {
		width: 100%;
	}
}
/*-----------------------------------------------------
	リンク
------------------------------------------------------*/
.main a {
  color: var(--text-color);
  text-decoration: underline;
}
p.link a {
	display: block;
	position: relative;
	width: 350px;
	max-width: 100%;
	margin: 0 auto;
	padding: 19px 10px;
	background: #79D4E6;
	background: linear-gradient(90deg, rgba(121, 212, 230, 1) 0%, rgba(156, 180, 239, 1) 86%);
	border-radius: 9999px;
	font-size: 18px;
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 1;
	color: #fff;
	text-align: center;
	text-decoration: none;
}
p.link.green a {
	background: #77DAD7;
	background: linear-gradient(90deg, rgba(119, 218, 215, 1) 0%, rgba(127, 212, 137, 1) 86%);
}
p.link.yellow a {
	background: #EED46A;
	background: linear-gradient(90deg, rgba(238, 212, 106, 1) 0%, rgba(230, 188, 96, 1) 86%);
}
p.link.pink a {
	background: #F4AEB0;
	background: linear-gradient(90deg, rgba(244, 174, 176, 1) 0%, rgba(239, 138, 182, 1) 86%);
}
p.link a::after {
  content: "";
  display: block;
  position: absolute;
	top: 50%;
	right: 24px;
	transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: url("../img/home/btn_more_blue.svg") no-repeat center center;
  background-size: cover;
}
p.link.green a::after {
  background: url("../img/home/btn_more_green.svg") no-repeat center center;
  background-size: cover;
}
p.link.yellow a::after {
  background: url("../img/home/btn_more_yellow.svg") no-repeat center center;
  background-size: cover;
}
p.link.pink a::after {
  background: url("../img/home/btn_more_pink.svg") no-repeat center center;
  background-size: cover;
}
@media screen and (max-width: 750px) {
	p.link a {
		padding: 12px 10px;
		font-size: 16px;
	}
	p.link a::after {
		right: 10px;
		width: 24px;
		height: 24px;
	}
}
.main hr {
  display: block;
  height: 1px;
  border: 0;   
  border-top: 1px solid #d9d9d9;
  margin: 3em 0;
  padding: 0;
}
.main h2 {
	position: relative;
	margin-top: 80px;
	margin-bottom: 72px;
	font-family: var(--font-serif);
	font-size: 44px;
	font-weight: 700;
	line-height: 1.7;
	letter-spacing: 0.1em;
	text-align: center;
}
.main h2:first-of-type {
	margin-top: 0;
}
.main h2::after {
  content: "";
  display: block;
  position: absolute;
	bottom: -16px;
	left: 50%;
	transform: translateX(-50%);
  width: 64px;
  height: 8px;
  background: #F4AEB0;
	background: linear-gradient(90deg, rgba(244, 174, 176, 1) 0%, rgba(239, 138, 182, 1) 86%);
}
.main h2.blue::after {
	background: #79D4E6;
	background: linear-gradient(90deg, rgba(121, 212, 230, 1) 0%, rgba(156, 180, 239, 1) 86%);
}
.main h2.yellow::after {
	background: #EED46A;
	background: linear-gradient(90deg, rgba(238, 212, 106, 1) 0%, rgba(230, 188, 96, 1) 86%);
}
.main h2.green::after {
	background: #77DAD7;
	background: linear-gradient(90deg, rgba(119, 218, 215, 1) 0%, rgba(127, 212, 137, 1) 86%);
}
.main h2.murasaki::after {
	background: #CC91DA;
	background: linear-gradient(90deg, rgba(204, 145, 218, 1) 0%, rgba(121, 130, 226, 1) 100%);
}
.main h3 {
	margin-bottom: 30px;
	padding: 12px;
	background: #F0848C;
	font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.1em;
	color: #fff;
}
.main h4 {
  margin-bottom: 30px;
	font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.1em;
}
.main h5 {
  margin-bottom: 30px;
	font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.1em;
}
.main p {
  margin-bottom: 32px;
  font-size: 18px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.1em;
}
.main ul, .main ol {
  margin-bottom: 32px;
}
.main ul li {
  margin-bottom: 10px;
  margin-left: 20px;
  list-style-type: disc;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
.main ol li {
  margin-bottom: 10px;
  margin-left: 20px;
  list-style-type: decimal;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
.main figure {
  margin-bottom: 40px;
}
.main .wp-element-caption {
  font-size: 16px;
}
.main figure img {
  max-width: 100%;
  height: auto;
}
.main table {
	margin-bottom: 40px;
}
.main table tr th {
	padding: 20px 10px;
	background: #FEE9EB;
	border: 1px solid #AFAFAF;
	font-family: "Zen Old Mincho",serif;
	font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.1em;
	vertical-align: middle;
	text-align: center;
}
.main table tr td {
	padding: 20px 10px;
	border: 1px solid #AFAFAF;
	font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.1em;
	vertical-align: middle;
}
.main .summary table tr th:first-of-type {
	width: 20%;
}
.main .summary table tr th:last-of-type {
	width: 80%;
}
@media screen and (max-width: 1000px) {
	.wp-block-table.table-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
  }
  .wp-block-table.table-scroll table {
    min-width: 800px;
    width: 100%;
    table-layout: fixed;
  }
	.wp-block-table.table-scroll th,
  .wp-block-table.table-scroll td {
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
  }
  .wp-block-table.table-scroll::-webkit-scrollbar {
    height: 8px;
  }
  .wp-block-table.table-scroll::-webkit-scrollbar-track {
    background: #eee;
    border-radius: 999px;
  }
  .wp-block-table.table-scroll::-webkit-scrollbar-thumb {
    background: #999;
    border-radius: 999px;
  }
}
@media screen and (max-width: 781px) {
	.main h2 {
		margin-top: 60px;
		margin-bottom: 60px;
		font-size: 25px;
		line-height: 1.4;
	}
	.main h2:first-of-type {
		margin-top: 0;
	}
	.main h2::after {
		bottom: -25px;
	}
	.main h3 {
		margin-bottom: 16px;
		font-size: 22px;
	}
	.main h4 {
		margin-bottom: 16px;
		font-size: 22px;
	}
	.main h5 {
		margin-bottom: 16px;
		font-size: 18px;
	}
	.main p {
		margin-bottom: 16px;
		font-size: 16px;
		text-align: left;
	}
	.main ul, .main ol {
		margin-bottom: 16px;
	}
	.main .wp-block-column .wp-block-image .wp-element-caption {
		margin-bottom: 0;
	}
	.wp-block-table.pagehour table tr th {
		padding: 10px 5px;
		font-size: 14px;
	}
	.wp-block-table.pagehour table tr td {
		padding: 10px 5px;
		font-size: 14px;
	}
	:where(.wp-block-columns.is-layout-flex) {
		gap: 0 2em;
	}
}
/*-----------------------------------------------------
	form
------------------------------------------------------*/
table.cform tr th {
  display: block;
  width: 100%;
	padding: 0;
  padding-top: 30px;
	background: none;
	border: none;
  text-align: left;
}
table.cform tr th p, table.cform tr td p {
  margin-bottom: 0;
	font-family: var(--font-sans);
	font-size: 16px;
}
table.cform tr td {
  display: block;
  width: 100%;
	padding: 10px 0 30px;
	border: none;
  border-bottom: 1px solid #AFAFAF;
}
.form_area {
	width: 1000px;
	margin: 0 auto;
	padding: 80px;
	background: #fff;
	border-radius: 40px;
}
.form_area span.req {
  margin-right: 10px;
  padding: 3px 10px 5px;
  background: #E5926E;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}
/* Chrome */
::-webkit-input-placeholder {
  color: #d2d2d2;
}
/* Firefox */
::-moz-placeholder {
  color: #d2d2d2;
}
/* IE */
:-ms-input-placeholder {
  color: #d2d2d2;
}
.form_area input[type="text"], .form_area input[type="date"], .form_area input[type="email"] {
  width: 50%;
	margin-bottom: 10px;
  padding: 15px;
  background: #fff;
  border: 1px solid #AFAFAF;
  border-radius: 3px;
  transition: all .3s;
	font-family: var(--font-sans);
  font-size: 16px;
	line-height: 1.6;
  outline: none;
  appearance: none;
}
.form_area .wpcf7-list-item label {
  cursor: pointer;
}
.form_area textarea {
  width: 100%;
	max-width: 100%;
  padding: 15px;
  background: #fff;
  border: 1px solid #E1E3E5;
  border-radius: 3px;
  transition: all .3s;
  font-size: 16px;
  outline: none;
  appearance: none;
	font-family: var(--font-sans);
  font-size: 16px;
}
.wpcf7-form-control.radio_vertical_center .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.wpcf7-form-control.radio_vertical_center input[type="radio"] {
  margin: 0;
}
.form_area input[type="text"]:focus, .form_area input[type="date"]:focus, .form_area input[type="email"]:focus, .form_area select:focus, .form_area textarea:focus {
  box-shadow: 0 0 7px #E5926E;
  border: 1px solid #E5926E;
}
.form_area .submit_btn {
	margin-top: 30px;
  margin-bottom: 0;
	text-align: center;
}
.form_area .submit_btn input {
  max-width: 100%;
  width: 250px;
  outline: none;
  appearance: none;
  border: none;
  background: #79D4E6;
	background: linear-gradient(90deg, rgba(121, 212, 230, 1) 0%, rgba(156, 180, 239, 1) 86%);
  border-radius: 3em;
  padding: 12px 30px 16px;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  color: #fff;
  cursor: pointer;
}
.form_area .submit_btn input:hover {
  background: #79D4E6;
  opacity: 1;
}
.wpcf7-spinner {
  display: none;
}
@media screen and (max-width: 1080px) {
	.form_area {
		width: 100%;
		padding: 60px 40px;
	}
}
@media screen and (max-width: 750px) {
  .form_area {
    padding: 20px;
		border-radius: 16px;
  }
  .form_area input[type="text"], .form_area input[type="date"], .form_area input[type="email"], .form_area select {
    width: 100%;
  }
	table.cform tr th p, table.cform tr td p {
		font-size: 14px;
	}
	.wpcf7-form-control.radio_vertical_center .wpcf7-list-item label {
		font-size: 13px;
	}
}

/*-----------------------------------------------------
	#news
------------------------------------------------------*/
#news {
  padding: 80px 0;
}
#news .wrap {
	justify-content: space-between;
}
#news h2 {
	margin-bottom: 24px;
}
.news_l {
  position: relative;
  width: 20.6%;
}
.news_l_inner {
  position: absolute;
	top: calc(50% - 10px);
	left: 0;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
  width: 100%;
}
.news_l .link_more {
  width: 100%;
}
.news_r {
  width: 75.8%;
}
.news_list {
  display: block;
  position: relative;
  margin-bottom: 33px;
  padding-right: 52px;
  padding-bottom: 33px;
  border-bottom: 1px solid #AFAFAF;
}
.news_list:last-of-type {
  margin-bottom: 0;
}
.news_list::after {
  content: "";
  display: block;
  position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: url("../img/common/news_arrow_02.svg") no-repeat center center;
  background-size: cover;
  transition: all 0.2s;
}
.date_category {
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
	margin-bottom: 16px;
}
.date {
  font-family: "Cardo", serif;
	font-style: italic;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: 0.1em;
}
.category span {
  display: inline-block;
	min-width: 85px;
  padding: 3px 16px;
	background: #DB7FA0;
	border-radius: 9999px;
  font-size: 12px;
  font-weight: 500;
	line-height: 1.5;
  letter-spacing: 0.1em;
	text-align: center;
	color: #fff;
}
.news_list p {
	font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.1em;
}
.news_r .center .link_more {
	width: 360px;
	max-width: 100%;
	margin-top: 80px;
}
body.archive #news, body.single #news {
	background: none;
}
body.archive .news_l, body.single .news_l {
	order: 2;
}
body.archive .news_r, body.single .news_r {
	order: 1;
}
@media screen and (max-width: 1199px) {
  .news_l {
    width: 100%;
		margin-bottom: 32px;
  }
	.news_l_inner {
		position: relative;
		top: 0;
		left: 0;
		transform: none;
		width: 100%;
	}
  .news_r {
    width: 100%;
  }
	body.archive .news_r, body.single .news_r {
		margin-bottom: 32px;
	}

}
@media screen and (max-width: 750px) {
	#news {
		padding: 40px 0;
	}
	#news h2 {
		margin-bottom: 0;
	}
  .news_l {
    width: 100%;
    margin-bottom: 32px;
  }
	.news_l .link_more {
		top: 10px;
		width: 158px;
	}
  .news_r {
    width: 100%;
  }
	.news_list {
		margin-bottom: 25px;
		padding-right: 46px;
		padding-bottom: 25px;
	}
	.news_list:last-of-type {
		margin-bottom: 0;
	}
	.date_category {
		margin-bottom: 8px;
	}
	.news_list p {
		font-size: 14px;
	}
	.news_r .center .link_more {
		margin-top: 60px;
		text-align: center;
	}
}
/*-----------------------------------------------------
	サイドバー
------------------------------------------------------*/
.news_l h3 {
	margin-top: 24px;
	margin-bottom: 16px;
	padding-bottom: 8px;
	border-bottom: 1px solid #D9D9D9;
	font-family: "Noto Serif", serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.1em;
}
.news_l h3:first-of-type {
	margin-top: 0;
}
.news_cat_list li, .news_archive_list li {
	white-space: nowrap;
  margin-bottom: 4px;
	margin-left: 15px;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 14px;
	font-weight: 400;
  line-height: 2;
	letter-spacing: 0.05em;
}
.news_cat_list li a, .news_archive_list li a {
  display: inline-block;
	font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
	font-weight: 400;
  line-height: 2;
	letter-spacing: 0.05em;
}

/*-----------------------------------------------------
	ページネーション
------------------------------------------------------*/
.pagination {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 64px;
}
a.page-numbers, .pagination .current {
  display: block;
  width: 56px;
  height: 56px;
  margin: 0 10px;
	padding: 18px 8px;
  background: #fff;
	border: 1px solid var(--text-color);
  border-radius: 50%;
  font-family: "Cormorant Infant", serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
	text-decoration: none;
  text-align: center;
  color: var(--text-color);
}
span.page-numbers.dots {
  margin-right: 10px;
  margin-left: 10px;
  font-size: 14px;
}
.pagination .current, a.page-numbers:hover {
	background: var(--main-color);
	border: 1px solid var(--text-color);
	color: #fff;
  opacity: 1;
}
a.page-numbers.next, a.page-numbers.prev {
  position: relative;
  width: 27.78px;
  height: 30px;
  margin: 0 10px;
  background: #B2A07E;
  border: 1px solid #B2A07E;
}
a.page-numbers.next {
  margin-right: 0;
}
a.page-numbers.prev {
  margin-left: 0;
}
a.page-numbers.next img, 
a.page-numbers.prev img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
a.page-numbers.prev img {
  transform: translate(-50%, -50%) scaleX(-1);
}
a.page-numbers.next:hover, a.page-numbers.prev:hover {
	background: #B2A07E;
  opacity: .6;
}
/*-----------------------------------------------------
	.voice
------------------------------------------------------*/
.voice {
	position: relative;
	z-index: 0;
  padding: 80px 0;
}
.voice::before {
  content: "";
  display: block;
  position: absolute;
	bottom: 0;
	left: -75px;
	z-index: -1;
  width: 238px;
  height: 182px;
  background: url("../img/common/voice_ill_l.svg") no-repeat center center;
  background-size: cover;
}
.voice p {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.1em;
  text-align: center;
}
.staff_voice_area {
	z-index: 0;
  padding: 0 0 120px;
  overflow: hidden;
}
.staff_filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
	position: relative;
  margin-bottom: 60px;
}
.staff_filter_btn {
  min-width: 180px;
  padding: 11px 0 11px 15px;
  border: 2px solid #f0848c;
  border-radius: 999px;
  background: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  color: #f0848c;
  letter-spacing: 0.1em;
  text-align: center;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, opacity 0.3s ease;
}
.staff_filter_btn.is-active,
.staff_filter_btn:hover {
  background: #f0848c;
  color: #fff;
}
/*--歯科医師--*/
.staff_filter_btn--dentist {
  border: 2px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(90deg, #7ad3e6 0%, #9cb4ef  100%) border-box;
  color: transparent;
  background-clip: padding-box, border-box;
}
.staff_filter_btn--dentist span {
  background: linear-gradient(90deg, #7ad3e6 0%, #9cb4ef  100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.staff_filter_btn--dentist.is-active,
.staff_filter_btn--dentist:hover {
  background:
    linear-gradient(90deg, #7ad3e6 0%, #9cb4ef  100%) padding-box,
    linear-gradient(90deg, #7ad3e6 0%, #9cb4ef  100%) border-box;
  color: #fff;
}
/*--歯科衛生士--*/
.staff_filter_btn--hygienist {
  border: 2px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(90deg, #77dad7 0%, #80d48a  100%) border-box;
  color: transparent;
  background-clip: padding-box, border-box;
}
.staff_filter_btn--hygienist span {
  background: linear-gradient(90deg, #77dad7 0%, #80d48a  100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.staff_filter_btn--hygienist.is-active,
.staff_filter_btn--hygienist:hover {
  background:
    linear-gradient(90deg, #77dad7 0%, #80d48a  100%) padding-box,
    linear-gradient(90deg, #77dad7 0%, #80d48a  100%) border-box;
  color: #fff;
}
/*--歯科助手--*/
.staff_filter_btn--assistant {
  border: 2px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(90deg, #eed36a 0%, #e7bc60  100%) border-box;
  color: transparent;
  background-clip: padding-box, border-box;
}
.staff_filter_btn--assistant span {
  background: linear-gradient(90deg, #eed36a 0%, #e7bc60  100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.staff_filter_btn--assistant.is-active,
.staff_filter_btn--assistant:hover {
  background:
    linear-gradient(90deg, #eed36a 0%, #e7bc60  100%) padding-box,
    linear-gradient(90deg, #eed36a 0%, #e7bc60  100%) border-box;
  color: #fff;
}
/*--保育士--*/
.staff_filter_btn--nursery {
  border: 2px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(90deg, #f4adb0 0%, #ef8bb6  100%) border-box;
  color: transparent;
  background-clip: padding-box, border-box;
}
.staff_filter_btn--nursery span {
  background: linear-gradient(90deg, #f4adb0 0%, #ef8bb6  100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.staff_filter_btn--nursery.is-active,
.staff_filter_btn--nursery:hover {
  background:
    linear-gradient(90deg, #f4adb0 0%, #ef8bb6  100%) padding-box,
    linear-gradient(90deg, #f4adb0 0%, #ef8bb6  100%) border-box;
  color: #fff;
}

.staff_filter_btn--dentist.is-active span,
.staff_filter_btn--dentist:hover span,
.staff_filter_btn--hygienist.is-active span,
.staff_filter_btn--hygienist:hover span,
.staff_filter_btn--assistant.is-active span,
.staff_filter_btn--assistant:hover span,
.staff_filter_btn--nursery.is-active span,
.staff_filter_btn--nursery:hover span {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  color: #fff;
}

.staff_grid {
  column-count: 5;
  column-gap: 20px;
}
.staff_item {
  display: inline-block;
  width: 100%;
  margin: 0 0 20px;
  break-inside: avoid;
  page-break-inside: avoid;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.staff_item.is-hidden {
  display: none;
}
.staff_card {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}
.staff_card_img {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
}
.staff_card_img::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 46%;
  background: linear-gradient(to bottom, rgba(28,28,28,0), rgba(28,28,28,0.9));
  z-index: 1;
}
.staff_card_img img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.45s ease;
}
.staff_card:hover .staff_card_img img {
  transform: scale(1.04);
}
.staff_card_copy {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  z-index: 2;
  font-family: "Zen Kurenaido", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #fff;
  text-shadow: 0 0 8px rgba(0,0,0,0.8);
}

.staff_cat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  margin-top: 16px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #7bcfe0;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  letter-spacing: 0.1em;
}
.txt-blue {
  color: #00D5FF;
}
.txt-green {
  color: #22EE8E;
}
.txt-yellow {
  color: #FFBD02;
}
.txt-pink {
  color: #ED3B88;
}
.txt-white {
  color: #fff;
}
.staff_cat--dentist {
  background: linear-gradient(90deg, #7ad3e6 0%, #9cb4ef  100%);
}
.staff_cat--hygienist {
  background: linear-gradient(90deg, #77dad7 0%, #80d48a  100%);
}
.staff_cat--assistant {
  background: linear-gradient(90deg, #eed36a 0%, #e7bc60  100%);
}
.staff_cat--nursery {
  background: linear-gradient(90deg, #f4adb0 0%, #ef8bb6  100%);
}
.staff_name {
  margin-top: 8px;
  font-family: var(--font-serif);
  font-size: 20px;
	font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.05em;
}

/* modal */
body.is-staff-modal-open {
  overflow: hidden;
}
.staff_modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.staff_modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.staff_modal_overlay {
  position: absolute;
  inset: 0;
  background: rgba(61,61,61,0.7);
}
.staff_modal_content {
  position: relative;
  z-index: 1;
  width: min(800px, calc(100% - 80px));
  max-height: calc(100vh - 120px);
  margin: 60px auto;
  overflow: hidden;
  border-radius: 16px;
  background: #fff8ed;
	transform: translateY(24px) scale(0.98);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.staff_modal.is-open .staff_modal_content {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.staff_modal_close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: #eee;
  cursor: pointer;
}
.staff_modal_close::before,
.staff_modal_close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 1.5px;
  background: #5C473A;
}
.staff_modal_close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.staff_modal_close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.staff_modal_img {
  height: 320px;
  background: #fff;
  overflow: hidden;
}
.staff_modal_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.staff_modal_body {
  max-height: calc(100vh - 420px);
  padding: 48px;
  overflow-y: auto;
}
.staff_modal_body::-webkit-scrollbar {
  width: 6px;
}
.staff_modal_body::-webkit-scrollbar-track {
  background: transparent;
}
.staff_modal_body::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: #d8d2c9;
}
.staff_modal_head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.staff_modal_head .staff_cat {
  margin-top: 0;
}
.staff_modal_name {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.1em;
}
.staff_modal_copy {
  margin-bottom: 42px;
  font-family: "Zen Kurenaido", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.1em;
}
.staff_qa {
  margin-top: 40px;
}
.staff_question {
  position: relative;
  min-height: 40px;
  margin-bottom: 12px;
  padding-left: 52px;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: #4b4039;
}
.staff_question::before {
  content: "Q";
  position: absolute;
  top: -5px;
  left: 0;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f0848c;
  font-family: "Cardo", serif;
  font-size: 20px;
	font-style: italic;
  font-weight: 400;
  color: #fff;
}
.staff_answer {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 1250px) {
  .staff_grid {
    column-count: 4;
  }
  .staff_modal_content {
    max-width: calc(100% - 40px);
  }
}
@media screen and (max-width: 1100px) {
  .staff_grid {
    column-count: 3;
  }
	.staff_card_copy {
		font-size: 14px;
	}
}

@media screen and (max-width: 750px) {
  .voice {
    padding: 48px 0;
  }
	.voice::before {
		display: none;
	}
  .voice p {
    font-size: 16px;
    line-height: 2;
    text-align: left;
  }
  .staff_voice_area {
    padding-bottom: 24px;
  }
  .staff_filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 48px;
  }
  .staff_filter_btn {
    width: calc((100% - 8px) / 2);
    min-width: 0;
    padding: 8px 12px;
    font-size: 12px;
  }
  .staff_filter_btn:first-child {
    margin-left: calc((100% + 8px) / 4);
    margin-right: calc((100% + 8px) / 4);
  }
  .staff_grid {
    column-count: 2;
    column-gap: 16px;
  }
  .staff_item {
    margin-bottom: 16px;
  }
  .staff_card_copy {
    right: 8px;
    bottom: 8px;
    left: 8px;
    font-size: 12px;
    line-height: 1.7;
  }
  .staff_cat {
    min-width: 74px;
    margin-top: 16px;
    padding: 7px 10px;
    font-size: 12px;
  }
  .staff_name {
    margin-top: 8px;
    font-size: 14px;
  }
  .staff_modal_content {
    width: calc(100% - 32px);
    max-height: calc(100vh - 76px);
    margin: 104px auto 40px;
  }
  .staff_modal_close {
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
  }
  .staff_modal_close::before,
  .staff_modal_close::after {
    width: 18px;
  }
  .staff_modal_img {
    height: 37.333vw;
  }
  .staff_modal_body {
    max-height: calc(100vh - 256px);
    padding: 24px;
  }
  .staff_modal_head {
    gap: 16px;
    margin-bottom: 16px;
  }
  .staff_modal_copy {
    margin-bottom: 24px;
    font-size: 20px;
    line-height: 1.9;
  }
  .staff_question {
    min-height: 40px;
    margin-bottom: 12px;
    padding-left: 46px;
    font-size: 16px;
  }
  .staff_answer {
    font-size: 14px;
    line-height: 2;
  }
}
.recruit_bottom {
	position: relative;
	width: 100%;
	height: 100px;
	background: #FFFAEF;
}
/*-----------------------------------------------------
	.contact
------------------------------------------------------*/
.contact_green {
	background: url("../img/home/contact_green_bg.webp") no-repeat center center;
	background-size: cover;
}
.contact_pink {
	background: url("../img/home/contact_pink_bg.webp") no-repeat center center;
	background-size: cover;
}
.contact_orange {
	background: url("../img/home/contact_orange_bg.webp") no-repeat center center;
	background-size: cover;
}
.contact_murasaki {
	background: url("../img/home/contact_murasaki_bg.webp") no-repeat center center;
	background-size: cover;
}
.contact_recruit {
	background: url("../img/home/contact_recruit_bg.webp") no-repeat center center;
	background-size: cover;
}
.contact h2 {
	position: relative;
	margin-top: -65px;
	font-size: 22px;
	font-weight: 400;
	letter-spacing: 0.1em;
	line-height: 1.5;
}
.contact h2 span {
	display: block;
	font-family: "Cardo", serif;
	font-style: italic;
	font-size: 80px;
	font-weight: 400;
	letter-spacing: 0.1em;
	line-height: 1.25;
}
.contact_box {
	justify-content: center;
	align-items: flex-end;
}
.contact_staff {
	width: 245px;
	text-align: center;
}
.contact_staff img {
	width: 100%;
}
.contact_content {
	width: 586px;
	text-align: center;
}
.contact_pink .contact_content, .contact_orange .contact_content, .contact_murasaki .contact_content, .contact_recruit .contact_content {
	width: 670px;
}
.contact_content h3 {
	margin-bottom: 11px;
	font-family: var(--font-serif);
	font-size: 38px;
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 1.5;
	color: #fff;
}
.contact_orange .contact_content h3, .contact_murasaki .contact_content h3 {
	font-size: 35px;
}
.contact_recruit .contact_content h3 {
	margin-bottom: 40px;
}
.contact_content p {
	margin-bottom: 28px;
	font-size: 22px;
	font-weight: 400;
	letter-spacing: 0.1em;
	line-height: 1.5;
	color: #fff;
}
.contact_btns {
	flex-direction: column;
	justify-content: center;
	gap: 16px;
	width: 480px;
	margin: 0 auto 40px;
}
.contact_recruit .contact_btns {
	margin-bottom: 75px;
}
.contact_btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	height: 104px;
	border-radius: 9999px;
}
.contact_btn img {
	width: 56px;
	height: 56px;
}
.contact_btn span {
	display: inline-block;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: 0.1em;
}
.contact_btn_web {
	background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(90deg, #EED46A 0%, #E6BC60 100%) border-box;
  border: 2px solid transparent;
}
.contact_btn_web span strong {
	font-family: var(--font-serif);
	font-size: 24px;
	font-weight: 600;
	color: #E5926E;
}
.contact_btn_tel {
	background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(90deg, #F4AEB0 0%, #EF8AB6 100%) border-box;
  border: 2px solid transparent;
}
.contact_btn_tel span strong {
	font-family: "Cardo", serif;
	font-size: 32px;
	font-weight: 700;
	color: #F0848C;
}
.contact_br {
	display: none;
}
@media screen and (max-width: 1240px) {
	.contact_content {
		width: 480px;
	}
	.contact_pink .contact_content, .contact_orange .contact_content, .contact_murasaki .contact_content, .contact_recruit .contact_content {
		width: 480px;
	}
	.contact_staff {
		width: calc((100% - 480px) / 2);
	}
	.contact_br {
		display: block;
	}
}
@media screen and (max-width: 750px) {
	.contact_green {
		background: url("../img/home/sp_contact_green_bg.webp") no-repeat center center;
		background-size: cover;
	}
	.contact_pink {
		background: url("../img/home/sp_contact_pink_bg.webp") no-repeat center center;
		background-size: cover;
	}
	.contact_orange {
		background: url("../img/home/sp_contact_orange_bg.webp") no-repeat center center;
		background-size: cover;
	}
	.contact_murasaki {
		background: url("../img/home/sp_contact_murasaki_bg.webp") no-repeat center center;
		background-size: cover;
	}
	.contact_recruit {
		background: url("../img/home/sp_contact_recruit_bg.webp") no-repeat center center;
		background-size: cover;
	}
	.contact h2 {
		margin-top: -59px;
		margin-bottom: 20px;
		margin-left: 24.5px;
		font-size: 16px;
	}
	.contact h2 span {
		font-size: 48px;
	}
	.contact .wrap {
		width: 100%;
	}
	.contact_box {
		position: relative;
	}
	.contact_staff {
		position: absolute;
		top: 0;
		z-index: 0;
		width: 157px;
	}
	.contact_staff_right {
		right: 0;
	}
	.contact_staff_left {
		left: 0;
	}
	.contact_content {
		position: relative;
		z-index: 1;
		width: 100%;
	}
	.contact_pink .contact_content, .contact_orange .contact_content, .contact_murasaki .contact_content, .contact_recruit .contact_content {
		width: 100%;
	}
	.contact_content h3, .contact_orange .contact_content h3 {
		font-size: 24px;
	}
	.contact_recruit .contact_content h3 {
		margin-bottom: 16px;
	}
	.contact_content p {
		margin-bottom: 16px;
		font-size: 16px;
	}
	.contact_btns {
		gap: 8px;
		width: 358px;
		padding: 0 16px;
		max-width: 100%;
		margin: 0 auto 28px;
	}
	.contact_recruit .contact_btns {
		margin-bottom: 28px;
	}
	.contact_btn {
		height: 80px;
	}
	.contact_recruit .contact_btn {
		height: 104px;
	}
	.contact_btn img {
		width: 40px;
		height: 40px;
	}
	.contact_btn span {
		font-size: 14px;
	}
	.contact_btn_web span strong {
		font-size: 20px;
	}
	.contact_btn_tel span strong {
		font-size: 26px;
	}
}
@media screen and (max-width: 550px) {
	.contact_staff {
		width: 90px;
	}
	.contact_murasaki .contact_content h3 {
		font-size: 20px;
	}
}
/*-----------------------------------------------------
	footer
------------------------------------------------------*/
footer {
  padding-top: 64px;
	padding-bottom: 64px;
  background: #F3EDE4;
}
footer .wrap {
	width: 1160px;
}
footer .wrap .footer_inner {
	justify-content: space-between;
	align-items: center;
	margin-bottom: 8px;
}
.footer_l {
	width: 24.4%;
}
.footer_l address {
	margin-top: 10px;
	margin-bottom: 32px;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: 0.05em;
}
.footer_tel {
	font-size: 14px;
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: 0.05em;
	text-align: center;
}
.footer_tel p {
	margin-bottom: 5px;
}
.footer_tel a {
	display: block;
	font-family: "Cardo", serif;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.4;
	letter-spacing: 0.05em;
}
.footer_tel a span {
	font-size: 32px;
}
.footer_r {
	width: 68.6%;
}
.footer_child {
  text-align: left;
}
.footer_child h3 {
	margin-bottom: 12px;
  font-size: 16px;
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: 0.05em;
}
.footer_child ul {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 24px;
}
.footer_child ul li {
	position: relative;
	width: calc((100% - 24px) / 4);
}
.footer_child:last-of-type ul li {
	width: calc((100% - 16px) / 3);
}
.footer_child ul li a {
	position: relative;
	padding-left: 10px;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.7;
	letter-spacing: 0.05em;
}
.footer_child ul li a::before {
  content: "-";
  display: block;
  position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
footer small {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.7;
	letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 1240px) {
	footer .wrap {
		width: calc(100% - 80px);
	}
	.footer_l {
		width: 100%;
		margin-bottom: 30px;
		text-align: center;
	}
	.footer_r {
		width: 100%;
	}
}
@media screen and (max-width: 1000px) {
	.footer_child ul li {
		width: calc((100% - 24px) / 3);
	}
	.footer_child:last-of-type ul li {
		width: calc((100% - 8px) / 2);
	}
}
@media screen and (max-width: 750px) {
	footer {
		padding-top: 40px;
		padding-bottom: 80px;
	}
	footer .wrap {
		width: calc(100% - 32px);
	}
	.footer_l img {
		width: 284px;
		height: auto;
	}
	.footer_r {
		display: none;
	}
}

/*-----------------------------------------------------
	others
------------------------------------------------------*/
.ani {
  visibility: hidden;
}
.tb {
	display: none !important;
}
.sp {
	display: none !important;
}

/*---------------------------------------------------------------------------------------------------------------------------------------------------------------
	~750px SP
----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 750px) {
	/*-----------------------------------------------------
		Elements
	------------------------------------------------------*/	
  img {
    max-width: 100%;
    height: auto;
  }
	/*-----------------------------------------------------
		Elements
	------------------------------------------------------*/
	body {
		word-wrap: break-word;
	}
	a[href^="tel:"] {
		pointer-events: auto;
	}
	/*-----------------------------------------------------
		others
	------------------------------------------------------*/
	.tb {
		display: block !important;
	}
	.pc {
		display: none !important;
	}
}

@media screen and (max-width: 414px) {
  .tb {
		display: none !important;
	}
  .sp {
		display: block !important;
	}
}

@media screen and (max-width: 750px) {
  .scr table.has-fixed-layout {
    width: 700px!important;
  }
  .scr .has-fixed-layout tr th, .scr .has-fixed-layout tr td {
     display: table-cell!important;
   }
}