@charset "UTF-8";
/*
	Filename: common
	Version: 1.0.1
*/
/*-----------------------------------------------------
	Utility
------------------------------------------------------*/
:root {
	--font-sans: "Zen Kaku Gothic New", sans-serif;
	--font-serif: "Zen Old Mincho",serif;
  --text-color: #333333;
  --red-color: #E92A04;
	--orange-color: #FE8A27;
}
/* --------------------------------
   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;
	box-shadow: 0px 20px 30px 0 rgba(0,0,0,0.1);
}
.header_inner {
  position: relative;
}
.header_logo a {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  display: block;
  width: 300px;
  height: 45px;
  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 {
	align-items: center;
	gap: 10px;
	position: absolute;
	top: 10px;
	right: 20px;
}
.header_top ul.tel {
	flex-direction: column;
	gap: 6px;
}
.header_top ul.tel li a {
	align-items: center;
	gap: 4px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.1em;
}
.header_top ul.tel li a span {
	display: inline-block;
	width: 68px;
	padding: 4.5px 0;
	background: var(--orange-color);
	font-size: 12px;
	text-align: center;
	color: #fff;
}
.header_top ul.tel li:last-of-type a span {
	background: var(--red-color);
}
.header_top ul.web {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 4px;
}
.header_top ul.web li a {
	display: flex;
	align-items: stretch;
	width: 260px;
	height: 55px;
	padding: 0;
	border: 2px solid var(--red-color);
	border-radius: 9999px;
	background: transparent;
	color: #222;
	overflow: hidden;
}
.header_top ul.web li:first-of-type a {
	border-color: var(--orange-color);
}
.header_top ul.web .web_place {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 78px;
	margin: 0;
	padding: 0;
	background: var(--red-color);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: .05em;
	text-align: center;
	-webkit-text-fill-color: currentColor;
}
.header_top ul.web li:first-of-type .web_place {
	background: var(--orange-color);
}
.header_top ul.web .web_reserve {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1;
	position: relative;
	margin: 0;
	padding: 0 10px 0 31px;
	background: none;
	color: #222;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: .1em;
	-webkit-background-clip: border-box;
	background-clip: border-box;
	-webkit-text-fill-color: currentColor;
}
.header_top ul.web .web_reserve::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 22px;
	transform: translateY(-50%);
	width: 18px;
	height: 18px;
	background: url("../img/common/r_web_icon.svg") no-repeat center;
	background-size: contain;
}
.header_top ul.web li:first-of-type .web_reserve::before {
	background: url("../img/common/o_web_icon.svg") no-repeat center;
	background-size: contain;
}
.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 50px;
  font-size: 16px;
  font-weight: 700;
  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: 300px;
  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;
  padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
	background: #E92A04;
	background: linear-gradient(90deg, rgba(233, 42, 4, .9) 0%, rgba(255, 144, 41, .9) 100%);
	border-radius: 0 0 20px 20px;
}
.header_nav ul.flex li.has-child ul li ul.mega li a {
  display: block;
  padding: 20px 10px;
  border-bottom: 1px solid #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.1em;
  color: #fff;
}
.header_nav ul.flex li.has-child ul li ul.mega li a:hover {
  opacity: .9;
}
.header_nav ul.flex li.has-child ul li ul.mega li a::after {
  display: none;
}
#sp-fixed-menu {
  display: none;
}
@media screen and (max-width: 1300px) {
	.header_nav ul.flex > li > a {
		padding: 12.5px 40px;
	}
	.header_nav ul.flex > li.has-child > a span::after {
		top: calc(50% + 1px);
	}
	.header_nav ul.flex li.has-child ul li ul.mega li a {
		font-size: 15px;
	}
}
@media screen and (max-width: 1100px) {
	.header_top ul.web li a {
		width: 170px;
	}
	.header_top ul.web .web_reserve::before {
		left: 7px;
	}
	.header_nav ul.flex > li > a {
		padding: 12.5px 30px;
		font-size: 14px;
	}
}
@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: 10px;
		width: 267px;
		height: 40px;
  }
	/* SPメニュー */
  .hamburger {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10002;
    width: 60px ;
    height: 60px;
    padding: 0;
		background: var(--red-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: #E92A04;
		background: linear-gradient(90deg, rgba(233, 42, 4, 1) 0%, rgba(255, 144, 41, 1) 100%);
	}
	.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: 500;
		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: 16px;
		font-weight: 500;
		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;
		padding-left: 44px !important;
		font-size: 14px !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.nav_cv {
		display: flex;
		flex-direction: column;
		gap: 10px;
		width: 330px;
		max-width: 100%;
		margin: 30px auto 0;
		padding: 20px 35px;
		background: #fff;
	}
	ul.nav_cv li a {
		display: flex;
		align-items: stretch;
		width: 100%;
		height: 55px;
		padding: 0;
		border: 2px solid var(--red-color);
		border-radius: 9999px;
		background: transparent;
		color: #222;
		overflow: hidden;
	}
	ul.nav_cv li:first-of-type a {
		border-color: var(--orange-color);
	}
	ul.nav_cv .web_place {
		display: flex;
		align-items: center;
		justify-content: center;
		flex-shrink: 0;
		width: 78px;
		margin: 0;
		padding: 0;
		background: var(--red-color);
		color: #fff;
		font-size: 12px;
		font-weight: 700;
		line-height: 1.2;
		letter-spacing: .05em;
		text-align: center;
		-webkit-text-fill-color: currentColor;
	}
	ul.nav_cv li:first-of-type .web_place {
		background: var(--orange-color);
	}
	ul.nav_cv .web_reserve {
		display: flex;
		align-items: center;
		justify-content: center;
		flex: 1;
		position: relative;
		margin: 0;
		padding: 0 10px 0 31px;
		background: none;
		color: #222;
		font-size: 18px;
		font-weight: 700;
		line-height: 1;
		letter-spacing: .1em;
		-webkit-background-clip: border-box;
		background-clip: border-box;
		-webkit-text-fill-color: currentColor;
	}
	ul.nav_cv .web_reserve::before {
		content: "";
		position: absolute;
		top: 50%;
		left: 22px;
		transform: translateY(-50%);
		width: 18px;
		height: 18px;
		background: url("../img/common/r_web_icon.svg") no-repeat center;
		background-size: contain;
	}
	ul.nav_cv li:first-of-type .web_reserve::before {
		background: url("../img/common/o_web_icon.svg") no-repeat center;
		background-size: contain;
	}
	#sp-fixed-menu {
		display: block;
		position: fixed;
		left: 0;
		bottom: 0;
		z-index: 11;
		width: 100%;
	}
	#sp-fixed-menu ul.flex li {
		width: 50%;
	}
	#sp-fixed-menu ul.flex li a {
		display: block;
		padding: 7.5px 10px;
		background: var(--red-color);
		font-size: 12px;
		font-weight: 700;
		line-height: 1;
		letter-spacing: 0.1em;
		color: #fff;
		text-align: center;
	}
	#sp-fixed-menu ul.flex li:first-of-type a {
		background: var(--orange-color);
	}
	#sp-fixed-menu ul.flex li a span {
		display: inline-block;
		position: relative;
		margin-top: 5px;
		padding-left: 28px;
		font-size: 18px;
	}
	#sp-fixed-menu ul.flex li 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;
	}
}

