@charset "UTF-8";

/*---common---*/
html {
	font-size: 100%;
}

body {
	margin: 0;
	padding: 0;
	font-size: 0.875rem;
}

* {
	box-sizing: border-box;
}

img {
	vertical-align: top;
	max-width: 100%;
	height: auto;
}

.breadcrumbs {
	padding-top: 91px;
}

@media screen and (max-width:750px) {
	.breadcrumbs {
		padding-top: 71px;
	}
}

.font__roboto {
	font-family: "Roboto", sans-serif;
}

@media screen and (max-width:750px) {
	.sp-none {
		display: none !important;
	}
}

/*---content---*/
main {
	height: auto;
	background-color: #F0F0F0;
}

.main__visual {
	height: auto;
	border-bottom-left-radius: 64px;
	border-bottom-right-radius: 64px;
	overflow: hidden;
	display: flex;
	margin-bottom: 120px;
}

@media screen and (max-width:750px) {
	.main__visual {
		border-bottom-left-radius: 24px;
		border-bottom-right-radius: 24px;
		flex-direction: column;
		margin-bottom: 40px;
	}
}

.main__visual .main__title {
	width: calc(((1920 - 1024) / 1920) * 100%);
	background: linear-gradient(180deg, rgba(85, 156, 208, 1) 0%, rgba(25, 50, 100, 1) 100%);
	display: flex;
	justify-content: center;
}

@media screen and (max-width:750px) {
	.main__visual .main__title {
		width: 100%;
	}
}

.main__visual .main__title .inner-text {
	display: flex;
	height: 100%;
	flex-direction: column;
	justify-content: center;
	margin-left: 4em;
}

@media screen and (max-width:750px) {
	.main__visual .main__title .inner-text {
		width: 100%;
		margin-left: 0;
		padding: 3.125em 20px;
	}
}

.main__visual .main__title .inner-text::before {
	content: "";
	width: 1px;
	height: 50%;
	background-color: #fff;
	display: block;
	margin: 0 auto;
}

@media screen and (max-width:750px) {
	.main__visual .main__title .inner-text::before {
		display: none;
	}
}

.main__visual .main__title .inner-text h1 {
	font-weight: bold;
	font-size: clamp(42px, 3.75vw, 72px);
	color: #fff;
	letter-spacing: 0.08em;
	line-height: 1.4444em;
	margin-top: 0.5em;
	margin-bottom: 0.5em;
}

@media screen and (max-width:750px) {
	.main__visual .main__title .inner-text h1 {
		font-size: 2em;
		margin-top: 0;
	}
}

.main__visual .main__title .inner-text p {
	font-weight: bold;
	font-size: clamp(11.666px, 1.04vw, 20px);
	color: #fff;
	line-height: 2.4em;
	margin-bottom: 3em;
}

@media screen and (max-width:750px) {
	.main__visual .main__title .inner-text p {
		font-size: 0.875em;
		line-height: 1.714em;
		margin-bottom: 0;
	}
}

.main__visual .main__title .inner-text .scroll__icon {
	font-weight: 600;
	font-size: 1em;
	color: #fff;
	letter-spacing: 0.08em;
	line-height: 1.5em;
	display: flex;
	flex-direction: column;
	align-items: center;
	height: 100%;
}

@media screen and (max-width:750px) {
	.main__visual .main__title .inner-text .scroll__icon {
		display: none;
	}
}

.main__visual .main__title .inner-text .scroll__icon::after {
	content: "";
	width: 1px;
	height: 100%;
	background-color: #fff;
	display: block;
	margin: 0 auto;
	order: 2;
}

.main__visual .main__title .inner-text .scroll__icon span {
	margin-bottom: 0.5em;
}

.main__visual .main__title .inner-text .scroll__icon i {
	width: 19px;
	height: 19px;
	min-height: 19px;
	min-width: 19px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border: 1px solid #fff;
}

.main__visual .main__title .inner-text .scroll__icon i::after {
	content: "";
	width: 11px;
	height: 11px;
	background-color: #fff;
	border-radius: 50%;
	display: block;
}

.main__visual .carousel-wrapper {
	width: calc((1024 / 1920) * 100%);
	position: relative;
}

