@charset "utf-8";

/*=============== ▼baseのcssを上書き変更 ===============*/
#Container_fca {
  padding: 144px 0 0 0;
  width: 100%;
  max-width: none;
}
#Header_fca {
  left: 50%;
  transform: translateX(-50%);
}
#Content_fca .pankuzu_fca {
  margin: 11px auto 12px auto;
  width: 920px;
}
.column_type01_fca #Article_fca {
  margin: 0 auto 30px auto;
  width: 920px;
}
#Content_fca p.pagetop_fca {
  float: none;
  width: 920px;
  display: block;
  margin: 0 auto 10px auto;
  padding: 40px 0 0 0;
  text-align: right;
}
#Footer_fca {
  margin: 0 auto;
  width: 920px;
}

/*=============== ▼common ===============*/
:root {
  --color-base: #1c404e;
  --font-noto-sans: "Noto Sans JP", "メイリオ", Meiryo, sans-serif;
  --font-roboto: "Roboto", sans-serif;
}

#sleep {
  overflow-x: hidden;
}

#sleep :where(h1, h2, h3, h4, p, a) {
  font-family: var(--font-noto-sans);
  color: var(--color-base);
}

#sleep h3 {
  text-align: center;
}

#sleep :where(ol, ul) {
  list-style-type: none;
  padding: 0;
}

#sleep :where(p) {
  margin: 0;
}

#sleep picture {
  display: block;
}

#sleep img {
  width: 100%;
  height: auto;
}

#sleep :where(a) {
  text-decoration: none;
  transition: 0.2s ease;
}
#sleep a:hover {
  opacity: 0.75;
}

#sleep .pc {
  display: block;
}

#sleep .sp {
  display: none;
}

#sleep .inline-sp {
  display: inline-block;
}

#sleep :where(.description) {
  margin-top: 30px;
  text-align: center;
  font-size: 18px;
  line-height: 2.2;
  letter-spacing: 0.05em;
}

#sleep :where(.common-product-list) {
  display: grid;
  grid-template-columns: repeat(3, 280px);
  justify-content: center;
  gap: 70px 38px;
  margin-top: 64px;
}
#sleep .common-product-list li {
  opacity: 0;
  translate: 0 15px;
  transition: 1s 0.2s ease-out;
}
#sleep .common-product-list[data-animation="true"] li {
  opacity: 1;
  translate: 0;
}
#sleep .common-product-list li:nth-of-type(1) {
  transition-delay: 0.4s;
}
#sleep .common-product-list li:nth-of-type(2) {
  transition-delay: 0.6s;
}
#sleep .common-product-list li:nth-of-type(3) {
  transition-delay: 0.8s;
}
#sleep .common-product-list li:nth-of-type(4) {
  transition-delay: 1s;
}
#sleep .common-product-list li:nth-of-type(5) {
  transition-delay: 1.2s;
}
#sleep .common-product-list li:nth-of-type(6) {
  transition-delay: 1.4s;
}
#sleep .common-product-list li figure {
  display: block;
  aspect-ratio: 280 / 360;
  overflow: hidden;
}
#sleep .common-product-list li figure img {
  object-fit: cover;
  transition: transform 0.5s ease;
}
#sleep .common-product-list li .body {
  margin-top: 20px;
  text-align: center;
}
#sleep .common-product-list li .body h4 {
  color: #2678a7;
  text-decoration: underline;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
#sleep .common-product-list li .body .price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  column-gap: 10px;
  margin-top: 10px;
}
#sleep .common-product-list li .body .price span {
  color: #cbb261;
  font-size: 16px;
  font-weight: 700;
}
#sleep .common-product-list li .body .price em {
  font-family: var(--font-roboto);
  font-size: 28px;
  letter-spacing: 0.05em;
}
#sleep .common-product-list li .link {
  display: block;
  width: fit-content;
  margin: 16px auto 0;
  border: 1px solid #d5d5d5;
  border-radius: calc(infinity * 1px);
  background-color: #fff;
  padding: 9px 16px;
  color: #707070;
  font-family: var(--font-roboto);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2em;
  transition: 0.2s ease;
}
#sleep .common-product-list li a:hover {
  opacity: initial;
}
#sleep .common-product-list li a:hover figure img {
  transform: scale(1.05);
}
#sleep .common-product-list li a:hover h4 {
  text-decoration: initial;
}
#sleep .common-product-list li a:hover .link {
  background-color: #1c404e;
  color: #fff;
}

#sleep .common-link a {
  position: relative;
  display: grid;
  place-items: center;
  width: fit-content;
  min-width: 480px;
  height: 100px;
  margin: 70px auto 0;
  background-color: var(--color-base);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
#sleep .common-link a::after {
  content: "＞";
  position: absolute;
  right: 20px;
}

