@charset "UTF-8";

/* ======================================
    コンポーネント
====================================== */
.c-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #d1351c;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
  border: 1px solid #000;
  position: relative;
  box-shadow: 10px 10px 0 #493c38;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-size: 1.375em;
  width: min(19.375em, 100%);
  height: 2.81818182em;
  border-radius: 0.875em;
}

.c-btn.c-btn--reverse {
  background-color: #fff;
  color: #d1351c;
  border: 1px solid #d1351c;
}

.c-btn.disabled {
  /* background-color: #342925; */
  color: rgba(255, 255, 255, 0.5) !important;
  pointer-events: none;
}

.c-btn:hover:not(.disabled) {
  transform: translate(5px, 5px);
  box-shadow: 5px 5px 0 #493c38;
}

.c-btn.disabled:hover {
  pointer-events: none;
}

body.page-gr .c-btn {
  background-color: #ed86b3;
}

body.page-sp .c-btn {
  background-color: #fef8c2;
  border: 1px solid #000;
  color: #000;
}

body.page-ph .c-btn {
  background-color: #ed86b3;
  border: 1px solid #000;
}

body.page-sp .footer .c-btn {
  background-color: #d994be;
  color: #fff;
}

body.page-ph .footer .c-btn {
  background-color: #1e2088;
  color: #fff;
}

body.page-gr .c-btn.c-btn--reverse {
  background-color: #fff;
  border: 1px solid #00b8ee;
  color: #00b8ee;
}

body.page-sp .c-btn.c-btn--reverse {
  background-color: #d994be;
  color: #fff;
}

body.page-ph .c-btn.c-btn--reverse {
  background-color: #1e2088;
  color: #fff;
}

body.page-sp .header .c-btn.c-btn--reverse,
body.page-sp .footer .c-btn.c-btn--reverse {
  background-color: #fff;
  color: #016f70;
}

body.page-ph .header .c-btn.c-btn--reverse,
body.page-ph .footer .c-btn.c-btn--reverse {
  background-color: #fff;
  color: #1e2088;
}

@media screen and (max-width: 767px) {
  .c-btn {
    width: min(13.88888889em, 100%);
    height: 2.77777778em;
    border-radius: 0.6875em;
    box-shadow: 6px 6px 0 #493c38;
    font-size: 1.125em;
  }

  .c-btn:hover {
    transform: translate(3px, 3px);
    box-shadow: 3px 3px 0 #493c38;
  }
}

/* ======================================
  　プロジェクト
====================================== */
/* navigation */
.navigation {
  width: 100%;
}

.navigation__links {
  display: grid;
  column-gap: 2.5em;
}

.navigation__date {
  justify-content: center;
}

.navigation__date+.navigation__links {
  margin-top: 2.5em;
}

.navigation__links.navigation__links--col2 {
  grid-template-columns: repeat(2, 1fr);
}

.navigation__links.navigation__links--col3 {
  grid-template-columns: repeat(3, 1fr);
}

.navigation__text+.navigation__links {
  margin-top: 2.5em;
}

@media screen and (max-width: 767px) {
  .navigation__links.navigation__links--col2 {
    grid-template-columns: 1fr;
    row-gap: 1.25em;
  }

  .navigation__links.navigation__links--col3 {
    grid-template-columns: 1fr;
    row-gap: 2em;
  }

  .navigation__text+.navigation__links {
    margin-top: 2em;
  }
}

.navigation__link {
  display: grid;
  grid-row: span 2;
  grid-template-rows: subgrid;
  justify-items: center;
  row-gap: 0.5em;
}

@media screen and (max-width: 767px) {
  .navigation__link {
    justify-items: center;
  }
}

.navigation__text {
  width: 31.73913043em;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-top: 0.43478261em;
  padding-bottom: 0.65217391em;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  font-size: 1.4375em;
  font-weight: 700;
  line-height: 1.5625;
  letter-spacing: 0;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .navigation__text {
    padding-top: 0.85714286em;
    padding-bottom: 0.57142857em;
    font-size: 0.875em;
    line-height: 1.625;
  }
}

