@charset "UTF-8";
/*
	Filename: common
	Version: 1.0.1
*/
/*-----------------------------------------------------
	Utility
------------------------------------------------------*/
:root {
  --font-serif: "Zen Old Mincho", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "MS PMincho", serif;
	--font-en: "Jost", system-ui, -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  --text-color: #31302C;
  --main-color: #BCA764;
	--dark-color: #BCA764;
	--sub-color: #BCA764;
}
/* --------------------------------
   Base Typography
-------------------------------- */
html {
  font-family: var(--font-serif);
  font-size: 62.5%;
  font-weight: 400;
}
body {
	background: #F2EFEA;
  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;
}
.jost {
  font-family: var(--font-en);
}
:lang(zh-Hans) {
	font-family:
		"Noto Serif SC",
		"Source Han Serif SC",
		"Songti SC",
		"SimSun",
		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: 1080px;
  margin: 0 auto;
}
.mb0 {
	margin-bottom: 0 !important;
}
@media screen and (max-width: 1160px) {
  .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: 123px;
	background: #FFFFFF;
	background: linear-gradient(0deg,rgba(255, 255, 255, 0) 0%, rgba(49, 48, 44, 0.4) 100%);
  transition: .5s;
}
.header_inner {
  position: relative;
	width: 1150px;
	margin: 0 auto;
}
@media screen and (max-width: 1230px) {
	.header_inner {
		width: calc(100% - 80px);
	}
}
.header_logo {
  position: absolute;
  top: 30px;
  left: 0;
  z-index: 2;
}
.header_logo img {
  width: 182px;
  height: auto;
}
.header_nav {
  position: absolute;
  top: 26px;
  right: 0;
  z-index: 1;
  width: 100%;
}
.header_nav ul.flex {
  align-items: center;
  justify-content: flex-end;
}
.header_nav ul.flex li {
	border-right: 1px solid #fff;
}
.header_nav ul.flex li.menu {
  position: relative;
	padding-right: 11px;
}
.header_nav ul.flex li.lang {
	padding-right: 27px;
	padding-left: 27px;
	border-right: none;
}
.bogo-language-switcher {
  display: flex;
  gap: 0;
  list-style: none;
  margin: 0;
}
.bogo-language-switcher li {
  position: relative;
  padding: 15px 5px !important;
	border-right: none !important;
	font-family: var(--font-en);
	color: #444;
}
.bogo-language-switcher li a {
  font-size: 16px !important;
  font-weight: 500;
  text-decoration: none;
	letter-spacing: 0.02em;
  color: #fff !important;
}
.bogo-language-switcher li a.current {
  color: var(--main-color) !important;
}
.bogo-language-switcher li.ja {
  order: 1;
}
.bogo-language-switcher li.en {
  order: 2;
}
.bogo-language-switcher li.zh {
  order: 3;
}
.bogo-language-switcher li.vi {
  order: 4;
}
.header_nav ul.flex li.line {
	padding: 3px 23.05px;
	border-left: 1px solid #fff;
}
.header_nav ul.flex li.tel {
	position: relative;
	border-right: none;
}
.header_nav ul.flex li.tel a {
	display: block;
	padding: 3px 23.05px 3px 83px;
	line-height: 1;
	color: #fff;
}
.header_nav ul.flex li.tel a::before {
  content: "";
  display: block;
  position: absolute;
	top: 50%;
	left: 34px;
	transform: translateY(-50%);
  width: 25px;
  height: 39px;
  background: url("../img/common/tel_icon.svg") no-repeat center center;
  background-size: cover;
}
.header_nav ul.flex li.tel a span {
  display: block;
	margin-bottom: 3px;
	font-family: var(--font-en);
	font-size: 16px;
	font-weight: 300;
	letter-spacing: 0.1em;
}
.header_nav ul.flex li.tel a em {
  display: block;
	font-size: 24px;
	font-weight: 500;
	font-style: normal;
}
header.fatnav-open {
  z-index: 100000;
}
header.fatnav-open .header_logo,
header.fatnav-open .header_nav ul.flex li:not(.menu) {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
header.fatnav-open .header_nav ul.flex li.menu,
header.fatnav-open .header_nav ul.flex li.menu * {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.hamburger {
	width: 72px ;
	height: 52px;
	display: block;
	position: relative;
	top: 0;
	right: 0;
	z-index: 100000 !important;
	padding: 0;
	box-sizing: border-box;
	touch-action: manipulation;
}
.hamburger::after {
  content: "menu";
  display: block;
  position: absolute;
	bottom: -6px;
	left: 0;
	width: 100%;
	font-family: var(--font-en);
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.02em;
	color: #fff;
	text-align: center;
}
header.fatnav-open .hamburger {
  position: fixed !important;
	top: 30px;
	right: 30px;
  z-index: 100001 !important;
}
.hamburger__icon {
	position: relative;
	margin-top: 0px;
}
.hamburger__icon, .hamburger__icon::before, .hamburger__icon::after {
	display: block;
	position: absolute;
	top: 19px;
	right: 10px;
	width: 52px;
	height: 1px;
	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: 52px;
	top: -13px;
}
.hamburger__icon::after {
	width: 52px;
	top: 13px;
}
.hamburger.active::after {
	display: none;
}
.hamburger.active .hamburger__icon {
	background-color: transparent;
}
.hamburger.active .hamburger__icon:before, .hamburger.active .hamburger__icon:after {
	width: 52px;
	height: 1px;
}
.hamburger.active .hamburger__icon:before {
	transform: translateY(13px) rotate(30deg);
}
.hamburger.active .hamburger__icon:after {
	transform: translateY(-13px) rotate(-30deg);
}
@media screen and (max-width: 1000px) {
	.header_nav ul.flex li.lang, .header_nav ul.flex li.line, .header_nav ul.flex li.tel {
		display: none;
	}
	.header_nav ul.flex li.menu {
		padding-right: 0;
		border-right: none;
	}
	header.fatnav-open .hamburger {
		right: 45px;
	}
}
@media screen and (max-width: 750px) {
	header {
		height: 104px;
	}
	.header_inner {
		width: calc(100% - 40px);
	}
	.header_logo {
		top: 24px;
	}
	.header_logo img {
		width: 110px;
	}
	.hamburger {
		top: -2px;
		right: -10px;
	}
	header.fatnav-open .hamburger {
		top: 24px;
		right: 20px;
	}
}
.fat-nav {
	top: 0;
	left: 0;
	z-index: 9999;
	position: fixed;
	display: none;
	width: 100%;
	height: 100%;
	background: rgba(49,48,44,.8);
	overflow-y: auto;
	overflow-x: hidden;
}
.fat-nav__wrapper {
	position: relative;
	top: 0;
	left: 0;
	display: table;
	table-layout: fixed;
	width: 100%;
	height: 100%;
	padding: 123px 40px;
	background: linear-gradient(0deg,rgba(255, 255, 255, 0) 0%, rgba(49, 48, 44, 0.4) 100%);
}
.menu_inner {
	width: 1150px;
	margin: 0 auto;
}
.menu_inner .bogo-language-switcher {
	justify-content: center;
	margin-bottom: 50px;
}
.menu_inner ul.nav_list {
	justify-content: space-between;
}
.menu_inner ul.nav_list > li {
	width: 48%;
}
.menu_inner ul.nav_list > li > a {
	display: block;
	padding: 20px 0;
	border-top: 1px solid var(--text-color);
	font-size: 20px;
	font-weight: 700;
	color: #fff;
	line-height: 1.5;
}
.nav_list_child {
	justify-content: space-between;
	margin-bottom: 20px;
}
.nav_list_child li {
	width: 46%;
	margin-left: 20px;
	list-style-type: disc;
}
.nav_list_child li::marker {
  color: #D9D9D9;
}
.nav_list_child li a {
	display: block;
	padding: 5px 0;
	border-top: none;
	font-size: 20px;
	font-weight: 500;
	color: #D9D9D9;
}
.menu_inner ul.menu_cv {
	justify-content: center;
	padding-top: 30px;
	border-top: 1px solid var(--text-color);
}
.menu_inner ul.menu_cv li.line {
	padding: 3px 23.05px 3px 0;
	border-right: 1px solid #fff;
}
.menu_inner ul.menu_cv li.tel {
	position: relative;
	border-right: none;
}
.menu_inner ul.menu_cv li.tel a {
	display: block;
	padding: 3px 23.05px 3px 83px;
	line-height: 1;
	color: #fff;
}
.menu_inner ul.menu_cv li.tel a::before {
  content: "";
  display: block;
  position: absolute;
	top: 50%;
	left: 34px;
	transform: translateY(-50%);
  width: 25px;
  height: 39px;
  background: url("../img/common/tel_icon.svg") no-repeat center center;
  background-size: cover;
}
.menu_inner ul.menu_cv li.tel a span {
  display: block;
	margin-bottom: 3px;
	font-family: var(--font-en);
	font-size: 16px;
	font-weight: 300;
	letter-spacing: 0.1em;
}
.menu_inner ul.menu_cv li.tel a em {
  display: block;
	font-size: 24px;
	font-weight: 500;
	font-style: normal;
}
.max {
	width: 100% !important;
}
@media screen and (max-width: 1230px) {
	.menu_inner {
		width: 100%;
	}
}
@media screen and (max-width: 750px) {
	.fat-nav__wrapper {
		padding: 104px 20px;
	}
	.menu_inner ul.nav_list > li, .nav_list_child li {
		width: 100%;
	}
	.menu_inner ul.menu_cv li.line {
		padding: 3px 18px 3px 0;
	}
	.menu_inner ul.menu_cv li.tel a {
		padding: 3px 18px 3px 73px;
	}
	.menu_inner ul.menu_cv li.tel a::before {
		left: 24px;
	}
}
/*-----------------------------------------------------
	haeder.fixed
------------------------------------------------------*/
header.fixed {
	height: 115px;
  background: #363433;
  transition: .5s;
}
header.fixed .header_logo img {
	width: 110px;
}
@media screen and (max-width: 750px) {
	header.fixed {
		height: 104px;
	}
}
/*-----------------------------------------------------
	midasi
------------------------------------------------------*/
.midasi {
	font-size: 32px;
	font-weight: 500;
	line-height: 1.5;
	color: #fff;
}
.midasi_01 {
	overflow: hidden;
	text-align: center;
}
.midasi_01 span {
	position: relative;
	font-size: 36px;
	font-weight: 500;
	line-height: 1.5;
}
.midasi_01 span::before, .midasi_01 span::after {
  content: "";
  display: block;
  position: absolute;
	top: 50%;
	left: -148px;
	transform: translateY(-50%);
	z-index: 0;
  width: 138px;
  height: 1px;
  background: var(--main-color);
}
.midasi_01 span::after {
	right: -148px;
	left: auto;
}
.center {
  text-align: center;
}
@media screen and (max-width: 750px) {
	.midasi {
		font-size: 22px;
		line-height: 1.3;
	}
	.midasi span {
		font-size: 20px;
		font-weight: 700;
	}
	.midasi_01 span {
		font-size: 30px;
	}
	.midasi_01 span::before, .midasi_01 span::after {
		left: -56px;
		width: 46px;
	}
	.midasi_01 span::after {
		right: -56px;
		left: auto;
	}
}
/*-----------------------------------------------------
	ボタン
------------------------------------------------------*/
.link_more {
  display: block;
  position: relative;
  width: 300px;
	max-width: 100%;
  padding: 20px;
  background: var(--text-color);
  font-size: 16px;
  font-weight: 400;
	line-height: 1;
  color: #fff;
  text-align: left;
}
.link_more::after {
  content: "";
  display: block;
  position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
  width: 55px;
  height: 6px;
  background: url("../img/common/link_arrow.svg") no-repeat center center;
  background-size: cover;
}
.center .link_more {
  display: inline-block;
}
.link_more_02 {
  display: block;
  position: relative;
  width: 145px;
	max-width: 100%;
	margin: 0 auto;
  padding: 5px 5px 10px;
	border-bottom: 1px solid var(--text-color);
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 300;
	line-height: 1;
  text-align: center;
}
/*-----------------------------------------------------
	#page_mv
------------------------------------------------------*/
#page_mv {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 491px;
}
#page_mv::after {
  content: "";
  display: block;
  position: absolute;
	top: 0;
	left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: rgba(49, 48, 44, 0.2);
}
#page_mv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
#page_mv .page_title {
  position: absolute;
  bottom: 155px;
  left: 0;
  z-index: 2;
  width: 100%;
	padding: 0 10px;
  text-align: center;
}
.breadcrumbs {
	margin-top: 10px;
	margin-bottom: 138px;
	padding: 10px 0;
  font-size: 14px;
	font-weight: 400;
  line-height: 2;
}
.breadcrumbs a {
	display: inline-block;
	text-decoration: none;
}
.breadcrumbs a img {
	margin-bottom: 4px;
}
.breadcrumbs__list {
  display: flex; 
  flex-wrap: wrap;
	align-items: center;
  gap: 0.25em 0.5em;
  list-style: none;
  margin: 0;
	padding: 0;
}
@media screen and (max-width: 1000px) {
	#page_mv img {
		object-position: center right;
	}
}
@media screen and (max-width: 750px) {
  #page_mv {
    height: 53.333vw;
		min-height: 250px;
  }
	#page_mv .page_title {
		bottom: 9.867vw;
	}
	.breadcrumbs {
		margin-bottom: 10px;
	}
}
@media screen and (max-width: 414px) {
	.breadcrumbs {
		font-size: 3.382vw;
	}
}
/*-----------------------------------------------------
	ページタイトル
------------------------------------------------------*/
.contents_title {
  padding-top: 74px;
  text-align: center;
}
body.post-type-archive .contents_title, body.tax-case_category .contents_title {
  margin-bottom: 60px;
}
.contents_title h1 {
  margin-bottom: 80px;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
.contents_title h1 span {
  display: block;
  font-size: 14px;
}
.contents_title p {
  margin-bottom: 73px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
.contents_title h2 {
  position: relative;
  margin-bottom: 63px;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
.contents_title h2 span {
  display: block;
  font-family: "Asul", serif;
  font-size: 14px;
}
.contents_title h2::after {
  content: "";
  display: block;
  position: absolute;
	bottom: -20px;
	right: calc(50% - 290px);
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
  width: 290px;
  height: 1px;
  background: #363433;
}
ul.contents_nav {
  align-items: stretch;
  margin-bottom: 27px;
  padding: 0 40px;
}
ul.contents_nav::before{
  display: block;
  content: "";
  order: 1;
  width: 23%;
}
ul.contents_nav::after{
  display: block;
  content:"";
  width:23%;
}
ul.contents_nav li {
  width: 23%;
  margin-bottom: 16px;
  background: #B2A07E;
}
ul.contents_nav li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 15px;          
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #fff;
  text-align: center;
}
ul.contents_nav_bottom {
  -webkit-box-pack: center;
  justify-content: center;
}
ul.contents_nav_bottom li {
  margin: 0 15px 20px;
}
ul.contents_nav_bottom li a {
  display: block;
  position: relative;
  padding-right: 60px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}
ul.contents_nav_bottom li a::after {
  content: "";
  display: block;
  position: absolute;
	top: calc(50% + 1px);
	right: 0;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
  width: 49px;
  height: 9px;
  background: url("../img/common/news_arrow.svg") no-repeat center center;
  background-size: cover;
}
@media screen and (max-width: 1240px) {
  ul.contents_nav {
    padding: 0;
  }
}
@media screen and (max-width: 1000px) {
  ul.contents_nav::before, ul.contents_nav::after {
    display: none;
  }
  ul.contents_nav li {
    width: 48%;
  }
}
@media screen and (max-width: 750px) {
  .contents_title {
    padding-top: 27px;
    text-align: center;
  }
  .contents_title h1 {
    font-size: 24px;
  }
  .contents_title p {
    margin-bottom: 32px;
  }
  .contents_title h2 {
    margin-bottom: 37px;
    font-size: 24px;
  }
  .contents_title h2 span {
    display: block;
    font-family: "Asul", serif;
    font-size: 14px;
  }
  .contents_title h2::after {
    bottom: -10px;
    left: -16px;
    transform: none;
    -webkit-transform: none;
    width: calc(100% + 32px);
  }
  ul.contents_nav {
    padding: 0 10%;
  }
  ul.contents_nav li {
    width: 100%;
  }
  ul.contents_nav_bottom {
    padding: 0 10%;
  }
  ul.contents_nav_bottom li {
    width: 100%;
    margin: 0 0 20px;
    text-align: left;
  }
  ul.contents_nav_bottom li a {
    display: inline-block;
  }
}
/*-----------------------------------------------------
	.main
------------------------------------------------------*/
.main {
  padding-bottom: 100px;
}
.main a {
  text-decoration: underline;
}
.main .more a {
  display: block;
  position: relative;
  width: 300px;
	margin: 20px auto 50px;
  padding: 20px;
  background: var(--text-color);
  font-size: 16px;
  font-weight: 400;
	line-height: 1;
  color: #fff;
  text-align: left;
	text-decoration: none;
}
.main .more a::after {
  content: "";
  display: block;
  position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
  width: 55px;
  height: 6px;
  background: url("../img/common/link_arrow.svg") no-repeat center center;
  background-size: cover;
}
.main hr {
  display: block;
  height: 1px;
  border: 0;   
  border-top: 1px solid var(--text-color);
  margin: 3em 0;
  padding: 0;
}
.main h2 {
  margin-bottom: 80px;
  font-size: 38px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}
.main h3 {
  position: relative;
	z-index: 0;
	margin-bottom: 30px;
	padding: 0 20px;
	font-size: 30px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--main-color);
  text-align: center;
}
.main h3:before {
  content: "";
  display: block;
  position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	z-index: -1;
  width: 100%;
  height: 1px;
  background: var(--main-color);
	overflow: hidden;
}
.main h3 span {
	display: inline-block;
  padding: 0 10px;
  background: #F2EFEA;
}
.main h4 {
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.8;
}
.main p {
  margin-bottom: 30px;
  font-size: 20px;
  font-weight: 400;
  line-height: 2;
}
.main ul, .main ol {
  margin-bottom: 50px;
}
.main ul li {
  margin-bottom: 10px;
  margin-left: 20px;
  list-style-type: disc;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.8;
}
.main ul.osusume {
	padding: 40px 80px;
  background: #fff;
}
.main ul.osusume li {
  font-size: 24px;
  font-weight: 500;
}
.main ol li {
  margin-bottom: 10px;
  margin-left: 20px;
  list-style-type: disc;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
}
.main figure {
  margin-bottom: 50px;
}
.main .wp-element-caption {
  font-size: 16px;
}
.main figure img {
  max-width: 100%;
  height: auto;
}
.main dl.faq {
  line-height: 1.6;
}
.main dl.faq dt {
  width: 100%;
  padding-top: 20px;
  border-top: 1px solid rgba(178,160,126,.5);
}
.main dl.faq dd {
  width: 100%;
  padding-left: 35px; 
}
.table_wrap {
  width: 100%;
  margin-bottom: 30px;
  padding-top: 10px;
  overflow-x: auto;
  white-space: nowrap;
}
.main .def_table table {
  width: 100%;
  margin-bottom: 50px;
}
.main .def_table table tr th {
  padding: 20px 30px;
  background: rgba(178,160,126,.1);
  border: 1px solid var(--text-color);
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  line-height: 1.6;
  vertical-align: middle;
}
.main .def_table table tr td {
  padding: 20px 30px;
	background: #fff;
  border: 1px solid var(--text-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  vertical-align: middle;
}
.main .price table {
  width: 100%;
  margin-bottom: 50px;
}
.main .price table tr th {
  position: relative;
  width: 40%;
  padding: 20px 40px;
  border-top: 1px solid #363433;
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  line-height: 1.6;
  letter-spacing: 0.08em;
  vertical-align: middle;
}
.main .price table tr {
  background: #fff;
}
.main .price table tr:nth-child(odd) {
  background: #F2EDED;
}
.main .price table tr td {
  width: 60%;
  padding: 20px 40px;
  border-top: 1px solid #363433;
  border-left: 1px solid #363433;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.08em;
  text-align: right;
}
.main .price table tr:last-child th, .main .price table tr:last-child td {
  border-bottom: 1px solid #363433;
}
@media screen and (max-width: 750px) {
	.main .wp-block-spacer {
		height: 50px !important;
	}
	.main {
		padding-bottom: 60px;
	}
	.main .more a {
		margin: 20px auto 30px;
	}
	.main h2 {
		margin-bottom: 30px;
		font-size: 30px;
	}
	.main h3 {
		margin-bottom: 20px;
		font-size: 24px;
	}
	.main h4 {
		margin-bottom: 20px;
		font-size: 20px;
		font-weight: 700;
	}
	.main p {
		margin-bottom: 20px;
	}
	.main ul, .main ol {
		margin-bottom: 40px;
	}
	.main ul.osusume {
		padding: 20px;
	}
	.main ul.osusume li {
		font-size: 20px;
	}
  .main figure {
    margin-bottom: 20px;
  }
  .main .wp-element-caption {
    font-size: 14px;
  }
  .main dl.faq dd {
    padding-left: 32px; 
  }
  .table_wrap {
    margin-bottom: 20px;
    padding-top: 10px;
  }
  .main .def_table table {
    margin-bottom: 30px;
  }
  .main .def_table table tr th {
    padding: 15px 10px;
  }
  .main .def_table table tr td {
    padding: 15px 10px;
  }
  .main table.price {
    margin-bottom: 30px;
  }
  .main table.price tr th {
    width: 40%;
    padding: 15px 10px;
    font-size: 14px;
  }
  .main table.price tr td {
    padding: 15px 10px;
    font-size: 14px;
  }
  .order1 {
    order: 1 !important;
  }
  .order2 {
    order: 2 !important;
  }
}
/*-----------------------------------------------------
	form
------------------------------------------------------*/
.form_area {
  padding: 50px 100px;
  border: 1px solid #ccc;
}
table.cform {
  width: 100%;
}
table.cform tr th {
  display: block;
  width: 100%;
  padding-top: 30px;
  text-align: left;
}
table.cform tr th p, table.cform tr td p {
  margin-bottom: 0;
}
table.cform tr td {
  display: block;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 30px;
  border-bottom: 1px solid #ccc;
}
.form_area span.hissu {
  color: #ff0000;
}
.form_area h3 {
  margin-bottom: 0;
}
.form_area input[type="text"], .form_area input[type="date"], .form_area input[type="email"] {
  width: 50%;
  padding: 15px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 3px;
  transition: all .3s;
  font-family: "Shippori Mincho", serif;
  font-size: 16px;
  outline: none;
  appearance: none;
}
.form_area select {
  width: 50%;
  padding: 15px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 3px;
  transition: all .3s;
  font-family: "Shippori Mincho", serif;
  font-size: 16px;
  outline: none;
}
.form_area textarea {
  width: 100%;
  padding: 15px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 3px;
  transition: all .3s;
  font-family: "Shippori Mincho", serif;
  font-size: 16px;
  outline: none;
  appearance: none;
}
.form_area input[type="text"]:focus, .form_area input[type="date"]:focus, .form_area input[type="email"]:focus, .form_area select:focus, .form_area textarea:focus {
  box-shadow: 0 0 7px #363433;
  border: 1px solid #363433;
}
.submit_btn {
	text-align: center;
}
.submit_btn input {
  max-width: 100%;
  width: 250px;
	margin: 30px auto 0;
  outline: none;
  appearance: none;
  border: none;
  background: #363433;
  border-radius: 3em;
  padding: 12px 30px;
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
  color: #fff;
  transition: all 0.3s ease;
  cursor: pointer;
}
.submit_btn input:hover {
  background: #3E321D;
  opacity: 1;
  transition: all 0.3s ease;
}
.wpcf7-spinner {
  display: none;
}
.glay {
	opacity: 0.6;
}
@media screen and (max-width: 1260px) {
  .form_area {
    padding: 30px;
  }
}
@media screen and (max-width: 750px) {
  .form_area {
    padding: 20px;
  }
  .form_area input[type="text"], .form_area input[type="date"], .form_area input[type="email"], .form_area select {
    width: 100%;
  }
}
/*-----------------------------------------------------
	.stem_cell_list
------------------------------------------------------*/
.stem_cell_list {
	gap: 35px;
}
.stem_cell_list_child {
	width: calc((100% - 70px) / 3);
	background: #fff;
	text-align: center;
}
.stem_cell_list_child img {
	width: 100%;
}
.stem_cell_list_child h3 {
	padding: 10px;
	font-size: 24;
	font-weight: 500;
	line-height: 1.8;
}
@media screen and (max-width: 1000px) {
	.stem_cell_list {
		gap: 10px;
		padding: 0 20px;
	}
	.stem_cell_list_child {
		width: calc((100% - 20px) / 3);
	}
}
@media screen and (max-width: 750px) {
	.stem_cell_list {
		gap: 30px;
	}
	.stem_cell_list_child {
		width: calc((100% - 30px) / 2);
	}
	.stem_cell_list_child h3 {
		font-size: 20;
	}
}
@media screen and (max-width: 600px) {
	.stem_cell_list_child {
		width: 100%;
	}
}
/*-----------------------------------------------------
	#news
------------------------------------------------------*/
#news .wrap {
  margin-top: 80px;
  padding-top: 65px;
  border-top: 1px solid #363433;
}
.news_l {
  position: relative;
  width: 14%;
}
.news_l_inner {
  position: absolute;
	top: calc(50% - 10px);
	left: 0;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}
.news_l_inner h2 {
  margin-bottom: 40px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
}
.news_l_inner h2 span {
  display: block;
  font-family: "Asul", serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.1em;
}
.news_more {
  position: relative;
  padding-right: 65px;
  font-family: "Asul", serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.05em;
}
.news_more::before {
  content: "";
  display: block;
  position: absolute;
	bottom: -10px;
	left: 0;
  width: 100%;
  height: 1px;
  background: #363433;
}
.news_more::after {
  content: "";
  display: block;
  position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
  width: 49px;
  height: 9px;
  background: url("../img/common/news_arrow.svg") no-repeat center center;
  background-size: cover;
}
.news_r {
  width: 75.5%;
}
.news_list {
  display: block;
  position: relative;
  margin-bottom: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #E6E6E6;
}
.news_list:last-of-type {
  margin-bottom: 0;
}
.news_list::after {
  content: "";
  display: block;
  position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
  width: 17px;
  height: 8px;
  background: url("../img/common/arrow_black.svg") no-repeat center center;
  background-size: cover;
}
.date_category {
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  align-items: center;
  margin-bottom: 10px;
}
.date {
  margin-right: 16px;
  font-family: "Asul", serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.1em;
}
.category {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.category span {
  display: inline-block;
  padding: 4px 16px;
  border: 1px solid #32302C;
  border-radius: 50px;;
}
.news_list p {
  padding-left: 16px;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1240px) {
  .news_l {
    width: 24%;
  }
  .news_r {
    width: 70%;
  }
}
@media screen and (max-width: 750px) {
  #news .wrap {
    padding-top: 40px;
  }
  .news_l {
    width: 100%;
    margin-bottom: 40px;
  }
  .news_l_inner {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    position: relative;
    top: auto;
    left: auto;
    transform: none;
  }
  .news_l_inner h2 {
    margin-bottom: 0;
  }
  .news_r {
    width: 100%;
  }
}
/*-----------------------------------------------------
	#campaign
------------------------------------------------------*/
#campaign {
  padding: 120px 0 65px;
}
.campaign_header {
  -webkit-box-align: center;
  align-items: center;
  margin-bottom: 56px;
}
.campaign_header h2 {
  margin-bottom: 0;
}
.campaign_list_wrap::after {
  display: block;
  content:"";
  width: 31.5%;
}
.campaign_list {
  display: block;
  width: 31.5%;
  margin-bottom: 40px;
}
.campaign_list img {
  width: 100%;
  margin-bottom: 24px;
}
.campaign_list p {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1000px) {
  .campaign_list_wrap::after {
    display: none;
  }
  .campaign_list {
    width: 48.5%;
  }
}
@media screen and (max-width: 750px) {
  #campaign {
    padding: 80px 0;
  }
  .campaign_header {
    margin-bottom: 48px;
  }
  .campaign_header h2 {
    margin-bottom: 0;
  }
  .campaign_list {
    width: 100%;
    margin-bottom: 24px;
  }
  #campaign .link_more {
    margin: 24px auto 0;
  }
}

