/* =============== RESET CSS =============== */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
dialog,
figure,
footer,
header,
nav,
section,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
html {
	font-size: 62.5%;
}
body,
table,
input,
textarea,
select,
option,
h1,
h2,
h3,
h4,
h5,
h6 {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 700;
}
table,
input,
textarea,
select,
option {
	line-height: 1.1;
}
ol,
ul {
	list-style: none;
}
blockquote,
q {
	quotes: none;
}
:focus {
	outline: 0;
}
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}
img {
	vertical-align: top;
}
a {
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	color: inherit;
	text-decoration: none;
}
a:hover {
	opacity: 0.7;
}
img {
	max-width: 100%;
}

/* =============== LAYOUT CSS =============== */

body {
	font-family: '"Noto Sans JP", sans-serif';
	font-size: 1.4rem;
	line-height: 1.5;
	color: #000;
	font-weight: 400;
}
@media only screen and (max-width: 767px) {
	body {
		min-width: 320px;
	}
}
.sp-only {
	display: none;
}
@media only screen and (max-width: 767px) {
	.pc-only {
		display: none;
	}
	.sp-only {
		display: block;
	}
}
.l-container {
	width: 95%;
	max-width: 1200px;
	margin: 0 auto;
}
section .details {
	position: relative;
	z-index: 2;
}
/* =============== HEADER CSS =============== */
.c-header {
	position: fixed;
	z-index: 99999;
	top: 0;
	left: 0;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	color: #fff;
	height: 80px;
}
.c-header.active {
	background-color: #fff;
}
.c-header.is-scroll {
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	background-color: #fff;
	-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
	box-shadow: 0 0 5px #00000080;
	color: #000;
}
.c-header__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
}
.c-header__logo {
	max-width: 160px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	margin-right: 4%;
	margin-left: 30px;
}
.c-header__logo img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}
.c-header__right {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}
/* =============== GLOBAL NAVI CSS =============== */
.c-gnav {
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.c-gnav ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
@media only screen and (max-width: 1024px) {
	.c-gnav ul {
		opacity: 0;
		visibility: hidden;
		position: absolute;
		z-index: 1;
	}
}
.c-gnav__item a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 7px 1.1vw;
	font-size: 1.5rem;
}
.c-gnav__item--btn a {
	border: 1px solid #fff;
	border-radius: 35px;
	padding: 7px 50px;
	margin-right: 50px;
}
.c-header.is-scroll .c-gnav__item--btn a {
	border-color: #000;
}
.c-gnav.active ul {
	position: absolute;
	top: 100%;
	left: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	height: 100vh;
	width: 100%;
	background-color: #fff;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	opacity: 1;
	visibility: visible;
	padding: 10px 0 30vh;
	min-height: 450px;
	overflow: auto;
	z-index: 1;
}
.c-gnav.active li {
	display: block;
}
.c-gnav.active .c-gnav__item a {
	color: #000;
}
.c-gnav.active .c-gnav__item--btn a {
	margin-right: 0;
}
.navTrigger {
	position: relative;
	z-index: 1000;
	width: 45px;
	height: 45px;
	background: none;
	border: 0;
	outline: none;
	border: none;
	cursor: pointer;
	-webkit-appearence: none;
	-webkit-tap-highlight-color: transparent;
	display: block;
	margin: 0 15px;
	background-color: #000;
}
.navTrigger:focus {
	outline: none;
}
.navTrigger svg {
	width: 45px;
	height: 45px;
	top: 0;
	left: 0;
	stroke: #fff;
	stroke-width: 4px;
	stroke-linecap: round;
	stroke-linejoin: round;
	fill: none;
	display: block;
	position: absolute;
}
.navTrigger svg path {
	-webkit-transition: stroke-dasharray var(--duration, 0.85s) var(--easing, ease) var(--delay, 0s), stroke-dashoffset var(--duration, 0.85s) var(--easing, ease) var(--delay, 0s);
	transition: stroke-dasharray var(--duration, 0.85s) var(--easing, ease) var(--delay, 0s), stroke-dashoffset var(--duration, 0.85s) var(--easing, ease) var(--delay, 0s);
	stroke-dasharray: var(--array-1, 26px) var(--array-2, 100px);
	stroke-dashoffset: var(--offset, 126px);
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
}
.navTrigger svg path:nth-child(2) {
	--duration: 0.7s;
	--easing: ease-in;
	--offset: 100px;
	--array-2: 74px;
}
.navTrigger svg path:nth-child(3) {
	--offset: 133px;
	--array-2: 107px;
}
.navTrigger.active svg {
	stroke: #fff;
}
.navTrigger.active svg path {
	--offset: 57px;
}
.navTrigger.active svg path:nth-child(1),
.navTrigger.active svg path:nth-child(3) {
	--delay: 0.15s;
	--easing: cubic-bezier(0.2, 0.4, 0.2, 1.1);
}
.navTrigger.active svg path:nth-child(2) {
	--duration: 0.4s;
	--offset: 2px;
	--array-1: 1px;
}
.navTrigger.active svg path:nth-child(3) {
	--offset: 58px;
}

/* =============== FOOTER CSS =============== */

