@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: #555555;
  --main-color: #D56898;
	--dark-color: #A6106E;
	--sub-color: #FCE2E0;
}
/* --------------------------------
   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;
}
.cinzel {
  font-family: "Cinzel", 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: 110px;
	background: #fff;
}
.header_inner {
  position: relative;
}
.header_logo a {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  display: block;
  width: 419px;
  height: 70px;
  background-image: url("../img/common/logo.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  text-indent: -9999px;
  overflow: hidden;
  white-space: nowrap;
}
.header_nav {
  position: absolute;
  top: 55px;
  right: 0;
  z-index: 1;
  width: 100%;
	padding-right: 30px;
}
.header_nav ul.flex {
  align-items: center;
  justify-content: flex-end;
	gap: 0;
}
.header_nav ul.flex li a {
  position: relative;
  display: block;
  padding: 20px 15px 20px;
  font-size: 15px;
  font-weight: 500;
	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.has-child ul {
  display: none;
  position: absolute;
  top: 55px;
	left: 50%;
	transform: translateX(-50%);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  width: calc(100% - 80px);
	max-width: 100%;
  overflow-y: auto;
	margin: 0 auto;
  padding: 40px 60px;
	background: rgba(213, 104, 152, 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: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #fff;
	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;
}
.header_top {
	position: absolute;
	top: 0;
	right: 20px;
}
.header_top ul.flex {
	align-items: center;
  justify-content: flex-end;
	gap: 4px;
}
.header_top ul.flex li a {
	display: block;
	width: 160px;
	padding: 8px 10px 13px;
	background: var(--dark-color);
	border-radius: 0 0 4px 4px;
	font-size: 11px;
	font-weight: 400;
	line-height: 1;
	color: #fff;
	text-align: center;
}
.header_top ul.flex li a:hover {
	background: #E80091;
	opacity: 1;
}
.header_top ul.flex li a span {
	display: inline-block;
	position: relative;
	margin-top: 8px;
	padding-left: 30px;
	font-size: 16px;
	font-weight: 700;
}
.header_top ul.flex li a span::before {
  content: "";
  display: block;
  position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: url("../img/common/reserv_01.svg") no-repeat center center;
  background-size: cover;
}
.header_top ul.flex li:nth-last-of-type(2) a {
  background: var(--main-color);
}
.header_top ul.flex li:nth-last-of-type(2) a:hover {
  background: var(--dark-color);
}
.header_top ul.flex li:nth-last-of-type(2) a span::before {
  background: url("../img/common/reserv_02.svg") no-repeat center center;
  background-size: cover;
}
.header_top ul.flex li:last-of-type a {
	width: auto;
	padding-top: 0;
	padding-bottom: 0;
	padding-right: 0;
	padding-left: 10px;
	background: none;
}
.header_top ul.flex li:last-of-type a:hover {
	background: none;
}
#sp-fixed-menu {
  display: none;
}
@media screen and (max-width: 1450px) {
	.header_logo a {
		top: 10px;
		width: 280px;
		height: 47px;
	}
}
@media screen and (max-width: 1000px) {
	.header_nav {
		padding-right: 0;
	}
	.header_nav ul.flex {
		justify-content: center;
	}
	.header_nav ul.flex li a {
		padding: 22px 15px 20px;
		font-size: 13px;
	}
}
@media screen and (min-width: 901px) {
	.fat-nav, .fat-nav ul, .fat-nav__wrapper .header_logo, .nav_cv {
		display: none;
	}
}
@media screen and (max-width: 900px) {
  header {
    height: 83px;
  }
  .header_nav, .header_top {
    display: none;
  }
  .header_logo a {
		width: 300px;
		height: 50px;
  }
	/* SPメニュー */
  .hamburger {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10002;
    width: 60px ;
    height: 60px;
    padding: 0;
		background: #9F927B;
		border-radius: 0 0 0 30px;
    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: 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: 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);
  }
  .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: calc(100% - 40px);
		height: 100%;
		margin-left: 40px;
    padding: 0 30px 40px;
    background: var(--main-color);
	}
	.fat-nav .header_logo {
    position: fixed;
    top: 0;
    left: 0;
		z-index: 10;
		width: 100%;
		height: 83px;
    background: #fff;
  }
  .fat-nav .header_logo a {
    background-image: url("../img/common/logo.svg");
  }
  .fat-nav li a {
    display: block;
    position: relative;
    padding: 16.5px 50px 16.5px 20px;
		border-bottom: 1px solid #fff;
		font-size: 16px;
		font-weight: 500;
		line-height: 1.6;
		letter-spacing: 0.1em;
    color: #fff;
  }
  .aco {
    cursor: pointer;
    position: relative;
    z-index: 1;
  }
  .aco::after {
    content: "" !important;
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    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 {
		position: relative;
		padding-left: 60px;
  }
  .fat-nav_menu_list li a::before {
		content: "・";
		position: absolute;
		left: 35px;
		top: 50%;
		transform: translateY(-50%);
		font-size: 16px;
	}
  ul.nav_cv {
		width: 330px;
		max-width: 100%;
		margin: 20px auto 0;
		padding: 40px 20px;
		background: #fff;
		border-radius: 30px;
  }
	ul.nav_cv li a {
		display: block;
		width: 100%;
		padding: 8px 10px 13px;
		background: var(--dark-color);
		border-radius: 100px;
		font-size: 11px;
		font-weight: 400;
		line-height: 1;
		color: #fff;
		text-align: center;
	}
	ul.nav_cv li a span {
		display: inline-block;
		position: relative;
		margin-top: 8px;
		padding-left: 30px;
		font-size: 16px;
		font-weight: 700;
	}
	ul.nav_cv li a span::before {
		content: "";
		display: block;
		position: absolute;
		top: 50%;
		left: 0;
		transform: translateY(-50%);
		width: 24px;
		height: 24px;
		background: url("../img/common/reserv_01.svg") no-repeat center center;
		background-size: cover;
	}
	ul.nav_cv li:nth-last-of-type(2) {
		margin: 4px 0 10px;
	}
	ul.nav_cv li:nth-last-of-type(2) a {
		background: var(--main-color);
	}
	ul.nav_cv li:nth-last-of-type(2) a span::before {
		background: url("../img/common/reserv_02.svg") no-repeat center center;
		background-size: cover;
	}
	ul.nav_cv li:last-of-type a {
		width: auto;
		padding-top: 0;
		padding-bottom: 0;
		padding-right: 0;
		padding-left: 10px;
		background: none;
	}
}

