@charset "UTF-8";
/*
	Filename: common
	Version: 1.0.1
*/
/*-----------------------------------------------------
	Utility
------------------------------------------------------*/
:root {
	--font-serif: "Zen Old Mincho", serif;
	--font-en: "Marcellus SC", serif;
  --text-color: #1C1919;
	--green: #233E39;
}
/* --------------------------------
   Base Typography
-------------------------------- */
html {
  font-family: var(--font-serif);
  font-size: 62.5%;
  font-weight: 400;
}
body {
	background: #E8E2DF;
  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;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 5;
  background: rgba(69, 61, 57, 0.32);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
body.is-mega-open::before {
  opacity: 1;
  visibility: visible;
}
/*-----------------------------------------------------
	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 {
	position: relative;
  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% - 32px);
  }
}
.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: 96px;
}
body.is-header-scrolled #header, #header.is-default-header {
	background: #fff;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
.header_inner {
  position: relative;
}
.header_logo a {
  position: absolute;
  top: 26px;
  left: 24px;
  z-index: 2;
  display: block;
  width: 246px;
  height: 44px;
  background-image: url("../img/common/w_logo.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  text-indent: -9999px;
  overflow: hidden;
  white-space: nowrap;
}
body.is-header-scrolled .header_logo a, #header.is-default-header .header_logo a {
	background-image: url("../img/common/logo.svg");
}
.header_nav {
  position: absolute;
  top: 0;
  right: 24px;
  z-index: 1;
  width: 100%;
}
.header_nav ul.flex {
	justify-content: flex-end;
  align-items: center;
	gap: 24px;
}
.header_nav ul.flex > li {
  position: relative;
}
.header_nav ul.flex > li > a span {
  display: block;
	font-family: var(--font-en);
	font-size: 12px;
	font-weight: 400;
	line-height: 1.7;
	letter-spacing: 0.1em;
}
.header_nav ul.flex > li > a {
  position: relative;
  display: block;
  padding: 25px 0;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.7;
	letter-spacing: 0.1em;
	color: #fff;
	text-align: center;
}
body.is-header-scrolled .header_nav ul.flex > li > a, #header.is-default-header .header_nav ul.flex > li > a {
	color: var(--text-color);
}
.header_nav ul.flex > li.header_tel > a span {
	font-size: 22px;
	line-height: 1.2;
}
body.is-header-scrolled .header_nav ul.flex > li.header_tel > a span, #header.is-default-header .header_nav ul.flex > li.header_tel > a span {
	color: var(--green);
}
.header_nav ul.flex > li.header_tel > a {
  position: relative;
	padding-left: 32px;
	font-size: 12px;
	font-weight: 500;
}
.header_nav ul.flex > li.header_tel > a::before {
  content: "";
  display: block;
  position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: url("../img/common/tel_icon.svg") no-repeat center center;
  background-size: cover;
}
body.is-header-scrolled .header_nav ul.flex > li.header_tel > a::before, #header.is-default-header .header_nav ul.flex > li.header_tel > a::before {
	background: url("../img/common/g_tel_icon.svg") no-repeat center center;
	background-size: cover;
}
.header_nav ul.flex > li.has-child {
  position: relative;
}
.header_nav ul.flex > li.has-child > ul {
	display: none;
  position: fixed;
  top: 113px;
  left: 100px;
  right: 100px;
  z-index: 100;
  width: auto;
  max-width: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  text-align: left;
  transform: none;
}
.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:hover > ul {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: none;
}
.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-wrap: wrap;
	flex-direction: row;
	gap: 24px;
	padding: 48px;
	background: #fff;
}
.header_nav ul.flex li.has-child ul li ul.mega li {
  width: calc((100% - 96px) / 5);
}
.header_nav ul.flex li.has-child ul li ul.mega li a {
  display: block;
	position: relative;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0.1em;
}
.header_nav ul.flex li.has-child ul li ul.mega li ul {
  flex-direction: column;
	gap: 4px;
	margin-top: 4px;
}
.header_nav ul.flex li.has-child ul li ul.mega li ul li {
  width: 100%;
	margin-left: 25px;
	list-style-type: disc;
}
@media screen and (max-width: 1350px) {
	.header_logo a {
		width: 183px;
		height: 36px;
	}
	.header_nav ul.flex {
		gap: 10px;
	}
	.header_nav ul.flex > li > a span {
		font-size: 11px;
	}
	.header_nav ul.flex > li > a {
		font-size: 12px;
	}
	.header_nav ul.flex > li.header_tel > a span {
		font-size: 16px;
	}
	.header_nav ul.flex > li.header_tel > a {
		padding-left: 23px;
		font-size: 10px;
	}
	.header_nav ul.flex > li.header_tel > a::before {
		width: 15px;
		height: 15px;
	}
	.header_nav ul.flex > li.has-child > ul {
		left: 40px;
		right: 40px;
	}
	.header_nav ul.flex li.has-child ul li ul.mega li {
		width: calc((100% - 48px) / 3);
	}
}
@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_nav, .header_top {
    display: none;
  }
	#header {
		height: 72px !important;
		background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
	}
	.header_logo {
		height: 72px !important;
  }
  .header_logo a {
		top: 18px;
		left: 16px;
		width: 183px;
		height: 36px;
  }
	/* SPメニュー */
  .hamburger {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10002;
    width: 72px ;
    height: 72px;
    padding: 0;
    touch-action: manipulation;
  }
	body.is-header-scrolled .hamburger, #header.is-default-header .hamburger, body.page-template-default .hamburger, body.post-type-archive .hamburger, body.single .hamburger{
		background: var(--green);
	}
	.hamburger:hover {
    opacity: 1;
  }
  .hamburger__icon {
    position: relative;
  }
  .hamburger__icon, .hamburger__icon::before, .hamburger__icon::after {
    width: 20px;
    height: 1px;
		position: absolute;
    top: 34px;
		right: 26px;
    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 {
		background: var(--green);
	}
	.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: 72px;
		left: 0;
		display: table;
		table-layout: fixed;
		width: 100%;
		height: calc(80% - 72px);
	}
	.hum-nav_inner {
		width: 100%;
		height: 100%;
		padding: 40px 32px;
		background: #E8E2DF;
	}
	.hum-nav .header_logo {
		position: fixed;
		top: 0;
		left: 0;
		z-index: 10;
		width: 100%;
		height: 72px;
		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: 8px 0;
		font-size: 16px;
		font-weight: 600;
		line-height: 1.7;
		letter-spacing: 0.1em;
	}
	.hum-nav_inner ul li a span {
		display: block;
		font-family: var(--font-en);
		font-size: 12px;
		font-weight: 400;
	}
	.hum-nav_inner ul > li > a::after {
		content: "";
		display: block;
		position: absolute;
		top: 50%;
		right: 0;
		transform: translateY(-50%);
		width: 17px;
		height: 8px;
		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 55px 16px 0 !important;
	}
	.hum-nav_parent_link::before {
		content: "";
		display: block;
		position: absolute;
		top: 50%;
		right: 35px;
		transform: translateY(-50%);
		width: 17px;
		height: 8px;
		background: url("../img/common/hum-nav_arrow.svg") no-repeat center center;
		background-size: cover;
	}
	.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);
		border-radius: 8px;
	}
	.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: 15px;
		height: 15px;
		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: 15px;
		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 ul {
		margin-left: 20px;
	}
	.hum-nav_menu_list li a {
		position: relative;
		display: block;
		padding-left: 41px !important;
		font-size: 14px !important;
	}
	.hum-nav_menu_list li a::before {
		content: "";
		position: absolute;
		left: 16px;
		top: 50%;
		transform: translateY(-50%);
		width: 17px;
		height: 8px;
		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: 326px;
		max-width: 100%;
		margin: 24px auto 0;
	}
	ul.nav_cv li a {
		display: block;
		padding: 15px 10px;
		background: var(--green);
		color: #fff;
		text-align: center;
	}
	ul.nav_cv li a::after {
		display: none;
	}
	ul.nav_cv li a span {
		position: relative;
		display: inline-block;
		padding-left: 44px;
		font-size: 12px;
		font-weight: 500;
		line-height: 1;
		letter-spacing: 0.1em;
	}
	ul.nav_cv li 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;
	}
	ul.nav_cv li a em {
		display: block;
		font-size: 20px;
		font-style: normal;
		font-weight: 400;
		line-height: 1;
	}
	ul.nav_cv li:last-of-type a span::before {
		background: url("../img/common/nav_cv_web.svg") no-repeat center center;
		background-size: cover;
	}
}

