@charset "utf-8";
@import url('https://www.nta.co.jp/akafu/east/common/css/common.css');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;400;500&family=Noto+Serif+JP:wght@400;700&display=swap');
@import url('https://use.fontawesome.com/releases/v5.6.3/css/all.css');

/* CSS Document */
html {
	scroll-behavior: smooth;
	scroll-padding-top: 60px;
}

#wrapper {
	width: 100%;
	margin: 0 auto 10px;
	padding: 0;
	font-size: 16px;
	line-height: 1.6;
	overflow: hidden;
}

#wrapper * {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

#wrapper a {
	word-break: break-all;
}

#wrapper img {
	vertical-align: bottom;
}

#wrapper h2,
#wrapper h3,
#wrapper h4 {
	font-weight: bold;
}

@media screen and (min-width: 760px) {
	.pc_none {
		display: none;
	}
}

@media screen and (max-width: 759.9px) {
	.sp_none {
		display: none;
	}
}

.disnon {
	display: none;
}

.text_red {
	color: #B20202;
}

.text_bold {
	font-weight: bold;
}

.text_normal {
	font-weight: normal;
}

.text_center {
	text-align: center;
}

.text_font_sans {
	font-family: 'Noto Sans JP', sans-serif;
}

.marker {
	background: linear-gradient(transparent 80%, #ffd22c 80%);
	font-weight: bold;
}

a.invalid {
	pointer-events: none;
}

a.godetail {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	text-decoration: none;
	background: orange;
	font-size: 100%;
	line-height: 1;
	color: #FFFFFF;
	border-radius: 20px;
	margin-bottom: 15px;
	box-shadow: 4px 4px 0 #DD4F20;
}

.aquarium_unit a.godetail {
	background: #58AF57;
	box-shadow: 4px 4px 0 #BAE0BF;
}

a.godetail:hover {
	color: #FFFFFF !important;
	text-decoration: none !important;
	opacity: 1;
	box-shadow: none;
	transform: translateX(4px) translateY(4px);
}

a.godetail.gray {
	background: #8A8A8A;
	pointer-events: none;
	box-shadow: none;
}

@media screen and (max-width: 759.9px) {
	a.godetail {
		height: 35px;
		font-size: 12px;
		box-shadow: 2px 2px 0 #DD4F20;
	}

	a.godetail:hover {
		transform: translateX(2px) translateY(2px);
	}

}

.slash {
	width: fit-content;
	margin: 0 auto 20px;
	padding: 0 30px;
	background: url("../images/slash_left.svg") no-repeat center left, url("../images/slash_right.svg") no-repeat center right;
	background-size: 26px;
}

@media screen and (max-width: 759.9px) {
	.slash {
		padding: 0 15px;
		background-size: 10px;
		font-size: 12px;
	}
}

p.credit {
	position: absolute;
	top: 10px;
	right: 10px;
	text-align: right;
	background: rgba(0, 0, 0, 0.3);
	color: #FFFFFF;
	border-radius: 10px;
	padding: 0 10px;
	font-size: 90%;
}

/*--------.page_roof-------------*/
.page_roof {
	position: relative;
	width: 100%;
	background: url("../images/bg_top.jpg")no-repeat center;
	background-size: 100% auto;
	height: 450px;
	box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
}

.page_roof>.inner {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	max-width: 950px;
	margin: 0 auto;
}

.page_roof h2 {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.page_roof img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

@media screen and (max-width: 759.9px) {
	.page_roof {
		height: 28vh;
	}
}

/*-----------------------*/
.bubbles {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1;
}

.bubble {
	position: absolute;
	bottom: 0;
	width: 40px;
	height: 40px;
	background: url("../images/bubble1.png") no-repeat center;
	background-size: contain;
	animation: bubble 10s ease-in infinite;
}

@keyframes bubble {
	0% {
		bottom: 0;
		transform: translateX(0);
	}

	50% {
		transform: translateX(100px);
	}

	100% {
		bottom: 1000px;
	}
}

.bubble:nth-child(1) {
	width: 20px;
	height: 20px;
	left: 10%;
	animation-duration: 5s;
}

.bubble:nth-child(2) {
	width: 30px;
	height: 30px;
	left: 20%;
	animation-delay: 1s;
	transform: scale(-1, 1)
}

.bubble:nth-child(3) {
	width: 30px;
	height: 30px;
	left: 30%;
	animation-duration: 3s;
}

.bubble:nth-child(4) {
	width: 50px;
	height: 50px;
	left: 45%;
	animation-duration: 6s;
	animation-delay: 2s;
}

.bubble:nth-child(5) {
	width: 10px;
	height: 10px;
	left: 60%;
	animation-duration: 3.5s;
}

.bubble:nth-child(6) {
	width: 30px;
	height: 30px;
	left: 70%;
	animation-duration: 5s;
}

.bubble:nth-child(7) {
	width: 25px;
	height: 25px;
	left: 80%;
	animation-duration: 4s;
}

/*-------------トップリード   --------------*/
#pageTopLead .inner {
	width: 100%;
	max-width: 950px;
	margin: 0 auto;
	padding: 20px 0;
	text-align: center;
}

#pageTopLead .inner p {
	font-size: 160%;
	font-weight: bold;
}

