@charset "UTF-8";
/*
	Filename: common
	Version: 1.0.1
*/
/*-----------------------------------------------------
	Utility
------------------------------------------------------*/
:root {
	--font-sans: "Yu Gothic","游ゴシック","YuGothic","游ゴシック体","Hiragino Sans","Hiragino Kaku Gothic ProN","Meiryo",sans-serif;
	--font-serif: "Zen Old Mincho",serif;
  --text-color: #555555;
  --main-color: #A46FC4;
	--sub-color: #D3B4E7;
}
/* --------------------------------
   Base Typography
-------------------------------- */
html {
  font-family: var(--font-sans);
  font-size: 62.5%;
  font-weight: 400;
}
body {
	background: #fff;
  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: "Marcellus", 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: 1280px;
  margin: 0 auto;
}
@media screen and (max-width: 1360px) {
  .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: 20;
  width: 100%;
  height: 140px;
	background: #fff;
}
.header_inner {
  position: relative;
}
.header_logo a {
  position: absolute;
  top: 10px;
  left: 40px;
  z-index: 2;
  display: block;
  width: 488px;
  height: 70px;
  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_top {
	position: absolute;
	top: 10px;
	right: 40px;
}
.header_top ul.flex {
	align-items: center;
  justify-content: flex-end;
	gap: 4px;
}
.header_top ul.flex li a {
	display: block;
	width: 240px;
	padding: 9.5px 10px;
	background: #fff;
	border: 1px solid #d9d9d9;
	border-radius: 10px;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.1em;
	text-align: center;
}
.header_top ul.flex li a span {
	display: inline-block;
	position: relative;
	margin-top: 5px;
	padding-left: 29px;
	font-size: 18px;
}
.header_top ul.flex li a span::before {
  content: "";
  display: block;
  position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
  width: 19px;
  height: 19px;
  background: url("../img/common/tel_icon.svg") no-repeat center center;
  background-size: cover;
}
.header_top ul.flex li:first-of-type a {
	background: rgba(136, 120, 228, 1);
	background: linear-gradient(90deg, rgba(136, 120, 228, 1) 0%, rgba(243, 154, 251, 1) 100%);
	border: 1px solid transparent;
  background-clip: padding-box;
	color: #fff;
}
.header_top ul.flex li:first-of-type a span {
	padding-left: 28px;
}
.header_top ul.flex li:first-of-type a span::before {
  width: 18px;
  height: 18px;
  background: url("../img/common/web_icon.svg") no-repeat center center;
  background-size: cover;
}
.header_nav {
  position: absolute;
  top: 86px;
  left: 0;
  z-index: 1;
  width: 100%;
}
.header_nav ul.flex {
  justify-content: center;
  align-items: center;
}
.header_nav ul.flex > li {
  position: relative;
}
.header_nav ul.flex > li > a {
  position: relative;
  display: block;
  padding: 12.5px 68px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
}
.header_nav ul.flex > li::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 100%;
  background: #d9d9d9;
}
.header_nav ul.flex > li:last-of-type::after {
  display: none;
}
.header_nav ul.flex > li.has-child > a span {
  position: relative;
}
.header_nav ul.flex > li.has-child > a span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -22px;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: url("../img/common/mega_arrow.svg") no-repeat center;
  background-size: contain;
  transition: transform .3s ease;
}
.header_nav ul.flex > li.has-child:hover > a {
  color: var(--main-color) !important;
}
.header_nav ul.flex > li.has-child:hover > a span::after {
  transform: translateY(-50%) scaleY(-1);
}
.header_nav ul.flex > li.has-child > ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
	transform: translateY(14px);
  z-index: 100;
  width: 370px;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  text-align: left;
}
.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: translateY(14px);
}
.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;
}
.header_nav ul.flex li.has-child ul li ul.mega li a {
  display: block;
  padding: 25px;
	background: rgba(136, 120, 228, 1);
	background: linear-gradient(90deg, rgba(136, 120, 228, 1) 0%, rgba(243, 154, 251, 1) 100%);
  border-bottom: 1px solid #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: #fff;
}
.header_nav ul.flex li.has-child ul li ul.mega li:last-of-type a {
  border-radius: 0 0 10px 10px;
}
.header_nav ul.flex li.has-child ul li ul.mega li a::after {
  display: none;
}
/* mega_wide */
.header_nav ul.flex > li.has-child.menu-wide {
  position: static;
}
.header_nav ul.flex > li.has-child.menu-wide::after {
  display: none;
}
.header_nav ul.flex > li.has-child.menu-wide > a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 100%;
  background: #d9d9d9;
}
.header_nav ul.flex > li.has-child.menu-wide > ul {
  left: 80px;
  right: 80px;
  width: auto;
}
.header_nav ul.flex > li.has-child.menu-wide > ul > li {
  width: 100%;
}
.header_nav .mega_wide {
  padding: 40px 60px;
  background: rgba(136, 120, 228, 1);
	background: linear-gradient(90deg, rgba(136, 120, 228, 1) 0%, rgba(243, 154, 251, 1) 100%);
  border-radius: 0 0 10px 10px;
}
.header_nav .mega_wide_title {
	margin-bottom: 40px;
	text-align: center;
}
.header_nav .mega_wide_title a {
	font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 500;
  line-height: 1.6;
	letter-spacing: 0.1em;
	color: #fff;
}
.header_nav .mega_wide_columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.header_nav .mega_wide_column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.header_nav .mega_wide_block {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.header_nav .mega_wide_head {
  margin: 0;
	border-bottom: 1px solid #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 2.3;
	color: #fff;
}
.header_nav .mega_wide_head a {
	color: #fff;
}
.header_nav .mega_wide_list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
}
.header_nav .mega_wide_list li a {
  display: inline-block;
  padding: 0;
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.1em;
  color: #fff;
}
#sp-fixed-menu {
  display: none;
}
@media screen and (max-width: 1385px) {
	.header_nav ul.flex > li > a {
		padding: 12.5px 45px;
		font-size: 13px;
	}
	.header_nav ul.flex > li.has-child > ul {
		transform: translateY(16px);
	}
	.header_nav ul.flex > li.has-child:hover > ul {
		transform: translateY(16px);
	}
	.header_nav ul.flex li.has-child ul li ul.mega li a {
		width: 300px;
		padding: 20px;
		font-size: 14px;
	}
	.header_nav ul.flex > li.has-child.menu-wide > ul {
		left: 40px;
		right: 40px;
	}
	.header_nav .mega_wide {
		padding: 40px;
	}
}
@media screen and (max-width: 1100px) {
	.header_logo a {
		left: 20px;
	}
	.header_top {
		right: 20px;
	}
	.header_top ul.flex li a {
		width: 220px;
	}
	.header_nav ul.flex > li > a {
		font-size: 12px;
	}
	.header_nav ul.flex > li.has-child > ul {
		transform: translateY(17px);
	}
	.header_nav ul.flex > li.has-child:hover > ul {
		transform: translateY(17px);
	}
}
@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: 60px;
  }
  .header_nav, .header_top {
    display: none;
  }
	.header_logo {
		height: 60px !important;
  }
  .header_logo a {
		top: 13px;
		width: 296px;
		height: 34px;
  }
	/* SPメニュー */
  .hamburger {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10002;
    width: 60px ;
    height: 60px;
    padding: 0;
		background: var(--main-color);
    touch-action: manipulation;
  }
  .hamburger__icon {
    position: relative;
    margin-top: 9px;
  }
  .hamburger__icon, .hamburger__icon::before, .hamburger__icon::after {
    width: 34px;
    height: 1px;
		position: absolute;
    top: 18.5px;
		right: 13px;
    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: 34px;
    top: -10px;
  }
  .hamburger__icon::after {
		width: 34px;
    top: 10px;
  }
	.hamburger.active .hamburger__icon {
    background-color: transparent;
		border-radius: 400px;
  }
  .hamburger.active .hamburger__icon:before, .hamburger.active .hamburger__icon:after {
		width: 34px;
    height: 1px;
  }
  .hamburger.active .hamburger__icon:before {
    transform: translateY(10px) rotate(30deg);
  }
  .hamburger.active .hamburger__icon:after {
    transform: translateY(-10px) 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: 60px;
		left: 0;
		display: table;
		table-layout: fixed;
		width: 100%;
		height: calc(100% - 60px);
	}
	.hum-nav_inner {
		width: 100%;
		height: 100%;
		padding: 20px 40px 40px;
		background: rgba(164,111,196,.8);
	}
	.hum-nav .header_logo {
		position: fixed;
		top: 0;
		left: 0;
		z-index: 10;
		width: 100%;
		height: 60px;
		background: #fff;
	}
	.hum-nav .header_logo a {
		background-image: url("../img/common/logo.svg");
	}
	.hum-nav_inner ul li a {
		display: block;
		padding: 23px 20px;
		border-bottom: 1px solid #fff;
		font-size: 16px;
		font-weight: 700;
		line-height: 1.6;
		letter-spacing: 0.1em;
		color: #fff;
	}
	.hum-nav_parent {
		display: flex;
		align-items: stretch;
	}
	.hum-nav_parent_link {
		flex: 1;
		display: block;
		padding: 23px 20px;
		font-size: 18px;
		font-weight: 700;
		line-height: 1.6;
		letter-spacing: 0.1em;
		color: #fff;
	}
	.aco {
		flex-shrink: 0;
		width: 30px;
		border: none;
		border-bottom: 1px solid #fff;
		background: transparent;
		cursor: pointer;
		position: relative;
		appearance: none;
		-webkit-appearance: none;
	}
	.aco::after {
		content: "";
		display: block;
		position: absolute;
		top: 50%;
		left: 50%;
		width: 20px;
		height: 20px;
		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);
		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: 44px !important;
	}
	.hum-nav_menu_list li a::before {
		content: "";
		position: absolute;
		left: 20px;
		top: 50%;
		transform: translateY(-50%);
		width: 14px;
		height: 1px;
		background: #fff;
	}
	ul.group_list {
		display: flex;
		flex-direction: column;
		gap: 10px;
		width: 350px;
		max-width: 100%;
		margin: 40px auto;
	}
	ul.group_list li a {
		display: block;
		position: relative;
		padding: 23px 20px;
		border: 1px solid #fff;
		border-radius: 10px;
		font-size: 18px;
		font-weight: 700;
		line-height: 1.6;
		color: #fff;
		text-align: left;
	}
	ul.group_list li a::after {
		content: "";
		display: block;
		position: absolute;
		top: 50%;
		right: 10px;
		transform: translateY(-50%);
		width: 7px;
		height: 13px;
		background: url("../img/common/w_arrow.svg") no-repeat center center;
		background-size: cover;
	}
	ul.nav_cv {
		display: flex;
		flex-direction: column;
		gap: 4px;
		width: 350px;
		max-width: 100%;
		margin: 0 auto;
		padding: 40px 25px;
		background: #fff;
		border-radius: 10px;
	}
	ul.nav_cv li a {
		display: block;
		padding: 13px 10px;
		background: #fff;
		border: 1px solid #d9d9d9;
		border-radius: 10px;
		font-size: 15px;
		font-weight: 700;
		line-height: 1;
		letter-spacing: 0.1em;
		color: var(--text-color);
		text-align: center;
	}
	ul.nav_cv li a span {
		display: inline-block;
		position: relative;
		margin-top: 5px;
		padding-left: 29px;
		font-size: 20px;
	}
	ul.nav_cv li a span::before {
		content: "";
		display: block;
		position: absolute;
		top: 50%;
		left: 0;
		transform: translateY(-50%);
		width: 19px;
		height: 19px;
		background: url("../img/common/tel_icon.svg") no-repeat center center;
		background-size: cover;
	}
	ul.nav_cv li:last-of-type a {
		background: rgba(136, 120, 228, 1);
		background: linear-gradient(90deg, rgba(136, 120, 228, 1) 0%, rgba(243, 154, 251, 1) 100%);
		border: 1px solid transparent;
		background-clip: padding-box;
		color: #fff;
	}
	ul.nav_cv li:last-of-type a span {
		padding-left: 28px;
	}
	ul.nav_cv li:last-of-type a span::before {
		width: 18px;
		height: 18px;
		background: url("../img/common/web_icon.svg") no-repeat center center;
		background-size: cover;
	}
}