/*-----------------------------------------------------
	#case
------------------------------------------------------*/
#case {
  padding: 120px 0;
}
#case .slide_wrap {
  width: 1216px;
  margin: 0 auto 56px;
}
@media screen and (max-width: 1296px) {
  #case .slide_wrap {
    width: calc(100% - 80px);
  }
}
@media screen and (max-width: 750px) {
  #case .slide_wrap {
    width: calc(100% - 32px);
  }
}
.swiper {
  width: 100%;
  height: 100%;
  padding: 0 28px !important;
}
.swiper [class^="swiper-button-"]::after{
  content: "" !important;
}
.swiper [class^="swiper-button-"]{
  width: 56px;
  height: 56px;
}
.swiper .swiper-button-next {
  right: 0;
}
.swiper .swiper-button-prev {
  left: 0;
}
.case_img {
  margin-bottom: 24px;
}
.before_after_img {
  width: 50%;
  text-align: center;
}
.before_after_img img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}
.before_name, .after_name {
  padding: 10px;
  background: #DADADA;
  font-family: "Asul", serif;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.1em;
}
.after_name {
  background: #B2A07E;
}



.case_summary h3{
  position: relative;
}
.case_summary h3::after {
  content: "";
  display: block;
  position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
  width: 17px;
  height: 8px;
  background: url("../img/common/arrow_black.svg") no-repeat center center;
  background-size: cover;
}
.case_category li {
  display: inline-block;
  margin-right: 5px;
}
.case_summary h3 {
  margin-top: 10px;
  padding-right: 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
#case .monitor_banner {
  margin-top: 56px;
  margin-bottom: 64px;
}
#case .monitor_banner img {
  max-width: 100%;
}
.sp_slide_child {
  display: block;
  width: 32%;
  margin-bottom: 32px;
}
.archive_case::after {
  display: block;
  content:"";
  width: 32%;
}

