@charset "UTF-8";
/*
	Filename: common
	Version: 1.0.1
*/
/*-----------------------------------------------------
	Utility
------------------------------------------------------*/
:root {
	--font-sans: "Zen Kaku Gothic New", system-ui, -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  --font-serif: "Zen Old Mincho", "Noto Serif JP", "BIZ UDPMincho", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "MS PMincho", serif;
  --text-color: #333333;
  --main-color: #E18F36;
	--dark-color: #EE7431;
	--sub-color: #D3D3D3;
}
/* --------------------------------
   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;
}
.garamond {
  font-family: "Cormorant Garamond", 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: 10;
  width: 100%;
  height: 90px;
	background: #fff;
}
.header_inner {
  position: relative;
}
.header_logo a {
  position: absolute;
  top: 10px;
  left: 20px;
  z-index: 2;
  display: block;
  width: 240px;
  height: 73px;
  background-image: url("../img/common/logo.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  text-indent: -9999px;
  overflow: hidden;
  white-space: nowrap;
}
.header_nav {
  position: absolute;
  top: 20px;
  right: 0;
  z-index: 1;
  width: 100%;
	padding-right: 20px;
}
.header_nav ul.flex {
  align-items: center;
  justify-content: flex-end;
	gap: 0;
}
.header_nav ul.flex li a {
  display: block;
  padding: 18.5px 16px;
	border-right: 1px solid var(--sub-color);
  font-size: 15px;
  font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 1;
}
.header_nav ul.flex > li > a:hover, .header_nav ul.flex li.has-child a.is-active {
  color: var(--dark-color) !important;
	opacity: 1;
}
.header_nav ul.flex li.access a {
	border-right: none;
}
.header_nav ul.flex li.tel a, .header_nav ul.flex li.line a {
  display: block;
	width: 140px;
  padding: 14.5px 0;
	background: var(--main-color);
	border-right: none;
	border-radius: 100px;
	text-align: center;
}
.header_nav ul.flex li.tel a span {
  position: relative;
	padding-left: 23px;
  font-size: 16px;
  font-weight: 700;
	color: #fff;
	text-align: center;
}
.header_nav ul.flex li.tel a span::before {
  content: "";
  display: block;
  position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: url("../img/common/tel.svg") no-repeat center center;
  background-size: cover;
}
.header_nav ul.flex li.line {
  margin-left: 4px;
}
.header_nav ul.flex li.line a {
  padding: 14.5px 0;
	background: #00B900;
}
.header_nav ul.flex li.line a:hover {
	background: #0e970e;
}
.header_nav ul.flex li.line a span {
  position: relative;
	padding-left: 34px;
  font-size: 16px;
  font-weight: 700;
	color: #fff;
	text-align: center;
}
.header_nav ul.flex li.line a span::before {
  content: "";
  display: block;
  position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
  width: 30px;
  height: 28px;
  background: url("../img/common/line.svg") no-repeat center center;
  background-size: cover;
}
.header_nav ul.flex li.has-child ul {
  display: none;
  position: absolute;
  top: 70px;
	left: 50%;
	transform: translateX(-50%);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  width: 1100px;
	max-width: calc(100% - 80px);
  overflow-y: auto;
	margin: 0 auto;
  padding: 40px 60px;
	background: rgba(238, 116, 49, 0.9);
	border-radius: 0 0 30px 30px;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  text-align: center;
}
.header_nav ul.flex li.has-child:hover > ul {
  display: block;
  opacity: 1;
  visibility: visible;
}
.header_nav ul.flex li.has-child ul li {
  padding: 0;
}
.header_nav ul.flex li.has-child ul li h3 {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #fff;
	font-family: var(--font-serif);
	font-size: 30px;
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: 0.1em;
	color: #fff;
}
.header_nav ul.flex li.has-child ul li .mega {
  justify-content: center;
  gap: 20px;
  position: relative;
  width: 100%;
}
.header_nav ul.flex li.has-child ul li .mega a {
  display: inline-block;
  padding: 8px 30px;
	border: 1px solid #fff;
	border-radius: 100px;
  font-size: 18px;
	font-weight: 500;
  line-height: 2;
  letter-spacing: 0.1em;
	color: #fff;
}
.header_nav ul.flex li.has-child ul li .mega a:hover {
	background: rgba(255, 255, 255, 0.20);
	opacity: 1;
}
#sp-fixed-menu {
	display: none;
}
@media screen and (max-width: 1400px) {
	.header_logo a {
		top: 21px;
		width: 157px;
		height: 48px;
	}
	.header_nav ul.flex li a {
		padding: 18.5px 10px;
		font-size: 13px;
	}
	.header_nav ul.flex li.tel a {
		width: 100px;
	}
}
@media screen and (min-width: 1141px) {
	.fat-nav, .fat-nav ul, .fat-nav__wrapper .header_logo, .nav_cv {
		display: none;
	}
}
@media screen and (max-width: 1140px) {
  header {
    height: 83px;
  }
  .header_nav, .header_top {
    display: none;
  }
  .header_logo a {
		top: 11.5px;
		width: 200px;
		height: 60px;
  }
	/* SPメニュー */
  .hamburger {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10002;
    width: 60px ;
    height: 83px;
    padding: 0;
		background: var(--main-color);
    touch-action: manipulation;
  }
  .hamburger__icon {
    position: relative;
    margin-top: 9px;
  }
  .hamburger__icon, .hamburger__icon::before, .hamburger__icon::after {
    width: 40px;
    height: 1px;
		position: absolute;
    top: 31px;
		right: 10px;
    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: 40px;
    top: -10px;
  }
  .hamburger__icon::after {
		width: 40px;
    top: 10px;
  }
	.hamburger.active .hamburger__icon {
    background-color: transparent;
		border-radius: 400px;
  }
  .hamburger.active .hamburger__icon:before, .hamburger.active .hamburger__icon:after {
		width: 40px;
    height: 1px;
  }
  .hamburger.active .hamburger__icon:before {
    transform: translateY(10px) rotate(30deg);
  }
  .hamburger.active .hamburger__icon:after {
    transform: translateY(-10px) rotate(-30deg);
  }
  .fat-nav {
    top: 0;
    left: 0;
    z-index: 9999;
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
  }
  .fat-nav__wrapper {
    position: absolute;
    top: 83px;
    left: 0;
    display: table;
    table-layout: fixed;
    width: 100%;
    height: calc(100% - 83px);
  }
	.fat-nav_inner {
		width: 100%;
		height: 100%;
    padding: 0 30px 40px;
    background: #fffbf2;
	}
	.fat-nav .header_logo {
    position: fixed;
    top: 0;
    left: 0;
		z-index: 10;
		width: 100%;
		height: 83px !important;
    background: #fff;
  }
  .fat-nav .header_logo a {
    background-image: url("../img/common/logo.svg");
  }
  .fat-nav li a {
    display: block;
    position: relative;
    padding: 20px 40px 20px 20px;
		border-bottom: 1px solid #CECECE;
		font-size: 16px;
		font-weight: 500;
		line-height: 1.6;
		letter-spacing: 0.1em;
  }
  .aco {
    cursor: pointer;
    position: relative;
    z-index: 1;
  }
  .aco::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 10px;
    z-index: 1;
    transform: translateY(-50%);
		width: 20px;
		height: 20px;
		background: url("../img/common/plus.svg") no-repeat center center;
		background-size: cover;
  }
  .aco.is-active::after {
    background: url("../img/common/minus.svg") no-repeat center center;
		background-size: cover;
  }
  .fat-nav_menu_list {
    height: 0;
    overflow: hidden;
  }
  .aco.is-active + .fat-nav_menu_list {
    height: auto;
  }
  .fat-nav_menu_list li a {
		color: var(--main-color);
  }
	ul.nav_cv {
		width: 300px;
		margin: 30px auto 0;
	}
	ul.nav_cv li.tel {
		margin-bottom: 16px;
	}
	ul.nav_cv li.tel a, ul.nav_cv li.line a {
		display: block;
		padding: 14.5px 0;
		background: var(--main-color);
		border-radius: 158px;
		text-align: center;
	}
	ul.nav_cv li.tel a span {
		position: relative;
		padding-left: 42px;
		font-size: 25px;
		font-weight: 700;
		color: #fff;
		text-align: center;
	}
	ul.nav_cv li.tel a span::before {
		content: "";
		display: block;
		position: absolute;
		top: 50%;
		left: 0;
		transform: translateY(-50%);
		width: 31px;
		height: 31px;
		background: url("../img/common/tel.svg") no-repeat center center;
		background-size: cover;
	}
	ul.nav_cv li.line a {
		background: #00B900;
	}
	ul.nav_cv li.line a span {
		position: relative;
		padding-left: 50px;
		font-size: 25px;
		font-weight: 700;
		color: #fff;
		text-align: center;
	}
	ul.nav_cv li.line a span::before {
		content: "";
		display: block;
		position: absolute;
		top: 50%;
		left: 0;
		transform: translateY(-50%);
		width: 46px;
		height: 44px;
		background: url("../img/common/line.svg") no-repeat center center;
		background-size: cover;
	}
	#sp-fixed-menu {
		display: none;
		position: fixed;
		left: 0;
		bottom: 0;
		z-index: 99;
		opacity: 0;
		transition: opacity 0.5s ease;
		width: 100%;
	}
	#sp-fixed-menu.show {
		display: block;
		opacity: 1;
	}
	#sp-fixed-menu ul {
		justify-content: space-between;
	}
	#sp-fixed-menu ul li {
		width: 50%;
	}
	#sp-fixed-menu ul li a {
		display: block;
		border-radius: 20px 20px 0 0;
		padding: 11px 0;
		color: #fff;
		text-align: center;
	}
	#sp-fixed-menu ul li.sp_fixed_tel a, #sp-fixed-menu ul li.sp_fixed_line a {
		display: block;
		background: var(--main-color);
	}
	#sp-fixed-menu ul li.sp_fixed_tel a span {
		position: relative;
		padding-left: 43px;
		font-size: 20px;
		font-weight: 700;
		color: #fff;
		text-align: center;
	}
	#sp-fixed-menu ul li.sp_fixed_tel a span::before {
		content: "";
		display: block;
		position: absolute;
		top: 50%;
		left: 0;
		transform: translateY(-50%);
		width: 31px;
		height: 31px;
		background: url("../img/common/tel.svg") no-repeat center center;
		background-size: cover;
	}
	#sp-fixed-menu ul li.sp_fixed_line a {
		background: #00B900;
	}
	#sp-fixed-menu ul li.sp_fixed_line a span {
		position: relative;
		padding-left: 37px;
		font-size: 20px;
		font-weight: 700;
		color: #fff;
		text-align: center;
	}
	#sp-fixed-menu ul li.sp_fixed_line a span::before {
		content: "";
		display: block;
		position: absolute;
		top: 50%;
		left: 0;
		transform: translateY(-50%);
		width: 30px;
		height: 28px;
		background: url("../img/common/line.svg") no-repeat center center;
		background-size: cover;
	}
}

