@charset "UTF-8";
@import url("https://use.fontawesome.com/releases/v7.2.0/css/all.css");

/**
 * 1.0 - Normalize
 * 2.0 - Common
 * 3.0 - Header
 * 4.0 - Contents
 * 5.0 - Navi
 * 6.0 - Main
 * 7.0 - Footer
 * 8.0 - Single Page
 * 9.0 - Option
 */

/*----------------------------------------------------
	1.0 - Normalize
----------------------------------------------------*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table.table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
	border: 0;
	font-family: inherit;
	font-style: inherit;
	font-weight: inherit;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
}
:focus {
	outline: 0;
}
ol,
ul {
	list-style: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
caption,
th,
td {
	font-weight: normal;
	text-align: left;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
}
blockquote,
q {
	quotes: "" "";
}
a img {
	border: 0;
}
figure {
	margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary {
	display: block;
}
/*Border*/
*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

/*----------------------------------------------------
	2.0 - Common
----------------------------------------------------*/
html {
	font-size: 62.5%; /* base-font-size:10px */
}
body {
	width: 100%;
	max-width: 100%;
	background: #fcfcfc;
	font-family: "Quicksand", "Zen Maru Gothic", sans-serif;
	font-size: 1.7rem;
	color: #3e3a39;
	letter-spacing: 0;
	overflow-x: hidden;
}
body.index {
	background: linear-gradient(45deg, rgba(253, 241, 216, 1) 0%, rgba(249, 248, 243, 1) 100%);
}
@media (max-width: 768px) {
	body {
		font-size: 1.6rem;
	}
}
a {
	color: #de742d;
}
a:hover {
	color: #deae6a;
	text-decoration-color: transparent;
}
#wrapper {
	position: relative;
	width: 100%;
	margin: 0 auto;
}
/*Fixed Menu*/
.fixed-side-buttons {
	position: fixed;
	top: calc(50% + 55px);
	top: 180px;
	right: 20px;
	z-index: 998;
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.fixed-side-button {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 60px;
	min-height: 150px;
	background: #fff;
	border: 1px solid #e3a15d;
	border-radius: 999px;
	text-decoration: none;
	overflow: hidden;
}
.fixed-side-button:nth-of-type(1) {
	border: 1px solid #e5935c;
}
.fixed-side-button:nth-of-type(2) {
	border: 1px solid #e29f62;
}
.fixed-side-button:nth-of-type(3) {
	border: 1px solid #deae6a;
}
.fixed-side-button:nth-of-type(4) {
	border: 1px solid #dbb970;
}
.fixed-side-button::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 60px;
	border-radius: 999px;
	z-index: 0;
	transition: height 0.4s ease;
}
.fixed-side-button:nth-of-type(1):before {
	background: #e5935c;
}
.fixed-side-button:nth-of-type(2):before {
	background: #e29f62;
}
.fixed-side-button:nth-of-type(3):before {
	background: #deae6a;
}
.fixed-side-button:nth-of-type(4):before {
	background: #dbb970;
}
.fixed-side-button:hover::before {
	height: 100%;
}
.fixed-side-button .icon {
	position: relative;
	z-index: 1;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 2.4rem;
}
.fixed-side-button .text {
	position: relative;
	z-index: 1;
	writing-mode: vertical-rl;
	text-orientation: mixed;
	padding: 10px 0;
	color: #3e3a39;
	font-size: 0.882em;
	font-weight: 500;
	transition: color 0.3s ease;
}
.fixed-side-button:hover .text {
	color: #fff;
}
@media (min-width: 1281px) {
.fixed-side-buttons {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
	.fixed-side-button {
    width: 60px;
    min-height: clamp(100px, 14vh, 150px);
}
}
@media (max-width: 1280px) {
	.fixed-side-buttons {
		width: 100%;
		flex-direction: row;
		background-color: #fff;
		top: auto;
		bottom: 0;
		left: 0;
		padding: 6px;
		gap: 7px;
		border-radius: 24px 24px 0 0;
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
		transform: translateY(0%);
		z-index: 100;
	}
	.fixed-side-button {
		position: relative;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		width: 100%;
		min-height: 60px;
		background: #fff;
		border-radius: 0;
		border: 1px solid #e3a15d;
		text-decoration: none;
		overflow: hidden;
	}
	.fixed-side-button:first-of-type {
		background-color: #e5935c;
		border-radius: 20px 2px 2px 2px;
	}
	.fixed-side-button:first-of-type:focus {
		background-color: #fff;
		border: 1px solid #e5935c;
	}
	.fixed-side-button:nth-of-type(2) {
		width: 140%;
		background-color: #e29f62;
		border-radius: 2px;
	}
	.fixed-side-button:nth-of-type(2):focus {
		background-color: #fff;
		border: 1px solid #e29f62;
	}
	.fixed-side-button:nth-of-type(3) {
		background-color: #deae6a;
		border-radius: 2px 20px 2px 2px;
	}
	.fixed-side-button:nth-of-type(3):focus {
		background-color: #fff;
		border: 1px solid #deae6a;
	}
	.fixed-side-button:last-of-type {
		display: none;
	}
	.fixed-side-button .icon {
		display: none;
	}
	.fixed-side-button .text {
		color: #fff;
		font-size: 1em;
		writing-mode: horizontal-tb;
		white-space: nowrap;
	}
	.fixed-side-button:focus .text {
		color: #e5935c;
	}
	.fixed-side-button:focus::before {
		display: none;
	}
}
@media (min-width: 1281px) and (max-height: 980px) {
    .fixed-side-buttons {
        transform: translateY(-50%) scale(0.9);
        transform-origin: right center;
    }
}

@media (min-width: 1281px) and (max-height: 920px) {
    .fixed-side-buttons {
		top:57%;
		gap:10px;
        transform: translateY(-50%) scale(0.85);
    }
}
@media (min-width: 1281px) and (max-height: 740px) {
    .fixed-side-buttons {
		gap:6px;
        transform: translateY(-50%) scale(0.8);
    }
}
@media (max-width: 480px) {
	.fixed-side-button .text {
		font-size: 0.96em;
		letter-spacing: -0.1em;
	}
	.fixed-side-button:nth-of-type(2) {
			width: 180%;
		}
}
/*----------------------------------------------------
	3.0 - Header
----------------------------------------------------*/
header {
	display: flex;
	justify-content: space-between;
	position: relative;
	position: fixed;
	background: #fff;
	width: 100%;
	height: 110px;
	margin: 0 auto;
	padding: 0 2em;
	padding: 0 clamp(1em, 1.5vw, 2em);
	text-align: center;
	align-items: center;
	line-height: 0;
	/* overflow: hidden; */ /* Safari NG */
	z-index: 999;
}
header h1 img {
	width: clamp(230px, 18vw, 364px);
	height: auto;
	margin-right: 1em;
}
header .head_inner {
	width: 100%;
}
.header_icons {
	display: none;
}
@media (min-width: 1281px) and (max-height: 768px) {
    header {
	height: 90px;
}
}
@media (max-width: 1280px) {
	header {
		background: #fff;
		width: 100%;
		height: 68px;
		box-shadow: none;
		z-index: 2;
		position: fixed;
		padding-right: 160px;
		z-index: 1000;
	}
	header h1 {
		display: flex;
		align-items: center;
		height: 68px;
		/*padding-right: 60px;*/
	}
	header h1 img {
		transition: 0.3s;
	}
	.header_icons {
		display: flex;
		align-items: center;
		gap: 26px;
		position: absolute;
		top: 50%;
		right: 78px;
		transform: translateY(-50%);
		z-index: 10;
		line-height: 1;
	}
	.header_icon {
		display: block;
		background-repeat: no-repeat;
		background-position: center;
		background-size: contain;
	}
	.header_icon.access {
		background-image: url("../img/common/icon_access.png");
		width: 21px;
		height: 28px;
	}
	.header_icon.tel {
		background-image: url("../img/common/icon_tel.png");
		width: 24px;
		height: 24px;
	}
	.header_icon img {
		display: none;
	}
	.dropmenu > li.nav_acc,
	.dropmenu > li.nav_tel {
		display: none;
	}
}
@media (max-width: 480px) {
	header h1 img {
		width: clamp(190px, 20vw, 230px);
		width: 145%;
		height: auto;
		margin-right: 1em;
	}
}
/*----------------------------------------------------
	4.0 - Contents
----------------------------------------------------*/
#contents {
	width: 100%;
	margin: 0 auto;
	padding: 110px 0 0;
	line-height: 0;
	z-index: 0;
}
@media (min-width: 1281px) and (max-height: 768px) {
  #contents {
	padding: 90px 0 0;
}
}
@media (max-width: 1280px) {
	#contents {
		padding-top: 68px;
	}
}
.inner {
	max-width: 1280px;
	margin: 0 auto;
	text-align: left;
}
section:not([class]) .inner {
	padding: 0 40px;
}
@media (min-width: 1281px) and (max-width: 1380px) {
	section:not([class]) .inner {
		padding: 0 8% 0 40px;
	}
}
@media (max-width: 768px) {
	section:not([class]) .inner {
		padding: 0 30px;
	}
}
@media (max-width: 480px) {
	.inner {
		padding: 0;
	}
	section:not([class]) .inner {
		padding: 0 20px;
	}
}