@media screen and (max-width: 414px) {
  .header_logo a {
		top: 13px;
		width: 260px;
		height: 30px;
  }
}
/*-----------------------------------------------------
	midasi
------------------------------------------------------*/
.midasi_01 {
	margin-bottom: 60px;
	font-size: 40px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0.1em;
	text-align: center;
}
.midasi_01 span {
	display: block;
	margin-bottom: 30px;
	font-family: "Marcellus", serif;
	font-size: 180px;
	font-weight: 400;
	line-height: 1;
	color: #fff;
}
@media screen and (max-width: 1360px) {
	.midasi_01 {
		margin-bottom: 4.412vw;
		font-size: 2.941vw;
	}
	.midasi_01 span {
		margin-bottom: 2.206vw;
		font-size: 13.235vw;
	}
}
@media screen and (max-width: 750px) {
	.midasi_01 {
		margin-bottom: 60px;
		font-size: 40px;
	}
	.midasi_01 span {
		margin-bottom: 20px;
		font-size: 40px;
	}
}
/*-----------------------------------------------------
	ボタン
------------------------------------------------------*/
.link_more_01 {
	display: inline-block;
	position: relative;
	width: 350px;
	max-width: 100%;
	padding: 22px 30px 22px 20px;
	background: #fff;
	border: 1px solid var(--text-color);
	border-radius: 10px;
	box-shadow: 0px 20px 30px 0px rgba(0, 0, 0, 0.1);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0.1em;
}
.link_more_01::after {
	content: "";
	position: absolute;
	right: 20px;
	top: 50%;
	width: 7px;
	height: 13px;
	background: url("../img/common/b_arrow.svg") no-repeat center center;
	background-size: cover;
	transform: translateY(-50%);
	transition: all 0.3s ease;
}
@media screen and (max-width: 750px) {
	.link_more_01 {
		padding: 18.5px 30px 18.5px 20px;
	}
	.link_more_01::after {
		width: 6px;
		height: 11px;
	}
}

