/*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;
}
}

.footer {
  background-color: rgba(190, 180, 180, 0.803);
  padding: 20px;
  color:black;
  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;
}






/*↓↓↓----------------------ここから書いてね-----------------------------↓↓↓*/
/* フォントと背景 */
body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 20px;
}

/* タイトル */
.title {
    font-size: 35px;
    font-weight: bold;
    color: black;
    margin-bottom: 20px;
}

/* 委員長の写真 */
.photo img {
    width: 500px;
    height: auto;
    margin: 0 auto 20px;
}

/* メッセージ */
.message {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    text-align: left;
}

.quote {
    font-style: italic;
    font-size: 20px;
    color: #666;
    margin-bottom: 15px;
    text-align: center;
}

.message p {
    font-size: 18px;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.6;
}

.signature {
    font-weight: bold;
    margin-top: 20px;
    text-align: right;
}
.footer{
  text-align: center;
}
@media screen and (max-width: 640px) {
    .title {
        font-size: 24px; 
    }

    .chairman-photo img {
        width: 80%; 
        max-width: 200px; 
    }

    .message {
        max-width: 95%; 
        padding: 10px;
        text-align: center; 
    }

    .message p {
        font-size: 13px; 
    }

    .signature {
        text-align: center; 
    }
    .footer{
      text-align: left;
    }

}