@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
}

@font-face {
  font-family: Grandstander;
  src: url(../../font/Grandstander/Grandstander-Italic-VariableFont_wght.ttf);
}

@font-face {
  font-family: Shippori_Mincho;
  src: url(../../font/Shippori_Mincho/ShipporiMincho-Regular.ttf);
}


@font-face {
  font-family: M_PLUS_1p;
  src: url(../font/M_PLUS_1p/MPLUS1p-Regular.ttf);
}

@font-face {
  font-family: Kiwi_Maru;
  src: url(../../font/Kiwi_Maru/KiwiMaru-Regular.ttf);
}



html {
  scroll-behavior: smooth;
}
body {
  font-family: M_PLUS_1p;
}

main {
  font-weight: 600;
  background: linear-gradient(#4db7be, #003b46);
}
/* ハンバーガーメニューボタン */
.toppage-nav2 {
  display: none;
}

/*ヘッダー*/
header {
  display: flex;
  padding: 1% 2%;
  background-color: #5AB7BE;
}

header h1 {
  width: 9%;
}

header h1 a img {
  width: 100%;
  vertical-align: bottom;
}

/* ナビ */
nav {
  width: 74%;
  margin-top: 1%;
  margin-left: auto;
}

nav ul {
  display: flex;
}

nav ul li {
  width: 20%;
  border-right: 2px solid #fff;
}

nav ul li:last-child {
  border-right: none;
}

nav ul li a {
  display: block;
  text-align: center;
  font-size: 1.2vw;
}

nav ul li a img {
  display: block;
  width: 5vw;
  height: 5vw;
  margin-left: auto;
  margin-right: auto;
}

nav ul li a:hover {
  color: #EBF11D;
}

nav ul li a:hover img {
  animation: purun 0.8s linear 0s 1;
}

@keyframes purun {
  0%   { transform: scale(1.0, 1.0) translate(0%, 0%); }
  15%  { transform: scale(0.9, 0.9) translate(0%, 5%); }
  30%  { transform: scale(1.3, 0.8) translate(0%, 10%); }
  50%  { transform: scale(0.8, 1.3) translate(0%, -10%); }
  70%  { transform: scale(1.1, 0.9) translate(0%, 5%); }
  100% { transform: scale(1.0, 1.0) translate(0%, 0%); }
}



/* イベント↓ */

.event {
  width: 100%;
  overflow: hidden;
}

.event .hd img {
  width: 100%;
}

.event-flex {
  width: 100%;
  display: flex;
}

h2 {
  font-size: 8.5vw;
  padding: 10%;
  text-align: center;
  font-family: Grandstander;
  color: #ffffff;
}

p {
    text-indent: 1em;
}

.event-left {
  display: none;
}

.event-right {
  position: relative;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  padding: 7%;
  overflow: hidden;
}


/* 本体 */
  .cp_timeline01 {
    position: relative;
    margin-left: auto;
    padding: 3% 0;
    list-style-type: none;
    z-index: 10;
  }
  
  /* 真ん中の線 */
  .cp_timeline01:before {
    position: absolute;
    left: 50%;
    top: 0;
    content: '';
    display: block;
    width: 0.8vw;
    height: 100%;
    margin-left: -0.8%;
    background: rgb(133, 223, 235);
    z-index: 5;
  }

  /* うえの余白 */
  .cp_timeline01 li {
    padding: 5% 0;

  }

  /* 写真 */
  .desc {
    width: 90%;
  }

  .desc img {
    width: 100%;
  }
/* 写真 */
  .cp_timeline01 li:after {
  content: '';
  display: block;
  height: 0;
  visibility: hidden;
}


/* 左のリスト場所 */
.cp_timeline01 li:nth-child(odd) .timeline_item {
  position: relative;
  width: calc(50% - 29px);
  text-align: right;
}



/* 文字の背景 */
.cp_timeline01 li .timeline_item .flag {
  position: relative;
  display: inline;
  background: rgba(26,35,126 ,1);
  color: #ffffff;
  padding: 6px 10px;
  border-radius: 5px;
  font-size: 3.8vw;
  font-weight: bold;
  text-align: left;
}


/* 丸の装飾 */
.cp_timeline01 li:nth-child(odd) .timeline_item .flag_cont:before,
.cp_timeline01 li:nth-child(even) .timeline_item .flag_cont:before {
  position: absolute;
  top: 4px;
  right: -44px;
  content: ' ';
  display: block;
  width: 12px;
  height: 12px;
  margin-top: -10px;
  padding: 4px;
  background: rgba(0,188,212 ,1);
  border-radius: 50%;
  border: 6px solid rgba(26,35,126 ,1);
  z-index: 10;
}

/* 丸の装飾(白) */
.cp_timeline01 li:nth-child(odd) .timeline_item .flag_cont:after,
.cp_timeline01 li:nth-child(even) .timeline_item .flag_cont:after {
  position: absolute;
  top: 10px;
  right: -38px;
  content: ' ';
  display: block;
  width: 16px;
  height: 16px;
  margin-top: -10px;
  border-radius: 10px;
  border: 2px solid rgba(255,255,255 ,1);
  z-index: 10;
}



/* 左の三角 */
.cp_timeline01 li:nth-child(odd) .timeline_item .flag:after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  height: 0;
  width: 0;
  margin-top: -6px;
  border: solid transparent;
  border-left-color: rgba(26,35,126 ,1);
  border-width: 6px;
}

