@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap");
/* utils
---------------------------------------------------*/
:root {
  --drop-shadow: drop-shadow(10px 10px 24px rgba(0, 0, 0, 0.1));
}

@media only screen and (max-width: 768px) {
  :root {
    --drop-shadow: drop-shadow(1.5625vw 1.5625vw 2.34375vw rgba(0, 0, 0, 0.1));
  }
}
/* body
---------------------------------------------------*/
body {
  background: #fff;
}

sup {
  top: -0.25em;
}

.zenkaku {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* wrap */
#wrapper {
  min-width: auto;
  overflow: hidden;
}

#page-hamanoharuki {
  width: 100%;
  max-width: 1280px;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  margin: 0 auto;
}
#page-hamanoharuki img {
  max-width: 100%;
  height: auto;
}

/* hero
---------------------------------------------------*/
#hero {
  position: relative;
  width: 100%;
  background: #fff;
  margin: 0 auto;
  z-index: 1;
}
#hero .inner {
  position: relative;
  width: 100%;
  aspect-ratio: 2560/1423;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  #hero .inner {
    aspect-ratio: 1.8203883495;
  }
}
#hero .inner img {
  width: 100%;
  user-select: none;
  pointer-events: none;
}
#hero .inner .hero-page-title {
  position: absolute;
  top: 6.0435699227%;
  left: 51.328125%;
  width: 45.6640625%;
  z-index: 30;
  pointer-events: none;
}
@media only screen and (max-width: 768px) {
  #hero .inner .hero-page-title {
    top: 2.1333333333vw;
    left: 51.4666666667vw;
    width: 46.6666666667vw;
  }
}
#hero .inner .hero-movie-wrap {
  position: absolute;
  top: 15.6008432888%;
  left: 7.9296875%;
  width: 83.75%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  #hero .inner .hero-movie-wrap {
    top: 7.2vw;
    left: 7.2vw;
    width: 85.3333333333vw;
  }
}
#hero .inner .hero-movie-wrap .hero-poster {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
}
#hero .inner .hero-movie-wrap .hero-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#hero .inner .hero-movie-wrap .movie {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
}
#hero .inner .hero-movie-wrap #moviePlayer01 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
#hero .inner .hero-shape {
  position: absolute;
  top: 75.7554462403%;
  right: calc((50vw - 640px) * -1);
  width: 40.234375%;
  z-index: -1;
}
@media only screen and (max-width: 1280px) {
  #hero .inner .hero-shape {
    right: 0;
  }
}
@media only screen and (max-width: 768px) {
  #hero .inner .hero-shape {
    top: 44.8vw;
    width: 34.6666666667vw;
  }
}

