@charset "UTF-8";

/* .ta-content 内で中央寄せ */
.market-calendar {
  box-sizing: border-box;
  color: var(--ta-color-text, #1a1a2e);
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--ta-font-family-ja, "Noto Sans JP", "Noto Sans", sans-serif);
  width: 100%;
}

/* カレンダー上の関連カレンダーへのテキストリンク（スワップ/金利）
 * 下の余白は .market-calendar__frame 側の margin-top で確保している */
.market-calendar__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.market-calendar__frame {
  height: 850px;
  margin-bottom: 32px;
  /* 上の .market-calendar__links との間隔 */
  margin-top: 24px;
  overflow: auto;
  position: relative;
  width: 100%;
}

.market-calendar__frame iframe {
  border: 0;
  display: block;
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.market-calendar__notes {
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  overflow-wrap: anywhere;
  padding: 0;
  width: 100%;
}

.market-calendar__notes li {
  margin: 0;
  padding: 0;
}

@media (min-width: 940px) {
  .market-calendar__links {
    flex-direction: row;
    gap: 40px;
  }

  .market-calendar__frame {
    height: 900px;
    margin-bottom: 40px;
    /* 上の .market-calendar__links との間隔 */
    margin-top: 32px;
  }
}