.navigation__note {
  font-size: 1em;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-align: center;
}

.navigation__note.is-active {
  color: #d1351c;
  font-size: 1.4375em;
  letter-spacing: 0.06em;
  transform: translateY(-20%);
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .navigation__note {
    font-size: 0.8125em;
  }

  .navigation__note.is-active {
    font-size: 1.1875em;
  }
}

/* data-list */
.data-list {
  display: flex;
  column-gap: 1.75em;
}

.data-list.data-list--center {
  align-items: center;
}

@media screen and (max-width: 767px) {
  .data-list {
    flex-direction: column;
    row-gap: 0.625em;
  }

  .overview-lists .data-list.data-list--center {
    align-items: flex-start;
  }

  .overview-lists .data-list dd p {
    font-size: 0.8em;
  }
}

.data-list dt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 6.75em;
  height: 1.5em;
  background-color: #000;
  color: #fff;
  font-size: 1.25em;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
}

body.page-sp .data-list dt {
  background-color: #016f70;
}

body.page-ph .data-list dt {
  background-color: #1e2088;
}

@media screen and (max-width: 767px) {
  .data-list dt {
    width: 7.5em;
    height: 1.875em;
    font-size: 1em;
  }
}

.data-list dd {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 1em;
}

@media screen and (max-width: 767px) {
  .data-list dd {
    row-gap: 0.625em;
  }
}

.data-list dd p {
  display: flex;
  align-items: center;
  font-size: 2em;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .data-list dd p {
    font-size: 0.97em;
  }
}

.overview-lists__item.data-list dd p:not(:has(strong)) {
  font-size: 1.125em;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .overview-lists__item.data-list dd p:not(:has(strong)) {
    font-size: 0.875em;
    line-height: 1.9285714286;
  }
}

.overview-lists__item.data-list dd p .c-btn {
  width: 7.64705882em;
  height: 2.64705882em;
  border-radius: 0.58823529em;
  font-size: 1.0625em;
  box-shadow: 6px 6px 0 #493c38;
}

.overview-lists__item.data-list dd p .c-btn:hover {
  transform: translate(3px, 3px);
  box-shadow: 3px 3px 0 #493c38;
}

.data-list dd.font-din {
  font-family: "din-2014-narrow", sans-serif;
}

.data-list dd p.u-initial {
  color: #000;
}

body.page-sp .data-list dd.font-din {
  color: #016f70;
}

body.page-ph .data-list dd.font-din {
  color: #1e2088;
}

.data-list dd em {
  font-size: 1.2em;
}

.data-list dd small {
  font-size: 0.8125em;
}

.data-list dd strong {
  font-size: 1.65625em;
  letter-spacing: 0.155em;
}

.data-list dd strong:has(span) {
  letter-spacing: 0.01em;
}

.data-list dd strong span {
  display: inline-block;
  transform: translateY(-10%) rotate(5deg);
  font-size: 0.79245283em;
  letter-spacing: 0.01em;
  font-weight: 700;
}

.data-list dd>span {
  display: inline-block;
  margin-left: 0.2em;
  font-size: 1.1875em;
  letter-spacing: 0.06em;
  transform: translateY(8%);
}

.data-list__map {
  width: 26em;
  aspect-ratio: 442 / 248;
}

.data-list__map iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

@media screen and (max-width: 767px) {
  .data-list__map {
    width: 100%;
  }
}

/* ======================================
  　レイアウト
====================================== */
.l-inner {
  width: 66.5em;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-left: 1.25em;
  padding-right: 1.25em;
}

/* main */
.main {}

.main__inner {}

.main__conversion-area {
  padding-top: 4.625em;
  padding-bottom: 5.625em;
}

