@charset "UTF-8";
.host-details {
  font-family: "Arial", sans-serif;
  background-color: #fdfdfd;
  width: 90%;
  margin: 0 auto;
}
.host-details a {
  color: #007bff;
  text-decoration: none;
}
.host-details a:hover {
  text-decoration: underline;
}
.host-details .host-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
}
.host-details .host-header .host-identity {
  display: flex;
  align-items: center;
  gap: 15px;
}
.host-details .host-header .host-identity .host-name {
  font-size: 28px;
  color: #333;
  margin-bottom: 0;
}
.host-details .host-header .host-name-with-breaks {
  text-align: center;
  font-size: 28px;
  width: 380px;
  color: #333;
  margin-bottom: 0;
  white-space: pre-wrap; /* 改行を保持し、必要に応じて折り返す */
}
.host-details .host-header .host-contact-info {
  display: flex;
  flex-direction: column;
  text-align: left;
  /* 親要素全体の寄せはそのままにしておくか、削除 */
  /* align-items: flex-end; /* ここはコメントアウトするか、flex-start に変更しない限り右寄せの影響を受ける */
  /* gap: 5px; */
}
.host-details .host-header .host-contact-info .contact-items {
  display: flex;
  padding-left: 0;
  flex-direction: column; /* 各p要素を縦に並べる */
  align-items: flex-start; /* これが重要！子要素（pタグ）を左寄せにする */
  text-align: left; /* 各p要素内のテキストを左寄せにする */
  align-self: flex-start;
}
.host-details .host-header .host-contact-info .contact-items p {
  margin-bottom: 0; /* gap を使うのでマージンは0にする */
  font-size: 16px;
  color: #555;
  text-align: left;
  /* background-color: lightblue; /* デバッグ用に背景色を付けて、要素の範囲を確認すると良い */
}
.host-details .top-image-container {
  margin-bottom: 50px;
  text-align: center;
}
.host-details .host-top-image {
  width: 50%;
  border-radius: 6px;
}
.host-details .host-top-image img {
  width: 100%;
  margin: 20px 0;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.host-details .host-events {
  margin: 20px auto;
  height: auto;
  min-height: 200px;
}
.host-details .host-events h2 {
  text-align: center; /* タイトルを中央揃え */
  font-size: 1.5em; /* タイトルのフォントサイズを調整 */
  margin-bottom: 20px; /* タイトルの下に余白を追加 */
  color: #333; /* タイトルの文字色を濃いグレーに設定 */
}
.host-details .host-events table {
  border-collapse: collapse; /* 枠線を重ねる */
  width: 100%; /* テーブル全体の幅を100%に設定 */
  border: 1px solid #ddd; /* テーブル全体の枠線を薄いグレーに設定 */
  background-color: #f9f9f9; /* テーブルの背景色を薄いグレーに設定 */
}
.host-details .host-events th {
  background-color: #e8f5e9; /* ヘッダーの背景色を薄い緑に設定 */
  color: #333; /* ヘッダーの文字色を濃いグレーに設定 */
  font-weight: bold; /* ヘッダーの文字を太字に設定 */
  padding: 10px; /* ヘッダーセル内の余白を設定 */
  text-align: left; /* ヘッダーのテキストを左揃えに設定 */
  border: 1px solid #ddd; /* ヘッダーセルの枠線を薄いグレーに設定 */
}
.host-details .host-events td {
  padding: 10px; /* データセル内の余白を設定 */
  text-align: left; /* データセルのテキストを左揃えに設定 */
  border: 1px solid #ddd; /* データセルの枠線を薄いグレーに設定 */
}
.host-details .host-events tr:nth-child(odd) {
  background-color: #ffffff; /* 奇数行の背景色を白に設定 */
}
.host-details .host-events tr:nth-child(even) {
  background-color: #f2f2f2; /* 偶数行の背景色を薄いグレーに設定 */
}
.host-details .host-events tr:hover {
  background-color: #e0f7fa; /* ホバー時の背景色を薄い青に設定 */
}
.host-details .content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
  padding: 20px;
  height: 400px;
  background-color: #e8f5e9;
}
.host-details .content-grid .host-news-section, .host-details .content-grid .topics-section {
  text-align: center;
  height: 300px;
}
.host-details .content-grid .host-news-section h2, .host-details .content-grid .topics-section h2 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #444;
}
.host-details .content-grid .host-news-section p, .host-details .content-grid .topics-section p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}
.host-details .content-grid .left-column {
  padding-right: 10px;
  border-right: 2px solid #c3c3c3;
}
.host-details .description-section {
  margin: 40px 0;
  padding: 20px;
  text-align: center;
  height: 400px;
}
.host-details .description-section h2 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #444;
}
.host-details .description-section p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}
.host-details .goods-section {
  margin: 40px 0;
  padding: 20px;
  height: auto;
  background-color: #e8f5e9;
}
.host-details .goods-section h2 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #444;
}
.host-details .goods-section .goods-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}
.host-details .goods-section .goods-list .good-item {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.host-details .goods-section .goods-list .good-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #333;
}
.host-details .goods-section .goods-list .good-item p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 10px;
}
.host-details .goods-section .goods-list .good-item .good-image {
  width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 10px;
}

