@charset "UTF-8";

/*共通部分*/

html{
    font-size: 100%;/*ユーザーの設定した文字サイズを反映*/
}

body{
    font-family:"M PLUS 1", sans-serif;
    font-style: normal;
    background-color: #F6FEFF;
    color: #1C2843;
}

.ul, ul li{
  list-style: none;
  padding-left: 0;
}

/*topgazou*/
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* ここに修正と追加のCSS */
main {
  position: relative;
}

.overlay-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.overlay-image img {
  width: 100%;
  height: auto;
}

.slid-wrapper {
  width: 100%;
  overflow: hidden;
}

.slid-wrapper .slider {
  display: flex;
  flex-wrap: nowrap;
  width: 150%;
  animation-name: loop;
  animation-iteration-count: infinite;
  animation-duration: 20s;
  animation-timing-function: linear;
}

.slid-wrapper .slider img {
  max-height: 100vh;
  margin: 0;
  aspect-ratio: 16/10;
  object-fit: cover;
}

@keyframes loop {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-75%);
  }
}

/*kokoro*/
/*なび*/
.navbar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center; /* 子要素を垂直方向の中央に配置 */
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, 0.7); /* 半透明の背景色 */
    backdrop-filter: blur(5px); /* 背景のうっすらしたぼかし効果 */
    
    position: fixed;
    top: 0;
    left: 0;
    z-index: 500;
  }
  
  .navbar-left {
    max-width: 100%;
    max-height: 100%;
    display: flex;
    align-items: center;
    
    gap: 15px;
  }
  
  .logo {
  height: 100%;
  text-decoration: none;
}
  .logo img{
    max-width: 100%;
    max-height: 5vh;
    display: block;
    object-fit: contain;
  }
  
  .festival-title {
    font-size: 24px;
    font-weight: bold;
    color: #1C2843;
  }
  
  .hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    
    
  }
  
  .bar {
    width: 100%;
    height: 3px;
    background-color: #1C2843;
    border-radius: 5px;
  }
/*ハンバーガー*/

/* サイドバーの初期状態（非表示） */
.sidebar {
    position: fixed;
    top: 0;
    right: -50%; /* 画面外に隠す */
    width: 50%;
    height: 100%;
    background-color: #B6D7F5;
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
  }
  
  /* サイドバーが表示されるとき */
  .sidebar.active {
    right: 0;
  }
  
  /* ハンバーガーメニューの見た目 */
  .hamburger-menu {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  
  .hamburger-menu .bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #0a2940;
    border-radius: 3px;
  }
  
  /* 閉じるボタン */
  .close-btn {
    background: none;
    border: none;
    font-size: 5vw;
    cursor: pointer;
    color: #0a2940;
    margin: 0 5vw 10vw 5vw;

    display: flex;
    justify-content: flex-start;
  }
/* ドロップダウンメニュー初期状態（非表示） */
  .dropdown-menu {
    text-align: left;
    display: none;
    list-style: none;
  }
  
  /* 開いた時 */
  .dropdown.open .dropdown-menu {
    display: block;
  }
  
  /* 見出しボタン */
  .dropdown-toggle {
    font-family: "Dela Gothic One", sans-serif;
    background: none;
    border: none;
  
    cursor: pointer;
    color: #0a2940;
    text-align: left;
 
  }
  .dropdown-toggle:hover{
    color: #3498db;
  }

  .menu-item {
    padding-left: 5vw;
    font-family: "Dela Gothic One", sans-serif;
    text-align: left;
    border: none;
    cursor: pointer;
    color: #0a2940;
    font-size: 3vw;
    text-decoration: none;

    display: flex;
    justify-content: flex-start;
    gap: 2vw;
  }
  .menu-item:hover{
    color: #3498db;
  }

  .komidasi{
    color: #0a2940;
    font-size: 2vw;
    text-decoration: none;
  }

  .komidasi:hover {
    color: #3498db;
  }

    
/*てーま*/
.content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 0 20px;
}

.text-container {
    flex: 2;
    max-width: 600px;
    min-width: 300px;
}

.text-container p {
  font-size: 2em;
}

.logo1 {
    flex: 1;
    max-width: 400px;
    min-width: 300px;
}