@media screen and (max-width:750px) {
	.main__visual .carousel-wrapper {
		width: 100%;
	}
}

.main__visual .carousel {
	position: relative;
	width: 100%;
	padding-top: 100%;
	display: flex;
	overflow: hidden;
}

@media screen and (max-width:750px) {
	.main__visual .carousel {
		padding-top: 0;
		aspect-ratio: 375 / 280;
	}
}

.main__visual .slide {
	width: 100%;
	height: 100%;
	position: absolute;
	inset: 0;
	opacity: 0;
	z-index: 0;
	pointer-events: none;
	transition: none;
}

.main__visual .slide.entering {
	opacity: 0;
	z-index: 2;
	animation: fadeIn 900ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.main__visual .slide.active {
	opacity: 1;
	z-index: 1;
	pointer-events: auto;
}

.main__visual .slide.leaving {
	opacity: 1;
	z-index: 0;
	animation: fadeIn 900ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes fadeOut {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

.main__visual .slide img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	object-fit: cover;
}

.main__visual .slide .over-text {
	width: calc(32px * 7 + 16px * 7 + 32px);
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	position: absolute;
	bottom: 140px;
	right: min(15.625%, 160px);
	z-index: 2;
}

@media screen and (max-width:750px) {
	.main__visual .slide .over-text {
		width: 100%;
		flex-direction: column;
		align-items: flex-end;
		bottom: 72px;
		right: 20px;
	}
}

.main__visual .slide .over-text svg {
	width: 210px;
}

@media screen and (max-width:750px) {
	.main__visual .slide .over-text svg {
		width: 128px;
		height: auto;
	}
}

.main__visual .slide .over-text .jptx {
	font-weight: bold;
	font-size: 2em;
	margin-left: 16px;
	color: #fff;
}

@media screen and (max-width:750px) {
	.main__visual .slide .over-text .jptx {
		font-size: 1em;
		margin-top: 0.15em;
	}
}

.main__visual .slide .over-text .entx {
	width: 100%;
	font-weight: 600;
	font-size: 1.25em;
	margin-top: 16px;
	color: #fff;
	letter-spacing: 0.08em;
	text-align: left;
}

@media screen and (max-width:750px) {
	.main__visual .slide .over-text .entx {
		width: auto;
		font-size: 0.625em;
		margin-top: 0.5em;
	}
}

.main__visual .controls {
	display: flex;
	align-items: center;
	position: absolute;
	bottom: 80px;
	right: min(15.625%, 160px);
	z-index: 2;
}

@media screen and (max-width:750px) {
	.main__visual .controls {
		bottom: 20px;
		right: 20px;
	}
}

.main__visual .play-btn {
	width: 32px;
	height: 32px;
	display: flex;
	border: 1px solid #fff;
	border-radius: 50%;
	align-items: center;
	justify-content: center;
	position: relative;
	margin-left: 16px;
	transition: opacity .3s;
}

@media screen and (max-width:750px) {
	.main__visual .play-btn {
		margin-left: 8px;
	}
}

.main__visual .play-btn:hover {
	opacity: 0.7;
}

.main__visual .play-btn:focus-visible {
	outline: 2px solid orange;
}

.main__visual .play-btn #icon-pause,
.main__visual .play-btn #icon-play {
	display: flex;
	gap: 6px;
}

.main__visual .play-btn #icon-pause::before,
.main__visual .play-btn #icon-pause::after {
	content: "";
	width: 2px;
	height: 10px;
	border-radius: 9999px;
	background-color: #fff;
	display: block;
}

.main__visual .play-btn #icon-play::before {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-top: 7px solid transparent;
	border-bottom: 7px solid transparent;
	border-left: 10px solid #fff;
	border-right: 0;
	margin-left: 1px;
	display: block;
	;
}

.main__visual .dots {
	display: flex;
	gap: 16px;
	align-items: center;
}

@media screen and (max-width:750px) {
	.main__visual .dots {
		gap: 8px;
	}
}

.main__visual .dot {
	width: 32px;
	height: 3px;
	border-radius: 9999px;
	background-color: #fff;
	opacity: 0.3;
	transition: opacity .3s;
}

@media screen and (max-width:750px) {
	.main__visual .dot {
		width: 16px;
		height: 1px;
	}
}