@media screen and (max-width: 414px) {
  .header_logo a {
		top: 13px;
		width: 260px;
		height: 43px;
  }
}
/*-----------------------------------------------------
	aside
------------------------------------------------------*/
.fixed_nav {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	z-index: 1;
}
.fixed_nav ul {
	width: 122px;
}
.fixed_nav ul li {
	width: 122px;
	margin-bottom: 2px;
}
.fixed_nav ul li:last-child {
	margin-bottom: 0;
}
.fixed_nav ul li a {
	display: block;
	width: 100%;
	padding: 22px 10px;
	background: var(--sub-color);
	border-radius: 10px 0 0 10px;
	font-family: var(--font-sans);
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	color: #fff;
	text-align: center;
}
.fixed_nav ul li a span {
	position: relative;
	padding-left: 23px;
}
.fixed_nav ul li a span::before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 16px;
	height: 16px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.fixed_nav ul li.reserv a span::before {
	width: 16px;
	height: 17px;
	background-image: url("../img/common/calendar.svg")
}
.fixed_nav ul li.line a span::before {
	background-image: url("../img/common/line.svg")
}
.fixed_nav ul li.tel a span::before {
	background-image: url("../img/common/tel.svg")
}
@media screen and (min-width: 751px) {
	body:not(.home) .fixed_nav {
		opacity: 0;
	}
}
@media screen and (max-width: 750px) {
	/*
  .fixed_nav {
    opacity: 1;
    pointer-events: none;
  }
  .fixed_nav.is-visible {
    opacity: 1;
    pointer-events: auto;
		position: fixed;
		top: auto;
		right: 0;
		bottom: 0;
		transform: none;
		z-index: 20;
		width: 100%;
  }
	*/
	 .fixed_nav {
    opacity: 1;
    pointer-events: auto;
		position: fixed;
		top: auto;
		right: 0;
		bottom: 0;
		transform: none;
		z-index: 20;
		width: 100%;
  }
	.fixed_nav ul {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		width: 100%;
	}
	.fixed_nav ul li {
		width: 33.333%;
		margin-bottom: 0;
	}
	.fixed_nav ul li a {
		padding: 17px 10px;
		border-top: 1px solid #F6F3E8;
		border-radius: 10px 10px 0 0;
	}
	.fixed_nav ul li.reserv a {
		background: var(--main-color);
	}
	.fixed_nav ul li.line a {
		background: #00B900;
	}
}
/*-----------------------------------------------------
	#page_top
------------------------------------------------------*/
#page_top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  width: 48px;
  height: 48px;
  background: var(--main-color);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, background 0.2s;
}
#page_top.is-show {
  opacity: 1;
  pointer-events: auto;
}
#page_top::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: translate(-50%, -40%) rotate(-45deg);
}
#page_top:hover {
  background: var(--dark-color);
}

