
/*header*/
.menu-toggle {
  position: fixed;
  right: 20px;
  top: 20px;
  width: 50px;
  height: 30px;
  cursor: pointer;
  z-index: 300;
  font-weight: bold;
  font-size: 40px;
  
}
.menu {
  display: none;
  position: fixed;
  top: 60px;
  right: 20px;
  background:rgba(0, 0, 0, 0.836);
  color: white;
  width: 150px;
  box-shadow: 0 4px 6px rgba(0, 0, 0);
  font-family:  "Zen Kurenaido", sans-serif;;
  font-weight: bold;

}
.menu a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: white;
  border-bottom: 1px solid #ddd;
}
.menu a:last-child {
  border-bottom: none;
}
@media screen and (max-width: 640px){
  .menu-toggle {
  position: fixed;
  right: 20px;
  top: 20px;
  width: 20px;
  height: 30px;
  cursor: pointer;
  z-index: 300;
  font-weight: bold;
  font-size: 20px;
}
}




/*↓↓↓----------------------ここから書いてね-----------------------------↓↓↓*/
/* フォント設定 */
body {
    font-family: Arial, sans-serif;
    background-color: white;
}

.タイトル {
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: black;
    font-size: 4rem;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
    margin-bottom: 10px;
}

.広報宣伝局とは {
    color: orange;
    font-size: 2rem;
    font-weight: normal;
    text-shadow: none;
}

.魅力 {
    color: orange;
    font-size: 2rem;
    font-weight: normal;
    text-shadow: none;
    text-align: center;
    margin-top: 10px;
}

.魅力説明 {
    color: black;
    font-size: 1rem;
    font-weight: normal;
    text-shadow: none;
    text-align:left;
    max-width: 850px;
    margin: 0 auto 20px;
    text-align: center;
}

.活動内容説明 {
    color: black;
    font-size: 1rem;
    font-weight: normal;
    text-shadow: none;
    text-align:left;
    max-width: 850px;
    margin: 0 auto 20px;
    text-align: center;
}

/* カードデザイン */
/* 各パートの説明（カードレイアウト） */
.container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 20px;
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
}

.card {
    background-color: #f5e6cc;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.card:hover {
    transform: scale(1.05);
}

.card h3 {
    font-size: 20px;
    font-weight: bold;
    color: orange;
}

.card p {
    font-size: 16px;
    color: #4a4a4a;
    margin-top: 10px;
}
.footer {
  background-color: rgba(190, 180, 180, 0.803);
  padding: 20px;
  color:black;
  text-align: center;
  font-family:  "Zen Kurenaido", sans-serif;;
  font-weight: bold;
}
.footer-section {
  margin-bottom: 20px;
}
.footer-section h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: black;
  text-decoration: underline;
}
.footer-section ul {
  list-style: none;
  padding: 0;
}
.footer-section ul li {
  margin-bottom: 5px;
}
.footer-section ul li a {
  color: black;
  text-decoration: none;
  font-size: small;
}
.footer-section ul li a:hover {
  text-decoration: underline;
}


@media screen and (max-width: 640px) {
    .タイトル {
        font-size: 2.5rem; 
        height: auto;
        padding: 20px;
    }

    .広報宣伝局とは,.魅力 {
        font-size: 1.5rem; 
    }

    .container {
        grid-template-columns: 1fr; 
        gap: 10px;
    }

    .card {
        padding: 15px;
    }

    .card h3 {
        font-size: 18px; 
    
    }

    .card p {
        font-size: 14px; 
    }
    .魅力説明 {
        font-size: 0.9rem; 
        max-width: 90%;
        text-align: center;
    }
    .footer{
      text-align: left;
    }
}

@media screen and (max-width: 1024px) and (min-width: 641px) {
  .タイトル {
      font-size: 3rem; 
      height: auto;
      padding: 20px;
  }

  .渉外局とは,
  .魅力 {
      font-size: 1.8rem; 
  }

  .魅力説明 {
      font-size: 1rem;
      margin-left: 40px;
      margin-right: 40px;
  }

  .container {
      grid-template-columns: repeat(2, 1fr); 
      gap: 15px;
  }

  .card {
      padding: 18px;
  }

  .card h3 {
      font-size: 20px; 
  }

  .card p {
      font-size: 15px; 
  }

 
}