.main__visual .dot:hover {
	opacity: 1;
}

.main__visual .dot.active {
	opacity: 1;
}

.main__visual .dot:focus-visible {
	outline: 2px solid orange;
}

.content__area {
	width: 1000px;
	margin: 0 auto;
}

@media screen and (max-width:750px) {
	.content__area {
		width: 100%;
	}
}

.content__area .inner__content {
	padding-bottom: 120px;
}

@media screen and (max-width:750px) {
	.content__area .inner__content {
		padding-left: 20px;
		padding-right: 20px;
		padding-bottom: 40px;
	}
}

.content__area .inner__content h2 {
	font-size: 3em;
	font-weight: bold;
	color: #193264;
	letter-spacing: 0.18em;
	line-height: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 1.5em;
}

@media screen and (max-width:750px) {
	.content__area .inner__content h2 {
		font-size: 2em;
		letter-spacing: 0.16em;
		margin-bottom: 1.25em;
	}
}

.content__area .inner__content h2::after {
	content: "";
	width: 80px;
	height: 2px;
	background-color: #193264;
	margin-top: 0.666666em;
}

@media screen and (max-width:750px) {
	.content__area .inner__content h2::after {
		width: 40px;
		height: 1px;
		margin-top: 0.512em;
	}
}

.content__area .inner__content h2.border-none::after {
	display: none;
}

.content__area .inner__content h3 {
	font-size: 2.1875em;
	font-weight: bold;
	color: #0068B5;
	line-height: 1.3714em;
	letter-spacing: 0.16em;
	border-bottom: 2px solid #0068B5;
	display: inline-block;
	padding-bottom: 0.25em;
	margin-bottom: 1em;
}

@media screen and (max-width:750px) {
	.content__area .inner__content h3 {
		font-size: 1.5em;
		border-bottom: 1px solid #0068B5;
		padding-bottom: 0.15em;
		margin-bottom: 0.75em;
	}
}

.content__area .inner__content p {
	font-size: 1em;
	line-height: 2em;
}

@media screen and (max-width:750px) {
	.content__area .inner__content p {
		font-size: 0.75em;
		line-height: 2em;
	}
}

.content__area .inner__content .mtx+p {
	margin-top: 1em;
}

@media screen and (max-width:750px) {
	.content__area .inner__content .mtx+p {
		margin-top: 0.5em;
	}
}

.content__area .inner__content p.mtx {
	font-size: 1.25em;
	line-height: 2em;
}

@media screen and (max-width:750px) {
	.content__area .inner__content p.mtx {
		font-size: 1em;
	}
}

.content__area .inner__content p.ctx {
	text-align: center;
}

@media screen and (max-width:750px) {
	.content__area .inner__content p.ctx {
		text-align: left;
	}
}

.content__area .inner__content picture.toppan-gateway__logo {
	width: 875px;
	display: block;
	margin: 0 auto 3em;
}

@media screen and (max-width:750px) {
	.content__area .inner__content picture.toppan-gateway__logo {
		width: 241px;
		margin: 0 0 2em;
	}
}

.content__area .inner__content figure.toppan-gateway__image {
	width: 100%;
	aspect-ratio: 1000 / 640;
	border-radius: 24px;
	overflow: hidden;
	margin-top: 3em;
}

@media screen and (max-width:750px) {
	.content__area .inner__content figure.toppan-gateway__image {
		border-radius: 8px;
		margin-top: 1em;
	}
}

.content__area .inner__content figure.toppan-gateway__image img {
	object-fit: cover;
}

.area__content .map__content {
	width: 630px;
	margin: 50px auto 40px;
	position: relative;
}

@media screen and (max-width:750px) {
	.area__content .map__content {
		width: 315px;
		padding: 0 10px;
		margin: 30px auto 25px;
	}
}

.area__content .tab-list {
	display: flex;
	flex-wrap: wrap;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.area__content .tab-list .tab-btn {
	position: absolute;
	transition: opacity .3s, transform .2s;
	border-radius: 50%;
	line-height: 0;
	box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
	width: 56px;
	transform-origin: center bottom;
}

.area__content .tab-list .tab-btn svg{
	width: 100%;
	height: auto;
}

@media screen and (max-width:750px) {
	.area__content .tab-list .tab-btn {
		width: 32px;
	}
}

.area__content .tab-list .tab-btn#tab-a {
	top: 233px;
	left: 437px;
}