/* lead
---------------------------------------------------*/
#lead {
  position: relative;
  margin-top: max(26px, 2.03125vw);
  margin-bottom: min(76px, 5.9375vw);
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  #lead {
    margin-top: 3.7333333333vw;
    margin-bottom: 12.8vw;
  }
}
#lead .inner {
  width: 81.25%;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  #lead .inner {
    width: 81.3333333333vw;
  }
}
#lead .inner .lead-title {
  margin-bottom: min(48px, 3.75vw);
}
@media only screen and (max-width: 768px) {
  #lead .inner .lead-title {
    margin-bottom: 6.1333333333vw;
  }
}
#lead .inner .lead-title span {
  display: inline-block;
  line-height: 1;
  font-size: min(40px, 3.125vw);
  font-weight: 400;
  background-image: linear-gradient(#FFC7D4 0%, #FFC7D4 100%);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 100%;
  transition: 0.8s ease-in-out;
  padding: 0.1em 0 0.1em 0.2em;
}
@media only screen and (max-width: 768px) {
  #lead .inner .lead-title span {
    font-size: 5.3333333333vw;
  }
}
#lead .inner .lead-title span.did {
  background-size: 100% 100%;
}
#lead .inner .lead-title span:not(:first-of-type) {
  margin-top: min(18px, 1.40625vw);
}
@media only screen and (max-width: 768px) {
  #lead .inner .lead-title span:not(:first-of-type) {
    margin-top: 2.4vw;
  }
}
#lead .inner .explain .title {
  font-size: min(24px, 1.875vw);
  font-weight: 500;
  margin-bottom: min(60px, 4.6875vw);
}
@media only screen and (max-width: 768px) {
  #lead .inner .explain .title {
    font-size: 4vw;
    margin-bottom: 13.8666666667vw;
  }
}
#lead .inner .explain .title span {
  position: relative;
}
#lead .inner .explain .title span::after {
  content: "";
  position: absolute;
  bottom: max(-25px, -1.953125vw);
  left: 50%;
  translate: -50% 0;
  width: min(130px, 10.15625vw);
  height: 2px;
  background-color: #000;
  rotate: -14deg;
}
@media only screen and (max-width: 768px) {
  #lead .inner .explain .title span::after {
    height: 1px;
    bottom: -6.9333333333vw;
    width: 29.3333333333vw;
  }
}
#lead .inner .explain p {
  line-height: 1.68;
  font-size: min(16px, 1.25vw);
  font-weight: 400;
}
@media only screen and (max-width: 768px) {
  #lead .inner .explain p {
    line-height: 1.73;
    font-size: 3.0666666667vw;
  }
}
#lead .inner .figure {
  position: relative;
  width: min(868px, 67.8125vw);
  aspect-ratio: 1735/1128;
  margin-left: min(132px, 10.3515625vw);
  margin-top: min(11px, 0.859375vw);
  mask-image: url("../img/img_lead01_mask.svg");
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: 100% 100%;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  #lead .inner .figure {
    width: 81.3333333333vw;
    margin-left: 0;
    margin-top: 5.3333333333vw;
  }
}
#lead .inner .figure img {
  position: absolute;
  top: 58%;
  left: 50%;
  translate: -50% -50%;
  width: min(870px, 67.96875vw);
  max-width: none;
  height: min(654px, 51.09375vw);
  transition: top 1.8s;
  transition-delay: 0.2s;
}
@media only screen and (max-width: 768px) {
  #lead .inner .figure img {
    width: 81.3333333333vw;
    height: 61.0666666667vw;
  }
}
#lead .inner .figure.did img {
  top: 50%;
}

