@charset "utf-8";

/* ================================================
メインビジュアル
フォトギャラリー
コラム
================================================== */

/* ================================================
メインビジュアル
================================================== */
#home .main-visual {
  position: relative;
  width: 100vw;
  min-width: 320px;
  min-height: 700px;
  height: 100vh;
}

#home .main-visual .mainSwiper {
  height: 100%;
}

#home .main-visual .mainSwiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#home .main-visual .swiper-pagination {
  bottom: 50px;
}

#home .main-visual .content {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50%;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

/* キャッチコピー */
#home .main-visual .content .main-catch {
  display: inline-flex;
  flex-direction: column;
  gap: 18px;
  position: absolute;
  top: 50%;
  left: 50px;
  translate: 0 -50%;
  color: var(--color-pink);
  font-size: 4.8rem;
  /* font-family: "Sawarabi Mincho", serif; */
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0;
  line-height: 1.33;
}

#home .main-visual .content .main-catch span {
  display: inline;
  background: var(--color-white);
  padding: 15px 25px;
  width: fit-content;
  color: var(--color-pink);
  font-size: 4.8rem;
  /* font-family: "Sawarabi Mincho", serif; */
  font-family: "Noto Serif JP", serif;
}

#home .main-visual .content .main-scroll {
  position: absolute;
  bottom: 39px;
  right: 18px;
}

@media screen and (max-width: 767px) {
  #home .main-visual .mainSwiper {
    padding-bottom: 30px;
    background: var(--color-pale-rose);
    translate: 0 1px;
  }

  #home .main-visual .swiper-pagination {
    bottom: 0;
  }

  #home .main-visual .content {
    position: absolute;
    top: 0;
    left: 50%;
    translate: -50%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
  }

  #home .main-visual .content .main-catch {
    top: 140px;
    left: 0px;
    translate: 0;
    font-size: 3rem;
    writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    gap: 3px;
  }

  #home .main-visual .content .main-catch span {
    font-size: 2.4rem;
    writing-mode: vertical-lr;
    padding: 15px 5px;
    height: fit-content;
  }

  #home .main-visual .content .main-catch span:nth-child(2) {
    margin-top: 190px;
  }

  #home .main-visual .content .main-scroll {
    bottom: -70px;
    right: 10px;
  }
}

/* ================================================
  フォトギャラリー
================================================== */
#home .gallery {
  background: var(--color-base-pink);
  padding: 149px 0 192px;
}

#home .gallery .inner {
  padding-left: min(195/1520 * 100vw, 195px);
}

#home .gallery .wrap {
  position: relative;
  display: block;
}

#home .gallery img {
  position: absolute;
  top: 0;
  left: 540px;
  width: min(488/1520 * 100vw, 488px);
}

@media screen and (max-width: 1199px) {
  #home .gallery .inner {
    padding: 0;
  }

  #home .gallery img {
    left: initial;
    right: 0;
    width: min(488/1200 * 100vw, 488px);
  }
}

@media screen and (max-width: 767px) {
  #home .gallery {
    padding: 80px 0;
  }

  #home .gallery .wrap {
    display: flex;
    flex-direction: column;
  }

  #home .gallery .heading {
    text-align: center;
  }

  #home .gallery img {
    position: relative;
    right: initial;
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: top;
    margin-bottom: 60px;
  }

  #home .gallery .widget-btn {
    order: 3;
    text-align: center;
  }
}

/* ================================================
  コラム
================================================== */
#home .column .contain {
  padding: 289px 0 150px;
}

#home .column ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 30px;
  gap: min(34/1520 * 100vw, 34px);
  margin-bottom: 90px;
}

#home .column li a {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#home .column .image {
  width: 100%;
  height: auto;
  aspect-ratio: 43/29;
  overflow: hidden;
}

#home .column li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  scale: 1;
  transition: all 0.3s;
}

#home .column li a:hover img {
  scale: 1.1;
  transition: all 0.3s;
}

#home .column .tag {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 20px;
}

#home .column .box > p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: normal;
}

#home .column .tag time {
  font-size: 1.8rem;
  line-height: 1.37;
}

#home .column .tag span {
  color: var(--txt-pink);
  border: 1px solid var(--txt-pink);
  border-radius: 50px;
  padding: 0 10px;
  line-height: 1.37;
}

#home .column a > p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: normal;
}

#home .column a:hover > p {
  color: var(--txt-pink);
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  #home .column .contain {
    padding: 80px 0;
  }

  #home .column ul {
    grid-template-columns: repeat(1, 1fr);
    padding: 0;
    gap: 20px;
    margin-bottom: 40px;
  }

  #home .column li {
    padding-bottom: 20px;
    border-bottom: 2px dotted #e5e5e5;
  }

  #home .column li a {
    flex-direction: row;
  }

  #home .column .tag {
    gap: 10px;
    margin-bottom: 5px;
  }

  #home .column .box > p {
    font-size: 1.6rem;
  }

  #home .column .tag span {
    font-size: 1.4rem;
  }

  #home .column .tag time {
    font-size: 1.6rem;
  }

  #home .column .image {
    flex-shrink: 0;
    width: 130px;
    height: 90px;
    overflow: hidden;
  }
}