@media screen and (max-width:750px) {
	.area__content .tab-list .tab-btn#tab-a {
		top: 102px;
		left: 183px;
	}
}

.area__content .tab-list .tab-btn#tab-b {
	top: -16px;
	left: 411px;
}

@media screen and (max-width:750px) {
	.area__content .tab-list .tab-btn#tab-b {
		top: -16px;
		left: 200px;
	}
}

.area__content .tab-list .tab-btn#tab-c {
	top: 117px;
	left: 523px;
}

@media screen and (max-width:750px) {
	.area__content .tab-list .tab-btn#tab-c {
		top: 47px;
		left: 245px;
	}
}

.area__content .tab-list .tab-btn#tab-d {
	top: -16px;
	left: 128px;
}

@media screen and (max-width:750px) {
	.area__content .tab-list .tab-btn#tab-d {
		top: -16px;
		left: 60px;
	}
}

.area__content .tab-list .tab-btn#tab-e {
	top: 274px;
	left: 90px;
}

@media screen and (max-width:750px) {
	.area__content .tab-list .tab-btn#tab-e {
		top: 109px;
		left: 45px;
	}
}

.area__content .tab-list .tab-btn:hover {
	opacity: 0.7;
}

.area__content .tab-list .tab-btn:focus-visible {
	outline: 2px solid orange;
}

.area__content .tab-list .tab-btn[aria-selected="true"] {
	transform: scale(1.428);
	opacity: 1 !important;
}

.area__content .tab-list .tab-btn[aria-selected="true"] svg path#area-path2 {
	fill: url(#linear-gradient);
}

.area__content .tab-list .tab-btn[aria-selected="true"] svg path#area-path3 {
	fill: #fff;
}

.area__content .tab-list .tab-btn[aria-selected="true"] svg path#area-path4 {
	fill: url(#linear-gradient-2);
}

.area__content .panel-container {
	position: relative;
}

.area__content .panel {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	background: #fff;
	display: flex;
	justify-content: space-between;
	gap: 2em;
	border-radius: 24px;
	box-shadow: 8px 8px 24px rgba(0, 0, 0, 0.1);
	padding: 1.5em 2em;
	opacity: 0;
	pointer-events: none;
	transition: opacity 300ms ease;
}

@media screen and (max-width:750px) {
	.area__content .panel {
		border-radius: 8px;
		box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1);
		flex-direction: column;
		justify-content: flex-start;
	}
}

.area__content .panel.is-active {
	opacity: 1;
	pointer-events: auto;
}

.area__content .panel .text-area {
	width: calc(100% - 360px - 2em);
	padding: 1em 0;
}

@media screen and (max-width:750px) {
	.area__content .panel .text-area {
		width: 100%;
		order: 1;
		padding: 0;
	}
}

.area__content .panel .text-area h4 {
	font-size: 1.5em;
	font-weight: bold;
	line-height: 1.3333em;
	color: #0068B5;
	display: block;
	padding-bottom: 1em;
	border-bottom: 2px solid #0068B5;
}

@media screen and (max-width:750px) {
	.area__content .panel .text-area h4 {
		font-size: 1.25em;
		padding-bottom: 1em;
	}
}

.area__content .panel .text-area p {
	margin-top: 1.25em;
}

@media screen and (max-width:750px) {
	.area__content .panel .text-area p {
		margin-top: 1em;
		font-size: 1em;
	}
}

.area__content .panel figure {
	width: 360px;
	aspect-ratio: 360 / 272;
	border-radius: 10px;
	overflow: hidden;
	position: relative;
	z-index: 1;
}

@media screen and (max-width:750px) {
	.area__content .panel figure {
		width: 100%;
		border-radius: 8px;
	}
}

