@charset "UTF-8";

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
html {
  scroll-behavior: smooth;
}

body {
  background: url(../images/fukuitabi-bg.png) no-repeat top center fixed;
  padding: 0;
  margin: 0;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a:hover,
a:focus {
  text-decoration: none;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
footer .copyright {
  font-size: .8em;
  text-align: center;
  padding: 20px 0;
}

/*--------------------------------------------------------------
# Main
--------------------------------------------------------------*/
/* layout */
main {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  font-family: "Noto Serif JP", serif;
}

/* grid */
.area2{
  background-color: #f1f1f0;
}
.area2__grid {
  list-style: none;
  margin: 0;
  padding: 0 10px 10px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

@media (min-width: 768px) {
  .area2__grid {
    padding: 0 20px 20px;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
  }
}

.area2__item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3 / 2;
}

@media (min-width: 768px) {
  .area2__item {
    aspect-ratio: 1 / 1;
  }
}

.area2__item a {
  display: block;
  width: 100%;
  height: 100%;
}

.area2__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.area2__num {
  position: absolute;
  top: 10px;
  left: 12px;
  font-size: 1.8rem;
  font-weight: 700;
  font-style: italic;
  color: #fff;
  line-height: 1;
  text-shadow:
    1px 1px 3px rgba(0, 0, 0, 0.6);
  pointer-events: none;
}

@media (min-width: 768px) {
  .area2__num {
    font-size: 2.4rem;
  }
}

.area2__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 10px 8px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  color: #fff;
  font-size: clamp(0.8rem, 0.65rem + 0.5vw, 1rem);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
  pointer-events: none;
}

.area2__label::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5S10.62 6.5 12 6.5s2.5 1.12 2.5 2.5S13.38 11.5 12 11.5z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}