@charset "utf-8";
/* CSS Document */

/* body全体のスタイル */
body {
    font-family: "Noto Sans JP", sans-serif; /* フォント設定 */
	font-optical-sizing: auto; /* フォントサイズに合わせて細部を最適化 */
    background-color: white; /* 背景色の設定 */
    color: #003366; /* 文字色 */
	font-size: 16px;
}

/* ヘッダーのスタイル */
header {
    background-color: #003366; /* 背景色 */
    color: white; /* 文字色 */
    display: flex; /* ヘッダー全体を横並びにする */
    justify-content: space-between; /* ロゴとメニューを左右に配置 */
    align-items: center; /* 高さ方向で中央揃え */
    padding: 0px 20px; /* ヘッダー内の余白 */
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 60px;
	z-index: 9999;
}

/* ロゴのスタイル */
.header_logo img {
	width: 170px;
    height: auto;
	min-width: 150px;
}

.header_logo img:hover {
    opacity: 0.9;
  }

 .dp_nav{
        display: none;
    }

/* ハンバーガーメニューアイコンのスタイル */
#hamburger {
    display: block; /* モバイルビューでは表示 */
	cursor: pointer; /* クリック可能にする */
	z-index: 9999;
}

/* ハンバーガーメニューのアイコン内のスパンタグ（3本線） */
.hamburger_icon span {
    display: block;
    width: 30px;
    height: 4px;
    background-color: white;
    margin: 6px auto;
	border-radius: 2px;/*角丸*/
	transition: 0.3s ease; /* アニメーション */
}

/* ハンバーガーメニューが開いたときのアイコン変化 */
#hamburger.open span:nth-of-type(1) {
    transform: rotate(45deg); /* 上の線を45度回転 */
    position: relative;
    top: 10px;
}

#hamburger.open span:nth-of-type(2) {
    opacity: 0; /* 中央の線を透明に */
}

#hamburger.open span:nth-of-type(3) {
    transform: rotate(-45deg); /* 下の線を-45度回転 */
    position: relative;
    top: -10px;
}

#hamburger:hover {
    opacity: 0.9;
  }

/* スマートフォン向け（768px未満） */
.sp_nav {
    position: fixed; /* メニューを画面に固定 */
    top: 0;
    right: -300px; /* メニューが右側に隠れている */
    width: 300px;
    height: 100%;
    background-color: #003366; /* 背景色 */
    z-index: 9998;
    transition: right 0.5s ease; /* アニメーションでメニューを表示 */
    padding-top: 50px;

	
}

.nav_list1 {
    list-style: none;
    padding: 0;
    margin: 0 15px;
	display: flex; /* フレックスボックスを使用 */
    flex-wrap: wrap; /* アイテムを折り返す */
    justify-content: flex-start; /* 左寄せ */
		width: 100%; /* 親要素に対して幅100% */
    max-width: 300px; /* 最大幅を設定して中央に収める */
	align-items: flex-start; /* 高さ方向の上揃え */

}

.nav_list1 li {
    text-align: center;
    margin: 20px;
	width: 85px;
}

.nav_list1 li a {
    display: block;
    text-decoration: none;
    color: white;
    font-size: 18px;
}

.nav_list1 li a img {
    width: 50px;
    height: 50px;
}


.nav_list2{
	margin-left: 35px;
	padding-top: 0;
}

.nav_list2 li{
	margin: 20px 0;
}

.nav_list2 li a{
	font-size: 14px;
	color: white;
	text-decoration: underline;
}

header .SNSicons{
 	display: flex; /* 親要素がflexなので、これで子要素を横並びに */
	margin-top: 50px;
	margin-left: 20px;
}

.SNSicons li{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	margin-right: 10px;
	box-shadow: 3px 3px 2px 0px rgba(0, 0, 0, 0.5);
}

.SNSicons li:nth-child(1) {
    background-color: #FF6F61; /* 1番目のアイコンをコーラルピンクの円で囲む */
}

.SNSicons li:nth-child(2) {
    background-color: #FFB800; /* 2番目のアイコンを黄色の円で囲む */
}