.main__conversion-area .navigation__links {
  width: 51.25em;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.main__conversion-area .c-btn {
  height: 3.5em;
}

@media screen and (max-width: 767px) {
  .main__conversion-area {
    width: 100%;
    padding-top: 2.5em;
    padding-bottom: 3.125em;
  }

  .main__conversion-area .c-btn {
    height: 3.125em;
  }
}

.main__contents {
  padding-top: 2.25em;
  padding-bottom: 6.25em;
  background-color: #000;
}

body.page-sp .main__contents {
  background-color: #016f70;
}

body.page-ph .main__contents {
  background-color: #1e2088;
}

@media screen and (max-width: 767px) {
  .main__contents {
    /* padding-top: 1.875em; */
    padding-top: 0;
    padding-bottom: 3.125em;
  }
}

/* ======================================
    footer
====================================== */
.footer {
  padding-top: 5.3125em;
  padding-bottom: 3.125em;
  border-top: 1px solid #000;
  background-color: #d1351c;
  color: #fff;
}

body.page-gr .footer {
  background-color: #fff;
  color: #000;
}

body.page-sp .footer {
  background-color: #016f70;
}

body.page-ph .footer {
  background-color: #1e2088;
}

@media screen and (max-width: 767px) {
  .footer {
    padding-top: 4.6875em;
    padding-bottom: 1.5625em;
  }
}

.footer__inner {}

.footer__contents {}

.footer__btn {}

.footer__btn .c-btn {
  width: min(15.95833333em, 100%);
  height: 3.20833333em;
  font-size: 1.5em;
}

@media screen and (max-width: 767px) {
  .footer__btn .c-btn {
    width: min(13.88888889em, 100%);
    height: 2.77777778em;
    font-size: 1.125em;
  }
}

.footer__text {
  margin-top: 2.8125em;
  padding-bottom: 2.1875em;
  font-size: 1em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.8125;
}

@media screen and (max-width: 767px) {
  .footer__text {
    margin-top: 2.5em;
    padding-bottom: 1.64285714em;
    font-size: 0.875em;
    line-height: 1.625;
    letter-spacing: 0.01em;
  }
}

.footer__company {
  margin-top: 4.375em;
}

.footer__company a {
  font-size: 1.75em;
  font-weight: 700;
  letter-spacing: 0.06em;
}

@media screen and (max-width: 767px) {
  .footer__company {
    margin-top: 2.625em;
  }

  .footer__company a {
    margin-top: 1.81818182em;
    font-size: 1.375em;
  }
}

.footer__note {
  margin-top: 1.25em;
  font-size: 1em;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.625;
}

@media screen and (max-width: 767px) {
  .footer__note {
    margin-top: 1.42857143em;
    font-size: 0.875em;
    line-height: 1.625;
    letter-spacing: 0.01em;
  }
}

.footer__copyright {
  margin-top: 2.1875em;
}

.footer__copyright small {
  font-size: 0.875em;
  letter-spacing: 0.01em;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .footer__copyright small {
    font-size: 0.8125em;
  }
}

/* ======================================
    main-visual
====================================== */
.main-visual {
  padding-top: 7.5em;
  padding-bottom: 4.6875em;
}

.main-visual.main-visual--full {
  padding-top: 0;
  padding-bottom: 0;
}

@media screen and (max-width: 767px) {
  .main-visual.main-visual--full {
    padding-top: 4.6875em;
  }
}

body.page-sp .main-visual {
  background-color: #016f70;
}

body.page-ph .main-visual {
  background-color: #a9cdec;
}

@media screen and (max-width: 767px) {
  .main-visual {
    padding-top: 4.375em;
    padding-bottom: 4.6875em;
  }
}

.main-visual__inner {}

@media screen and (max-width: 767px) {
  .main-visual.main-visual--full .main-visual__inner.l-inner {
    padding-left: 0;
    padding-right: 0;
  }
}

.main-visual__contents {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main-visual__img {
  width: 100%;
}

.main-visual.main-visual--full .main-visual__img {
  height: 100vh;
}

@media screen and (max-width: 767px) {
  .main-visual.main-visual--full .main-visual__img {
    height: auto;
  }
}

.main-visual__img picture {
  display: block;
  width: 100%;
  height: 100%;
}

.main-visual__img img {
  transform: translateX(1%);
}

.main-visual.main-visual--full .main-visual__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: translateX(0);
}

@media screen and (max-width: 767px) {
  .main-visual__img img {
    transform: translateX(-1%);
  }
}

.main-visual__nav {
  margin-top: 2.5em;
}

@media screen and (max-width: 767px) {
  .main-visual__nav {
    margin-top: 3.4375em;
  }
}

/* ======================================
    about
====================================== */
.about {
  padding-top: 11.25em;
  padding-bottom: 5.625em;
  background-color: #d1351c;
  /* border: 1px solid #000; */
}

body.page-gr .about {
  background-color: #ed86b3;
}

body.page-sp .about {
  background-color: #016f70;
}

body.page-ph .about {
  background-color: #1e2088;
}

@media screen and (max-width: 767px) {
  .about {
    padding-top: 2.6em;
    padding-bottom: 2.5em;
  }
}

.about__inner {
  width: 58.75em;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25em;
  padding-right: 1.25em;
}

@media screen and (max-width: 767px) {
  .about__inner {
    width: 100%;
    max-width: 100%;
    padding-right: 1.5625em;
    padding-right: clamp(2.5rem, 0.072rem + 6.36vw, 5rem);
    padding-left: 1.5625em;
    padding-left: clamp(2.5rem, 0.072rem + 6.36vw, 5rem);
  }
}

.about__section-title {
  color: #fff;
  font-size: 1.5625em;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .about__section-title {
    font-size: 1em;
    text-align: left;
  }
}

.about__contents {
  margin-top: 2em;
  padding-top: 3.125em;
  padding-bottom: 3.125em;
  margin-right: calc(50% - 50vw);
  background-color: #fff;
  border: 1px solid #000;
}

@media screen and (max-width: 767px) {
  .about__contents {
    margin-top: 1em;
    padding-top: 1.125em;
    padding-bottom: 1.125em;
  }
}

.about__box {
  max-width: 56.25em;
  padding-right: 3.75em;
  padding-left: 3.75em;
}

@media screen and (max-width: 767px) {
  .about__box {
    padding-right: 1.25em;
    padding-left: 1.25em;
  }
}

.about__box h2 {
  font-size: 1.25em;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.7419354839;
}

@media screen and (max-width: 767px) {
  .about__box h2 {
    font-size: 1em;
  }
}

.about__box p {
  margin-top: 1em;
  font-size: 1.0625em;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.9411764706;
  text-align: justify;
}

@media screen and (max-width: 767px) {
  .about__box p {
    font-size: 0.875em;
    line-height: 1.9285714286;
  }
}

.about__box p+p {
  margin-top: 2.1875em;
}

@media screen and (max-width: 767px) {
  .about__box p+p {
    margin-top: 1.875em;
  }
}

/* ======================================
    section
====================================== */
.section {
  padding-top: 3em;
}

@media screen and (max-width: 768px) {
  .section {
    padding-top: 1.875em;
  }
}

.section__inner.l-inner {
  /* width: 58.75em; */
}

.section__title {
  color: #fff;
  font-size: 1.5625em;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 2.16;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .section__title {
    font-size: 1em;
  }

  .section__title span {
    /* font-size: 1.125em; */
  }

  .section__title small {
    /* font-size: 0.5625em; */
  }
}

.section__title span {
  display: inline-block;
  font-family: "din-2014-narrow", sans-serif;
  font-size: 1.52em;
  padding-right: 0.2em;
  padding-left: 0.2em;
}

.section__title small {
  font-size: 0.675em;
}

.section__contents {
  margin-top: 2.5em;
  padding-top: 3.125em;
  padding-left: 3.125em;
  padding-bottom: 3.125em;
  margin-right: calc(50% - 50vw);
  background-color: #fff;
  border: 1px solid #000;
}

@media screen and (max-width: 767px) {
  .section__contents {
    margin-top: 1em;
    padding-top: 1.125em;
    padding-left: 1.875em;
    padding-bottom: 1.125em;
  }
}

.section__contents .schedule-lists {
  transform: translateX(-5.8%);
}

@media screen and (max-width: 767px) {

  .section__contents .card-lists,
  .section__contents .overview-lists {
    width: 85.139319%;
  }

  .section__contents .schedule-lists {
    transform: translateX(-13%);
  }
}

/* ======================================
    card-lists
====================================== */

.card-lists {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 2.5em;
}

.card-lists__item {
  position: relative;
}
.card-lists__item.card-lists__item--border {
  padding-top: 2.5em;
}
.card-lists__item.card-lists__item--border::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(0, 0);
  z-index: 1;
  width: calc(100% - 3.125em);
  height: 1px;
  background-color: #000;
}
@media screen and (max-width: 767px) {
  .card-lists__item.card-lists__item--border::before {
    width: 100%;
  }
}