/*-----------------------------------------------------
	midasi
------------------------------------------------------*/
.midasi_01 {
	position: relative;
	margin-bottom: 40px;
	padding: 0 25px 25px;
	font-size: 18px;
	font-weight: 400;
	line-height: 2.3;
	letter-spacing: 0.1em;
	color: var(--text-color);
	text-align: center;
}
.midasi_01 span {
	display: block;
	margin-bottom: 5px;
	font-family: "Cormorant Garamond", serif;
	font-size: 70px;
	font-style: italic;
	font-weight: 300;
	line-height: 1;
	color: var(--sub-color);
}
.midasi_01::before {
	content: "";
	display: block;
	position: absolute;
	bottom: -8px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	width: 20px;
	height: 16px;
	background: url("../img/common/midasi_icon.svg") no-repeat center center;
	background-size: cover;
}
.midasi_02 {
	position: relative;
	z-index: 1;
	margin-bottom: 115px;
	font-family: var(--font-serif);
	font-size: 44px;
	font-weight: 500;
	line-height: 1.3;
  text-align: center;
}
.midasi_02 span {
  content: "";
  display: block;
  position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	z-index: -1;
	width: 100%;
	font-family: "Cormorant Garamond", serif;
	font-size: 200px;
	font-weight: 400;
	line-height: 1;
	color: #fff;
}
.midasi_02 span.pink {
	color: var(--sub-color) !important;
}
@media screen and (max-width: 1360px) {
	.midasi_02 span {
		font-size: 9.412vw;
	}
}
@media screen and (max-width: 750px) {
	.midasi_01 {
		margin-bottom: 50px;
		padding: 0 15px 15px;
		font-size: 14px;
	}
	.midasi_01 span {
		display: block;
		margin-bottom: 5px;
		font-size: 50px;
	}
	.midasi_01::before {
		bottom: -15px;
	}
	.midasi_02 {
		margin-bottom: 50px;
		font-size: 30px;
	}
	.midasi_02 span {
		font-size: 90px;
	}
}
@media screen and (max-width: 500px) {
	.midasi_02 span {
		font-size: 18vw;
	}
}
/*-----------------------------------------------------
	ボタン
------------------------------------------------------*/
.link_more_01 {
	display: inline-block;
	position: relative;
	width: 350px;
	max-width: 100%;
	padding: 22px 30px 22px 20px;
	background: var(--main-color);
	border-radius: 100px;
	box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.15);
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.1em;
	color: #fff;
}
.link_more_01::after {
	content: "";
	position: absolute;
	right: 20px;
	top: 50%;
	width: 26px;
	height: 26px;
	background: url("../img/common/link_arrow.svg") no-repeat center center;
	background-size: cover;
	transform: translateY(-50%);
	transition: all 0.3s ease;
}
.link_more_01:hover {
	opacity: 1;
	background: var(--dark-color);
}
.link_more_02 {
	display: inline-block;
	position: relative;
	padding: 19px 59px;
	background: var(--main-color);
	border-radius: 100px;
	font-size: 18px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.05em;
	color: #fff;
}
.link_more_02 span {
	display: flex;
	align-items: center;
	position: relative;
}
.link_more_02 span::after {
	content: "▶";
	margin-left: 10px;
	font-size: 14px;
}
.link_more_02:hover {
	opacity: 1;
	background: var(--dark-color);
}
@media screen and (max-width: 750px) {
	.link_more_01 {
		text-align: left !important;
	}
}

