@charset "UTF-8";

/* --------------------------------------------------
  
-------------------------------------------------- */

#title {
  background: url(/en/img/tours/title.webp) no-repeat center/cover;
}
main {
  padding: 0;
  max-width: 100%;
}
.railkitchen {
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1280px;
  display: flex;
  justify-content: end;
}
.railkitchen a {
  padding: 10px;
  border: solid 1px #e60012;
  color: #e60012;
  display: flex;
  align-items: center;
  gap: 10px;
}
.railkitchen a:hover {
  text-decoration: none;
}
.railkitchen a img {
  height: 2rem;
}

@media screen and (max-width: 768px) {
  .railkitchen {
    padding: 0 15px;
    justify-content: center;
  }
  .railkitchen a {
    flex-direction: column;
    gap: 3px;
  }
}

/* --------------------------------------------------
  
-------------------------------------------------- */

.tours {
  margin: 0 auto;
  padding: 60px 20px;
  max-width: 1280px;
}
.tours h2 {
  margin-bottom: 30px;
}
.tours ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px 0;
}
.tours ul::before, .tours ul::after {
  content: '';
  width: 24%;
  order: 1;
}
.tours li {
  width: 24%;
}
.tours li a {
  height: 100%;
  color: #111;
  border-radius: 10px;
  box-shadow: 3px 3px 3px rgba(0,0,0,.2);
  display: block;
  overflow: hidden;
}
.tours li .tour-img {
  overflow: hidden;
}
.tours li .tour-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 296/195;
}
.tours li .tour-txt {
  padding: 15px 20px;
}
.tours li .tour-txt strong {
  margin-bottom: 10px;
  font-size: 1.8rem;
  display: block;
}
.tours li .tour-txt p {
  margin-bottom: 10px;
}
.tours li .tour-txt span {
  font-size: 2rem;
  font-weight: 600;
  display: inline-block;
}
.tours .button {
  display: flex;
  justify-content: center;
}
.tours .button a {
  width: 250px;
  height: 50px;
  background: var(--secondary);
  border-radius: 10px;
  color: #fff;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.tours .button a span {
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 100vw;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 15px;
  transition: all .3s;
}
.tours .button a span i {
  color: var(--secondary);
}
.tours .button a:hover {
  text-decoration: none;
}
.tours .button a:hover span {
  transform: translateX(3px);
}
.tours li a:hover {
  text-decoration: none;
}
.tours li a:hover .tour-img img {
  transform: scale(1.05);
}

@media screen and (max-width: 768px) {
  .tours {
    padding: 40px 15px;
  }
  .tours h2 {
    margin-bottom: 20px;
  }
  .tours ul {
    flex-direction: column;
    gap: 20px;
  }
  .tours li {
    width: 100%;
  }
  .tours li .tour-txt {
    padding: 10px 15px;
  }
  .tours li .tour-txt strong {
    font-size: 1.6rem;
  }
  .tours li .tour-txt span {
    font-size: 1.8rem;
  }
}

/* --------------------------------------------------
  Tailor-made Trip
-------------------------------------------------- */

#tailormade {
  background: var(--primary);
}
#tailormade .inner {
  margin: 0 auto;
  padding: 60px 20px;
  max-width: 1280px;
  color: #fff;
}
#tailormade h2 {
  margin-bottom: 40px;
}
#tailormade h2::before {
  background: #fff;
}
#tailormade .d-flex {
  flex-direction: row-reverse;
  gap: 30px;
}
#tailormade .tailormade-img {
  width: 50%;
  flex-shrink: 0;
}
#tailormade .tailormade-txt p {
  margin-bottom: 40px;
}
#tailormade .button a {
  background: #fff;
  color: #111;
}
#tailormade .button a span {
  background: var(--primary);
}
#tailormade .button a span i {
  color: #fff;
}

@media screen and (max-width: 768px) {
  #tailormade .inner {
    padding: 60px 15px;
  }
  #tailormade .d-flex {
    flex-direction: column;
  }
  #tailormade .tailormade-img {
    width: 100%;
  }
}


/* --------------------------------------------------
  Service
-------------------------------------------------- */

#service .inner {
  margin: 0 auto;
  padding: 120px 20px;
  max-width: 1280px;
}
#service h2 {
  margin-bottom: 40px;
}
#service .d-flex {
  flex-direction: row-reverse;
  gap: 30px;
}
#service .service-img {
  width: 50%;
  flex-shrink: 0;
}
#service .service-txt ul {
  margin: 0 0 40px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#service .service-txt strong {
  font-size: 1.8rem;
}

@media screen and (max-width: 768px) {
  #service .inner {
    padding: 60px 15px;
  }
  #service .d-flex {
    flex-direction: column;
  }
  #service .service-img {
    width: 100%;
  }
}

/* --------------------------------------------------
  Guide
-------------------------------------------------- */

#guide .inner {
  margin: 0 auto;
  padding: 0 20px 120px;
  max-width: 1280px;
}
#guide h2 {
  margin-bottom: 40px;
}
#guide h2::before {
}
#guide .d-flex {
  flex-direction: row-reverse;
  gap: 30px;
}
#guide .guide-img {
  width: 50%;
  flex-shrink: 0;
}
#guide .guide-txt p {
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  #guide .inner {
    padding: 0 15px 60px;
  }
  #guide .d-flex {
    flex-direction: column;
  }
  #guide .guide-img {
    width: 100%;
  }
}