#sleep .pagetop {
  position: fixed;
  bottom: 5%;
  right: min(196px, 3.9vw);
  z-index: 5;
  width: min(100px, 13vw);
  aspect-ratio: 1;
  opacity: 0;
  transition: opacity 0.3s ease-out;
}
#sleep .pagetop.show {
  opacity: 1;
}
#sleep .pagetop a {
  display: block;
}
#sleep .pagetop a:hover {
  border-bottom: initial;
}

#sleep .fade-up {
  opacity: 0;
  transform: translateY(10px);
  transition: 0.8s 0.2s ease-out;
}
#sleep .fade-up[data-animation="true"] {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 919px) {
  #sleep .pc {
    display: none;
  }

  #sleep .sp {
    display: block;
  }

  #sleep .inline-sp {
    display: none;
  }

  #sleep :where(.description) {
    margin-top: 7.8vw;
    font-size: 3.733vw;
    line-height: 2.1;
  }

  #sleep :where(.common-product-list) {
    grid-template-columns: repeat(2, 46.667vw);
    justify-content: center;
    gap: 8.4vw 2.667vw;
    margin-top: 11vw;
  }
  #sleep .common-product-list li .body {
    margin-top: 2.667vw;
  }
  #sleep .common-product-list li .body h4 {
    font-size: 2.933vw;
  }
  #sleep .common-product-list li .body .price {
    column-gap: 1.333vw;
    margin-top: 1.333vw;
  }
  #sleep .common-product-list li .body .price span {
    font-size: 2.533vw;
  }
  #sleep .common-product-list li .body .price em {
    font-size: 4.533vw;
  }
  #sleep .common-product-list li .body a {
    margin: 16px auto 0;
    padding: 1.333vw 3.333vw;
    font-size: 2.133vw;
  }

  #sleep .common-link a {
    min-width: 92.267vw;
    height: 18.667vw;
    margin-top: 10.667vw;
    font-size: 3.467vw;
  }
  #sleep .common-link a::after {
    right: 2.133vw;
  }
}

/*=============== ▼ MV ===============*/
#mv {
  position: relative;
  margin-inline: auto;
  background: linear-gradient(to bottom, #fff min(43.594vw, 837px), #e5eaea min(43.594vw, 837px));
}
#mv h1 {
  width: min(1920px, 100%);
  margin-inline: auto;
}
#mv .images {
  position: absolute;
  top: min(15.625vw, 300px);
  left: 50%;
  translate: -50% 0;
  display: grid;
  grid-template-columns: min(10.73vw, 206px) min(14.95vw, 287px) min(10.938vw, 210px) min(15.26vw, 293px) min(10.99vw, 211px);
  justify-content: space-between;
  width: min(1333px, 69.42vw);
  margin-inline: auto;
}
#mv .images picture {
  opacity: 0;
  transform: translateY(10px);
  transition: 1.2s 0.2s ease-out;
}
#mv .images picture:nth-of-type(1) {
  margin-top: min(1.458vw, 28px);
}
#mv .images picture:nth-of-type(2) {
  transition-delay: 0.5s;
}
#mv .images picture:nth-of-type(3) {
  margin-top: min(1.562vw, 30px);
  translate: 10% 0;
  transition-delay: 0.8s;
}
#mv .images picture:nth-of-type(4) {
  margin-top: min(0.521vw, 10px);
  translate: 10% 0;
  transition-delay: 1.1s;
}
#mv .images picture:nth-of-type(5) {
  margin-top: min(0.573vw, 11px);
  transition-delay: 1.4s;
}
#mv .images[data-animation="true"] picture {
  opacity: 1;
  transform: translateY(0);
}

#mv .intro {
  position: relative;
  width: min(837px, 100%);
  margin-inline: auto;
  padding-block: 168px 223px;
}
#mv .intro::before {
  content: "";
  position: absolute;
  top: 115px;
  right: -130px;
  width: 350px;
  aspect-ratio: 350 / 607;
  background: url(../img//mv-intro-img.png) no-repeat center / contain;
}
#mv .intro > span {
  display: block;
  width: min(640px, 70%);
}
#mv .intro .description {
  text-align: initial;
  font-weight: 700;
}

