/* カレンダー2列 */
.xo-months {
  display: flex;
}

.xo-month-wrap {
  width: 50%;
  margin: 0 5px;
}

@media (max-width: 768px) {
  .xo-months {
    display: block;
  }

  .xo-month-wrap {
    width: 100%;
    margin: 0;
  }
}

/* 背景囲み */
.bg {
  background: #e8f6fb;
  padding: 10px 15px;
  display: block;
  border: 1px solid #fff;
  box-shadow: 0 3px 3px #ebeae8;
  border-radius: 13px 0;
}

/* 文字囲み */
span.bg {
  background: #004BA0;
  color: #fff;
  padding: 5px;
  border-radius: 3px;
  display: block;
}

/* 行揃え */
.indent {
  margin-left: 4em;
  text-indent: -4em;
}

.indent span.bg {
  display: inline;
}

/* 角丸枠線 */
.frame {
  border: 1px solid #004BA0;
  border-radius: 6px;
  padding: 1em;
  position: relative;
  display: flex;
}

.span_6 .frame,
.span_4 .frame {
  margin-top: 30px;
}

@media (max-width: 767px) {

  .span_6 .frame,
  .span_4 .frame {
    margin-top: 20px;
  }

  .frame {
    display: block;
  }

  .frame .span_2,
  .frame .span_3,
  .frame .span_4,
  .frame .span_5,
  .frame .span_6,
  .frame .span_7,
  .frame .span_8,
  .frame .span_9,
  .frame .span_10 {
    width: 100% !important;
  }
}


/* オプション下矢印 */
.frame.arrow:after {
  border-color: transparent transparent transparent #004BA0;
  border-style: solid;
  border-width: 26px 0 26px 18px;
  content: '';
  margin-top: -11px;
  position: absolute;
  right: 50%;
  bottom: -36px;
  transform: rotate(90deg);
}

/* 最後の矢印消す */
.frame.arrow.end:after {
  display: none;
}

/* 横並びのコンテンツ高さ合わせる */
.wrap {
  display: flex;
}

.dia-table td {
  text-align: left;
}

dl.dl-horizontal dt {
  width: 20%;
}

@media (max-width: 767px) {
  dl.dl-horizontal dt {
    width: 100%;
  }
}

.mv {
  max-width: 95%;
  margin: 30px auto 0;
  border-radius: 15px 15px 0 0;
  padding-bottom: 0;
}

.top-first .slider-wrap {
  padding-top: 0;
  max-width: 95%;
  margin: 90px auto 0;
  border-radius: 15px 15px 0 0;
}

/* MVスライダーセンター以外白いフィルアー */
.mv__items .slick-slide {
  position: relative;
}

/* slick-center の付いていないスライド上に白い半透明オーバーレイを重ねる */
.mv__items .slick-slide:not(.slick-center)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0);
  /* 不透明度お好みで調整 */
  pointer-events: none;
  z-index: 1;
}

/* 画像本体は下に置く */
.mv__items .slick-slide img {
  position: relative;
  z-index: 0;
  aspect-ratio: 5 / 2.5 !important;
}

/* MVスライダー動きにアクセント */
/* ベースのトランジション */
.mv__items .slick-slide img {
  transition: transform 0.8s ease, opacity 0.8s ease;
}

/* センターだけズームイン */
.mv__items .slick-slide.is-zoom img {
  transform: scale(1.1);
  opacity: 1;
  z-index: 2;
}

/* センター以外は少しフェード＆傾け */
.mv__items .slick-slide.is-tilt img {
  transform: scale(0.9) rotate(2deg);
  opacity: 0.5;
  z-index: 1;
}

/* 初期状態（アニメ前） */
.mv__items .slick-slide img {
  transform: scale(1) rotate(0);
  opacity: 1;
}

/* 読み込み時は隠す */
.mv__items {
  visibility: hidden;
  /* あるいは opacity: 0; */
}

/* slickが初期化されたら表示 */
.mv__items.slick-initialized {
  visibility: visible;
  /* opacity: 1; transition: opacity 0.3s ease; */
}