/* section01
---------------------------------------------------*/
#section01 {
  position: relative;
}
#section01 .inner {
  width: 79.1015625%;
  margin-left: 11.25%;
}
@media only screen and (max-width: 768px) {
  #section01 .inner {
    width: 81.3333333333vw;
    margin-left: 9.3333333333vw;
  }
}
#section01 .inner .headline-wrap {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: min(72px, 5.6640625vw);
}
@media only screen and (max-width: 768px) {
  #section01 .inner .headline-wrap {
    flex-direction: column;
    margin-bottom: 12vw;
  }
}
#section01 .inner .headline-wrap .figure {
  width: min(450px, 35.15625vw);
}
@media only screen and (max-width: 768px) {
  #section01 .inner .headline-wrap .figure {
    order: 2;
    width: 66.6666666667vw;
    margin-left: 7.4666666667vw;
    margin-bottom: 3.7333333333vw;
  }
}
#section01 .inner .headline-wrap .figure img {
  width: 100%;
}
#section01 .inner .headline-wrap .text-wrap {
  position: relative;
  width: min(510px, 39.84375vw);
}
@media only screen and (max-width: 768px) {
  #section01 .inner .headline-wrap .text-wrap {
    display: contents;
    width: 100%;
  }
}
#section01 .inner .headline-wrap .text-wrap .section-title {
  width: min(319px, 24.921875vw);
  margin-bottom: min(240px, 18.75vw);
}
@media only screen and (max-width: 768px) {
  #section01 .inner .headline-wrap .text-wrap .section-title {
    order: 1;
    width: 28.5333333333vw;
    margin-bottom: 5.0666666667vw;
    margin-left: 7.4666666667vw;
  }
}
#section01 .inner .headline-wrap .text-wrap .section-title img {
  width: 100%;
}
#section01 .inner .headline-wrap .text-wrap .item-wrap {
  position: absolute;
  top: min(110px, 8.59375vw);
  left: min(24px, 1.875vw);
  width: min(613px, 47.890625vw);
  pointer-events: none;
}
@media only screen and (max-width: 768px) {
  #section01 .inner .headline-wrap .text-wrap .item-wrap {
    top: -14.4vw;
    left: 40vw;
    width: 61.0666666667vw;
  }
}
#section01 .inner .headline-wrap .text-wrap .item-wrap .line {
  position: absolute;
  top: 0;
  left: 0;
  width: min(453px, 35.390625vw);
  pointer-events: none;
}
@media only screen and (max-width: 768px) {
  #section01 .inner .headline-wrap .text-wrap .item-wrap .line {
    width: 45.6vw;
  }
}
#section01 .inner .headline-wrap .text-wrap .item-wrap .line img {
  width: 100%;
  clip-path: inset(0 99.9% 30% 0);
}
#section01 .inner .headline-wrap .text-wrap .item-wrap .line.did img {
  animation: clipToRight 0.8s 1 ease-out forwards;
}
#section01 .inner .headline-wrap .text-wrap .item-wrap .item01 {
  position: absolute;
  top: min(138px, 10.7421875vw);
  left: min(344px, 26.8359375vw);
  width: min(259px, 20.234375vw);
  pointer-events: none;
}
@media only screen and (max-width: 768px) {
  #section01 .inner .headline-wrap .text-wrap .item-wrap .item01 {
    top: 14.4vw;
    left: 35.2vw;
    width: 24.8vw;
  }
}
#section01 .inner .headline-wrap .text-wrap .item-wrap .item01 img {
  width: 100%;
}
@media only screen and (max-width: 768px) {
  #section01 .inner .headline-wrap .text-wrap .explain {
    order: 3;
  }
}
#section01 .inner .headline-wrap .text-wrap .explain .title {
  margin-bottom: min(32px, 2.5vw);
}
@media only screen and (max-width: 768px) {
  #section01 .inner .headline-wrap .text-wrap .explain .title {
    margin-bottom: 4.8vw;
  }
}
#section01 .inner .headline-wrap .text-wrap .explain .title span {
  display: inline-block;
  line-height: 1;
  font-size: min(23px, 1.796875vw);
  font-weight: 400;
  background-image: linear-gradient(#FFC7D4 0%, #FFC7D4 100%);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 100%;
  transition: 0.8s ease-in-out;
  padding: 0.2em 0.2em;
}
@media only screen and (max-width: 768px) {
  #section01 .inner .headline-wrap .text-wrap .explain .title span {
    font-size: 4.2666666667vw;
  }
}
#section01 .inner .headline-wrap .text-wrap .explain .title span.did {
  background-size: 100% 100%;
}
#section01 .inner .headline-wrap .text-wrap .explain .title span:not(:first-of-type) {
  margin-top: min(15px, 1.1328125vw);
}
@media only screen and (max-width: 768px) {
  #section01 .inner .headline-wrap .text-wrap .explain .title span:not(:first-of-type) {
    margin-top: 2.6666666667vw;
  }
}
#section01 .inner .headline-wrap .text-wrap .explain p {
  line-height: 1.46;
  font-size: min(16px, 1.25vw);
  font-weight: 400;
}
@media only screen and (max-width: 768px) {
  #section01 .inner .headline-wrap .text-wrap .explain p {
    line-height: 1.81;
    font-size: 2.9333333333vw;
  }
}
#section01 .inner .headline-wrap .text-wrap .explain ul.note {
  margin-top: min(12px, 0.9375vw);
}
@media only screen and (max-width: 768px) {
  #section01 .inner .headline-wrap .text-wrap .explain ul.note {
    margin-top: 3.2vw;
  }
}
#section01 .inner .headline-wrap .text-wrap .explain ul.note li {
  font-size: min(12px, 0.9375vw);
}
@media only screen and (max-width: 768px) {
  #section01 .inner .headline-wrap .text-wrap .explain ul.note li {
    font-size: 2.6666666667vw;
  }
}
#section01 .inner .figure-wrap {
  position: relative;
  width: min(1002px, 98.9135802469%);
  aspect-ratio: 2003/1831;
  margin-left: auto;
  margin-right: 0;
}
@media only screen and (max-width: 768px) {
  #section01 .inner .figure-wrap {
    width: 85.3333333333vw;
    aspect-ratio: 320/700;
  }
}
#section01 .inner .figure-wrap .figure01 {
  position: absolute;
  top: min(31px, 2.421875vw);
  left: min(29px, 2.265625vw);
  width: min(428px, 33.4375vw);
  height: min(614px, 47.96875vw);
  background-color: #FFC7D4;
  border-radius: min(214px, 16.71875vw);
}
@media only screen and (max-width: 768px) {
  #section01 .inner .figure-wrap .figure01 {
    top: 4.2666666667vw;
    left: 4vw;
    width: 57.0666666667vw;
    height: 81.8666666667vw;
    border-radius: 28.5333333333vw;
  }
}
#section01 .inner .figure-wrap .figure01 img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: left 1.5s, top 1.5s;
}
#section01 .inner .figure-wrap .figure01.did img {
  top: max(-31px, -2.421875vw);
  left: max(-24px, -1.875vw);
}
#section01 .inner .figure-wrap .figure02 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: min(524px, 40.9375vw);
}
@media only screen and (max-width: 768px) {
  #section01 .inner .figure-wrap .figure02 {
    width: 71.7333333333vw;
  }
}
#section01 .inner .figure-wrap .figure02 img {
  width: 100%;
}