/*-----------------------------------------------------
	#page_mv
------------------------------------------------------*/
#page_mv {
  position: relative;
	top: 0;
  z-index: 0;
  width: 100%;
  height: 330px;
	margin-top: 90px;
}
#page_mv::after {
  content: "";
  display: block;
  position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.3);
}
#page_mv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
#page_mv .page_title {
  position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
  z-index: 2;
  width: 100%;
	text-align: center;
}
#page_mv .page_title h1, #page_mv .page_title div {
	font-family: var(--font-serif);
	font-size: 36px;
	font-weight: 400;
	line-height: 1.3;
	letter-spacing: 0.1em;
	color: #fff;
}
.breadcrumbs {
	margin-bottom: 40px;
	padding: 15px 0;
  font-size: 13px;
	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: 1140px) {
	#page_mv {
		margin-top: 83px;
	}
}
@media screen and (max-width: 1000px) {
	#page_mv .page_title h1, #page_mv .page_title div {
		padding-right: 40px;
		padding-left: 40px;
	}
}
@media screen and (max-width: 750px) {
	#page_mv {
		height: 300px;
	}
	#page_mv .page_title {
		left: 0;
	}
	#page_mv .page_title h1, #page_mv .page_title div {
		padding: 0 20px;
		font-size: 24px;
		font-weight: 500;
		text-align: left;
	}
}
/*-----------------------------------------------------
	.main
------------------------------------------------------*/
.archive_wrap {
	padding-bottom: 100px;
}
article.page_wrap {
	width: 1280px;
	margin-right: auto;
	margin-left: auto;
  padding-bottom: 100px;
}
@media screen and (max-width: 1360px) {
	article.page_wrap {
		width: calc(100% - 80px);
	}
}
@media screen and (max-width: 750px) {
	article.page_wrap {
		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-size: 14px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.1em;
}
.main mark {
  font-style: normal;
}
.main a {
  color: var(--main-color);
  text-decoration: none;
}
.main a:hover, .main p.link_more_03 a:hover {
  color: var(--dark-color);
  opacity: 1;
}
.main a.link_more_02 {
  color: #fff;
}
.main p.link_more_03 a {
  position: relative;
	padding-left: 20px;
}
.main p.link_more_03 a::after {
  content: "";
  display: block;
  position: absolute;
	top: 51%;
	left: 0;
	transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: url("../img/common/link_btn.svg") no-repeat center center;
  background-size: cover;
}
.main p.link_more_03 a:hover::after {
  background: url("../img/common/link_btn_hover.svg") no-repeat center center;
  background-size: cover;
}
.main hr {
  display: block;
  height: 1px;
  border: 0;   
  border-top: 1px solid #dadada;
  margin: 3em 0;
  padding: 0;
}
.main h2 {
	margin-bottom: 40px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--text-color);
	font-family: var(--font-serif);
	font-size: 36px;
	font-weight: 500;
	line-height: 1.3;
	letter-spacing: 0.1em;
}
.main h3 {
	margin-bottom: 40px;
	padding-bottom: 10px;
	border-bottom: 3px solid var(--main-color);
	font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
.main h4 {
  display: inline-block;
  margin-bottom: 30px;
  padding: 0 10px 3px;
  background: var(--main-color);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.6;
  color: #fff;
  letter-spacing: 0.04em;
}
.main h5 {
  margin-bottom: 30px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
.main h6 {
  margin-bottom: 30px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
.main p {
  margin-bottom: 40px;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.1em;
}
.main ul, .main ol {
  margin-bottom: 40px;
}
.main ul li {
  margin-bottom: 20px;
  margin-left: 20px;
  list-style-type: disc;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
.main ul li::marker {
  color: var(--main-color);
}
.main ol li {
  margin-bottom: 20px;
  margin-left: 20px;
  list-style-type: decimal;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
.main figure {
  margin-bottom: 40px;
}
.main .wp-element-caption {
  font-size: 14px;
}
.main figure img {
  max-width: 100%;
  height: auto;
}
.main mark {
	padding: 0px 10px 1px;
}
.main .youtube-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
}
.main .youtube-wrap iframe {
  width: 100%;
  height: 100%;
}
.main .table_wrap {
  width: 100%;
  margin-bottom: 50px;
  padding-top: 10px;
  overflow-x: auto;
  white-space: nowrap;
}
.main table {
  width: 100%;
  margin: 0 auto 40px;
}
.main table tr th {
  width: 30%;
  padding: 20px;
	background: var(--main-color);
	border-bottom: 1px solid #fff;
	font-size: 14px;
	color: #fff;
	vertical-align: middle;
	text-align: center;
}
.main table tr td {
  padding: 20px;
  border: 1px solid #DADADA;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
  vertical-align: middle;
	text-align: left;
}
.main .price table {
  width: 100%;
  margin: 0 auto;
}
.main .price table tr th {
  position: relative;
  padding: 20px;
	border: none;
	border-bottom: none;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.2em;
  vertical-align: middle;
}
.main .price table tr th:first-child {
  width: 20%;
}
.main .price table tr th:last-child {
  width: 15%;
}
.main .price table tr th::after {
  content: "";
  display: block;
  position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: #DADADA;
}
.main .price table tr th:last-child::after {
  display: none;
}
.main .price table tr td {
  padding: 20px;
	background: #FFF6EC;
  border: none;
  border-bottom: 1px solid #DADADA;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  line-height: 1.6;
  letter-spacing: 0.08em;
  vertical-align: middle;
}
.main .price table tr td img {
	max-width: 100%;
  margin-top: 10px;
}
.main .price table tr td:first-child {
	background: none;
}
.main .price table tr td:last-child {
	background: none;
  text-align: right;
}
#ez-toc-container {
  display: block;
	width: 700px !important;
	margin: 0 auto 40px;
  padding: 40px 75px;
  background: #F9EEE2 !important;
  border: none !important;
  box-shadow: none;
  border-radius: 60px;
}
div#ez-toc-container .ez-toc-title {
	display: block !important;
	margin: 0 auto 10px;
	font-family: var(--font-serif);
	font-size: 24px;
	font-weight: 700;
	color: var(--main-color) !important;
	text-align: center !important;
}
.main ul.ez-toc-list li {
	list-style: disc !important;
	border-bottom: 1px solid #D3D3D3;
}
.main ul.ez-toc-list li a {
	display: block !important;
	padding: 15px 0;
	font-size: 18px !important;
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: 0.1em;
	color: #333 !important;
}
.main ul.ez-toc-list li a:visited {
  color: #333 !important;
}
.main ul.ez-toc-list li a:hover {
  text-decoration: none !important;
}
@media screen and (max-width: 750px) {
	.main h1 {
		margin-bottom: 20px;
		padding-bottom: 20px;
		font-size: 22px;
	}
	.main h2 {
		font-size: 24px;
	}
	.main h3 {
		margin-bottom: 30px;
		font-size: 18px;
	}
	.main h4 {
		padding: 3px 10px 3px;
		font-size: 16px;
	}
	.main h5 {
		font-size: 16px;
	}
	.main h6 {
		font-size: 16px;
	}
	.main p {
		margin-bottom: 30px;
		font-size: 14px;
	}
	.main ul, .main ol {
		margin-bottom: 30px;
	}
	.main ul li {
		font-size: 14px;
	}
	.main ol li {
		font-size: 14px;
	}
	.main .price table,
  .main .price tbody,
  .main .price tr,
  .main .price td { display: block; width: 100% !important; }
  .main .price table tr:first-child { display:none; }
  .main .price table tr { 
    border: 1px solid #DADADA;
    border-radius: 10px;
    overflow: hidden;
    margin: 0 0 16px;
    background: #fff;
  }
  .main .price table tr td:nth-child(1) {
    padding: 14px 12px;
    font-weight: 700;
    border-bottom: 1px solid #E6E6E6;
  }
  .main .price table tr td:nth-child(3) {
    padding: 14px 12px;
    text-align: right;
    font-weight: 700;
    border-bottom: none;
  }
  .main .price table tr td:nth-child(2) {
    padding: 14px 12px;
    border-bottom: none;
    background: #FFF6EC;
  }

	#ez-toc-container {
		width: 100% !important;
		margin: 0 auto 60px;
		padding: 40px 20px;
	}
	div#ez-toc-container .ez-toc-title {
		font-size: 20px;
	}
	.main ul.ez-toc-list li a {
		font-size: 14px !important;
	}
}
/*-----------------------------------------------------
	menu_link
------------------------------------------------------*/
.menu_list {
  display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
}
.menu_list li {
	position: relative;
	width: calc((100% - 60px) / 3);
}
.menu_list li::after {
	content: "";
	position: absolute;
	right: 6px;
	top: 50%;
	width: 9px;
	height: 9px;
	border-right: 2px solid var(--main-color);
	border-bottom: 2px solid var(--main-color);
	transform: translateY(-50%) rotate(-45deg);
}
.menu_list li a {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
  align-items: center;
	padding-right: 10px;
  background: #fff;
  border: 1px solid #dadada;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
}
.menu_list li a img {
	width: 94px;
  height: auto;
  margin-right: 18px;
}
@media screen and (max-width: 1160px) {
  .menu_list li {
    width: calc((100% - 30px) / 2);
  }
}
@media screen and (max-width: 750px) {
	.menu_list {
		gap: 10px;
	}
	.menu_list li {
		position: relative;
		width: calc((100% - 10px) / 2);
	}
	.menu_list li::after {
		display: none;
	}
	.menu_list li a {
		padding-right: 5px;
		font-size: 13px;
	}
	.menu_list li a img {
		width: 70px;
		height: auto;
		margin-right: 8px;
	}
}
@media screen and (max-width: 560px) {
	.menu_list li {
		width: 100%;
	}
}
/*-----------------------------------------------------
	投稿
------------------------------------------------------*/
.post_layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 80px;
}
.post_thumb {
  margin: 20px 0 30px;
}
.post_thumb img {
  width: 100%;
  height: auto;
  display: block;
}
.sidebar_box + .sidebar_box {
  margin-top: 30px;
}
.sidebar_list {
  list-style-type: none;
	padding: 20px;
  background: #FFF5F5;
}
.sidebar_list li a {
  text-decoration: none;
}
.sidebar_item + .sidebar_item{
  margin-top: 10px;
}
.sidebar_date {
  display: block;
  font-size: 14px;
  opacity: .7;
}
@media (max-width: 1000px){
  .post_layout {
    grid-template-columns: 1fr;
		gap: 30px;
  }
  .post_sidebar {
    margin-top: 30px;
  }
}

