@charset "utf-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic Pro", "Meiryo UI", "Meiryo", "MS PGothic", sans-serif;
  font-size: 62.5%;
  font-feature-settings: "palt";
}

/* 共通のタブメニュー設定 */
.menuWrap, .menuWrap2 {
  width: 100%;
  max-width: 100%;
  text-align: left;
}

.menuWrap .tabItem, .menuWrap2 .tabItem2 {
  width: 8%;
  color: #000;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 2;
  text-align: center;
  background: #ffd9d9;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  cursor: pointer;
  border-bottom: 2px solid transparent;
}

.menuWrap .tabItem:hover, .menuWrap2 .tabItem2:hover {
  background: rgb(215, 0, 30);
}

.menuWrap input[name="tabItem"], .menuWrap2 input[name="tabItem"] {
  display: none;
}

.menuWrap .tabContent, .menuWrap2 .tabContent2 {
  width: 100%;
  max-width: 100%;
  text-align: left;
  margin-top: 20px;
  display: none;
  overflow: hidden;
}

/* 選択されたタブのスタイル */
.menuWrap input:checked + .tabItem,
.menuWrap2 input:checked + .tabItem2 {
  background: rgb(215, 0, 30);
  color: white;
  border-bottom: 2px solid red;
}


.menuWrap .tabContent p, .menuWrap2 .tabContent2 p {
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  padding-bottom: 10px;
  border-bottom: 1px solid #c1c1c1;
  color: black;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .menuWrap, .menuWrap2 {
    padding: 2rem;
  }
  .menuWrap .tabItem, .menuWrap2 .tabItem2 {
    width: 25%;
    font-size: 1.2rem;
  }
}

.website-link {
  color: darkblue;
  text-decoration: none; /* 下線を消したい場合 */
}

.container2 {
  position: relative;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  margin-top: 2%;
  color: rgb(85, 85, 85);
  font-size: 2.0rem;
}

.contents {
  font-size: 70%;
}

h4 {
  font-size: 70%;
  color: gray;
}

.contaier-flex {
  display: flex;
  width: 100%;
  margin-top: 1%;
}

.container3 {
  position: relative;
  width: 30%;
  align-items: center;
  text-align: center;
}

.contaier4 {
  position: relative;
  width: 70%;
}

.container5 {
  padding-top: 15px;
}

.line-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5%;
}

.line {
  flex-grow: 1;
  border-bottom: 1px solid rgb(0, 0, 0);
}

.block-container {
  width: 90%;
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  padding-bottom: 5%;
  color: black;
  line-height: 1.2;
}

.date-container {
  text-align: right;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  color: rgb(85, 85, 85);
  line-height: 1; /* デフォルトより少し詰める */
}

.text-container {
  font-size: 1.6rem;
  letter-spacing: 0.09em;
  vertical-align: middle;
  display: inline-block;
  padding-left: 1%;
  border-left: 5px solid #dddddd;
  color: rgb(85, 85, 85);
}

.poster-container {
  margin-top: 10px; 
  max-width: 100%;
  width: 300px; /* 必要に応じて変更 */ 
}

.event_done {
  color: rgb(215, 100, 100);

}

select {
  appearance: none;      /* ブラウザ標準の矢印を消す */
  -webkit-appearance: none;
  -moz-appearance: none;

  padding: 8px 12px;     /* 余白 */
  padding-right: 36px; /* ← 矢印の分だけ右側に余白を作る */
  background-position: right 10px center; /* 枠の中に配置 */
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 2px;    /* 角を丸くする */
  background-color: #fff;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23666' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center; /* 矢印の位置 */
  background-size: 16px;
  cursor: pointer;
}

select:focus {
  border-color: #4A90E2;  /* フォーカス時に青枠 */
  outline: none;
  box-shadow: 0 0 5px rgba(74, 144, 226, 0.5);
}