@media screen and (max-width: 750px) {
	.hum-nav_inner {
		padding: 20px 22.5px 40px;
	}
}
/*-----------------------------------------------------
	midasi
------------------------------------------------------*/
.midasi_01 {
	margin-bottom: 80px;
	font-family: var(--font-serif);
	font-size: 24px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0.1em;
	text-align: center;
}
.midasi_01 span {
	display: inline-block;
  color: transparent;
  background: linear-gradient(90deg, rgba(233,42,4, 1) 0%, rgba(255,144,41, 1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Marcellus", serif;
  font-size: 90px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1em;
}
.midasi_02 {
	position: relative;
	z-index: 0;
	margin-bottom: 132px;
	font-family: var(--font-serif);
	font-size: 60px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0.1em;
	text-align: center;
}
.midasi_02 span {
	display: block;
	font-family: "Marcellus", serif;
	font-size: 30px;
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: 0.1em;
}
.midasi_02::after {
  content: "";
  display: block;
  position: absolute;
	bottom: -30px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
  width: 77px;
  height: 14px;
  background: url("../img/home/info_icon.svg") no-repeat center center;
  background-size: cover;
}
@media screen and (max-width: 750px) {
	.midasi_01 {
		margin-bottom: 40px;
		font-size: 20px;
	}
	.midasi_01 span {
		margin-bottom: 15px;
		font-size: 40px;
	}
	.midasi_02 {
		margin-bottom: 77px;
		font-size: 30px;
		line-height: 1.6;
	}
	.midasi_02 span {
		font-size: 20px;
	}
	.midasi_02::after {
		bottom: -33px;
		width: 100px;
		height: 17px;
	}
}
/*-----------------------------------------------------
	ボタン
------------------------------------------------------*/
.link_more_01 {
	display: inline-block;
	position: relative;
	width: 300px;
	max-width: 100%;
	padding: 20px 30px 20px 20px;
	background: #E92A04;
	background: linear-gradient(90deg, rgba(233, 42, 4, .9) 0%, rgba(255, 144, 41, .9) 100%);
	border: 1px solid #fff;
	border-radius: 9999px;
	box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1);
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.1em;
	color: #fff;
}
.link_more_01::after {
	content: "";
	position: absolute;
	right: 20px;
	top: 50%;
	width: 7px;
	height: 12px;
	background: url("../img/common/w_arrow.svg") no-repeat center center;
	background-size: cover;
	transform: translateY(-50%);
	transition: all 0.3s ease;
}
.link_more_02 {
	display: inline-block;
	position: relative;
	width: 300px;
	max-width: 100%;
	padding: 20px 30px 20px 20px;
	background: #fff;
	border: 1px solid var(--orange-color);
	border-radius: 9999px;
	box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1);
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.1em;
	color: var(--orange-color);
}
.link_more_02::after {
	content: "";
	position: absolute;
	right: 20px;
	top: 50%;
	width: 7px;
	height: 12px;
	background: url("../img/common/orange_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, .link_more_02 {
		padding: 18.5px 30px 18.5px 20px;
	}
	.link_more_01::after, .link_more_02::after {
		width: 6px;
		height: 11px;
	}
}