.logo1 img {
    width: 100%;
    height: auto;
    display: block;
}

.theme-section{
    padding: 15vh 10vw;
}
.furigana {
    text-align: center;
    font-size: 0.8em;
    color: #7f8c8d;
    margin: 0;
}

h1 {
    text-align: center;
    font-size: 3em;
    color: #1C2843;
    margin: 5px 0 20px 0;
    font-weight: bold;
}

p {
    margin: 10px 0;
}
/*sukeju-ru*/
/*.schedule{
  width: 100%;
  padding: 15vh 10vw;
  box-sizing: border-box;

}*/
.time {
  width: 80vw;
  height: auto;
  align-items: center;
  justify-content: center;
  margin-top: 8vw;
}

.event-nav {
    width: 100%;
    padding: 8vh 8vw;
    box-sizing: border-box;
}

/* ボタンコンテナのスタイル */
.time-buttons {
  display: flex;
  justify-content: center;
  gap: 5vw;
}

.event-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3vw;
}

/* ボタン自体のスタイル */
.button {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #3498db;
  color: #3498db;
  background-color: #fff;
}

.button-text {
    font-size: 1.5em;
    font-weight: bold;
    line-height: 1.4;
}

/* ホバー時のスタイル */
.button:hover {
    background-color: #3498db;
    color: #fff;
}

/* アクティブな（選択された）ボタンのスタイル */
.button.active {
    background-color: #3498db;
    color: #fff;
    transform: none; /* ホバー効果と区別するために、ここでは変形を無効化 */
}


.schedule-section {
    max-width: 800px;
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-sizing: border-box;
}

/* ヘッダーのスタイル (再利用) */
.header{
    display: flex;
    align-items: center;
    text-align: center;
    margin-bottom: 10vh;
    margin-top: 10vh;
}

.header h2 {
    flex-shrink: 0;
    margin: 0 20px;
    font-size: 4vw;
    color: #509BE2;
    position: relative;
}

.header hr {
    flex-grow: 1;
    border: none;
    height: 2px;
    background-color: #3498db;
    position: relative;
}

.header hr::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-color: #3498db;
    border-radius: 50%;
}
.header hr:first-of-type::before {
    left: 0;
}
.header hr:last-of-type::before {
    right: 0;
}
.youtube{
  /*display: flex;*/
  font-size: 2.5vw;
  margin-top: 5vh;
  justify-content: center;
  align-items: center;
}
.youtube-button{ 
  font-size: 4vh;
  text-decoration: none; 
  color: #509BE2; 
  border: 1px solid #509BE2; 
  border-radius: 100px;
  padding: 1vw 2vw;
  margin: 0 2vw ; 
}
.youtube-button:hover{
  color: #fff;
  background-color: #509BE2;
}

/*いべんと*/
/*講堂*/
.uketuke{ 
  text-decoration: none; 
  color: #509BE2; 
  border: 1px solid #509BE2; 
  border-radius: 100px;
  padding: 1vw 2vw;
  margin: 0 2vw ; 
}
.uketuke:hover{
  color: #fff;
  background-color: #509BE2;
}

.blue {
  margin-bottom: 5vw;
  background-color: #509BE2;
  border-radius: 5vw;
  height: auto;
}
/* .guest-image {
  width: 35vw;
  height: auto;
  margin: 0 5vw; 
  
}
.guest-content {
  display: flex;
  justify-content: center;
  align-items: center;
} */
.guest-image {
  width: 35vw;
  height: auto;
  margin: 5vw 0 0; 
}
.guest-image1 {
  width: 35vw;
  height: auto;
  margin: 5vw 0 0; 
}
.guest-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}


.guest-text {
  text-align: left;
  color: #fff;

  padding-top: 3vw;
}
.guest-text img{
  display: block;
  margin: 0 auto;
}
.guest-text a{
  justify-content: center;
  font-size: 2vw;
  text-decoration: none;
  color: #fff;
  border: 1px solid #fff;
  /* background-color: #FFF; */
  border-radius: 100px;
  padding: 1vw 2vw;
}
.guest-text a:hover{
  background-color: rgba(255, 255, 255, 0.5);
}




