@charset "UTF-8";
/* CSS Document */

*,*::before,*::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img{
    max-width: 100%; /*ブラウザサイズに合わせる*/
    height: auto;
    vertical-align: top;/*テキストや画像の縦方向の位置を指定するCSSプロパティ*/
}

body{
    min-width: 1280px;/*100px + 1080px + 100px*/
background: #BABBDA;
background: linear-gradient(180deg, rgba(186, 187, 218, 1) 0%, rgba(31, 76, 151, 1) 50%, rgba(5, 22, 43, 1) 100%);
    
  font-family: "Kiwi Maru", serif;
  font-weight: 300;
  font-style: normal;

}


/*サイト幅*/
.container{
    width: 1080px;
    margin: 0 auto;
}


#header-container {
  width: 1080px; /* サイト幅に合わせる */
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 20px 0;
}

/* ロゴ設定 */
.header-logo {
  display: block;
  padding: 20px 0;
}
.header-logo img {
  height: 90px;
  width: auto;
  display: block;
}



/*グローバルナビゲーション*/
.global-nav ul{
    list-style: none;
    display:flex; 
    margin: 0;
    padding: 0;
}

.global-nav li {
  margin: 0;
}

.global-nav a {
  color: #05162B;
  text-decoration: none;
  font-weight: bold;
  display: flex;              /* ←テキストを中央揃えにする */
  align-items: center;        /* ←縦方向の中央寄せ */
  justify-content: center;
  height: 90px;               /* ←ロゴと同じ高さに */
  padding: 0 25px;            /* ←上下の余白をなくす */
  box-sizing: border-box;
  line-height: 1;        /* ←フォントによるズレ防止 */
}

.global-nav a:hover{
    color: #FFF;
    font-weight:bold;
    background-color: #1F4C97;
}


/* 全体共通のフロア設定 */
.floormap {
  background-color: transparent;
  padding: 60px 0;
}

.floormap .container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 各階のボックス */
.floor {
  background-color: #fafafd;
  border-radius: 8px;
  padding: 40px 20px;
  margin-bottom: 60px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

/* 2Fだけ色を変える */
.floor-2F {
  background-color: #f5f7ff;
}

/* ✅ フロアマップ画像を大きく表示する */
.floor-image {
  display: block;
  margin: 0 auto 40px;
  max-width: 900px; /* ←ここを自由に変更可 */
  width: 100%;
 padding: 80px 20px;
}

/* ✅ ギャラリー部分（小さい画像） */
.floor-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.floor-gallery .item img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.floor-gallery .item p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-top: 8px;
}

/*==========共通ここまで=============*/


/*ファーストビュー（ジンベイザメ）*/
.fast-view{
    width: 100%;/*100vw　ブラウザの画面サイズ基準*/
    min-width: auto;
    height: 720px;/*100vh*/
    /*vwはスクロールバー（15pxぶん）を含んだものを100と考え、
    ％はスクロールバーの手前までで100と考えるので、vwはあまり使われない。*/
    /*背景画像*/
    background-image: url("../images/main-visual.JPG");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    /*なるべく画像をきちんと表示するように調整してくれる
    デバイスの見え方の違いを少なくするイメージ*/
    
      /* 中央配置用 */
    display: flex;
    justify-content: center;
    align-items: center;

}

/* ロゴ画像のサイズ調整 */
.fast-view h1 img {
  width: 65%;
  height: auto;
}


.news h2{
    color: #fff;
    text-align: center;
    padding-bottom: 30px;
}








/* ===== ページビジュアル共通 ===== */
.page-visual {
  position: relative;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
 padding-bottom: 80px;
}

.page-visual__img img {
  width: 100%;
  height: auto;
  display: block;
}

.page-visual__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
}

.page-visual__title h1 {
  font-size: 2rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}


/*スライドバナー*/

.slider h2{
    color: #fff;
    text-align: center;
    padding-bottom: 30px;
}

.slider{
    padding: 80px 5%; 
}

.slider_img img{
    padding: 0 30px;
}