/* section02
---------------------------------------------------*/
#section02 {
  position: relative;
  margin-top: min(75px, 5.859375vw);
}
@media only screen and (max-width: 768px) {
  #section02 {
    margin-top: 24.8vw;
  }
}
#section02 .inner {
  width: min(1013px, 79.1015625%);
  margin-left: min(144px, 11.25%);
}
@media only screen and (max-width: 768px) {
  #section02 .inner {
    width: 81.3333333333vw;
    margin-left: 9.3333333333vw;
  }
}
#section02 .inner .headline-wrap {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: min(75px, 5.859375vw);
}
@media only screen and (max-width: 768px) {
  #section02 .inner .headline-wrap {
    flex-direction: column;
    margin-bottom: 5.8666666667vw;
  }
}
#section02 .inner .headline-wrap .figure {
  width: min(450px, 35.15625vw);
}
@media only screen and (max-width: 768px) {
  #section02 .inner .headline-wrap .figure {
    order: 2;
    width: 66.6666666667vw;
    margin-left: 7.4666666667vw;
    margin-bottom: 3.7333333333vw;
  }
}
#section02 .inner .headline-wrap .figure img {
  width: 100%;
}
#section02 .inner .headline-wrap .text-wrap {
  position: relative;
  width: min(510px, 39.84375vw);
}
@media only screen and (max-width: 768px) {
  #section02 .inner .headline-wrap .text-wrap {
    display: contents;
    width: 100%;
  }
}
#section02 .inner .headline-wrap .text-wrap .section-title {
  width: min(356px, 27.7734375vw);
  margin-bottom: min(223px, 17.3828125vw);
}
@media only screen and (max-width: 768px) {
  #section02 .inner .headline-wrap .text-wrap .section-title {
    order: 1;
    width: 31.7333333333vw;
    margin-bottom: 5.0666666667vw;
    margin-left: 7.4666666667vw;
  }
}
#section02 .inner .headline-wrap .text-wrap .section-title img {
  width: 100%;
}
#section02 .inner .headline-wrap .text-wrap .item-wrap {
  position: absolute;
  top: max(-207px, -16.171875vw);
  left: min(8px, 0.625vw);
  width: min(642px, 50.1171875vw);
  pointer-events: none;
}
@media only screen and (max-width: 768px) {
  #section02 .inner .headline-wrap .text-wrap .item-wrap {
    top: -35.7333333333vw;
    left: 36.8vw;
    width: 64.8vw;
  }
}
#section02 .inner .headline-wrap .text-wrap .item-wrap .line {
  position: absolute;
  top: min(345px, 26.9140625vw);
  left: 0;
  width: min(501px, 39.140625vw);
  pointer-events: none;
}
@media only screen and (max-width: 768px) {
  #section02 .inner .headline-wrap .text-wrap .item-wrap .line {
    top: 24.8vw;
    width: 50.9333333333vw;
  }
}
#section02 .inner .headline-wrap .text-wrap .item-wrap .line img {
  width: 100%;
  clip-path: inset(0 99.9% 30% 0);
}
#section02 .inner .headline-wrap .text-wrap .item-wrap .line.did img {
  animation: clipToRight 0.8s 1 ease-out forwards;
}
#section02 .inner .headline-wrap .text-wrap .item-wrap .item01 {
  position: absolute;
  top: 0;
  left: min(300px, 23.4375vw);
  width: min(190px, 14.84375vw);
  pointer-events: none;
}
@media only screen and (max-width: 768px) {
  #section02 .inner .headline-wrap .text-wrap .item-wrap .item01 {
    left: 27.4666666667vw;
    width: 18.4vw;
  }
}
#section02 .inner .headline-wrap .text-wrap .item-wrap .item01 img {
  width: 100%;
}
#section02 .inner .headline-wrap .text-wrap .item-wrap .item02 {
  position: absolute;
  top: min(243px, 18.9453125vw);
  left: min(333px, 26.015625vw);
  width: min(290px, 22.65625vw);
  pointer-events: none;
}
@media only screen and (max-width: 768px) {
  #section02 .inner .headline-wrap .text-wrap .item-wrap .item02 {
    top: 16.5333333333vw;
    left: 34.1333333333vw;
    width: 28vw;
  }
}
#section02 .inner .headline-wrap .text-wrap .item-wrap .item02 img {
  width: 100%;
}
@media only screen and (max-width: 768px) {
  #section02 .inner .headline-wrap .text-wrap .explain {
    order: 3;
  }
}
#section02 .inner .headline-wrap .text-wrap .explain .title {
  margin-bottom: min(32px, 2.5vw);
}
@media only screen and (max-width: 768px) {
  #section02 .inner .headline-wrap .text-wrap .explain .title {
    margin-bottom: 4.8vw;
  }
}
#section02 .inner .headline-wrap .text-wrap .explain .title span {
  display: inline-block;
  line-height: 1;
  font-size: min(23px, 1.796875vw);
  font-weight: 400;
  background-image: linear-gradient(#5ADEE1 0%, #5ADEE1 100%);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 100%;
  transition: 0.8s ease-in-out;
  padding: 0.2em 0.2em;
}
@media only screen and (max-width: 768px) {
  #section02 .inner .headline-wrap .text-wrap .explain .title span {
    font-size: 4.2666666667vw;
  }
}
#section02 .inner .headline-wrap .text-wrap .explain .title span.did {
  background-size: 100% 100%;
}
#section02 .inner .headline-wrap .text-wrap .explain .title span:not(:first-of-type) {
  margin-top: min(15px, 1.171875vw);
}
@media only screen and (max-width: 768px) {
  #section02 .inner .headline-wrap .text-wrap .explain .title span:not(:first-of-type) {
    margin-top: 2.6666666667vw;
  }
}
#section02 .inner .headline-wrap .text-wrap .explain p {
  line-height: 1.46;
  font-size: min(16px, 1.25vw);
  font-weight: 400;
}
@media only screen and (max-width: 768px) {
  #section02 .inner .headline-wrap .text-wrap .explain p {
    line-height: 1.81;
    font-size: 2.9333333333vw;
  }
}
#section02 .inner .headline-wrap .text-wrap .explain ul.note {
  margin-top: min(12px, 0.9375vw);
}
@media only screen and (max-width: 768px) {
  #section02 .inner .headline-wrap .text-wrap .explain ul.note {
    margin-top: 3.7333333333vw;
  }
}
#section02 .inner .headline-wrap .text-wrap .explain ul.note li {
  font-size: min(12px, 0.9375vw);
}
@media only screen and (max-width: 768px) {
  #section02 .inner .headline-wrap .text-wrap .explain ul.note li {
    display: inline;
    line-height: 1.8;
    font-size: 2.6666666667vw;
  }
}
#section02 .inner .headline-wrap .text-wrap .explain ul.note li:not(:last-child) {
  margin-bottom: min(7px, 0.546875vw);
}
@media only screen and (max-width: 768px) {
  #section02 .inner .headline-wrap .text-wrap .explain ul.note li:not(:last-child) {
    margin-bottom: 0;
  }
}
#section02 .inner .figure-wrap {
  position: relative;
  width: min(842px, 83.1604938272%);
  margin-left: min(75px, 5.859375vw);
}
@media only screen and (max-width: 768px) {
  #section02 .inner .figure-wrap {
    width: 80.5333333333vw;
    margin-left: 0;
  }
}
#section02 .inner .figure-wrap .figure01 {
  position: relative;
  width: 100%;
  aspect-ratio: 1684/1184;
  mask-image: url("../img/img_section02_fig01_mask.svg");
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: 100% 100%;
  overflow: hidden;
}
#section02 .inner .figure-wrap .figure01 img {
  position: absolute;
  top: 54%;
  left: 50%;
  translate: -50% -50%;
  width: min(862px, 67.34375vw);
  max-width: none;
  height: min(647px, 50.546875vw);
  transition: top 1.8s;
  transition-delay: 0.2s;
}
@media only screen and (max-width: 768px) {
  #section02 .inner .figure-wrap .figure01 img {
    width: 82.4vw;
    height: 61.8666666667vw;
  }
}
#section02 .inner .figure-wrap .figure01.did img {
  top: 48%;
}