@media (max-width: 919px) {
  #mv {
    margin-inline: auto;
    background: linear-gradient(to bottom, #fff 118.667vw, #e5eaea 118.667vw);
  }
  #mv h1 {
    width: min(1920px, 100%);
    margin-inline: auto;
  }
  #mv .images {
    top: 50vw;
    width: 100%;
  }
  #mv .images :is(picture) {
    position: absolute;
    margin-top: initial;
  }
  #mv .images picture:nth-of-type(1) {
    top: 41vw;
    left: -7vw;
    z-index: 2;
    width: 42vw;
  }
  #mv .images picture:nth-of-type(2) {
    top: 0;
    left: 21vw;
    width: 27.333vw;
  }
  #mv .images picture:nth-of-type(3) {
    top: 31.733vw;
    left: 35.5vw;
    z-index: 2;
    width: 30.4vw;
  }
  #mv .images picture:nth-of-type(4) {
    top: 0vw;
    right: 16.5vw;
    width: 28vw;
  }
  #mv .images picture:nth-of-type(5) {
    top: 42vw;
    right: -12vw;
    z-index: 2;
    width: 42.133vw;
  }

  #mv .intro {
    margin-inline: auto;
    padding: 18.8vw 6.667vw 25.333vw;
  }
  #mv .intro::before {
    top: 18vw;
    right: -4vw;
    width: 48.533vw;
  }
  #mv .intro h2 {
    width: 60.133vw;
    margin-left: -4vw;
  }
  #mv .intro .description {
    width: 50.4vw;
    margin-top: 4vw;
    font-feature-settings: initial;
    font-size: 3.2vw;
    line-height: 1.9;
  }
}
/*=============== ▼ Feature ===============*/
#feature {
  background-color: #e5eaea;
}
#feature .intro {
  width: min(875px, 100%);
  margin-inline: auto;
  padding-bottom: 150px;
}
#feature .intro hgroup {
  text-align: center;
}
#feature .intro hgroup::after {
  content: "";
  display: block;
  width: 674px;
  aspect-ratio: 674 / 143;
  background: url(../img/feature-decoration.svg) no-repeat center / contain;
  margin-inline: auto;
}
#feature .intro hgroup p {
  margin-block: 35px 20px;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

@media (max-width: 919px) {
  #feature .intro {
    width: 86.267vw;
    padding-bottom: 21.867vw;
  }
  #feature .intro hgroup::after {
    width: 89.867vw;
  }
  #feature .intro hgroup p {
    margin-block: 10.667vw 5.067vw;
    font-size: 5.333vw;
  }
}
/*=============== ▼ Gauze ===============*/
:where(#gauze, #recommend) h3 {
  position: relative;
  color: #1b3f4e;
  text-decoration: underline;
  text-underline-offset: -0.26em;
  text-decoration-thickness: 0.4em;
  text-decoration-color: #f8f4b4;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.6;
  letter-spacing: 0.15em;
}

#gauze {
  background-color: #fff;
  padding-block: 160px 125px;
}
#gauze h3 {
  width: fit-content;
  margin-inline: auto;
}
#gauze h3::before,
#gauze h3::after {
  content: "";
  position: absolute;
  top: 50px;
  background-color: #a1cace;
  width: 80px;
  height: 3px;
  border-radius: calc(infinity * 1px);
  opacity: 0;
  translate: 0 10px;
  transition: 0.8s 0.6s ease-out;
}
#gauze h3[data-animation="true"]::before,
#gauze h3[data-animation="true"]::after {
  opacity: 1;
  translate: 0;
}
#gauze h3::before {
  left: -100px;
  transform: rotate(45deg);
}
#gauze h3::after {
  right: -100px;
  transform: rotate(-45deg);
}

@media (max-width: 919px) {
  :where(#gauze, #recommend) h3 {
    text-underline-offset: -0.26em;
    text-decoration-thickness: 0.4em;
    font-size: 4.8vw;
  }

  #gauze {
    padding-block: 20vw;
  }
  #gauze h3::before,
  #gauze h3::after {
    top: 8vw;
    width: 13vw;
    height: 0.5vw;
    opacity: 0;
  }
  #gauze h3::before {
    left: -20vw;
  }
  #gauze h3::after {
    right: -20vw;
  }
}

/*=============== ▼ Recommend ===============*/
#recommend {
  background-color: #fafafa;
  padding-block: 180px 120px;
}
#recommend h3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  translate: -50% 0;
  width: 1106px;
  aspect-ratio: 1106 / 146;
  background: url(../img/recommend-decoration.svg) no-repeat center / contain;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.8s 0.6s ease-out;
}
#recommend h3[data-animation="true"]::before {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 919px) {
  #recommend {
    padding-block: 18.667vw 16vw;
  }
  #recommend h3::before {
    top: 14vw;
    width: 98.667vw;
    aspect-ratio: 740 / 116;
    background-image: url(../img/recommend-decoration-sp.svg);
  }
}