.card-lists__wrap {
  display: grid;
  grid-template-columns: 7.5em 1fr;
  column-gap: 2.5em;
}

.card-lists__wrap:has(.card-lists__imgs) {
  grid-template-columns: 18.875em 1fr;
}

@media screen and (max-width: 767px) {
  .card-lists__wrap {
    justify-items: center;
    grid-template-columns: 1fr;
  }

  .card-lists__wrap:has(.card-lists__imgs) {
    grid-template-columns: 1fr;
  }
}

.card-lists__imgs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 2.8125em;
}

@media screen and (max-width: 767px) {
  .card-lists__imgs {
    order: 2;
    width: 100%;
    max-width: 80%;
    min-width: 0;
    column-gap: 2.8125em;
    justify-self: stretch;
    grid-column: 1 / -1;
    margin-top: 1.25em;
    margin-left: auto;
    margin-right: auto;
  }
}

.card-lists__imgs>.card-lists__img:nth-child(n+2)>div::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: -1.40625em;
  transform: translate(-50%, -50%) rotate(45deg);
  z-index: 1;
  width: 1.4375em;
  height: 1.4375em;
  background: url(../img/common/icon_collaboration.svg) no-repeat center center / contain;
}

.card-lists__img {}

@media screen and (max-width: 767px) {
  .card-lists__img {
    order: 2;
    margin-top: 1.25em;
    width: 35.714286%;
  }

  .card-lists__imgs .card-lists__img {
    order: initial;
    margin-top: initial;
    width: initial;
  }
}

