@charset "UTF-8";
@font-face {
  font-family: "CorporateMincho";
  src: url("../fonts/Corporate-Mincho-ver3.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
html {
  font-size: 100%;
}

body {
  background-color: #F4F9FF;
  color: #4A4542;
  font-size: 0.875rem;
  font-family: "Noto Serif JP", serif;
  line-height: 2;
}
body.no_scroll {
  overflow: hidden;
}

img {
  width: 100%;
  vertical-align: bottom;
}

section {
  padding: 120px 3%;
  scroll-margin-top: 80px;
}

.wrapper {
  max-width: 960px;
  margin-inline: auto;
}

.copy {
  color: #B9A593;
  font-size: 32px;
  font-family: "CorporateMincho", serif;
}

.section-title {
  color: #B9A593;
  font-size: 24px;
  font-family: "CorporateMincho", serif;
  text-align: center;
  margin-bottom: 40px;
}

h3 {
  font-size: 16px;
  font-family: "CorporateMincho", serif;
}

.button {
  display: inline-block;
  text-align: center;
  line-height: 40px;
  border-radius: 50px;
  background-color: #D8E7EC;
  color: #4D7886;
  width: 160px;
  height: 40px;
  transition: 0.5s;
}
.button:hover {
  background-color: #E7A7BC;
  color: #fff;
}

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: 2s ease;
}

.fade-up.is-active {
  opacity: 1;
  transform: translateY(0);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 3%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
header h1 a {
  display: inline-block;
}
header .logo {
  display: inline-block;
  width: 120px;
}
header nav {
  display: flex;
  align-items: center;
}
header ul {
  display: flex;
  align-items: center;
  color: #B9A593;
  gap: 24px;
  margin-right: 24px;
}
header .toggle_btn {
  display: none;
}

.mainvisual {
  position: relative;
  margin-top: 80px;
}
.mainvisual .sp-br {
  display: none;
}
.mainvisual .pc {
  display: block;
  height: calc(100vh - 80px);
  object-fit: cover;
}
.mainvisual .sp {
  display: none;
}
.mainvisual .copy {
  position: absolute;
  top: 40px;
  left: 8%;
}
.mainvisual .sub-copy {
  color: #B9A593;
  font-size: 20px;
  font-family: "CorporateMincho", serif;
  position: absolute;
  top: 104px;
  left: 8%;
}

#question {
  background-color: #EAF4F7;
}
#question ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
#question li {
  width: 250px;
  height: 250px;
  aspect-ratio: 1/1;
  justify-self: center;
  background-image: url(../img/bubble.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#question li:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
  transform: translateX(150px);
}
#question li:nth-child(2) {
  grid-column: 3;
  grid-row: 1;
  transform: translateX(-150px);
}
#question li:nth-child(3) {
  grid-column: 1;
  grid-row: 2;
}
#question li:nth-child(4) {
  grid-column: 3;
  grid-row: 2;
}
#question li:nth-child(5) {
  grid-column: 2;
  grid-row: 2;
  background-image: none;
}
#question p {
  text-align: center;
}

#points {
  background-color: #F8F6F4;
}
#points .inner {
  display: flex;
  justify-content: space-between;
}
#points .point {
  background-color: #fff;
  width: 280px;
  height: 120px;
  border-radius: 20px;
  text-align: center;
  line-height: 120px;
}

#seasons {
  display: flex;
}
#seasons .season {
  width: 25vw;
  position: relative;
}
#seasons .season p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 24px;
}

#ranking .items {
  display: flex;
  align-items: center;
  margin-bottom: 80px;
}
#ranking .items:last-child {
  margin-bottom: 0;
}
#ranking .items img {
  width: 50%;
  border-radius: 20px;
}
#ranking .items .text {
  width: 50%;
  padding: 4% 8%;
}
#ranking .items .text p {
  margin: 40px 0 16px 0;
}

#colors {
  background-color: #F8F6F4;
}
#colors p {
  text-align: center;
}
#colors .slide-items {
  margin-top: 40px;
}
#colors .slide-items .palette {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto;
}
#colors .slide-items .mv01 {
  background-color: #E8C9CF;
}
#colors .slide-items .rw01 {
  background-color: #B87485;
}
#colors .slide-items .pk02 {
  background-color: #E7A7BC;
}
#colors .slide-items .br03 {
  background-color: #C9A58F;
}
#colors .slide-items .rd02 {
  background-color: #B74A4F;
}
#colors .slide-items .or01 {
  background-color: #F3A27F;
}
#colors .slide-items .pl01 {
  background-color: #8E6F8A;
}
#colors .slide-items .slick-prev,
#colors .slide-items .slick-next {
  width: 32px;
  height: 32px;
  background: #D8E7EC;
  border-radius: 50%;
  display: flex !important;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}