#web_fix {
	position: fixed;
	right: 40px;
	bottom: 8.5%;
	z-index: 30;
}
@media screen and (max-width: 1000px) {
	#web_fix {
		position: fixed;
		right: 40px;
		bottom: 8.5%;
		z-index: 30;
	}
}
@media screen and (max-width: 750px) {
	#web_fix {
		position: absolute;
		right: 16px;
		bottom: 16px;
	}
	#web_fix img {
		width: 80px;
		height: 80px;
	}
}


@media screen and (max-width: 750px) {
	#fixed-menu {
		display: block;
		position: fixed;
		right: 0;
		bottom: 0;
		z-index: 30;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: opacity 0.3s ease, visibility 0.3s ease;
		width: 100%;
	}
	#fixed-menu.is-show {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}
	ul.fixed_nav_cv {
		display: flex;
		justify-content: space-between;
		width: 100%;
		background: #fff;
	}
	ul.fixed_nav_cv li {
		width: calc(50% - 0.5px);
	}
	ul.fixed_nav_cv li a {
		display: block;
		padding: 15px 5px;
		background: var(--green);
		color: #fff;
		text-align: center;
	}
	ul.fixed_nav_cv li a span {
		position: relative;
		display: inline-block;
		padding-left: 32px;
		font-size: 16px;
		font-weight: 500;
		line-height: 1;
		letter-spacing: 0.1em;
	}
	ul.fixed_nav_cv li:first-of-type a span {
		font-family: var(--font-en);
	}
	ul.fixed_nav_cv li a span::before {
		content: "";
		display: block;
		position: absolute;
		top: 50%;
		left: 0;
		transform: translateY(-50%);
		width: 24px;
		height: 24px;
		background: url("../img/common/tel_icon.svg") no-repeat center center;
		background-size: cover;
	}
	ul.fixed_nav_cv li:last-of-type a span::before {
		background: url("../img/common/nav_cv_web.svg") no-repeat center center;
		background-size: cover;
	}
}
/*-----------------------------------------------------
	midasi
------------------------------------------------------*/
.midasi_01 {
	position: relative;
	z-index: 0;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.7;
	letter-spacing: 0.1em;
	text-align: center;
}
.midasi_01 span {
	display: block;
	font-family: var(--font-en);
	font-size: 72px;
	font-weight: 400;
	line-height: 1.25;
}
.midasi_01 span.title_bg {
	display: block;
	position: absolute;
	top: -115px;
	left: 0;
	z-index: -1;
	width: 100%;
	font-size: 200px;
	font-weight: 400;
	line-height: 1;
	color: #DFDAD7;
}
@media screen and (max-width: 1240px) {
	.midasi_01 span.title_bg {
		top: -7.274vw;
		font-size: 15.129vw;
	}
}
@media screen and (max-width: 750px) {
	.midasi_01 {
		overflow: visible;
		font-size: 16px;
	}
	.midasi_01 span {
		font-size: 48px;
	}
	.midasi_01 span.title_bg {
		top: -38px;
		left: 50%;
		width: max-content;
		min-width: 100%;
		white-space: nowrap;
		transform: translateX(-50%);
		font-size: 88px;
		text-align: center;
	}
}
/*-----------------------------------------------------
	link_more
------------------------------------------------------*/
.link_more_01 {
	display: inline-block;
	position: relative;
	padding-right: 64px;
	font-family: var(--font-en);
	font-size: 20px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.1em;
}
.link_more_01::after {
  content: "";
  display: block;
  position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
  width: 49px;
  height: 8px;
	background: url("../img/common/link_arrow.svg") no-repeat center center;
	background-size: cover;
}
.link_more_02 {
	display: inline-block;
	position: relative;
	width: 320px;
	max-width: 100%;
	padding: 26px 10px;
	background: var(--green);
	font-family: var(--font-en);
	font-size: 20px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.1em;
	text-align: center;
	color: #fff;
}
.link_more_02::after {
  content: "";
  display: block;
  position: absolute;
	top: 50%;
	right: 36px;
	transform: translateY(-50%);
  width: 17px;
  height: 8px;
	background: url("../img/common/link_arrow_02.svg") no-repeat center center;
	background-size: cover;
}
@media screen and (max-width: 750px) {
	.link_more_01 {
		font-size: 16px;
	}
	.link_more_02 {
		padding: 20px 10px;
		font-size: 16px;
	}
}
/*-----------------------------------------------------
	#page_mv
------------------------------------------------------*/
#page_mv {
  position: relative;
	top: 0;
  z-index: 0;
  width: 100%;
  height: 400px;
	margin-top: 97px;
}
#page_mv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
#page_mv .page_title {
  position: absolute;
	bottom: 0;
	left: 0;
	padding: 32px 80px;
	background: #E8E2DF;
	text-align: left;
}
#page_mv .page_title h1, #page_mv .page_title div {
	font-size: 32px;
	font-weight: 500;
	line-height: 1.7;
	letter-spacing: 0.1em;
}
#page_mv .page_title h1 span, #page_mv .page_title div span {
	display: block;
	font-family: var(--font-en);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.25;
}
.breadcrumbs {
	width: 980px;
	margin: 16px auto 120px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.7;
	letter-spacing: 0.05em;
}
.breadcrumbs a {
  text-decoration: none;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.7;
	letter-spacing: 0.05em;
}
.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;
}
@media screen and (max-width: 1060px) {
	.breadcrumbs {
		width: calc(100% - 80px);
	}
}
@media screen and (max-width: 1000px) {
	#page_mv {
		margin-top: 72px;
	}
}
@media screen and (max-width: 750px) {
	#page_mv {
		height: 240px;
	}
	#page_mv .page_title {
		padding: 16px;
	}
	#page_mv .page_title h1, #page_mv .page_title div {
		font-size: 20px;
	}
	#page_mv .page_title h1 span, #page_mv .page_title div span {
		font-size: 14px;
	}
	.breadcrumbs {
		width: calc(100% - 32px);
		margin-bottom: 64px;
		font-size: 14px;
	}
	.breadcrumbs a {
		font-size: 14px;
	}
}
/*-----------------------------------------------------
	目次
------------------------------------------------------*/
#ez-toc-container {
	width: 100% !important;
	max-width: 100%;
	margin: 0 auto;
  padding: 48px;
  background: #D8CFC9 !important;
  border: none !important;
  box-shadow: none;
	border-radius: 0;
}
.ez-toc-title-container {
	display: block !important;
	width: 100%;
}
.ez-toc-title-container span {
	display: none !important;
}
div#ez-toc-container .ez-toc-title {
	display: block !important;
	margin-bottom: 8px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.7;
	letter-spacing: 0.05em;
	text-align: center;
}
#ez-toc-container nav {
	width: 100%;
}
ul.ez-toc-list li a {
	display: block !important;
	font-size: 16px !important;
	font-weight: 500;
	line-height: 2;
	letter-spacing: 0.05em;
	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 {
		padding: 24px;
	}
	ul.ez-toc-list li a {
		font-size: 14px !important;
	}
}
/*-----------------------------------------------------
	.main
------------------------------------------------------*/
.main {
	border-bottom: 1px solid #E8E2DF;
}
.main > .wp-block-group {
	padding-top: 120px;
	padding-bottom: 120px;
}
.main > .wp-block-group:first-of-type {
  padding-top: 0;
}
.main > .wp-block-group .wp-block-group__inner-container {
  width: 980px;
  margin: 0 auto;
}
.main > .wp-block-group:nth-of-type(even) {
  background: #D8CFC9;
}
@media screen and (max-width: 1060px) {
  .main > .wp-block-group .wp-block-group__inner-container {
    width: calc(100% - 80px);
  }
}
@media screen and (max-width: 750px) {
	.main > .wp-block-group {
		padding-top: 64px;
		padding-bottom: 64px;
	}
	.main > .wp-block-group:first-of-type {
		padding-top: 0;
	}
  .main > .wp-block-group .wp-block-group__inner-container {
    width: calc(100% - 32px);
  }
}
/*-----------------------------------------------------
	.main
------------------------------------------------------*/
.date_category .date {
	margin-bottom: 15px;
	font-family: var(--font-en);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.7;
	letter-spacing: 0.05em;
	color: var(--green);
}
h1.news_title {
  margin-bottom: 30px;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.1em;
}
.main .post_list_thumb, .main .post_list_thumb img:hover {
	transform: scale(1);
}
@media screen and (max-width: 750px) {
	h1.news_title {
		font-size: 22px;
	}
}