/* video
---------------------------------------------------*/
#video {
  position: relative;
  margin-top: min(130px, 10.15625vw);
}
@media only screen and (max-width: 768px) {
  #video {
    margin-top: 17.0666666667vw;
  }
}
#video .inner {
  position: relative;
  width: 100%;
  z-index: 1;
}
#video .inner .video-movie-wrap {
  position: relative;
  width: min(890px, 69.53125%);
  aspect-ratio: 16/9;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  #video .inner .video-movie-wrap {
    width: 70.4vw;
  }
}
#video .inner .video-movie-wrap .music-title {
  position: absolute;
  top: max(-48px, -3.75vw);
  left: min(18px, 1.40625vw);
  width: min(686px, 53.59375vw);
  z-index: 3;
  pointer-events: none;
}
@media only screen and (max-width: 768px) {
  #video .inner .video-movie-wrap .music-title {
    top: -3.7333333333vw;
    left: 1.6vw;
    width: 53.3333333333vw;
  }
}
#video .inner .video-movie-wrap .music-title img {
  width: 100%;
}
#video .inner .video-movie-wrap .video-title {
  position: absolute;
  bottom: max(-31px, -2.421875vw);
  left: min(320px, 25vw);
  width: min(553px, 43.203125vw);
  z-index: 2;
  pointer-events: none;
}
@media only screen and (max-width: 768px) {
  #video .inner .video-movie-wrap .video-title {
    bottom: -2.6666666667vw;
    left: 25.3333333333vw;
    width: 43.7333333333vw;
  }
}
#video .inner .video-movie-wrap .video-title img {
  width: 100%;
}
#video .inner .video-movie-wrap #moviePlayer02 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
#video .inner .video-credit {
  width: min(890px, 69.53125%);
  margin: 1em auto 0;
}
#video .inner .video-credit p {
  line-height: 1.4;
  color: #231815;
  font-size: min(16px, 1.25vw);
  font-weight: 400;
}
@media only screen and (max-width: 768px) {
  #video .inner .video-credit p {
    font-size: 2.6666666667vw;
  }
}
#video .inner .video-shape {
  position: absolute;
  top: min(329px, 25.703125vw);
  left: calc((50vw - 640px) * -1);
  width: min(421px, 32.890625vw);
  z-index: -1;
}
@media only screen and (max-width: 1280px) {
  #video .inner .video-shape {
    left: 0;
  }
}
@media only screen and (max-width: 768px) {
  #video .inner .video-shape {
    top: 22.9333333333vw;
    width: 39.2vw;
  }
}
#video .inner .video-shape img {
  width: 100%;
}