.SNSicons li:nth-child(3) {
    background-color: #76D7E7; /* 1番目のアイコンを薄緑の円で囲む */
}

.SNSicons li:nth-child(4) {
    background-color: #FF6F61; /* 1番目のアイコンをコーラルピンクの円で囲む */
}

.SNSicons img {
    width: 30px; /* アイコンの幅 */
    height: 30px; /* アイコンの高さ */
    object-fit: contain; /* 画像のサイズを円内に収める */
    margin-top: 4px; /* 微調整して中央に合わせる */
}


.nav_list1 li:hover {
    filter: invert(50%) sepia(100%) saturate(500%) brightness(140%) hue-rotate(135deg);
  }

.nav_list2 li:hover {
    filter: invert(50%) sepia(100%) saturate(500%) brightness(140%) hue-rotate(135deg);
  }

.SNSicons li:hover {
		box-shadow: 0 0 0 0 #003366;
}

.SNSicons li:nth-child(1):hover {
	background-color: #FF6F61;
	border: solid rgba(256, 256, 256, 0.3) 8px;
}

.SNSicons li:nth-child(2):hover {
	background-color: #FFB800;
	border: solid rgba(256, 256, 256, 0.3) 8px;
}


.SNSicons li:nth-child(3):hover {
	background-color: #76D7E7;
	border: solid rgba(256, 256, 256, 0.3) 8px;
}

.SNSicons li:nth-child(4):hover {
	background-color: #FF6F61;
		border: solid rgba(256, 256, 256, 0.3) 8px;
	
}

/* ハンバーガーメニューがクリックされた時の動作 */
#hamburger.open + .sp_nav {
    right: 0; /* メニューを右に表示 */
}

/* オーバーレイのスタイル */
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9997;
    visibility: hidden; /* 初期状態では非表示 */
	opacity: 0; /* 初期状態では透明 */
    transition: opacity 0.5s ease, visibility 0.5s ease; /* 透明度と表示/非表示のアニメーション */
}



/* デスクトップ向け（768px以上） */
@media screen and (min-width: 768px) {
	/* ロゴのスタイル */
.header_logo img {
	width: 400px;
    min-width: 250px;
	}
	
header{
		padding: 0 80px;
	height: 100px;
	}
	
.header_logo img:hover {
    opacity: 0.9;
  }

    /* ハンバーガーメニューを非表示 */
    #hamburger {
        display: none;
    }
	
	.sp_nav{
		display: none;
	}
	
	#overlay{
		display: none;
	}
	
.dp_nav{
        display: block;
    }
	
    /* デスクトップナビゲーションメニュー */


	.dp_nav ul {
        display: flex;
        justify-content: space-between; /* メニューを左右に広げる */
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .dp_nav ul li {
        text-align: center;
    }

    .dp_nav ul li a {
        display: block;
        text-decoration: none;
        color: white;
        font-size: 20px;
		width: 85px;
        margin: 10px 30px;
    }

    .dp_nav ul li a img {
        width: 50px;
        height: 50px;
    }

    .dp_nav ul li a p {
        font-size: 20px;
    }
}



.dp_nav ul li:hover {
    filter: invert(50%) sepia(100%) saturate(500%) brightness(140%) hue-rotate(135deg);
  }

/*TOPページのスライダーサイズ*/
/* 画像Aを上下中央、左端に配置 */
.fv_text {
  position: absolute;
  top: 25%;
  left: 0;
  transform: translateY(-50%); /* 縦方向に中央揃え */
  z-index: 1; /* 背景より前面に表示されるように */
/* 解像度×2の画像を適切なサイズで表示 */
  max-width: 70%; /* 横幅を70%に制限 */
  height: auto;   /* 高さは自動調整 */
}

.swiper-slide {
  position: relative; /* スライド内に絶対配置された要素を動かすために相対位置を指定 */
	height: 100%; /* 高さを100%に設定しているか確認 */
}

.main-top{
grid-row: main;
width: 100vw;
height: 100vh;
overflow: hidden;
	margin-bottom: 0;
}
.swiper-container{
width: 100%;
height: 100%;
overflow: hidden;
}
.swiper-wrapper,
.swiper-slide>div{
width: 100%;
height: 100%;
}