/*----------------------------------------------------
	5.0 - Navi
----------------------------------------------------*/
/* Hamburger */
@media (min-width: 1281px) {
	.hamburger {
		display: none;
	}
}
@media (max-width: 1280px) {
	.hamburger {
		position: fixed;
		display: flex;
		justify-content: center;
		right: 0;
		top: 0;
		width: 68px;
		height: 68px;
		line-height: 1.75;
		text-align: center;
		cursor: pointer;
		z-index: 1;
	}
	.hamburger span {
		display: block;
		position: absolute;
		width: 26px;
		height: 2px;
		left: 22px;
		background: #3e3a39;
		-webkit-transition: 0.3s ease-in-out;
		-moz-transition: 0.3s ease-in-out;
		transition: 0.3s ease-in-out;
		border-radius: 999px;
	}
	.hamburger span:nth-child(1) {
		top: 22px;
	}
	.hamburger span:nth-child(2) {
		top: 32px;
	}
	.hamburger span:nth-child(3) {
		top: 42px;
	}
	.hamburger.active span:nth-child(1) {
		top: 32px;
		left: 22px;
		background: #3e3a39;
		-webkit-transform: rotate(-45deg);
		-moz-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	.hamburger.active span:nth-child(2),
	.hamburger.active span:nth-child(3) {
		top: 32px;
		left: 22px;
		background: #3e3a39;
		-webkit-transform: rotate(45deg);
		-moz-transform: rotate(45deg);
		transform: rotate(45deg);
	}
}

/* Menu */
@media (min-width: 1279px) {
	nav {
		display: flex;
		width: 100%;
		height: 110px;
		align-items: center;
		z-index: 1;
	}
	.dropmenu {
		display: flex;
		justify-content: flex-end;
		width: 100%;
		height: 100%;
		margin: 0 auto;
	}
	.dropmenu li {
		position: relative;
		display: flex;
		justify-content: center;
		align-items: center;
		padding: 0;
		font-size: 1.7rem;
		font-size: clamp(1.55rem, 1vw, 1.7rem);
		font-weight: 500;
		white-space: nowrap;
		line-height: 1;
		transition: all 0.3s;
		flex-shrink: 1;
	}
	.dropmenu li a {
		display: block;
		width: 100%;
		padding: 0 1.5em;
		padding: 0 clamp(0.4em, 1vw, 1.5em);
		color: #3e3a39;
		text-decoration: none;
		border-left: 1px solid #cacaca;
	}
	.dropmenu > li.on > a,
	.dropmenu > li > a:hover,
	.dropmenu > li:hover > a {
		color: #e5935c;
	}
	.dropmenu > li.on > ul.submenu li.on a {
		color: #e5935c;
	}
	/*access*/
	.dropmenu li.nav_acc a {
		position: relative;
		padding-left: 2em;
	}
	.dropmenu li.nav_acc a:before {
		content: "";
		position: absolute;
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 21' preserveAspectRatio='none'%3E%3Cpath fill='none' stroke='%23404040'  stroke-miterlimit='10' d='m.5,7.87C.5,3.8,3.86.5,8,.5s7.5,3.3,7.5,7.37c0,4.66-4.69,10.24-6.65,12.37-.46.5-1.23.5-1.69,0C5.19,18.11.5,12.52.5,7.87h0Zm7.5,2.63c1.38,0,2.5-1.12,2.5-2.5s-1.12-2.5-2.5-2.5-2.5,1.12-2.5,2.5,1.12,2.5,2.5,2.5Z'/%3E%3C/svg%3E");
		background-size: 100%;
		width: 16px;
		height: 21px;
		top: 50%;
		transform: translateY(-50%);
		left: 15px;
	}
	.dropmenu li.nav_acc a:hover:before,
	.dropmenu li.nav_acc.on a:before {
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 21' preserveAspectRatio='none'%3E%3Cpath fill='none' stroke='%23e5935c'  stroke-miterlimit='10' d='m.5,7.87C.5,3.8,3.86.5,8,.5s7.5,3.3,7.5,7.37c0,4.66-4.69,10.24-6.65,12.37-.46.5-1.23.5-1.69,0C5.19,18.11.5,12.52.5,7.87h0Zm7.5,2.63c1.38,0,2.5-1.12,2.5-2.5s-1.12-2.5-2.5-2.5-2.5,1.12-2.5,2.5,1.12,2.5,2.5,2.5Z'/%3E%3C/svg%3E");
	}
	/*tel*/
	.dropmenu li.nav_tel a {
		position: relative;
		padding-left: 2em;
	}
	.dropmenu li.nav_tel a:before {
		content: "";
		position: absolute;
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18' preserveAspectRatio='none'%3E%3Cpath fill='none' stroke='%23404040'  stroke-miterlimit='10' d='m5.82,1.33c-.26-.63-.95-.96-1.6-.78l-.18.05C1.89,1.18.06,3.26.59,5.79c1.23,5.81,5.8,10.38,11.62,11.62,2.53.54,4.61-1.3,5.19-3.44l.05-.18c.18-.65-.16-1.34-.78-1.6l-3.23-1.34c-.55-.23-1.18-.07-1.56.39l-1.28,1.57c-2.33-1.16-4.21-3.1-5.29-5.48l1.47-1.2c.46-.38.62-1.01.39-1.56l-1.35-3.23Z'/%3E%3C/svg%3E");
		background-size: 100%;
		width: 18px;
		height: 18px;
		top: 50%;
		transform: translateY(-50%);
		left: 15px;
	}
	.dropmenu li.nav_tel:hover a:before,
	.dropmenu li.nav_tel.on a:before {
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18' preserveAspectRatio='none'%3E%3Cpath fill='none' stroke='%23e5935c'  stroke-miterlimit='10' d='m5.82,1.33c-.26-.63-.95-.96-1.6-.78l-.18.05C1.89,1.18.06,3.26.59,5.79c1.23,5.81,5.8,10.38,11.62,11.62,2.53.54,4.61-1.3,5.19-3.44l.05-.18c.18-.65-.16-1.34-.78-1.6l-3.23-1.34c-.55-.23-1.18-.07-1.56.39l-1.28,1.57c-2.33-1.16-4.21-3.1-5.29-5.48l1.47-1.2c.46-.38.62-1.01.39-1.56l-1.35-3.23Z'/%3E%3C/svg%3E");
	}
	/**/
	.dropmenu > li.on > a:after,
	.dropmenu > li > a:hover:after,
	.dropmenu > li:hover > a:after {
		content: "";
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translateX(-50%) translateY(35px);
		width: 100%;
		height: 30px;
		background: #fff;
		border-radius: 0 0 50% 50%;
		z-index: 50;
	}
	.dropmenu li a img {
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		left: 0;
	}
	/*.dropmenu li ul {
		position: fixed;
		top: 110px;
		left: 50%;
		transform: translateX(-50%);
		width: 95vw;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: center;
	}*/
	.dropmenu li ul {
		position: fixed;
		top: 110px;
		left: 50%;
		transform: translateX(-50%);
		width: 95vw;
		/*background: rgba(254, 247, 233, 0.95);*/
		display: grid;
		justify-content: center;
	}
	.dropmenu li ul.pat01 {
		grid-template-columns: repeat(6, max-content);
	}
	.dropmenu li ul.pat02 {
		grid-template-columns: repeat(8, max-content);
	}
	.dropmenu li ul.pat03 {
		grid-template-columns: repeat(4, max-content);
	}
	.dropmenu li ul.pat04 {
		grid-template-columns: repeat(5, max-content);
	}
	.dropmenu li ul.submenu::before {
		content: "";
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		width: 100vw;
		height: 100%;
		background: rgba(254, 247, 233, 0.95);
		z-index: -1;
	}
	.dropmenu li ul li {
		background-color: transparent;
		height: 0;
		font-size: 1.6rem;
		transition-duration: 0.3s;
		overflow: hidden;
	}
	.dropmenu li ul li a {
		border: none;
	}
	.dropmenu li ul li:hover a {
		color: #e5935e;
	}
	.dropmenu li ul li.nowrap,
	.dropmenu li ul li ul li.nowrap {
		white-space: nowrap;
	}
	.dropmenu li ul li:before {
		content: "";
		position: absolute;
		background-color: #e5935c;
		width: 6px;
		height: 6px;
		top: 50%;
		transform: translateY(-50%);
		left: 0;
		border-radius: 999px;
	}
	.dropmenu li:hover > ul {
		padding: 3em;
		column-gap: 3em;
		row-gap: 2.8em;
	}
	.dropmenu li:hover > ul > li {
		overflow: visible;
		width: 20%;
		text-align: left;
	}
	.dropmenu li:hover > ul > li:hover {
		overflow: visible;
		width: 20%;
		text-align: left;
		cursor: pointer;
	}
	.dropmenu li ul li ul {
		top: 0;
		left: 100%;
	}
	.dropmenu li:last-child ul li ul {
		left: -100%;
		width: 100%;
	}
	.dropmenu > li:hover,
	.dropmenu > li:hover > a:after {
		cursor: default;
	}
}
@media (min-width: 1281px) and (max-height: 768px) {
      .dropmenu li ul {
        top: 90px;
    }
	.dropmenu > li.on > a:after, .dropmenu > li > a:hover:after, .dropmenu > li:hover > a:after {
        transform: translateX(-50%) translateY(25px);
    }
}
@media (max-width: 1280px) {
	nav {
		background: none;
		height: auto;
	}
	.dropmenu {
		position: fixed;
		top: 68px;
		left: 0;
		display: none;
		background-color: #fff;
		width: 100%;
		height: calc(100vh - 68px);
		padding: 1em;
		overflow-y: auto;
		z-index: 1001;
	}
	.dropmenu > li {
		position: relative;
		display: block;
		text-align: left;
		border-bottom: 1px solid #444;
		transition: 0.3s all;
	}
	.dropmenu > li > ul li {
		font-size: 0.96em;
		border-top: 1px solid #dddddd;
	}
	.dropmenu > li a {
		display: block;
		padding: 1.5em 0 1.5em 0.4em;
		text-decoration: none;
		color: #3e3a39;
		transition:
			color 0.3s,
			text-decoration 0.3s;
	}
	.dropmenu > li > ul li a {
		padding: 1.3em 0 1.3em 0.4em;
	}
	.dropmenu > li > ul li ul li a {
		padding: 1.5em 0 1.5em 0.4em;
	}
	.dropmenu ul,
	.dropmenu ul ul {
		display: none;
	}
	.dropmenu > li a:hover {
		color: #f18353;
	}
	.dropmenu li.on:after {
		display: none;
	}
	.dropmenu > li.off a:hover {
		color: #fff;
		cursor: default;
	}
}

/* arrow */
@media (max-width: 1280px) {
	ul.dropmenu div.level01,
	ul.dropmenu div.level02 {
		position: relative;
	}
	ul.dropmenu div.level01 a,
	ul.dropmenu div.level02 a {
		display: flex;
		align-items: center;
	}
	ul.dropmenu div.level01 a:after,
	ul.dropmenu div.level02 a:after {
		content: "";
		position: absolute;
		background-image: url("../img/common/icon_arrow03.svg");
		background-size: 24px 14px;
		right: 10px;
		/* top: 1.5em; */
		transition: all 0.2s ease-in-out;
		/* display: block; */
		width: 24px;
		height: 14px;
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
	}
	ul.dropmenu div.level01 a:hover:after,
	ul.dropmenu div.level02 a:hover:after {
	}
	ul.dropmenu div.level01.open a:after,
	ul.dropmenu div.level02.openAcd a:after {
		-webkit-transform: rotate(-90deg);
		transform: rotate(-90deg);
		/* top: 1.75em; */
	}
}

/*----------------------------------------------------
	6.0 - Main
----------------------------------------------------*/
#contents h1 {
	position: relative;
	background-image: url("../img/common/bg_h1.webp");
	background-position: center top;
	background-size: cover;
	background-repeat: no-repeat;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 220px;
	margin: 0 auto;
	color: #fff;
	font-size: 2.648em;
	font-size: 2.448em;
	font-weight: 400;
	line-height: 1.1;
	text-align: center;
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
	clip-path: none;
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M0,0 H100 V85 C100,85 78,100 50,100 C22,100 0,85 0,85 Z'/%3E%3C/svg%3E");

	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M0,0 H100 V85 C100,85 78,100 50,100 C22,100 0,85 0,85 Z'/%3E%3C/svg%3E");
	-webkit-mask-size: 100% 100%;
	mask-size: 100% 100%;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
}
section {
	padding: 4em 0;
	line-height: 1.75;
	text-align: left;
}
body.contents section {
	padding: 4em 0 12%;
}
@media (max-width: 480px) {
	section {
		padding: 3em 20px;
	}
}
section:first-child {
	padding-top: 0;
}
section h2 {
	position: relative;
	margin: 3em auto 0.5em;
	padding: 0em 0 0.3em;
	font-size: 2.117em;
	font-weight: 500;
	line-height: 1.25;
	border-bottom: 3px dotted #e5935c;
}
section h2:first-child {
	margin-top: 0;
}
body.index section h2 {
	position: relative;
	margin-bottom: 0;
	padding: 0.5em 0 0.4em;
	font-size: 2.117em;
	font-weight: 500;
	white-space: nowrap;
	line-height: 1.25;
	border-bottom: none;
}
body.index section h2 span {
	border-top: none;
}
body.index section h2 span.h2_en {
	display: block;
	margin-bottom: 0.5em;
	color: #e5935c;
	font-size: 0.38em;
	font-weight: 400;
}
section h3 {
	position: relative;
	background: #e5935c;
	margin: 2em auto 0.75em;
	padding: 0.3em 1em;
	color: #fff;
	font-size: 1.625em;
	font-weight: 500;
	border-radius: 999px;
	line-height: 1.15;
}
body.index section h3 {
	border-radius: 0;
	background-color: transparent !important;
	border: none !important;
}
#contents section h3 {
	border: 0.06em solid #dbb970;
	background-color: #fefcf7;
	color: inherit;
}
section h2 + h3 {
	margin-top: 0;
}
section h4 {
	position: relative;
	margin: 1.5em auto 0.75em;
	padding-bottom: 0.15em;
	color: #e5935c;
	font-size: 1.5em;
	font-weight: 500;
	line-height: 1.15;
	border-bottom: 2px solid #e5935c;
}
section h3 + h4 {
	margin-top: 0;
}
section h5 {
	position: relative;
	margin: 1.5em auto 0.5em;
	position: relative;
	font-size: 1.25em;
	font-weight: 500;
	line-height: 1.15;
}
section h4 + h5 {
	margin-top: 0;
}
/*----------------------------------------------------
	7.0 - Footer
----------------------------------------------------*/
footer {
	position: relative;
	width: 100%;
	margin: 0 auto;
	text-align: center;
}
@media (max-width: 1280px) {
	footer {
		padding-bottom: 55px;
	}
}
footer h3 {
	font-size: 1.625em;
}
footer .foot_secretariat {
	display: block;
	width: 100%;
	margin: 0 auto;
	text-align: center;
	line-height: 1.5;
}
.foot_container {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 40px;
}
@media (max-width: 1280px) {
	.foot_container {
		width: 94%;
		padding: 0;
	}
}
@media (max-width: 480px) {
	.foot_container {
		width: 94%;
		padding: 0;
	}
}
/*foot_inner01*/
footer div.foot_inner01 {
	background: linear-gradient(45deg, #fbf1db 0%, #f9f7f2 100%);
	padding: 5em 0 2em;
}
@media (max-width: 768px) {
	footer div.foot_inner01 {
		padding: 5em 0 5em;
	}
}
@media (max-width: 480px) {
	footer div.foot_inner01 {
		padding: 5em 0 3em;
	}
}
footer div.foot_inner01 ul.foot_contact {
	display: flex;
	justify-content: space-around;
	align-items: center;
	margin: 1.3em auto 2.5em;
	text-align: left;
}
@media (max-width: 768px) {
	footer div.foot_inner01 ul.foot_contact {
		justify-content: center;
		flex-direction: column;
		row-gap: 4em;
		margin-bottom: 5em;
	}
}
footer div.foot_inner01 ul.foot_contact li {
	width: 50%;
	margin: 0 auto;
}
footer div.foot_inner01 ul.foot_contact li.scr01 {
	border-right: 1px solid #f7ddad;
}
@media (max-width: 768px) {
	footer div.foot_inner01 ul.foot_contact li {
		width: 100%;
	}
	footer div.foot_inner01 ul.foot_contact li.scr01 {
		border-right: none;
		border-bottom: 1px solid #f7ddad;
		padding-bottom: 3em;
	}
}
footer div.foot_inner01 ul.foot_contact h3 {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-bottom: 0.25em;
	font-size: 1.882em;
	font-weight: 500;
	text-align: center;
	z-index: 1;
}
footer div.foot_inner01 ul.foot_contact li.scr01 h3:before {
	content: "RESERVATION";
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	color: #f7ddad;
	font-size: 1.5em;
	font-weight: 400;
	z-index: -1;
}
footer div.foot_inner01 ul.foot_contact li.scr02 h3:before {
	content: "CONTACT";
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	color: #f7ddad;
	font-size: 1.5em;
	font-weight: 400;
	z-index: -1;
}
footer div.foot_inner01 ul.foot_contact h3 span {
	font-size: 0.53em;
}
footer div.foot_inner01 ul.foot_contact p {
	text-align: center;
	padding-bottom: 1em;
}
/*bannrer*/
.foot_bnr {
	display: flex;
	flex-wrap: wrap;
	column-gap: 1em;
	row-gap: 1em;
}
.foot_bnr li {
	width: calc((100% - 3em) / 4);
}
.foot_bnr li a img {
	width: 100%;
	border: 2px solid #fff;
	border-radius: 6px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
	vertical-align: middle;
}
.foot_bnr li a img:hover {
	opacity: 0.8;
	box-shadow: none;
}
@media (max-width: 768px) {
	.foot_bnr li {
		width: calc((100% - 1em) / 2);
	}
	footer div.foot_inner01 ul.foot_bnr li {
		flex-direction: row;
		width: calc((100% - 1em) / 2);
	}
}
/*foot_inner02*/
footer div.foot_inner02 {
	background: #fff;
	padding: 6em 0 2em;
	border-top: 1px solid;
	border-image: linear-gradient(to right, rgba(213, 186, 122, 1) 0%, rgba(197, 124, 96, 1) 100%) 1;
}
footer div.foot_inner02 ul {
	width: auto;
	display: flex;
	justify-content: space-around;
	background-color: #fff;
	margin: 0 auto;
	text-align: left;
}
@media (max-width: 999px) {
	footer div.foot_inner02 ul {
		justify-content: center;
		flex-direction: column;
		row-gap: 2em;
	}
}
footer div.foot_inner02 ul li {
	width: 50%;
	margin: 0 auto;
}
@media (max-width: 999px) {
	footer div.foot_inner02 ul li {
		width: 100%;
		margin-left: 0;
	}
	footer div.foot_inner02 ul li.scr01 {
		width: 100%;
		padding: 0 5px;
	}
}
footer div.foot_inner02 div > ul h3 img {
	max-width: 406px;
}
footer div.foot_inner02 div > ul p {
	font-size: 0.94em;
}
footer div.foot_inner02 div > ul p.access {
	margin: 0.8em 0;
	font-size: 0.882em;
	line-height: 2;
}
footer div.foot_inner02 div > ul p.access i {
	color: #cacaca;
}
/*table*/
.foot_table {
	width: 80%;
	margin-top: 2em;
}
.foot_table th {
	padding: 0.5em 0;
	text-align: center;
	font-size: 0.882em;
	font-weight: 500;
	border-top: 1px solid #e1e1e1;
	border-bottom: 1px solid #e1e1e1;
}
.foot_table td {
	padding: 0.5em 0;
	text-align: center;
	border-bottom: 1px solid #e1e1e1;
}
.foot_table .dash {
	margin-bottom: 0.35em;
}
@media (max-width: 999px) {
	.foot_table {
		width: 58vw;
	}
}
@media (max-width: 768px) {
	.foot_table {
		width: 60vw;
	}
}
@media (max-width: 480px) {
	.foot_table {
		width: 100%;
	}
}
/*footer menu*/

ul.scr03_over {
	display: flex;
	position: relative;
	width: 100%;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: nowrap;
	padding: 1em 0;
	margin: 3em auto 0 !important;
	border-top: 1px solid #e4e4e4;
}

ul.scr03_over > li {
	position: static;
	flex: 0 0 auto;
	width: auto !important;
	white-space: nowrap;
	font-size: 0.882em;
	font-weight: 500;
	z-index: 1;
}
ul.scr03_over > li:first-of-type {
	margin-left: 0;
}
ul.scr03_over > li:last-of-type {
	margin-right: 0;
}
ul.scr03_over > li.is-open {
	z-index: 20;
}

ul.scr03_over > li > a {
	display: block;
	position: relative;
	padding-left: 1.5em;
	text-decoration: none;
}
ul.scr03_over > li > a:before {
	content: "";
	position: absolute;
	background-image: url("../img/common/icon_arrow.svg");
	background-repeat: no-repeat;
	background-size: contain;
	width: 15px;
	height: 15px;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
ul.scr03_over > li > ul.submenu {
	display: none;
}
ul.scr03_over > li:has(> ul.submenu) > a {
	cursor: pointer;
}

ul.scr03_over_submenu {
	display: none;
	width: 100%;
	margin: 0 auto;
	border-radius: 8px;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start !important;
	align-items: flex-start;
	column-gap: 6em;
	row-gap: 0.8em;
	line-height: 1;
}
ul.scr03_over_submenu.is-open {
	padding: 1.2em 3em;
	border: 1px solid #e4e4e4;
}
ul.scr03_over_submenu > li {
	width: calc((100% - 8em) / 5) !important;
	position: relative;
	padding-left: 0.1em;
	margin: 0 !important;
	text-align: left;
	font-size: 0.88em;
	font-weight: 400;
}
ul.scr03_over_submenu > li:before {
	content: "";
	position: absolute;
	background-color: #e5935c;
	width: 6px;
	height: 6px;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	border-radius: 999px;
}
ul.scr03_over_submenu > li > a {
	display: block;
	padding: 0.3em 1em;
	text-decoration: none;
	white-space: nowrap;
}
@media (min-width: 1281px) and (max-width: 1320px){
	ul.scr03_over {
		padding-right: 2em;
}
	ul.scr03_over_submenu.is-open {
		margin-right: 2em;
}
}
@media (max-width: 999px) {
	ul.scr03_over {
		width: 80% !important;
		border-top: none;
		margin: 1em auto 0 !important;
		row-gap: 0 !important;
	}
}
@media (max-width: 768px) {
	ul.scr03_over > li {
		font-size: 0.93em;
	}
}
/**/
.scr03 div.scr03_under {
	display: flex;
	width: 100%;
	justify-content: space-between;
	align-items: flex-end;
	margin: 3em auto 0;
}
.scr03 div.scr03_under div {
	width: 50%;
	text-align: left;
}
.scr03 div.scr03_under div div:first-of-type {
	margin-bottom: 0.6em;
}
.scr03 div.scr03_under ul {
	display: flex;
	width: 40%;
	justify-content: flex-end;
	column-gap: 1.5em;
	margin-right: 0;
}
.scr03 div.scr03_under li {
	width: auto;
	font-size: 0.823em;
}
.scr03 div.scr03_under li a {
	text-decoration: none;
}
@media (min-width: 1281px) and (max-width: 1340px){
	.scr03 div.scr03_under ul {
		padding-right: 3em;
}
}
@media (min-width: 1000px) {
	ul.scr03_over > li.under_sp {
		display: none;
	}
}
@media (max-width: 999px) {
	.scr03 div.scr03_under ul {
		display: none;
	}
	ul.scr03_over {
		display: grid !important;
		grid-template-columns: 1fr 1fr;
		grid-auto-flow: column;
		grid-template-rows: repeat(6, auto);
		column-gap: 4em;
		align-items: start;
	}
	ul.scr03_over > li {
		width: 100% !important;
		margin: 0 !important;
	}
	ul.scr03_over > li > a {
		display: block;
		padding: 0.5em 1.5em 0.5em 1.5em;
	}
	ul.scr03_over > li > ul.submenu {
		display: none;
		padding: 0.5em 0 1em;
	}
	ul.scr03_over > li > ul.submenu > li {
		position: relative;
		padding-left: 1em;
		margin-bottom: 0.8em;
		font-size: 0.9em;
	}
	ul.scr03_over > li > ul.submenu > li:before {
		content: "";
		position: absolute;
		width: 6px;
		height: 6px;
		background: #e5935c;
		border-radius: 50%;
		left: 0;
		top: 0.65em;
	}
	ul.scr03_over > li > ul.submenu > li > a {
		display: block;
		padding: 0;
		white-space: normal;
		text-decoration: none;
	}
	.scr03_over_submenu {
		display: none !important;
	}
	ul.scr03_over > li.under_sp {
		font-weight: 400;
	}
	ul.scr03_over > li.under_sp > a:before {
		content: none;
	}
}
@media (max-width: 768px) {
	ul.scr03_over > li.under_sp {
		font-size: 0.8754em;
	}
}
@media (max-width: 480px) {
	ul.scr03_over {
		column-gap: 1em;
	}
}
/**/
footer .foot_insta i {
	color: #e5935e;
	font-size: 1.95em;
	text-align: left;
}
footer .copyright {
	width: 100%;
	font-size: 0.764em;
	text-align: center;
	white-space: nowrap;
}
footer a {
	color: #404040;
}
footer a:hover {
	color: #e5935e;
}
footer a.tel {
	color: inherit;
	text-decoration: none;
}
@media (max-width: 768px) {
	footer .foot_insta i {
		font-size: 2.071em;
	}
}
/*----------------------------------------------------
	8.0 - Single Page
----------------------------------------------------*/
/*  Index
----------------------------------------------------*/
.index_main {
	position: relative;
	width: 100%;
	margin: 0 auto;
	line-height: 0;
	text-align: center;
	overflow: hidden;
	z-index: 0;
}
.index_main img {
	width: 100%;
	max-width: 100%;
	height: auto;
}
.main_visual {
	position: relative;
	width: 100%;
	min-height: 840px;
	display: grid;
	place-items: center;
	background: #ddd;
	overflow: hidden;
	clip-path: none;
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M0,0 H100 V85 C100,85 78,100 50,100 C22,100 0,85 0,85 Z'/%3E%3C/svg%3E");

	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M0,0 H100 V85 C100,85 78,100 50,100 C22,100 0,85 0,85 Z'/%3E%3C/svg%3E");
	-webkit-mask-size: 100% 100%;
	mask-size: 100% 100%;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
}
@media (max-width: 1280px) {
	.main_visual {
		height: 68vh;
		min-height: 680px;
	}
}
@media (max-width: 768px) {
	.main_visual {
		height: auto;
		min-height: 560px;
		-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M0,0 H100 V90 C100,90 78,100 50,100 C22,100 0,90 0,90 Z'/%3E%3C/svg%3E");

		mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M0,0 H100 V90 C100,90 78,100 50,100 C22,100 0,90 0,90 Z'/%3E%3C/svg%3E");
	}
}
@media (max-width: 480px) {
	.main_visual {
		min-height: 450px;
	}
}
.main_visual_img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 5s ease;
}

.main_visual_img.is-active {
	opacity: 1;
	position: absolute;
}

.main_visual_img img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	clip-path: none;
}
.tagline {
	position: absolute;
	top: 7vw;
	left: 3.8em;
}
.tagline img {
	width: 45vw;
	max-width: 527px;
	filter: drop-shadow(0px 0px 9px rgb(0 0 0 / 0.46));
}
@media (max-width: 999px) {
	.tagline {
		top: 5vw;
		left: 2.8em;
	}
	.tagline img {
		width: 55vw;
	}
}
@media (max-width: 768px) {
	.tagline {
		left: 5.8vw;
	}
	.tagline img {
		width: 57vw;
	}
}
@media (max-width: 480px) {
	.tagline {
		top: 5vw;
		left: 1.5em;
	}
	.tagline img {
		width: 80vw;
	}
}
.opening {
	position: absolute;
	bottom: 7vw;
	left: 1em;
}
.opening img {
	width: 45vw;
	max-width: 282px;
}
@media (max-width: 1280px) {
	.opening {
		bottom: 35%;
	}
}
@media (max-width: 480px) {
	.opening {
		bottom: 40%;
		left: 0;
	}
	.opening img {
		width: 52vw;
		max-width: 330px;
	}
}
.hours {
	position: absolute;
	bottom: 6vw;
	right: 10em;
	background-color: #fff;
	padding: 24px 16px 10px;
	border-radius: 4px;
	box-shadow: 0 0 10px rgba(198, 198, 198, 0.2);
}
.hours table {
	width: 100%;
	border-collapse: collapse;
	text-align: center;
}
.hours table th {
	padding: 10px clamp(2px, 1vw, 10px) 20px;
	text-align: center;
	font-weight: 500;
	border-bottom: 1px solid #e1e1e1;
}
.hours th:first-child {
	padding: 10px 0 25px;
	white-space: nowrap;
}
.hours th:last-child {
	padding-left: 0;
}
.hours table td {
	padding: 20px clamp(2px, 1vw, 10px);
	text-align: center;
	vertical-align: middle;
	border-bottom: 1px solid #e1e1e1;
}
.hours table tr:nth-of-type(3) td {
	border-bottom: none;
}
.hours td:first-child {
	padding: 20px 0;
	white-space: nowrap;
}
.hours td:last-child {
	padding-left: 0;
}
.hours p {
	margin-left: 0.5em;
	text-align: left;
	font-size: 0.812em;
	line-height: 1.5;
}
@media (max-width: 1280px) {
	.hours {
		position: static;
		width: 50%;
		min-width: 640px;
		margin: 3em auto 0;
	}
}
@media (max-width: 768px) {
	.hours {
		position: static;
		width: 92%;
		min-width: auto;
		margin: 2em auto 0;
	}
}
@media (max-width: 480px) {
	.hours {
		padding: 24px 14px 10px;
	}
	.hours p {
		margin-left: 0;
	}
	.hours table th {
		font-size: 1.5rem;
	}
	.hours th:first-child {
		width: 30%;
	}
	.hours td:first-child {
		font-size: 1.5rem;
	}
}
/*index section*/
section.index_topics {
	padding: 5em 0 6em;
}
@media (max-width: 999px) {
	section.index_topics {
		padding: 0 0 0.5em;
	}
}
section.index_topics .inner {
	display: flex;
	position: relative;
	column-gap: 2em;
	background: #fff;
	padding: 40px 2em 40px;
	border-radius: 20px;
	box-shadow: 0 0 20px rgba(198, 198, 198, 0.2);
	width: 92%;
}

