:root {
	--white: #fff;
	--light-creem: #faf8f5;
	--creem: #f8f4e9;
	--thin-green: #ebf5d4;
	--light-green: #7d9963;
	--green: #547443;
	--dark-green: #365c22;
	--red: #d32929;
	--light-brown: #d4c2b8;
	--brown: #817269;
	--dark-brown: #372216;
	--cr-dot-brown: #d4c2b8;
	--cr-overray: rgb(55 34 22 / 80%);
	--cr-switcher-shadow: rgb(85 63 52 / 20%);
	--cr-highlight-green: rgb(125 153 99 / 12%);
	--ff-ja: "Noto Sans JP", sans-serif;
	--ff-en: "Roboto", sans-serif;
	--cl-text-base: var(--dark-brown);
	--ff-base: var(--ff-ja);
	--cl-focus: var(--dark-green);
}

.js-rotation {
	animation: 40s linear infinite rotation;
}

.show-fadeup {
	opacity: 0;
	transition: opacity 2.5s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1);
	transform: translateY(60px);
	will-change: opacity, transform;
}

.show-fadeup.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.show-fadein {
	opacity: 0;
	transition: opacity 6s cubic-bezier(0.25, 1, 0.5, 1) 0.5s;
	will-change: opacity;
}

.show-fadein.is-visible {
	opacity: 1;
}

.p-access__boxes {
	display: flex;
	flex-direction: column;
	gap: 100px;
	padding: 84px 0 40px;
}

.p-access__box {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.p-access__title {
	font-size: 24px;
	font-weight: 700;
	line-height: 150%;
}

.p-access__container {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.p-access__map-wrap {
	height: -moz-fit-content;
	height: fit-content;
	overflow: hidden;
	border-radius: 16px;
}

.p-access__map {
	display: block;
	width: 100%;
	max-width: 1000px;
	height: auto;
	aspect-ratio: 335/224;
}

.p-access__content {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.p-access__content-section {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.p-access__sub-title {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
}

.p-access__content-inner {
	padding-left: 16px;
}

.p-access__text-small {
	font-size: 12px;
}

.p-access__sub-container + .p-access__sub-container {
	margin-top: 27px;
}

.p-access__map-link {
	display: flex;
	gap: 2px;
	align-items: center;
	width: -moz-fit-content;
	width: fit-content;
	text-decoration-line: underline;
	text-underline-position: from-font;
	transition: opacity 0.3s;
}

.p-access__map-link:focus-visible {
	opacity: 0.5;
}

.p-access__map-link::before {
	width: 24px;
	aspect-ratio: 1;
	content: "";
	background: url("../../../assets/images/icon_map.svg") no-repeat center center/contain;
}

.p-access__text-link {
	text-decoration-line: underline;
	transition: opacity 0.3s;
}

.p-access__text-link:focus-visible {
	opacity: 0.5;
}

.u-hidden__pc {
	display: block;
}

.u-hidden__pc--sm {
	display: block;
}

.u-hidden__pc--lg {
	display: block;
}

.u-hidden__pc--xl {
	display: block;
}

.u-hidden__pc--xxl {
	display: block;
}

.u-hidden__sp {
	display: none;
}

.u-hidden__sp--sm {
	display: none;
}

.u-hidden__sp--lg {
	display: none;
}

.u-hidden__sp--xl {
	display: none;
}

.u-hidden__sp--xxl {
	display: none;
}

.u-mt--28 {
	margin-top: 28px;
}

.u-mt--16sp {
	margin-top: 16px;
}

@media (width >= 576px) {

.u-hidden__pc--sm {
	display: none;
}

.u-hidden__sp--sm {
	display: block;
}

}

@media (width >= 768px) {

.p-access__boxes {
	gap: 160px;
	padding: 76px 0 80px;
}

.p-access__title {
	font-size: 36px;
}

.p-access__container {
	flex-direction: row;
}

.p-access__map-wrap {
	flex: 600;
}

.p-access__map {
	aspect-ratio: 600/400;
}

.p-access__content {
	flex: 568;
	gap: 32px;
}

.p-access__sub-title {
	font-size: 18px;
}

.p-access__text-small {
	font-size: 14px;
}

.u-hidden__pc {
	display: none;
}

.u-hidden__sp {
	display: block;
}

.u-mt--16sp {
	margin-top: 0;
}

.u-mt--10pc {
	margin-top: 10px;
}

}

@media (width >= 992px) {

.u-hidden__pc--lg {
	display: none;
}

.u-hidden__sp--lg {
	display: block;
}

}

@media (width >= 1200px) {

.u-hidden__pc--xl {
	display: none;
}

.u-hidden__sp--xl {
	display: block;
}

}

@media (width >= 1400px) {

.u-hidden__pc--xxl {
	display: none;
}

.u-hidden__sp--xxl {
	display: block;
}

}

@media (any-hover: hover) {

.p-access__map-link:where(:-moz-any-link,
:enabled,
summary):hover {
	opacity: 0.5;
}

.p-access__map-link:where(:any-link,
:enabled,
summary):hover {
	opacity: 0.5;
}

.p-access__text-link:where(:-moz-any-link,
:enabled,
summary):hover {
	opacity: 0.5;
}

.p-access__text-link:where(:any-link,
:enabled,
summary):hover {
	opacity: 0.5;
}

}

@keyframes rotation {

0% {
	transform: rotate(0);
}

100% {
	transform: rotate(360deg);
}

}

@keyframes swing {

0% {
	transform: rotate(6deg);
	transform-origin: right bottom;
}

25% {
	transform: rotate(1deg);
}

50% {
	transform: rotate(-6deg);
}

75% {
	transform: rotate(1deg);
}

100% {
	transform: rotate(6deg);
}

}

@keyframes swing2 {

0% {
	transform: rotate(0);
	transform-origin: left bottom;
}

25% {
	transform: rotate(5deg);
}

50% {
	transform: rotate(10deg);
}

75% {
	transform: rotate(5deg);
}

100% {
	transform: rotate(0);
}

}

@keyframes swing3 {

0% {
	transform: rotate(0deg);
	transform-origin: right bottom;
}

25% {
	transform: rotate(-5deg);
}

50% {
	transform: rotate(-10deg);
}

75% {
	transform: rotate(-5deg);
}

100% {
	transform: rotate(0deg);
}

}