.swiper-slide.sw-1>div{
background: url("images_sp/top/top_fv_slider1.png") top center / contain no-repeat;
	height: 100%;
}
.swiper-slide.sw-2>div{
background: url("images_sp/top/top_fv_slider2.png") top center / contain no-repeat;
	height: 100%;
}
.swiper-slide.sw-3>div{
background: url("images_sp/top/top_fv_slider3.png") top center / contain no-repeat;
	height: 100%;
}

.time{
	position: absolute;
	width: 230px;
	height: auto;
	bottom: 160px;
	left: 15px;
}

.ticket{
	position: absolute;
	width: 230px;
	height: auto;
	bottom: 40px;
	left: 20px;
}

.swiper-slide-active>div, .swiper-slide-duplicate-active>div, .swiper-slide-prev>div{
animation: zoomUp 5s linear 0s 1 normal both;
}

/* 画面幅768px以上、960px未満のとき */
@media screen and (min-width: 768px) and (max-width: 960px) {
  .fv_text {
    top: 200px;  /* 上から20%の位置に配置 */
  }
}
/* 画面幅961px以上、1300px未満のとき */
@media screen and (min-width: 961px) and (max-width: 1300px) {
  .fv_text {
    top: 300px;  /* 上から20%の位置に配置 */
  }
}
/* 画面幅1301px以上、1800px未満のとき */
@media screen and (min-width: 1301px) and (max-width: 1800px) {
  .fv_text {
    top: 400px;  /* 上から20%の位置に配置 */
  }
}

/* 画面幅1801px以上のとき */
@media screen and (min-width: 1801px) {
  .fv_text {
    top: 500px;  /* 上から55%の位置に配置 */
  }
}


/*画面幅768px以上のときの画像*/
@media screen and (min-width: 768px) {
	
	.main-top{

	}
	
.swiper-slide.sw-1>div {
    background: url("images_dp/top/top_fv_slider1.png") top center / contain no-repeat;
  }
  .swiper-slide.sw-2>div {
    background: url("images_dp/top/top_fv_slider2.png") top center / contain no-repeat;
  }
  .swiper-slide.sw-3>div {
    background: url("images_dp/top/top_fv_slider3.png") top center / contain no-repeat;
  }	
	
	.fv_text{
		max-width: 40%; /* 横幅を40%に制限 */
	}
}


/*トップページ　紹介*/
#top{
	width: 100%;
	background: url("images_sp/top/top_bg1.jpg") top center / cover no-repeat;
	text-align: center;
	margin-top: 20px;
	padding-bottom: 100px;
}

#top_text{
	font-size: 30px;
	font-weight: 900;
	text-align: center;
	line-height: 2em;
	letter-spacing: 0.2em;
	padding-bottom: 70px;
	padding-top: 30px;
}

.blue{
	color: #76D7E7;
}

.red{
	color: #FF6F61;
}

.yellow{
	color: #FFB800;
}

.top_text_photo{
	display: flex;
}

.top_text_photo p{
	text-align: left;
	padding: 0 20px;
}

.top_text_photo img{
	width: 50%;
	height: auto;
	margin-bottom: 60px;
}

.top_text_photo .top_text1 img{
	width: 100%;
	margin-bottom: 20px;
	padding-top: 50px;
}

.yellow_btn{
	display: block;
	background: #FFB800;
	font-size: 18px;
	font-weight: 700;
	color: white;
	padding: 15px 40px;
	border-radius: 50px;
	box-shadow: 3px 3px 2px 0px rgba(0, 0, 0, 0.5);
	transition: all 0.3s ease;
	width: 250px;
		margin-left: auto;
	margin-right: auto;
	
}

.yellow_btn:hover{
		opacity: 0.7;
	
	}
	

@media screen and (min-width: 768px) {
	#top_text{
	font-size: 48px;
	margin-bottom: 100px;
	}
	.top_text1{
		width: 50%;
	}
	.top_text1 p{
		font-size: 26px;
	}
	#top{
	width: 100%;
	background: url("images_dp/top/top_bg1.png") top center / cover no-repeat;
}
	.top_text_photo p{
	padding: 0 80px;
}
	.top_text_photo img{
	margin-bottom: 100px;
}