@media (max-width: 1280px) {
	section.index_topics .inner {
		/*width: 96%;*/
	}
}
@media (max-width: 999px) {
	section.index_topics .inner {
		width: 94%;
		flex-direction: column;
		background: transparent;
		padding: 40px 0;
		box-shadow: none;
	}
	section.index_topics .inner h2 {
		margin: 0;
	}
}
@media (max-width: 480px) {
	section.index_topics .inner {
		width: 90%;
	}
	section.index_topics .inner h2 {
		margin: 0;
		margin-bottom: 0.1em;
	}
}
/**/
.index_topics_loop {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100vw;
	overflow: hidden;
	transform: translateX(-50%) translateY(-50%);
	pointer-events: none;
	z-index: -1;
}
.index_topics_loop_text {
	display: inline-block;
	white-space: nowrap;
	color: rgba(219, 185, 112, 0.1);
	font-size: 8.58em;
	font-weight: 600;
	letter-spacing: 0.18em;
	animation: loopText 100s linear infinite;
}
@media (max-width: 999px) {
	.index_topics_loop {
		display: none;
	}
}
/**/
.trouble_shadow {
	position: relative;
	/*filter: drop-shadow(0 20px 8px rgba(0, 0, 0, 0.1));*/
}
.trouble_shadow:after {
	content: "";
	position: absolute;
	background-image: url("../img/contents/index/img_smile.png");
	background-size: 100%;
	width: 68px;
	height: 46px;
	top: -1vw;
	left: 50%;
	transform: translateX(-50%);
}
@media (max-width: 480px) {
	.trouble_shadow:after {
		top: -5vw;
	}
}
.tab_content {
	display: none;
}
.tab_content.show {
	display: block;
}
section.index_trouble {
	position: relative;
	padding: 13em 0 8em;
	clip-path: none;
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M0,0 H100 V85 C100,85 78,100 50,100 C22,100 0,85 0,85 Z'/%3E%3C/svg%3E");

	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M0,0 H100 V85 C100,85 78,100 50,100 C22,100 0,85 0,85 Z'/%3E%3C/svg%3E");
	-webkit-mask-size: 100% 100%;
	mask-size: 100% 100%;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
}
section.index_trouble:before {
	content: "";
	position: absolute;
	background-image: url("../img/contents/index/bg_trouble01.png");
	background-size: 100%;
	width: 650px;
	height: 531px;
	top: 5vw;
	right: 0;
}
section.index_trouble:after {
	content: "";
	position: absolute;
	background-image: url("../img/contents/index/bg_trouble02.png");
	background-size: 100%;
	width: 785px;
	height: 516px;
	bottom: 0;
	left: 0;
}
@media (max-width: 1280px) {
	section.index_trouble:before,
	section.index_trouble:after {
		content: none;
	}
}
section.index_trouble .inner {
	width: 92%;
	position: relative;
	z-index: 1;
}
@media (max-width: 999px) {
	section.index_trouble {
		-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M0,0 H100 V92 C100,92 78,100 50,100 C22,100 0,92 0,92 Z'/%3E%3C/svg%3E");

		mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M0,0 H100 V92 C100,92 78,100 50,100 C22,100 0,92 0,92 Z'/%3E%3C/svg%3E");
	}
}
@media (max-width: 768px) {
	section.index_trouble {
		padding: 8em 0 6em;
		-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M0,0 H100 V96 C100,96 78,100 50,100 C22,100 0,96 0,96 Z'/%3E%3C/svg%3E");

		mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M0,0 H100 V96 C100,96 78,100 50,100 C22,100 0,96 0,96 Z'/%3E%3C/svg%3E");
	}
	section.index_trouble .inner {
		width: 96%;
	}
}
body.index section.index_trouble h2 {
	font-size: clamp(1.75em, 3.75vw, 2.117em);
	line-height: 1.35;
	white-space: normal;
	z-index: 1;
}
@media (max-width: 480px) {
	body.index section.index_trouble h2 {
		padding-bottom: 1.4em;
	}
}
body.index section.index_trouble h2 span.og {
	display: inline;
	color: #e5935c;
	font-size: 1.11em;
	font-weight: 500;
}
section.index_trouble h2:before {
	content: "TROUBLE";
	position: absolute;
	width: 100%;
	height: 100%;
	color: #fcf2eb;
	font-size: 2.6em;
	font-weight: 700;
	top: -70%;
	left: 50%;
	transform: translateX(-50%);
	z-index: -1;
}
@media (max-width: 768px) {
	section.index_trouble h2:before {
		font-size: 2.6em;
		font-weight: 700;
		top: -40%;
		left: 50%;
		transform: translateX(-50%);
		z-index: -1;
	}
}
@media (max-width: 480px) {
	section.index_trouble h2:before {
		top: -40%;
	}
}
/*部位別*/
ul.tro_part {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	row-gap: 2em;
	column-gap: 1em;
	padding: 3em 0;
}
ul.tro_part li {
	width: calc((100% - 3em) / 4);
	position: relative;
	text-align: center;
}
ul.tro_part a {
	width: 100%;
	height: 100%;
	text-decoration: none;
	color: #404040;
}
ul.tro_part a img {
	width: 100%;
	max-width: 230px;
	background-color: #fff;
	border: 4px solid #e5935c;
	border-radius: 50%;
	vertical-align: middle;
	transition: 0.3s;
}
ul.tro_part a img:hover {
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}
ul.tro_part p {
	position: absolute;
	bottom: 25px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 1.29em;
	font-weight: 500;
	line-height: 1.2;
}
ul.tro_part span {
	font-size: 0.5em;
	font-weight: 400;
}
@media (max-width: 999px) {
	ul.tro_part li {
		width: calc((100% - 2em) / 3);
	}
}
@media (max-width: 768px) {
	ul.tro_part li {
		width: calc((100% - 1em) / 2);
	}
}
@media (max-width: 480px) {
	ul.tro_part {
		padding: 2.5em 0.6em;
		column-gap: 1em;
	}
	ul.tro_part li {
		width: calc((100% - 1em) / 2);
	}
	ul.tro_part a img {
		max-width: 180px;
	}
	ul.tro_part p {
		bottom: 15px;
	}
}
/*疾患別*/
.tro_disease {
	display: flex;
	padding: 3em 0;
}
.tro_disease ul {
	width: 50%;
}
.tro_disease ul li {
	display: flex;
	column-gap: 1em;
	margin-bottom: 1.5em;
}
.tro_disease ul li h3 {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 30%;
	height: auto;
	margin: 0;
	background: #f0f0f0 !important;
	color: #404040;
	font-size: 1.17em;
}
.tro_disease ul li ul.list_disc {
	font-size: 1.41em;
	font-weight: 500;
}
.tro_disease ul li ul.list_disc li {
	margin-bottom: 0;
}
.tro_disease ul li ul.list_disc li a {
	text-decoration: none;
	color: #404040;
}
.tro_disease ul li ul.list_disc li a:hover {
	text-decoration: none;
	color: #e5935c;
}
@media (max-width: 999px) {
	.tro_disease {
		flex-direction: column;
		padding: 2.5em 0;
	}
	.tro_disease ul {
		width: 100%;
	}
	.tro_disease ul li {
		margin-bottom: 1em;
		column-gap: 0.5em;
	}
	.tro_disease ul li h3 {
		width: 40%;
	}
	.tro_disease ul li ul.list_disc {
		font-size: 1.2em;
	}
}
@media (max-width: 480px) {
	.tro_disease ul li h3 {
		font-size: 1em;
	}
	.tro_disease ul li ul.list_disc {
		font-size: 1.15em;
	}
}
/**/
section.index_attention {
	position: relative;
	padding: 7em 0 9em;
}
section.index_attention:after {
	content: "";
	position: absolute;
	background-image: url("../img/contents/index/bg_attention.webp");
	background-size: cover;
	top: -14em;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	height: 100vh;
	z-index: -1;
}
@media (max-width: 480px) {
	section.index_attention {
		padding: 7em 0 7em;
	}
	section.index_attention:after {
		top: -4em;
	}
}
section.index_attention .inner {
	max-width: 1400px;
	width: 92%;
}
@media (max-width: 480px) {
	section.index_attention .inner {
		width: 92%;
	}
}
section.index_attention .box_attention_index {
	position: relative;
	background: #fff;
	width: 100%;
	padding: 2em 7em;
	line-height: 1.9;
	border-radius: 999px;
	border: 8px solid #dbb970;
	outline: 3px solid rgba(255, 255, 255, 0.7);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.box_attention_index a {
  position: relative;
  z-index: 2;
  pointer-events: auto;
}
.box_attention_index a[href^="tel:"]  {
	color: #de742d;
	font-weight: 700;
	text-decoration: underline;
}
section.index_attention .box_attention_index:after {
	content: "";
	position: absolute;
	top: -8px;
	bottom: -8px;
	right: -8px;
	width: 50%;
	border: 8px solid #e5935c;
	border-left: none;
	border-radius: 0 999px 999px 0;
}
.box_attention_index .border-round {
	position: absolute;
	left: 50%;
	width: 16px;
	height: 8px;
	background: #e5935c;
	transform: translateX(-50%);
	z-index: 3;
	pointer-events: none;
}
.box_attention_index .border-round.top {
	top: -8px;
	border-radius: 8px 0 0 8px;
}
.box_attention_index .border-round.bottom {
	bottom: -8px;
	border-radius: 8px 0 0 8px;
}
@media (max-width: 999px) {
	section.index_attention .box_attention_index {
		padding: 8em 7em;
	}
}
@media (max-width: 768px) {
	section.index_attention .box_attention_index {
		padding: 8em 5em;
	}
	section.index_attention .box_attention_index:after {
		content: "";
		position: absolute;
		top: auto;
		left: -8px;
		right: -8px;
		width: auto;
		height: 50%;
		border: 8px solid #e5935c;
		border-top: none;
		border-radius: 0 0 999px 999px;
	}
	.box_attention_index .border-round {
		position: absolute;
		top: 50%;
		width: 8px;
		height: 16px;
		background: #e5935c;
		transform: translateX(-50%);
		z-index: 3;
		pointer-events: none;
	}
	.box_attention_index .border-round.top {
		top: 50%;
		left: auto;
		right: -12px;
		border-radius: 8px 8px 0 0;
	}
	.box_attention_index .border-round.bottom {
		left: -4px;
		bottom: auto;
		border-radius: 8px 8px 0 0;
	}
}
@media (max-width: 480px) {
	section.index_attention .box_attention_index {
		padding: 8em 1.3em;
	}
}
/**/
section.index_information {
	width: 92%;
	background-color: rgba(255, 255, 255, 0.8);
	margin: 0 auto;
	border: 2px solid #fff;
	border-radius: 32px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
section.index_information .inner {
	max-width: 1400px;
}
section.index_information ul {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-auto-rows: 1fr;
	gap: 1.5em 2em;
	align-items: stretch;
	padding: 2.5em 2em 1em;
}
@media (max-width: 480px) {
	section.index_information {
		width: 100%;
	}
	section.index_information ul {
		padding: 2.5em 0em 1em;
	}
}
section.index_information ul li {
	display: flex;
	width: auto;
	background: linear-gradient(45deg, rgba(229, 147, 92, 1) 0%, rgba(224, 166, 102, 1) 100%);
	border-radius: 8px;
}

section.index_information ul li a {
	display: flex;
	width: 100%;
	height: 100%;
	position: relative;
	padding: 7px;
	cursor: pointer;
	overflow: hidden;
	text-decoration: none;
	z-index: 1;
}
@media (max-width: 1280px) {
	section.index_information ul {
		grid-template-columns: 1fr;
	}

	section.index_information ul li {
		width: auto;
	}
}
section.index_information ul li a::before {
	content: "";
	position: absolute;
	top: 7px;
	left: 7px;
	width: 31%;
	height: calc(100% - 14px);
	background: rgba(255, 255, 255, 1);
	border-radius: 4px 999px 999px 4px;
	transition: width 0.4s ease;
	z-index: -1;
}
@media (max-width: 768px) {
	section.index_information ul {
		grid-auto-rows: auto;
	}
	section.index_information ul li a {
		flex-direction: column;
		justify-content: space-between;
		gap: 1em;
	}
	section.index_information ul li a::before {
		content: "";
		position: absolute;
		top: 7px;
		left: 50%;
		transform: translateX(-50%);
		width: calc(100% - 28px);
		max-width: 320px;
		height: 175px;
		background: rgba(255, 255, 255, 1);
		border-radius: 4px 4px 999px 999px;
		transition: width 0.4s ease;
		z-index: -1;
	}
}
@media (max-width: 480px) {
	section.index_information ul li a::before {
		height: 150px;
		max-width: 220px;
	}
}
section.index_information ul li a:hover::before {
	width: calc(100% - 14px);
	border-radius: 4px;
}
section.index_information ul li a div.img {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 32%;
	border-radius: 4px 999px 999px 4px;
}
section.index_information ul li a div.img img {
	margin-right: 1em;
	transition: 0.3s;
}
section.index_information ul li a:hover div.img img {
	margin-right: 0;
}
section.index_information ul li a div.txt {
	width: 68%;
	padding: 1em 2em 1em 1em;
}
@media (max-width: 768px) {
	section.index_information ul li a div.txt {
		width: 100%;
		padding: 1em;
	}
	section.index_information ul li a div.img {
		width: 100%;
		height: 150px;
	}
	section.index_information ul li a div.img img {
		margin-top: 1.5em;
		margin-right: 0;
	}
	section.index_information ul li a:hover div.img img {
		margin-top: 3em;
	}
	section.index_information ul li a:hover::before {
		width: calc(100% - 14px);
		max-width: 100%;
		height: calc(100% - 14px);
		border-radius: 4px;
	}
}
@media (max-width: 480px) {
	section.index_information ul li a div.txt {
		padding: 0 0.8em 0.8em;
	}
	section.index_information ul li a div.img img {
		margin-top: 0;
		padding-bottom: 1em;
	}
	section.index_information ul li:nth-of-type(1) a div.img img {
		width: 83px;
	}
	section.index_information ul li:nth-of-type(2) a div.img img {
		width: 105px;
	}
	section.index_information ul li:nth-of-type(3) a div.img img {
		width: 98px;
	}
	section.index_information ul li:nth-of-type(4) a div.img img {
		width: 118px;
	}
	section.index_information ul li:nth-of-type(5) a div.img img {
		width: 96px;
	}
	section.index_information ul li:nth-of-type(6) a div.img img {
		width: 100px;
	}
}
section.index_information ul li a h3 {
	position: relative;
	background: none;
	margin: 0 auto 0.3em;
	padding-left: 0;
	color: #fff !important;
	font-size: 1.647em;
	border-bottom: 1px solid #fff !important;
}

section.index_information ul li a:hover h3 {
	color: #404040 !important;
	border-bottom: 1px solid #e5935c !important;
}
section.index_information ul li a h3:after {
	content: "";
	position: absolute;
	background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 29 21.7'%3E%3Cpath fill='%23fff' d='m28.53,9.59s-.1-.08-.15-.12L19.46.53c-.71-.71-1.86-.71-2.57,0-.71.71-.71,1.86,0,2.57l5.79,5.8H1.82c-1,0-1.82.81-1.82,1.82s.81,1.82,1.82,1.82h21.19l-6.13,6.11c-.71.71-.71,1.86,0,2.57.71.71,1.86.71,2.57,0l8.94-8.92s.09-.07.13-.11c.36-.36.53-.82.53-1.29,0-.47-.17-.95-.53-1.31Z'/%3E%3C/svg%3E") 50% 50%/100% 100% no-repeat;
	width: 29px;
	height: 21px;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	transition: opacity 0.3s ease;
}
section.index_information ul li a:hover h3:after {
	background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 29 21.7'%3E%3Cpath fill='%23e5935c' d='m28.53,9.59s-.1-.08-.15-.12L19.46.53c-.71-.71-1.86-.71-2.57,0-.71.71-.71,1.86,0,2.57l5.79,5.8H1.82c-1,0-1.82.81-1.82,1.82s.81,1.82,1.82,1.82h21.19l-6.13,6.11c-.71.71-.71,1.86,0,2.57.71.71,1.86.71,2.57,0l8.94-8.92s.09-.07.13-.11c.36-.36.53-.82.53-1.29,0-.47-.17-.95-.53-1.31Z'/%3E%3C/svg%3E") 50% 50%/100% 100% no-repeat;
	transition-delay: 0.2s;
}
section.index_information ul li a p {
	color: #fff;
	font-size: 1.058em;
	font-weight: 400;
	line-height: 1.5;
	transition: opacity 0.3s ease;
}
section.index_information ul li a:hover p {
	color: #404040;
}
@media (max-width: 480px) {
	section.index_information ul li a h3 {
		font-size: 1.6em;
	}
	section.index_information ul li a h3:after {
		width: 22px;
		height: 100%;
	}
	section.index_information ul li a p {
		font-size: 1.12em;
	}
}
/**/
section.index_greeting {
	padding-bottom: 20em;
}
section.index_greeting .inner {
	display: flex;
	width: 90%;
	justify-content: space-between;
}
@media (max-width: 999px) {
	section.index_greeting {
		padding-bottom: 20vw;
	}
	section.index_greeting .inner {
		width: 94%;
		flex-direction: column;
	}
}
@media (max-width: 480px) {
	section.index_greeting {
		padding-bottom: 4vw;
	}
	section.index_greeting .inner {
		width: 100%;
		flex-direction: column;
	}
}
section.index_greeting h3 {
	background: transparent;
	padding-left: 0;
	padding: 1.5em 0 0.8em;
	color: #3e3a39;
	font-weight: 500;
	font-size: 1.625em;
	line-height: 1.8;
}
@media (max-width: 480px) {
	section.index_greeting h3 {
		padding: 1em 0 0.8em;
	}
}
.gre_text {
	position: relative;
}
.gre_text:before {
	content: "";
	position: absolute;
	background-image: url("../img/contents/index/bg_greeting.svg");
	background-size: 100% 100%;
	width: 338px;
	height: 227px;
	top: 2.5vw;
	right: 7vw;
}
.gre_img {
	position: relative;
	padding-top: 3em;
}
.gre_img img {
	width: 100%;
	max-width: 420px;
}
.gre_name {
	display: flex;
	flex-direction: column;
	row-gap: 0.8em;
	position: absolute;
	background-color: #fff;
	width: 140px;
	height: 140px;
	bottom: 10px;
	right: 0;
	justify-content: center;
	align-items: center;
	text-align: center;
	border-radius: 999px;
}
.gre_name:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 999px;
	padding: 4px;
	background: linear-gradient(to right, rgba(229, 147, 92, 1), rgba(219, 185, 112, 1));
	-webkit-mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
}
.gre_name p {
	width: 75%;
	font-size: 1.41em;
	font-weight: 500;
}
.gre_name p:first-of-type {
	padding-bottom: 0.5em;
	font-size: 0.88em;
	font-weight: 400;
	border-bottom: 1px solid #3e3a39;
}
@media (max-width: 1280px) {
	.gre_img {
		display: flex;
		flex-direction: column;
	}
	.gre_img div:first-of-type {
		order: 1;
	}
	.gre_name {
		position: relative;
		order: 3;
		margin: 0 0 0 auto;
		transform: translateY(-85%);
	}
	.btn_details {
		order: 2;
	}
}
@media (max-width: 999px) {
	.gre_img {
		margin: 0 auto;
	}
	.gre_img img {
		max-width: 430px;
	}
	.gre_text:before {
		width: 60%;
		top: 2.5vw;
		right: 2vw;
	}
	.gre_text p {
		line-height: 1.8;
	}
}
/**/
section.index_features {
	width: 100%;
	max-width: 100%;
	position: relative;
	padding-top: 1em;
}
section.index_features:before {
	content: "";
	position: absolute;
	background-image: url("../img/contents/index/bg_wave.svg");
	background-position: center top;
	background-size: cover;
	width: 100vw;
	max-width: 100vw;
	top: -293px;
	left: 50%;
	transform: translateX(-50%);
	height: 293px;
}
section.index_features .inner {
	max-width: 100%;
}
@media (max-width: 999px) {
	section.index_features .inner {
		overflow-x: hidden;
	}
}
@media (max-width: 480px) {
	section.index_features {
		padding: 3em 0;
	}
	section.index_features:before {
		content: "";
		position: absolute;
		background-image: url("../img/contents/index/bg_wave.svg");
		background-position: center top;
		background-size: 100%;
		background-repeat: no-repeat;
		width: 100vw;
		max-width: 100vw;
		top: -14vw;
		left: 50%;
		transform: translateX(-50%);
		height: 293px;
	}
}
.index_features_loop {
	position: absolute;
	top: -300px;
	left: 50%;
	width: 100vw;
	overflow: hidden;
	transform: translateX(-50%);
	pointer-events: none;
}
.index_features_loop_text {
	display: inline-block;
	white-space: nowrap;
	color: rgba(250, 235, 206, 0.5);
	font-size: 8.58em;
	font-weight: 600;
	animation: loopText 100s linear infinite;
}
@media (max-width: 480px) {
	.index_features_loop {
		top: -140px;
	}
	.index_features_loop_text {
		font-size: 6.4em;
	}
}
section.index_features h2 {
	padding: 0 40px;
	max-width: 1280px;
	margin: 0 auto;
}
section.index_features .txt {
	width: 40%;
}
section.index_features .img {
	width: 60%;
}
section.index_features .img img {
	width: 100%;
}
@media (max-width: 768px) {
	section.index_features .img {
		width: 100%;
	}
}
@media (max-width: 480px) {
	section.index_features h2 {
		padding: 0 20px;
	}
	section.index_features .img {
		width: 120%;
	}
}
/*01*/
section.index_features .fea_box01 {
	display: flex;
	position: relative;
	max-width: 1280px;
	column-gap: 5em;
	z-index: 1;
	margin: 0 auto 8em;
	padding: 0 0 0 4vw;
}
section.index_features .fea_box01:before {
	content: "";
	position: absolute;
	background-image: url("../img/contents/index/bg_features01.png");
	background-size: cover;
	width: 785px;
	height: 670px;
	top: 3vw;
	left: -5vw;
	z-index: -1;
}
section.index_features .fea_box01 .txt {
	margin-top: 10em;
}
@media (max-width: 999px) {
	section.index_features .fea_box01 {
		flex-direction: column;
		width: 100%;
		margin: 8em auto 8em;
		padding: 0;
		row-gap: 2em;
	}
	section.index_features .fea_box01 .txt {
		width: 92%;
		padding-right: 15vw;
		margin: 0 auto;
	}
	section.index_features .fea_box01 .img {
		width: 100%;
		text-align: end;
	}
	section.index_features .fea_box01 .img img {
		width: 70%;
	}
	section.index_features .fea_box01:before {
		left: -5vw;
		right: auto;
		transform: none;
		width: calc(100% + 5vw);
		height: calc(100% + 12vw);
		top: -17vw;
		z-index: -1;
	}
}
@media (max-width: 768px) {
	section.index_features .fea_box01 {
		margin: 0 auto 6em;
	}
	section.index_features .fea_box01 .txt {
		width: 88%;
		margin-top: 9em;
		padding-right: 0;
	}
	section.index_features .fea_box01 .img {
		padding-left: 40px;
	}
	section.index_features .fea_box01 .img img {
		width: 100%;
	}
	section.index_features .fea_box01:before {
		top: 3vw;
		left: 50%;
		transform: translateX(-50%);
		width: 110%;
		height: 100%;
	}
}
@media (max-width: 480px) {
	section.index_features .fea_box01 .img img {
		width: 120%;
	}
}
/*02*/
section.index_features .fea_box02 {
	display: flex;
	position: relative;
	max-width: 1280px;
	column-gap: 5em;
	z-index: 1;
	margin: 0 auto 10em;
	padding: 0 8vw 0 0;
}
section.index_features .fea_box02:before {
	content: "";
	position: absolute;
	background-image: url("../img/contents/index/bg_features02.png");
	background-size: cover;
	width: 836px;
	height: 714px;
	top: -8vw;
	right: -3vw;
	z-index: -1;
}
section.index_features .fea_box02 .txt {
}
section.index_features .fea_box02 .img {
	padding-top: 7em;
}
@media (max-width: 1280px) {
	section.index_features .fea_box02 {
		padding: 0 4vw 0 0;
		overflow: visible;
	}
	section.index_features .fea_box02:before {
		right: -8vw;
		z-index: -1;
	}
}
@media (min-width: 769px) and (max-width: 1180px) and (orientation: landscape) {
	section.index_features {
		overflow: visible;
	}

	section.index_features .inner {
		overflow-x: clip;
		overflow-y: visible;
	}

	section.index_features .fea_box02 {
		overflow: visible;
	}
}
@media (max-width: 999px) {
	section.index_features .fea_box02 {
		flex-direction: column-reverse;
		row-gap: 2em;
		padding: 0;
	}
	section.index_features .fea_box02 .txt {
		width: 92%;
		padding-left: 15vw;
		margin: 0 auto;
	}
	section.index_features .fea_box02 .img {
		width: 100%;
		padding-top: 0;
	}
	section.index_features .fea_box02 .img img {
		width: 70%;
	}
	section.index_features .fea_box02:before {
		width: 105%;
		height: calc(100% + 10vw);
		top: -13vw;
		right: 0;
		z-index: -1;
	}
}
@media (max-width: 768px) {
	section.index_features .fea_box02 {
		padding-top: 8em;
		padding-right: 0;
		margin: 0 auto 5em;
	}
	section.index_features .fea_box02:before {
		width: 130%;
		height: 100%;
		top: -2vw;
		right: 50%;
		transform: translateX(45%);
		z-index: -1;
	}
	section.index_features .fea_box02 .txt {
		width: 88%;
		padding-left: 0;
	}
	section.index_features .fea_box02 .img {
		padding-top: 0;
		padding-right: 40px;
		transform: translateX(-10px);
	}
	section.index_features .fea_box02 .img img {
		width: 100%;
	}
}
@media (max-width: 480px) {
	section.index_features .fea_box02 .img {
		padding-right: 8.5vw;
	}
	section.index_features .fea_box02 .img img {
		width: 120%;
		transform: translateX(-70px);
	}
}
/*point*/
section.index_features .point {
	display: flex;
	position: relative;
	column-gap: 0.5em;
	align-items: flex-end;
	z-index: 1;
}
section.index_features .fea_box01 .point img {
	max-width: 89px;
}
section.index_features .fea_box02 .point img {
	max-width: 96px;
}
section.index_features .point:before {
	content: "";
	position: absolute;
	bottom: -10px;
	left: -5px;
	background-image: url("../img/contents/index/fea_line.png");
	background-size: cover;
	width: 205px;
	height: 25px;
	z-index: -1;
}

section.index_features h3 {
	background: transparent;
	padding-left: 0;
	margin: 1em auto 0.3em;
	color: #3e3a39;
	font-weight: 500;
	font-size: 1.625em;
	line-height: 1.4;
}
@media (max-width: 480px) {
	section.index_features h3 {
		padding-right: 0em;
	}
}
section.index_features .fea_box03 {
	position: relative;
	margin-top: 1em;
	overflow: hidden;
}
section.index_features .fea_box03 ul {
	display: flex;
	gap: 0;
	padding: 2.2em 0;
	align-items: stretch;
	transition: transform 0.6s;
}
section.index_features .fea_box03 ul li {
	display: flex;
	flex: 0 0 377px;
	flex-direction: column;
	column-gap: 1em;
	row-gap: 1em;
	position: relative;
	height: auto;
	text-align: center;
	font-size: 1.41em;
	font-weight: 500;
	border-radius: 0 0 24px 24px;
	transition: transform 0.6s ease;
	margin: 0 0.6em;
}
section.index_features .fea_box03 ul li .slide_inner {
	position: relative;
}
section.index_features .fea_box03 ul li .slide_inner:after {
	content: "";
	position: absolute;
	background-size: 100% 100%;
	width: 80px;
	height: 80px;
	top: -40%;
	left: 50%;
	transform: translateX(-50%);
}
section.index_features .fea_box03 ul li.point03 .slide_inner:after {
	background-image: url("../img/contents/index/fea_point03.png");
}
section.index_features .fea_box03 ul li.point04 .slide_inner:after {
	background-image: url("../img/contents/index/fea_point04.png");
}
section.index_features .fea_box03 ul li.point05 .slide_inner:after {
	background-image: url("../img/contents/index/fea_point05.png");
}
section.index_features .fea_box03 ul li.point06 .slide_inner:after {
	background-image: url("../img/contents/index/fea_point06.png");
}
section.index_features .fea_box03 ul li.point07 .slide_inner:after {
	background-image: url("../img/contents/index/fea_point07.png");
}
section.index_features .fea_box03 ul li.point08 .slide_inner:after {
	background-image: url("../img/contents/index/fea_point08.png");
}
section.index_features .fea_box03 ul li.point09 .slide_inner:after {
	background-image: url("../img/contents/index/fea_point09.png");
}
section.index_features .fea_box03 ul li div.slide_inner {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	justify-content: center;
}
.slide_inner img,
.js-slider-track li > img {
	width: 100%;
	display: block;
}
.slide_inner p,
.js-slider-track li > p {
	margin: 0;
	padding: 1em;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	line-height: 1.6;
	text-align: center;
}
.js-slider-track.is-jump li {
	transition: none !important;
}
section.index_features .fea_box03 ul li p span {
	font-size: 0.75em;
}
section.index_features .fea_box03 ul li.is-active {
	transform: scale(1.15);
	margin: 0 1.2em;
}
section.index_features .fea_box03 ul li.point03 {
	border: 3px solid #e5935c;
}
section.index_features .fea_box03 ul li.point04 {
	border: 3px solid #e39960;
}
section.index_features .fea_box03 ul li.point05 {
	border: 3px solid #e19f65;
}
section.index_features .fea_box03 ul li.point06 {
	border: 3px solid #dfa569;
}
section.index_features .fea_box03 ul li.point07 {
	border: 3px solid #ddaa6d;
}
section.index_features .fea_box03 ul li.point08 {
	border: 3px solid #dbb071;
}
section.index_features .fea_box03 ul li.point09 {
	border: 3px solid #d7bc7a;
}
.fea_slider_nav {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 26px;
	margin-top: 25px;
}
.fea_slider_prev,
.fea_slider_next {
	position: relative;
	width: 33px;
	height: 33px;
	background: #fff;
	border: 1px solid #e5935c;
	border-radius: 50%;
	cursor: pointer;
}
.fea_slider_prev::before,
.fea_slider_next::before {
	content: "";
	position: absolute;
	background-image: url("../img/common/icon_arrow03.svg");
	top: 50%;
	left: 50%;
	transform: translateX(-50%);
	width: 7px;
	height: 12px;
}
.fea_slider_prev::before {
	transform: translateX(-50%) translateY(-50%) scaleX(-1);
}
.fea_slider_next::before {
	transform: translateX(-50%) translateY(-50%);
}
.fea_slider_dots {
	display: flex;
	align-items: center;
	gap: 16px;
}
.fea_slider_dot {
	width: 8px;
	height: 8px;
	padding: 0;
	background: #cacaca;
	border: none;
	border-radius: 50%;
	cursor: pointer;
}
.fea_slider_dot.is-active {
	background: #e5935c;
}
@media (max-width: 480px) {
	.fea_box03 {
		overflow: hidden;
		width: 100%;
	}
	section.index_features .fea_box03 ul {
		display: flex;
		gap: 0;
		padding: 2.2em 0;
		align-items: stretch;
		transition: transform 0.6s;
	}
	section.index_features .fea_box03 ul li {
		display: flex;
		flex: 0 0 90%;
		flex-direction: column;
		column-gap: 1em;
		row-gap: 1em;
		position: relative;
		height: auto;
		text-align: center;
		font-size: 1.41em;
		font-weight: 500;
		transition: transform 0.6s ease;
		margin: 0 0.6em;
	}
	.js-slider-track {
		align-items: center;
	}
	.js-slider-track li {
		transform: none;
	}
	.js-slider-track li.is-active {
		transform: none !important;
	}
	.js-slider-track li img {
		width: 100%;
		height: auto;
		display: block;
	}
	.fea_slider_nav {
		margin-top: 0px;
	}
}
/* Info */
.info_title {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.info_title h2 {
	padding-top: 0 !important;
}
.info {
	width: 100%;
	margin: 0 auto;
	text-align: center;
}
.info dl {
	width: 100%;
	height: 268px;
	margin: 0 auto;
	line-height: 1.6;
	text-align: left;
	overflow-y: auto;
}
.info dt,
.info dd {
	background-color: #fbfaf7;
	padding-top: 25px;
	padding-bottom: 25px;
}
.info dt {
	float: left;
	position: relative;
	padding: 25px 2em;
	color: #e5935c;
	font-weight: 600;
	z-index: 1;
}
.info dt span {
	padding: 0 1em;
	margin-left: 2em;
	font-size: 0.82em;
	font-weight: 400;
	color: #404040;
	border-radius: 3px;
	border: 1px solid #404040;
}
.info dd {
	position: relative;
	margin: 0 0 20px;
	padding-left: 7.5em;
	border-radius: 3px;
}
.info dd:last-of-type {
	margin-bottom: 0;
}
@media (max-width: 999px) {
	.info dl {
		height: 280px;
	}
	.info dt,
	.info dd {
		padding-top: 0;
		padding-bottom: 0;
		background-color: #fff;
	}
	.info dt {
		float: none;
		padding: 1em 20px 0 1.5em;
	}
	.info dt:before {
		top: 2px;
	}
	.info dd {
		padding: 0.3em 20px 0.8em 1.5em;
		margin-bottom: 10px;
	}
}
/*  Patients
----------------------------------------------------*/
.faq_q {
  position: relative;
  padding-left: 2em;
  font-weight: 500;
  font-size: 1.2em;
}
.faq_q:before {
  content: "Q.";
  position: absolute;
  top: 50%;
  transform: translateY(-55%);
  left: 0.25em;
  color: #e5935c;
  font-size: 22px;
  font-weight: 700;
}
.faq_a {
  position: relative;
  padding-left: 2.5em;
margin-bottom: 1em;
	padding-bottom: 1em;
	border-bottom: 1px solid #ddd;
}
.faq_a:before {
  content: "A.";
  position: absolute;
  top: -1px;
  left: 0.3em;
  color: #deae6a;
  font-size: 22px;
  font-weight: 700;
}
/*  Part
----------------------------------------------------*/
.part_box {
	padding: 1em 2em 2.5em;
	margin-bottom: 2em;
	border: 3px solid #dbb970;
	border-radius: 20px;
}
.part_box h5 {
	color: #e5935c;
}
.part_box .btn_details .label  {
	letter-spacing: 0;
}
/*  Features
----------------------------------------------------*/
.fea_fl {
	display: flex;
	column-gap: 2em;
	row-gap:1em;
	margin: 4em 0;
	justify-content: space-between;
}
.fea_fl_txt {
	width:80%;
}
.fea_fl_img {
	width:200px;
	height: 200px;
}
.fea_fl_img img{
	width:100%;
	height: 100%;
	background-color: #ccc;
	border-radius: 50%;
}
.point {
	font-size: 0.93em;
}
@media(max-width:768px){
	.fea_fl {
		flex-direction: column;
}
	.fea_fl_txt {
	width:100%;
}
	.fea_fl_img {
	width:40%;
		margin: 0 auto;
}
}
/*  Greeting
----------------------------------------------------*/
h3.gre {
	padding: 0 0 0.8em;
	color: inherit;
	background-color: transparent!important;
	border-radius: 0;
	border: none!important;
	line-height: 1.8;
}
.gre_flex {
	overflow: hidden;
}
.gre_fl_img {
	float: right;
	width:37%;
	margin: 0 0 20px 30px;
}
.gre_fl_img img{
	width:100%;
	padding-top: 3em;
}
.gre_fl_text {
}
@media (max-width: 999px) {
	h3.gre {
		margin-top: 0;
	}
	.gre_flex {
		flex-direction: column-reverse;
}
	.gre_fl_img {
		float: none;
		width:50vw;
		margin: 0 auto 2em;
	}
	.gre_fl_img .gre_img {
		max-width: 480px;
	}
}
@media (max-width: 480px) {
	.gre_fl_img {
		width:60vw;
	}
}
/*  Hospital
----------------------------------------------------*/
.room_list {
	display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.room_item img {
    width: 100%;
    display: block;
}
.room_item p {
    margin-top: 8px;
    font-size: 18px;
}
@media (max-width: 768px) {
    .room_list {
        grid-template-columns: 1fr;
    }
}
/*  Access
----------------------------------------------------*/
/*.acc_flex {
	display: flex;
	column-gap: 2em;
	margin-top: 5em;
}
.acc_flex > .map {
	width: 50%;
	background-color: transparent;
}
.acc_flex > .map iframe {
	padding: 0;
	height: 50%;
}
.acc_flex .acc_text {
	width: 50%;
}
.acc_flex h4 {
	margin-top: 0;
}
@media (max-width: 1280px) {
	.acc_flex {
		flex-direction: column-reverse;
		row-gap: 2em;
	}
	.acc_flex > .map {
		width: 100%;
	}
	.acc_flex > .map iframe {
		padding: 0;
		height: 100%;
	}
	.acc_flex .acc_text {
		width: 100%;
	}
}*/
/*----------------------------------------------------
	9.0 - Option
----------------------------------------------------*/
/*  List - Text
----------------------------------------------------*/
/* No icon Style */
ul.list_normal_jp li {
	padding-left: 1em;
}
ul.list_normal_jp li {
	padding-left: 1em;
	text-indent: -1em;
}

/* No icon Style/English */
ul.list_normal_en li {
	padding-left: 0.425em;
}
ul.list_normal_en li {
	padding-left: 0.425em;
	text-indent: -0.425em;
}

/* Disk Style */
ul.list_disc {
	margin-left: 1.5em;
}
ul.list_disc li {
	position: relative;
}
ul.list_disc li:after {
	display: block;
	background-color: #e5935c;
	content: "";
	position: absolute;
	top: 0.6em;
	left: -1.2em;
	width: 10px;
	height: 10px;
	border-radius: 100%;
}

/* Mark Style */
ul.list_mark li {
	padding-left: 1em;
	position: relative;
}
ul.list_mark li:before,
ul.list_mark li:after {
	content: " ";
	position: absolute;
}
ul.list_mark li:before {
	background-color: #000;
	width: 1em;
	height: 1em;
	top: 0.35em;
	left: 0em;
	border-radius: 50%;
}
ul.list_mark li:after {
	top: 0.9rem;
	left: 0.6rem;
	border: 0.4rem solid transparent;
	border-left: 0.5rem solid #fff;
}

/* Link Style */
ul.list_link li {
	padding: 0 0 0.5em 1em;
	position: relative;
	border-bottom: 1px solid #ddd;
}
ul.list_link li:before {
	display: block;
	position: absolute;
	content: "\025b6";
	width: 1em;
	height: 1em;
	margin-left: -1em;
	color: #000;
}

/* Decimal Style */
ol.list_decimal {
	list-style: none;
	counter-reset: num;
	margin-left: 2em;
}
ol.list_decimal > li {
	position: relative;
}
ol.list_decimal > li:before {
	counter-increment: num;
	content: counter(num) ".";
	display: inline-block;
	position: absolute;
	width: 2em;
	top: 0;
	left: -2em;
	margin-right: 2em;
	text-align: center;
}

/* Decimal (Parentheses) Style */
ol.list_numberParen {
	list-style-type: none;
	counter-reset: ol_li;
	margin-left: 2em;
}
ol.list_numberParen > li {
	position: relative;
}
ol.list_numberParen > li:before {
	counter-increment: ol_li;
	content: "(" counter(ol_li) ")";
	display: inline-block;
	position: absolute;
	width: 2em;
	top: 0;
	left: -2em;
	margin-right: 2em;
	text-align: center;
}

/* Decimal (Parentheses - One Side) Style */
ol.list_numberParenR {
	list-style-type: none;
	counter-reset: ul_lione;
	margin-left: 2em;
}
ol.list_numberParenR > li {
	position: relative;
}
ol.list_numberParenR > li:before {
	counter-increment: ul_lione;
	content: counter(ul_lione) ")";
	display: inline-block;
	position: absolute;
	width: 2em;
	top: 0;
	left: -2em;
	margin-right: 2em;
	text-align: center;
}

/*  List - Button
----------------------------------------------------*/
ul.list_button {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	line-height: 1.1;
	text-align: center;
}
ul.list_button li {
	margin: 0 auto 0.75em;
}
ul.list_button > li a {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #fff;
	min-width: 40%;
	height: 56px;
	font-weight: 500;
	text-decoration: none;
	border: 2px solid #deae6a;
	border-radius: 999px;
	box-shadow: 0 0px 8px rgba(233, 163, 116, 0.1);
	transition: 0.3s;
}
/*footer btn*/
ul.list_button.footer.btn_col01 > li {
	width: 70%;
}
@media (max-width: 480px) {
	ul.list_button.footer.btn_col01 > li {
		width: 90%;
	}
}
ul.list_button.footer > li a {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	background-color: #fff;
	height: 70px;
	font-size: 1.41em;
	text-decoration: none;
	border: none;
	border-radius: 50px;
	box-shadow: 0 0px 8px rgba(233, 163, 116, 0.1);
	transition: 0.3s;
	overflow: hidden;
}
ul.list_button.footer > li a:hover img {
	filter: brightness(0) invert(1);
}
ul.list_button.footer > li a:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 50px;
	padding: 2px;
	background: linear-gradient(to right, rgba(229, 147, 92, 1), rgba(219, 185, 112, 1));
	-webkit-mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
}
ul.list_button > li a:hover {
	background-color: #fff;
	border-radius: 4px;
	color: #000;
}
/*footer btn*/
ul.list_button.footer > li a:hover {
	background: linear-gradient(to right, rgba(229, 147, 92, 1), rgba(219, 185, 112, 1));
	border-radius: 50px;
	color: #fff;
}
ul.list_button > li.notLink {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #bcbcbc;
	height: 56px;
	color: #fff;
	text-decoration: none;
	border: 2px solid #fff;
	border-radius: 4px;
	box-shadow: 0 2px 5px #ccc;
	transition: 0.3s;
}
ul.list_button.btn_col01 > li {
	width: 48%;
}
ul.list_button.btn_col02 > li {
	width: 48%;
}
ul.list_button.btn_col02_center > li {
	width: 40%;
}
ul.list_button.btn_col03 > li {
	width: 30%;
}
@media (max-width: 768px) {
	ul.list_button.btn_col02_center > li,
	ul.list_button.btn_col03 > li {
		width: 48%;
	}
}
/* 2 Column After */
ul.list_button.btn_col02:after {
	content: "";
	display: block;
	width: 50%;
	height: 0;
}
/* 3 Column After */
ul.list_button.btn_col03:after {
	content: "";
	display: block;
	width: 66.67%;
	height: 0;
}
@media (max-width: 768px) {
	ul.list_button.btn_col03:after {
		width: 50%;
	}
}
/*Details btn*/
.btn_details {
	display: inline-flex;
	align-items: center;
	position: relative;
	text-decoration: none;
	cursor: pointer;
	width: fit-content;
	max-width: max-content;
}

.btn_details .circle {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 33px;
	height: 33px;
	border-radius: 999px;
	background: #fff;
	overflow: hidden;
	transition: width 0.4s ease;
	z-index: 1;
}

.btn_details .circle::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 999px;
	padding: 1px;
	background: linear-gradient(to right, rgba(229, 147, 92, 1), rgba(219, 185, 112, 1));
	-webkit-mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
}
/* 矢印 */
.btn_details .arrow {
	content: "";
	position: absolute;
	top: 50%;
	left: 14px;
	transform: translateY(-50%);
	background-image: url("../img/common/icon_arrow03.svg");
	width: 7px;
	height: 12px;
	z-index: 2;
}
/* 文字は最初から外に表示 */
.btn_details .label {
	position: relative;
	z-index: 2;
	margin-left: 45px;
	white-space: nowrap;
	font-size: 0.94em;
	letter-spacing: 0.2em;
	color: #404040;
	transition: color 0.4s ease;
}
/* hoverで文字まで包む */
.btn_details:hover .circle {
	width: calc(100% + 20px);
}
.btn_details:hover .label {
	color: #404040;
}
@media (max-width: 999px) {
	.btn_details.topics {
		display: none;
	}
}
/*sp*/
.btn_details_sp {
	display: inline-flex;
	align-items: center;
	position: relative;
	width: fit-content;
	max-width: max-content;
	margin-top: 1em;
	margin-left: auto;
	margin: 1em 1em 0 auto; /* 右寄せ */
	text-decoration: none;
	cursor: pointer;
}
.btn_details_sp .circle {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 33px;
	height: 33px;
	border-radius: 999px;
	background: #fff;
	overflow: hidden;
	transition: width 0.4s ease;
	z-index: 1;
}
.btn_details_sp .circle::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 999px;
	padding: 1px;
	background: linear-gradient(to right, rgba(229, 147, 92, 1), rgba(219, 185, 112, 1));
	-webkit-mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
}
/* 矢印 */
.btn_details_sp .arrow {
	content: "";
	position: absolute;
	top: 50%;
	left: 14px;
	transform: translateY(-50%);
	background-image: url("../img/common/icon_arrow03.svg");
	width: 7px;
	height: 12px;
	z-index: 2;
}
/* 文字は最初から外に表示 */
.btn_details_sp .label {
	position: relative;
	z-index: 2;
	margin-left: 45px;
	white-space: nowrap;
	font-size: 0.94em;
	letter-spacing: 0.2em;
	color: #404040;
	transition: color 0.4s ease;
	z-index: 1;
}
/* hoverで文字まで包む */
.btn_details_sp:hover .circle {
	width: calc(100% + 20px);
}
.btn_details_sp:hover .label {
	color: #404040;
}
@media (min-width: 1000px) {
	.btn_details_sp {
		display: none;
	}
}