.slick-slide {
  transition: all 0.5s ease;   /* なめらかな切り替え */
  opacity: 0.5;                /* デフォルトで半透明 */
  filter: brightness(80%);     /* 少し暗くしてマスクっぽく */
}

/* 中央（センター）のスライド */
.slick-center {
  opacity: 1;                  /* 明るくする */
  filter: brightness(100%);    /* 明るさ戻す */
}    




/* フロアマップ全体 */
.floor-map {
  max-width: 1080px;  /* コンテンツ幅に合わせる */
  margin: 0 auto 60px; /* 下に余白 */
  padding: 0 20px;    /* 画面端に少し余白 */
  text-align: center; /* 画像中央寄せ */
}

.floor-map img {
  width: 100%;       /* 横いっぱいに */
  height: auto;      /* 比率維持 */
  max-width: 100%;   /* コンテナからはみ出さないように */
  border-radius: 8px; /* おまけ：角を少し丸くしても◎ */
}

/* フロアの展示ギャラリー */
.floor-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2列構成 */
  gap: 32px;
  max-width: 800px;
  margin: 0 auto 80px; /* セクション間の余白 */
  padding: 0 20px;
  text-align: left;
}


/*===========about（水族館の説明）============*/

 .about_wapper {
  background-image: 
    url("../images/gyogun.png"),
    url("../images/gyogun.png"); /* ← 同じ画像を2枚重ねる */
  background-color: #fafafd;
  background-repeat: no-repeat, no-repeat;
  background-size: 80%, 80%; /* ← 少し小さめに調整 */
  background-position: 
    right -50px top 0,   /* 1枚目：右上寄り */
    left -50px bottom 0; /* 2枚目：左下寄り */
  border-radius: 8px;
  padding: 100px 40px;
  margin-bottom: 60px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}
    
    
.about1__img img,
.about2__img img {
  width: 100%;
  height: auto;
  display: block;
padding: 40px;
}


/*===== フッター =====*/
footer{
    padding: 0 5% 30px;
    text-align: center;
}

.footer-logo{
    width: 45%;
    margin: 0 auto;
}

.footer-nav {
  text-align: center; /* 中央寄せ */
  padding: 50px 0 20px;
    
}

.footer-nav ul {
  list-style: none;
  margin: 0;
  display: inline-flex; /* 横並びにして中央寄せを保つ */
  gap: 0.5em; /* ｜との間隔を整える */
}

.footer-nav li {
  position: relative;
}

.footer-nav li:not(:last-child)::after {
  content: "｜"; /* 区切り線 */
  margin: 0 0.5em;
 color: #FFF;
}

.footer-nav a {
  text-decoration: none;
  transition: color 0.1s;
     color: #FFF;
}

.footer-nav a:hover {
  color: #BABBDA /* ホバー時の色 */
}

.footer-nav p{
    color: #000;
}

footer p {
  margin-top: 10px;
  color: #fff;
  font-size: 0.9em;
}


.ticket-information{
  width: 1080px; /* サイト幅に合わせる */
  margin: 80px auto;
  display: flex;
  align-items: center;
}

.ticket-information img{
    padding: 0 5%;
}



.banner1 a{
    display: block;
    transition: all .3s ease-in-out;
    transform: translateY(0);
    overflow: hidden;
}
.banner1 img{
    width: 100%;
    vertical-align: middle;

}
.banner1 a:hover{
    transform: translateY(-5px);

}

.banner2 a{
    display: block;
    transition: all .3s ease-in-out;
    transform: translateY(0);
    overflow: hidden;
}
.banner2 img{
    width: 100%;
    vertical-align: middle;

}
.banner2 a:hover{
    transform: translateY(-5px);
}


/*===== 追従バナー =====*/
.banner_ticket {
  position: fixed; /* 追従タイプ */
  right: 0;
  bottom: 5%;
  display: block;
  width: 250px;
  z-index: 100;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.banner_ticket:hover {
  transform: translateY(-8px); /* ← 上に8px動く */
  filter: brightness(1.1);    /* ← 少し明るく（おまけ） */
}

    