/*-----------------------------------------------------
	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: 40px;
	font-weight: 500;
	line-height: 1.3;
	letter-spacing: 0.1em;
  text-align: center;
}
.midasi_02 span {
  content: "";
  display: block;
  position: absolute;
	top: 65%;
	left: 0;
	transform: translateY(-50%);
	z-index: -1;
	width: 100%;
	font-family: "Cinzel", serif;
	font-size: 128px;
	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: 40px;
		font-size: 24px;
	}
	.midasi_02 span {
		font-size: 48px;
	}
}
@media screen and (max-width: 500px) {
	.midasi_02 span {
		font-size: 34px;
	}
}
/*-----------------------------------------------------
	ボタン
------------------------------------------------------*/
.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;
	width: 200px;
	max-width: 100%;
	padding: 13px 55px 13px 20px;
	background: var(--main-color);
	border-radius: 100px;
	box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.15);
	font-family: "Cinzel", serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.1em;
	color: #fff;
}
.link_more_02::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_02:hover {
	opacity: 1;
	background: var(--dark-color);
}
@media screen and (max-width: 750px) {
	.link_more_01 {
		text-align: left !important;
	}
	.link_more_02 {
		width: 350px;
		text-align: left;
	}
}

/*-----------------------------------------------------
	#page_mv
------------------------------------------------------*/
#page_mv {
  position: relative;
	top: 0;
  z-index: 0;
  width: 100%;
  height: 400px;
	margin-top: 110px;
}
#page_mv::after {
  content: "";
  display: block;
  position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.2);
}
#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%;
}
#page_mv .page_title h1, #page_mv .page_title div {
	padding-right: 100px;
	padding-left: 100px;
	font-family: var(--font-serif);
	font-size: 50px;
	font-weight: 500;
	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: 1000px) {
	#page_mv .page_title h1, #page_mv .page_title div {
		padding-right: 60px;
		padding-left: 60px;
	}
}
@media screen and (max-width: 750px) {
	#page_mv {
		height: 300px;
		margin-top: 83px;
	}
	#page_mv .page_title {
		left: 0;
	}
	#page_mv .page_title h1, #page_mv .page_title div {
		padding: 0 20px;
		font-size: 30px;
		text-align: center;
	}
}
/*-----------------------------------------------------
	.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;
}
/*-----------------------------------------------------
	case single
------------------------------------------------------*/
.main .category {
	margin-bottom: 20px;
}
.main .category span {
	display: inline-block;
	margin-right: 10px;
	margin-bottom: 10px;
	padding: 5px 20px;
  background: #dadada;
  border-radius: 100px;
  font-size: 16px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.1em;
  color: var(--sub-color);
}
.main .case_img {
	width: 60%;
	margin: 0 auto 30px;
}
.main .before_after_img img {
  height: auto;
	object-fit: contain;
}
@media screen and (max-width: 750px) {
	.main .category span {
		font-size: 14px;
	}
	.main .case_img {
		width: 100%;
	}
}