/*  List - Banner
----------------------------------------------------*/
ul.list_banner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	line-height: 1.1;
	text-align: center;
}
ul.list_banner li {
	margin: 0 0 0.75em;
}
ul.list_banner li a img {
	width: 100%;
	border: 1px solid #ddd;
	transition: 0.3s;
}
ul.list_banner > li a img:hover {
	border: 1px solid #999;
}
ul.list_banner li.blank {
	margin: 0;
}
ul.list_banner.banner_col01 > li {
	width: 100%;
}
ul.list_banner.banner_col02 > li {
	width: 48%;
}
ul.list_banner.banner_col03 > li {
	width: 32%;
}
ul.list_banner.banner_col04 > li {
	width: 24%;
}
@media (max-width: 480px) {
	ul.list_banner.banner_col04 > li {
		width: 30%;
	}
}

/*  Table
----------------------------------------------------*/
table.table_normal {
	width: 100%;
	border: solid 1px #ddd;
}
table.table_normal th {
	padding: 10px;
	/*background: #FCF8EC;*/
	border-left: solid 1px #ddd;
	border-bottom: solid 1px #ddd;
	font-weight: 700;
}
table.table_normal td {
	padding: 10px;
	border-left: solid 1px #ddd;
	border-bottom: solid 1px #ddd;
}
/* Vertical Setting */
table th.vtl_center,
table td.vtl_center {
	vertical-align: middle;
}