.top_text_photo .top_text1 img{
	width: 100%;
	margin-bottom: 60px;
	padding-top: 200px;
}

.yellow_btn{
	background: #FFB800;
	font-size: 36px;
	font-weight: 700;
	color: white;
	padding: 30px 80px;
	border-radius: 80px;
	box-shadow: 5px 5px 2px 0px rgba(0, 0, 0, 0.5);
	width: 500px;

}
	
	.yellow_btn:hover{
		opacity: 0.7;
	}
	
	.time{
		width: auto;
		height: auto;
		left: auto;
		right: 5%;
		bottom: 200px;
	}
	
	.ticket{
		width: auto;
		height: auto;
		left: auto;
		right: 5%;
		bottom: 50px;
	}
	
}

/*お知らせ見出し（赤）*/
#news_title h2{
	font-weight: 900;
	color: #FF6F61;
}

#news_title{
		text-align: center;
}

/*わくわく体験見出し（青）*/
#enjoy_title h2{
	font-weight: 900;
	color: #76D7E7;
}

/*イベントスケジュール見出し（黄）*/
#schedule_title h2{
	font-weight: 900;
	color: #FFB800;
}


/*お知らせ*/
#news_wrapper{
	background: #CDF0FF;
	padding: 50px 20px;
}

#news_contents{
	
		margin-left: auto;
	margin-right: auto;

}

#news{
	padding-top: 30px;
	justify-content: flex-start;



}
@media screen and (min-width: 768px) {
	#news{
		margin: 0 auto;
    	width: 91.6%;
	}
}

.news_frame{
	display: inline-block;

	background: white;
	width: 180px;
	height:270px;
	padding-top: 10px;
	padding-bottom: 10px;
	margin: 0 5px;
	border-radius: 10px;
		text-align: center;
	 margin-bottom: 20px;
}

.news_frame img{
	width: 171px;
}

.date{
	font-size: 14px;
	padding-left: 10px;
	padding-top: 5px;
	text-align: left;
	color: #7A7A7A;
}

.news_text{
	padding: 10px;
	text-align: left;
}

/*わくわく体験*/
#enjoy_title{
	margin-top: 50px;
		margin-bottom: 30px;
}

#enjoy_title img{
	width: 180px;
}


#enjoy_wrapper{
	text-align: center;
	padding-bottom: 50px;
}


.enjoy_nav{
	position: relative;
  overflow: hidden;
	width: 176px;
	height: 75px;
	display: inline-block;
	border-radius: 10px;
  background-size: cover;
	text-align: center;
  transition: transform 0.3s ease;
		padding: 0.9em 0; /* 適度な上下マージン */
}

.enjoy_nav .enjoy_overlay {
  position: absolute;
  top: 0;
	left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,51,102,0.2); /* 初期色 */
	z-index: 1; /* ← 背景レイヤーにする */
  transition: background 0.3s ease;

}

.enjoy_nav:hover .enjoy_overlay {
  background: rgba(255,255,255,0.2); /* hover時の色 */
}

.enjoy_nav p{
	 position: relative;
	color: white;
	font-weight: 700;
	z-index: 2; /* ← 文字を前面にする */

}

.enjoy_nav:nth-child(1){
	background-image: url("images_dp/top/top_menu1.png");
}

.enjoy_nav:nth-child(2){
	background-image: url("images_dp/top/top_menu2.png");
}

.enjoy_nav:nth-child(3){
	background-image: url("images_dp/top/top_menu3.png");
}

.enjoy_nav:nth-child(4){
	background-image: url("images_dp/top/top_menu4.png");
}

.enjoy_nav:nth-child(5){
	background-image: url("images_dp/top/top_menu5.png");
}

.enjoy_nav:nth-child(6){
	background-image: url("images_dp/top/top_menu6.png");
}


.enjoy_nav:nth-child(1):hover {
	background-image: url("images_dp/top/top_menu1.png");
}



.enjoy_nav:nth-child(2):hover {
	background-image: url("images_dp/top/top_menu2.png");
}