.area__content .panel figure img {
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.content__area .inner__content ul.gallery {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	width: calc(100% + 25px);
	margin-top: 2em;
	margin-left: -12.5px;
	margin-bottom: -40px;
}

@media screen and (max-width:750px) {
	.content__area .inner__content ul.gallery {
		width: 100%;
		justify-content: flex-start;
		margin-top: 1em;
		margin-left: 0;
		margin-bottom: 0;
		gap: 15px;
	}
}

.content__area .inner__content ul.gallery li {
	width: calc((100% - 25px * 3) / 3);
	margin: 0 12.5px 40px;
	line-height: 0;
}

@media screen and (max-width:750px) {
	.content__area .inner__content ul.gallery li {
		width: calc((100% - 15px) / 2);
		margin: 0;
	}
}

.content__area .inner__content ul.gallery li button {
	position: relative;
	transition: opacity .3s;
	width: 100%;
}

.content__area .inner__content ul.gallery li button:hover {
	opacity: 0.7;
}

.content__area .inner__content ul.gallery li button::after {
	content: "";
	width: 40px;
	height: 40px;
	background-image: url(/ja/showroom/img/plaza21/modal-icon.svg);
	background-repeat: no-repeat;
	background-size: 20px;
	background-position: center center;
	background-color: #fff;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
	position: absolute;
	bottom: 12px;
	right: 12px;
	z-index: 2;
}

@media screen and (max-width:750px) {
	.content__area .inner__content ul.gallery li button::after {
		width: 20px;
		height: 20px;
		background-size: 10px;
		box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
		bottom: 8px;
		right: 8px;
	}
}

.content__area .inner__content ul.gallery li button figure {
	width: 100%;
	aspect-ratio: 317 / 240;
	border-radius: 10px;
	overflow: hidden;
	position: relative;
	z-index: 1;
	line-height: 0;
}

.content__area .inner__content ul.gallery li button:focus-visible figure {
	outline: 2px solid orange;
}

@media screen and (max-width:750px) {
	.content__area .inner__content ul.gallery li button figure {
		border-radius: 4px;
	}
}

.content__area .inner__content ul.gallery li button figure img {
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.8);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1000;
	opacity: 0;
	padding: 20px;
	visibility: hidden;
	transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal-overlay.is-open {
	opacity: 1;
	visibility: visible;
}

.modal-area {
	position: relative;
	transform: scale(0.94);
	transition: transform 0.25s ease;
	z-index: 10;
}

.modal-overlay.is-open .modal-area {
	transform: scale(1);
	height: auto;
	opacity: 1;
}

.modal-area img {
	display: block;
	max-width: 70vw;
	max-height: 80vh;
	object-fit: contain;
	border-radius: 24px;
}

@media screen and (max-width:750px) {
	.modal-area img {
		max-width: 100%;
		border-radius: 8px;
	}
}

.modal-close {
	position: absolute;
	top: -64px;
	right: -64px;
	background-color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.5);
	color: #fff;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	font-size: 1rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.15s;
	text-indent: -9999px;
}

@media screen and (max-width:750px) {
	.modal-close {
		width: 32px;
		height: 32px;
		top: -40px;
		right: 0;
	}
}

.modal-close span {
	display: block;
	position: relative;
	width: 30px;
	height: 30px;
	transform: rotate(45deg);
	transform-origin: center;
}

@media screen and (max-width:750px) {
	.modal-close span {
		width: 15px;
		height: 15px;
	}
}

.modal-close span::before {
	content: "";
	width: 1px;
	height: 30px;
	display: block;
	position: absolute;
	top: 0;
	left: calc(50% - 0.5px);
	background: #0068B5;
}

@media screen and (max-width:750px) {
	.modal-close span::before {
		height: 15px;
	}
}

.modal-close span::after {
	content: "";
	width: 30px;
	height: 1px;
	display: block;
	position: absolute;
	top: calc(50% - 0.5px);
	left: 0;
	background: #0068B5;
}

@media screen and (max-width:750px) {
	.modal-close span::after {
		width: 15px;
	}
}

.modal-close:hover {
	opacity: 0.8;
}

.modal-close:focus-visible {
	outline: 2px solid orange;
}

body.modal-open {
	overflow: hidden;
}

.white-bg__area {
	width: 100%;
	background-color: #fff;
	padding-top: 120px;
	border-top-left-radius: 64px;
	border-top-right-radius: 64px;
	box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.05);
}

