/* 共通設定 */
body {
  font-family: "Nunito", "Arial Rounded MT Bold", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #f8f9fb;
  color: #333;
}

/* ヘッダー */
header {
  text-align: center;
  color: #fff;
  padding: 2em 1em;
  background-color: #87ceeb; /* 水色背景 */
}

/* Meeting Information */
.meeting-info {
  color: #003366;
  margin-top: 0.5em;
  font-weight: bold;
}

.meeting-info p {
  margin: 0.2em 0;     
  line-height: 1.2em;  
}

/* ナビゲーション */
nav ul {
  list-style: none;
  margin: 1em 0 0 0;
  padding: 0;
}

nav ul li {
  display: inline-block;
  margin: 0 1em;
}

nav a {
  color: #003366;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

/* 望遠鏡画像横並び */
.telescope-images {
  display: flex;
  justify-content: center;
  gap: 0;        /* 写真間をくっつける */
  margin-top: 20px;
}

/* 画像コンテナ */
.image-container {
  position: relative;
  display: inline-block;  
}

/* 画像: 縦横比を維持して全体表示 */
.image-container img {
  height: 150px;     
  width: auto;       
  object-fit: contain;
  display: block;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* creditを右下に表示 */
.image-container .credit {
  position: absolute;
  bottom: 4px;
  right: 4px;
  font-size: 0.6em;
  color: #fff;
  background-color: rgba(0,0,0,0.5);
  padding: 2px 4px;
  border-radius: 3px;
}

/* メインコンテンツ */
main {
  max-width: 800px;
  margin: 2em auto;
  padding: 1em;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

section {
  margin-bottom: 2em;
}

/* Contact / S/LOC / Hosted by 行間 */
section p {
  margin: 0.1em 0;  
  line-height: 1.2em; 
}

/* フッター全体 */
footer {
  text-align: center;
  font-size: 0.9em;
  color: #666;
  padding: 1em 0;
  border-top: 1px solid #ccc;
  background-color: #f0f0f0;
}

/* フッター内容を横並びに */
.footer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px; 
  flex-wrap: wrap; 
}

.footer-content p {
  margin: 0;
}

/* フッターのロゴ */
.footer-logo {
  height: 24px; 
  width: auto;
}

/* To be open 表示用 */
.to-be-open {
  color: #999;      /* 薄いグレー */
  font-size: 0.9em; /* 小さめ */
  text-align: center;
  margin-top: 2em;
}
