@media screen and (max-width: 750px) {
  .display--pc {
    display: none;
  }
}
@media screen and (min-width: 751px) {
  .display--sp {
    display: none;
  }
}

html {
  font-size: 62.5%;
}

main {
  background: #e4dccf;
}

footer {
  display: none;
}

.section__header {
  position: absolute;
  width: 100%;
  background: none;
  z-index: 9999;
}

.header__image {
  filter: invert(100%) sepia(7%) saturate(123%) hue-rotate(259deg) brightness(118%) contrast(100%);
}
.header__link, .header__link--current {
  color: #fff;
}
.header__link:visited, .header__link--current:visited {
  color: #fff;
}
.header__link--current::before {
  border: 1px solid #fff;
}

.background {
  position: absolute;
  width: -webkit-fill-available;
  height: 100vh;
  overflow: hidden;
}
.background img {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.8s;
  transform: translateY(-50%);
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
}

.background .background__image--default {
  opacity: 1;
}

.citta {
  display: flex;
  align-items: center;
  position: relative;
  height: 100vh;
  color: #fff;
  font-family: "Bricolage Grotesque", serif;
  line-height: 1.8;
  z-index: 10;
}
.citta__container {
  display: flex;
  justify-content: space-between;
  width: 58%;
  margin: auto;
}
@media screen and (max-width: 750px) {
  .citta__container {
    display: block;
    width: 100%;
    margin-top: 120px;
    padding: 0 48px;
  }
}
.citta__title {
  font-size: clamp(1.4rem, 1.093vw, 10rem);
  font-weight: 500;
}
@media screen and (max-width: 750px) {
  .citta__title {
    font-size: 1.4rem;
  }
}
.citta__list {
  font-size: 1.8rem;
  font-size: clamp(1.8rem, 1.406vw, 10rem);
  font-weight: 600;
}
@media screen and (max-width: 750px) {
  .citta__list {
    margin-top: 48px;
    font-size: 2.6rem;
  }
}
.citta__link {
  opacity: 0.6;
  text-decoration: underline;
  transition: 0.3s;
}
.citta__link:hover {
  opacity: 1;
}
.citta__link:visited {
  color: #fff;
}
@media screen and (max-width: 750px) {
  .citta__link {
    opacity: 1;
  }
}

.swiper {
  width: 100%;
  height: 100vh;
}
@media screen and (max-width: 750px) {
  .swiper {
    position: absolute;
  }
}
.swiper-slide img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}