@media screen and (max-width:750px) {
	.white-bg__area {
		padding-top: 60px;
		border-top-left-radius: 24px;
		border-top-right-radius: 24px;
		box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.05);
	}
}

.white-bg__area>.content__area .inner__content {
	margin-bottom: 80px;
	padding-bottom: 0;
}

@media screen and (max-width:750px) {
	.white-bg__area>.content__area .inner__content {
		margin-bottom: 60px;
	}
}

@media screen and (max-width:750px) {
	.white-bg__area>.content__area .inner__content p {
		font-size: 1em;
	}
}

.white-bg__area h2.logo {
	width: 253px;
	display: block;
	margin: 0 auto 1em;
}

.white-bg__area h2.logo svg {
	width: 100%;
	height: auto;
}

@media screen and (max-width:750px) {
	.white-bg__area h2.logo {
		width: 168px;
	}
}

.white-bg__area .anker__tab {
	display: flex;
	flex-wrap: wrap;
	gap: 25px;
	justify-content: center;
}

@media screen and (max-width:750px) {
	.white-bg__area .anker__tab {
		gap: 15px;
		justify-content: flex-start;
	}
}

.white-bg__area .anker__tab li {
	width: calc((100% - 25px * 3) / 4);
}

@media screen and (max-width:750px) {
	.white-bg__area .anker__tab li {
		width: calc((100% - 15px) / 2);
	}
}

.white-bg__area .anker__tab li a {
	width: 100%;
	height: 48px;
	font-size: 1.25em;
	font-weight: bold;
	display: flex;
	align-items: center;
	border: 2px solid #0068B5;
	border-radius: 9999px;
	color: #0068B5;
	padding: 0 20px;
	transition: background-color .3s, color .3s;
}

@media screen and (max-width:750px) {
	.white-bg__area .anker__tab li a {
		height: 40px;
		font-size: 0.9em;
		padding: 0 15px;
	}
}

.white-bg__area .anker__tab li a:hover {
	background-color: #0068B5;
	color: #fff;
}

.white-bg__area .anker__tab li a:focus-visible {
	outline: 2px solid orange;
}

.white-bg__area .anker__tab li a::after {
	content: "";
	display: inline-block;
	width: 10px;
	height: 10px;
	border-bottom: 3px solid #0068B5;
	border-right: 3px solid #0068B5;
	transform: rotate(45deg);
	margin-top: -4px;
	margin-left: auto;
	transition: border .3s;
}

.white-bg__area .anker__tab li a:hover::after {
	border-bottom: 3px solid #fff;
	border-right: 3px solid #fff;
}

.white-bg__area .anker__tab li a>svg {
	width: 84px;
	margin-right: 0.5em;
}

@media screen and (max-width:750px) {
	.white-bg__area .anker__tab li a>svg {
		width: 64px;
	}
}

.white-bg__area .anker__tab li a>svg>path {
	transition: all .3s;
}

.white-bg__area .anker__tab li a:hover>svg>path {
	fill: #fff;
}

.white-bg__area>.content__area .inner__content .images__area {
	display: flex;
	justify-content: space-between;
	margin-bottom: 2em;
}

@media screen and (max-width:750px) {
	.white-bg__area>.content__area .inner__content .images__area {
		align-items: flex-start;
		margin-bottom: 1.25em;
	}
}

.white-bg__area>.content__area .inner__content .images__area figure {
	width: 100%;
	aspect-ratio: 920 / 512;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 8px 8px 24px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width:750px) {
	.white-bg__area>.content__area .inner__content .images__area figure {
		border-radius: 8px;
		box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1);
	}
}

.white-bg__area>.content__area .inner__content .images__area figure img {
	object-fit: cover;
}

.white-bg__area>.content__area .inner__content .images__area>p.title-tx {
	color: #0068B5;
	opacity: 1;
	width: 5.2em;
	padding: 0 1em;
	letter-spacing: 0.088em;
	line-height: 1.25em;
	display: flex;
	align-items: flex-end;
}

.white-bg__area>.content__area .inner__content .images__area>p.title-tx svg{
	width: 100%;
	height: auto;
	line-height: 0;
	font-size: 0;
}