@media screen and (max-width: 1180px) {
  .before_after_img img {
    height: 16.102vw;
  }
}
@media screen and (max-width: 750px) {
  #case {
    padding: 80px 0;
  }
  .sp_slide_child {
    width: 100%;
  }
  .sp_slide_child:last-of-type {
    margin-bottom: 48px;
  }
  .before_after_img img {
    height: 36.4vw;
  }
  #case .monitor_banner {
    margin-bottom: 56px;
  }
.case_summary {
  height: auto;
}	
}
/*-----------------------------------------------------
	ページネーション
------------------------------------------------------*/
.pagination {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  margin-top: 50px;
  margin-bottom: 120px;
}
a.page-numbers, .pagination .current {
  display: block;
  margin: 0 3px;
	padding: 7px 9px;
	border: 1px solid #363433;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
	text-decoration: none;
}
span.page-numbers.dots {
  margin-right: 10px;
  margin-left: 10px;
  font-size: 14px;
}
.pagination .current, a.page-numbers:hover {
	background: #363433;
	border: 1px solid #363433;
	color: #fff;
  opacity: 1;
}
a.page-numbers.next, a.page-numbers.prev {
  position: relative;
  width: 27.78px;
  height: 30px;
  margin: 0 10px;
  background: #B2A07E;
  border: 1px solid #B2A07E;
}
a.page-numbers.next {
  margin-right: 0;
}
a.page-numbers.prev {
  margin-left: 0;
}
a.page-numbers.next img, 
a.page-numbers.prev img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -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: #B2A07E;
  opacity: .6;
}
@media screen and (max-width: 750px) {
  .pagination {
    margin-bottom: 80px;
  }
}
/*-----------------------------------------------------
	診療案内
------------------------------------------------------*/
.menu_list {
  display: block;
  position: relative;
  width: 48%;
  margin-bottom: 40px;
  padding-bottom: 20px;
  background: #fff;
  text-align: center;
}
.menu_list::after {
  content: "";
  display: block;
  position: absolute;
	bottom: 12px;
	right: 12px;
  width: 36px;
  height: 18px;
  background: url("../img/common/b_arrow.svg") no-repeat center center;
  background-size: cover;
}
.menu_list img {
  width: 100%;
  margin-bottom: 20px;
}
.menu_list h2 {
  margin-bottom: 10px;
  font-family: "Zen Old Mincho", serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  color: #62533B;
}
.menu_list p {
  font-size: 14px;
  font-weight: 400;
  color: #736B73;
}
@media screen and (max-width: 984px) {
  .menu_list h2 {
    font-size: 2.236vw;
  }
  .menu_list p {
    font-size: 1.423vw;
  }
}
@media screen and (max-width: 750px) {
  .menu_list {
    width: 100%;
    margin-bottom: 20px;
    padding-bottom: 40px;
  }
  .menu_list img {
    margin-bottom: 20px;
  }
  .menu_list h2 {
    font-size: 18px;
  }
  .menu_list p {
    font-size: 13px;
  }
}
/*-----------------------------------------------------
	footer
------------------------------------------------------*/
footer {
	padding: 90px 0 146px;
  background: url("../img/common/footer_bg.webp") no-repeat center center;
	background-size: cover;
}
.footer_l {
  width: 63.2%;
	padding: 0 53px;
	text-align: center;
}
.footer_l h2 {
  margin-bottom: 48px;
}
.footer_l address {
	margin-bottom: 33px;
  font-size: 20px;
	font-weight: 400;
	line-height: 2;
}
.footer_l address span {
	display: block;
  font-size: 24px;
	font-weight: 500;
}
.footer_l .flex {
  justify-content: space-between;
}
.footer_l .flex a {
	display: block;
  width: 48%;
	background: var(--text-color);
	color: #fff;
}
.footer_tel {
	position: relative;
	padding: 15px 10px 15px 80px;
	font-size: 24px;
	font-weight: 500;
	line-height: 1.2;
	text-align: left;
}
.footer_tel span {
	display: block;
	font-family: var(--font-en);
	font-size: 16px;
	font-weight: 300;
	letter-spacing: 0.1em;
}
.footer_tel::before {
  content: "";
  display: block;
  position: absolute;
	top: 50%;
	left: 42px;
	transform: translateY(-50%);
  width: 25px;
  height: 39px;
  background: url("../img/common/tel_icon.svg") no-repeat center center;
  background-size: cover;
}
.footer_line {
	position: relative;
	padding: 25px 10px 25px 58px;
	font-size: 24px;
	font-weight: 500;
	line-height: 1;
}
.footer_line::before {
  content: "";
  display: block;
  position: absolute;
	top: 50%;
	left: 50px;
	transform: translateY(-50%);
  width: 48px;
  height: 46px;
  background: url("../img/common/line_icon.svg") no-repeat center center;
  background-size: cover;
}
.footer_line.en::before, body.zh-CN .footer_line::before, body.vi .footer_line::before {
	left: 30px;
}
.footer_r {
  width: 36.8%;
}
.footer_r iframe {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1160px) {
	footer .wrap {
		width: 100%;
	}
	.footer_l {
		width: 576px;
		margin: 0 auto 30px;
		padding: 0;
	}
	.footer_r {
		width: 100%;
		height: 350px;
	}
}
@media screen and (max-width: 750px) {
	footer {
		padding: 35px 0 20px;
		background: url("../img/common/sp_footer_bg.webp") no-repeat center center;
		background-size: cover;
	}
	.footer_l {
		width: 100%;
	}
	.footer_l h2 {
		margin-bottom: 30px;
	}
	.footer_l address {
		margin-bottom: 45px;
	}
	.footer_l address span {
		font-size: 20px;
		font-weight: 700;
	}
	.footer_l .flex {
		flex-direction: column;
		gap: 20px;
	}
	.footer_l .flex a {
		width: 276px;
		margin: 0 auto;
	}
	.footer_r {
		height: 300px;
	}
}


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

	/*-----------------------------------------------------
		cace table 追加　20251219
	------------------------------------------------------*/
/* 位置に関係なく cace_table 全部に適用する */
table.cace_table {
  width: 100%;
  margin-bottom: 5%;
  margin-top:5%;
}
table.cace_table tr th {
  position: relative;
  width: 30%;
  padding: 10px 5px;
  border-top: 1px solid #919190;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  line-height: 1.6;
  vertical-align: middle;
}
table.cace_table tr {
  background: #F8F3EB;
}
table.cace_table tr:nth-child(odd) {
  background: #F2EDED;
}
table.cace_table tr td {
  width: 70%;
  padding: 10px 5px;
  border-top: 1px solid #919190;
  border-left: 1px solid #919190;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
  text-align: left;
}
table.cace_table tr:last-child th,
table.cace_table tr:last-child td {
  border-bottom: 1px solid #919190;
}