/*-----------------------------------------------------
	リンク
------------------------------------------------------*/
.main a {
  color: var(--green);
  text-decoration: underline;
}
p.link a {
	display: inline-block;
	position: relative;
	margin-top: 10px;
	padding-right: 20px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.7;
	letter-spacing: 0.1em;
}
p.link a::after {
  content: "";
  display: block;
  position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
  width: 17px;
  height: 8px;
  background: url("../img/common/link_arrow_03.svg") no-repeat center center;
  background-size: cover;
}
@media screen and (max-width: 750px) {
	p.link a {
		font-size: 14px;
	}
}
.main mark {
  font-style: normal;
}
.main hr {
  display: block;
  height: 1px;
  border: 0;   
  border-top: 1px solid #C3BFBD;
  margin: 3em 0;
  padding: 0;
}
.main h2 {
	margin-bottom: 64px;
	font-size: 30px;
	font-weight: 500;
	line-height: 1.7;
	letter-spacing: 0.1em;
	text-align: center;
}
.main h3 {
	position: relative;
	margin-top: 48px;
	margin-bottom: 48px;
	padding-bottom: 16px;
	font-size: 24px;
	font-weight: 500;
	line-height: 1.7;
	letter-spacing: 0.1em;
}
.main h3::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: #C3BFBD;
}
.main h3::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 120px;
	height: 2px;
	background: var(--green);
}
.main h3:first-of-type {
	margin-top: 0;
}
.main h4 {
  margin-bottom: 32px;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.05em;
	color: var(--green);
}
.main h5 {
  margin-bottom: 32px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.05em;
}
.main p {
  margin-bottom: 12px;
	font-size: 16px;
	font-weight: 500;
	line-height: 2;
	letter-spacing: 0.1em;
}
.main ul, .main ol {
  margin-bottom: 32px;
}
.main ul li {
  margin-bottom: 5px;
  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: 5px;
  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: 32px;
}
.main .wp-element-caption {
  font-size: 16px;
}
.main figure img {
  max-width: 100%;
  height: auto;
}
.main table {
	margin-bottom: 16px;
}
.main table tr th {
	padding: 16px;
	background: var(--green);
	border: 1px solid #C3BFBD;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.7;
	letter-spacing: 0.05em;
	vertical-align: middle;
	color: #fff;
	text-align: center !important;
}
.main table tr td {
	padding: 16px;
	background: #fff;
	border: 1px solid #DFDFDF;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.7;
	letter-spacing: 0.05em;
	vertical-align: middle;
}
.main .wp-block-embed-youtube,
.main .wp-block-embed__wrapper {
  width: 100%;
}
.main .wp-block-embed__wrapper {
  aspect-ratio: 16 / 9;
}
.main iframe[src*="youtube.com"],
.main iframe[src*="youtu.be"],
.main .wp-block-embed__wrapper iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  border: 0;
  aspect-ratio: 16 / 9;
}
@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-bottom: 40px;
		font-size: 24px;
	}
	.main h3 {
		margin-top: 40px;
		margin-bottom: 16px;
		padding-bottom: 16px;
		font-size: 20px;
	}
	.main h3:first-of-type {
		margin-top: 0;
	}
	.main h4 {
		margin-bottom: 16px;
		font-size: 20px;
	}
	.main h5 {
		margin-bottom: 16px;
		font-size: 16px;
	}
	.main p {
		font-size: 14px;
	}
	.main ul, .main ol {
		margin-bottom: 16px;
	}
	.main ul li {
		font-size: 14px;
	}
	.main ol li {
		font-size: 14px;
	}
	.main figure {
		margin-bottom: 16px;
	}
	.main .wp-element-caption {
		font-size: 14px;
	}
	.main table {
		margin-bottom: 16px;
	}
	.main table tr th {
		padding: 12px;
		font-size: 14px;
	}
	.main table tr td {
		padding: 12px;
		font-size: 14px;
	}
	.main .wp-block-column .wp-block-image .wp-element-caption {
		margin-bottom: 0;
	}
	:where(.wp-block-columns.is-layout-flex) {
		gap: 0 2em;
	}
}
/*-----------------------------------------------------
	治療の流れ
------------------------------------------------------*/
.flow {
	position: relative;
	display: block;
	margin-bottom: 59px;
	padding: 46px 40px 40px;
	background: #D8CFC9;
}
.flow.is-on-white {
	background: #D8CFC9;
}
.flow.is-on-blue {
	background: #E8E2DF;
}
.flow > .wp-block-column:first-child {
	position: absolute;
	top: -27px;
	left: 40px;
	width: auto;
	margin: 0;
}
.flow > .wp-block-column:first-child > div {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	width: 140px;
	height: 54px;
	background: var(--green);
	font-family: var(--font-en);
	font-size: 24px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.1em;
	color: #fff;
}
.flow > .wp-block-column:first-child > div span {
	display: inline;
	margin: 0;
	color: #fff;
	font-size: inherit;
	letter-spacing: inherit;
}
.flow > .wp-block-column:last-child {
	width: 100%;
	margin: 0;
}
.main .flow h3,
.main .flow h3:first-of-type {
	position: static;
	margin-bottom: 8px;
	padding: 0;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.7;
	letter-spacing: 0.1em;
}
.main .flow h3::before,
.main .flow h3::after {
	content: none;
	display: none;
}
.main .flow p {
	margin: 0;
	font-size: 16px;
	font-weight: 500;
	line-height: 2;
	letter-spacing: 0.1em;
}
.flow::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 110px;
	width: 1px;
	height: 59px;
	background: var(--green);
	transform: none;
}
.flow:last-of-type {
	margin-bottom: 0;
}
.flow:last-of-type::after {
	display: none;
}
@media screen and (max-width: 781px) {
	.flow {
		margin-bottom: 43px;
		padding: 32px 32px 24px;
	}
	.flow.wp-block-columns {
		row-gap: 0;
	}
	.flow > .wp-block-column {
		margin: 0;
	}
	.flow > .wp-block-column:first-child {
		top: -19.5px;
		left: 16px;
		width: auto;
		margin: 0;
	}
	.flow > .wp-block-column:first-child > div {
		width: 102px;
		height: 39px;
		font-size: 18px;
	}
	.flow > .wp-block-column:first-child > div span {
		margin: 0;
		font-size: inherit;
	}
	.flow > .wp-block-column:last-child {
		width: 100%;
	}
	.main .flow h3,
	.main .flow h3:first-of-type {
		margin: 0 0 8px;
		font-size: 16px;
	}
	.main .flow p {
		font-size: 14px;
		line-height: 2;
	}
	.flow::after {
		left: 66px;
		height: 50px;
	}
	.flow:last-of-type {
		margin-bottom: 0;
	}
}
/*-----------------------------------------------------
	FAQ
------------------------------------------------------*/
.faq_card {
	position: relative;
	margin-bottom: 16px;
	padding: 24px;
}
.faq_card:last-of-type {
	margin-bottom: 0;
}
.faq_card.is-on-white {
	background: #D8CFC9;
}
.faq_card.is-on-blue {
	background: #E8E2DF;
}
.main .faq_card h3,
.main .faq_card h3:first-of-type {
	position: relative;
	margin: 0 0 12px;
	padding: 0 0 19px 56px;
	border-bottom: 1px solid #C3BFBD;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.7;
	letter-spacing: 0.1em;
}
.main .faq_card h3::after {
	content: none;
	display: none;
}
.main .faq_card p {
	position: relative;
	margin: 0;
	padding: 0 0 0 56px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.7;
	letter-spacing: 0.1em;
}
.faq_card h3 {
	position: relative;
}
.faq_card h3::before {
	content: "Q";
	display: flex !important;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: -2px;
	left: 0;
	width: 40px;
	height: 40px;
	background: var(--green) !important;
	border: 1px solid var(--green);
	font-family: var(--font-en);
	font-size: 18px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0;
	color: #fff;
	background: transparent;
}
.faq_card p {
	position: relative;
}
.faq_card p::before {
	content: "A";
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	left: 0;
	width: 40px;
	height: 40px;
	border: 1px solid var(--green);
	font-family: var(--font-en);
	font-size: 18px;
	line-height: 1;
	letter-spacing: 0;
	color: var(--green);
	background: #fff;
}
@media screen and (max-width: 781px) {
	.faq_card {
		padding: 16px;
	}
	.main .faq_card h3,
	.main .faq_card h3:first-of-type {
		margin: 0 0 8px;
		padding-bottom: 18px;
		padding-left: 56px;
		font-size: 16px;
	}
	.main .faq_card p {
		padding-left: 56px;
		font-size: 14px;
	}
}
/*-----------------------------------------------------
	#menu
------------------------------------------------------*/
.menu {
	gap: 30px;
}
.menu_child {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: calc((100% - 120px) / 5);
	height: 208px;
	background: #E8E2DF;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.7;
	letter-spacing: 0.1em;
	text-align: center;
}
.menu_child span {
	font-family: var(--font-en);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.25;
	letter-spacing: 0.1em;
}
.menu_child img {
	margin-bottom: 10px;
}
.menu_link span {
	display: inline-block;
	margin-bottom: 16px;
	font-family: var(--font-en);
	font-size: 20px;
	font-weight: 400;
	line-height: 1.7;
	letter-spacing: 0.1em;
	text-align: center;
}
@media screen and (max-width: 1240px) {
	.menu_child {
		width: calc((100% - 90px) / 4);
	}
}
@media screen and (max-width: 1000px) {
	.menu_child {
		width: calc((100% - 60px) / 3);
	}
}
@media screen and (max-width: 750px) {
	.menu {
		gap: 16px;
	}
	.menu_child {
		width: calc((100% - 16px) / 2);
		height: auto;
		padding: 20px 16px;
		font-size: 14px;
	}
	.menu_child span {
		font-size: 11px;
	}
	.menu_child:nth-of-type(1) img {
		width: 35px;
	}
	.menu_child:nth-of-type(2) img {
		width: 42px;
	}
	.menu_child:nth-of-type(3) img {
		width: 60px;
	}
	.menu_child:nth-of-type(4) img {
		width: 58px;
	}
	.menu_child:nth-of-type(5) img {
		width: 43px;
	}
	.menu_child:nth-of-type(6) img {
		width: 34px;
	}
	.menu_child:nth-of-type(7) img {
		width: 48px;
	}
	.menu_child:nth-of-type(8) img {
		width: 51px;
	}
	.menu_child:nth-of-type(9) img {
		width: 33px;
	}
	.menu_child:nth-of-type(10) img {
		width: 34px;
	}
	.menu_child:nth-of-type(11) img {
		width: 54px;
	}
	.menu_child:nth-of-type(12) img {
		width: 33px;
	}
	.menu_child:nth-of-type(13) img {
		width: 63px;
	}
	.menu_child:nth-of-type(14) img {
		width: 41px;
	}
	.menu_child:nth-of-type(15) img {
		width: 54px;
	}
	.menu_child:nth-of-type(16) img {
		width: 52px;
	}
	.menu_child:nth-of-type(17) img {
		width: 41px;
	}
	.menu_child:nth-of-type(18) img {
		width: 24px;
	}
	.menu_child:nth-of-type(19) img {
		width: 33px;
	}
	.menu_child:nth-of-type(20) img {
		width: 30px;
	}
	.menu_child:nth-of-type(21) img {
		width: 43px;
	}
	.menu_child:nth-of-type(22) img {
		width: 40px;
	}
	.menu_link span {
		margin-bottom: 8px;
		font-size: 16px;
	}
}
/*-----------------------------------------------------
	.post_list
------------------------------------------------------*/
.post_list {
	gap: 32px;
}
.post_list_item {
	width: calc((100% - 64px) / 3);
}
.post_list_thumb {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 365 / 226;
  overflow: hidden;
	margin-bottom: 24px;
}
.post_list_thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
	transition: transform 0.4s ease;
}
.post_list_thumb img.noimage {
  border: 1px solid #C3BFBD;
}
.post_list_thumb:hover img {
  transform: scale(1.08);
}
.post_list_item time {
	margin-bottom: 8px;
	font-family: var(--font-en);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.7;
	letter-spacing: 0.1em;
}
.post_list_item h3 {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.7;
	letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
	.post_list {
		gap: 16px;
	}
	.post_list_item {
		width: calc((100% - 16px) / 2);
	}
	.post_list_thumb {
		aspect-ratio: 171 / 105;
	}
	.post_list_item h3 {
		font-size: 14px;
	}
}
/*-----------------------------------------------------
	Newsアーカイブ
------------------------------------------------------*/
#archive_news {
	padding-bottom: 100px;
}
#archive_news .wrap {
	width: 980px;
}
.archive_list {
	justify-content: space-between;
	margin-bottom: 50px;
}
.archive_news_l {
	width: 75.5%;
}
.news_item {
	margin-bottom: 24px;
}
.news_item:last-of-type {
	margin-bottom: 0;
}
.archive_news_l .news_item time {
	margin-bottom: 8px;
	font-family: var(--font-en);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.7;
	letter-spacing: 0.05em;
	color: var(--green);
}
.archive_news_l .news_item h3 a {
	display: block;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.7;
	letter-spacing: 0.05em;
}
.archive_news_r {
	width: 20%;
}
.archive_blog {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	gap: 32px;
}
.archive_blog .post_list_item {
	width: calc((100% - 32px) / 2);
}
@media screen and (max-width: 1060px) {
	#archive_news .wrap {
		width: calc(100% - 80px);
	}
}
@media screen and (max-width: 750px) {
	#archive_news .wrap {
		width: calc(100% - 32px);
	}
	.archive_news_l {
		width: 100%;
		margin-bottom: 48px;
	}
	.archive_news_r {
		width: 100%;
		margin-bottom: 48px;
	}
	.archive_blog {
		gap: 16px;
	}
	.archive_blog .post_list_item {
		width: calc((100% - 16px) / 2);
	}
}
/*-----------------------------------------------------
	サイドバー
------------------------------------------------------*/
.archive_news_r h3 {
	margin-top: 24px;
	margin-bottom: 16px;
	padding-bottom: 8px;
	border-bottom: 1px solid #DFDFDF;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.1em;
}
.archive_news_r h3:first-of-type {
	margin-top: 0;
}
.news_cat_list li, .news_archive_list li {
	white-space: nowrap;
  margin-bottom: 10px;
	margin-left: 15px;
	font-size: 16px;
	font-weight: 400;
  line-height: 2;
	letter-spacing: 0.05em;
}
.news_cat_list li a, .news_archive_list li a {
  display: inline-block;
  font-size: 16px;
	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-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(--green);
	border: 1px solid var(--green);
	color: #fff;
  opacity: 1;
}
/*-----------------------------------------------------
	#group_list
------------------------------------------------------*/
#group_list {
  padding-top: 200px;
	padding-bottom: 96px;
  background: #D8CFC9;
}
#group_list h2 {
	margin-bottom: 56px;
}
.group_list {
	align-items: stretch;
	gap: 40px;
}
.group_list_child {
	display: flex;
	flex-direction: column;
	width: calc((100% - 80px) / 3);
	background: #E8E2DF;
}
.group_img {
	width: 100%;
}
.group_list_child_inner {
	flex-direction: column;
	flex: 1;
	padding: 24px 24px 12px;
	text-align: center;
}
.group_list_child:nth-of-type(2) .group_list_child_inner {
	background: var(--green);
	color: #fff;
}
.group_list_child_inner h3 {
	margin-bottom: 8px;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.7;
	letter-spacing: 0.1em;
}
.group_list_child_inner h3 span {
	display: block;
	font-family: var(--font-en);
	font-size: 14px;
	font-weight: 400;
}
.group_list_child_inner address {
	margin-bottom: 12px;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.7;
	letter-spacing: 0.05em;
	text-align: left;
}
.group_list_child_inner .station {
	justify-content: space-between;
	margin-bottom: 16px;
	padding-top: 12px;
	border-top: 1px solid #C3BFBD;
}
.group_list_child_inner .station span {
	position: relative;
	padding-left: 13px;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.7;
	letter-spacing: 0.05em;
}
.group_list_child:nth-of-type(2) .group_list_child_inner .station span:last-of-type a {
	color: #fff;
}
.group_list_child:nth-of-type(2) .group_list_child_inner .station span::before {
  background: url("../img/common/w_walk_icon.svg") no-repeat center center;
  background-size: cover;
}
.group_list_child:nth-of-type(2) .group_list_child_inner .station span:last-of-type::before {
  background: url("../img/common/w_map_icon.svg") no-repeat center center;
  background-size: cover;
}
.group_list_child_inner .station span::before {
  content: "";
  display: block;
  position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
  width: 9px;
  height: 16px;
  background: url("../img/common/walk_icon.svg") no-repeat center center;
  background-size: cover;
}
.group_list_child_inner .station span:last-of-type::before {
  width: 11px;
  height: 16px;
  background: url("../img/common/map_icon.svg") no-repeat center center;
  background-size: cover;
}
.group_list_child_inner .station span:last-of-type::after {
  content: "/";
  display: block;
  position: absolute;
	top: 50%;
	left: -13px;
	transform: translateY(-50%);
}
.group_link {
	display: block;
	max-width: 300px;
	margin: 0 auto 12px;
	padding: 13.5px 15px;
	background: #fff;
	border: 2px solid var(--green);
	font-family: var(--font-en);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: 0.05em;
	color: #939393;
}
.group_link span {
	display: inline-block;
	position: relative;
}
.group_link.tel span {
	padding-left: 30px;
	font-family: var(--font-en);
	font-size: 20px;
	font-weight: 400;
	line-height: 1.25;
	letter-spacing: 0.05em;
	color: var(--text-color);
}
.group_link.tel span::before {
  content: "";
  display: block;
  position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
  width: 22px;
  height: 24px;
  background: url("../img/common/tel_icon_02.svg") no-repeat center center;
  background-size: cover;
}
.group_list_child:nth-of-type(2) .group_link.tel {
	background: #29584F;
}
.group_list_child:nth-of-type(2) .group_link.tel span {
	color: #fff;
}
.group_list_child:nth-of-type(2) .group_link.tel span::before {
  background: url("../img/common/tel_icon_03.svg") no-repeat center center;
  background-size: cover;
}
.group_link.web {
	padding: 3.5px 15px;
	border: 2px solid var(--green);
}
.group_link.web span {
	margin-bottom: 5px;
	padding-left: 40px;
	font-family: var(--font-serif);
	font-size: 20px;
	color: var(--text-color);
}
.group_link.web span::before {
  content: "";
  display: block;
  position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
  width: 32px;
  height: 24px;
  background: url("../img/common/pc_icon.svg") no-repeat center center;
  background-size: cover;
}
@media screen and (max-width: 1240px) {
	.group_list {
		justify-content: center;
	}
	.group_list_child {
		width: calc((100% - 40px) / 2);
	}
}
@media screen and (max-width: 800px) {
	.group_list_child {
		width: 100%;
	}
}
@media screen and (max-width: 750px) {
	#group_list {
		padding-top: 57px;
		padding-bottom: 64px;
		overflow-x: hidden;
	}
	#group_list h2 {
		margin-bottom: 40px;
	}
	.group_list {
		gap: 24px;
	}
	.group_list_child_inner h3 {
		font-size: 18px;
	}
}
/*-----------------------------------------------------
	footer
------------------------------------------------------*/
footer {
  padding-top: 80px;
	padding-bottom: 80px;
  background: #FBF7F6;
	text-align: center;
}
footer .wrap h2 {
	margin-bottom: 8px;
	font-size: 32px;
	font-weight: 500;
	line-height: 1.7;
	letter-spacing: 0.1em;
}
footer .wrap h2 span {
	display: block;
	font-family: var(--font-en);
	font-size: 14px;
	font-weight: 400;
}
footer .wrap p, footer .wrap address {
	margin-bottom: 8px;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.7;
	letter-spacing: 0.05em;
}
footer .wrap address {
	margin-bottom: 48px;
}
.footer_top {
	margin-bottom: 48px;
	padding-top: 48px;
	border-top: 1px solid #C3BFBD;
}
.footer_top ul.flex {
	justify-content: center;
	gap: 40px;
}
.footer_top ul.flex > li > a span {
  display: block;
	font-family: var(--font-en);
	font-size: 12px;
	font-weight: 400;
	line-height: 1.7;
	letter-spacing: 0.1em;
}
.footer_top ul.flex > li > a {
  display: block;
	padding: 0 8px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.7;
	letter-spacing: 0.1em;
}
.footer_bottom {
	margin-bottom: 48px;
}
.footer_bottom h3 {
  margin-bottom: 24px;
}
.footer_bottom h3 a span {
  display: block;
	font-family: var(--font-en);
	font-size: 12px;
	font-weight: 400;
	line-height: 1.7;
	letter-spacing: 0.1em;
}
.footer_bottom h3 a {
  display: block;
	padding: 0 8px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.7;
	letter-spacing: 0.1em;
}
.footer_bottom ul.flex {
	justify-content: center;
	gap: 24px 40px;
}
.footer_bottom ul.flex > li {
	width: calc((100% - 160px) / 5);
}
.footer_bottom ul.flex > li > a {
  display: block;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.7;
	letter-spacing: 0.1em;
}
footer small {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.7;
	letter-spacing: 0.05em;
}
@media screen and (max-width: 1240px) {
	.footer_top ul.flex {
		gap: 24px;
	}
	.footer_bottom ul.flex {
		gap: 24px 24px;
	}
	.footer_bottom ul.flex > li {
		width: calc((100% - 72px) / 4);
	}
}
@media screen and (max-width: 1000px) {
	.footer_bottom ul.flex > li {
		width: calc((100% - 48px) / 3);
	}
}
@media screen and (max-width: 750px) {
	footer {
		padding-top: 64px;
		padding-bottom: 100px;
	}
	footer .wrap h2 {
		font-size: 22px;
	}
	footer .wrap address {
		margin-bottom: 32px;
	}
	footer small {
		font-size: 12px;
	}
	.footer_top, .footer_bottom {
		display: none;
	}
}
@media screen and (max-width: 414px) {
	footer small {
		font-size: 11px;
	}
}
/*-----------------------------------------------------
	others
------------------------------------------------------*/
.ani {
  visibility: hidden;
}
.ani.is-sr-visible {
	visibility: visible !important;
	opacity: 1 !important;
	transform: none !important;
}
.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;
	}
}