@media screen and (max-width:750px) {
	.white-bg__area>.content__area .inner__content .images__area>p.title-tx {
		padding: 0 0 0 0.25em;
		width: 1.45em;
		line-height: 1;
	}
}

.white-bg__area>.content__area .inner__content a.blank-link {
	width: auto;
	height: 48px;
	font-size: 1em;
	font-weight: bold;
	display: inline-flex;
	align-items: center;
	border: 2px solid #0068B5;
	border-radius: 9999px;
	color: #0068B5;
	margin-top: 1.5em;
	padding: 0 35px;
	transition: background-color .3s, color .3s;
}

@media screen and (max-width:750px) {
	.white-bg__area>.content__area .inner__content a.blank-link {
		height: 40px;
		font-size: 0.75em;
		margin-top: 1.25em;
		padding: 0 15px;
	}
}

.white-bg__area>.content__area .inner__content a.blank-link:hover {
	background-color: #0068B5;
	color: #fff;
}

.white-bg__area>.content__area .inner__content a.blank-link:focus-visible {
	outline: 2px solid orange;
}

.white-bg__area>.content__area .inner__content a.blank-link::after {
	font-family: "toppan-icons";
	content: "\f10e";
	margin-left: 0em;
	font-size: 1.5em;
	transition: color .3s;
}

.white-bg__area>.content__area .inner__content a.blank-link:hover::after {
	color: #fff;
}

.white-bg__area>.content__area .inner__content>.access__area {
	width: 100%;
	background-color: #F0F0F0;
	border-radius: 16px;
	margin-top: 2em;
	padding: 1.5em 2em;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

@media screen and (max-width:750px) {
	.white-bg__area>.content__area .inner__content>.access__area {
		border-radius: 8px;
		margin-top: 1.25em;
		padding: 1.25em 1.25em;
	}
}

.white-bg__area>.content__area .inner__content>.access__area p.access-title {
	font-size: 0.875em;
	font-weight: bold;
	color: #0068B5;
	border-bottom: 2px solid #0068B5;
	display: inline-block;
}

@media screen and (max-width:750px) {
	.white-bg__area>.content__area .inner__content>.access__area p.access-title {
		border-bottom: 1px solid #0068B5;
		line-height: 1.75em;
	}
}

.white-bg__area>.content__area .inner__content>.access__area p.access-title+p {
	margin-top: 0.5em;
}

@media screen and (max-width:750px) {
	.white-bg__area>.content__area .inner__content>.access__area p.access-title+p {
		margin-top: 0.5em;
		font-size: 0.875em;
	}
}

.reservation__area {
	width: 100%;
	background: linear-gradient(180deg, rgba(85, 156, 208, 1) 0%, rgba(25, 50, 100, 1) 100%);
	margin-top: 120px;
	padding-top: 120px;
	padding-bottom: 120px;
	border-top-left-radius: 64px;
	border-top-right-radius: 64px;
}

@media screen and (max-width:750px) {
	.reservation__area {
		margin-top: 60px;
		padding-top: 60px;
		padding-bottom: 60px;
		border-top-left-radius: 24px;
		border-top-right-radius: 24px;
	}
}

.reservation__area .inner__content {
	padding-bottom: 0;
}

.reservation__area .inner__content h2 {
	color: #fff;
	margin-bottom: 1em;
}

.reservation__area .inner__content h2::after {
	background-color: #fff;
}

.reservation__area .inner__content ul li {
	font-size: 1.25em;
	font-weight: bold;
	line-height: 2em;
	color: #fff;
	margin-bottom: 2em;
	padding-left: 1.25em;
	position: relative;
}

@media screen and (max-width:750px) {
	.reservation__area .inner__content ul li {
		font-size: 0.75em;
		margin-bottom: 1.5em;
		padding-left: 2em;
	}
}

.reservation__area .inner__content ul li::before {
	content: "";
	width: 12px;
	height: 12px;
	display: block;
	background-color: #fff;
	border-radius: 50%;
	position: absolute;
	top: calc(6px + 0.3em);
	left: 0;
}

@media screen and (max-width:750px) {
	.reservation__area .inner__content ul li::before {
		top: calc(6px - 0.1em);
		left: 0;
	}
}

.reservation__area .inner__content ul li:last-child {
	margin-bottom: 0;
}