.guest-text p {
  font-size: 2.5vw;
  margin: 0 5vw 3vw;
}
.guest-text h1 {
  color: #fff;
  font-size: 5vw;
  margin-bottom: 2vw;
}
.ko-text {
  font-size: 5vw;
  margin: 0 1vw 0;
}
.ko-text div{
  margin-left: 5vw;
}
.ko-text p {
  margin-top: 3vw;
}

.pink {
  margin-bottom: 5vw;
  background-color: #EBA4A4;
  border-radius: 5vw;
  height: auto;
}

.padd-kike{
  font-size: 2vw;
  padding: 2vw 0 3vw;
}

.kansya{
  font-size: 3.5vw;
  padding: 2vw 0 3vw;
}

.ushiro {
  background-color: #5092fba7;
  border-radius: 50px;
  margin: 5vh;
}
.senkyo-kekka {
  display: flex;
  align-items: center;
  justify-content: center;
}
.bumon {
  margin: 5vh;
  font-size: 3vw;
  color:#ff6b6b;
}
.bumon2 {
  margin: 5vh;
  font-size: 3vw;
  color:#edf66d;
}

.senkyo-p1 {
  padding: 2vw 0 3vw;
  font-size: 4vw;
  color:#3a86ff;
}
.senkyo-p {
  font-size: 2.5vw;
  color:#0a2940;
}
.senkyo{
  width: 30vh;
  height: auto;
  margin: 5vh;
}
.do-ritsu {
  font-size: 1.5vh;
  justify-content: right;
  text-align: right;
  margin-right: 10vh;
}

/*体育館*/
#taiiku{
  margin-top: 10vw;
}
/*タワー*/
#tawa-{
  margin-top: 10vw;
}
.mamap{
  display: flex;
  gap: 1vw;
}
/*その他*/
#sonota{
  margin-top: 10vw;
}
.tibi{
  display: flex;
  gap: 5vw;
  text-align: left;

}


.hanabi {
  width: 70vw;
  height: auto;
  margin: 15vw 0 0;

  border: 5vw solid #509BE2;
}

/*協賛*/
.ACDdazo-{
  display: grid;
  justify-content: center;
  grid-template-columns: 1fr 1fr;
  gap: 5vw;
  margin-top: 10vw;
}
.ACDdazo- img{
  width: 100%;
  height: auto;
}
.Edazo-{
  display: grid;
  justify-content: center;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 5vw;
  margin-top: 10vw;
}
.Edazo- img{
  width: 100%;
  height: auto;
}


/*tutu*/
.access{
    color: #509BE2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    padding: 5vh 5vw;
}
.midashi{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;

    margin-bottom: 10vh;
    gap: 2vw;
}
.sen{
    width: 30%;
}
.sen hr{
    border: none;         /* デフォルトの線を消す */
    height: 3px;          /* 線の太さ */
    background-color: #509BE2; /* 線の色 */
}
.map{
    width: 90%;
    height: 40vw;
}
.half-circle{
    min-width: 15px;
    min-height: 15px;
    background-color: #fff;
    border: 3px solid #509BE2;
    border-top: none;
    border-bottom-left-radius: 30vw 30vw;
    border-bottom-right-radius: 30vw 30vw;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 1vw 2vw 2vw 2vw;
}
.half-circle button{
  color: #509BE2;
}
.half-circle:hover{
  background-color: #509BE2;
}
.half-circle button:hover{
  color: #fff;
}

.nami{
    display: block;
    width: 100%;
    margin-bottom: -1px;
}
.renraku-kanren{
    background-color: #509BE2;
    color: #fff;
    width: 100%;
    display: flex;
    justify-content: center; 
    gap: 5vw;
    padding: 10vh 10vw;
}
.renraku-kanren button{
    color: #fff;
}
.info-gap{
    display: flex;
    flex-direction: column;
    gap: 2vh;
}
.kasen{
    padding-bottom: 1vh;
    border-bottom: 1px solid #fff;
}
.icon{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1vw;
}
.icon img{
    width: 20px;
    height: 20px;
}

.fb button:hover {
  color: #1C2843;
}

.cop{
    background-color: #EBA4A4;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center; 



}

/*rio*/
body {
    
    text-align: center;
}

