@charset "UTF-8";
/*
	Filename: common
	Version: 1.0.1
*/
/*-----------------------------------------------------
	Utility
------------------------------------------------------*/
:root {
	--font-sans: "Zen Maru Gothic", system-ui, -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  --text-color: #464646;
  --main-color: #F7ADB9;
	--dark-color: #E26579;
	--sub-color: #88CB59;
}
.shade {
	box-shadow: 0px 20px 30px 0px rgba(0,0,0,0.1);
}
/* --------------------------------
   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;
}

/*-----------------------------------------------------
	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: 25px;
  left: 20px;
  z-index: 2;
  display: block;
  width: 265px;
  height: 60px;
  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: 0;
  right: 0;
  z-index: 1;
  width: 100%;
}
.header_nav > ul.flex {
  align-items: center;
  justify-content: flex-end;
	gap: 0;
}
.header_nav > ul.flex > li {
	border-right: 1px solid #D6D6D6;
}
.header_nav > ul.flex > li > a {
  display: block;
  padding: 30px 17px;
  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.news, .header_nav ul.flex li.web, .header_nav ul.flex li.line {
	border-right: none;
}
.header_nav ul.flex li.news a {
	padding-right: 0;
}
.header_nav ul.flex li.tel {
	padding: 8.71px 24px;
	border-right: none;
}
.header_nav ul.flex li.tel a {
  position: relative;
	margin-bottom: 3px;
	padding: 0;
	padding-left: 20px;
	padding-bottom: 3px;
	border-bottom: 1px solid #D6D6D6;
  font-size: 25px;
  font-weight: 700;
	letter-spacing: 0.06em;
	color: var(--dark-color);
	text-align: center;
}
.header_nav ul.flex li.tel a::before {
  content: "";
  display: block;
  position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
  width: 17px;
  height: 17px;
  background: url("../img/common/tel.svg") no-repeat center center;
  background-size: cover;
}
.header_nav ul.flex li.tel span {
  display: block;
  font-size: 16px;
	font-weight: 700;
	color: var(--text-color);
	letter-spacing: 0.1em;
}
.header_nav ul.flex li.web a {
  padding: 46px 27px;
	background: var(--dark-color);
}
.header_nav ul.flex li.web a:hover {
	background: #c72841;
}
.header_nav ul.flex li.web a span {
  position: relative;
	padding-left: 28px;
  font-size: 18px;
  font-weight: 700;
	color: #fff;
	text-align: center;
}
.header_nav ul.flex li.web a span::before {
  content: "";
  display: block;
  position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url("../img/common/web.svg") no-repeat center center;
  background-size: cover;
}
.header_nav ul.flex li.line a {
  padding: 46px 27px;
	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: 18px;
  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: 31px;
  height: 30px;
  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: 110px;
	left: 50%;
	transform: translateX(-50%);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  width: 1280px;
	max-width: 100%;
	max-height: 90vh;
  overflow-y: auto;
	margin: 0 auto;
  padding: 60px 80px;
	background: rgba(255, 239, 242, 0.9);
	border-radius: 0 0 20px 20px;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media screen and (max-width: 1360px) {
	.header_nav ul.flex > li.has-child > ul {
		padding: 60px 40px;
	}
}
.header_nav ul.flex > li.has-child:hover > ul {
  display: block;
  opacity: 1;
  visibility: visible;
}
.header_nav ul.flex > li.has-child > ul > li {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
  padding: 0;
}
.header_nav ul.flex li.has-child ul li .mega_title {
	width: 17%;
	text-align: left;
}
.header_nav ul.flex li.has-child ul li .mega_title h3 {
	font-size: 30px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.1em;
	color:var(--dark-color);
}
.header_nav ul.flex li.has-child ul li .mega {
  display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
  width: 77%;
}
.header_nav ul.flex li.has-child ul li .mega_child {
  width: 32%;
}
.header_nav ul.flex li.has-child ul li .mega_child h4 {
	margin-bottom: 40px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--dark-color);
  font-size: 20px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.1em;
	color: var(--dark-color);
}
.header_nav ul.flex li.has-child ul li .mega_child ul {
  margin-bottom: 50px;
}
.header_nav ul.flex li.has-child ul li .mega_child ul li {
  margin-bottom: 35px;
	margin-left: 20px;
	list-style-type: disc;
}
.header_nav ul.flex li.has-child ul li .mega_child ul li:last-child {
  margin-bottom: 0;
}
.header_nav ul.flex li.has-child ul li .mega_child ul li::marker {
  color: var(--dark-color);
}
.header_nav ul.flex li.has-child ul li .mega_child ul li a {
  font-size: 18px;
	font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
}

#sp-fixed-menu {
	display: none;
}
@media screen and (max-width: 1600px) {
	.header_logo a {
		top: 34.5px;
		width: 180px;
		height: 41px;
	}
	.header_nav ul.flex li.web a, .header_nav ul.flex li.line a {
		padding: 57px 10px 37px;
	}
	.header_nav ul.flex li.web a span, .header_nav ul.flex li.line a span {
		padding-left: 0;
		font-size: 16px;
	}
	.header_nav ul.flex li.web a span::before {
		top: -30px;
		left: 50%;
		transform: translateY(0) translateX(-50%);
	}
	.header_nav ul.flex li.line a span::before {
		top: -34px;
		left: 50%;
		transform: translateY(0) translateX(-50%);
	}
}
@media screen and (max-width: 1450px) {
	.header_logo a {
		top: 10px;
	}
	.header_nav > ul.flex > li {
		border-right: none;
	}
	.header_nav > ul.flex > li > a {
		padding: 46px 17px 0;
		border-right: none;
		font-size: 12px;
	}
}
@media screen and (max-width: 1150px) {
	.header_nav > ul.flex > li > a {
		padding: 46px 10px 0;
	}
}
@media screen and (min-width: 1051px) {
	.fat-nav, .fat-nav ul, .fat-nav__wrapper .header_logo, .fat-nav_inner > .nav_cv {
		display: none;
	}
}
@media screen and (max-width: 1050px) {
  header {
    height: 83px;
  }
  .header_nav, .header_top {
    display: none;
  }
  .header_logo a {
		top: 11.5px;
		width: 265px;
		height: 60px;
  }
	/* SPメニュー */
  .hamburger {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10002;
    width: 60px ;
    height: 83px;
    padding: 0;
		background: var(--dark-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_inner ul 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 {
		position: relative;
	}
	.aco a.no_link {
		display: block;
		position: relative;
		z-index: 5;
		pointer-events: auto;
		cursor: pointer;
		padding-right: 40px;
	}
	.aco a.no_link::after {
		content: "";
		display: block;
		position: absolute;
		top: 50%;
		right: 10px;
		transform: translateY(-50%);
		width: 20px;
		height: 20px;
		background: url("../img/common/plus.svg") no-repeat center center;
		background-size: cover;
		pointer-events: none;
	}
	.aco.is-active a.no_link::after {
		background: url("../img/common/minus.svg") no-repeat center center;
		background-size: cover;
	}
	.aco > .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: 50px !important;
  }
	.fat-nav_menu_list li a::after {
		content: "";
		display: block;
		position: absolute;
		top: 50%;
		left: 20px;
		transform: translateY(-50%);
		width: 20px;
		height: 2px;
		background: var(--dark-color);
	}
	.fat-nav_inner > ul.nav_cv {
		width: 350px;
		max-width: 100%;
		margin: 20px auto;
	}
	.fat-nav_inner > ul.nav_cv li.web {
		margin-bottom: 10px;
	}
	.fat-nav_inner > ul.nav_cv li.web a, .fat-nav_inner > ul.nav_cv li.line a {
		display: block;
		padding: 30.5px 0;
		background: var(--dark-color);
		border-radius: 600px;
		text-align: center;
	}
	.fat-nav_inner > ul.nav_cv li.web a span {
		position: relative;
		padding-left: 48px;
		font-size: 30px;
		font-weight: 700;
		letter-spacing: 0.06em;
		color: #fff;
		text-align: center;
	}
	.fat-nav_inner > ul.nav_cv li.web a span::before {
		content: "";
		display: block;
		position: absolute;
		top: 50%;
		left: 0;
		transform: translateY(-50%);
		width: 40px;
		height: 40px;
		background: url("../img/common/web.svg") no-repeat center center;
		background-size: cover;
	}
	.fat-nav_inner > ul.nav_cv li.line a {
		background: #00B900;
	}
	.fat-nav_inner > ul.nav_cv li.line a span {
		position: relative;
		padding-left: 70px;
		font-size: 30px;
		font-weight: 700;
		letter-spacing: 0.06em;
		color: #fff;
		text-align: center;
	}
	.fat-nav_inner > ul.nav_cv li.line a span::before {
		content: "";
		display: block;
		position: absolute;
		top: 50%;
		left: 0;
		transform: translateY(-50%);
		width: 62px;
		height: 60px;
		background: url("../img/common/line.svg") no-repeat center center;
		background-size: cover;
	}
	.fat-nav_inner > ul.sns {
		justify-content: center;
		gap: 5px;
	}
	.fat-nav_inner > ul.sns li a {
		padding: 0;
		border-bottom: none;
	}
	.fat-nav_inner > ul.sns li a img {
		width: 60px;
		height: 60px;
	}
	#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 li {
		width: 50%;
	}
	#sp-fixed-menu ul li a {
		display: block;
		border-radius: 20px 20px 0 0;
		padding: 13px 0;
		color: #fff;
		text-align: center;
	}
	#sp-fixed-menu ul li.sp_fixed_web a, #sp-fixed-menu ul li.sp_fixed_line a {
		display: block;
		background: var(--dark-color);
	}
	#sp-fixed-menu ul li.sp_fixed_web a span, #sp-fixed-menu ul li.sp_fixed_line a span {
		position: relative;
		font-size: 18px;
		font-weight: 700;
		color: #fff;
		text-align: center;
	}
	#sp-fixed-menu ul li.sp_fixed_web a span {
		padding-left: 32px;
	}
	#sp-fixed-menu ul li.sp_fixed_web a span::before {
		content: "";
		display: block;
		position: absolute;
		top: 50%;
		left: 0;
		transform: translateY(-50%);
		width: 20px;
		height: 20px;
		background: url("../img/common/web.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 {
		padding-left: 36px;
	}
	#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: 30px;
	font-size: 40px;
	font-weight: 700;
	line-height: 1.6;
	letter-spacing: 0.1em;
	text-align: center;
}
.midasi_01 span {
	display: block;
	margin-bottom: 5px;
	font-size: 20px;
	color: var(--dark-color);
}
.midasi_01::before {
	content: "";
	display: block;
	position: absolute;
	bottom: -30px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: var(--dark-color);
	border-radius: 100px;
}
@media screen and (max-width: 750px) {
	.midasi_01 {
		font-size: 36px;
	}
	.midasi_01 span {
		margin-bottom: 0;
	}
	.midasi_01::before {
		bottom: -20px;
	}
}
@media screen and (max-width: 414px) {
	.midasi_01 {
		font-size: 30px;
	}
	.midasi_01 span {
		font-size: 19px;
	}
}
/*-----------------------------------------------------
	ボタン
------------------------------------------------------*/
.link_more_01, .link_more_02 {
	display: inline-block;
	position: relative;
	max-width: 100%;
	padding: 35px 40px 35px 37px;
	background: var(--dark-color);
	border-radius: 100px;
	box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.10);
	font-size: 30px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.1em;
	color: #fff;
	text-align: center;
}
.link_more_01::after, .link_more_02::after {
	content: "";
	position: absolute;
	right: 20px;
	top: 50%;
	width: 12px;
	height: 22px;
	background: url("../img/common/arrow_white.svg") no-repeat center center;
	background-size: cover;
	transform: translateY(-50%);
	transition: all 0.3s ease;
}
.link_more_02 {
	padding: 31px 40px 31px 37px;
	background: #fff;
	border: 4px solid var(--dark-color);
	color: var(--dark-color);
}
.link_more_02::after {
	background: url("../img/common/arrow_pink.svg") no-repeat center center;
}
.link_more_03 {
	display: inline-block;
	position: relative;
	max-width: 100%;
	padding: 20px 37px 20px 48px;
	background: var(--dark-color);
	border-radius: 100px;
	box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.10);
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.1em;
	color: #fff;
	text-align: center;
}
.link_more_03::after {
	content: "";
	position: absolute;
	right: 20px;
	top: 50%;
	width: 9px;
	height: 16px;
	background: url("../img/common/arrow_white_small.svg") no-repeat center center;
	background-size: cover;
	transform: translateY(-50%);
	transition: all 0.3s ease;
}
@media screen and (max-width: 750px) {
	.link_more_01, .link_more_02 {
		padding: 30.5px 45px 30.5px 42px;
		border-radius: 87.5px;
		font-size: 26.5px;
	}
	.link_more_02 {
		padding: 27px 35px 27px 32px;
		border: 3.5px solid var(--dark-color);
	}
	.link_more_03 {
		padding: 15px 37px 15px 48px;
		font-size: 16px;
		line-height: 1.3;
	}
	.link_more_03::after {
		width: 12px;
		height: 22px;
		background: url("../img/common/arrow_white.svg") no-repeat center center;
		background-size: cover;
	}
}
@media screen and (max-width: 414px) {
	.link_more_01, .link_more_02 {
		width: 100%;
	}
	.link_more_03 {
		width: 100%;
		max-width: 100%;
	}
}
/*-----------------------------------------------------
	#page_mv
------------------------------------------------------*/
#page_mv {
  position: relative;
	top: 0;
  z-index: 0;
  width: 100%;
  height: 400px;
	margin-top: 110px;
}
#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%;
	padding-right: 100px;
	padding-left: 100px;
	text-align: left;
}
#page_mv .page_title h1, #page_mv .page_title div {
	position: relative;
  display: inline-block;
	font-size: 50px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0.1em;
	color: var(--dark-color);
}
.stroke-layer {
  position: absolute !important;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-text-stroke: 8px #fff;
  color: transparent !important;
}
.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: 1050px) {
	#page_mv {
		margin-top: 83px;
	}
	#page_mv .page_title {
		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 {
		font-size: 25px;
		text-align: center;
	}
	.stroke-layer {
		-webkit-text-stroke: 5px #fff;
	}
}
/*-----------------------------------------------------
	.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;
}
p.link a {
	display: inline-block;
	position: relative;
	min-width: 300px;
	max-width: 100%;
	padding: 22px 37px 22px 20px;
	background: var(--dark-color);
	border-radius: 9999px;
	box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.10);
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.1em;
	color: #fff;
	text-align: center;
}
p.link a::after {
	content: "";
	position: absolute;
	right: 20px;
	top: 50%;
	width: 9px;
	height: 16px;
	background: url("../img/common/arrow_white.svg") no-repeat center center;
	background-size: cover;
	transform: translateY(-50%);
	transition: all 0.3s ease;
}
.main hr {
  display: block;
  height: 1px;
  border: 0;   
  border-top: 1px solid #dadada;
  margin: 3em 0;
  padding: 0;
}
.main h2 {
	margin-bottom: 60px;
	padding: 10px 20px;
	background: #FFE0E5;
	border-left: 4px solid var(--dark-color);
	font-size: 40px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0.1em;
}
.main h3 {
	margin-bottom: 30px;
	padding-bottom: 3px;
	border-bottom: 3px solid var(--dark-color);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.1em;
	color: var(--dark-color);
}
.main h4 {
	position: relative;
	margin-bottom: 30px;
	padding-left: 28px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.1em;
	color: var(--sub-color);
}
.main h4::after {
  content: "";
  display: block;
  position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
  width: 20px;
  height: 4px;
  background: var(--sub-color);
}
.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: 18px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.1em;
}
.main ul, .main ol {
  margin-bottom: 40px;
}
.main ul li {
  margin-bottom: 20px;
  margin-left: 20px;
  list-style-type: disc;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
.main ul li::marker {
  color: var(--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 .wp-element-caption {
  font-size: 14px;
}
.main figure img {
  max-width: 100%;
  height: auto;
	margin-bottom: 40px;
	border-radius: 20px;
}
.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 {
  padding: 20px;
	border: 1px solid #DADADA;
	border-bottom: 1px solid #fff;
	background: var(--dark-color);
	font-size: 16px;
	color: #fff;
	vertical-align: middle;
}
.main table tr td {
  padding: 20px;
  border: 1px solid #DADADA;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
  vertical-align: middle;
}
.main .price table {
  width: 100%;
  margin: 0 auto 30px;
}
.main .price table tr th {
  position: relative;
  padding: 20px;
	background: var(--sub-color);
	border: none;
	border-bottom: none;
  font-size: 16px;
  font-weight: 500;
	color: #fff;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.2em;
  vertical-align: middle;
}
.main .price table tr th:last-child {
  width: 25%;
}
.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, .main .price table tr td:last-child::after {
  display: none;
}
.main .price table tr td {
	position: relative;
  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::after {
  content: "";
  display: block;
  position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: #DADADA;
}
.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: 1000px;
  margin: 0 auto 100px;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
}
.ez-toc-title-container {
	margin-bottom: 40px;
	text-align: center;
}
div#ez-toc-container .ez-toc-title {
	position: relative;
	font-size: 40px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-align: center;
}
div#ez-toc-container .ez-toc-title::after {
  content: "";
  display: block;
  position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
  width: 84px;
  height: 1px;
  background: #D6D6D6;
}
.main ul.ez-toc-list {
  display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
  align-items: stretch;
  gap: 10px;
}
.main ul.ez-toc-list li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 60px;
  margin-bottom: 0;
  margin-left: 0;
  border: 1px solid #D6D6D6;
	border-radius: 9999px;
  list-style-type: none;
  text-align: left;
}
.main ul.ez-toc-list li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start; 
  position: relative;
  width: 100%;
  height: 100%;
  padding: 10px 40px 10px 20px;
  font-size: 16px;
  color: var(--text-color);
  text-decoration: none;
}
.main ul.ez-toc-list li a:visited {
  color: var(--text-color) !important;
}
.main ul.ez-toc-list li a:hover {
	opacity: .65;
  text-decoration: none !important;
}
.main ul.ez-toc-list li a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 11px;
  height: 6px;
  background: url(../img/common/arrow_black.svg) no-repeat center center;
  background-size: cover;
}
@media screen and (max-width: 1080px) {
	#ez-toc-container {
		width: 100%;
		margin: 0 auto 100px;
	}
}
@media screen and (max-width: 750px) {
	p.link {
		text-align: center;
	}
	.main h1 {
		margin-bottom: 20px;
		padding-bottom: 20px;
		font-size: 22px;
	}
	.main h2 {
		margin-bottom: 40px;
		font-size: 30px;
	}
	.main h3 {
		font-size: 20px;
	}
	.main h4 {
		font-size: 20px;
	}
	.main h5 {
		font-size: 16px;
	}
	.main h6 {
		font-size: 16px;
	}
	.main p {
		margin-bottom: 30px;
		font-size: 16px;
	}
	.main ul, .main ol {
		margin-bottom: 30px;
	}
	.main ul li {
		font-size: 14px;
	}
	.main ol li {
		font-size: 14px;
	}
	.main table tr th {
		padding: 15px;
		font-size: 14px;
	}
	.main table tr td {
		padding: 15px;
		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:first-child::after {
		display: none;
	}
  .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 {
		margin: 0 auto 60px;
	}
	div#ez-toc-container .ez-toc-title {
		font-size: 30px;
	}
	div#ez-toc-container .ez-toc-title::after {
		width: 63px;
	}
}
/*-----------------------------------------------------
	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
------------------------------------------------------*/
/*-----------------------------------------------------
	#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;
	padding-bottom: 60px;
	background: #FFFDEB;
}
.information_hour h2 {
  margin-bottom: 80px;
}
.information_hour .wrap {
	justify-content: space-between;
}
.information_hour_l {
	width: 49%;
	text-align: center;
}
.hour {
  width: 100%;
	margin-bottom: 10px;
	text-align: center;
}
.hour th {
	padding-top: 20px;
  padding-bottom: 20px;
	background: var(--main-color);
  font-size: 18px;
  font-weight: 700;
	line-height: 1;
	letter-spacing: 0.1em;
	color: #fff;
}
.hour tbody tr th:first-of-type {
  width: 165px;
	padding-right: 10px;
	padding-left: 10px;
}
.hour tbody tr td:first-of-type {
	color: var(--text-color);
}
.hour tbody tr td {
	background: #fff;
	padding-top: 25px;
  padding-bottom: 25px;
	font-size: 18px;
  font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0.1em;
  color: var(--main-color);
}
.hour tbody tr:last-of-type td {
	border-top: 1px solid #D6D6D6;
}
.information_hour_l p {
	margin-bottom: 40px;
	font-size: 17px;
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: 0.1em;
	text-align: left;
	color: var(--dark-color);
}
.information_hour_l ul li {
	align-items: center;
	gap: 7px;
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid #D6D6D6;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.3;
	letter-spacing: 0.1em;
	text-align: left;
}
.information_hour_l ul li em a {
	font-size: 31px;
	font-style: normal;
	font-weight: 900;
	color: var(--dark-color);
}
.information_hour_r {
	width: 49%;
}
.information_hour_r iframe {
	width: 100%;
	height: 326px;
	margin-bottom: 40px;
}
.information_hour_r ul.nav_cv {
	gap: 10px;
	max-width: 628px;
	margin-right: auto;
	margin-bottom: 20px;
	margin-left: auto;
}
.information_hour_r ul.nav_cv li {
	width: calc(50% - 5px);
}
.information_hour_r ul.nav_cv li.web a, .information_hour_r ul.nav_cv li.line a {
	display: block;
	padding: 30.5px 0;
	background: var(--dark-color);
	border-radius: 600px;
	text-align: center;
}
.information_hour_r ul.nav_cv li.web a span {
	position: relative;
	padding-left: 48px;
	font-size: 30px;
	font-weight: 700;
	letter-spacing: 0.06em;
	color: #fff;
	text-align: center;
}
.information_hour_r ul.nav_cv li.web a span::before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	background: url("../img/common/web.svg") no-repeat center center;
	background-size: cover;
}
.information_hour_r ul.nav_cv li.line a {
	background: #00B900;
}
.information_hour_r ul.nav_cv li.line a span {
	position: relative;
	padding-left: 70px;
	font-size: 30px;
	font-weight: 700;
	letter-spacing: 0.06em;
	color: #fff;
	text-align: center;
}
.information_hour_r ul.nav_cv li.line a span::before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 62px;
	height: 60px;
	background: url("../img/common/line.svg") no-repeat center center;
	background-size: cover;
}
.information_hour_r ul.sns {
	justify-content: center;
	gap: 5px;
}
.information_hour_r ul.sns li a {
	padding: 0;
	border-bottom: none;
}
.information_hour_r ul.sns li a img {
	width: 60px;
	height: 60px;
}
@media screen and (max-width: 1050px) {
	.information_hour_l {
		width: 100%;
		margin-bottom: 40px;
	}
	.information_hour_r {
		width: 100%;
	}
}
@media screen and (max-width: 750px) {
	.information_hour {
		padding-top: 40px;
		padding-bottom: 40px;
	}
	.information_hour h2 {
		margin-bottom: 60px;
	}
	.hour th {
		padding-top: 17.5px;
		padding-bottom: 17.5px;
		font-size: 16px;
	}
	.hour tbody tr th:first-of-type {
		width: 120px;
	}
	.hour tbody tr td {
		padding-top: 24px;
		padding-bottom: 24px;
		font-size: 16px;
	}
	.information_hour_r iframe {
		height: 86.933vw;
	}
	.information_hour_r ul.nav_cv {
		max-width: 350px;
	}
	.information_hour_r ul.nav_cv li {
		width: 100%;
	}
}

/*-----------------------------------------------------
	#medical
------------------------------------------------------*/
#medical {
	padding-top: 60px;
	padding-bottom: 120px;
	background: #FFFDEB;
}
ul.medical_list {
	justify-content: center;
	gap: 12px;
	margin-top: 90px;
}
ul.medical_list li {
	width: calc((100% - 48px) / 5);
	height: 220px;
}
ul.medical_list li a {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	background: #fff;
	border-radius: 10px;
	box-shadow: 10px 10px 30px 0px rgba(0,0,0,0.15);
	text-align: center;
}
ul.medical_list li a span.menu_img {
	display: flex;
  align-items: center;
	justify-content: center;
	width: 100%;
	height: 140px;
	text-align: center;
}
ul.medical_list li a span.menu_text {
	display: flex;
  align-items: center;
  justify-content: flex-start;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	min-height: 80px;
	padding: 14px 50px 14px 20px;
	background: #58A9E3;
	border-radius: 0 0 10px 10px;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.3;
	letter-spacing: 0.1em;
	color: #fff;
	text-align: left;
}
ul.medical_list li a span.menu_text::after {
  content: "";
  display: block;
  position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
  width: 9px;
  height: 16px;
  background: url("../img/common/arrow_white_small.svg") no-repeat center center;
  background-size: cover;
}
@media screen and (max-width: 1360px) {
	ul.medical_list li {
		width: calc((100% - 36px) / 4);
	}
}
@media screen and (max-width: 1130px) {
	ul.medical_list li {
		width: calc((100% - 24px) / 3);
	}
	ul.medical_list li a span.menu_text {
		padding: 14px 40px 14px 20px;
		font-size: 16px;
	}
}
@media screen and (max-width: 750px) {
	#medical {
		padding-bottom: 60px;
	}
	ul.medical_list {
		gap: 10px;
		margin-top: 70px;
	}
	ul.medical_list li {
		width: calc((100% - 10px) / 2);
	}
	ul.medical_list li a span.menu_text {
		font-size: 16px;
	}
}
@media screen and (max-width: 480px) {
	ul.medical_list li a span.menu_img {
		padding: 10px 20px;
	}
	ul.medical_list li a span.menu_img img {
		max-width: 100%;
	}
	ul.medical_list li a span.menu_text {
		padding: 14px 20px 14px 10px;
		font-size: 14px;
	}
	ul.medical_list li a span.menu_text::after {
		right: 10px;
	}
}
/*-----------------------------------------------------
	footer
------------------------------------------------------*/
footer {
	padding: 60px 20px 20px;
  background: #FFEFF2;
}
footer h2 {
	font-size: 20px;
	font-weight: 700;
  text-align: center;
}
footer h2 img {
	display: block;
  width: 441px;
	height: auto;
	margin: 0 auto 20px;
}
footer p {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.6;
	letter-spacing: 0.1em;
	text-align: center;
}
footer p a.footer_tel {
	font-size: 36px;
	font-weight: 700;
	line-height: 1.6;
	letter-spacing: 0.1em;
	color: var(--dark-color);
	text-align: center;
}
.footer_bottom {
  display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 60px;
	margin-bottom: 60px;
}
.footer_bottom .footer_bottom_child {
  width: 35.4%;
}
.footer_bottom .footer_bottom_child:first-of-type {
  width: 23.4%;
}
.footer_bottom .footer_bottom_child h4 {
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--dark-color);
  font-size: 20px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.1em;
	color: var(--dark-color);
}
.footer_bottom .footer_bottom_child ul li {
  margin-bottom: 30px;
	margin-left: 20px;
	list-style-type: disc;
}
.footer_bottom .footer_bottom_child ul li:last-child {
  margin-bottom: 0;
}
.footer_bottom .footer_bottom_child ul li::marker {
  color: var(--dark-color);
}
.footer_bottom .footer_bottom_child ul li a {
  font-size: 16px;
	font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
.footer_bottom_child_l {
	justify-content: space-between;
}
.footer_bottom_child_l li {
	width: calc(32% - 20px);
}
footer small {
	font-size: 12px;
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 1360px) {
	.footer_bottom {
		width: 100%;
	}
	.footer_bottom_child_l {
		gap: 0;
	}
	.footer_bottom_child_l li {
		width: calc(48.5% - 20px);
	}
}
@media screen and (max-width: 900px) {
	.footer_bottom .footer_bottom_child, .footer_bottom .footer_bottom_child:first-of-type {
		width: 100%;
		margin-bottom: 40px;
	}
	.footer_bottom .footer_bottom_child:last-of-type {
		margin-bottom: 0;
	}
	.footer_bottom .footer_bottom_child ul li {
		margin-bottom: 20px;
	}
}
@media screen and (max-width: 750px) {
	footer {
		padding-top: 40px;
	}
	footer h2 img {
		width: 300px;
	}
	footer p {
		font-size: 16px;
	}
	footer p a.footer_tel {
		font-size: 30px;
	}
}
@media screen and (max-width: 430px) {
	footer small {
		font-size: 2.6vw;
	}
}
/*-----------------------------------------------------
	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;
	}
}