/*-----------------------------------------------------
	#page_mv
------------------------------------------------------*/
#page_mv {
  position: relative;
	top: 0;
  z-index: 0;
  width: 100%;
  height: 500px;
	margin-top: 140px;
}
#page_mv::after {
  content: "";
  display: block;
  position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
  width: 100%;
  height: 100%;
  background: rgba(182, 140, 208, .7);
}
#page_mv img {
  width: 100%;
  height: 100%;
  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%;
	text-shadow:
		0 0 2px #fff,
		0 0 10px #fff,
		0 0 20px #fff,
		0 0 30px #fff;
	text-align: center;
}
#page_mv .page_title h1, #page_mv .page_title div {
	padding-right: 40px;
	padding-left: 40px;
	font-family: var(--font-serif);
	font-size: 50px;
	font-weight: 500;
	line-height: 1.3;
	letter-spacing: 0.1em;
}
.breadcrumbs {
  margin-bottom: 40px;
  padding: 15px 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}
.breadcrumbs a {
  font-weight: 400;
  text-decoration: none;
}
.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5em;
  margin: 0;
  padding: 0;
  list-style: none;
}
.breadcrumbs__list li {
  display: flex;
  align-items: center;
}
.breadcrumbs__list li:not(:last-child)::after {
  content: ">";
  margin-left: 0.5em;
  font-weight: 700;
}
.breadcrumbs__list .current-item {
  font-weight: 700;
}
@media screen and (max-width: 1000px) {
	#page_mv .page_title h1, #page_mv .page_title div {
		font-size: 40px;
	}
}
@media screen and (max-width: 750px) {
	#page_mv {
		height: 300px;
		margin-top: 60px;
	}
	#page_mv .page_title h1, #page_mv .page_title div {
		padding: 0 20px;
		font-size: 30px;
	}
}
/*-----------------------------------------------------
	目次
------------------------------------------------------*/
#ez-toc-container {
	display: flex !important;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	width: 820px !important;
	max-width: 100%;
	margin: 40px auto 100px;
  padding: 40px;
  background: #F9F7FC !important;
  border: none !important;
  box-shadow: none;
}
.ez-toc-title-container {
	display: block !important;
	align-items: center;
	justify-content: center;
	width: 27%;
}
.ez-toc-title-container span {
	display: none !important;
}
div#ez-toc-container .ez-toc-title {
	display: block !important;
	font-family: var(--font-serif);
	font-size: 24px;
	font-weight: 500;
	color: var(--main-color) !important;
	text-align: center;
}
#ez-toc-container nav {
	width: 67.5%;
}
ul.ez-toc-list li a {
	display: block !important;
	padding: 13px 0;
	border-bottom: 1px solid #d9d9d9;
	font-size: 16px !important;
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: 0.1em;
	text-decoration: none !important;
}
ul.ez-toc-list li a:visited {
  color: var(--text-color) !important;
}

