﻿@charset "UTF-8";
/* タイムライン形式のスケジュールスタイル */
.schedule {
  list-style: none;
  padding: 0;
  margin: 20px 0 60px;
  position: relative;
}

/* 縦のライン */
.schedule::before {
  content: '';
  position: absolute;
  left: 68px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #f0f0f0;
}

.schedule_item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
  position: relative;
}

/* 時刻表示部分 */
.schedule_time {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  height: auto;
  background-color: #cf0037;
  color: #fff;
  padding: 6px 0px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  margin-right: 20px;
  margin-left: 12%;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

/* タイムラインの点 */
.schedule_item::after {
  content: '';
  position: absolute;
  left: 60px;
  top: 18px;
  width: 16px;
  height: 16px;
  background-color: #cf0037;
  border: 5px solid #fff;
  border-radius: 50%;
  z-index: 3;
  /*box-shadow: 0 0 0 2px #cf0037;*/
}

/* 内容表示部分 */
.schedule_item > span + span {
  flex: 1;
  padding-top: 8px;
  line-height: 1.8;
  font-size: 15px;
}

.schedule_item strong {
  font-weight: bold;
  color: #333;
  display: block;
}

/* l-listコンテナ */
.l-list {
  margin-top: 30px;
}

/* リストスタイル */
.c-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.c-list--note {
  margin-top: 20px;
}

.c-list--note li {
  position: relative;
  padding-left: 1em;
  margin-bottom: 10px;
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.c-list--note li::before {
  content: '※ ';
  position: absolute;
  left: 0;
}

/* レスポンシブ対応 - スマホ画面用 */
@media screen and (max-width: 736px) {
  .schedule {
    margin: 20px 0 40px;
  }
  
  .schedule::before {
    left: 35px;
  }
  
  .schedule_time {
    min-width: 50px;
    font-size: 13px;
    padding: 6px 8px;
    margin-right: 20px;
    margin-left: 12%;
  }
  
  .schedule_item {
    margin-bottom: 25px;
    flex-wrap: nowrap;
  }
  
  .schedule_item::after {
    left: 27px;
    width: 12px;
    height: 12px;
    top: 10px;
    border: 3px solid #fff;
  }
  
  .schedule_item > span + span {
    flex: 1;
    font-size: 13px;
    padding-top: 3px;
    line-height: 1.7;
  }
  
  .schedule_item strong {
    font-size: 13px;
  }
  
  .c-list--note li {
    font-size: 12px;
  }
}

/* フェードインアニメーション */
.js-fadein {
  opacity: 1;
  transform: translateY(0);
}