.enjoy_nav:nth-child(3):hover {
	background-image: url("images_dp/top/top_menu3.png");
}

.enjoy_nav:nth-child(4):hover {
	background-image: url("images_dp/top/top_menu4.png");
}

.enjoy_nav:nth-child(5):hover {
	background-image: url("images_dp/top/top_menu5.png");
}

.enjoy_nav:nth-child(6):hover {
	background-image: url("images_dp/top/top_menu6.png");
}

#schedule_wrapper{
	background: #CDF0FF;
	padding: 50px 20px;
	text-align: center;
}

#schedule_contents{
	margin-bottom: 100px;
}

.yellow_btn{
	margin-top:30px;
}

#schedule_title{
	margin-bottom: 30px;
}

#schedule_title img{
	width: 260px;
}



@media screen and (min-width: 768px) {
	h2{
		font-size: 48px;
	}
	#news{
			text-align: center;
	}
	
	
	#news_title img{
		width: 220px;
		margin-bottom: 50px;
	}
	
	#enjoy_title img{
		width: 320px;
		margin-bottom: 50px;
	}
	
	#schedule_title img{
		width: 500px;
		margin-bottom: 50px;
	}
	
	.enjoy_nav{
		width: 400px;
		height: 120px;
		padding-top: 20px;
	}
	
	.enjoy_nav p{
		font-size: 28px;
	}
	
	#list{
		width: 600px;
		height: auto;
		margin-bottom: 30px;
	}
	
	#news_wrapper{
	padding: 100px 80px;
}
	
	#enjoy_wrapper{
	padding: 100px 80px;
}
	
	#schedule_wrapper{
	padding: 100px 80px;
}
	
	.enjoy_nav{
	border-radius: 20px;
	
}
}

/* フッターのスタイル */
footer {
    background-color: #003366; /* 背景色 */
    color: white; /* 文字色 */
    padding: 30px 0 20px; /* 上下のパディング */
    text-align: center; /* 中央寄せ */
	margin-top: 0; /* 上部余白 */
}

footer .SNSicons{
	display: flex; /* 親要素がflexなので、これで子要素を横並びに */
	justify-content: center;
		margin-bottom: 30px;
}

.footer_nav{
	
	justify-content: center;
}

.footer_nav_list1 li{
	margin: 20px 10px 10px;
}

.footer_nav li a{
	font-size: 14px;
	color: white;
	text-decoration: underline;
}

.footer_nav_list1{
	display: flex;
	justify-content: center;
}

.footer_nav_list2{
	margin-bottom: 30px;
}

.footer_nav li:hover {
    filter: invert(50%) sepia(100%) saturate(500%) brightness(140%) hue-rotate(135deg);
  }

.footer_logo img:hover{
	opacity: 0.9;
}

@media screen and (min-width: 768px) {
	
	footer{
		padding-top: 100px;
	}

	footer .SNSicons{
		width: 650px;
		margin: 0 auto;
		justify-content: space-between;
	}
	
	footer .SNSicons li{
		width: 120px;
		height: 120px;
		box-shadow: 5px 5px 2px 0px rgba(0, 0, 0, 0.5);
	}
	
	footer .SNSicons li:nth-child(1):hover{
		border: solid rgba(256, 256, 256, 0.3) 16px;
	}
	
	footer .SNSicons li:nth-child(2):hover{
		border: solid rgba(256, 256, 256, 0.3) 16px;
	}
	
	footer .SNSicons li:nth-child(3):hover{
		border: solid rgba(256, 256, 256, 0.3) 16px;
	}
	
	footer .SNSicons li:nth-child(4):hover{
		border: solid rgba(256, 256, 256, 0.3) 16px;
	}
	
	footer .SNSicons img{
		width: 60px;
		height: auto;
	}
	
	.footer_logo img{
		width: 300px;
		margin-top: 70px;
	}
	
	.footer_nav{
		display: flex;
		margin-top: 50px;
		margin-bottom: 30px;
	}
	
	.footer_nav li{
		margin: 0;
	}
	
	.footer_nav li a{
		font-size: 20px;
	}
	
	.footer_nav_list1 a{
		margin-right: 50px;
	}
	
	
}