@media screen and (max-width: 750px) {
	#ez-toc-container {
		flex-direction: column;
		justify-content: flex-start;
		width: 100% !important;
		margin: 40px auto 60px;
		padding: 40px 20px;
	}
	.ez-toc-title-container {
		width: 100%;
		margin-bottom: 40px;
	}
	#ez-toc-container nav {
		width: 100%;
	}
}
/*-----------------------------------------------------
	.main
------------------------------------------------------*/
.main h1 {
  margin-bottom: 30px;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.1em;
}
.main .date {
	margin-bottom: 15px;
	font-size: 14px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.1em;
}
/*-----------------------------------------------------
	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(--main-color);
  text-decoration: underline;
}
.main p.link a {
	display: inline-block;
	position: relative;
	max-width: 100%;
	padding: 22px 40px 22px 20px;
	background: #fff;
	border: 1px solid var(--text-color);
	border-radius: 10px;
	box-shadow: 0px 20px 30px 0px rgba(0, 0, 0, 0.1);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.1em;
	text-decoration: none;
	color: var(--text-color);
}
.main p.link a::after {
	content: "";
	position: absolute;
	right: 20px;
	top: 50%;
	width: 7px;
	height: 13px;
	background: url("../img/common/b_arrow.svg") no-repeat center center;
	background-size: cover;
	transform: translateY(-50%);
	transition: all 0.3s ease;
}
@media screen and (max-width: 750px) {
	.main p.link a {
		padding: 18.5px 30px 18.5px 20px;
	}
	.main p.link a::after {
		width: 6px;
		height: 11px;
	}
}



.main hr {
  display: block;
  height: 1px;
  border: 0;   
  border-top: 1px solid #d9d9d9;
  margin: 3em 0;
  padding: 0;
}
.main h2 {
	margin-top: 80px;
	margin-bottom: 30px;
	padding-bottom: 10px;
	padding-left: 10px;
	border-bottom: 4px solid var(--main-color);
	font-family: var(--font-serif);
	font-size: 40px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0.1em;
	color: var(--main-color);
}
.main h2:first-of-type {
	margin-top: 0;
}
.main h3 {
	margin-bottom: 30px;
	padding-bottom: 10px;
	padding-left: 10px;
	border-bottom: 1px solid var(--main-color);
	font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.1em;
}
.main h4 {
  margin-bottom: 30px;
  padding: 30px 20px;
  background: #FCECF3;
	font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--main-color);
  letter-spacing: 0.1em;
	text-align: center;
}
.main h5 {
  margin-bottom: 30px;
	padding: 13px 10px;
	background: var(--main-color);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.1em;
	color: #fff;
	text-align: center;
}
.main h6 {
  margin-bottom: 30px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.1em;
}
.main p {
  margin-bottom: 40px;
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.1em;
}
.main ul, .main ol {
  margin-bottom: 40px;
}
.main ul li {
  margin-bottom: 20px;
  margin-left: 20px;
  list-style-type: disc;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
.main ul li::marker {
  color: var(--main-color);
}
.main ol li {
  margin-bottom: 20px;
  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 tr th {
	margin-bottom: 40px;
}
.main table tr th {
	padding: 20px 10px;
	background: #F0E6F6;
	font-family: var(--font-serif);
	font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.1em;
	vertical-align: middle;
	text-align: center;
}
.main table tr:not(:first-child) th {
  background: #EFF5FF;
}
.main table tr td {
	padding: 20px 10px;
	font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.1em;
	vertical-align: middle;
}

@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 h1 {
		margin-bottom: 20px;
		padding-bottom: 20px;
		font-size: 22px;
	}
	.main h2 {
		margin-top: 60px;
		font-size: 30px;
	}
	.main h2:first-of-type {
		margin-top: 0;
	}
	.main h3 {
		font-size: 24px;
	}
	.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;
	}
}
/*-----------------------------------------------------
	特徴
------------------------------------------------------*/
.wp-block-columns.tokucho {
	width: 1040px;
	max-width: 100%;
	margin: 0 auto 100px;
	padding: 50px 60px 20px;
	border: 3px solid var(--main-color);
}
.wp-block-columns.tokucho h2 {
	padding: 0;
	border: none;
	text-align: center;
}
.wp-block-columns.tokucho ul li {
	position: relative;
	margin-bottom: 30px;
	margin-left: 0;
	padding-bottom: 20px;
	padding-left: 37px;
	border-bottom: 1px solid #FF5AA3;
	list-style-type: none;
	font-size: 28px;
	font-weight: 700;
	letter-spacing: 0.1em;
}
.wp-block-columns.tokucho ul li::after {
  content: "";
  display: block;
  position: absolute;
	top: 21px;
	left: 0;
	transform: translateY(-50%);
  width: 27px;
  height: 27px;
  background: url("../img/common/check_icon.svg") no-repeat center center;
  background-size: cover;
}
@media screen and (max-width: 1000px) {
	.wp-block-columns.tokucho {
		padding: 50px 30px 20px;
	}
}
@media screen and (max-width: 781px) {
	.wp-block-columns.tokucho {
		margin: 0 auto 60px;
		padding: 50px 20px 20px;
	}
	.wp-block-columns.tokucho ul li {
		font-size: 20px;
	}
}
/*-----------------------------------------------------
	流れ
------------------------------------------------------*/
.wp-block-columns.flow {
	align-items: stretch !important;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #d9d9d9;
}
.wp-block-columns.flow .wp-block-column {
  display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: left;
}
.wp-block-columns.flow .wp-block-column p {
  margin-bottom: 0;
}
.wp-block-columns.flow .wp-block-column:first-of-type {
	padding: 20px 10px;
	background: var(--main-color);
	border-radius: 10px;
	font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.1em;
	color: #fff;
	text-align: center;
}
.wp-block-columns.flow span.num {
  font-size: 40px;
}
.wp-block-columns.flow span.small {
	margin-top: 5px;
  font-size: 14px;
}
@media screen and (max-width: 781px) {
	.wp-block-columns.flow {
		gap: 1em;
	}
	.wp-block-columns.flow .wp-block-column:first-of-type {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0 6px;
  }
  .wp-block-columns.flow .wp-block-column:first-of-type .small {
    display: block;
    flex-basis: 100%;
    margin-top: 4px;
  }
}
/*-----------------------------------------------------
	スケジュール
------------------------------------------------------*/
.wp-block-columns.sch {
	position: relative;
	align-items: stretch !important;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #d9d9d9;
}
.wp-block-columns.sch::after {
		display: none;
	}