/*-----------------------------------------------------
	サムネ付きアーカイブリスト
------------------------------------------------------*/
.archive_list {
  gap: 30px;
}
.archive_list_child {
	display: block;
  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 {
  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_list {
    gap: 30px;
  }
  .archive_list_child {
    width: 100%;
  }
  .archive_list_child .thumb img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}
/*-----------------------------------------------------
	#news #blog
------------------------------------------------------*/
.news_list_wrap {
	justify-content: space-between;
}
.news_l {
  width: 15.6%;
}
.news_l h2 {
  font-size: 20px;
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: 0.1em;
}
.news_l h2 span {
	display: inline-block;
	position: relative;
	margin-bottom: 20px;
	font-family: "Cinzel", serif;
  font-size: 30px;
	font-weight: 400;
	color: #9F927B;
}
.news_l h2 span::after {
  content: "";
  display: block;
  position: absolute;
	bottom: 2px;
	left: 0;
  width: 30px;
  height: 2px;
  background: #9F927B;
	border-radius: 100px;
}
.news_r {
  width: 74.5%;
	gap: 20px 34px;
}
.news_list {
	justify-content: space-between;
	position: relative;
	width: calc((100% - 40px) / 2);
	padding-right: 23px;
	padding-bottom: 5px;
	border-bottom: 1px solid #9F927B;
}
.news_list::after {
  content: "";
  display: block;
  position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
  width: 7px;
  height: 13px;
  background: url("../img/common/news_list_arrow.svg") no-repeat center center;
  background-size: cover;
}
.news_thumb {
	width: 120px;
}
.news_thumb img {
	width: 120px;
	height: 80px;
	object-fit: cover;
}
.news_summary {
	width: calc(100% - 148px);
	padding: 7px 0;
}
.date {
  font-family: "Cinzel", serif;
  font-size: 12px;
	font-weight: 400;
	line-height: 1.7;
	letter-spacing: 0.1em;
}
.news_summary p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
	display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.news_link {
	margin-top: -40px;
}
@media screen and (max-width: 1000px) {
	.news_l {
		width: 100%;
		margin-bottom: 30px;
	}
	.news_r {
		width: 100%;
	}
	.news_link {
		width: 100%;
		margin-top: 50px;
		text-align: center;
	}
}
@media screen and (max-width: 750px) {
	#news {
		padding-top: 40px;
		padding-bottom: 60px;
	}
	.news_list {
		width: 100%;
		padding-right: 17px;
		padding-bottom: 17px;
	}
	.news_l h2 {
		position: relative;
		margin-bottom: 30px;
		font-size: 16px;
		text-align: right;
	}
	.news_l h2 span {
		position: absolute;
		top: 14px;
		left: 0;
		margin-bottom: 0;
	}
	.news_link {
		margin-top: 30px;
	}
	.news_thumb {
		width: 90px;
	}
	.news_thumb img {
		width: 90px;
		height: 60px;
	}
	.news_summary {
		width: calc(100% - 104px);
		padding: 0;
	}
	.date {
		font-size: 11px;
	}
	.news_summary p {
		font-size: 13px;
	}
}
/*-----------------------------------------------------
	#case
------------------------------------------------------*/
.term_nav {
  margin: 0 0 32px;
}
.term_nav_list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
}
.term_nav_item a {
  display: inline-block;
  padding: 10px 20px;
  background: #fff;
  border: 1px solid var(--dark-color);
  border-radius: 999px;
  font-size: 14px;
  transition: all .3s ease;
}
.term_nav_item a:hover, .term_nav_item a.is-active {
  background: var(--dark-color);
  color: #fff;
  border-color: var(--dark-color);
	opacity: 1;
}