/*=============== ▼ Goods ===============*/
#goods {
  background: linear-gradient(to bottom, transparent 7vw, #2678a7 7vw);
  padding-bottom: 106px;
}
#goods::before {
  content: "";
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  aspect-ratio: 1920 / 150;
  background: #fafafa url(../img/goods-bg.svg) no-repeat center / 100% auto;
}
#goods hgroup {
  text-align: center;
}
#goods hgroup::before {
  content: "";
  display: block;
  width: 730px;
  aspect-ratio: 762 / 198;
  margin: 40px auto 16px;
  background: url(../img/goods-decoration01.svg) no-repeat center / contain;
}
#goods hgroup h2 {
  position: relative;
  color: #fff;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.26;
  letter-spacing: 0.2em;
}

h2[data-animation="true"] span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: calc(0.1s * var(--i));
}

#goods hgroup h2[data-animation="true"] span:nth-child(1) {
  --i: 0;
}
#goods hgroup h2[data-animation="true"] span:nth-child(2) {
  --i: 1;
}
#goods hgroup h2[data-animation="true"] span:nth-child(3) {
  --i: 2;
}
#goods hgroup h2[data-animation="true"] span:nth-child(4) {
  --i: 3;
}
#goods hgroup h2[data-animation="true"] span:nth-child(5) {
  --i: 4;
}
#goods hgroup h2[data-animation="true"] span:nth-child(6) {
  --i: 5;
}
#goods hgroup h2[data-animation="true"] span:nth-child(7) {
  --i: 6;
}
#goods hgroup h2[data-animation="true"] span:nth-child(8) {
  --i: 7;
}
#goods hgroup h2[data-animation="true"] span:nth-child(9) {
  --i: 8;
}
#goods hgroup h2[data-animation="true"] span:nth-child(10) {
  --i: 9;
}
#goods hgroup h2[data-animation="true"] span:nth-child(11) {
  --i: 10;
}
#goods hgroup h2[data-animation="true"] span:nth-child(12) {
  --i: 11;
}
#goods hgroup h2[data-animation="true"] span:nth-child(13) {
  --i: 12;
}
#goods hgroup h2[data-animation="true"] span:nth-child(14) {
  --i: 13;
}
#goods hgroup h2[data-animation="true"] span:nth-child(15) {
  --i: 14;
}
#goods hgroup h2[data-animation="true"] span:nth-child(16) {
  --i: 15;
}
#goods hgroup h2[data-animation="true"] span:nth-child(17) {
  --i: 16;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#goods hgroup h2::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 50%;
  z-index: 2;
  translate: -50% 0;
  width: 1160px;
  aspect-ratio: 1234 / 152;
  background: url(../img/goods-decoration02.svg) no-repeat center / contain;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.8s 0.2s ease-out;
}
#goods hgroup h2[data-animation="true"]::before {
  opacity: 1;
  transform: translateY(0);
}
#goods hgroup h3 {
  margin-top: 40px;
  color: #f8f4b4;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.6;
  letter-spacing: 0.15em;
}
#goods .description {
  color: #fff;
}
#goods .common-product-list {
  grid-template-columns: repeat(2, 280px);
}
#goods .common-product-list li .body h4,
#goods .common-product-list li .body .price em {
  color: #fff;
}
#goods .common-product-list li .body .price span {
  color: #f8f4b4;
}

@media (max-width: 919px) {
  #goods {
    padding-bottom: 12.667vw;
  }
  #goods::before {
    width: 100vw;
    aspect-ratio: initial;
    height: 8vw;
    background-size: cover;
  }
  #goods hgroup::before {
    width: 82.133vw;
    margin-block: 8vw 0;
  }
  #goods hgroup h2 {
    font-size: 5.6vw;
  }
  #goods hgroup h2::before {
    top: -1.867vw;
    width: 133.2vw;
  }
  #goods hgroup h3 {
    margin-top: 13.333vw;
    font-size: 4.8vw;
  }
  #goods .common-product-list {
    grid-template-columns: repeat(2, 46.667vw);
  }
}

/*=============== ▼ Closing ===============*/
#closing {
  margin-block: 20px;
  text-align: center;
}
#closing::before,
#closing::after {
  content: "";
  display: block;
  width: 1920px;
  aspect-ratio: 1920 / 11;
  margin-inline: auto;
  background: url(../img/common/decoration-line.svg) no-repeat center / 100% auto;
}
#closing::before {
  margin-bottom: 30px;
}
#closing::after {
  margin-top: 30px;
}
#closing h2 {
  color: #cbb261;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.58;
  letter-spacing: 0.06em;
}
#closing .description {
  color: #4e5d57;
}

@media (max-width: 919px) {
  #closing {
    margin-block: 5.333vw;
  }
  #closing::before,
  #closing::after {
    translate: -60vw 0;
    margin-inline: initial;
  }
  #closing::before {
    margin-bottom: 9.333vw;
  }
  #closing::after {
    margin-top: 9.333vw;
  }
  #closing h2 {
    font-size: 4.8vw;
  }
}