.main a {
  color: var(--dark-color);
  text-decoration: underline;
}
.main a.link_more_01 {
  color: #fff;
}
.main p.link_more_01 {
	padding: 0;
}
.main p.link_more_01 a {
	display: block;
	padding: 14px 30px 14px 20px;
  color: #fff;
	text-decoration: none;
}
.main p.link_more_01:hover, .main p.link_more_01 a:hover {
	opacity: 1
}
.main hr {
  display: block;
  height: 1px;
  border: 0;   
  border-top: 1px solid #dadada;
  margin: 3em 0;
  padding: 0;
}
.main h2 {
	margin-bottom: 40px;
	border-bottom: 4px solid var(--main-color);
	font-family: var(--font-serif);
	font-size: 40px;
	font-weight: 500;
	line-height: 1.3;
	letter-spacing: 0.1em;
}
.main h3 {
	margin-bottom: 40px;
	border-bottom: 1px solid var(--dark-color);
	font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
	color: var(--dark-color);
}
.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 p.tel {
  font-size: 36px;
}
.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 ul.check li {
	position: relative;
	margin-left: 0;
	padding-left: 38px;
  list-style-type: none;
  font-size: 18px;
}
.main ul.check li::before {
  content: "";
  display: block;
  position: absolute;
	top: 4px;
	left: 0;
  width: 30px;
  height: 24px;
  background: url("../img/common/check_icon.svg") no-repeat center center;
  background-size: cover;
}
.main figure {
  margin-bottom: 40px;
}
.main .wp-element-caption {
  font-size: 14px;
}
.main figure img {
  max-width: 100%;
  height: auto;
}
.main .wp-block-details summary {
	padding-bottom: 20px;
	font-size: 18px;
	color: var(--dark-color);
}
.main .wp-block-details summary::marker {
	color: var(--dark-color);
}
.main mark {
	padding: 0px 10px 1px;
}
.main ul.page_link {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 20px;
}
.main ul.page_link li {
	width: calc((100% - 40px) / 3);
	margin-left: 0;
  list-style-type: none;
  font-size: 16px;
	text-align: center;
}
.main ul.page_link li a {
	display: block;
	position: relative;
	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;
	text-decoration: none;
}
.main ul.page_link li a:hover {
	opacity: 1;
	background: var(--dark-color);
}
.main ul.page_link li a::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;
}
.main ul.page_link_02 {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 20px;
}
.main ul.page_link_02 li {
	width: calc((100% - 20px) / 2);
	margin-left: 0;
  list-style-type: none;
  font-size: 16px;
	text-align: center;
}
.main ul.page_link_02 li a {
	display: block;
	position: relative;
	padding: 22px 50px 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.3;
	letter-spacing: 0.1em;
	color: #fff;
	text-decoration: none;
}
.main ul.page_link_02 li a:hover {
	opacity: 1;
	background: var(--dark-color);
}
.main ul.page_link_02 li a::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;
}
.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 .hour {
  width: 100%;
	margin-bottom: 10px;
  text-align: center;
}
.main .hour th {
	padding-top: 15px;
  padding-bottom: 15px;
	background: #9F927B;
  font-size: 14px;
  font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0.1em;
	color: #fff;
	text-align: center;
}
.main .hour tbody tr th:first-of-type {
  width: 28.5%;
	padding-right: 10px;
	padding-left: 10px;
}
.main .hour tbody tr td:first-of-type {
	padding-right: 10px;
	padding-left: 10px;
	font-weight: 500;
}
.main .hour td {
  padding: 16px 0 14px;
  border-bottom: 1px solid #9F927B;
  font-size: 14px;
	font-weight: 700;
  vertical-align: middle;
	text-align: center;
}

.main .def table {
  width: 100%;
  margin: 0 auto;
}
.main .def table tr td:first-child {
  width: 30%;
	background: var(--sub-color);
	border-bottom: 1px solid #fff;
	text-align: center;
}
.main .def table tr:last-of-type td:first-child {
	border-bottom: 1px solid #DADADA;
}
.main .def table tr td {
	width: 70%;
  padding: 20px;
  background: rgba(255,255,255,.8);
  border: 1px solid #DADADA;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  line-height: 1.6;
  letter-spacing: 0.08em;
  vertical-align: middle;
	text-align: left;
}
.main .price table {
  width: 100%;
  margin: 0 auto;
}
.main .price table tr th {
  position: relative;
  width: 70%;
  padding: 20px;
	border: none;
	border-bottom: 1px solid #DADADA;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  line-height: 1.5;
  letter-spacing: 0.2em;
  vertical-align: middle;
}
.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 td {
  padding: 20px;
  background: rgba(255,255,255,.8);
  border: none;
  border-bottom: 1px solid #DADADA;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  line-height: 1.6;
  letter-spacing: 0.08em;
  vertical-align: middle;
}
.main .price table tr:first-of-type th, .main .price table tr:first-of-type td {
  border-top: 1px solid #DADADA;
}