/*-----------------------------------------------------
	#page_mv
------------------------------------------------------*/
#page_mv {
  position: relative;
	top: 0;
  z-index: 0;
  width: 100%;
  height: 400px;
	margin-top: 140px;
}
#page_mv::after {
  content: "";
  display: block;
  position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
  width: 100%;
  height: 100%;
  background: #FF9029;
	background: linear-gradient(90deg, rgba(255, 144, 41, 1) 0%, rgba(233, 42, 4, 1) 45%, rgba(233, 42, 4, 0) 60%);
}
#page_mv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}
#page_mv .page_title {
  position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
  z-index: 2;
  width: 100%;
	padding-left: 100px;
}
#page_mv .page_title h1, #page_mv .page_title div {
	width: fit-content;
	padding-right: 10px;
	padding-left: 10px;
	background: rgba(255,255,255,.8);
	font-family: var(--font-serif);
	font-size: 60px;
	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 { text-decoration: none;font-weight: 400; }
.breadcrumbs__list {
  display: flex; 
  flex-wrap: wrap;
  gap: 0.25em 0.5em;
  list-style: none;
  margin: 0; padding: 0;
}
@media screen and (max-width: 1000px) {
	#page_mv {
		margin-top: 60px;
	}
	#page_mv .page_title {
		padding-left: 40px;
	}
	#page_mv .page_title h1, #page_mv .page_title div {
		font-size: 40px;
	}
}
@media screen and (max-width: 750px) {
	#page_mv {
		height: 260px;
	}
	#page_mv::after {
		display: none;
	}
	#page_mv img {
		object-position: center center;
	}
	#page_mv .page_title {
		padding-left: 20px;
	}
	#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 0;
  padding: 40px;
  background: #FFF2EA;
	background: linear-gradient(145deg, rgba(255, 242, 234, 1) 0%, rgba(236, 236, 236, 1) 100%) !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;
}
.ez-toc-counter nav ul li a::before {
	margin-right: 1.2em;
}
@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 {
	padding-bottom: 100px;
}
.main > .wp-block-group {
	padding-top: 100px;
	padding-bottom: 100px;
}
.main > .wp-block-group:first-of-type {
  padding-top: 0;
  padding-bottom: 0;
}
.main > .wp-block-group .wp-block-group__inner-container {
  width: 1280px;
  margin: 0 auto;
}
.main > .wp-block-group:nth-of-type(even) {
  background: #FFFFFF;
  background: linear-gradient(
    45deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 242, 234, 1) 100%
  );
}
@media screen and (max-width: 1360px) {
  .main > .wp-block-group .wp-block-group__inner-container {
    width: calc(100% - 80px);
  }
}
@media screen and (max-width: 750px) {
	.main {
		padding-bottom: 60px;
	}
	.main > .wp-block-group {
		padding-top: 40px;
		padding-bottom: 40px;
	}
	.main > .wp-block-group:first-of-type {
		padding-top: 0;
		padding-bottom: 0;
	}
  .main > .wp-block-group .wp-block-group__inner-container {
    width: calc(100% - 40px);
  }
}