.c-footer {
	padding: 40px 0;
	background-color: #000;
}
.c-footer .l-container {
	position: relative;
}
.c-footer .l-container .js-btt {
	position: absolute;
	top: 0;
	right: 0;
	width: 60px;
	height: 60px;
	-webkit-transform: translate3d(0, calc(-100% - 55px), 0);
	transform: translate3d(0, calc(-100% - 55px), 0);
	cursor: pointer;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.c-footer .l-container .js-btt:hover {
	opacity: 0.7;
}
.c-footer .l-container .js-btt img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
.c-footer__logo {
	max-width: 97px;
	display: block;
	margin: 0 auto;
}
.c-footer__gnav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin: 40px 0;
}
@media only screen and (max-width: 767px) {
	.c-footer__gnav {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
}
.c-footer__gnav li a {
	display: inline-block;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	color: #fff;
	font-size: 1.5rem;
	padding: 0 25px;
	margin-bottom: 25px;
}
.c-footer__btn.c-btn01 {
	max-width: 135px;
	padding: 8px 30px;
}
.c-footer__cpright {
	color: #d9d9d9;
	text-align: center;
	font-family: acumin-variable, sans-serif;
	font-weight: 400;
	margin-top: 80px;
}

/* =============== BUTTON =============== */

.c-btn01 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	max-width: 290px;
	margin: 0 auto;
	width: 90%;
	padding: 18px;
	font-size: 1.4rem;
	line-height: 1;
	border-radius: 36px;
	background-color: #fff;
	color: #000;
	font-family: acumin-variable, sans-serif;
	font-weight: 400;
	border: 1px solid #707070;
	cursor: pointer;

	transition: all 0.3s;
}
.c-btn01:hover,
.c-btn01--black {
	background-color: #000;
	color: #fff;
}
.c-btn01--black:hover {
	background-color: #fff;
	color: #000;
}
.c-list01 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

/* =============== TAB =============== */

.c-tabs {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 90%;
	margin: 0 auto;
}
@media only screen and (max-width: 767px) {
	.c-tabs {
		width: 100%;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
}
.c-tabs__item {
	width: calc((100% - 80px) / 3);
}
.p-faq .c-tabs__item {
	width: calc((100% - 80px) / 4);
}
@media only screen and (max-width: 767px) {
	.c-tabs__item {
		width: calc((100% - 20px) / 2);
	}
	.c-tabs__item:not(:last-child) {
		margin-bottom: 20px;
	}
}
.c-tabs__item a {
	width: 100%;
	height: 100%;
	display: block;
	font-size: clamp(1.5rem, 2vw, 1.8rem);
	background-color: #fff;
	color: #050505;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	text-align: center;
	padding: 18px 10px;
	border-radius: 31px;
	border: 1px solid #707070;
	box-sizing: border-box;
	font-size: 1.4rem;
}
.c-tabs__item:hover a,
.c-tabs__item.is-selected a {
	color: #fff;
	background-color: #222222;
}
.c-tabs__item.is-selected a {
	pointer-events: none;
}

/* =============== LIST =============== */

.c-list01 .c-item {
	width: calc((100% - 35px) / 2);
	overflow: hidden;
	position: relative;
}
@media only screen and (max-width: 767px) {
	.c-list01 .c-item {
		width: 100%;
	}
	.c-list01 .c-item:not(:first-child) {
		margin-top: 35px;
	}
}
.c-list01 .c-item:nth-child(n + 3) {
	margin-top: 35px;
}
.c-list01 .c-item img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	max-height: 265px;
}
.c-list01 .c-item:hover img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
.c-list01 .c-item:before {
	--transition-duration: 0.5s;
	--transition-easing: ease-out;
	content: '';
	background: #ffffff1a;
	width: 60%;
	height: 100%;
	top: 0%;
	left: -125%;
	z-index: 1;
	-webkit-transform: skew(45deg);
	transform: skew(45deg);
	position: absolute;
	-webkit-transition: left var(--transition-duration) var(--transition-easing);
	transition: left var(--transition-duration) var(--transition-easing);
}

.c-list01 .c-item:hover:before {
	left: 150%;
}
.c-list01 .c-item__top {
	max-height: 265px;
	overflow: hidden;
}

.c-list01 .c-item__bottom {
	padding: 20px;
	border: 1px solid #e5e5e5;
	box-sizing: content-box;
}
.c-list01 .c-item__ttl {
	text-align: center;
	font-size: clamp(1.7rem, 2vw, 2rem);
	font-weight: 700;
	color: #000000;
}
.c-list01 .c-item__txt {
	font-size: 1.55rem;
	margin-top: 12px;
}
/* =============== MAINVISUAL =============== */

.c-mainvisual {
	position: relative;
	height: 100vh;
	min-height: 550px;
}
.p-subpage .c-mainvisual {
	background-color: #000000;
	height: 550px;
	background-size: cover !important;
	background-repeat: no-repeat !important;
	background-position: center !important;
}
.p-subpage .c-mainvisual:after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #0000;
	mix-blend-mode: multiply;
}
.c-mainvisual__img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.c-mainvisual__slider {
	width: 100%;
	height: 100%;
}
.c-mainvisual__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center bottom;
	background-repeat: no-repeat;
}
.c-mainvisual__bg:after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	opacity: 0.8;
	mix-blend-mode: multiply;
	pointer-events: none;
}
.p-subpage .c-mainvisual__bg {
	opacity: 0.5;
}
.p-subpage .c-mainvisual__bg::after {
	display: none;
}
.c-mainvisual__inner {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate3d(-50%, -50%, 0);
	transform: translate3d(-50%, -50%, 0);
	z-index: 2;
	width: 100%;
	pointer-events: none;
	text-align: center;
}
.p-subpage .c-mainvisual__inner {
	top: 50%;
	max-width: unset;
	text-align: center;
}
.c-mainvisual__inner img {
	max-width: 200px;
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}
.c-mainvisual__inner h2 {
	font-size: clamp(3.2rem, 3vw, 4.2rem);
	color: #fff;
	width: 100%;
	text-align: center;
	font-family: a-otf-ud-reimin-pr6n, sans-serif;
	font-weight: 300;
	margin-top: 70px;
}
.p-subpage .c-mainvisual__inner h2 {
	font-size: clamp(2.8rem, 3vw, 3.2rem);
}
.p-subpage .c-mainvisual__inner .en {
	font-family: acumin-variable, sans-serif;
	display: block;
	font-size: 2.1rem;
	line-height: 1;
	margin-bottom: 27px;
}
.c-mainvisual__slider .swiper-slide-active .c-mainvisual__bg {
	-webkit-animation: visual1 cubic-bezier(0, 0, 0.58, 1) 4s;
	animation: visual1 cubic-bezier(0, 0, 0.58, 1) 4s;
}
@-webkit-keyframes visual1 {
	0% {
		-webkit-transform: scale(1.2) translate(0, -5%);
		-webkit-transform: scale(1.2) translateY(-5%);
		transform: scale(1.2) translateY(-5%);
	}
	to {
		-webkit-transform: scale(1) translate(0, 0);
		-webkit-transform: scale(1) translate(0);
		transform: scale(1) translate(0);
	}
}
@keyframes visual1 {
	0% {
		-webkit-transform: scale(1.2) translate(0, -5%);
		-webkit-transform: scale(1.2) translateY(-5%);
		transform: scale(1.2) translateY(-5%);
	}
	to {
		-webkit-transform: scale(1) translate(0, 0);
		-webkit-transform: scale(1) translate(0);
		transform: scale(1) translate(0);
	}
}