/* Scroll */
@media (max-width: 768px) {
	.table_scroll {
		overflow-x: scroll;
	}
	.table_scroll::-webkit-scrollbar {
		height: 10px;
	}
	.table_scroll::-webkit-scrollbar-track {
		margin: 0 2px;
		background: #ccc;
		border-radius: 5px;
	}
	.table_scroll::-webkit-scrollbar-thumb {
		border-radius: 5px;
		background: #666;
	}
	.table_scroll:after {
		content: "*If the window size is narrow, this table is displayed with side scrolling.";
		position: relative;
		font-size: calc(768px * 0.015625);
	}
	.table_scroll .table_normal {
		min-width: 700px;
	}
}

/* Stack */
table.table_stack_sp {
	width: 100%;
}
table.table_stack_sp th {
	padding: 2em;
	font-weight: 700;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	border-bottom: solid 1px #ccc;
}
table.table_stack_sp.gre th {
		font-weight: 400;
	text-align: left;
	}
table.table_stack_sp td {
	padding: 2em;
	vertical-align: middle;
	border-bottom: solid 1px #ccc;
}
table.table_stack_sp h4 {
	background-color: #fbf2eb;
	background-color: #F1F1F1;
	padding: 0.3em 0.8em;
	font-size: 1.058em;
	font-weight: 500;
	color: inherit;
	border-radius: 999px;
	border-bottom: none;
}
table.table_stack_sp h4:first-of-type {
	margin-top: 0;
}
table.table_stack_sp ul.list_disc {
	margin-left: 2.3em;
}
@media (max-width: 480px) {
	table.table_stack_sp th {
		width: auto;
		text-align: left;
		border-bottom: 1px solid #ccc!important;
	}
	table.table_stack_sp td {
		border-bottom: none;
		/*border: 1px solid #ccc;*/
	}
	table.table_stack_sp th,
	table.table_stack_sp td {
		display: list-item;
		list-style: none;
		width: 100%;
		padding: 5px;
		border-width: 1px 0 0;
	}
	table.table_stack_sp td {
		padding-bottom: 1em;
	}
	table.table_stack_sp h4{
	font-size:1em;
}
	table.table_stack_sp h4:first-of-type {
	margin-top: 0.5em;
}
}
/*  Change Tab
----------------------------------------------------*/
.change_tab {
	display: flex;
	justify-content: space-around;
	border-bottom: 1px solid #b1b1b1;
}
.change_tab > li {
	width: 100%;
	position: relative;
	padding: 0.5em 0;
	text-align: center;
	background-color: #fff;
	font-size: 1.53em;
	font-weight: 500;
	border: 2px solid #e4e4e4;
	border-bottom: none;
	border-radius: 10px 10px 0 0;
	cursor: pointer;
	transition: 0.5s;
}
.change_tab > li.active {
	background: linear-gradient(90deg, rgba(229, 147, 92, 1) 0%, rgba(224, 166, 102, 1) 100%);
	color: #fff;
	border: none;
}
.change_tab > li.active:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	border-style: solid;
	border-width: 20px 12px 0 12px;
	border-color: #e29d61 transparent transparent;
	translate: -50% 100%;
}
@media (max-width: 480px) {
	.change_tab > li {
		padding: 0.3em 0;
		font-size: 1.25em;
	}
}
/*  Back Ground Color
----------------------------------------------------*/
.bg_blue {
	background: #000;
}
.bg_green {
	background: #509869;
}
.bg_red {
	background: #e0363c;
}
.bg_orange {
	background: #ec7430;
}
.bg_beige {
	background: #f3efec;
}
.bg_grey {
	background: #fcfcfc;
}