.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-family: var(--font-serif);
	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: #E98080;
  text-decoration: underline;
}
.main p.link a {
	display: inline-block;
	position: relative;
	minwidth: 300px;
	max-width: 100%;
	padding: 20px 30px 20px 20px;
	background: #E92A04;
	background: linear-gradient(90deg, rgba(233, 42, 4, .9) 0%, rgba(255, 144, 41, .9) 100%);
	border: 1px solid #fff;
	border-radius: 9999px;
	box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1);
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.1em;
	color: #fff;
	text-decoration: none;
}
.main p.link a::after {
	content: "";
	position: absolute;
	right: 20px;
	top: 50%;
	width: 7px;
	height: 12px;
	background: url("../img/common/w_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 {
	position: relative;
	margin-bottom: 30px;
	padding-left: 54px;
	font-family: var(--font-serif);
	font-size: 40px;
	font-weight: 500;
	line-height: 1.3;
	letter-spacing: 0.1em;
	color: var(--red-color);
}
.main h2::after {
  content: "";
  display: block;
  position: absolute;
	top: 17px;
	left: 0;
  width: 40px;
  height: 26px;
  background: url("../img/common/midasi_icon.svg") no-repeat center center;
  background-size: cover;
}
.main h3 {
	margin-top: 50px;
	margin-bottom: 30px;
	padding-bottom: 10px;
	padding-left: 10px;
	border-bottom: 3px solid var(--red-color);
	font-family: var(--font-serif);
  font-size: 25px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.1em;
}
.main h4 {
	display: inline-block;
  margin-bottom: 30px;
  padding: 10px;
  background: var(--orange-color);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  letter-spacing: 0.1em;
	text-align: center;
}
.main h5 {
  margin-bottom: 30px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.1em;
}
.main h6 {
  margin-bottom: 30px;
  font-size: 16px;
  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(--red-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 figure.wide img {
	width: 100%;
  height: 550px;
	object-fit: cover;
}
.def table tr th {
	padding: 20px 10px;
	background: var(--orange-color);
	border: 1px solid #fff;
	font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.1em;
	vertical-align: middle;
	color: #fff;
	text-align: center;
}
.def table tr td {
	padding: 20px 10px;
	background: #fff;
	border: 1px solid #cacaca;
	font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.1em;
	vertical-align: middle;
}
.wp-block-table.pagehour table tr th {
	padding: 10px 5px;
	background: #fff;
	vertical-align: middle;
	font-size: 15px;
	text-align: center;
}
.wp-block-table.pagehour table tr td {
	padding: 10px 5px;
	background: #fff;
	vertical-align: middle;
	font-size: 15px;
	text-align: center;
}
@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-bottom: 40px;
		padding-left: 28px;
		font-size: 24px;
	}
	.main h2::after {
		top: 10px;
		width: 20px;
		height: 17px;
		background: url("../img/common/sp_midasi_icon.svg") no-repeat center center;
		background-size: cover;
	}
	.main h3 {
		font-size: 18px;
	}
	.main h4 {
		font-size: 18px;
	}
	.main h5 {
		font-size: 16px;
	}
	.main h6 {
		font-size: 14px;
	}
	.main p {
		font-size: 14px;
	}
	.main ul li {
		font-size: 14px;
	}
	.main ol li {
		font-size: 14px;
	}
	.main .wp-block-column .wp-block-image .wp-element-caption {
		margin-bottom: 0;
	}
	.def table tr th {
		display: block;
		width: 100%;
		border: 1px solid var(--orange-color);
		font-size: 16px;
	}
	.def table tr td {
		display: block;
		width: 100%;
		font-size: 16px;
	}
	.wp-block-table.pagehour table tr th {
		padding: 10px 0;
		font-size: 12px;
	}
	.wp-block-table.pagehour table tr td {
		padding: 10px 0;
		font-size: 13px;
	}
	:where(.wp-block-columns.is-layout-flex) {
		gap: 0 2em;
	}
	.main figure.wide img {
		width: 100%;
		height: auto;
		object-fit: contain;
	}
}
/*-----------------------------------------------------
	3列テーブル
------------------------------------------------------*/
.main .crown-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 20px;
	font-weight: 500;
  line-height: 1.8;
	letter-spacing: 0.1em;
  text-align: center;
  background: #fff;
}
.main .crown-table th {
  padding: 27px 10px;
  background: #ff8122;
  font-weight: 700;
  color: #fff;
}
.main .crown-table td {
  padding: 27px 10px;
  border-bottom: 1px solid #cacaca;
}
.main .crown-table tbody tr:nth-child(even) {
  background: #FFF5EE;
}
.main .crown-table tbody tr:nth-child(odd) {
  background: #fff;
}
.main .crown-table th,
.main .crown-table td {
  border-left: none;
  border-right: none;
}
@media screen and (max-width: 781px) {
  .main .crown-table {
    display: block;
    width: 100%;
    font-size: 18px;
    border-collapse: separate;
  }
  .main .crown-table thead,
  .main .crown-table thead tr,
  .main .crown-table thead th {
    display: none !important;
  }
  .main .crown-table tbody tr:first-child {
    display: none !important;
  }
  .main .crown-table tbody,
  .main .crown-table tr {
    display: block;
    width: 100%;
  }
  .main .crown-table tr {
    background: #fff;
  }
  .main .crown-table tbody tr:nth-child(even),
  .main .crown-table tbody tr:nth-child(odd) {
    background: #fff;
  }
  .main .crown-table td,
  .main .crown-table th {
    display: block;
    width: 100%;
    background: #fff;
    border: none;
    color: #333;
    text-align: center;
  }
  .main .crown-table td:first-child,
  .main .crown-table th:first-child {
    background: #ff8122;
    border: none;
		font-size: 20px;
    font-weight: 700;
    color: #fff;
  }
  .main .crown-table td:not(:first-child):not(:last-child),
  .main .crown-table th:not(:first-child):not(:last-child) {
    border-bottom: 1px solid #cacaca;
  }
  .main .crown-table td:last-child,
  .main .crown-table th:last-child {
    border-bottom: none;
  }
}
/*-----------------------------------------------------
	よくある質問
------------------------------------------------------*/
.main .faq h3 {
	position: relative;
	margin-bottom: 0;
	padding-top: 17px;
	padding-right: 17px;
	padding-bottom: 17px;
	padding-left: 90px;
	background: #EFEFEF;
	border: 1px solid #cacaca;
	font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
	color: var(--red-color);
}
.main .faq h3::before {
  content: "Q";
  display: block;
  position: absolute;
	top: 50%;
	left: 29px;
	transform: translateY(-50%);
	font-family: "Marcellus", serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1;
	color: var(--red-color);
}
.main .faq_a {
	position: relative;
	margin-bottom: 30px;
	padding-top: 17px;
	padding-right: 17px;
	padding-bottom: 17px;
	padding-left: 90px;
	background: #fff;
	border-right: 1px solid #cacaca;
	border-bottom: 1px solid #cacaca;
	border-left: 1px solid #cacaca;
	box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1);
  font-size: 18px;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.1em;
}
.main .faq_a::before {
  content: "A";
  display: block;
  position: absolute;
	top: 50%;
	left: 30px;
	transform: translateY(-50%);
	font-family: "Marcellus", serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1;
	color: var(--orange-color);
}
@media screen and (max-width: 781px) {
	.main .faq h3 {
		padding-top: 17px;
		padding-right: 17px;
		padding-bottom: 17px;
		padding-left: 50px;
		font-size: 18px;
		line-height: 1.6;
	}
	.main .faq h3::before {
		left: 12px;
		font-size: 30px;
	}
	.main .faq_a {
		padding-top: 17px;
		padding-right: 17px;
		padding-bottom: 17px;
		padding-left: 50px;
		font-size: 16px;
	}
	.main .faq_a::before {
		left: 13px;
		font-size: 30px;
	}
}