.wp-block-columns.sch .wp-block-column {
  display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: left;
}
.wp-block-columns.sch .wp-block-column p {
  margin-bottom: 0;
}
.wp-block-columns.sch .wp-block-column:first-of-type {
	position: relative;
	padding: 20px 10px;
	background: var(--main-color);
	border-radius: 10px;
	font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.1em;
	color: #fff;
	text-align: center;
}
.wp-block-columns.sch .wp-block-column:first-of-type::after {
  content: "";
  display: block;
  position: absolute;
	bottom: -34px;
	left: 50%;
	transform: translateX(-50%);
  width: 65px;
  height: 26px;
  background: url("../img/common/down.webp") no-repeat center center;
  background-size: cover;
}
.wp-block-columns.sch.none {
  border: none;
}
.wp-block-columns.sch.none .wp-block-column:first-of-type::after {
  display: none;
}
.wp-block-columns.sch.red .wp-block-column:first-of-type {
  background: #FF5AA3;
}
@media screen and (max-width: 781px) {
	.wp-block-columns.sch {
		gap: 1em;
	}
	.wp-block-columns.sch .wp-block-column {
		flex-direction: row;
	}
	.wp-block-columns.sch .wp-block-column:first-of-type {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0 6px;
  }
	.wp-block-columns.sch .wp-block-column:first-of-type::after {
		display: none;
	}
	.wp-block-columns.sch::after {
		content: "";
		display: block;
		position: absolute;
		bottom: -14px;
		left: 50%;
		transform: translateX(-50%);
		width: 65px;
		height: 26px;
		background: url("../img/common/down.webp") no-repeat center center;
		background-size: cover;
	}
	.wp-block-columns.sch.none::after {
		display: none;
	}
}
/*-----------------------------------------------------
	手術動画
------------------------------------------------------*/
.case_list .wp-block-column .wp-block-image {
	position: relative;
	font-weight: 700;
	margin-bottom: 20px;
}
.case_list .wp-block-column .wp-block-image .wp-element-caption {
	margin-bottom: 0;
}
.case_list .wp-block-column .wp-block-image::after {
  content: "";
  display: block;
  position: absolute;
	top: calc(50% - 15px);
	right: -31px;
	transform: translateY(-50%) rotate(-90deg);
	z-index: 1;
  width: 30px;
  height: 30px;
  background: url("../img/common/mega_arrow.svg") no-repeat center center;
  background-size: cover;
}
.case_list .wp-block-column:last-of-type .wp-block-image::after, .case_list .wp-block-column.none .wp-block-image::after {
  display: none;
}
@media screen and (max-width: 1000px) {
	.case_list .wp-block-column .wp-block-image::after {
		top: calc(50% - 10px);
		right: -27px;
		width: 20px;
		height: 20px;
	}
}
@media screen and (max-width: 781px) {
  .case_list .wp-block-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 0 40px;
  }
  .case_list .wp-block-column {
    flex: 0 0 calc((100% - 40px) / 2);
    max-width: calc((100% - 40px) / 2);
    margin: 0 !important;
  }
  .case_list .wp-block-column .wp-block-image::after {
    display: none;
    right: -27px;
  }
  .case_list .wp-block-column:nth-child(odd) .wp-block-image::after {
    display: block;
  }
  .case_list .wp-block-column:last-child .wp-block-image::after, .wp-block-image::after, .case_list .wp-block-column.none .wp-block-image::after {
    display: none;
  }
}
/*-----------------------------------------------------
	その他
------------------------------------------------------*/
.main .pink_box {
	padding: 50px 40px;
	background: #F0E6F6;
}
@media screen and (max-width: 750px) {
	.main .pink_box {
		padding: 50px 20px;
	}
}
/*-----------------------------------------------------
	#treatment
------------------------------------------------------*/
#treatment {
	padding-top: 60px;
	padding-bottom: 120px;
	background: #e8e0ff;
}
#treatment h3 {
	margin-bottom: 60px;
	padding: 5px 10px;
	background: #fff;
	border-radius: 9999px;
	font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.1em;
	color: var(--main-color);
  text-align: center;
}
.treatment {
	gap: 26.5px;
	margin-bottom: 60px;
}
.treatment:last-of-type {
	margin-bottom: 0;
}
.treatment_child {
	width: calc((100% - 53px) / 3);
	background: #fff;
	border-radius: 10px;
	box-shadow: 0px 20px 30px 0px rgba(0, 0, 0, 0.1);
}
.treatment:last-of-type .treatment_child {
	width: calc((100% - 79.5px) / 4);
}
.treatment_child img {
	width: 100%;
	border-radius: 10px 10px 0 0;
}
.treatment_child_inner {
	padding: 40px;
}
.treatment_child_inner h4 {
	margin-bottom: 20px;
	font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.1em;
  text-align: center;
}
.treatment_child_inner h4 span {
	display: block;
	margin-top: 20px;
	font-size: 18px;
	color: var(--main-color);
}
@media screen and (max-width: 1360px) {
	.treatment_child_inner h4 {
		font-size: 25px;
	}
	.treatment_child_inner h4 span {
		font-size: 16px;
	}
}
@media screen and (max-width: 1000px) {
	.treatment_child, .treatment:last-of-type .treatment_child {
		width: calc((100% - 26.5px) / 2);
	}
}
@media screen and (max-width: 750px) {
	#treatment {
		padding-top: 60px;
		padding-bottom: 56px;
	}
	#treatment h2 {
		margin-bottom: 40px;
	}
	#treatment h3 {
		margin-bottom: 40px;
	}
	.treatment {
		gap: 10px;
	}
	.treatment_child, .treatment:last-of-type .treatment_child {
		width: calc((100% - 10px) / 2);
	}
	.treatment_child_inner {
		padding: 30px 10px;
	}
	.treatment_child_inner h4 {
		font-size: 20px;
	}
	.treatment_child_inner h4 span {
		display: block;
		font-size: 16px;
	}
}
/*-----------------------------------------------------
	投稿
------------------------------------------------------*/
.post_layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 80px;
}
.post_thumb {
  margin: 20px 0 30px;
}
.post_thumb img {
  width: 100%;
  height: auto;
  display: block;
}
.sidebar_box + .sidebar_box {
  margin-top: 30px;
}
.sidebar_list {
  list-style-type: none;
	padding: 20px;
  background: #FFF5F5;
}
.sidebar_list li a {
  text-decoration: none;
}
.sidebar_item + .sidebar_item{
  margin-top: 10px;
}
.sidebar_date {
  display: block;
  font-size: 14px;
  opacity: .7;
}
@media (max-width: 1000px){
  .post_layout {
    grid-template-columns: 1fr;
		gap: 30px;
  }
  .post_sidebar {
    margin-top: 30px;
  }
}