.card-lists__img>div {
  position: relative;
  aspect-ratio: 1/1;
}

.card-lists__img>div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid gray;
}

.card-lists__img.u-border-none>div img {
  border: none;
}

.card-lists__img>p {
  margin-top: 0.25em;
  font-size: 1.25em;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.3;
  font-feature-settings: "palt";
  text-align: center;
}

@media screen and (max-width: 767px) {
  .card-lists__img>p {
    font-size: 0.9375em;
  }
}

.card-lists__box {}

@media screen and (max-width: 767px) {
  .card-lists__box {
    order: 1;
    text-align: center;
  }
}

.card-lists__label {
  font-size: 1.125em;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.6666666667;
}

@media screen and (max-width: 767px) {
  .card-lists__label {
    font-size: 0.75em;
  }
}

.card-lists__course {
  margin-top: 0.2em;
  font-size: 1.5em;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.25;
}

@media screen and (max-width: 767px) {
  .card-lists__course {
    font-size: 1em;
  }
}

.card-lists__name {
  margin-top: 0.2em;
  font-size: 1.125em;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.6666666667;
}

@media screen and (max-width: 767px) {
  .card-lists__name {
    font-size: 0.75em;
  }
}

.card-lists__btns.is-pc {
  display: flex;
  align-items: center;
  column-gap: 1.25em;
  margin-top: 1.25em;
}

.card-lists__btns.is-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .card-lists__btns.is-pc {
    display: none;
  }

  .card-lists__btns.is-sp {
    display: flex;
    align-items: center;
    column-gap: 1.25em;
    margin-top: 1em;
    order: 3;
  }
}

.card-lists__btn {}


.card-lists__btn .c-btn {
  width: 8.125em;
  height: 2.8125em;
  font-size: 1em;
  border-radius: 0.625em;
  box-shadow: 6px 6px 0 #493c38;
}

.card-lists__btn .c-btn:hover {
  transform: translate(3px, 3px);
  box-shadow: 3px 3px 0 #493c38;
}