/* 新: contact-table 用のスタイル（既存 CSS を上書き） */
.host-details .host-contact-info {
  display: flex;
  justify-content: center;
  padding: 12px 0;
}

.host-details .host-contact-info .contact-table {
  width: 70%;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 0 10px;
  border: none;
}

.host-details .host-contact-info .contact-table th,
.host-details .host-contact-info .contact-table td {
  padding: 12px 16px;
  text-align: left;
  vertical-align: middle;
}

.host-details .host-contact-info .contact-table th {
  width: 30%;
  font-weight: 700;
  color: #333;
  background: transparent;
}

.host-details .host-contact-info .contact-table td {
  color: #444;
}

.host-details .host-contact-info .contact-table tbody tr:nth-child(odd) {
  background-color: #ffffff;
  border-radius: 8px;
}

.host-details .host-contact-info .contact-table tbody tr:nth-child(even) {
  background-color: #f8f8fb;
  border-radius: 8px;
}

.host-details .host-contact-info .contact-table tbody tr:hover {
  background-color: #f1f5ff;
}

@media (max-width: 768px) {
  .host-details .host-contact-info .contact-table {
    width: 100%;
    border-spacing: 0 8px;
  }
  .host-details .host-contact-info .contact-table th,
  .host-details .host-contact-info .contact-table td {
    display: block;
    width: 100%;
    padding: 10px 12px;
  }
  .host-details .host-contact-info .contact-table tbody tr {
    display: block;
    margin-bottom: 8px;
  }
}
.host-details .host-images {
  margin: 40px 0;
  padding: 10px 0;
  height: 600px;
}
.host-details .host-images h2 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #444;
}
.host-details .host-images .image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
}
.host-details .host-images .host-image {
  max-width: 400px;
  width: 100%;
  height: auto;
  margin: 20px 0;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.host-details .host-video {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}
.host-details .host-video .video-container {
  width: 100%;
  max-width: 600px;
}
.host-details .host-video video {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.host-details .contact-section {
  margin-top: 30px;
  padding: 20px;
  text-align: center;
  background-color: #e8f5e9;
  height: 400px;
}
.host-details .contact-section h2 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #444;
}
.host-details .contact-section .contact-message {
  font-size: 16px;
  color: #555;
  margin-bottom: 10px;
}
.host-details .contact-section .contact-link {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}
.host-details .contact-section .contact-link:hover {
  background-color: #0056b3;
}

/* SPデザイン */
@media (max-width: 480px) {
  /* 全体の調整 */
  body {
    padding: 10px;
  }
  /* ボタンの調整 */
  .button, .operation-button {
    width: 90%; /* ボタンを画面幅に合わせる */
    margin: 10px auto; /* ボタン間の余白を追加 */
  }
  .host-header {
    flex-direction: column;
    margin: 5px;
    padding: 5px !important;
  }
  .host-header h1 {
    font-size: 18px !important; /* 見出しのフォントサイズを調整 */
    text-align: center; /* テキストを中央揃え */
  }
  .host-header p {
    font-size: 14px !important; /* 段落のフォントサイズを調整 */
    margin: 0; /* マージンをリセット */
  }
  .host-header .contact-items p {
    text-align: right !important; /* テキストを右揃え */
  }
  .host-top-image {
    width: 100% !important;
  }
  .host-top-image .host-top-image {
    width: 100% !important; /* 横幅を100%に */
    height: auto; /* 高さは自動調整 */
    margin: 0 auto; /* 中央揃え */
  }
  .content-grid {
    flex-direction: column; /* 子要素を縦並びにする */
    gap: 20px; /* 子要素間の余白を設定 */
    margin: 20px auto; /* 全体の余白を調整 */
  }
  .content-grid p {
    font-size: 12px;
  }
  .left-column, .right-column {
    width: 100%; /* 子要素の幅を100%に設定 */
    text-align: center; /* テキストを中央揃えに設定 */
  }
  .description-section {
    height: auto;
  }
  .host-images {
    height: auto;
  }
}/*# sourceMappingURL=/assets/hosts/show-048d6909.css.map */