/*  Align
----------------------------------------------------*/
.center {
	text-align: center;
}
.left {
	text-align: left;
}
.right {
	text-align: right;
}

/*  Hr
-----------------------------------------------*/
hr {
	border: solid 1px #ddd;
}

/*  Text
----------------------------------------------------*/
sub,
sup {
	font-size: 0.75em;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sup {
	top: -0.5em;
}
sub {
	bottom: -0.25em;
}
strong {
	font-weight: 700;
}
.tx_cancel {
	text-decoration: line-through;
}
.tx_cancel_red {
	text-decoration: line-through;
	color: #e0363c;
}
.tx_cancel_red span {
	color: black;
}
.tx_red {
	color: #e0363c;
}
.tx_blue {
	color: #000;
}
.tx_black {
	color: #000;
}
.tx_white {
	color: #fff;
}
.tx_orange {
	color: #e5935c;
}
.tx_orange_s {
	color: #de742d;
}
.tx_emp {
	color: #de742d;
}
.tx_13 {
	font-size: 1.3rem;
}
.tx_13B {
	font-size: 1.3rem;
	font-weight: 700;
}
.tx_14 {
	font-size: 1.4rem;
}
.tx_14B {
	font-size: 1.4rem;
	font-weight: 700;
}
.tx_15 {
	font-size: 1.5rem;
}
.tx_15B {
	font-size: 1.5rem;
	font-weight: 700;
}
.tx_16 {
	font-size: 1.6rem;
}
.tx_16B {
	font-size: 1.6rem;
	font-weight: 700;
}
.tx_17 {
	font-size: 1.7rem;
}
.tx_17B {
	font-size: 1.7rem;
	font-weight: 700;
}
.tx_18 {
	font-size: 1.8rem;
}
.tx_18M {
	font-size: 1.8rem;
	font-weight: 500;
}
.tx_18B {
	font-size: 1.8rem;
	font-weight: 700;
}
.tx_20 {
	font-size: 2rem;
}
.tx_20B {
	font-size: 2rem;
	font-weight: 700;
}
.tx_22 {
	font-size: 2.2rem;
}
.tx_22B {
	font-size: 2.2rem;
	font-weight: 700;
}
@media (max-width: 768px) {
	.tx_13,
	.tx_13B {
		font-size: 1.2rem;
	}
	.tx_14,
	.tx_14B {
		font-size: 1.3rem;
	}
	.tx_15,
	.tx_15B {
		font-size: 1.4rem;
	}
	.tx_16,
	.tx_16B {
		font-size: 1.5rem;
	}
	.tx_17,
	.tx_17B {
		font-size: 1.6rem;
	}
	.tx_18,
	.tx_18B {
		font-size: 1.7rem;
	}
	.tx_18M {
		font-size: 1.6rem;
	}
	.tx_20,
	.tx_20B {
		font-size: 1.8rem;
	}
	.tx_22,
	.tx_22B {
		font-size: 2rem;
	}
}
.tx_space01 {
	letter-spacing: 0.1rem;
}
.tx_space02 {
	letter-spacing: 0.2rem;
}
.tx_space03 {
	letter-spacing: 0.3rem;
}
.tx_space04 {
	letter-spacing: 0.4rem;
}
.tx_space05 {
	letter-spacing: 0.5rem;
}
.tx_space_n001 {
	letter-spacing: -0.01rem;
}
.tx_space_n005 {
	letter-spacing: -0.05rem;
}
.tx_space_n01 {
	letter-spacing: -0.1rem;
}
.tx_space_n02 {
	letter-spacing: -0.2rem;
}
.tx_space_n03 {
	letter-spacing: -0.3rem;
}
.tx_indent01 {
	padding-left: 1em;
	text-indent: -1em;
}
.tx_indent02 {
	padding-left: 2em;
	text-indent: -2em;
}
.tx_indent044 {
	padding-left: 4.4em;
	text-indent: -4.4em;
}
/*  Line Height
----------------------------------------------------*/
.line_height00 {
	line-height: 0;
	vertical-align: middle;
}
.line_height01 {
	line-height: 1;
	vertical-align: middle;
}
.line_height015 {
	line-height: 1.5;
	vertical-align: middle;
}
.line_height02 {
	line-height: 2;
	vertical-align: middle;
}

/*  Text Break
----------------------------------------------------*/
@media (max-width: 1280px) {
	span.br1280_under:before {
		content: "\A";
		white-space: pre;
	}
}
@media (max-width: 999px) {
	span.br999_under:before {
		content: "\A";
		white-space: pre;
	}
}
@media (max-width: 768px) {
	span.br768_under:before {
		content: "\A";
		white-space: pre;
	}
}
@media (max-width: 480px) {
	span.br480_under:before {
		content: "\A";
		white-space: pre;
	}
}
@media (min-width: 1000px) {
	span.br999_up:before {
		content: "\A";
		white-space: pre;
	}
}
@media (min-width: 769px) {
	span.br768_up:before {
		content: "\A";
		white-space: pre;
	}
}
@media (min-width: 481px) {
	span.br480_up:before {
		content: "\A";
		white-space: pre;
	}
}
/*  Margin
----------------------------------------------------*/
.mgt_10 {
	margin-top: 10px;
}
.mgt_20 {
	margin-top: 20px;
}
.mgt_30 {
	margin-top: 30px;
}
.mgt_40 {
	margin-top: 40px;
}
.mgt_50 {
	margin-top: 50px;
}
.mgb_10 {
	margin-bottom: 10px;
}
.mgb_20 {
	margin-bottom: 20px;
}
.mgb_30 {
	margin-bottom: 30px;
}
.mgb_40 {
	margin-bottom: 40px;
}
.mgb_50 {
	margin-bottom: 50px;
}
.mgl_10 {
	margin-left: 10px;
}
.mgl_01 {
	margin-left: 1em;
}
.mgl_02 {
	margin-left: 2em;
}
.mgl_03 {
	margin-left: 3em;
}
.mgl_04 {
	margin-left: 4em;
}
.mgl_05 {
	margin-left: 5em;
}

/*  Icon
----------------------------------------------------*/
/*Link Blank Icon*/
.link:after {
	font-family: "Font Awesome 5 Free";
	content: "\f360";
	margin-left: 0.2em;
	color: #4369c4;
	font-size: 1.375em;
	font-weight: 900;
}
.pdf:after {
	font-family: "Font Awesome 5 Free";
	content: "\f1c1";
	margin-left: 0.2em;
	color: #f54328;
	font-size: 1.6em;
	font-weight: 900;
}
.ppt:after {
	font-family: "Font Awesome 5 Free";
	content: "\f1c4";
	margin-left: 0.2em;
	color: #ce6243;
	font-size: 1.6em;
	font-weight: 900;
}
.word:after {
	font-family: "Font Awesome 5 Free";
	content: "\f1c2";
	margin-left: 0.2em;
	color: #254c9b;
	font-size: 1.6em;
	font-weight: 900;
}
.excel:after {
	font-family: "Font Awesome 5 Free";
	content: "\f1c3";
	margin-left: 0.2em;
	color: #347241;
	font-size: 1.6em;
	font-weight: 900;
}
.ssl:after {
	font-family: "Font Awesome 5 Free";
	content: "\f084";
	margin-left: 0.2em;
	color: #ceaf28;
	font-size: 1.6em;
	font-weight: 900;
}
/* Triangle Icon */
.triangle {
	/* margin: 0; */
	padding-left: 1em;
	text-indent: -1em;
	position: relative;
}
.triangle:before {
	content: "\025b6";
	color: #000;
}
.dot {
	display: inline-block;
	width: 16px;
	height: 16px;
	background: #e5935c;
	border-radius: 50%;
}
.dash {
	display: inline-block;
	width: 10px;
	height: 1px;
	background: #e5935c;
}
@media (max-width: 480px) {
	.dot {
		width: 14px;
		height: 14px;
	}
	.dash {
		width: 8px;
	}
}
/*  Page Top
----------------------------------------*/
#page_top {
	position: fixed;
	display: flex;
	bottom: 20px;
	right: 100px;
	margin: 0;
	z-index: 999;
}
#page_top a {
	display: block;
	line-height: 0;
	opacity: 0.85;
	position: relative;
	width: 80px;
	height: 80px;
	color: #3e3a39;
	text-align: center;
	border-radius: 50%;
	vertical-align: middle;
	text-decoration: none;
	transition: 0.4s;
}
#page_top a img {
	width: 100%;
	animation: rotateAnimation 9s linear infinite;
}
#page_top a::after {
	content: "TOP";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-44%, -50%);
	letter-spacing: 0.25em;
}
#page_top a:hover {
	background-color: #666;
}
@media(min-width:1281px) and (max-width:1560px){
	#page_top {
	bottom: 55px;
	right: 100px;
}
}
@media (max-width: 1280px) {
	#page_top {
		right: 20px;
		bottom: 110px;
		z-index: 100;
	}
}
@media (max-width: 480px) {
	#page_top {
		right: 20px;
	}
	#page_top a:before {
		top: 18px;
		left: 33%;
	}
	#page_top a {
		width: 70px;
		height: 70px;
	}
}