/* products
---------------------------------------------------*/
#products {
  margin-top: min(210px, 16.40625vw);
}
@media only screen and (max-width: 768px) {
  #products {
    margin-top: 35.7333333333vw;
  }
}
#products .inner {
  position: relative;
  width: min(594px, 46.40625vw);
  padding-top: min(89px, 6.953125vw);
  margin: 0 auto;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  #products .inner {
    width: 79.2vw;
    padding-top: 11.2vw;
    margin-left: 10.1333333333vw;
  }
}
#products .inner .products-title {
  position: absolute;
  top: max(-79px, -6.171875vw);
  left: min(324px, 25.3125vw);
  width: min(322px, 25.15625vw);
}
@media only screen and (max-width: 768px) {
  #products .inner .products-title {
    top: -10.6666666667vw;
    left: 43.2vw;
    width: 42.9333333333vw;
  }
}
#products .inner .products-title img {
  width: 100%;
}
#products .inner ul.products-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: min(22px, 1.71875vw);
  margin: 0 auto min(19px, 1.484375vw);
}
@media only screen and (max-width: 768px) {
  #products .inner ul.products-list {
    gap: 2.9333333333vw;
    margin-bottom: 1.6vw;
  }
}
#products .inner ul.products-list li {
  width: min(60px, 4.6875vw);
}
@media only screen and (max-width: 768px) {
  #products .inner ul.products-list li {
    width: 8.2666666667vw;
  }
}
#products .inner ul.products-list li img {
  width: 100%;
}
#products .inner .name {
  text-align: center;
}
#products .inner .name + ul.products-list {
  margin-top: min(58px, 4.53125vw);
}
@media only screen and (max-width: 768px) {
  #products .inner .name + ul.products-list {
    margin-top: 6.9333333333vw;
  }
}
#products .inner .name span {
  display: inline-block;
  color: #000;
  line-height: 1;
  font-size: min(18px, 1.40625vw);
  font-weight: 500;
  background-image: linear-gradient(transparent 60%, #fff 40%);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding: 0.1em 0.2em;
}
@media only screen and (max-width: 768px) {
  #products .inner .name span {
    font-size: 2.6666666667vw;
  }
}
#products .inner .products-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}
#products .inner .products-shape img {
  width: 100%;
}
#products .btn-link {
  text-align: center;
  margin-top: min(193px, 15.078125vw);
}
@media only screen and (max-width: 768px) {
  #products .btn-link {
    margin-top: 23.2vw;
  }
}
#products .btn-link a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(175px, 13.671875vw);
  height: min(40px, 3.125vw);
  line-height: 1;
  text-align: center;
  color: #fff;
  font-size: min(16px, 1.25vw);
  font-weight: 500;
  border-radius: 6em;
  background-color: #000;
  border: 1px solid #000;
  margin: 0 auto;
  transition: 0.5s;
}
@media only screen and (max-width: 768px) {
  #products .btn-link a {
    width: 40vw;
    height: 9.6vw;
    font-size: 3.7333333333vw;
  }
}
#products .btn-link a:hover {
  color: #000;
  background-color: #fff;
}