/*-----------------------------------------------------
	ページネーション
------------------------------------------------------*/
.pagination {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}
a.page-numbers, .pagination .current {
  display: block;
  margin: 0 3px;
	padding: 7px 9px;
	border: 1px solid var(--main-color);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
	text-decoration: none;
  color: var(--main-color);
}
span.page-numbers.dots {
  margin-right: 10px;
  margin-left: 10px;
  font-size: 14px;
}
.pagination .current, a.page-numbers:hover {
	background: var(--main-color);
	border: 1px solid var(--main-color);
	color: #fff;
  opacity: 1;
}
a.page-numbers.next, a.page-numbers.prev {
  position: relative;
  width: 27.78px;
  height: 30px;
  margin: 0 10px;
  background: var(--main-color);
  border: 1px solid var(--main-color);
  color: #fff;
}
a.page-numbers.next {
  margin-right: 0;
}
a.page-numbers.prev {
  margin-left: 0;
}
a.page-numbers.next img, 
a.page-numbers.prev img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
a.page-numbers.prev img {
  transform: translate(-50%, -50%) scaleX(-1);
  -webkit-transform: translate(-50%, -50%) scaleX(-1);
}
a.page-numbers.next:hover, a.page-numbers.prev:hover {
	background: var(--dark-color);
  opacity: .6;
}
/*-----------------------------------------------------
	.information_hour
------------------------------------------------------*/
.information_hour {
  padding-top: 60px;
	background: url("../img/home/hour_bg.webp") no-repeat center bottom;
	background-size: cover;
}
.information_hour .wrap {
	justify-content: space-between;
	position: relative;
	z-index: 1;
  width: 1250px;
	padding: 60px;
	background: #fff;
	box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.2);
}
.information_hour_l {
	width: 48%;
	text-align: center;
}
.information_hour_l img {
	margin-bottom: 20px;
}
.hour {
  width: 100%;
	margin-bottom: 20px;
  text-align: center;
}
.hour th {
	padding-top: 28.5px;
  padding-bottom: 28.5px;
	background: var(--text-color);
	border: 1px solid #333;
  font-size: 18px;
  font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0.04em;
	color: #fff;
	text-align: center;
}
.hour tbody tr th:first-of-type {
  width: 140px;
	padding-right: 10px;
	padding-left: 10px;
}
.hour tbody tr td {
  padding: 27px 0;
  border: 1px solid #B6B3B0;
  font-size: 18px;
  font-weight: 500;
	line-height: 1.3;
	letter-spacing: 0.04em;
  vertical-align: middle;
	text-align: center;
}
.hour tr:last-of-type td {
  padding: 16px 0;
}
.vertical {
	writing-mode: vertical-rl;
	text-orientation: upright;
}
.information_hour_l p {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: 0.1em;
	text-align: left;
}
.information_hour_l p.orange {
	margin-bottom: 20px;
	font-size: 18px;
	font-weight: 700;
	color: var(--dark-color);
}
.information_hour_r {
	width: 47%;
}
.information_hour_r iframe {
	width: 100%;
	height: 272px;
	margin-bottom: 30px;
}
.information_hour_r ul li {
	position: relative;
	padding: 15px 0 15px 55.5px;
	border-top: 1px solid #959595;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: 0.04em;
}
.information_hour_r ul li::before {
  content: "";
  display: block;
  position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: url("../img/common/train.svg") no-repeat center center;
  background-size: cover;
}
.information_hour_r ul li:last-of-type::before {
  background: url("../img/common/address.svg") no-repeat center center;
  background-size: cover;
}
@media screen and (max-width: 1330px) {
	.information_hour .wrap {
		width: calc(100% - 80px);
		padding: 30px;
	}
	.information_hour_r ul li {
		font-size: 16px;
	}
}
@media screen and (max-width: 1050px) {
	.information_hour_l {
		width: 100%;
		margin-bottom: 30px;
	}
	.information_hour_r {
		width: 100%;
	}
	.information_hour_r ul li {
		font-size: 18px;
	}
}
@media screen and (max-width: 750px) {
	.information_hour .wrap {
		width: calc(100% - 40px);
		padding: 40px 20px 20px;
	}
	.information_hour_l img {
		width: 180px;
	}
	.hour th {
		font-size: 13px;
	}
	.hour tbody tr th:first-of-type {
		width: 110px;
	}
	.hour tbody tr td {
		font-size: 14px;
	}
	.information_hour_l p {
		font-size: 14px;
	}
	.information_hour_l p.orange {
		font-size: 16px;
	}
	.information_hour_r iframe {
		height: 46.933vw;
	}
	.information_hour_r ul li {
		padding: 20px 0 20px 37.5px;
		font-size: 14px;
	}
	.information_hour_r ul li::before {
		width: 30px;
		height: 30px;
	}
}