/*  Float
----------------------------------------------------*/
.fL {
	float: left;
	margin: 0 1em 10px 0;
}
.fR {
	float: right;
	margin: 0 0 10px 1em;
}

/*  Attention
----------------------------------------------------*/
.box_attention {
	max-width: 100%;
	padding: 1em 1.5em;
	line-height: 1.6;
	background-color: #fbf2eb;
	border-radius: 20px;
}
.box_attention_rd {
	max-width: 100%;
	padding: 1em;
	line-height: 1.6;
	border: 5px solid #e0363c;
}
.box_attention_gy {
	max-width: 100%;
	padding: 1em 1.5em;
	line-height: 1.6;
	/*background-color: #ddd;*/
	border: 1px solid #ddd;
	border-radius: 20px;
}

/*  Construction
----------------------------------------------------*/
.construction {
	width: 60%;
	margin: 5% auto 30%;
	padding: 20px 40px;
	display: block;
	color: #bbb;
	text-align: center;
	border: 3px solid #ddd;
}
.construction .title {
	font-size: 1.2em;
	font-weight: 700;
}
@media (max-width: 480px) {
	.construction {
		padding: 10px 20px;
	}
}
/*  Google Map
----------------------------------------------------*/
.map {
	width: 100%;
	height: 0;
	padding-top: 56.25%;
	position: relative;
	background-color: #fff;
	border-radius: 15px;
}
.map iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	padding: 0.8em;
	border-radius: 15px;
}
@media (max-width: 480px) {
	.map iframe {
		padding: 0.3em;
	}
}
/*  Breadcrumb
----------------------------------------------------*/
.breadcrumb ol {
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0;
}
.breadcrumb li:not(:last-child)::after {
	content: ">";
	margin: 0 8px;
	color: #999;
}
.breadcrumb a {
	color: #3e3a39;
	text-decoration: none;
}
.breadcrumb a:hover {
	text-decoration: underline;
}
.breadcrumb [aria-current="page"] {
	color: #e5935c;
	font-weight: 500;
}
/*  Page navi
----------------------------------------------------*/
.page_nav {
	margin-top: 2em;
	margin-bottom: 5em;
}
.page_nav_button {
	width: 100%;
	position: relative;
	padding: 0.8em 1.5em;
	text-align: left;
	font-size: 1.1em;
	font-weight: 500;
	font-family: "Quicksand", "Zen Maru Gothic", sans-serif;
	cursor: pointer;
	border-top: 1px solid #deae6a;
	border-bottom: 1px solid #deae6a;
	border-left: 0;
	border-right: 0;
	background-color: #fcf7f2;
}
.page_nav_button:after {
	content: "";
	position: absolute;
	background-image: url("../img/common/icon_arrow.svg");
	background-size: cover;
	width: 24px;
	height: 24px;
	top: 50%;
	right: 1em;
	transform: translateY(-50%) rotate(90deg);
	transition: transform 0.5s ease;
}
.page_nav:has(.page_nav_menu.is_open) .page_nav_button:after {
	transform: translateY(-50%) rotate(-90deg);
}
.page_nav_menu {
	display: block;
	height: 0;
	overflow: hidden;
	transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.page_nav_menu.is_open {
	width: 99.8%;
	margin: 0 auto;
	max-height: 500px;
}
.page_nav_menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.page_nav_menu ul li {
	position: relative;
	padding-left: 1.6em;
	border-top: 1px solid #ddd;
}
.page_nav_menu ul li:before {
	content: "";
	position: absolute;
	width: 6px;
	height: 6px;
	top: 50%;
	transform: translateY(-50%);
	left: 2em;
	border-radius: 999px;
	background-color: #deae6a;
}
.page_nav_menu ul li:first-of-type {
	border-top: none;
}
.page_nav_menu ul li:last-of-type {
	border-bottom: 1px solid #ddd;
}
.page_nav_menu a {
	display: block;
	padding: 12px 1.5em;
	color: inherit;
	font-weight: 500;
	text-decoration: none;
}
.page_nav_menu a:hover {
	color: #e5935c;
}
/*  anker link
----------------------------------------------------*/
.inner_link {
	transform: translateY(-2em);
	z-index: -1;
	height: 0px;
	position: absolute;
	display: run-in;
}
@media (max-width: 999px) {
	.inner_link {
		transform: translateY(-4em);
	}
}

/*  Animation
----------------------------------------------------*/
@keyframes rotateAnimation {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}
@keyframes loopText {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}
/*  Tel
----------------------------------------------------*/
a[href^="tel:"] {
	cursor: default;
	text-decoration: none;
	color: inherit;
}
.scr01 a[href^="tel:"] {
	text-decoration: none;
}
.scr01 a[href^="tel:"]:hover {
	color: inherit;
}
@media (max-width: 767px) {
	a[href^="tel:"] {
		pointer-events: auto;
		cursor: pointer;
	}
}
/*  Form
----------------------------------------------------*/
form {
	margin-top: 2em;
	padding: 3.5em;
	border:2px solid #dbb970;
	border-radius: 20px;
}
.formTable {
	width:100%;
}
.formTable th{
	width: 25%;
	padding-bottom: 1.5em;
	vertical-align: center;
	white-space: nowrap;
}
.formTable td{
	width: 75%;
	padding-bottom: 1.5em;
}
.required {
    background-color: #ea4444;
    color: #fff;
    font-weight: 400;
    font-size: 0.93em;
    margin-left: 0.5em;
    padding: 0.1em 0.35em;
}
input[type="text"] {
    width: 100%;
	padding: 1.1em;
    border: 1px solid rgba(34, 34, 34, 0.2);
    border-radius: 3px;
}
textarea {
    width: 100%;
    border: 1px solid rgba(34, 34, 34, 0.2);
    border-radius: 3px;
}
input[type="submit"] {
    background-color: #299e4f;
    color: #fff;
    padding: 1.2em 3em;
    font-size: 1.4rem;
    font-weight: 700;
    border: 2px solid #299e4f;
    border-radius: 50px;
    cursor: pointer;
    text-align: center;
    transition: 0.3s;
}