.c-scrolldown {
	width: 20px;
	height: 60px;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	overflow: hidden;
	z-index: 3;
}
.c-scrolldown__line {
	width: 1px;
	height: 100%;
	display: block;
	position: absolute;
	left: 50%;
	-webkit-transform: translate3d(50%, 0, 0);
	transform: translate3d(50%, 0, 0);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, white), color-stop(50%, rgba(255, 255, 255, 0)));
	background: -o-linear-gradient(top, white 50%, rgba(255, 255, 255, 0) 50%);
	background: linear-gradient(to bottom, white 50%, rgba(255, 255, 255, 0) 50%);
	/* background-position: 0 -60px; */
	background-size: 100% 200%;
	-webkit-animation: scrolldown 2.2s cubic-bezier(0.76, 0, 0.3, 1) forwards infinite;
	animation: scrolldown 2.2s cubic-bezier(0.76, 0, 0.3, 1) forwards infinite;
}
@-webkit-keyframes scrolldown {
	0% {
		background-position: 0 -60px;
	}
	75% {
		background-position: 0 0;
	}
	100% {
		background-position: 0 60px;
	}
}
@keyframes scrolldown {
	0% {
		background-position: 0 -60px;
	}
	75% {
		background-position: 0 0;
	}
	100% {
		background-position: 0 60px;
	}
}
/* =============== TITLE =============== */

.c-ttl01 {
	text-align: center;
	font-size: 2.5rem;
	font-family: acumin-variable, sans-serif;
	font-weight: 400;
	letter-spacing: 0.14em;
	margin-bottom: 60px;
}

.c-ttl02 {
	text-align: center;
	font-size: 2rem;
	font-weight: 400;
	letter-spacing: 0.08em;
	color: #000000;
}

/* =============== CARD =============== */
.card-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	border: 1px solid #e5e5e5;
}
@media only screen and (max-width: 970px) {
	.card-item {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}
.card-item:not(:last-child) {
	margin-bottom: 45px;
}
.card-item__part {
	width: 50%;
}
@media only screen and (max-width: 970px) {
	.card-item__part {
		width: 100%;
	}
}
.card-item__part--left {
	overflow: hidden;
	max-height: 265px;
}
.card-item__part--left img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
.card-item__part--right {
	background-color: #fff;
	padding: 45px 50px;
}
@media only screen and (max-width: 767px) {
	.card-item__part--right {
		padding: 25px;
	}
}
.card-item__ttl {
	font-size: 2rem;
	font-weight: 700;
	color: #000000;
}
.card-item__txt {
	font-size: 1.55rem;
	color: #000000;
	margin-top: 1.65rem;
}
/* =============== TOP PAGE =============== */
/*** INTRO SECTION ***/
.intro {
	padding: 140px 0;
	background-color: #000;
	position: relative;
	overflow: hidden;
}
.intro .details {
	position: relative;
	z-index: 2;
}
.intro__ttl {
	font-size: 2.4rem;
	font-weight: 500;
	text-align: center;
	color: #fff;
}
.intro-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-top: 80px;
}
@media only screen and (max-width: 767px) {
	.intro-wrapper {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
	}
}
.intro-bg {
	display: block;
	position: absolute;
	top: 50px;
	left: 50px;
	width: calc(100% - 100px);
	height: calc(100% - 100px);
	z-index: 1;
	opacity: 0.3;
}
.intro-bg img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	opacity: 0.8;
}
.intro-part {
	width: calc((100% - 30px) / 2);
}
@media only screen and (max-width: 767px) {
	.intro-part {
		width: 100%;
	}
}
.intro-part--left {
	padding-right: 20px;
}
@media only screen and (max-width: 767px) {
	.intro-part--left {
		padding: 0;
		margin-top: 30px;
		text-align: center;
	}
}
@media only screen and (max-width: 767px) {
	.intro-part--right {
		height: 450px;
	}
}
.intro-part p {
	color: #fff;
	font-size: 1.65rem;
	line-height: 1.8181818182;
}
.intro-part p:not(:first-child) {
	margin-top: 40px;
}

/*** TOPIC SECTION ***/

.topic {
	position: relative;
	padding: 70px 0 140px;
}
.topic:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	opacity: 0.26;
	background: url(../img/top/bg_02.jpg) center no-repeat;
	background-size: cover;
}
.topic .c-list01 {
	margin-top: 60px;
}
/*** NEWS SECTION ***/
.news {
	padding: 80px 0;
}
@media only screen and (max-width: 767px) {
	.news {
		padding: 40px 0;
	}
}
.news-list {
	margin-top: 40px;
}
.news-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 20px 40px;
	background-color: #f2f2f5;
	font-size: 1.6rem;
	font-weight: 400;
	font-family: acumin-variable, sans-serif;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.news-item:hover {
	background-color: #c9c9c9;
}
@media only screen and (max-width: 767px) {
	.news-item {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		padding: 20px;
	}
}
.news-item:not(:first-child) {
	margin-top: 17px;
}
.news-item__date {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 110px;
	flex: 0 0 110px;
	margin-right: 20px;
}
@media only screen and (max-width: 767px) {
	.news-item__date {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		margin-bottom: 5px;
	}
}
.news-item__ttl {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
}
.news .c-btn01 {
	margin-top: 60px;
}
@media only screen and (max-width: 1300px) {
	.news .c-btn01 {
		margin-top: 40px;
	}
}
/*** INFO SECTION ***/

