@charset "UTF-8";
.main__depart {
  padding: 60px 0;
  padding-right: 9px;
  background: rgb(240, 240, 240);
}
.main__depart__title {
  text-align: center;
}
.main__depart__title span {
  display: block;
}
.main__depart__title span:first-child {
  font-size: 40px;
  line-height: 60px;
  font-weight: bold;
}
.main__depart__title span:first-child span {
  display: inline-block;
}
.main__depart__title span:last-child {
  font-size: 20px;
  line-height: 27px;
  font-weight: bold;
  margin-bottom: 20px;
}
.main__depart__wrap {
  max-width: 1000px;
  margin: 0 auto;
}
.main__depart__wrap__list {
  width: 100%;
  display: flex;
  justify-content: center;
}
.main__depart__wrap__list__item {
  flex: 1;
  margin: 0 5px;
  background: white;
}
.main__depart__wrap__list__item__top {
  display: flex;
  flex-flow: column;
}
.main__depart__wrap__list__item__top h3 {
  padding: 20px 0;
}
.main__depart__wrap__list__item__top h3 span {
  display: block;
  text-align: center;
}
.main__depart__wrap__list__item__top h3 span:first-child {
  font-size: 18px;
}
.main__depart__wrap__list__item__top h3 span:last-child {
  font-size: 16px;
}
.main__depart__wrap__list__item__top img {
  background: white;
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.main__depart__wrap__list__item__bottom {
  padding: 10px;
}
.main__depart__wrap__list__item__bottom h4 {
  margin-top: 10px;
}
.main__depart__wrap__list__item__bottom div:last-child {
  text-align: right;
  padding: 4px;
}
.main__depart__wrap__list__item__bottom div:last-child a {
  display: inline-block;
  text-decoration: underline;
}
.main__depart__wrap__list__item__bottom__imgs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.main__depart__wrap__list__item__bottom__imgs img {
  padding: 3px;
  width: 64px;
  height: 64px;
}
.main__depart__wrap__list__item-chk {
  display: none;
}
.main__depart__wrap__info {
  margin: 30px 5px;
  padding: 10px;
  background: white;
  display: flex;
}
.main__depart__wrap__info__right {
  min-width: 296px;
  max-width: 296px;
}
.main__depart__wrap__info__right h4 {
  text-align: center;
}
.main__depart__wrap__info__right__imgContainer {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.main__depart__wrap__info__right__imgContainer__img {
  width: 74px;
  height: 74px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main__depart__wrap__info__right__imgContainer__img img {
  width: 64px;
  height: 64px;
  -o-object-fit: cover;
     object-fit: cover;
}
.main__depart__wrap__wait .main__depart__wrap__list__item__bottom {
  position: relative;
}
.main__depart__wrap__wait .main__depart__wrap__list__item__bottom::after {
  content: "comming soon…";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  background: gray;
}

@media screen and (max-width: 767px) {
  .main__depart__wrap__list {
    flex-flow: column;
  }
  .main__depart__wrap__list__item {
    margin-bottom: 10px;
  }
  .main__depart__wrap__list__item__top {
    flex-flow: initial;
    align-items: center;
  }
  .main__depart__wrap__list__item__top h3 {
    flex: 1;
  }
  .main__depart__wrap__list__item__top img {
    width: 40%;
    height: auto;
    max-height: 110px;
  }
  .main__depart__wrap__list__item__bottom {
    display: none;
  }
  .main__depart__wrap__list__item-chk:checked + label + div {
    display: block;
  }
  .main__depart__wrap__info {
    flex-flow: column;
  }
  .main__depart__wrap__info__right {
    min-width: none;
    max-width: none;
  }
  .main__depart__wrap__info__right__imgContainer {
    justify-content: center;
  }
}