/* 右の三角 */
.cp_timeline01 li:nth-child(even) .timeline_item .flag:after {
  content: '';
  position: absolute;
  right: 100%;
  top: 50%;
  height: 0;
  width: 0;
  margin-top: -6px;
  border: solid transparent;
  border-right-color: rgba(26,35,126 ,1);
  border-width: 6px;
}

/* 左時間文字 */
.cp_timeline01 li .timeline_item .time {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  display: block;
  padding: 5% 17%;
  font-size: 3.3vw;
  line-height: 1;
  color: rgb(0, 86, 112);
  background-color: #fff;
  text-align: right;
  border-radius: 10px;
}



/* 左枠 */
.cp_timeline01 li .timeline_item .desc {
  margin: 3%;
  text-align: center;
  font-size: 1vw;
  line-height: 1.5em;
  margin: 1em 1em 0 1em;
  padding: 1em;
  background: rgba(178,235,242 ,0.7);
  border-radius: 6px;
}


/* スマホサイズ */
.cp_timeline01 {
  width: 100%;
  padding: 4em 0 1em 0;
}
.cp_timeline01 li {
  padding: 2em 0;
}
.cp_timeline01 li:nth-child(odd) .timeline_item,
.cp_timeline01 li:nth-child(even) .timeline_item {
  float: none;
  width: 100%;
  text-align: center;
}
.cp_timeline01 li .timeline_item .flag_cont {
  text-align: center;
}
.cp_timeline01 li .timeline_item .flag {
  z-index: 15;
}
.cp_timeline01 li:nth-child(odd) .timeline_item .flag_cont:before,
.cp_timeline01 li:nth-child(even) .timeline_item .flag_cont:before {
  top: -34px;
  left: calc(50% - 16px);
}
.cp_timeline01 li:nth-child(odd) .timeline_item .flag_cont:after,
.cp_timeline01 li:nth-child(even) .timeline_item .flag_cont:after {
  top: -28px;
  left: calc(50% - 10px);
}
.cp_timeline01 li:nth-child(odd) .timeline_item .flag:after,
.cp_timeline01 li:nth-child(even) .timeline_item .flag:after {
  content: '';
  position: absolute;
  left: 50%;
  top: -6px;
  height: 0;
  width: 0;
  margin-left: -6px;
  border: solid transparent;
  border-bottom-color: rgba(26,35,126 ,1);
  border-width: 6px;
  pointer-events: none;
}
.cp_timeline01 li .flag_cont {
  display: block;
  position: relative;
  margin: 4px 0 0 0;
  z-index: 14;
}
.cp_timeline01 li:nth-child(odd) .timeline_item .time,
.cp_timeline01 li:nth-child(even) .timeline_item .time {
  text-align: center;
border-radius: 5px;
  background: #ffffff;
}
.cp_timeline01 li .timeline_item .desc {
  position: relative;
  z-index: 15;
}





/* 動き */

/* あわ */

.bubbles {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden; /* 非表示に */
  top: 0;
  left: 0;
}


/* いるか */

.dolphin {
  position: absolute;
  top: 0;
  right: 0;
  rotate: -25deg;
  width: 20%;
  animation: dolphin 5s infinite;
}

.dolphin img {
  width: 100%;
}

.dolphin2 {
  position: absolute;
  top: 5%;
  right: 0;
  rotate: -25deg;
  width: 15%;
  animation: dolphin 5s infinite;
}