.main ul.price_nav {
  display: flex;
	flex-direction: row;
	flex-wrap: wrap;
  align-items: stretch;
  gap: 10px;
}
.main ul.price_nav li {
  display: flex;
  flex-direction: column;
  width: calc((100% - 10px * 3) / 4);
  min-height: 70px;
  margin-bottom: 0;
  margin-left: 0;
  border: 1px solid #B2BEBF;
  list-style-type: none;
  text-align: left;
}
.main ul.price_nav li a {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 10px 20px;
  font-size: 14px;
  text-decoration: none;
}
.main ul.price_nav li a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%) rotate(90deg);
  width: 9px;
  height: 12px;
  background: url(../img/common/arrow_black_02.svg) no-repeat center center;
  background-size: cover;
}
@media screen and (max-width: 1220px) {
  .main ul.price_nav li {
    width: calc((100% - 10px * 2) / 3);
  }
	.main ul.page_link li {
		width: calc((100% - 20px) / 2);
	}
}
@media screen and (max-width: 750px) {
	.main h1 {
		margin-bottom: 20px;
		padding-bottom: 20px;
		font-size: 22px;
	}
	.main h2 {
		font-size: 30px;
	}
	.main h3 {
		margin-bottom: 30px;
		font-size: 20px;
	}
	.main h4 {
		padding: 3px 10px 3px;
		font-size: 16px;
	}
	.main h5 {
		font-size: 16px;
	}
	.main h6 {
		font-size: 16px;
	}
	.main ul.page_link li, .main ul.page_link_02 li {
		width: 100%;
		text-align: left;
	}
	.main .def table tr td:first-child {
		display: block;
		width: 100%;
		border-bottom: none;
	}
	.main .def table tr:last-of-type td:first-child {
		border-bottom: none;
	}
	.main .def table tr td {
		display: block;
		width: 100%;
		border-bottom: none;
	}
	.main .def table tr:last-of-type td:last-child {
		border-bottom: 1px solid #DADADA;
	}
	.main .price table {
    width: 100%;
  }
  .main .price table tr td:first-child {
    display: block;
    width: 100%;
    padding: 20px;
    border-bottom: none;
  }
  .main .price table tr td:first-child::after {
    top: auto;
    bottom: 0;
    right: 20px;
    transform: none;
    -webkit-transform: none;
    width: calc(100% - 40px);
    height: 1px;
  }
  .main .price table tr td {
    display: block;
    width: 100%;
    padding: 20px;
    border: none;
    border-bottom: none;
    font-size: 16px;
  }
  .main .price table tr:first-of-type td {
    border-top: none;
  }
  .main ul.price_nav li {
    width: calc((100% - 10px) / 2);
  }
}
/*-----------------------------------------------------
	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-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;
  }
}
/*-----------------------------------------------------
	#campaign
------------------------------------------------------*/
.campaign_list {
	justify-content: center;
	gap: 30px;
}
.campaign_list_child {
  display: block;
  width: calc((100% - 60px) / 3);
}
.campaign_list_child img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media screen and (max-width: 950px) {
	.campaign_list_child {
		width: calc((100% - 30px) / 2);
	}
}
@media screen and (max-width: 750px) {
  .campaign_list_child {
    width: 100%;
  }
  .campaign_list_child 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
------------------------------------------------------*/
.tab_list {
  display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	position: relative;
  width: fit-content;
	max-width: 100%;
  margin: 0 auto 10px;
  padding: 37px 0;
}
.tab_list_item {
  text-align: center;
}
.tab_list_link {
  display: inline-block;
  padding: 10px 20px;
  background: #dadada;
  border-radius: 100px;
  font-size: 20px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.1em;
  color: var(--sub-color);
  cursor: pointer;
  transition: .3s;
}
.tab_list_link.is-current, .tab_list_link:hover {
  background: var(--main-color);
  color: #fff;
  transition: .3s;
}
@media screen and (max-width: 950px) {
  .tab_list {
    width: 100%;
  }
  .tab_list_item {
    width: calc((100% - 20px) / 3);
  }
	.tab_list_link {
		display: block;
	}
}
@media screen and (max-width: 750px) {
  .tab_list {
		gap: 20px 10px;
		margin: -43px auto 30px;
		padding: 27px 0 21px;
  }
  .tab_list_item {
    width: calc((100% - 10px) / 2);
  }
	.tab_list_link {
		font-size: 16px;
	}
}

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

/*-----------------------------------------------------
	ページネーション
------------------------------------------------------*/
.pagination {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}
a.page-numbers, .pagination .current {
  display: block;
  margin: 0 3px;
	padding: 7px 9px;
	border: 1px solid var(--main-color);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
	text-decoration: none;
  color: var(--main-color);
}
span.page-numbers.dots {
  margin-right: 10px;
  margin-left: 10px;
  font-size: 14px;
}
.pagination .current, a.page-numbers:hover {
	background: var(--main-color);
	border: 1px solid var(--main-color);
	color: #fff;
  opacity: 1;
}
a.page-numbers.next, a.page-numbers.prev {
  position: relative;
  width: 27.78px;
  height: 30px;
  margin: 0 10px;
  background: var(--main-color);
  border: 1px solid var(--main-color);
  color: #fff;
}
a.page-numbers.next {
  margin-right: 0;
}
a.page-numbers.prev {
  margin-left: 0;
}
a.page-numbers.next img, 
a.page-numbers.prev img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
a.page-numbers.prev img {
  transform: translate(-50%, -50%) scaleX(-1);
  -webkit-transform: translate(-50%, -50%) scaleX(-1);
}
a.page-numbers.next:hover, a.page-numbers.prev:hover {
	background: var(--dark-color);
  opacity: .6;
}
/*-----------------------------------------------------
	.cv
------------------------------------------------------*/
.cv {
	padding: 80px 20px;
	background: #FFF5F5;
	text-align: center;
}
.cv h2 {
	margin-bottom: 40px;
	font-family: var(--font-serif);
	font-size: 40px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.1em;
}
ul.cv_btn {
	align-items: center;
	justify-content: center;
	gap: 20px;
	width: 100%;
}
ul.cv_btn li a {
	display: block;
	width: 300px;
	padding: 16px 10px;
	background: var(--main-color);
	border-radius: 200px;
	font-size: 14px;
	font-weight: 400;
	line-height: 1;
	color: #fff;
	text-align: center;
}
ul.cv_btn li a:hover {
	background: var(--dark-color);
	opacity: 1;
}
ul.cv_btn li a span {
	display: inline-block;
	position: relative;
	margin-top: 10px;
	padding-left: 40px;
	font-size: 24px;
	font-weight: 700;
}
ul.cv_btn li a span::before {
  content: "";
  display: block;
  position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: url("../img/common/reserv_01.svg") no-repeat center center;
  background-size: cover;
}
ul.cv_btn li:nth-last-of-type(2) a {
  background: var(--dark-color);
}
ul.cv_btn li:nth-last-of-type(2) a:hover {
  background: #E80091;
}
ul.cv_btn li:nth-last-of-type(2) a span::before {
  background: url("../img/common/reserv_02.svg") no-repeat center center;
  background-size: cover;
}
@media screen and (max-width: 750px) {
	.cv h2 {
		font-size: 30px;
	}
	ul.cv_btn {
		flex-direction: column;
	}
}
/*-----------------------------------------------------
	footer
------------------------------------------------------*/
footer {
  padding-top: 40px;
	padding-bottom: 40px;
  background: var(--main-color);
	color: #fff;
  text-align: center;
}
footer .wrap .flex {
	justify-content: space-between;
  margin-top: 30px;
  margin-bottom: 30px;
}
.footer_child {
  width: 32%;
	padding-top: 30px;
	border-top: 1px solid #dadada;
  text-align: left;
}
.footer_child h3 {
	margin-bottom: 20px;
  font-size: 18px;
	font-weight: 400;
	line-height: 2.3;
	letter-spacing: 0.1em;
}
.footer_child ul {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 5px 40px;
	font-size: 14px;
	font-weight: 400;
	line-height: 2.3;
	letter-spacing: 0.1em;
}
.footer_child ul li a {
	position: relative;
	padding-left: 15px;
	font-size: 14px;
	font-weight: 400;
	line-height: 2.3;
	letter-spacing: 0.1em;
	color: #fff;
}
.footer_child ul li a::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 5px;
	height: 5px;
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
	transform: translateY(-50%) rotate(-45deg);
}
.footer_child:first-of-type ul {
	gap: 10px 40px;
}
.footer_child:first-of-type ul li a {
	padding-left: 0;
	font-size: 18px;
}
.footer_child:first-of-type ul li a::before {
	display: none;
}
footer small {
	font-size: 12px;
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: 0.1em;
  text-align: center;
}

@media screen and (max-width: 750px) {
	footer {
		padding-top: 40px;
		padding-bottom: 90px;
	}
	footer .wrap .flex {
		margin-bottom: 16px;
	}
	.footer_child {
		width: 100%;
		margin-bottom: 40px;
	}
}

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