/*-----------------------------------------------------
	アーカイブリスト
------------------------------------------------------*/
.archive_list {
	gap: 30px;
}
.archive_list_child {
	display: block;
	position: relative;
	width: 100%;
	padding-right: 22px;
	padding-bottom: 20px;
	border-bottom: 1px solid #d9d9d9;
}
.archive_list_child::after {
  content: "";
  display: block;
  position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
  width: 7px;
  height: 13px;
  background: url("../img/common/b_arrow.svg") no-repeat center center;
  background-size: cover;
}
.archive_list_child .date {
	margin-bottom: 15px;
  font-size: 12px;
	font-weight: 400;
	line-height: 1.7;
	letter-spacing: 0.1em;
}
.archive_list_child p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
	display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
	.archive_list_child .date {
		margin-bottom: 10px;
	}
	.archive_list_child p {
		-webkit-line-clamp: 3;
	}
}
/*-----------------------------------------------------
	#news
------------------------------------------------------*/
.news_l {
  width: 300px;
}
.news_l h2 {
	font-size: 24px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0.1em;
	color: var(--main-color);
}
.news_l h2 span {
	display: inline-block;
	position: relative;
	margin-bottom: 10px;
	font-family: "Marcellus", serif;
  font-size: 60px;
	font-weight: 400;
	line-height: 1;
	color: var(--text-color);
}
.news_r {
	display: flex;
	flex-direction: column;
	gap: 30px;
  width: calc(100% - 300px);
}
.news_list {
	position: relative;
	padding-right: 22px;
	padding-bottom: 20px;
	border-bottom: 1px solid #d9d9d9;
}
.news_list::after {
  content: "";
  display: block;
  position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
  width: 7px;
  height: 13px;
  background: url("../img/common/b_arrow.svg") no-repeat center center;
  background-size: cover;
}
.news_list .date {
	margin-bottom: 15px;
  font-size: 12px;
	font-weight: 400;
	line-height: 1.7;
	letter-spacing: 0.1em;
}
.news_list p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
	display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.news_link {
	margin-top: -40px;
}
@media screen and (max-width: 1030px) {
	.news_l {
		width: 100%;
		margin-bottom: 30px;
	}
	.news_r {
		width: 100%;
	}
	.news_link {
		width: 100%;
		margin-top: 50px;
		text-align: center;
	}
}
@media screen and (max-width: 750px) {
	.news_l h2 {
		margin-bottom: 40px;
		font-size: 18px;
		text-align: center;
	}
	.news_l h2 span {
		font-size: 40px;
	}
	.news_list .date {
		margin-bottom: 10px;
	}
	.news_list p {
		-webkit-line-clamp: 3;
	}
	.news_link {
		margin-top: 40px;
	}
	.news_link a {
		text-align: left;
	}
}
/*-----------------------------------------------------
	#case
------------------------------------------------------*/
.tab_list {
  display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	position: relative;
  width: fit-content;
	max-width: 100%;
  margin: 0 auto 10px;
  padding: 37px 0;
}
.tab_list_item {
  text-align: center;
}
.tab_list_link {
  display: inline-block;
  padding: 10px 20px;
  background: #dadada;
  border-radius: 100px;
  font-size: 20px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.1em;
  color: var(--sub-color);
  cursor: pointer;
  transition: .3s;
}
.tab_list_link.is-current, .tab_list_link:hover {
  background: var(--main-color);
  color: #fff;
  transition: .3s;
}
@media screen and (max-width: 950px) {
  .tab_list {
    width: 100%;
  }
  .tab_list_item {
    width: calc((100% - 20px) / 3);
  }
	.tab_list_link {
		display: block;
	}
}
@media screen and (max-width: 750px) {
  .tab_list {
		gap: 20px 10px;
		margin: -43px auto 30px;
		padding: 27px 0 21px;
  }
  .tab_list_item {
    width: calc((100% - 10px) / 2);
  }
	.tab_list_link {
		font-size: 16px;
	}
}

.case_box {
  display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 30px;
}
.case_box a {
  display: block;
  width: calc((100% - 60px) / 3);
}
.case_img {
	width: 100%;
  margin-bottom: 15px;
}
.before_after_img {
  width: 50%;
  text-align: center;
}
.before_after_img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.case_box h3 {
  margin-bottom: 15px;
  font-size: 17px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.1em;
}
.case_box p {
  font-size: 13px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1140px) {
  .before_after_img img {
    height: 17.544vw;
  }
}
@media screen and (max-width: 900px) {
  .case_box {
    gap: 10px;
  }
  .case_box a {
    width: calc((100% - 20px) / 2);
  }
  .before_after_img img {
    height: 25.556vw;
  }
}
@media screen and (max-width: 414px) {
  .case_box {
    gap: 30px 0;
    margin-bottom: 40px;
  }
  .case_box a {
    width: 100%;
  }
  .before_after_img img {
    height: 48.309vw;
  }
}