header {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background: white;
    border-bottom: 2px solid #e0e0e0;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}


h1 {
    font-size: 2rem;
    color: #3a86ff;
    margin-bottom: 0;
    position: relative;
}

.note {
    font-size: 2.5vw;
    color: #555;
    margin-bottom: 20px;
}

.grade {
    margin: 30px 0;
}

.grade h2 {
    color: #4098ff;
    font-size: 3vw;
    margin-bottom: 10px;
}

.grade ul {
  list-style: none;
  padding: 0;
  columns: 3; /* 3列表示 */
  max-width: 80vw;
  margin: 0 auto;
}

.grade li {
    margin: 1vw 0;
    font-size: 2vw;
}

footer {
    position: relative;
    background: #f8fcff;
    text-align: center;
    padding: 10vw 0 0;
}

footer .wave {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 80px;
    background: url('wave.svg') no-repeat center;
    background-size: cover;
}

footer p {
    margin: 0;
    font-size: 0.8rem;
    color: #777;
}







/* 見出し部分（青・中央揃え） */
.greeting-title {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    color: #3a86ff; /* 青色 */
    margin: 40px 0 20px;
}

/* 写真（中央） */
.greeting-photo {
    display: block;
    margin: 0 auto 20px;
    max-width: 25vw;
    height: auto;
    border-radius: 8px;
}

/* 名前（中央・黒） */
.greeting-name {
    text-align: center;
    font-weight: bold;
    font-size: 1.5vw;
    margin-bottom: 20px;
}

/* 本文（両端揃え） */
.greeting-text {
    text-align: left;
    font-size: 1.5vw;
    padding: 0 10px;
}

/* 波イラスト部分 */
.wave-footer {
    position: relative;
    text-align: center;
    background: #f0faff;
    margin-top: 50px;
}

.wave-footer img {
    width: 100%;
    display: block;
}

.wave-footer p {
    position: absolute;
    bottom: 5px;
    width: 100%;
    text-align: center;
    font-size: 0.8rem;
    color: #555;
}


/*booth-you-tuika*/
.button01 {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #3498db;
  color: #3498db;
  background-color: #fff;
}
.button-text01 {
  font-size: 2em;
  font-weight: bold;
}
/* ホバー時のスタイル */
.button01:hover {
  background-color: #3498db;
  color: #fff;
}
/* アクティブな（選択された）ボタンのスタイル */
.button01.active {
  background-color: #3498db;
  color: #fff;
  transform: none; /* ホバー効果と区別するために、ここでは変形を無効化 */
}
.button02 {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #EBA4A4;
  color: #EBA4A4;
  background-color: #fff;
}
.button-text02 {
  font-size: 2em;
  font-weight: bold;
  line-height: 1.4;
}
/* ホバー時のスタイル */
.button02:hover {
  background-color: #EBA4A4;
  color: #fff;
}
/* アクティブな（選択された）ボタンのスタイル */
.button02.active {
  background-color: #EBA4A4;
  color: #fff;
  transform: none; /* ホバー効果と区別するために、ここでは変形を無効化 */
}

.button03 {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #3498db;
  color: #3498db;
  background-color: #fff;
}
.button-text01 {
  font-size: 2em;
  font-weight: bold;
}
/* ホバー時のスタイル */
.button03:hover {
  background-color: #3498db;
  color: #fff;
}
/* アクティブな（選択された）ボタンのスタイル */
.button03.active {
  background-color: #3498db;
  color: #fff;
  transform: none; /* ホバー効果と区別するために、ここでは変形を無効化 */
}
.button04 {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #EBA4A4;
  color: #EBA4A4;
  background-color: #fff;
}
.button-text02 {
  font-size: 2em;
  font-weight: bold;
  line-height: 1.4;
}
/* ホバー時のスタイル */
.button04:hover {
  background-color: #EBA4A4;
  color: #fff;
}
/* アクティブな（選択された）ボタンのスタイル */
.button04.active {
  background-color: #EBA4A4;
  color: #fff;
  transform: none; /* ホバー効果と区別するために、ここでは変形を無効化 */
}


.hidden {
  display: none !important;/* 強制的に非表示スペースを消す */
}



.oshiharai{
  font-size: 2vw;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2vw;

  margin: 10vw 0 3vw 0;
}

/* .oshiharai p{
  margin: 2vw 0 0;
} */

.naninu{
  display: flex;
  flex-direction: column;
  gap: 5vw;
}
#booth-zenbu-in ,#booth-zenbu-ten{
  display: grid;

  justify-content: center;
  grid-template-columns: 1fr 1fr;
  /*grid-template-rows: 100px 100px; /* 2行作る */
  gap: 2vh;
}
.tenpo-zentaib{
  background-color: #509BE2;
  border-radius: 5vw;

  padding: 2vw 4vw;
  color: #fff;
}
.tenpo-zentaib p{
  text-align: left;
}
.tenpo-zentaip{
  background-color: #EBA4A4;
  border-radius: 5vw;

  padding: 2vw 4vw;
  color: #fff;
}
.tenpo-zentaip p{
  text-align: left;
}