@media screen and (max-width: 759.9px) {
	#pageTopLead .inner p {
		font-size: 120%;
	}
}

/*-------------ナビ-   --------------*/
.fixed {
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 20;
}

.paddingTop {
	padding-top: 60px;
}

@media (max-width:767px) {
	.paddingTop {
		padding-top: 50px;
	}
}

#pageNav {
	background: #0ACDBD;
	width: 100%;
	z-index: 20;
	padding: 0;
	box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.3);
}

#pageNav ul a,
#pageNav ul a:hover {
	color: #FFFFFF !important;
	text-decoration: none !important;
}

#pageNav ul {
	width: 100%;
	max-width: 950px;
	margin: 0 auto;
	padding: 0;
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
}

#pageNav a {
	width: calc(100%/5);
	text-align: center;
	border-left: 1px solid #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}

#pageNav ul a:first-child {
	border-left: none;
}

#pageNav ul a li {
	width: 100%;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 100%;
}

#pageNav ul a:hover,
#pageNav ul a.selected {
	background-color: #061c59;
	opacity: 1;
}

@media screen and (max-width: 759.9px) {
	#pageNav a {
		width: auto;
		flex-grow: 1;
	}

	#pageNav ul a li {
		height: 50px;
		font-size: 90%;
	}
}

/*-------------ページコンテンツ   --------------*/
.pageContent {
	width: 100%;
	margin: 0 auto;
	padding: 50px 0;
}

.pageContent .inner {
	width: 98%;
	max-width: 950px;
	margin: 0 auto;
}

/*---------トップリード-----------*/
#toplead {
	text-align: center;
	margin-bottom: 20px;
	background: #FFFFFF;
	padding-top: 30px;
}

#toplead .inner>p {
	font-size: 200%;
}

#toplead .inner>h2 {
	font-size: 300%;
	margin-bottom: 30px;
}

#toplead .guide {
	margin-bottom: 20px;
}

#toplead .icon_unit {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
}

#toplead .icon_unit li {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	background: #dee9ef;
	padding: 0 20px 0 0;
	height: 60px;
	border-radius: 40px;
	font-size: 120%;
}

#toplead .icon_unit li img {
	width: 60px;
	height: auto;
}

#toplead .guide p.attention {
	font-size: 14px;
	text-indent: -1em;
	margin: 10px auto;
	text-align: left;
	width: fit-content;
}