.dolphin2 img {
  width: 100%;
}

.dolphin3 {
  position: absolute;
  top: 15%;
  left: -20%;
  rotate: 25deg;
  width: 20%;
  animation: dolphin2 4s infinite;
  animation-delay: 3s;
}

.dolphin3 img {
  width: 100%;
}

.dolphin4 {
  position: absolute;
  top: 20%;
  left: -20%;
  rotate: 25deg;
  width: 15%;
  animation: dolphin2 4s infinite;
  animation-delay: 3s;
}

.dolphin4 img {
  width: 100%;
}

.dolphin5 {
  position: absolute;
  top: 50%;
  right: -20%;
  rotate: -25deg;
  width: 20%;
  animation: dolphin 5s infinite;
  animation-delay: 6s;
}

.dolphin5 img {
  width: 100%;
}

.dolphin6 {
  position: absolute;
  top: 55%;
  right: -20%;
  rotate: -25deg;
  width: 15%;
  animation: dolphin 4s infinite;
  animation-delay: 6s;
}

.dolphin6 img {
  width: 100%;
}
@keyframes dolphin {

  100% {
    transform: translate(-900%);
  }

  }

@keyframes dolphin2 {

  100% {
    transform: translate(900%);
  }

  }


/*　泡 */

.bubble {
  position: absolute;
  bottom: auto;
  width: 40px;
  height: 40px;
  background-color: transparent; /* 透明化 */
  border: 1px solid #fff;
  border-radius: 50%;
  animation: bubble 10s ease-in infinite;
}

.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;
}

.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;
}

@keyframes bubble {
  0% {
    bottom: -100px;
    transform: translateX(0);
  }
  50% {
    transform: translateX(100px);
  }
  100% {
    bottom: 1000px;
  }
}

/* ペンギン */
.penguin {
  position: absolute;
  top: 55%;
  right: -50%;
  width: 20%;
  animation: dolphin 30s infinite;
  animation-delay: 5s;
  opacity: 0.5;
}

.penguin img {
  width: 100%;
}

.penguin2 {
  position: absolute;
  top: 55%;
  right: 0%;
  width: 15%;
  animation: dolphin 20s infinite;
  opacity: 0.5;
}

.penguin2 img {
  width: 100%;
}

.penguin3 {
  position: absolute;
  top: 55%;
  right: -50%;
  width: 20%;
  animation: dolphin 25s infinite;
  animation-delay: 4s;
  opacity: 0.5;
}

.penguin3 img {
  width: 100%;
}

.penguin4 {
  position: absolute;
  top: 55%;
  right: -50%;
  width: 18%;
  animation: dolphin 30s infinite;
  animation-delay: 8s;
  opacity: 0.5;
}

.penguin4 img {
  width: 100%;
}

.penguin5 {
  position: absolute;
  top: 55%;
  right: -50%;
  width: 20%;
  animation: dolphin 22s infinite;
  animation-delay: 2s;
  opacity: 0.5;
}

.penguin5 img {
  width: 100%;
}



footer {
  padding: 5% 7% 1%;
  background-image: url(../../images/bg_footer.webp);
  background-color: #003b46;
  background-size: cover;
  color: #fff;
  font-size: 1.2vw;
}

.menu-area {
  display: flex;
}

.info-images {
  text-align: center;
}

.info-images h2 {
  font-family: Shippori_Mincho;
  font-size: 2vw;
  font-weight: 100;

}

.info-images img {
  margin: 2% 0 ;
  width: 30%;
  margin-bottom: 10%;
}

.menu-col {
  width: 30%;
  margin-left: 5%;
}

.menu-col a {
  color: white;
}

.menu-list a {
  color: #a7bddd;
}



address {
  font-size: 1.4vw;
  margin-top: 10%;
  line-height: 2;
  font-style: normal; /* 斜体をまっすぐにするやつ */
}

footer ul:nth-of-type(1) {
  margin-left: auto;
  margin-right: 5%;
}

footer ul:nth-of-type(2) {
  margin-right: 5%;
}

footer ul:nth-of-type(1) li::before {
  content: "-";
  margin-right: 0.5em;
}

footer ul { 
 margin-top: 10%;
}

footer ul li {
  line-height: 2.8;
}

.copyright {
  margin-top: 3%;
  text-align: center;
  font-size: 12px;
}