/* First view エリア */
.first_view {
  height: calc(100vh - 48px);
  background-image: url(../images/index/bg-main.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: flex;
  justify-content: right;
}

.first_view_text {
  max-width: 1200px;
  padding: 120px 120px;
  color: #ffffff;
  font-weight: bold;
  text-shadow: 1px 1px 10px #000000;
}

.first_view_text h1 {
  font-family: "Bitter", serif;
  font-size: 56px;
  line-height: 1.5;
}

.first_view_text p {
  font-size: 18px;
  line-height: 1.5;
  margin-top: 16px;
}

/* Lead エリア */
.lead {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 40px;
}

.lead p {
  line-height: 2;
  text-align: center;
}

.link_button_area {
  text-align: center;
  margin-top: 40px;
}

.link_button {
  background-color: var(--main);
  display: inline-block;
  min-width: 180px;
  line-height: 48px;
  border-radius: 24px;
  font-family: "Bitter", serif;
  font-weight: bold;
  color: var(--button-text);
}

.link_button:hover {
  background-color: color-mix(
    in srgb, var(--main), black 20%
  );
}

/* Feartured エリア */
.featured {
  background-color: var(--bg-gray);
  padding: 48px 0;
}

.featured h2 {
  font-family: "Bitter", serif;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
}

.featured h2::after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background-color: var(--black);
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}

.travel_list {
  display: flex;
  margin-top: 40px;
  gap: 40px;
  overflow: scroll;
  padding: 0 40px 16px 40px;
}

.travel_list li {
  flex-shrink: 0;
  width: 260px;
}

.travel_list dl {
  margin-top: 16px;
}

.travel_list dt {
  font-weight: bold;
}

.travel_list dd {
  font-size: 14px;
  margin-top: 8px;
  line-height: 1.5;
}

/* --- モバイル用 --- */
@media (max-width:800px) {

/* First view エリア */
.first_view {
  height: calc(100vh - 48px);
  width: auto;
  justify-content: center;
}

.first_view_text {
  width: auto;
  padding: 120px 40px;
}

.first_view_text h1 {
  font-size: 36px;
}

.first_view_text p {
  font-size: 14px;
}

/* Lead エリア */
.lead {
  padding-left: 16px;
  padding-right: 16px;
}

/* Featured エリア */
.travel_list {
  gap: 16px;
  padding-left: 16px;
  padding-right: 16px;
}

}