@charset "utf-8";

body {
  background-image: none;
}

#fv {
  background-image: url(../img/seat_fv.webp);
}

@media (max-width: 519px) {
  #fv {
    background-image: url(../img/seat_fv_sp.webp);
    height: 180px;
  }
}

#seat {
  padding-bottom: 40px;
}

#seat > .wrapper {
  max-width: 1220px;
  color: #000;
}

#seat .ttl {
  font-size: 32px;
  color: #8A2222;
  text-align: center;
  margin-top: 70px;
  margin-bottom: 15px;
  letter-spacing: 1.5px;
}

#seat .subttl {
  font-size: 24px;
  color: #000;
  margin-top: 20px;
  margin-bottom: 30px;
  letter-spacing: 1.5px;
}

#seat .train {
  max-width: 1000px;
  margin: auto;
}

#seat .train p {
  margin-top: 20px;
  margin-bottom: 40px;
  line-height: 1.8;
}

#seat .link {
  text-align: center;
  margin-top: 30px;
}

#seat .link .btn.pdf {
  min-width: 180px;
}

#seat img {
  max-width: 100%;
}

#seat .seat .top {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  -moz-column-gap: 10px;
  -webkit-column-gap: 10px;
  column-gap: 10px;
  row-gap: 10px;
}

#seat .seat .top .text {
  max-width: 41%;
}

#seat .seat .top .text p {
  letter-spacing: 1.5px;
  line-height: 1.8;
}

#seat .seat .top .img {
  margin-left: -1%;
}

#seat .seat .bottom {
  display: flex;
  justify-content: space-between;
  -moz-column-gap: 10px;
  -webkit-column-gap: 10px;
  column-gap: 10px;
  row-gap: 10px;
  margin-top: 20px;
}

@media (max-width: 959px) {
  #seat .seat .top {
    flex-direction: column-reverse;
    align-items: center;
  }

  #seat .seat .top .text {
    max-width: 100%;
  }
}

@media (max-width: 519px) {
  #seat .ttl {
    font-size: 28px;
  }

  #seat .ttl.first {
    margin-top: 40px;
  }

  #seat .subttl {
    font-size: 20px;
    text-align: center;
  }

  #seat .seat .bottom {
    flex-wrap: wrap;
    justify-content: center;
    overflow-x: hidden;
    width: calc(100% + 40px);
    margin-left: -20px;
    padding: 0 20px;
  }
}

#seat .note .subttl {
  border-bottom: 1px solid #D1CAC4;
  padding-bottom: 15px;
  margin-bottom: 15px;
  letter-spacing: 1.5px;
}

#seat .note a {
  color: #0042C3;
  text-decoration: underline;
}

#seat .note a:hover {
  color: #8A2222;
  text-decoration: none;
}

#seat .note th {
  min-width: 180px;
  font-weight: normal;
  padding-right: 60px;
  padding-bottom: 30px;
}

#seat .note td {
  padding-bottom: 30px;
}

@media (max-width: 959px) {
  #seat .note th {
    padding-right: 30px;
  }
}

@media (max-width: 519px) {
  #seat .note th {
    display: block;
    font-weight: bold;
    padding: 0 0 4px 10px;
  }

  #seat .note td {
    display: block;
    padding: 0 0 30px 10px;
  }

  #seat .note p {
    padding-left: 10px;
  }
}

#seat .swiper-slide {
  width: 380px;
}

#seat .swiper,
#seat .seat-swiper {
  position: relative;
  width: 100%;
}

#seat .swiper-slide img {
  object-position: center;
  object-fit: cover;
}

#seat .swiper-button {
  position: absolute;
  z-index: 10;
  display: none;
  width: 68px;
  height: 68px;
  background-color: #C1B074;
  border: 1px solid #D2C081;
  border-radius: 100px;
  cursor: pointer;
  transition: all ease 0.3s;
}

#seat .swiper-button:not(.swiper-button-disabled):hover {
  background-color: #000;
}

#seat .swiper-prev,
#seat .swiper-next {
  top: 50%;
  transform: translateY(-50%);
}

#seat .swiper-button::before,
#seat .swiper-button::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  display: block;
  margin-top: auto;
  margin-bottom: auto;
}

#seat .swiper-button::before {
  left: 0;
  right: 0;
  width: 25px;
  height: 1px;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
}

#seat .swiper-button::after {
  width: 9px;
  height: 9px;
  border-top: 1px solid #fff;
  transform-origin: center;
}

#seat .swiper-prev::after {
  left: 21px;
  border-left: 1px solid #fff;
  transform: rotate(-45deg);
}

#seat .swiper-next::after {
  right: 21px;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}

#seat .swiper-button-disabled {
  background-color: #938E8A;
  /*	pointer-events: none;*/
  cursor: default;
}

#seat .swiper-button-disabled::before {
  background-color: #C6BC9B;
}

#seat .swiper-button-disabled::after {
  border-color: #C6BC9B;
}

#seat .swiper-button-lock {
  display: none;
}

@media (max-width: 1200px) {
  #seat .swiper-button {
    display: block;
  }

  #seat .swiper-prev {
    left: 5px;
  }

  #seat .swiper-next {
    right: 45px;
  }
}

@media (max-width: 959px) {
  #seat .swiper-button {
    width: 60px;
    height: 60px;
  }

  #seat .swiper-button::before {
    width: 20px;
  }

  #seat .swiper-prev::after {
    left: 19px;
  }

  #seat .swiper-next::after {
    right: 19px;
  }
}

@media (max-width: 519px) {
  #seat .swiper-button {
    width: 46px;
    height: 46px;
    background-color: rgba(0, 0, 0, 0.4);
    border: none;
    border-radius: 0;
  }

  #seat .swiper-button::before {
    display: none;
  }

  #seat .swiper-button::after {
    width: 20px;
    height: 20px;
    border-top-width: 2px;
  }

  #seat .swiper-prev {
    left: -20px;
  }

  #seat .swiper-next {
    right: -20px;
  }

  #seat .swiper-prev::after {
    left: 15px;
    border-left-width: 2px;
  }

  #seat .swiper-next::after {
    right: 15px;
    border-right-width: 2px;
  }

  #seat .swiper-button-disabled {
    display: none;
  }
}