#colors .slide-items .slick-prev::before,
#colors .slide-items .slick-next::before {
  display: none;
}
#colors .slide-items .slick-prev:hover,
#colors .slide-items .slick-next:hover {
  background: #c4e0ea;
  transform: translateY(-50%) scale(1.05);
}
#colors .slide-items .slick-prev img,
#colors .slide-items .slick-next img {
  width: 8px;
  height: auto;
  display: block;
}
#colors .slide-items .slick-prev {
  left: 5%;
}
#colors .slide-items .slick-next {
  right: 5%;
}

.cta {
  position: relative;
}
.cta .pc {
  display: block;
  height: 100vh;
  object-fit: cover;
}
.cta .sp {
  display: none;
}
.cta .copy {
  position: absolute;
  top: 120px;
  left: 10%;
}
.cta .sp-br {
  display: none;
}
.cta .button {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
}

footer {
  text-align: center;
  padding: 32px 0;
}
footer small {
  color: #B9A593;
  font-size: 12px;
  font-family: "CorporateMincho", serif;
}

@media (max-width: 767px) {
  section {
    padding: 80px 3%;
  }
  header .toggle_btn {
    display: block;
    position: fixed;
    top: 24px;
    right: 3%;
    width: 30px;
    height: 24px;
    z-index: 1001;
    cursor: pointer;
  }
  header .toggle_btn span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #B9A593;
    transition: 0.3s;
  }
  header .toggle_btn span:nth-child(1) {
    top: 7px;
  }
  header .toggle_btn span:nth-child(2) {
    top: 17px;
  }
  header nav {
    display: none;
  }
  header nav ul {
    flex-direction: column;
    margin: 0 0 24px 0;
  }
  header.open nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.9);
  }
  header.open .toggle_btn span:nth-child(1) {
    top: 12px;
    transform: rotate(45deg);
  }
  header.open .toggle_btn span:nth-child(2) {
    top: 12px;
    transform: rotate(-45deg);
  }
  .mainvisual .pc {
    display: none;
  }
  .mainvisual .sp {
    display: block;
    height: calc(100vh - 80px);
    object-fit: cover;
  }
  #question ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  #question li {
    width: 100%;
    height: 100%;
  }
  #question li:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
    transform: none;
  }
  #question li:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
    transform: none;
  }
  #question li:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
  }
  #question li:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
  }
  #question li:nth-child(5) {
    grid-row: 3;
    background-image: none;
    width: 50%;
    grid-column: 1/span 2;
    justify-self: center;
  }
  #points .sp-br {
    display: block;
  }
  #points .inner {
    flex-direction: column;
    gap: 16px;
  }
  #points .inner .point {
    width: 100%;
  }
  #seasons {
    /*=== 画像の表示エリア ================================= */
    position: relative;
    overflow: hidden;
    /* 画像のサイズに合わせて変更ください */
    margin: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    /*=== 画像の設定 ======================================= */
  }
  #seasons .season {
    display: block;
    position: absolute;
    /* 画像のサイズを表示エリアに合せる */
    width: inherit;
    height: inherit;
    opacity: 0;
    animation: slideAnime 20s ease infinite;
    /*=== スライドのアニメーションを段差で開始する ========= */
  }
  #seasons .season:nth-of-type(1) {
    animation-delay: 0s;
  }
  #seasons .season:nth-of-type(2) {
    animation-delay: 5s;
  }
  #seasons .season:nth-of-type(3) {
    animation-delay: 10s;
  }
  #seasons .season:nth-of-type(4) {
    animation-delay: 15s;
  }
  #seasons {
    /*=== スライドのアニメーション ========================= */
  }
  @keyframes slideAnime {
    0% {
      opacity: 0;
    }
    20% {
      opacity: 1;
    }
    30% {
      opacity: 1;
    }
    50% {
      opacity: 0;
    }
    100% {
      opacity: 0;
    }
  }
  #ranking .items {
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
  }
  #ranking .items img {
    width: 100%;
  }
  #ranking .items .text {
    width: 100%;
    padding: 4% 0;
  }
  #ranking .items .text p {
    margin: 0 0 8px 0;
  }
  #ranking .items .button {
    width: 100%;
  }
  #ranking .reverse-sp {
    flex-direction: column-reverse;
  }
  .cta .pc {
    display: none;
  }
  .cta .sp {
    display: block;
    height: 100vh;
    object-fit: cover;
  }
  .cta .copy {
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
  }
  .cta .sp-br {
    display: block;
  }
}/*# sourceMappingURL=style.css.map */