@media screen and (max-width: 759.9px) {
	#toplead .inner>p {
		font-size: 140%;
	}

	#toplead .inner>h2 {
		font-size: 200%;
		margin-bottom: 30px;
	}

	#toplead .icon_unit {
		display: flex;
		justify-content: center;
		align-items: center;
		flex-wrap: wrap;
		gap: 5%;
		margin: 0 auto;
	}

	#toplead .icon_unit li {
		width: 45%;
		height: 50px;
		padding: 0 15px 0 0;
		gap: 0;
		border-radius: 30px;
		font-size: 100%;
		justify-content: space-between;
	}

	#toplead .icon_unit li img {
		width: 50px;
		height: auto;
	}
}

/*---------エリアタイトル-----------*/
.ribbon {
	width: 100%;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	font-size: 200%;
	color: #FFFFFF;
	background: #dc143c;
	margin-bottom: 30px;
}

.ribbon:before {
	position: absolute;
	content: '';
	top: 100%;
	left: 0;
	border: none;
	border-bottom: solid 15px transparent;
	border-right: solid 20px #66cfdf;
}

.ribbon:after {
	position: absolute;
	content: '';
	top: 100%;
	right: 0;
	border: none;
	border-bottom: solid 15px transparent;
	border-left: solid 20px #66cfdf;
}

@media screen and (max-width: 759.9px) {
	.ribbon {
		height: 40px;
		font-size: 140%;
	}
}


/*---------施設unit-----------*/
.box_unit {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 50px;
}

.aquarium_unit {
	display: flex;
	flex-wrap: wrap;
	gap: 2%;
}

.aquarium_unit h2 {
	width: 80%;
	font-size: 160%;
	text-align: center;
	margin: 0 auto 30px;
	color: #FFFFFF;
	background: #061c59;
	border-radius: 30px;
	padding: 5px 0 0;
}

@media screen and (max-width: 759.9px) {
	.aquarium_unit h2 {
		font-size: 120%;
		padding: 2px 0;
	}
}

/*---------施設-----------*/

.box_unit .box {
	width: 48%;
	border: 1px solid #CCC;
	position: relative;
	margin-bottom: 20px;
	padding-bottom: 20px;
	background: #FFFFFF;
	display: flex;
	flex-direction: column;
}

.box_limited {
	background-color: #fff864;
	border: solid 2px #ffe100;
}


.title {
	position: relative;
	display: block;
}

.title_limited {
	background-color: #fff864;
}

.limited {
	background-image: radial-gradient(circle, rgb(255 6 6), rgb(255 84 84) 80%);
	padding: 5px 20px;
	text-align: center;
	bottom: -20px;
	font-weight: 600;
	position: absolute;
	border-radius: 5px;
	z-index: 9;
	margin: 0 auto;
	width: fit-content;
	left: 0;
	right: 0;
	font-family: sans-serif;
	color: #fff;
	border: solid 2px #ffffff;
}

.limited_p {
	background-color: #fff864;
	text-align: center;
	padding: 15px;
	margin: 0 0 15px 0;
	font-weight: 600;
	font-size: 110%;
	color: #c51f00;
	font-family: sans-serif;
}

@media screen and (max-width: 759.9px) {
	.box_unit .box {
		width: 80%;
		margin: 0 auto 20px;
	}
}


.box .area {
	position: absolute;
	top: 0;
	left: 0;
	background: #000;
	padding: 0 10px;
	color: #FFFFFF;
	font-size: 100%;
}

.box .icon {
	position: absolute;
	top: 15px;
	right: 5px;
	width: 60px;
	height: 60px;
	object-fit: contain;
	z-index: 10;
}

.box h3 {
	text-align: center;
	font-size: 140%;
	margin: 30px 0 20px;
	padding: 0 70px 0 40px;
}

.box .photo {
	width: 100%;
	margin-bottom: 20px;
}

.box .photo img {
	width: 100%;
}

.box .jump_hp {
	width: 90%;
	display: block;
	margin: 0 auto 20px;
	background: #D2D1E0;
	border-radius: 10px;
	text-align: center;
	padding: 8px;
	line-height: 1;
	color: inherit;
}

.box i {
	margin-left: 5px;
}

.box .yoyaku {
	margin: auto 0;
}

.box .yoyaku_unit {
	width: 90%;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 2%;
}

