﻿@charset "utf-8";

.schedule_atos {
  display: flex;
  align-items: left;
  flex-wrap: wrap;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}
.schedule_atos_items {
  position: relative;
  width: calc((100% / 3 - 40px));
  margin: 30px 40px 0 0;
}
.schedule_atos_items::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -28px;
  transform: translateY( -50% );
  background: url(../index_arrow_pc.gif) no-repeat center center;
  background-size: contain;
  width: 16px;
  height: 100%;
}
.schedule_atos_items:last-child {
  margin: 30px 0 0 0;
}
.schedule_atos_items:last-child::after {
  content: none;
}
.schedule_atos_ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  background-color: #24abc0;
  font-size: 1.16rem;
  color: #ffffff;
  text-align: center;
  padding: 15px;
}
.schedule_atos_txt {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  background-color: #fafafa;
  font-size: 1.12rem;
  color: #000000;
  padding: 15px;
}
@media screen and (max-width: 767px) {
  .schedule_atos {
  display: block;
  max-width: 400px;
  }
  .schedule_atos_items {
    margin: 20px auto 40px auto;
    width: 100%;
  }
  .schedule_atos_items::after {
    content: "";
    position: absolute;
    top: auto;
    bottom: -30px;
    right: auto;
    left: 50%;
    transform: translateX( -50% );
    background: url(../index_arrow_sp.gif) no-repeat center center;
    background-size: contain;
    width: 100%;
    height: 20px;
  }
  .schedule_atos_items:last-child {
    margin: 20px auto 0 auto;
  }
  .schedule_atos_ttl {
    font-size: 1.1rem;
  }
  .schedule_atos_txt {
    font-size: 1rem;
  }
}