/* animation
---------------------------------------------------*/
.fadeIn.animated {
  opacity: 0;
}

.fadeIn.animated.did {
  animation: fadeIn 1.2s 1 ease-in-out forwards;
  animation-delay: 0s;
}

.fadeInUp.animated {
  opacity: 0;
}

.fadeInUp.animated.did {
  animation: fadeInUp 1.2s 1 ease-in-out forwards;
  animation-delay: 0s;
}

.fadeInLeft.animated {
  opacity: 0;
}

.fadeInLeft.animated.did {
  animation: fadeInLeft 1.2s 1 ease-in-out forwards;
  animation-delay: 0s;
}

.fadeInRight.animated {
  opacity: 0;
}

.fadeInRight.animated.did {
  animation: fadeInRight 0.8s 1 ease-in-out forwards;
  animation-delay: 0s;
}

.fadeInRight2.animated {
  opacity: 0;
}

.fadeInRight2.animated.did {
  animation: fadeInRight2 0.8s 1 ease-in-out forwards;
  animation-delay: 0s;
}

/* animation
---------------------------------------------------*/
.animated {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@media (print), (prefers-reduced-motion: reduce) {
  .animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 20%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-20%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(20%, 20%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight2 {
  from {
    opacity: 0;
    transform: translate3d(20%, -20%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes clipToRight {
  0% {
    clip-path: inset(0 99.9% 30% 0);
  }
  100% {
    clip-path: inset(0%);
  }
}

/*# sourceMappingURL=main.css.map */