.cv {
	position: relative;
	z-index: 0;
	margin-top: -54px;
	padding: 114px 20px 93px;
	background: #EE7431;
	background: linear-gradient(45deg, rgba(238, 116, 49, 1) 0%, rgba(244, 170, 90, 1) 52%, rgba(238, 116, 49, 1) 100%);
}
.cv_wrap {
	width: 900px;
	margin: 0 auto;
}
.cv_wrap h2 {
	margin-bottom: 36px;
	font-family: "Cormorant Garamond", serif;
	font-size: 96px;
	font-weight: 400;
	color: #fff;
	text-align: center;
}
.cv_btn {
	justify-content: space-between;
	width: 100%;
}
.cv_tel, .cv_line {
	display: block;
	position: relative;
	width: 46.6%;
	padding: 28px 120px 28px 68.5px;
	background: #fff;
	box-shadow: 10px 10px 25px 0px rgba(0,0,0,0.25);
	border-radius: 20px;
	font-family: var(--font-serif);
	font-size: 40px;
	font-weight: 700;
	text-align: left;
}
.cv_tel:hover, .cv_line:hover {
	opacity: 1;
	color: var(--dark-color);
}
.cv_tel::after, .cv_line::after {
  content: "";
  display: block;
  position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
  width: 120px;
  height: 120px;
  background: url("../img/common/cv_tel.svg") no-repeat center center;
  background-size: cover;
	border-radius: 0 20px 20px 0;
}
.cv_line::after {
  background: url("../img/common/cv_line.svg") no-repeat center center;
  background-size: cover;
}
@media screen and (max-width: 980px) {
	.cv_wrap {
		width: calc(100% - 80px);
	}
	.cv_btn {
		flex-direction: column;
		gap: 15px;
	}
	.cv_wrap h2 {
		font-size: 80px;
	}
	.cv_tel, .cv_line {
		width: 420px;
		margin: 0 auto;
	}
}
@media screen and (max-width: 750px) {
	.cv {
		margin-top: -72px;
		padding: 132px 0 74px;
	}
	.cv_wrap {
		width: calc(100% - 40px);
	}
	.cv_wrap h2 {
		font-size: 40px;
	}
	.cv_tel, .cv_line {
		width: 350px;
		max-width: 100%;
		padding: 24px 100px 23px 57px;
		border-radius: 16.67px;
		font-size: 33px;
	}
	.cv_tel::after, .cv_line::after {
		width: 100px;
		height: 100px;
		border-radius: 0 16.67px 16.67px 0;
	}
}
/*-----------------------------------------------------
	#medical
------------------------------------------------------*/
#medical {
	padding-bottom: 50px;
	background-image: url("../img/home/medical_bg.webp");
	background-repeat: no-repeat;
	background-position: center top;
	background-color: #FFF4E9;
}
.medical_header {
	margin-bottom: 37px;
	padding: 69px 0;
	background: url("../img/home/medical_header_bg.webp") no-repeat center center;
	background-size: cover;
	text-align: center;
}
.medical_header h2 {
	position: relative;
	z-index: 0;
}
.medical_header h2::after {
  content: "MEDICAL CONSULTATION";
  display: block;
  position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	z-index: -1;
	width: 100%;
	font-family: "Cormorant Garamond", serif;
	font-size: 100px;
	font-weight: 700;
	line-height: 1;
	color: var(--main-color);
	text-align: center;
}
.medical_header h2 span {
	display: inline-block;
	margin: 0 4px;
	padding: 10px 13px 16px;
	background: var(--dark-color);
	font-family: var(--font-serif);
	font-size: 84px;
	font-weight: 500;
	line-height: 1;
	color: #fff;
}
@media screen and (max-width: 1320px) {
	.medical_header h2::after {
		font-size: 7.576vw;
	}
}
@media screen and (max-width: 750px) {
	.medical_header {
		padding: 50px 0;
		background: url("../img/home/sp_medical_header_bg.webp") no-repeat center center;
		background-size: cover;
	}
	.medical_header h2::after {
		font-size: 6.667vw;
	}
	.medical_header h2 span {
		margin: 0 3px;
		padding: 6px 7.5px 9px;
		font-size: 45px;
	}
}
h3.medical_midasi {
	margin-bottom: 37px;
	text-align: center;
}
h3.medical_midasi span {
	padding: 0 20px;
	background: #777;
	border-radius: 100px;
	font-size: 30px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.1em;
	color: #fff;
}
ul.medical_list {
	justify-content: center;
	gap: 16px;
	margin-bottom: 30px;
	padding-bottom: 40px;
	border-bottom: 1px solid #959595;
}
ul.medical_list li {
	width: 200px;
	height: 200px;
	box-shadow: 10px 10px 20px 0px rgba(0,0,0,0.25);
}
ul.medical_list li a {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	padding-top: 34px;
	background: #fff;
	text-align: center;
}
ul.medical_list li a::after {
  content: "";
  display: block;
  position: absolute;
	bottom: 3px;
	right: 3px;
  width: 25px;
  height: 23px;
  background: url("../img/common/medical_icon.svg") no-repeat center center;
  background-size: cover;
}
ul.medical_list li a span {
	display: inline-block;
	position: absolute;
	bottom: 30px;
	left: 0;
	width: 100%;
	font-size: 18px;
	font-weight: 500;
}
@media screen and (max-width: 750px) {
	h3.medical_midasi {
		margin-bottom: 30px;
	}
	h3.medical_midasi span {
		font-size: 22px;
	}
	ul.medical_list {
		gap: 10px;
		padding-bottom: 30px;
	}
	ul.medical_list li {
		width: 190px;
		height: 190px;
	}
	ul.medical_list li a {
		padding-top: 34px;
	}
	ul.medical_list li a::after {
		width: 23px;
		height: 21px;
	}
	ul.medical_list li a span {
		font-size: 17px;
	}
}
@media screen and (max-width: 448px) {
	ul.medical_list li {
		width: 162px;
		height: 162px;
	}
	ul.medical_list li a img {
		height: 50px;
	}
}
.second .wrap {
	position: relative;
	padding: 0 40px;
}
.second .wrap::after {
  content: "";
  display: block;
  position: absolute;
	bottom: -50px;
	right: -30px;
  width: 357px;
  height: 470px;
  background: url("../img/home/second_img.png") no-repeat center center;
  background-size: cover;
}
.second h4 {
	position: relative;
	z-index: 0;
	padding-top: 50px;
	padding-left: 47px;
	font-family: var(--font-serif);
	font-size: 80px;
	font-weight: 700;
	font-style: italic;
}
.second h4 span {
	position: absolute;
	top: -30px;
	left: 0;
	z-index: -1;
	font-family: "Cormorant Garamond", serif;
	font-size: 128px;
	font-weight: 400;
	font-style: normal;
	color: #fff;
}
.second_box {
	position: relative;
	width: 893px;
	padding: 10px;
	background: #fff;
	box-shadow: 10px 10px 20px 0px rgba(0,0,0,0.25);
}
.second_box::before {
  content: "";
  display: block;
  position: absolute;
	top: 0;
	left: 0;
  width: 64px;
  height: 61px;
  background: url("../img/home/second_icon_l.svg") no-repeat center center;
  background-size: cover;
}
.second_box::after {
  content: "";
  display: block;
  position: absolute;
	bottom: 0;
	right: 0;
  width: 64px;
  height: 61px;
  background: url("../img/home/second_icon_r.svg") no-repeat center center;
  background-size: cover;
}
.second_inner {
	padding: 40px 50px;
	border: 1px solid #959595;
}
.second_inner ul li {
	position: relative;
	padding-left: 55px;
	font-family: var(--font-serif);
	font-size: 36px;
	font-weight: 400;
	line-height: 1.3;
	letter-spacing: 0.04em;
	color: var(--dark-color);
}
.second_inner ul li::before {
  content: "";
  display: block;
  position: absolute;
	top: 51%;
	left: 0;
	transform: translateY(-50%);
  width: 39px;
  height: 31px;
  background: url("../img/common/check_icon.svg") no-repeat center center;
  background-size: cover;
}
.second_inner p {
	margin-top: 10px;
	font-family: var(--font-serif);
	font-size: 40px;
	font-weight: 400;
	line-height: 1.3;
	letter-spacing: 0.04em;
}
.second_inner p span {
	background: linear-gradient(transparent 60%, #F8EDE2 60%);
	font-size: 60px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0.04em;
}
.second_br {
	display: none;
}
@media screen and (max-width: 1320px) {
	.second {
		padding-top: 160px;
	}
	.second .wrap {
		padding: 0;
	}
	.second .wrap::after {
		right: -30px;
		bottom: 230px;
	}
	.second_box {
		position: relative;
		z-index: 2;
		width: 100%;
	}
	.second h4 {
		margin-bottom: 120px;
		padding-top: 0;
		padding-left: 0;
	}
	.second h4 span {
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		color: #FFE3C6;
	}
	.second_br {
		display: block;
	}
}
@media screen and (max-width: 1100px) {
	.second {
		padding-top: 80px;
	}
	.second h4 {
		font-size: 55px;
	}
	.second h4 span {
		font-size: 100px;
	}
	.second .wrap::after {
		right: 10px;
		top: -80px;
		bottom: auto;
		width: 250px;
		height: 329px;
	}
	.second_inner p {
		font-size: 30px;
	}
	.second_inner p span {
		font-size: 40px;
	}
}
@media screen and (max-width: 750px) {
	.second {
		padding-top: 100px;
	}
	.second .wrap::after {
		top: -80px;
		width: 200px;
		height: 263px;
	}
	.second h4 {
		margin-bottom: 70px;
		padding-left: 10px;
		font-size: 34px;
	}
	.second h4 span {
		padding-left: 10px;
		font-size: 92px;
		line-height: 1.3;
	}
	.second_box::before {
		width: 30px;
		height: 29px;
	}
	.second_box::after {
		width: 30px;
		height: 29px;
	}
	.second_inner {
		padding: 14px 15px;
	}
	.second_inner ul li {
		margin-bottom: 10px;
		padding-left: 25px;
		font-size: 17px;
	}
	.second_inner ul li::before {
		width: 18px;
		height: 15px;
	}
	.second_inner p {
		margin-top: 10px;
		font-family: var(--font-serif);
		font-size: 19px;
	}
	.second_inner p span {
		background: linear-gradient(transparent 30%, #F8EDE2 30%);
		font-size: 28px;
	}
}
@media screen and (max-width: 530px) {
	.second {
		padding-top: 60px;
	}
	.second .wrap::after {
		top: -50px;
		right: -10px;
		width: 130px;
		height: 171px;
	}
	.second h4 {
		font-size: 25px;
	}
	.second h4 span {
		font-size: 60px;
	}
}

/*-----------------------------------------------------
	#footer_banner
------------------------------------------------------*/
#footer_banner {
	padding: 60px 20px;
}
#footer_banner .flex {
	justify-content: center;
	gap: 24px;
}
#footer_banner .flex a img {
	width: 400px;
	max-width: 100%;
}
@media screen and (max-width: 750px) {
	#footer_banner .flex {
		gap: 20px;
	}
}
/*-----------------------------------------------------
	footer
------------------------------------------------------*/
footer {
  padding-top: 60px;
	padding-bottom: 20px;
  background: #FFF4E9;
}
footer .footer_inner {
	justify-content: space-between;
	width: 1240px;
	margin: 0 auto 20px;
}
.footer_logo {
	width: 350px;
}
.footer_logo img {
	width: 100%;
}
.footer_link {
	justify-content: space-between;
	width: calc(100% - 421px);
}
.footer_child:nth-of-type(1) {
	width: 195px;
}
.footer_child:nth-of-type(2) {
	width: 403px;
}
.footer_child:nth-of-type(3) {
	width: 106px;
}
.footer_child h3 {
	position: relative;
	margin-bottom: 35px;
	padding-left: 35px;
  font-size: 16px;
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: 0.1em;
}
.footer_child h3::before {
  content: "▼";
  display: block;
  position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
.footer_child:nth-of-type(2) ul {
	justify-content: space-between;
}
.footer_child:nth-of-type(2) ul.flex li {
	width: 48%;
	margin-bottom: 20px;
}
.footer_child:nth-of-type(2) ul.flex li a::before {
  content: "";
  width: 20px;
	height: 1px;
	background: #d9d9d9;
}
.footer_child ul li {
	margin-bottom: 35px;
}
.footer_child ul li a {
	position: relative;
	padding-left: 35px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: 0.1em;
}
.footer_child ul li a::before {
  content: "▶";
  display: block;
  position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
footer small {
	font-size: 14px;
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 1320px) {
	footer .footer_inner {
		width: calc(100% - 80px);
	}
	.footer_logo {
		width: 100%;
		margin-bottom: 40px;
	}
	.footer_logo img {
		width: 350px;
	}
	.footer_link {
		width: 100%;
	}
}
@media screen and (max-width: 750px) {
	footer {
		padding-top: 40px;
		padding-bottom: 80px;
	}
	footer .footer_inner {
		width: calc(100% - 40px);
	}
	.footer_child:nth-of-type(1) {
		width: 100%;
		margin-bottom: 5px;
	}
	.footer_child:nth-of-type(2) {
		width: 100%;
		margin-bottom: 50px;
	}
	.footer_child:nth-of-type(3) {
		width: 100%;
	}
}
@media screen and (max-width: 500px) {
	.footer_child:nth-of-type(2) ul.flex li {
		width: 100%;
	}
	footer small {
		font-size: 12px;
	}
}
/*-----------------------------------------------------
	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;
   }
}