.box .yoyaku_unit .br {
	width: 100%;
}

.box .yoyaku_unit a.godetail {
	width: 49%;
}

.box .yoyaku_unit a.godetail.width60 {
	width: 60%;
}

.box .yoyaku_unit p.tokuten {
	font-size: 14px;
	background: #E9F7F7;
	padding: 5px;
	margin-top: 10px;
}

/* .box .yoyaku_unit p.tokuten_takeshima {
	font-size: 14px;
	background: #e7fafa;
	padding: 5px;
	margin: -10px 0 10px;
} */

@media screen and (max-width: 759.9px) {
	.box .jump_hp {
		padding: 5px;
		font-size: 14px;
	}

	.box .area {
		font-size: 90%;
	}

	.box .icon {
		position: absolute;
		top: 10px;
		right: 5px;
		width: 50px;
		height: 50px;
	}

	.box h3 {
		font-size: 120%;
		padding: 0 60px 0 10px;
		text-align: left;
	}

	.box .yoyaku_unit a.godetail.width60 {
		width: 75%;
	}

	.box .yoyaku_unit p.tokuten {
		font-size: 12px;
	}

}



.aquarium_unit .box {
	width: 31%;
	border: 1px solid #CCC;
	position: relative;
	background: #FFFFFF;
	display: flex;
	flex-direction: column;
	margin-bottom: 20px;
	padding-bottom: 10px;
}

@media screen and (max-width: 759.9px) {
	.aquarium_unit .box {
		width: 47%;
		margin: 0 1% 20px;
	}
}

.aquarium_unit .box .area {
	position: absolute;
	top: 0;
	left: 0;
	background: #000;
	padding: 0px 10px;
	color: #FFFFFF;
	font-size: 90%;
}

.aquarium_unit .box h3 {
	text-align: center;
	font-size: 120%;
	margin: 30px 0 10px;
	padding: 0 10px;
}

.aquarium_unit .box .yoyaku_unit a.godetail {
	width: 90%;
}

@media screen and (max-width: 759.9px) {
	.aquarium_unit .box h3 {
		text-align: left;
		font-size: 100%;
	}

	.aquarium_unit .box .yoyaku_unit a.godetail {
		width: 100%;
	}

}

/*-----inboxswiper--------------------*/

#Hokkaido {
	background-image: url(../images/bg1.png);
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: top center;
	background-color: #2091e6;
}

#Tohoku {
	background-image: url("../images/bg_top.png"), url("../images/bg_bottom.png");
	background-repeat: no-repeat;
	background-size: 100% auto, 100% auto;
	background-position: top center, bottom center;
	background-color: #2869be;
}

#Kanto {
	background-image: url(../images/bg1.png);
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: top center;
	background-color: #2091e6;
}

#Izu-Hakone {
	background-image: url("../images/bg_top.png"), url("../images/bg_bottom.png");
	background-repeat: no-repeat;
	background-size: 100% auto, 100% auto;
	background-position: top center, bottom center;
	background-color: #2869be;
}

#Chubu {
	background-image: url(../images/bg1.png);
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: top center;
	background-color: #2091e6;
}

/*-----inboxswiper--------------------*/
.swiper-container.inbox .swiper-slide img {
	width: 100%;
}

/* ドットインジケーターの色*/
.swiper-pagination.inbox .swiper-pagination-bullet {
	opacity: 0.6;
}

/* ドットインジケーターの位置*/
.swiper-container.inbox .swiper-pagination {
	bottom: 5px;
}

.swiper-pagination.inbox .swiper-pagination-bullet-active {
	background: #FFFFFF;
}

/* prev&next 矢印の色とサイズ*/
.swiper-button-prev.inbox::after,
.swiper-button-next.inbox::after {
	font-size: 20px;
	color: #FFF;
	font-weight: bold;
}

@media screen and (max-width: 759.9px) {

	.swiper-button-prev.inbox::after,
	.swiper-button-next.inbox::after {
		font-size: 15px;
	}
}