/*-----------------------------------------------------
	ページネーション
------------------------------------------------------*/
.pagination {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}
a.page-numbers, .pagination .current {
  display: block;
  margin: 0 3px;
	padding: 7px 9px;
	border: 1px solid var(--main-color);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
	text-decoration: none;
  color: var(--main-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(--main-color);
	color: #fff;
  opacity: 1;
}
a.page-numbers.next, a.page-numbers.prev {
  position: relative;
  width: 27.78px;
  height: 30px;
  margin: 0 10px;
  background: var(--main-color);
  border: 1px solid var(--main-color);
  color: #fff;
}
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%);
  -webkit-transform: translate(-50%, -50%);
}
a.page-numbers.prev img {
  transform: translate(-50%, -50%) scaleX(-1);
  -webkit-transform: translate(-50%, -50%) scaleX(-1);
}
a.page-numbers.next:hover, a.page-numbers.prev:hover {
	background: var(--main-color);
  opacity: .6;
}
/*-----------------------------------------------------
	.information
------------------------------------------------------*/
.information {
	padding-top: 120px;
	padding-bottom: 120px;
}
.hour {
	padding: 60px 50px;
	background: #fff;
	border: 1px solid #d9d9d9;
	border-radius: 10px;
	box-shadow: 0px 20px 30px 0 rgba(0,0,0,0.1);
}
.hour h2 {
	margin-bottom: 33px;
	font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.1em;
	color: var(--main-color);
	text-align: center;
}
.hour h2 span {
	display: block;
	margin-bottom: 10px;
	font-family: "Marcellus", serif;
	font-size: 60px;
  font-weight: 400;
	color: var(--text-color);
}
.hour .flex {
	align-items: center;
	align-items: stretch;
}
.hour_l {
	width: 25.4%;
	padding-right: 52px;
	border-right: 1px solid #d9d9d9;
}
.hour_l h3 {
	margin-bottom: 20px;
	padding: 15px 0;
	border-top: 1px solid #d9d9d9;
	border-bottom: 1px solid #d9d9d9;
	font-size: 16px;
	font-weight: 700;
	text-align: center;
}
.hour_l table {
	margin-bottom: 20px;
	width: 100%;
	font-size: 16px;
	font-weight: 700;
	text-align: center;
}
.hour_l table tr th {
	padding: 13.5px 20px;
	background: #F0E6F6;
	color: var(--main-color);
	text-align: center;
}
.hour_l table tr td {
	padding: 8.5px 20px;
	border-bottom: 1px solid #d9d9d9;
	text-align: center;
}
.hour_l ul li {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.6;
	letter-spacing: 0.04em;
	text-align: center;
}
.hour_l p {
	margin-top: 20px;
	font-size: 14px;
	font-weight: 700;
	text-align: center;
}
.hour_l span.pink {
	color: var(--main-color);
}
.hour_l .sup {
  position: relative;
}
.hour_l .sup sup {
	position: absolute;
	top: 0;
	left: calc(50% + 13px);
	transform: translateX(-50%);
  font-size: 0.7em;
  vertical-align: super;
}
.hour_c {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 39.7%;
	padding: 0 52px;
	text-align: center;
}
.hour_c h4 {
	margin-bottom: 20px;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.6;
	letter-spacing: 0.1em;
}
.hour_c address {
	margin-bottom: 30px;
	padding: 20px 10px;
	border-top: 1px solid #d9d9d9;
	border-bottom: 1px solid #d9d9d9;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.6;
	letter-spacing: 0.1em;
}
.hour_c a.hour_tel {
	display: block;
	margin-bottom: 32px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.1em;
	color: var(--main-color);
	text-align: center;
}
.hour_c a.hour_tel span {
	display: inline-block;
	position: relative;
	margin-top: 5px;
	padding-left: 40px;
	font-size: 34px;
	color: var(--text-color);
}
.hour_c a.hour_tel span::before {
  content: "";
  display: block;
  position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: url("../img/common/tel_icon.svg") no-repeat center center;
  background-size: cover;
}
.hour_btn {
	justify-content: space-between;
	align-items: center;
	width: 100%;
	margin-bottom: 30px;
}
.hour_btn a {
	display: block;
	width: calc(50% - 5px);
	padding: 9.5px 10px;
	background: rgba(136, 120, 228, 1);
	background: linear-gradient(90deg, rgba(136, 120, 228, 1) 0%, rgba(243, 154, 251, 1) 100%);
	border: 1px solid transparent;
  background-clip: padding-box;
	border-radius: 10px;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.1em;
	color: #fff;
	text-align: center;
}
.hour_btn a span {
	display: inline-block;
	position: relative;
	margin-top: 4px;
	padding-left: 28px;
	font-size: 18px;
}
.hour_btn a span::before {
  content: "";
  display: block;
  position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: url("../img/common/web_icon.svg") no-repeat center center;
  background-size: cover;
}
.hour_btn a:last-of-type {
	padding: 17.5px 10px;
	background: #ebf9eb;
	color: #00b900;
}
.hour_btn a:last-of-type span {
	margin-top: 0;
	padding-left: 0;
}
.hour_btn a:last-of-type span::before {
  display: none;
}
.hour_link {
	display: block;
	width: 100%;
	padding: 18px 10px;
	border-radius: 10px;
	border: 1px solid var(--main-color);
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.1em;
	text-align: center;
}
.hour_r {
	width: 34.9%;
}
.hour_r iframe {
	width: 100%;
	height: 100%;
}

