/* ------------------------------------
// gallery
------------------------------------ */
#gallery {
  padding-inline: 0;
}
#gallery .swiper-slide {
  text-align: center;
}
#gallery .swiper-slide img {
  border-radius: 1rem;
}
#gallery .swiper-slide p {
  font-size: clamp(1.3rem, 1.3vw, 1.6rem);
}
#gallery .swiper-slide p.title {
  font-size: clamp(1.8rem, 1.6vw, 2rem);
  margin-top: 1rem;
}
#gallery .swiper-slide p.title + p {
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  #gallery .swiper-slide p.title + p {
    text-align: left;
    margin: 1rem 1rem 0;
  }
}
#gallery .control-container {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(3rem, 4.8vw, 6rem);
}
#gallery .control-container .swiper-pagination-fraction {
  width: fit-content;
}
#gallery .control-container .btn {
  aspect-ratio: 1;
  width: clamp(3rem, 4.8vw, 6rem);
  display: grid;
  place-content: center;
  background: var(--color-brown3);
  border-radius: 50%;
  cursor: pointer;
}
#gallery .control-container .btn::before {
  content: "";
  aspect-ratio: 6/10;
  width: 0.9rem;
  background: url(../img/cmn/icon_arrow_02.svg) no-repeat 0 0/contain;
}
#gallery .control-container .btn.prev {
  transform: scale(-1, 1);
}

/* ------------------------------------
// feature
------------------------------------ */
#feature {
  background: var(--color-beige5);
  padding-inline: 0;
  padding-bottom: clamp(10rem, 8.1vw, 10rem);
}
#feature::before {
  background: var(--color-beige5);
}
#feature > section {
  display: grid;
  grid-template-columns: min(40%, 420px) 1fr;
  grid-template-rows: 1fr max-content;
  grid-template-rows: max-content max-content;
  grid-template-areas: "image heading" "image detail";
  gap: 0 8rem;
  max-width: 1200px;
  margin-inline: max(5rem, (100% - 1200px) / 2);
}
#feature > section:nth-child(even) {
  grid-template-columns: 1fr min(40%, 420px);
  grid-template-areas: "heading image" "detail image";
}
#feature > section + * {
  margin-top: clamp(5rem, 4vw, 5rem);
}
@media screen and (max-width: 1024px) {
  #feature > section {
    gap: 0 6rem;
  }
}
@media screen and (max-width: 768px) {
  #feature > section {
    display: block;
    margin-inline: 3rem;
  }
  #feature > section:nth-child(even) {
    margin-inline: 3rem;
  }
}
#feature > section h2 {
  grid-area: heading;
  font-size: clamp(1.8rem, 1.9vw, 2.4rem);
  font-weight: 500;
  align-self: end;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  #feature > section h2 {
    margin-bottom: 2rem;
  }
}
#feature > section .image {
  grid-area: image;
}
@media screen and (max-width: 768px) {
  #feature > section .image {
    max-width: clamp(120px, 60%, 370px);
    margin: 0;
  }
}
#feature > section .text {
  grid-area: detail;
  margin-top: clamp(2rem, 3.2vw, 4rem);
  max-width: 600px;
}

/* ------------------------------------
// information
------------------------------------ */
#information {
  background: #f5e9df;
}
#information::before, #information::after {
  background: #f5e9df;
}
@media screen and (max-width: 768px) {
  #information .htype01 {
    margin-inline: -3rem;
  }
}
#information .information {
  max-width: 1200px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 1024px) {
  #information .information {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  #information .information {
    grid-template-columns: 1fr;
  }
}
#information .information > * {
  background: var(--color-white_op);
  border-radius: 1rem;
  display: grid;
  place-content: center;
  grid-template-rows: subgrid;
  grid-row: span 2;
  padding: clamp(3rem, 4.4vw, 5.5rem) clamp(1.5rem, 2.8vw, 3.5rem);
}
#information .information > * h3 {
  font-size: clamp(1.8rem, 1.9vw, 2.4rem);
  line-height: 1.6;
  text-align: center;
}