.info {
	position: relative;
	padding: 150px 0 120px;
	background-color: #000;
}
@media only screen and (max-width: 767px) {
	.info {
		padding: 75px 0 60px;
	}
}
.info .details {
	position: relative;
	z-index: 3;
}
.info .details .c-ttl01 {
	color: #fff;
}
.info .details .c-ttl01 img {
	margin-top: 16px;
	max-width: 157px;
}
.info-list {
	margin-top: 100px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
@media only screen and (max-width: 767px) {
	.info-list {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
}
.info-item {
	width: calc((100% - 70px) / 3);
	padding: 30px 15px;
	text-align: center;
	background-color: #000;
}
@media only screen and (max-width: 767px) {
	.info-item {
		max-width: 320px;
		width: 95%;
	}
	.info-item:not(:last-child) {
		margin-bottom: 35px;
	}
}
.info-item__txt {
	font-size: clamp(1.7rem, 2.2vw, 2rem);
	color: #a3a3a3;
}
.info-item__txt span {
	font-family: acumin-variable, sans-serif;
	font-size: 4.6rem;
	margin-left: 20px;
	color: #fff;
}
.info-item__txt span small {
	color: #a3a3a3;
	font-size: 2.2rem;
}
.js_banner {
	position: absolute;
	z-index: 1;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0.4;
}
.js_banner figure {
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 100%;
}
.js_banner figure picture {
	-webkit-transform: scale(1.1, 1.1);
	transform: scale(1.1);
	-webkit-transition: 1s;
	transition: 1s;
	width: 100%;
	height: 100%;
}
.js_banner figure img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	opacity: 0;
	-webkit-transition: 2s;
	transition: 2s;
	-webkit-transform: scale(1.1, 1.1);
	transform: scale(1.1);
}
.js_banner .banner_cloak {
	position: absolute;
	z-index: 4;
	top: 0;
	left: 0;
	width: 100%;
	height: calc(100% + 1px);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.js_banner .banner_cloak li {
	height: 101%;
	width: 19%;
	background-color: #000;
	-webkit-transform-origin: right;
	transform-origin: right;
	-webkit-transition: 0.6s cubic-bezier(0.52, 0.08, 0.18, 1);
	transition: 0.6s cubic-bezier(0.52, 0.08, 0.18, 1);
}
.js_banner .banner_cloak li:nth-child(6) {
	width: 12%;
	-webkit-transition-delay: 0.5s;
	transition-delay: 0.5s;
}
.js_banner .banner_cloak li:nth-child(5) {
	-webkit-transition-delay: 0.4s;
	transition-delay: 0.4s;
}
.js_banner .banner_cloak li:nth-child(4) {
	-webkit-transition-delay: 0.3s;
	transition-delay: 0.3s;
}
.js_banner .banner_cloak li:nth-child(3) {
	-webkit-transition-delay: 0.2s;
	transition-delay: 0.2s;
}
.js_banner .banner_cloak li:nth-child(2) {
	-webkit-transition-delay: 0.1s;
	transition-delay: 0.1s;
}
.js_banner .banner_cloak li:first-child {
	width: 12%;
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
}
.js_banner.anm {
	-webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.js_banner.anm figure picture,
.js_banner.anm figure img {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: 1.5s;
	transition: 1.5s;
}
.js_banner.anm .banner_cloak li {
	-webkit-transform: scale(0, 1);
	transform: scaleX(0);
}

/*** FACILITY SECTION ***/

.facility {
	background-color: #d9d5d1;
}
.facility .details {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
@media only screen and (max-width: 1300px) {
	.facility .details {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}
.facility .details-part {
	width: 50%;
}
@media only screen and (max-width: 1300px) {
	.facility .details-part {
		width: 100%;
	}
}
.facility .details-part--left img {
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
.facility .details-part--right {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}
.facility .details-part__top {
	padding: 8.5%;
}
.facility .details-part__top h2 {
	text-align: center;
	font-size: 2rem;
}
.facility .details-part__top p {
	font-size: 1.65rem;
	margin-top: 24px;
}
.facility .details-part__bottom {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
}
@media only screen and (max-width: 1300px) {
	.facility .details-part__bottom {
		min-height: 350px;
	}
}
@media only screen and (max-width: 767px) {
	.facility .details-part__bottom {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}
.facility .details-part__item {
	width: 50%;
	position: relative;
	background-color: #1d1d1d;
	overflow: hidden;
}
.facility .details-part__item:hover {
	opacity: 1;
}
.facility .details-part__item:hover .details-part__bg {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
@media only screen and (max-width: 767px) {
	.facility .details-part__item {
		width: 100%;
		min-height: 350px;
	}
}
.facility .details-part__inner {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	-webkit-transform: translate3d(0, -50%, 0);
	transform: translate3d(0, -50%, 0);
	text-align: center;
	z-index: 3;
}
.facility .details-part__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	z-index: 1;
	opacity: 0.32;
}
.facility .details-part__itemttl {
	font-size: 2rem;
	color: #fff;
}
.facility .details-part .c-btn01 {
	margin-top: 50px;
	max-width: 260px;
	background-color: transparent;
	color: #fff;
	border-color: #fff;
}
.map-container {
	position: relative;
	display: inline-block;
}
.modal {
	position: absolute;
	z-index: 10;
	background: white;
	padding: 10px;
	display: none;
	box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
	text-align: center;
	border-radius: 11px;
	max-width: 180px;
}

.modal::after {
	content: '';
	position: absolute;
	bottom: -13px;
	left: 50%;
	transform: translate3d(-50%, 0, 0);
	width: 0;
	height: 0;
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-top: 15px solid #fff;
}
.modal img {
  width: 180px;       /* 必要に応じて固定サイズ */
  height: 100px;      /* 高さも固定で統一 */
  object-fit: cover;  /* 画像を枠に収めつつトリミング */
  display: block;
  margin: 0 auto;
	border-radius: 5px;
}
#modal .modal-title.c-btn01 {
	max-width: unset;
	font-size: 1.2rem;
	margin-top: 10px;
	padding: 4px;
}
.white .modal-title {
	pointer-events: none; /* クリックできない */
	background: none;
	color: #333;
	border: none;
	padding: 0;
	font-weight: normal;
	text-decoration: none;
	cursor: default;
}
/* 念のため hover もリセット */
.incomming .modal-title:hover,
.incomming .modal-title:focus,
.incomming .modal-title.c-btn01:hover{ 
/* .incomming .modal-title.c-btn01--black { */
  background: none !important;
  color: #333;
  text-decoration: none;
  box-shadow: none;
  border: none !important;
  opacity: 1;
}
/*** AREA SECTION ***/

.area {
	background-color: #fff;
}
.area-details {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 110px 0;
}
@media only screen and (max-width: 767px) {
	.area-details {
		padding: 55px 0;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}
.area-part {
	width: 50%;
}
@media only screen and (max-width: 767px) {
	.area-part {
		width: 100%;
	}
}
.area-part--left img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
.area-part--right {
	padding: 40px 0 40px 70px;
}
@media only screen and (max-width: 767px) {
	.area-part--right {
		padding-left: 0;
	}
}
.area-part__ttl {
	display: inline-block;
	padding: 20px 38px;
	background-color: #000;
	color: #fff;
	font-size: clamp(1.6rem, 1.85vw, 2.55rem);
	letter-spacing: 0.26em;
	font-weight: 400;
	-webkit-transform: translate3d(-110px, 0, 0);
	transform: translate3d(-110px, 0, 0);
}
@media only screen and (max-width: 767px) {
	.area-part__ttl {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translateZ(0);
		padding: 20px;
	}
}
.area-part__subttl {
	margin-top: 40px;
	font-size: 2rem;
}
.area-part__txt {
	margin-top: 3.65rem;
	font-size: 1.65rem;
	letter-spacing: 0.26em;
}
.area-item.swiper-slide {
	width: 555px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	max-height: 370px;
}
@media only screen and (max-width: 767px) {
	.area-item.swiper-slide {
		width: 300px;
	}
}
.area .js-area.swiper-free-mode > .swiper-wrapper {
	-webkit-transition-timing-function: linear;
	transition-timing-function: linear;
}

/*** ACCESS SECTION ***/

.access {
	padding: 80px 0 110px;
}
.access-details {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-top: 40px;
}
@media only screen and (max-width: 767px) {
	.access-details {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}
.access-part {
	width: calc((100% - 30px) / 2);
}
@media only screen and (max-width: 767px) {
	.access-part {
		width: 100%;
	}
	.access-part--left {
		margin-bottom: 30px;
	}
}

.access-part dt {
	font-size: clamp(1.8rem, 2vw, 2.3rem);
	font-weight: 500;
	color: #000;
}
.access-part dd {
	font-size: 1.65rem;
	color: #000;
	letter-spacing: 0.08em;
	line-height: 1.8181818182;
	margin-top: 25px;
}
@media only screen and (max-width: 767px) {
	.access-part dd {
		font-size: 1.5rem;
	}
}
.access-part dd strong {
	font-size: 1.8rem;
	font-weight: 500;
}
@media only screen and (max-width: 767px) {
	.access-part dd strong {
		font-size: 1.6rem;
	}
}
.access-part dd:last-child {
	border: hidden;
}
.access-map {
	height: 480px;
}
.access-table {
	border: 2px solid #707070;
	border-collapse: collapse;
	width: 100%;
}
@media only screen and (max-width: 767px) {
	.access-table {
		margin-top: 30px;
	}
}
.access-table tr {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
@media only screen and (max-width: 767px) {
	.access-table tr {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}
.access-table th,
.access-table td {
	font-size: 1.55rem;
	font-weight: 400;
	padding: 15px 0;
	padding-left: 26px;
	border: 1px solid #bebebe;
	text-align: left;
	line-height: 1.75;
}
.access-table th {
	width: 123px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	background-color: #f8f8f8;
}
.access-table td {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
}
@media only screen and (max-width: 767px) {
	.access-table th,
	.access-table td {
		width: 100%;
	}
}
/* =============== CONCEPT PAGE =============== */

.concept-item.swiper-slide {
	width: 380px;
	flex-shrink: 0;
}

.concept-list.swiper-free-mode > .swiper-wrapper {
	transition-timing-function: linear;
}
.p-concept .intro {
	overflow: visible;
	padding-bottom: 260px;
}
.p-concept .intro-bg {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.p-concept .intro-wrapper {
	display: block;
}
.p-concept .intro-part {
	width: 100%;
	padding: 0;
}
.p-concept .intro-part--left {
	text-align: center;
}
.p-concept .intro-part--right {
	max-width: 600px;
	max-height: 383px;
	width: 90%;
	margin: 0 auto;
	position: absolute;
	bottom: 0;
	left: 50%;
	-webkit-transform: translate3d(-50%, calc(50% + 260px), 0);
	transform: translate3d(-50%, calc(50% + 260px), 0);
}
.p-concept .area {
	padding-top: 170px;
	background-color: #f7f7f7;
}
.p-concept .area-part__ttl {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.p-concept .kodawari {
	padding: 90px 0;
}

/* =============== FACILITY PAGE =============== */

.p-facility .area-details {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}
@media only screen and (max-width: 767px) {
	.p-facility .area-details {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	.p-facility .area-part--left {
		height: 350px;
	}
}
.p-facility .area-part__ttl {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	margin-bottom: 10px;
	padding: 10px 20px;
	border-radius: 4px;
	line-height: 3;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
	display: inline;
}
.p-facility .area-part--right {
	padding: 40px 70px 40px 0;
}
@media only screen and (max-width: 767px) {
	.p-facility .area-part--right {
		padding-right: 0;
	}
}
.p-facility .map-top {
	background-color: #e6e3e0;
}
.p-facility .c-tabs {
	padding: 55px 0;
}

/*** MAP SECTION ***/
.map-item {
	padding: 80px 0;
}

.map-item:nth-child(odd) {
	background-color: #f7f7f7;
}
.map-item:nth-child(even) {
	background-color: #fff;
}
.map-item__content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	font-size: 1.55rem;
	position: relative;
	align-items: flex-start;
	min-height: 100vh;
	overflow: visible;
}
@media only screen and (max-width: 767px) {
	.map-item__content {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}
.map-item__part {
	width: calc((100% - 44px) / 2);
}
@media only screen and (max-width: 767px) {
	.map-item__part {
		width: 100%;
	}
}
.map-item__part > *:not(:last-child):not(.u-note) {
	margin-bottom: 30px;
}
.map-item__part--left {
	position: sticky;
	top: 50px;
}
.map-item__part--left img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media only screen and (max-width: 767px) {
	.map-item__part--left {
		position: relative;
		margin-bottom: 70px;
	}
	.map-item__part--left img {
		width: 100%;
	}
}
.map-item__ttl {
	font-size: 2rem;
	font-weight: 400;
}
.map-item__ttl span {
	font-size: 1.6rem;
	margin-left: 10px;
}
.map-item__txtbox {
	padding: 20px;
	border: 1px solid #707070;
	background-color: #fff;
}
.u-note {
	padding-left: 16px;
	text-indent: -16px;
}

.map-table {
	width: 100%;
	border-collapse: collapse;
	border: 3px solid #707070;
	margin-top: 30px;
}
.map-table th,
.map-table td {
	border: 1px solid #707070;
	text-align: center;
	padding: 15px 40px;
	font-weight: 400;
}
.map-table th {
	border-top-width: 3px;
	background-color: #e6e3e0;
}
.map-table td:first-child {
	background-color: #f8f8f8;
}
.map-table td:last-child {
	width: 30%;
	background-color: #fff;
	padding-left: 0;
	padding-right: 0;
}

.price-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border: 1px solid #bebebe;
	background-color: #f8f8f8;
}
.price-box__left {
	text-align: center;
	padding: 30px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}
.price-box__right {
	background-color: #ffffff;
	border-left: 1px solid #bebebe;
	padding: 15px;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
}
.price-box__right > *:not(:last-child) {
	margin-bottom: 16px;
}
.price-box__ttl {
	padding: 10px;
	background-color: #efefef;
	font-size: 1.55rem;
	font-weight: 400;
}
.price-box__txt {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.price-box__txt span:first-child {
	width: 115px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}
.price-box__txt--total {
	border-top: 1px solid #707070;
	padding-top: 16px;
}
.map .c-btn01 {
	margin-top: 45px;
}

/* =============== PAGE FEATURES =============== */

.p-features .c-list01 .c-item {
	width: calc((100% - 60px) / 4);
	margin: 0;
}
@media only screen and (max-width: 767px) {
	.p-features .c-list01 .c-item {
		width: calc((100% - 20px) / 2);
		margin: 0;
	}
}
.p-features .c-list01 .c-item a,
.p-features .c-list01 .c-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	margin-bottom: 20px;
}
.features .c-list01 .c-item:not(.has-link):before {
	display: none;
}
.features .c-list01 .c-item:not(.has-link):hover img {
	-webkit-transform: scale(1);
	transform: scale(1);
}

.p-features .c-list01 {
	pointer-events: none;
}

/* =============== PAGE FAQ =============== */

.p-faq .c-tabs {
	padding: 60px 0;
	width: 100%;
}
.faq-item {
	padding: 65px 0;
}

.faq-list {
	margin-top: 45px;
}
.faq-list__qa {
	padding: 30px;
	padding-right: 60px;
	cursor: pointer;
	position: relative;
}
.faq-list__qa:not(:last-child) {
	margin-bottom: 20px;
}

.faq-list__qa::after {
	content: '';
	display: inline-block;
	position: absolute;
	top: 40px;
	right: 30px;
	width: 15px;
	height: 15px;
	border-right: 2px solid #468d22;
	border-bottom: 2px solid #468d22;
	transform: rotate(45deg);
	margin-left: 8px;
	transition: transform 0.3s ease;
}

.faq-list__qa.active::after {
	transform: rotate(-135deg);
}

.faq-list__q,
.faq-list__a {
	display: flex;
}
.faq-list__q {
	font-size: 2rem;
	font-weight: 500;
}
.faq-list__a {
	font-size: 1.65rem;
	font-weight: 400;
	/* display: none; */
	opacity: 0;
	height: 0;
	padding-top: 0;
	overflow: hidden;
	transition: all 0.3s;
}
.faq-list__q::before,
.faq-list__a::before {
	display: block;
	font-size: 4rem;
	font-family: acumin-variable, sans-serif;
	margin-right: 30px;
	line-height: 1;
}
.faq-list__q::before {
	content: 'Q';
	color: #468d22;
}
.faq-list__a::before {
	content: 'A';
	color: #d3700c;
}
.faq-item:nth-child(odd) {
	background-color: #f7f7f7;
}
.faq-item:nth-child(odd) .faq-list__qa {
	background-color: #fff;
}
.faq-item:nth-child(even) {
	background-color: #fff;
}
.faq-item:nth-child(even) .faq-list__qa {
	background-color: #f7f7f7;
}

/* .faq-tooltip {
	position: absolute;
	background: rgba(0, 0, 0, 0.8);
	color: #fff;
	padding: 6px 10px;
	font-size: 12px;
	border-radius: 4px;
	white-space: nowrap;
	pointer-events: none; 
	opacity: 0;
	transform: translate(-50%, -100%);
	transition: opacity 0.2s ease;
	z-index: 3;
} */

/* =============== PAGE ASOBIKATA =============== */
.rule {
	padding-top: 60px;
}
.rule .c-ttl01 {
	margin-bottom: 0;
}
.rule-item {
	padding: 70px 0 110px;
}
.rule-item:nth-child(odd) {
	background-color: #fff;
}
.rule-item:nth-child(even) {
	background-color: #f7f7f7;
}

.rule-item__heading {
	text-align: center;
	margin-bottom: 60px;
}
.rule-item__num {
	font-family: acumin-variable, sans-serif;
	font-size: 7.4rem;
	border-bottom: 6px solid #000000;
	font-weight: 400;
}
.rule-item__ttl {
	font-size: clamp(2.7rem, 3vw, 3.3rem);
	font-weight: 500;
	margin-top: 28px;
}
.rule-item__checkin {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
@media only screen and (max-width: 767px) {
	.rule-item__checkin {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
}
.rule-item__box {
	width: calc((100% - 46px) / 2);
	background-color: #000000;
	border: 1px solid #000000;
	color: #fff;
	text-align: center;
	padding: 15px 10px 30px;
}
@media only screen and (max-width: 767px) {
	.rule-item__box {
		width: 100%;
		margin-bottom: 25px;
	}
}
.rule-item__boxttl {
	font-size: 1.9rem;
}
.rule-item__boxnum {
	font-family: acumin-variable, sans-serif;
	font-size: 9.8rem;
	line-height: 1;
}
.rule-item__boxnum span {
	font-size: 2.5rem;
	font-family: '"Noto Sans JP", sans-serif';
	font-weight: 500;
}
.rule-item__noti {
	margin: 30px 0 40px;
	padding: 32px 10px;
	text-align: center;
	border: 1px solid #000000;
	font-size: 2.3rem;
	font-family: '"Noto Sans JP", sans-serif';
	color: #707070;
}
.rule-item__noti--ttl {
	font-size: 1.9rem;
	font-weight: 500;
	margin-bottom: 20px;
	color: #000000;
}
.rule-item__noti .u-big {
	color: #707070;
	font-size: 3.3rem;
	font-weight: 500;
}
.rule-item__noti .u-red {
	font-size: 5.7rem;
	font-weight: 400;
	line-height: 1;
}
.rule-item__flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
@media only screen and (max-width: 767px) {
	.rule-item__flex {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
}
.rule-item__flex .rule-item__txtbox {
	width: calc((100% - 276px) - 150px);
}
@media only screen and (max-width: 1025px) {
	.rule-item__flex .rule-item__txtbox {
		width: calc((100% - 276px) - 10px);
	}
}
@media only screen and (max-width: 767px) {
	.rule-item__flex .rule-item__txtbox {
		width: 100%;
		margin-bottom: 20px;
	}
}
.rule-item__flex img {
	max-width: 276px;
	width: 90%;
}

/* =============== PAGE CONTACT =============== */

.contact-main {
	padding: 70px 0 90px;
	background-color: #f7f7f7;
}

.s-form__row:not(:last-child) {
	margin-bottom: 30px;
}
.s-form__ttl {
	font-size: 1.55rem;
	color: #000000;
	margin-bottom: 5px;
}
.s-form__input {
	width: 100%;
}
.s-form__input input:not([type='radio']),
.s-form__input textarea,
.s-form__input select {
	width: 100%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 12px 20px;
	font-family: 'Noto Sans JP', serif;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.5;
	border: 1px solid #bebebe;
	background-color: #ffffff;
	border-radius: 10px;
}
.s-form__input select {
	max-width: 315px;
	margin: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url(../img/common/ic_select.svg);
	background-position: calc(100% - 12px) calc(1em + 6px), calc(100% - 15px) calc(1em + 2px), 100% 0;
	background-size: 13px 5px;
	background-repeat: no-repeat;
}
.s-form__input input::placeholder {
	font-size: 1.55rem;
	font-weight: 500;
	color: #bebebe;
	font-family: 'Noto Sans JP', serif;
}
.s-form__input input:focus,
.s-form__input textarea:focus,
.s-form__input select:focus {
	border-color: #393939;
}
.s-form__input input.wpcf7-not-valid {
	border-color: #dc3232;
}
#wpcf7cpcnf table {
	width: 90%;
	margin: 0 auto;
	text-align: center;
	border-collapse: collapse;
}
#wpcf7cpcnf table tr:not(:first-child) {
	margin-top: -1px;
}
#wpcf7cpcnf table tr {
	display: flex;
}
@media only screen and (max-width: 767px) {
	#wpcf7cpcnf table tr {
		flex-direction: column;
	}
}
#wpcf7cpcnf table th {
	width: 220px;
	text-align: left;
	background-color: #e6e3e0;
	padding: 20px 10px;
	border: 1px solid #ccc;
	flex-shrink: 0;
}
#wpcf7cpcnf table td {
	padding: 20px;
	border: 1px solid #ccc;
	flex-grow: 1;
	background-color: #fff;
}
@media only screen and (max-width: 767px) {
	#wpcf7cpcnf table th,
	#wpcf7cpcnf table td {
		width: 100%;
		text-align: center;
	}
}
div.wpcf7cp-btns {
	text-align: center;
}
button.wpcf7cp-cfm-edit-btn,
button.wpcf7cp-cfm-submit-btn {
	display: inline-block;
	max-width: 290px;
	margin: 0 auto;
	width: 90%;
	padding: 18px;
	font-size: 1.4rem;
	line-height: 1;
	border-radius: 36px;
	background-color: #fff;
	color: #000;
	font-family: acumin-variable, sans-serif;
	font-weight: 400;
	border: 1px solid #707070;
	transition: all 0.3s;
	cursor: pointer;
}
button.wpcf7cp-cfm-submit-btn {
	background-color: #000;
	color: #fff;
	margin-right: 0;
}

/* =============== PAGE SAUNA  =============== */
.p-sauna .area-part--left {
	position: relative;
}
.p-sauna .area-part--right {
	padding-left: 40px;
}
@media only screen and (max-width: 767px) {
	.p-sauna .area-part--right {
		padding-left: 0;
	}
}
.p-sauna .area-part__bgtxt {
	position: absolute;
	top: 4%;
	left: 5%;
	max-width: 364px;
	max-height: 209px;
	object-fit: contain;
	width: 60%;
}
@media only screen and (max-width: 767px) {
	.p-sauna .area-part__bgtxt {
		top: 0;
		left: 5%;
		width: 38%;
	}
}
.area-part__step {
	border: 1px solid #707070;
	text-align: center;
	padding: 10px;
	position: relative;
	margin-top: 35px;
}

.area-part > .area-part__step:not(.last)::before {
	content: '↓';
	display: inline-block;
	font-size: 1.65rem;
	color: #000000;
	position: absolute;
	bottom: 0;
	left: 50%;
	-webkit-transform: translate3d(-50%, 30px, 0);
	transform: translate3d(-50%, 30px, 0);
}

.cll__bg {
	/*max-height: 720px;*/
	overflow: hidden;
}
.cll__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	min-height: 500px;
}

.cll-txt {
	position: absolute;
	top: 10%;
	right: 50%;
	max-width: 1200px;
	width: 100%;
	-webkit-transform: translate3d(50%, 0%, 0);
	transform: translate3d(50%, 0%, 0);
}

.cll-txt__inner {
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	margin-left: auto;
	margin-top: 7%;
}
.cll-txt p {
	font-size: 1.65rem;
	color: #fff;
	line-height: 1.7;
}
.cll-txt p:not(:last-child) {
	margin-bottom: 30px;
}
.cll-bottom {
	text-align: center;
	background-color: #000;
	padding: 40px 0;
}
.cll-bottom p {
	color: #fff;
	font-size: 1.85rem;
	line-height: 1.75;
}
.about {
	padding: 90px 0 100px;
}
.about .card-item__part--left {
	max-height: unset;
}
.plan {
	background-color: #f7f7f7;
	padding: 90px 0;
}
.plan .c-ttl01 {
	margin-bottom: 0;
}
.p-sauna .c-ttl01 + .c-ttl02 {
	margin-bottom: 70px;
}
.plan .map-item__content {
	min-height: unset;
}
.plan .map-item__content:not(:last-child) {
	margin-bottom: 70px;
}
.plan .map-item__part--left {
	position: relative;
	top: 0;
	max-height: 365px;
	overflow: hidden;
}
.u-required {
	background-color: #333;
	padding: 8px 10px;
	font-size: 13px;
	margin-left: 20px;
	color: #fff;
	border-radius: 5px;
}
@media only screen and (max-width: 767px) {
	.plan .map-item__part--left {
		margin-bottom: 30px;
	}
}
.plan .map-item__part--left img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.plan .map-table td:first-child {
	width: 30px;
}
.plan .map-table td:last-child {
	width: 70%;
}
.plan-list {
	padding-top: 40px;
}
.plan .c-list01 {
	margin-top: 45px;
}
.plan .c-list01 .c-item {
	width: calc((100% - 60px) / 3);
	margin: 0;
}
@media only screen and (max-width: 767px) {
	.plan .c-list01 .c-item {
		width: 100%;
	}
}
.plan .c-list01 .c-item {
	margin-bottom: 30px;
	background-color: #fff;
}
.plan .c-btn01 {
	margin-top: 68px;
}

.option {
	padding: 70px 0 90px;
}
.option .c-item__txt {
	text-align: center;
}
.option .c-list01 .c-item {
	width: calc((100% - 60px) / 4);
	margin: 0;
}
@media only screen and (max-width: 767px) {
	.option .c-list01 .c-item {
		width: calc((100% - 20px) / 2);
		margin: 0;
	}
}
.option .c-list01 .c-item {
	margin-bottom: 20px;
}
.option .c-btn01 {
	margin-top: 70px;
}
/* =============== UTILITY =============== */

.u-pdt0 {
	padding-top: 0;
}
.u-red {
	color: #d11b1b;
}
.u-note {
	padding-left: 25px;
	text-indent: -25px;
	line-height: 1.7;
	font-size: 1.65rem;
}
.u-note:not(:last-child) {
	margin-bottom: 10px;
}
.u-note::before {
	content: '';
	display: inline-block;
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background-color: #a8a8a8;
	vertical-align: sub;
	margin-right: 10px;
	-webkit-transform: translate3d(0, -2px, 0);
	transform: translate3d(0, -2px, 0);
}
.u-note--nodot {
	padding-left: 0;
	text-indent: 0;
}
.u-note--nodot::before {
	display: none;
}

.social-icons {
	display: flex;
	justify-content: center;
	gap: 30px;
	margin-top: 40px;
}

.social-icons a img {
	width: 26px;
	height: auto;
	transition: opacity 0.3s ease;
}

.social-icons a:hover img {
	opacity: 0.7;
}

/* pagination */
.pagination {
	display: flex;
	justify-content: center;
	margin-top: 50px;
}
.page-numbers {
	padding: 11px 17px;
	font-size: 1.2rem;
	font-weight: 400;
	font-family: "Noto Sans", sans-serif;
	margin: 0 5px;
	background-color: #d9d5d1;
}
.page-numbers.current,
.page-numbers:hover {
	color: #fff;
	background-color: #000;
}

/* single */
.s-single__title {
    color: #97A797;
    padding: 18px 0;
    position: relative;
	margin-top: 40px;
    border-top: 1px solid #97A797;
    border-bottom: 1px solid #97A797;
}
.s-single__title h2 {
    font-size: 28px;
}
.p-news .s-single__date {
    font-size: 16px;
    margin-top: 15px;
}
.p-news .s-single__content {
    font-size: 16px;
    line-height: 2;
    margin-top: 60px;
}
@media screen and (max-width: 767px) {
    .s-single__title {
        padding: 14px 0;
    }
    .s-single__title h2 {
        font-size: 2.4rem;
    }
}