@media screen and (max-width: 1360px) {
	.hour {
		padding: 40px 30px;
	}
	.hour_l {
		padding-right: 20px;
	}
	.hour_c {
		padding: 0 20px;
	}
}
@media screen and (max-width: 1100px) {
	.hour_l {
		width: 44%;
	}
	.hour_c {
		width: 56%;
	}
	.hour_r {
		width: 100%;
		margin-top: 30px;
	}
	.hour_r iframe {
		height: 350px;
	}
}
@media screen and (max-width: 750px) {
	.information {
		padding-top: 60px;
		padding-bottom: 60px;
	}
	.hour {
		padding: 40px 20px;
	}
	.hour h2 {
		margin-bottom: 40px;
		font-size: 30px;
	}
	.hour h2 span {
		font-size: 37px;
	}
	.hour_l {
		width: 100%;
		padding-right: 0;
		border-right: none;
	}
	.hour_l h3 {
		padding: 10px 0;
		font-size: 24px;
	}
	.hour_l p {
		margin-bottom: 30px;
	}
	.hour_c {
		width: 100%;
		padding: 0 20px;
	}
	.hour_r iframe {
		height: 106.667vw;
	}
}
@media screen and (max-width: 414px) {
	.hour_c {
		padding: 0;
	}
}
/*-----------------------------------------------------
	#footer_hour
------------------------------------------------------*/
#footer_hour {
	padding-top: 120px;
	padding-bottom: 120px;
}
@media screen and (max-width: 750px) {
	#footer_hour {
		padding-top: 60px;
		padding-bottom: 60px;
	}
}
/*-----------------------------------------------------
	footer
------------------------------------------------------*/
footer {
  padding-top: 40px;
	padding-bottom: 40px;
  background: var(--main-color);
	color: #fff;
  text-align: center;
}
footer .wrap .flex {
	gap: 24px;
  margin-top: 40px;
  margin-bottom: 40px;
}
.footer_child {
  width: calc((100% - 72px) / 4);
  text-align: left;
}
.footer_child h3 {
	margin-bottom: 10px;
  font-size: 18px;
	font-weight: 700;
	line-height: 1.6;
}
.footer_child h3 a {
	color: #fff;
}
.footer_child ul {
	padding-top: 30px;
	border-top: 1px solid #dadada;
}
.footer_child ul li {
	margin-bottom: 40px;
}
.footer_child ul li:last-child {
	margin-bottom: 0;
}
.footer_child ul li a {
	display: inline-block;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: 0.1em;
	color: #fff;
}
.footer_info {
	gap: 0 !important;
  margin-top: 0 !important;
}
.footer_info_l {
	width: 41%;
	padding: 40px;
	background: #D3B4E7;
	border-radius: 10px 0 0 10px;
	color: #fff;
	text-align: left;
}
.footer_info_l h4 {
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 1px solid #fff;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.6;
}
.footer_info_l address {
	margin-bottom: 10px;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.6;
}
.footer_info_l a {
	display: block;
	margin-bottom: 10px;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.6;
	letter-spacing: 0.1em;
	color: #fff;
}
.footer_info_l p {
	font-size: 18px;
	font-weight: 500;
	line-height: 2.3;
}
.footer_info_l p.footer_info_note {
	margin-top: 6px;
	font-size: 14px;
	line-height: 1.8;
}
.footer_info_r {
	width: 59%;
	padding: 20px 40px 40px;
	background: #fff;
	border-radius: 0 10px 10px 0;
	text-align: left;
}
ul.footer_link {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin-bottom: 40px;
}
ul.footer_link li {
	position: relative;
	width: calc((100% - 20px) / 3);
}
ul.footer_link li a {
	display: block;
	padding: 19px 10px;
	background: #00B900;
	border-radius: 10px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.1em;
	color: #fff;
	text-align: center;
}
ul.footer_link li a span {
	display: inline-block;
	position: relative;
	padding-left: 37px;
}
ul.footer_link li a span::before {
  content: "";
  display: block;
  position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
  width: 27px;
  height: 27px;
  background: url("../img/common/line_icon.svg") no-repeat center center;
  background-size: cover;
}
ul.footer_link li:first-of-type a {
	background: rgba(136, 120, 228, 1);
	background: linear-gradient(90deg, rgba(136, 120, 228, 1) 0%, rgba(243, 154, 251, 1) 100%);
  background-clip: padding-box;
}
ul.footer_link li:first-of-type a span {
	padding-left: 28px;
}
ul.footer_link li:first-of-type a span::before {
  width: 18px;
  height: 18px;
  background: url("../img/common/web_icon.svg") no-repeat center center;
  background-size: cover;
}
.footer_info_r h4 {
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--main-color);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.6;
	color: var(--main-color);
}
ul.footer_group_link {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}
ul.footer_group_link li a {
	display: block;
	padding: 0 10px;
	border: 1px solid var(--main-color);
	border-radius: 10px;
	font-size: 18px;
	font-weight: 500;
	line-height: 2;
	letter-spacing: 0.1em;
	color: var(--main-color);
}
footer small {
	font-size: 12px;
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 1360px) {
	ul.footer_link li a {
		font-size: 14px;
	}
}
@media screen and (max-width: 1100px) {
	.footer_child {
		width: calc((100% - 24px) / 2);
	}
	.footer_info_l {
		width: 100%;
		border-radius: 10px 10px 0 0;
	}
	.footer_info_r {
		width: 100%;
		border-radius: 0 0 10px 10px;
	}
}
@media screen and (max-width: 750px) {
	.footer_child {
		width: 100%;
	}
	.footer_info_l {
		padding: 40px 20px;
		text-align: center;
	}
	.footer_info_l a {
		font-size: 27px;
	}
	.footer_info_r {
		padding: 20px 20px 40px;
		text-align: center;
	}
	ul.footer_link {
		flex-direction: column;
	}
	ul.footer_link li {
		width: 100%;
		max-width: 300px;
	}
	ul.footer_group_link {
		flex-direction: column;
	}
}

/*-----------------------------------------------------
	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;
   }
}