.tenpo-zentai p{
  display: flex;
  margin-left: 0;
}
.tenpo-setumei{
  display: flex;
  align-items: center;
  gap: 2vw;
}
.tenpo-setumei img{
  display: flex;
  width: 15vw;
  height: auto;
  /* border-radius: 50%; 角丸で〇つくってた*/
  object-fit: cover;

  margin: 2vw 0;
}
.tenpo-moji{
  flex: 1; /* 残りのスペースを占める */
}
.tenpo-moji p{
  display: flex;
  flex-direction: column;
}

/*map*/
.map-gazou{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5vw;
}
.map-gazou img{
  width: 100%;
  height: auto;
}

/*bus*/
.bus-setumei{
  margin: 5vw 0;
}
.bus-setumei img{
  width: 100%;
  height: auto;

  margin: 5vw 0 0 0;
}






/* レスポンシブデザイン */
@media (max-width: 800px) {
  .guest-image {
      width: 35vw;
      height: auto;
      margin: 5vw 0 0; 
    }
    .guest-content {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }
    .content {
      flex-direction: column;
      text-align: center;
    }
}

@media (max-width: 600px) {
    th, td {
        font-size: 0.8em;
        padding: 3px;
    }
    .content {
        flex-direction: column;
        text-align: center;
    }

    .logo {
        text-decoration: none;
        order: -1;
        margin-bottom: 20px;
        max-width: 200px;
    }

    .menu-list{
      display: flex;
      flex-direction: column;
      gap: 5vw 0;
    }
    .text-container p {
      font-size: 1rem;
    }

    .event-buttons {
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .button {
      width: 80px;
      height: 80px;
    }
    .button-text {
      font-size: 0.7rem;
    }


    .time-buttons {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .button01 {
      width: 25vw;
      height: 25vw;
    }
    .button02 {
      width: 25vw;
      height: 25vw;
    }

    .button03 {
      width: 15vw;
      height: 15vw;
    }
    .button04 {
      width: 15vw;
      height: 15vw;
    }
    
    
    .button-text01 {
      font-size: 1.5rem;
    }
    .button-text02 {
      font-size: 1.5rem;
    }
    .button-text03 {
      font-size: 1rem;
    }
    .button-text04 {
      font-size: 1rem;
    }

    .bus {
      width: 80vw;
      height: auto;
    }
    .bus-setumei {
      font-size: 0.8rem;
    }

    .oshiharai{
      display: flex;
      flex-direction: column;
      align-items: center;
      margin: 10vh 0 5vh 0;
    }

    #booth-zenbu-in ,#booth-zenbu-ten{
      display: grid;

      justify-content: center;
      grid-template-columns: 1fr;
      gap: 2vh;
    }


    /*gest*/
    .guest-image {
      width: 35vw;
      height: auto;
      margin: 5vw 0 0; 
    }
    .guest-content {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .senkyo {
      width: 15vh;
      height: auto;
      margin: 2vw;
    }
    .senkyo-p{
      margin: 0;
    }
    .senkyo-kekka {
      display: inline;
      align-items: center;
      justify-content: center;
    }

    .youtube-button{ 
      font-size: 3vh;
    }

    /*tutu*/
    .renraku-kanren{
    display: flex;
    flex-direction: column;

    
    }
}