@charset "UTF-8";
/* CSS Document */
.ir-simple-title {
	padding-bottom: 0.5625rem;
	padding-top: 8.3125rem;
	position: relative;
	text-align: center;
}

.ir-simple-title h1 {
	color: #f62837;
	font-size: 2.7rem;
	font-weight: 700;
}

/* --- IRカレンダー専用 --- */
.ir-calendar {
margin-top: 3rem;
width: 70%;
margin-inline: auto;
}

.ir-calendar h2 {
  font-size: 1.25rem;
  font-weight: 700;
  border-left: 4px solid #f62837;
  padding-left: 0.75rem;
  margin-bottom: 1.5rem;
}

/* 表の基本設定 */
.ir-calendar__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
}

.ir-calendar__table th,
.ir-calendar__table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #e5e5e5;
}

.ir-calendar__table th {
  background-color: #fafafa;
  font-weight: 600;
  text-align: left;
  width: 50%;
}

.ir-calendar__table tr:nth-child(even) th {
  background-color: #f5f5f5;
}

.ir-calendar__table td {
  color: #333;
}

.ir-simple {
  margin-bottom: 5rem;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

#content.ir-simple {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

@media screen and (max-width: 769px) {
.ir-simple-title {
	padding-bottom: 0.375rem;
	padding-top: 3.75rem;
}

.ir-simple-title h1 {
	font-size: 1.5rem;
}}

/* レスポンシブ */
@media (max-width: 768px) {
  .ir-calendar__table th,
  .ir-calendar__table td {
    display: block;
    width: 100%;
  }
  .ir-calendar__table tr {
    margin-bottom: 1rem;
    display: block;
    border-bottom: 1px solid #e5e5e5;
  }
  .ir-calendar__table th {
    background: none;
    padding-bottom: 0;
    font-weight: 700;
  }
  .ir-calendar__table td {
    padding-top: 0.25rem;
  }
}

/* --- 電子公告ページ専用 --- */
.ir-announcement {
  width: 70%;
  margin: 3rem auto 5rem auto;
}

.ir-announcement__block {
  margin-bottom: 2.5rem;
}

.ir-announcement h2 {
  font-size: 1.25rem;
  font-weight: 700;
  border-left: 4px solid #f62837;
  padding: 0.75rem 1rem;
  margin-bottom: 1.5rem;
}

/* テキスト（電子公告なし時） */
.ir-announcement__text {
  font-size: 1rem;
  color: #333;
  padding: 0.5rem 0;
  border-bottom: 1px solid #e5e5e5;
}

/* 決算公告リスト */
.ir-announcement__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ir-announcement__list li {
  border-bottom: 1px solid #e5e5e5;
  padding: 0.75rem 0;
}

.ir-announcement__list a {
  text-decoration: none;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.2s;
}

.ir-announcement__list a:hover {
  color: #f62837;
}

/* アイコン */
.ir-announcement__list a {
  display: inline-flex;
  align-items: center;
  gap: 3px; /* ← アイコンとの間隔。1〜3pxで調整可 */
  text-decoration: none;
  color: inherit;
}

.ir-announcement__list a::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url("../img/icon/ico_pdf.png") no-repeat center / contain;
  background-position: center;
  margin: 0; /* ← 余白リセット */
}

/* レスポンシブ */
@media (max-width: 1024px) {
  .ir-announcement {
    width: 100%;
    padding-inline: 1rem;
  }
}

/*動画埋込*/
    .wrap {
      max-width: 960px;
      margin: 40px auto;
      padding: 0 16px;
      font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans JP", sans-serif;
    }

    /* レスポンシブな動画枠 */
    .video {
      width: 100%;
      /* 16:9 のアスペクト比。4:3にしたい場合は 4 / 3 に変更 */
      aspect-ratio: 16 / 9;
      position: relative;
      overflow: hidden;
      background: #000;
      border-radius: 16px;        /* 角丸（任意） */
      box-shadow: 0 10px 30px rgba(0,0,0,.15); /* 影（任意） */
    }

    .video > iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }

  @media (min-width: 1024px) {
    .video {
      width: 60%;
	margin:10px auto;
    }
  }

    /* 動きを減らす設定のユーザーには自動再生オフ（任意） */
    @media (prefers-reduced-motion: reduce) {
      .video[data-autoplay="true"] iframe {
        /* 自動再生パラメータを無視させたい場合は、必要に応じて JS で差し替え推奨 */
        /* ここではスタイルのみのためコメントで注意喚起 */
      }
    }

    /* キャプションなど補足テキスト */
    .caption {
      margin-top: 8px;
      color: #555;
      font-size: 14px;
    }