@media screen and (max-width: 767px) {
  .card-lists__btn .c-btn {
    width: 7.69230769em;
    height: 2.69230769em;
    font-size: 0.8125em;
  }
}

/* ======================================
    schedule-lists
====================================== */

.schedule-lists {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 1.5625em;
}

@media screen and (max-width: 767px) {
  .schedule-lists {
    row-gap: 1.25em;
  }
}

.schedule-lists__item {}

.schedule-lists__wrap {
  display: grid;
  grid-template-columns: 4.75em 1fr;
  column-gap: 1.875em;
}

@media screen and (max-width: 767px) {
  .schedule-lists__wrap {
    grid-template-columns: 2.875em 1fr;
    column-gap: 0.5em;
  }
}

.schedule-lists__month {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 4.75em;
  height: 4.75em;
  background-color: #fff;
  border-radius: 50%;
  border: 1px solid #000;
  color: #000;
}

@media screen and (max-width: 767px) {
  .schedule-lists__month {
    width: 2.875em;
    height: 2.875em;
  }
}

body.page-sp .schedule-lists__month {
  border-color: #016f70;
  color: #016f70;
}

body.page-ph .schedule-lists__month {
  border-color: #1e2088;
  color: #1e2088;
}

.schedule-lists__month span {
  font-size: 1.125em;
  font-weight: 700;
  letter-spacing: 0.14em;
}

@media screen and (max-width: 767px) {
  .schedule-lists__month span {
    font-size: 0.6875em;
  }
}

.schedule-lists__month.schedule-lists__month--reverse {
  background-color: #000;
  border-color: #fff;
  color: #fff;
  line-height: 1.4285714286;
}

body.page-sp .schedule-lists__month.schedule-lists__month--reverse {
  background-color: #016f70;
  border-color: #fff;
  color: #fff;
}

body.page-ph .schedule-lists__month.schedule-lists__month--reverse {
  background-color: #1e2088;
  border-color: #fff;
  color: #fff;
}

.schedule-lists__month.schedule-lists__month--reverse span {
  font-size: 0.78em;
}

@media screen and (max-width: 767px) {
  .schedule-lists__month.schedule-lists__month--reverse span {
    font-size: 0.5em;
  }
}

.schedule-lists__month strong {
  display: inline-block;
  margin-right: 0.05em;
  font-family: "din-2014-narrow", sans-serif;
  font-size: 2em;
  letter-spacing: 0;
}

@media screen and (max-width: 767px) {
  .schedule-lists__month strong {}
}

.schedule-lists__month::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(100%, -50%);
  width: 0.78em;
  height: 1px;
  background-color: #000;
}

body.page-sp .schedule-lists__month::after {
  background-color: #016f70;
}

body.page-ph .schedule-lists__month::after {
  background-color: #1e2088;
}

@media screen and (max-width: 767px) {
  .schedule-lists__month::after {
    width: 0.5em;
  }
}

.schedule-lists__box {
  display: grid;
  grid-template-columns: 1.875em 1fr;
  /* column-gap: 0.1875em; */
}

@media screen and (max-width: 767px) {
  .schedule-lists__box {
    grid-template-columns: 1.5em 1fr;
  }
}

.schedule-lists__box dt {
  font-family: "din-2014-narrow", sans-serif;
  font-size: 1.5625em;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.44;
}

@media screen and (max-width: 767px) {
  .schedule-lists__box dt {
    font-size: 1.0625em;
    text-align: right;
  }
}

.schedule-lists__title {
  font-size: 1.25em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.8;
}

@media screen and (max-width: 767px) {
  .schedule-lists__title {
    font-size: 0.9375em;
  }
}

.schedule-lists__text {
  font-size: 1.125em;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .schedule-lists__text {
    font-size: 0.8125em;
    line-height: 1.962962963;
  }
}

/* ======================================
    overview-lists
====================================== */
.overview-lists {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 3.125em;
}

@media screen and (max-width: 767px) {
  .overview-lists {
    row-gap: 2.5em;
  }
}

.overview-lists__item {}