/*-----------------------------------------------------
	#treatment
------------------------------------------------------*/
#treatment {
	padding-top: 160px;
	padding-bottom: 160px;
	background: url("../img/home/bg_02.webp") no-repeat center center;
	background-size: cover;
}
#treatment h2 {
	color: #fff;
}
#treatment h2 span {
	display: inline;
	color: inherit;
	background: none;
	-webkit-background-clip: border-box;
	background-clip: border-box;
	-webkit-text-fill-color: currentColor;
}
.treatment {
	gap: 27px 24px;
}
.treatment_child {
	width: calc((100% - 72px) / 4);
	background: #fff;
	box-shadow: 0px 20px 30px 0px rgba(0, 0, 0, 0.1);
}
.treatment_child_inner {
	align-items: center;
	padding: 13px 10px;
	background: #fff;
}
.treatment_child_icon {
	width: 72px;
}
.treatment_child_icon img {
	width: 100%;
}
.treatment_child_text {
	width: calc(100% - 72px);
	font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.1em;
	text-align: center;
}
.treatment_child_text span {
	display: block;
	font-family: "Marcellus", serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1360px) {
	.treatment_child {
		width: calc((100% - 48px) / 3);
	}
}
@media screen and (max-width: 1000px) {
	.treatment_child {
		width: calc((100% - 24px) / 2);
	}
}
@media screen and (max-width: 750px) {
	#treatment {
		padding-top: 60px;
		padding-bottom: 60px;
		background: url("../img/home/sp_bg_02.webp") no-repeat center center;
		background-size: cover;
	}
	.treatment {
		gap: 10px;
	}
	.treatment_child {
		width: calc((100% - 10px) / 2);
	}
	.treatment_child_inner {
		padding: 10px;
	}
	.treatment_child_icon {
		width: 100%;
		margin-bottom: 14px;
	}
	.treatment_child_text {
		width: 100%;
		font-size: 18px;
	}
	.treatment_child_text span {
		font-size: 12px;
	}
}
@media screen and (max-width: 450px) {
	.treatment_child_text {
		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_wrap {
	padding-bottom: 100px;
}
.archive_list {
  gap: 30px;
}
.archive_list_child {
	display: block;
  width: calc((100% - 60px) / 3);
}
.archive_list_child .thumb img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  margin-bottom: 20px;
}
.archive_list_child .date {
	margin-bottom: 15px;
	font-family: var(--font-serif);
	font-size: 14px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.1em;
}
.archive_list_child h2 {
	display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: 0.1em;
}
@media screen and (max-width: 950px) {
  .archive_list_child {
    width: calc((100% - 30px) / 2);
  }
  .archive_list_child .thumb img {
    height: 31.5vw;
  }
}
@media screen and (max-width: 750px) {
	.archive_wrap {
		padding-bottom: 60px;
	}
  .archive_list {
    gap: 30px;
  }
  .archive_list_child {
    width: 100%;
  }
  .archive_list_child .thumb img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}
/*-----------------------------------------------------
	ページネーション
------------------------------------------------------*/
.pagination {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 80px;
}
a.page-numbers, .pagination .current {
  display: block;
  margin: 0 3px;
	padding: 7px 9px;
	border: 1px solid var(--red-color);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
	text-decoration: none;
  color: var(--red-color);
}
span.page-numbers.dots {
  margin-right: 10px;
  margin-left: 10px;
  font-size: 14px;
}
.pagination .current, a.page-numbers:hover {
	background: var(--red-color);
	border: 1px solid var(--red-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(--red-color);
  border: 1px solid var(--red-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%);
}
a.page-numbers.prev img {
  transform: translate(-50%, -50%) scaleX(-1);
}
a.page-numbers.next:hover, a.page-numbers.prev:hover {
	background: var(--red-color);
  opacity: .6;
}

/*-----------------------------------------------------
	#post_list
------------------------------------------------------*/
#post_list {
	padding-top: 160px;
	padding-bottom: 160px;
	background: #FFF2EA;
	background: linear-gradient(45deg, rgba(255, 242, 234, 1) 0%, rgba(236, 236, 236, 1) 100%);
}
#post_list .wrap .center {
	margin-top: 40px;
}
.post_list_child {
	width: 50%;
	padding: 0 40px;
}
.post_list_child:first-of-type {
	border-right: 1px solid var(--text-color);
}
.post_list_child h3 {
	margin-bottom: 40px;
	padding-bottom: 10px;
	border-bottom: 1px solid #cacaca;
	font-family: var(--font-serif);
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.1em;
}
.post_list_child h3 span {
	margin-right: 20px;
	font-family: "Marcellus", serif;
	font-size: 40px;
	font-weight: 400;
}
.post_item {
	margin-bottom: 20px;
}
.post_item a {
	justify-content: space-between;
}
.post_item .thumb {
	width: 124px;
}
.post_item .thumb img {
	width: 100%;
	height: 90px;
	object-fit: cover;
}
.post_item .text {
	width: calc(100% - 144px);
	padding-top: 5px;
}
.post_item .text .date {
	margin-bottom: 15px;
	font-family: var(--font-serif);
	font-size: 14px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.1em;
}
.post_item .text p {
	display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: 0.1em;
}
@media screen and (max-width: 950px) {
	.post_list_child {
		width: 100%;
	}
	.post_list_child:first-of-type {
		margin-bottom: 50px;
		border-right: none;
	}
}
@media screen and (max-width: 750px) {
	#post_list {
		padding-top: 60px;
		padding-bottom: 60px;
	}
	#post_list .wrap .center {
		margin-top: 20px;
	}
	#post_list .wrap .center {
		margin-top: 30px;
	}
	.post_list_child {
		padding: 0;
	}
	.post_list_child:first-of-type {
		margin-bottom: 80px;
	}
	.post_list_child h3 {
		font-size: 16px;
	}
	.post_list_child h3 span {
		font-size: 30px;
	}
	.post_item .thumb {
		width: 124px;
	}
	.post_item .thumb img {
		height: 90px;
	}
	.post_item .text {
		width: calc(100% - 144px);
		padding-top: 5px;
	}
	.post_item .text .date {
		margin-bottom: 20px;
		font-size: 12px;
	}
	.post_item .text p {
		font-size: 14px;
	}
}
/*-----------------------------------------------------
	.hour
------------------------------------------------------*/
.hour {
	padding: 80px 75px;
	background: #fff;
	border: 1px solid #cacaca;
	box-shadow: 0px 20px 30px 0 rgba(0,0,0,0.1);
}
.hour h2 {
	margin-bottom: 60px;
}
.hour .flex {
	justify-content: space-between;
}
.hour_child {
	width: 47.6%;
}
.hour_child h3 {
	margin-bottom: 20px;
	padding: 18px;
	background: var(--orange-color);
	border-radius: 20px 20px 0 0;
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.1em;
	color: #fff;
	text-align: center;
}
.hour_child:last-of-type h3 {
	background: var(--red-color);
}
.hour_child dl {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	gap: 9px;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: 0.1em;
	text-align: left;
}
.hour_child dl dt {
	display: flex;
  align-items: center;
	width: 110px;
	padding: 12px 10px;
	border-bottom: 1px solid #cacaca;
}
.hour_child dl dd {
	display: flex;
  align-items: center;
	width: calc(100% - 119px);
	padding: 12px 10px;
	border-bottom: 1px solid #cacaca;
}
.hour_child dl dd a {
	font-size: 40px;
	font-weight: 700;
	line-height: 1;
}
.hour_child table {
	width: 100%;
	margin-top: 20px;
	margin-bottom: 20px;
}
.hour_child table th {
	padding-top: 15px;
  padding-bottom: 15px;
	background: #999;
  font-size: 16px;
  font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0.1em;
	color: #fff;
	text-align: center;
}
.hour_child table tbody tr th:first-of-type {
  width: 110px;
}
.hour_child table tr td:first-child {
  font-size: 16px;
}
.hour_child table tbody tr td {
	padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #cacaca;
  font-size: 16px;
  font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0.1em;
  vertical-align: middle;
	text-align: center;
}
.hour_child p {
	margin-bottom: 40px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.6;
	letter-spacing: 0.1em;
	color: var(--red-color);
}
.hour_btn {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: space-between;
}
.hour_btn_child {
	width: 48.9%;
	padding: 2px;
	background: #E92A04;
	background: linear-gradient(90deg, rgba(233,42,4, 1) 0%, rgba(255,144,41, 1) 100%);
	border-radius: 9999px;
	box-shadow: 0px 20px 30px 0 rgba(0,0,0,0.1);
	text-align: center;
}
.hour_btn_child a {
	display: block;
	padding-top: 12px;
	padding-bottom: 15px;
	border-radius: 9999px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.1em;
}
.hour_btn_child a em {
	font-size: 28px;
	font-style: normal;
}
.hour_btn_child:first-of-type a {
	background: #fff;
}
.hour_btn_child:last-of-type a {
	color: #fff;
}
.hour_btn_child a span {
	display: inline-block;
	position: relative;
	margin-bottom: 3px;
	padding-left: 26px;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.1em;
}
.hour_btn_child a span::after {
  content: "";
  display: block;
  position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: url("../img/common/tel_icon.svg") no-repeat center center;
  background-size: cover;
}
.hour_btn_child:last-of-type a span {
  padding-left: 28px;
}
.hour_btn_child:last-of-type a span::after {
  width: 18px;
  height: 18px;
  background: url("../img/common/web_icon.svg") no-repeat center center;
  background-size: cover;
}
.isogi {
  position: relative;
  width: 49%;
	margin-top: 19px;
	padding: 10px;
  background: #FFD54F;
  border-radius: 9999px;
	box-shadow: 0px 20px 30px 0 rgba(0,0,0,0.1);
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.1em;
  text-align: center;
}
.isogi::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 19px;
  height: 19px;
  background: #FFD54F;
  clip-path: polygon(50% 0, 0 100%, 100% 100%);
}
@media screen and (max-width: 1360px) {
	.hour {
		padding: 80px 40px;
	}
}
@media screen and (max-width: 1180px) {
	.hour .flex {
		gap: 30px;
	}
	.hour_child {
		width: 100%;
	}
}
@media screen and (max-width: 750px) {
	.hour {
		padding: 60px 20px;
	}
	.hour .flex {
		gap: 40px;
	}
	.hour h2 {
		margin-bottom: 40px;
	}
	.hour_child h3 {
		padding: 17.5px;
	}
	.hour_child dl {
		font-size: 14px;
	}
	.hour_child dl dt {
		width: 70px;
	}
	.hour_child dl dd {
		width: calc(100% - 79px);
		font-size: 15px;
	}
	.hour_child dl dd a {
		font-size: 30px;
	}
  .hour_child table,
  .hour_child table tbody,
  .hour_child table tr {
    display: block;
    width: 100%;
  }
  .hour_child table tr {
    display: flex;
    flex-wrap: wrap;
  }
  .hour_child table th,
  .hour_child table td {
    display: block;
		font-size: 14px;
  }
  .hour_child table tr th:first-child,
  .hour_child table tr td:first-child {
    width: 100%;
		padding-bottom: 0;
		border-bottom: none;
  }
  .hour_child table tr th:not(:first-child),
  .hour_child table tr td:not(:first-child) {
    width: calc(100% / 8);
  }
  .hour_child table tbody tr th:first-of-type {
    width: 100%;
  }
	.hour_child p {
		margin-bottom: 0;
		text-align: center;
	}
	.isogi {
		display: none;
	}
	.hour iframe {
		width: 100%;
		height: 120vw;
		margin-top: 40px;
	}
}
/*-----------------------------------------------------
	#footer_hour
------------------------------------------------------*/
#footer_hour {
	padding-top: 131px;
	padding-bottom: 131px;
	background: url("../img/home/bg_02.webp") no-repeat center center;
	background-size: cover;
}
@media screen and (max-width: 750px) {
	#footer_hour {
		padding-top: 60px;
		padding-bottom: 60px;
		background: url("../img/home/sp_bg_02.webp") no-repeat center center;
		background-size: cover;
	}
}
/*-----------------------------------------------------
	footer
------------------------------------------------------*/
footer {
  padding-top: 80px;
	padding-bottom: 80px;
  background: var(--text-color);
}
footer .footer_inner {
	justify-content: space-between;
}
.footer_l {
	width: 29.6%;
	padding: 40px;
	background: #fff;
	text-align: center;
}
.footer_l h2 {
	margin-bottom: 20px;
}
.footer_l h2 img {
	max-width: 100%;
}
.footer_l h3 {
	margin-bottom: 10px;
	padding: 10px;
	background: var(--orange-color);
	border-radius: 10px 10px 0 0;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.1em;
	color: #fff;
	text-align: center;
}
.footer_l h3:last-of-type {
	background: var(--red-color);
}
.footer_l address {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: 0.1em;
	text-align: left;
}
.footer_tel {
	display: block;
	position: relative;
	margin-bottom: 20px;
	padding-left: 26px;
	font-size: 30px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.1em;
	text-align: left;
}
.footer_tel:last-of-type {
	margin-bottom: 0;
}
.footer_tel::after {
  content: "";
  display: block;
  position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: url("../img/common/tel_icon.svg") no-repeat center center;
  background-size: cover;
}
.footer_r {
	width: 63.2%;
}
.footer_link {
	gap: 20px;
}
.footer_child {
  width: 190px;
	color: #fff;
  text-align: left;
}
.footer_child:nth-of-type(2) {
  width: 388px;
	color: #fff;
  text-align: left;
}
.footer_child h3 {
	margin-bottom: 30px;
	font-family: var(--font-serif);
  font-size: 20px;
	font-weight: 700;
	line-height: 2.3;
	letter-spacing: 0.1em;
}
.footer_child ul li {
	margin-bottom: 30px;
}
.footer_child ul li:last-child {
	margin-bottom: 0;
}
.footer_child ul li a {
	display: inline-block;
	position: relative;
	padding-left: 15px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: 0.1em;
	color: #fff;
}
.footer_child ul li a::before {
  content: "";
  display: block;
  position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
  width: 5px;
  height: 8px;
  background: url("../img/common/w_arrow.svg") no-repeat center center;
  background-size: cover;
}
.footer_child ul.flex {
	gap: 10px;
}
.footer_child ul.flex li {
	width: calc(50% - 5px);
}
footer .center {
	margin-top: 40px;
}
footer small {
	display: inline-block;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: 0.1em;
  text-align: center;
	color: #fff;
}
@media screen and (max-width: 1360px) {
	.footer_l {
		width: 38%;
	}
	.footer_r {
		width: 58%;
	}
	.footer_child:nth-of-type(2) {
		width: calc(100% - 210px);
	}
}
@media screen and (max-width: 1000px) {
	.footer_l {
		width: 100%;
		margin-bottom: 30px;
		padding: 40px 100px;
	}
	.footer_r {
		width: 100%;
	}
}
@media screen and (max-width: 750px) {
	.footer_l {
		padding: 40px 60px;
	}
}
@media screen and (max-width: 560px) {
	.footer_l {
		padding: 40px 25px;
	}
	.footer_link {
		gap: 50px;
	}
	.footer_child, .footer_child:nth-of-type(2) {
		width: 100%;
	}
}
/*-----------------------------------------------------
	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;
   }
}