/* Layout */
.l-inner {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
}

.l-ctn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  z-index: 10;
}

/* Common Components */
.c-note-list {
  color: #767676;
  font-style: normal;
  font-weight: 500;
  font-size: 10px;
  line-height: 1.4;
}
.c-note-list li {
  list-style: none;
}

.c-product-point-list {
  position: relative;
  width: 41.40625vw;
  max-width: 530px;
  height: 50.46875vw;
  max-height: 646px;
}
@media (max-width: 800px) {
  .c-product-point-list {
    width: 88.6363636364vw;
    max-width: none;
    height: 146.8181818182vw;
    max-height: none;
  }
}
.c-product-point-list_item {
  position: absolute;
  width: 12.5vw;
  max-width: 160px;
  height: 12.5vw;
  max-height: 160px;
  display: grid;
  place-items: center;
}
@media (max-width: 800px) {
  .c-product-point-list_item {
    width: 34.0909090909vw;
    max-width: none;
    height: 34.0909090909vw;
    max-height: none;
  }
}
.c-product-point-list_item .point_txt {
  position: absolute;
  width: 10.546875vw;
  max-width: 135px;
  z-index: 11;
}
@media (max-width: 800px) {
  .c-product-point-list_item .point_txt {
    width: 27.2727272727vw;
    max-width: none;
  }
}
.c-product-point-list_item .point_bubble {
  position: absolute;
  z-index: 10;
  transform-origin: center center;
}
.c-product-point-list_item.v1 .point_bubble {
  animation: bubble-float-v1 3.2s ease-in-out infinite alternate;
}
.c-product-point-list_item.v2 .point_bubble {
  animation: bubble-float-v2 2.8s ease-in-out 0.5s infinite alternate;
}
.c-product-point-list_item.v3 .point_bubble {
  animation: bubble-float-v3 3.8s ease-in-out 0.3s infinite alternate;
}
.c-product-point-list_item.v4 .point_bubble {
  animation: bubble-float-v4 3s ease-in-out 0.8s infinite alternate;
}

.pc {
  display: block !important;
}
@media (max-width: 800px) {
  .pc {
    display: none !important;
  }
}

.sp {
  display: none !important;
}
@media (max-width: 800px) {
  .sp {
    display: block !important;
  }
}

img {
  width: 100%;
  object-fit: cover;
}

/* Keyframes */
@keyframes lead-product-sway {
  0% {
    transform: translateX(0);
  }
  8.33% {
    transform: translateX(5px);
  }
  25% {
    transform: translateX(-5px);
  }
  41.67% {
    transform: translateX(4px);
  }
  58.33% {
    transform: translateX(-4px);
  }
  75% {
    transform: translateX(3px);
  }
  91.67% {
    transform: translateX(-3px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes kv-zoom {
  0% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes bubble-float-v1 {
  0% {
    transform: translateY(9px) scale(1, 1) rotate(-24deg);
  }
  100% {
    transform: translateY(-9px) scale(1.08, 0.92) rotate(-24deg);
  }
}
@keyframes bubble-float-v2 {
  0% {
    transform: translateY(6px) scale(1, 1) rotate(15deg);
  }
  100% {
    transform: translateY(-6px) scale(1.06, 0.94) rotate(15deg);
  }
}
@keyframes bubble-float-v3 {
  0% {
    transform: translateY(11px) scale(1, 1) rotate(-24deg);
  }
  100% {
    transform: translateY(-11px) scale(1.1, 0.9) rotate(-24deg);
  }
}
@keyframes bubble-float-v4 {
  0% {
    transform: translateY(8px) scale(1, 1) rotate(15deg);
  }
  100% {
    transform: translateY(-8px) scale(1.07, 0.93) rotate(15deg);
  }
}
@keyframes shampoo-point01-txt-float {
  0% {
    transform: translateY(9px);
  }
  100% {
    transform: translateY(-9px);
  }
}
@keyframes shampoo-point02-txt-float {
  0% {
    transform: translateY(6px);
  }
  100% {
    transform: translateY(-6px);
  }
}
@keyframes shampoo-point03-txt-float {
  0% {
    transform: translateY(11px);
  }
  100% {
    transform: translateY(-11px);
  }
}
@keyframes shampoo-point04-txt-float {
  0% {
    transform: translateY(8px);
  }
  100% {
    transform: translateY(-8px);
  }
}
.fix-bg {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100vh;
}
.fix-bg.hide {
  opacity: 0;
}
.fix-bg .bg1,
.fix-bg .bg2 {
  width: 100%;
  max-width: 1280px;
  height: 100%;
  margin: 0 auto;
}
.fix-bg .bg1 {
  z-index: 2;
  background-image: url("../img/parallax/bg01.webp");
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: 1280px auto;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  overflow: hidden;
}
.fix-bg .bg2 {
  z-index: 1;
  background-image: url("../img/parallax/bg02.webp");
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: 1280px auto;
  position: relative;
}
@media (max-width: 800px) {
  .fix-bg .bg1 {
    background-image: url("../img/parallax/bg01-sp.webp");
    background-repeat: no-repeat;
    background-position: 50% 0;
    background-size: 100% auto;
  }
  .fix-bg .bg2 {
    background-image: url("../img/parallax/bg02-sp.webp");
    background-repeat: no-repeat;
    background-position: 50% 0;
    background-size: 100% auto;
  }
}

#kv {
  position: relative;
  z-index: 10;
  height: 65.234375vw;
  max-height: 835px;
}
@media (max-width: 800px) {
  #kv {
    height: 159.0909090909vw;
    max-height: none;
  }
}
#kv .kv-inner {
  background-image: url("../img/kv/bg.webp");
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: 100vw auto;
}
@media (min-width: 1280px) {
  #kv .kv-inner {
    background-size: 1280px auto;
  }
}
@media (max-width: 800px) {
  #kv .kv-inner {
    background-image: url("../img/kv/bg-sp.webp");
    background-size: 100% auto;
  }
}
#kv .kv-bubble img {
  position: absolute;
  transform-origin: center center;
}
#kv .kv-bubble_01 {
  width: 5.625vw;
  max-width: 72px;
  top: 16.640625vw;
  right: 6.328125vw;
  animation: bubble-float-v1 3.2s ease-in-out infinite alternate;
}
@media (min-width: 1280px) {
  #kv .kv-bubble_01 {
    top: 213px;
    right: 81px;
  }
}
@media (max-width: 800px) {
  #kv .kv-bubble_01 {
    width: 11.3636363636vw;
    max-width: none;
    top: 37.9545454545vw;
    right: 7.2727272727vw;
  }
}
#kv .kv-bubble_02 {
  width: 4.0625vw;
  max-width: 52px;
  bottom: 23.828125vw;
  right: 14.84375vw;
  animation: bubble-float-v2 2.8s ease-in-out 0.5s infinite alternate;
}
@media (min-width: 1280px) {
  #kv .kv-bubble_02 {
    bottom: 305px;
    right: 190px;
  }
}
@media (max-width: 800px) {
  #kv .kv-bubble_02 {
    width: 8.1818181818vw;
    max-width: none;
    bottom: 73.4090909091vw;
    right: 24.3181818182vw;
  }
}
#kv .kv-bubble_03 {
  width: 7.265625vw;
  max-width: 93px;
  bottom: 15.234375vw;
  right: 40.625vw;
  animation: bubble-float-v3 3.8s ease-in-out 0.3s infinite alternate;
}
@media (min-width: 1280px) {
  #kv .kv-bubble_03 {
    bottom: 195px;
    right: 520px;
  }
}
@media (max-width: 800px) {
  #kv .kv-bubble_03 {
    width: 14.7727272727vw;
    max-width: none;
    bottom: 57.2727272727vw;
    right: auto;
    left: 6.8181818182vw;
  }
}
#kv .kv-note {
  position: absolute;
  bottom: 21.875vw;
  left: 11.015625vw;
  z-index: 100;
}
@media (min-width: 1280px) {
  #kv .kv-note {
    bottom: 280px;
    left: 141px;
  }
}
@media (max-width: 800px) {
  #kv .kv-note {
    bottom: 12.2727272727vw;
    left: 6.3636363636vw;
    font-size: 9px;
    line-height: 1.5;
  }
}

#kv .kv-note .kv-note_illust-mark {
  display: inline-block;
  width: 7px;
  height: 7px;
  box-sizing: border-box;
  border: 0.5px solid #767676;
  border-radius: 50%;
  margin-right: 0.35em;
  position: relative;
  top: 0.8px;
}

#spacer01 {
  height: 560px;
}
@media (max-width: 800px) {
  #spacer01 {
    height: 280px;
  }
}

#spacer02 {
  height: 582px;
}
@media (max-width: 800px) {
  #spacer02 {
    height: 291px;
  }
}

#lead {
  position: relative;
  z-index: 10;
  overflow: hidden;
}
#lead .lead-inner {
  padding-top: 11.71875vw;
  padding-bottom: 15.625vw;
  background-image: url("../img/lead/bg.webp"), url("../img/lead/bg.webp");
  background-repeat: no-repeat;
  background-position: 50% 0, 50% 100%;
  background-size: 100vw auto, 100vw auto;
}
@media (min-width: 1280px) {
  #lead .lead-inner {
    padding-top: 150px;
    padding-bottom: 200px;
    background-position: 50% 0, 50% 100%;
    background-size: 1280px auto, 1280px auto;
  }
}
@media (max-width: 800px) {
  #lead .lead-inner {
    padding-top: 18.1818181818vw;
    padding-bottom: 22.7272727273vw;
    background-image: url("../img/lead/bg-sp.webp"), url("../img/lead/bg-sp.webp");
    background-position: 50% 0, 50% 100%;
    background-size: 100% auto, 100% auto;
  }
}
#lead .lead-heading {
  width: 30vw;
  max-width: 384px;
}
@media (max-width: 800px) {
  #lead .lead-heading {
    width: 87.2727272727vw;
    max-width: none;
  }
}
#lead .lead-product {
  margin-top: 3.75vw;
  width: 44.21875vw;
  max-width: 566px;
}
@media (min-width: 1280px) {
  #lead .lead-product {
    margin-top: 48px;
  }
}
@media (max-width: 800px) {
  #lead .lead-product {
    width: 100vw;
    max-width: none;
    margin-top: 0;
  }
}
#lead .lead-product_point {
  position: absolute;
  left: 3.125vw;
  right: 0;
  width: 44.21875vw;
  max-width: 566px;
  margin: auto;
}
@media (max-width: 800px) {
  #lead .lead-product_point {
    left: 0;
    width: 100vw;
    max-width: none;
  }
}
#lead .lead-product_content {
  width: 24.21875vw;
  max-width: 310px;
  margin: 3.90625vw auto 0;
}
@media (max-width: 800px) {
  #lead .lead-product_content {
    width: 70.4545454545vw;
    max-width: none;
    margin: 22.7272727273vw auto 0;
  }
}
#lead .lead-product_content.is-animated picture {
  display: block;
  animation: lead-product-sway 4.2s ease-in-out 0.3s 1 both;
}
#lead .lead-product_note {
  margin-top: 7.8125vw;
  margin-left: 9.375vw;
  line-height: 1.6;
}
@media (min-width: 1280px) {
  #lead .lead-product_note {
    margin-top: 100px;
    margin-left: 120px;
  }
}
@media (max-width: 800px) {
  #lead .lead-product_note {
    margin: 22.7272727273vw 4.5454545455vw 0;
  }
}
#lead .lead-usage {
  margin-top: 5vw;
  width: 28.125vw;
  max-width: 360px;
}
@media (min-width: 1280px) {
  #lead .lead-usage {
    margin-top: 64px;
  }
}
@media (max-width: 800px) {
  #lead .lead-usage {
    width: 70vw;
    max-width: none;
    margin-top: 14.5454545455vw;
  }
}
#lead .lead-usage_video {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 32px;
}
@media (max-width: 800px) {
  #lead .lead-usage_video {
    margin-top: 16px;
  }
}
#lead .lead-usage_video_trigger {
  position: relative;
  width: 280px;
  max-width: 280px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: opacity 0.3s;
}
@media (max-width: 800px) {
  #lead .lead-usage_video_trigger {
    width: 280px;
    max-width: none;
  }
}
#lead .lead-usage_video_trigger:hover {
  opacity: 0.85;
}
#lead .lead-usage_video_trigger img {
  width: 100%;
  height: auto;
  display: block;
}
#lead .lead-usage_video_play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
#lead .lead-usage_video_play svg {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}
#lead .lead-usage_video_note {
  margin-top: 2.5vw;
  margin-inline: -200px;
  line-height: 1.6;
  text-indent: -0.8rem;
}
@media (min-width: 1280px) {
  #lead .lead-usage_video_note {
    margin-top: 32px;
  }
}
@media (max-width: 800px) {
  #lead .lead-usage_video_note {
    margin-top: 28px;
    margin-inline: -35px -50px;
  }
}

/* Movie Modal */
.movie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
}
.movie-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.movie-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  cursor: pointer;
}

.movie-modal-content {
  position: relative;
  width: 80%;
  max-width: 347px;
  z-index: 10001;
}
.movie-modal-content video {
  width: 100%;
  height: auto;
  display: block;
}

.movie-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
  z-index: 10002;
  transition: opacity 0.3s;
}
.movie-modal-close:hover {
  opacity: 0.7;
}
@media (max-width: 800px) {
  .movie-modal-close {
    top: -35px;
    right: -5px;
    width: 35px;
    height: 35px;
    font-size: 35px;
  }
}

#shampoo {
  position: relative;
  z-index: 10;
  overflow: hidden;
  margin-top: -11.71875vw;
}
@media (min-width: 1280px) {
  #shampoo {
    margin-top: -150px;
  }
}
@media (max-width: 800px) {
  #shampoo {
    margin-top: -18.1818181818vw;
  }
}
#shampoo .shampoo-inner {
  padding-block: 8.046875vw 14.21875vw;
  background-image: url("../img/shampoo/bg.webp");
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: 100vw auto;
}
@media (min-width: 1280px) {
  #shampoo .shampoo-inner {
    padding-block: 103px 182px;
    background-size: 1280px auto;
  }
}
@media (max-width: 800px) {
  #shampoo .shampoo-inner {
    padding-block: 18.1818181818vw 22.7272727273vw;
    background-image: url("../img/shampoo/bg-sp.webp");
    background-size: 100% auto;
  }
}
#shampoo .shampoo-heading {
  width: 24.609375vw;
  max-width: 315px;
}
@media (max-width: 800px) {
  #shampoo .shampoo-heading {
    width: 46.3636363636vw;
    max-width: none;
  }
}
#shampoo .shampoo-product {
  margin-top: 2.1875vw;
}
@media (min-width: 1280px) {
  #shampoo .shampoo-product {
    margin-top: 28px;
  }
}
#shampoo .shampoo-product_point {
  position: relative;
  width: 39.765625vw;
  max-width: 509px;
  height: 58.59375vw;
  max-height: 750px;
}
@media (max-width: 800px) {
  #shampoo .shampoo-product_point {
    width: 88.6363636364vw;
    max-width: none;
    height: 161.3636363636vw;
    max-height: none;
  }
}
#shampoo .shampoo-product_point > li {
  display: grid;
  place-items: center;
}
#shampoo .shampoo-product_point .point01 {
  width: 17.890625vw;
  max-width: 229px;
  height: 17.03125vw;
  max-height: 218px;
  top: 0.3125vw;
  left: 4.6875vw;
}
@media (min-width: 1280px) {
  #shampoo .shampoo-product_point .point01 {
    top: 4px;
    left: 12px;
  }
}
@media (max-width: 800px) {
  #shampoo .shampoo-product_point .point01 {
    width: 40.9090909091vw;
    max-width: none;
    height: 33.1818181818vw;
    max-height: none;
    top: 0.9090909091vw;
    left: 0vw;
  }
}
#shampoo .shampoo-product_point .point01 .point_txt {
  animation: shampoo-point01-txt-float 3.2s ease-in-out infinite alternate;
}
#shampoo .shampoo-product_point .point01 .point_bubble {
  animation: bubble-float-v1 3.2s ease-in-out infinite alternate;
}
#shampoo .shampoo-product_point .point02 {
  width: 16.40625vw;
  max-width: 210px;
  height: 15.3125vw;
  max-height: 196px;
  top: 0vw;
  right: 28px;
}
@media (max-width: 800px) {
  #shampoo .shampoo-product_point .point02 {
    width: 40.9090909091vw;
    max-width: none;
    height: 32.5vw;
    max-height: none;
    top: 0vw;
    right: 0vw;
  }
}
#shampoo .shampoo-product_point .point02 .point_txt {
  animation: shampoo-point02-txt-float 2.8s ease-in-out 0.5s infinite alternate;
}
#shampoo .shampoo-product_point .point02 .point_bubble {
  animation: bubble-float-v2 2.8s ease-in-out 0.5s infinite alternate;
}
#shampoo .shampoo-product_point .point03 {
  width: 17.1875vw;
  max-width: 220px;
  height: 16.40625vw;
  max-height: 210px;
  bottom: 0vw;
  left: 4.375vw;
}
@media (min-width: 1280px) {
  #shampoo .shampoo-product_point .point03 {
    left: 8px;
  }
}
@media (max-width: 800px) {
  #shampoo .shampoo-product_point .point03 {
    width: 40.9090909091vw;
    max-width: none;
    height: 35vw;
    max-height: none;
    bottom: 0vw;
    left: 0vw;
  }
}
#shampoo .shampoo-product_point .point03 .point_txt {
  animation: shampoo-point03-txt-float 3.8s ease-in-out 0.3s infinite alternate;
}
#shampoo .shampoo-product_point .point03 .point_bubble {
  animation: bubble-float-v3 3.8s ease-in-out 0.3s infinite alternate;
}
#shampoo .shampoo-product_point .point04 {
  width: 17.1875vw;
  max-width: 220px;
  height: 16.09375vw;
  max-height: 206px;
  bottom: 0.625vw;
  right: 0.3125vw;
}
@media (min-width: 1280px) {
  #shampoo .shampoo-product_point .point04 {
    bottom: 8px;
    right: 40px;
  }
}
@media (max-width: 800px) {
  #shampoo .shampoo-product_point .point04 {
    width: 40.9090909091vw;
    max-width: none;
    height: 33.1818181818vw;
    max-height: none;
    bottom: 4.5454545455vw;
    right: 0.6818181818vw;
  }
}
#shampoo .shampoo-product_point .point04 .point_txt {
  animation: shampoo-point04-txt-float 3s ease-in-out 0.8s infinite alternate;
}
#shampoo .shampoo-product_point .point04 .point_bubble {
  animation: bubble-float-v4 3s ease-in-out 0.8s infinite alternate;
}
#shampoo .shampoo-product_note {
  color: #767676;
  font-style: normal;
  font-weight: 500;
  font-size: 10px;
  line-height: 1.4;
}
#shampoo .shampoo-product_note li {
  list-style: none;
}

#copy {
  position: relative;
  z-index: 10;
  overflow: hidden;
  margin-top: -10.546875vw;
}
@media (min-width: 1280px) {
  #copy {
    margin-top: -135px;
  }
}
@media (max-width: 800px) {
  #copy {
    margin-top: -10.2272727273vw;
  }
}
#copy .copy-inner {
  padding-block: 1.5625vw 5.78125vw;
  background-image: url("../img/copy/bg.webp");
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: 100vw auto;
}
@media (min-width: 1280px) {
  #copy .copy-inner {
    padding-block: 19px 74px;
    background-size: 1280px auto;
  }
}
@media (max-width: 800px) {
  #copy .copy-inner {
    padding-block: 4.5454545455vw 14.7727272727vw;
    background-image: url("../img/copy/bg-sp.webp");
    background-size: 100% auto;
  }
}
#copy .copy-heading {
  width: 24.765625vw;
  max-width: 317px;
  margin-top: 1.5625vw;
}
@media (max-width: 800px) {
  #copy .copy-heading {
    width: 74.0454545455vw;
    max-width: none;
  }
}
#copy .copy-heading_note {
  margin-top: 1.5625vw;
}
@media (min-width: 1280px) {
  #copy .copy-heading_note {
    margin-top: 20px;
  }
}
@media (max-width: 800px) {
  #copy .copy-heading_note {
    margin-top: 3.8636363636vw;
  }
}

#ice {
  position: relative;
  z-index: 10;
  overflow: hidden;
}
#ice .ice-inner {
  background-image: url("../img/ice/bg.webp"), url("../img/ice/bg.webp");
  background-repeat: no-repeat;
  background-position: 50% 0, 50% 40%;
  background-size: 100vw auto, 100vw auto;
  padding-block: 7.03125vw 17.1875vw;
}
@media (min-width: 1280px) {
  #ice .ice-inner {
    background-size: 1280px auto;
    padding-block: 90px 220px;
  }
}
@media (max-width: 800px) {
  #ice .ice-inner {
    padding-block: 9.0909090909vw 27.2727272727vw;
    background-image: url("../img/ice/bg-sp.webp"), url("../img/ice/bg-sp.webp");
    background-size: 100% auto, 100% auto;
  }
}
#ice .ice-heading {
  width: 24.609375vw;
  max-width: 315px;
}
@media (max-width: 800px) {
  #ice .ice-heading {
    width: 46.3636363636vw;
    max-width: none;
  }
}
#ice .ice-product {
  margin-top: 2.1875vw;
}
@media (min-width: 1280px) {
  #ice .ice-product {
    margin-top: 28px;
  }
}
#ice .ice-product_point > li {
  display: grid;
  place-items: center;
}
#ice .ice-product_point .point01 {
  top: 0.78125vw;
  left: 5.46875vw;
}
@media (min-width: 1280px) {
  #ice .ice-product_point .point01 {
    top: 10px;
    left: 70px;
  }
}
@media (max-width: 800px) {
  #ice .ice-product_point .point01 {
    top: 2.2727272727vw;
    left: 2.2727272727vw;
  }
}
#ice .ice-product_point .point02 {
  top: 9.140625vw;
  right: 4.6875vw;
}
@media (min-width: 1280px) {
  #ice .ice-product_point .point02 {
    top: 117px;
    right: 60px;
  }
}
@media (max-width: 800px) {
  #ice .ice-product_point .point02 {
    top: 26.5909090909vw;
    right: 2.2727272727vw;
  }
}
#ice .ice-product_point .point03 {
  bottom: 10.15625vw;
  left: 5.46875vw;
}
@media (min-width: 1280px) {
  #ice .ice-product_point .point03 {
    bottom: 130px;
    left: 70px;
  }
}
@media (max-width: 800px) {
  #ice .ice-product_point .point03 {
    left: 2.2727272727vw;
    bottom: 29.5454545455vw;
  }
}
#ice .ice-product_point .point04 {
  bottom: 0;
  right: 4.6875vw;
}
@media (min-width: 1280px) {
  #ice .ice-product_point .point04 {
    right: 60px;
  }
}
@media (max-width: 800px) {
  #ice .ice-product_point .point04 {
    right: 2.2727272727vw;
    bottom: 0vw;
  }
}
#ice .ice-product_point .point01 .point_txt {
  animation: shampoo-point01-txt-float 3.2s ease-in-out infinite alternate;
}
#ice .ice-product_point .point02 .point_txt {
  animation: shampoo-point02-txt-float 2.8s ease-in-out 0.5s infinite alternate;
}
#ice .ice-product_point .point03 .point_txt {
  animation: shampoo-point03-txt-float 3.8s ease-in-out 0.3s infinite alternate;
}
#ice .ice-product_point .point04 .point_txt {
  animation: shampoo-point04-txt-float 3s ease-in-out 0.8s infinite alternate;
}
@media (max-width: 800px) {
  #ice .ice-product_point .point_txt {
    width: 29.5454545455vw;
    max-width: none;
  }
}
#ice .ice-product_note {
  width: 31.25vw;
  max-width: 400px;
  margin: auto;
}
@media (max-width: 800px) {
  #ice .ice-product_note {
    width: 90.9090909091vw;
    max-width: none;
    margin: 0;
  }
}
#ice .ice-usage {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 3.75vw;
}
@media (min-width: 1280px) {
  #ice .ice-usage {
    margin-top: 48px;
  }
}
@media (max-width: 800px) {
  #ice .ice-usage {
    margin-top: 9.0909090909vw;
  }
}
#ice .ice-usage_heading {
  width: 28.125vw;
  max-width: 360px;
}
@media (max-width: 800px) {
  #ice .ice-usage_heading {
    width: 70vw;
    max-width: none;
  }
}
#ice .ice-usage_lead {
  width: 31.25vw;
  max-width: 400px;
  margin-top: 1.40625vw;
}
@media (min-width: 1280px) {
  #ice .ice-usage_lead {
    margin-top: 18px;
  }
}
@media (max-width: 800px) {
  #ice .ice-usage_lead {
    width: 90.6818181818vw;
    max-width: none;
    margin-top: 4.3181818182vw;
  }
}
#ice .ice-usage_example {
  width: 31.25vw;
  max-width: 400px;
  margin-top: 1.40625vw;
}
@media (min-width: 1280px) {
  #ice .ice-usage_example {
    margin-top: 18px;
  }
}
@media (max-width: 800px) {
  #ice .ice-usage_example {
    width: 90.6818181818vw;
    max-width: none;
    margin-top: 4.3181818182vw;
  }
}

#product {
  position: relative;
  z-index: 10;
  margin-top: -11.71875vw;
}
@media (min-width: 1280px) {
  #product {
    margin-top: -150px;
  }
}
@media (max-width: 800px) {
  #product {
    z-index: 9;
    margin-top: -22.7272727273vw;
  }
}
#product .inner-sct {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
#product .bg {
  position: relative;
  z-index: 0;
}
#product .ttl {
  position: absolute;
  top: 8.4375vw;
  right: 0;
  left: 0;
  width: 34.53125vw;
  margin: auto;
  z-index: 1;
}
@media (min-width: 1280px) {
  #product .ttl {
    top: 108px;
    width: 442px;
  }
}
@media (max-width: 800px) {
  #product .ttl {
    width: 65.6818181818vw;
    max-width: 289px;
    top: 19.3181818182vw;
  }
}
#product .btn-more {
  position: absolute;
  left: 0;
  top: 53.125vw;
  width: 100%;
  z-index: 2;
  transition: 0.3s ease;
}
@media (min-width: 1280px) {
  #product .btn-more {
    top: 680px;
  }
}
#product .btn-more .outer {
  width: 65%;
  max-width: 450px;
  margin: 0 auto;
  padding: 4px;
  background: #4aadda;
  border-radius: 10px;
  cursor: pointer;
}
#product .btn-more .outer div {
  position: relative;
  padding: 12px 0;
  border: solid 2px #fff;
  border-radius: 8px;
}
#product .btn-more .outer div:before, #product .btn-more .outer div:after {
  content: "";
  display: block;
  width: 3px;
  height: 20px;
  background: #fff;
  position: absolute;
  top: 50%;
  transition: 0.3s ease;
}
@media (max-width: 480px) {
  #product .btn-more .outer div:before, #product .btn-more .outer div:after {
    width: 2px;
    height: 12px;
  }
}
#product .btn-more .outer div:before {
  right: 20px;
  transform: translateY(-50%);
}
#product .btn-more .outer div:after {
  right: 20px;
  transform: translateY(-50%) rotate(90deg);
}
#product .btn-more .outer div p {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 480px) {
  #product .btn-more .outer div p {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  #product .btn-more .outer div {
    padding: 8px 0;
    border: solid 1px #fff;
    border-radius: 4px;
  }
}
#product .btn-more .outer:hover {
  opacity: 0.85;
}
@media (max-width: 480px) {
  #product .btn-more .outer {
    padding: 3px;
    border-radius: 6px;
  }
}
#product .btn-more.open {
  top: 61.328125vw;
}
#product .btn-more.open .outer div:before {
  transform: translateY(-50%) rotate(90deg);
}
@media (min-width: 1280px) {
  #product .btn-more.open {
    top: 785px;
  }
}
@media (max-width: 1024px) {
  #product .btn-more.open {
    top: 61vw;
  }
}
@media (max-width: 800px) {
  #product .btn-more.open {
    top: 124vw;
  }
}
@media (max-width: 480px) {
  #product .btn-more.open {
    top: 120vw;
  }
}
@media (max-width: 1024px) {
  #product .btn-more {
    top: 53vw;
  }
}
@media (max-width: 800px) {
  #product .btn-more {
    top: 124vw;
  }
}
@media (max-width: 480px) {
  #product .btn-more {
    top: 120vw;
  }
}
#product .hide-ctn {
  display: none;
}
#product .bloc,
#product .bloc-aside {
  background: linear-gradient(180deg, #E7F9FE 42.8%, #C3E4F6 100%);
}
#product .bloc .inner,
#product .bloc-aside .inner {
  position: relative;
}
#product .bloc .ctn,
#product .bloc-aside .ctn {
  display: flex;
  align-items: start;
  width: 100%;
  margin: 0 auto;
}
#product .bloc .item,
#product .bloc-aside .item {
  width: 28%;
}
#product .bloc .item figure,
#product .bloc-aside .item figure {
  text-align: center;
}
@media (max-width: 800px) {
  #product .bloc .item,
  #product .bloc-aside .item {
    margin-bottom: 12px;
  }
  #product .bloc .item,#product .bloc-aside .item {
    width: 35%;
}
  
}
#product .bloc .txt,
#product .bloc-aside .txt {
  width: 80%;
}
#product .bloc .txt h3,
#product .bloc-aside .txt h3 {
  padding-bottom: 8px;
  margin-bottom: 12px;
  color: #00a4da;
  font-weight: 700;
  text-shadow: 0 0 8px #fff, 0 0 8px #fff, 0 0 8px #fff, 0 0 8px #fff;
  border-bottom: solid 2px #fff;
}
#product .bloc .txt h3 span,
#product .bloc-aside .txt h3 span {
  display: block;
  letter-spacing: -0.15rem;
}
@media (max-width: 800px) {
  #product .bloc .txt h3,
  #product .bloc-aside .txt h3 {
    padding-bottom: 5px;
    margin-bottom: 7px;
    font-size: 5vw;
  }
  #product .bloc .txt h3 span,
  #product .bloc-aside .txt h3 span {
    font-size: 6vw;
  }
}
@media (max-width: 480px) {
  #product .bloc .txt h3,
  #product .bloc-aside .txt h3 {
    font-size: 20px;
  }
  #product .bloc .txt h3 span,
  #product .bloc-aside .txt h3 span {
    font-size: 23px;
  }
}
#product .bloc .txt p.price,
#product .bloc-aside .txt p.price {
  margin-bottom: 10px;
  color: #328DC5;
  font-size: 16px;
  font-weight: 700;
}
@media (max-width: 480px) {
  #product .bloc .txt p.price,
#product .bloc-aside .txt p.price {
  font-size: 12px;
}
}
#product .bloc .txt p.price span,
#product .bloc-aside .txt p.price span {
  font-size: 12px;
}
@media (max-width: 480px) {
  #product .bloc .txt p.price span,
#product .bloc-aside .txt p.price span {
  font-size: 9px;
}
}
#product .bloc .txt dl,
#product .bloc-aside .txt dl {
  display: table;
  width: 100%;
  margin-bottom: 10px;
}
#product .bloc .txt dl dt,
#product .bloc .txt dl dd,
#product .bloc-aside .txt dl dt,
#product .bloc-aside .txt dl dd {
  display: table-cell;
  vertical-align: middle;
}
@media (max-width: 800px) {
  #product .bloc .txt dl dt,
  #product .bloc .txt dl dd,
  #product .bloc-aside .txt dl dt,
  #product .bloc-aside .txt dl dd {
    display: inline-block;
  }
}
#product .bloc .txt dl dd,
#product .bloc-aside .txt dl dd {
  padding-left: 8px;
  color: #767676;
  font-size: 18px;
  font-weight: 700;
}
@media (max-width: 480px) {
  #product .bloc .txt dl dd,
  #product .bloc-aside .txt dl dd {
    font-size: 12px;
  }
}
@media (max-width: 800px) {
  #product .bloc .txt dl,
  #product .bloc-aside .txt dl {
    margin: 0 auto 10px;
  }
}
#product .bloc .txt .btn-cart,
#product .bloc-aside .txt .btn-cart {
  width: 100%;
  max-width: 260px;
  margin-bottom: 20px;
}
#product .bloc .txt .btn-cart span,
#product .bloc .txt .btn-cart a,
#product .bloc-aside .txt .btn-cart span,
#product .bloc-aside .txt .btn-cart a {
  display: block;
}
#product .bloc .txt .btn-cart span img,
#product .bloc .txt .btn-cart a img,
#product .bloc-aside .txt .btn-cart span img,
#product .bloc-aside .txt .btn-cart a img {
  width: 100%;
  height: auto;
  display: block;
}
#product .bloc .txt .btn-cart a:hover,
#product .bloc-aside .txt .btn-cart a:hover {
  opacity: 0.8;
}
@media (max-width: 800px) {
  #product .bloc .txt .btn-cart,
  #product .bloc-aside .txt .btn-cart {
    margin: 0 auto 20px;
  }
}
@media (max-width: 480px) {
  #product .bloc .txt .btn-cart,
  #product .bloc-aside .txt .btn-cart {
    max-width: 210px;
    margin: 0 auto 12px 0;
  }
}
@media (max-width: 800px) {
  #product .bloc .txt,
  #product .bloc-aside .txt {
    width: 60%;
    margin: 0 0 0 0;
  }
}
#product .bloc .note,
#product .bloc-aside .note {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  color: #767676;
}
#product .bloc .note ul,
#product .bloc-aside .note ul {
  margin: 0 auto;
}
#product .bloc .note ul li,
#product .bloc-aside .note ul li {
  font-size: 10px;
}
#product .bloc .bubble,
#product .bloc-aside .bubble {
  position: absolute;
  top: 0;
  height: 100%;
}
#product .bloc .bubble-L,
#product .bloc-aside .bubble-L {
  left: 5%;
  width: 120px;
  background: url("../img/bg/bubble-L.webp") no-repeat 50% 50%/100% auto;
}
@media (max-width: 800px) {
  #product .bloc .bubble-L,
  #product .bloc-aside .bubble-L {
    left: 0%;
  }
}
@media (max-width: 480px) {
  #product .bloc .bubble-L,
  #product .bloc-aside .bubble-L {
    width: 80px;
    background-size: 100px auto;
    background-position-x: 100%;
  }
}
#product .bloc .bubble-R,
#product .bloc-aside .bubble-R {
  right: 5%;
  width: 150px;
  background: url("../img/bg/bubble-R.webp") no-repeat 50% 50%/100% auto;
}
@media (max-width: 800px) {
  #product .bloc .bubble-R,
  #product .bloc-aside .bubble-R {
    right: 0%;
  }
}
@media (max-width: 480px) {
  #product .bloc .bubble-R,
  #product .bloc-aside .bubble-R {
    width: 100px;
    background-size: 120px auto;
    background-position-x: 0%;
  }
}
#product .bloc .inner {
  padding: 60px 0 30px;
}
@media (max-width: 480px) {
  #product .bloc .inner {
    padding: 40px 0 30px;
  }
}
#product .bloc .ctn {
  max-width: 720px;
}
#product .bloc .item figure {
  width: 13.375vw;
  max-width: 170px;
}
@media (max-width: 800px) {
  #product .bloc .item figure {
    width: 100%;
    max-width: 100%;
  }
}
#product .bloc .txt h3 {
  color: #64ABD6;
  font-size: 25px;
  line-height: 1.4;
}
@media (max-width: 480px) {
  #product .bloc .txt h3 {
    font-size: 16px;
  }
}
#product .bloc .txt h3 span {
  font-size: 33px;
}
@media (max-width: 480px) {
  #product .bloc .txt h3 span {
    font-size: 16px;
  }
}
#product .bloc .txt p.descript {
  margin-bottom: 15px;
  color: #767676;
  font-size: 15px;
  font-weight: 700;
}
#product .bloc .txt p.descript .sub {
  font-size: 10px;
}
@media (max-width: 480px) {
  #product .bloc .txt p.descript {
    font-size: 14px;
  }
}
#product .bloc .txt dl dt {
  width: 80px;
}
@media (max-width: 480px) {
  #product .bloc .txt dl dt {
    width: 50px;
  }
}
#product .bloc-aside .inner {
  padding: 30px 0;
}
@media (max-width: 480px) {
  #product .bloc-aside .inner {
    padding: 12px 0;
  }
}
#product .bloc-aside .ctn {
  max-width: 720px;
  padding: 40px 0;
}
@media (max-width: 480px) {
  #product .bloc-aside .ctn {
    padding: 20px 0;
  }
}
#product .bloc-aside .item figure img {
  max-width: 130px;
}
@media (max-width: 480px) {
  #product .bloc-aside .item figure img {
    max-width: 100%;
  }
}
#product .bloc-aside .txt h3 {
  font-size: 22px;
}
#product .bloc-aside .txt h3 span {
  font-size: 28px;
}
#product .bloc-aside .txt h3 br {
  display: none;
}
@media (max-width: 800px) {
  #product .bloc-aside .txt h3 br {
    display: block;
  }
}
@media (max-width: 800px) {
  #product .bloc-aside .txt h3 {
    font-size: 4vw;
  }
  #product .bloc-aside .txt h3 span {
    font-size: 5.6vw;
    line-height: 1.25;
  }
}
@media (max-width: 480px) {
  #product .bloc-aside .txt h3 {
    font-size: 16px;
  }
  #product .bloc-aside .txt h3 span {
    font-size: 18px;
  }
}
#product .bloc-aside .bubble {
  background: #eee;
}
#product .bloc-aside .bubble-L {
  background: url("../img/bg/bubble-L.webp") no-repeat 50% 80%/100% auto;
}
@media (max-width: 480px) {
  #product .bloc-aside .btn-cart {
    max-width: 210px;
  }
}

#shop {
  position: relative;
  z-index: 10;
  overflow: hidden;
  height: 58.90625vw;
  max-height: 754px;
}
@media (max-width: 800px) {
  #shop {
    height: 150.4545454545vw;
    max-height: none;
  }
}
#shop .shop-inner {
  background-image: url("../img/shop/bg.webp");
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: 100vw auto;
}
@media (min-width: 1280px) {
  #shop .shop-inner {
    background-size: 1280px auto;
  }
}
@media (max-width: 800px) {
  #shop .shop-inner {
    background-image: url("../img/shop/bg-sp.webp");
    background-size: 100% auto;
  }
}
#shop .shop-ctn {
  padding-top: 3.75vw;
}
@media (min-width: 1280px) {
  #shop .shop-ctn {
    padding-top: 48px;
  }
}
@media (max-width: 800px) {
  #shop .shop-ctn {
    padding-top: 14.5454545455vw;
  }
}
#shop .shop-heading {
  width: 22.265625vw;
  max-width: 285px;
}
@media (max-width: 800px) {
  #shop .shop-heading {
    width: 42.2727272727vw;
    max-width: none;
  }
}
#shop .shop-lead {
  width: 42.421875vw;
  max-width: 543px;
  margin-top: 1.5625vw;
}
@media (min-width: 1280px) {
  #shop .shop-lead {
    margin-top: 20px;
  }
}
@media (max-width: 800px) {
  #shop .shop-lead {
    width: 88.1818181818vw;
    max-width: none;
    margin-top: 5.4545454545vw;
  }
}
#shop .shop-note {
  width: 24.21875vw;
  max-width: 310px;
  margin-top: 1.25vw;
}
@media (min-width: 1280px) {
  #shop .shop-note {
    margin-top: 16px;
  }
}
@media (max-width: 800px) {
  #shop .shop-note {
    width: 70.4545454545vw;
    max-width: none;
    margin-top: 2.2727272727vw;
  }
}
#shop .shop-btn {
  position: absolute;
  bottom: 5vw;
  width: 25.78125vw;
  max-width: 330px;
}
@media (min-width: 1280px) {
  #shop .shop-btn {
    bottom: 64px;
  }
}
@media (max-width: 800px) {
  #shop .shop-btn {
    width: 40.6818181818vw;
    max-width: none;
    bottom: 10.9090909091vw;
  }
}
#shop .shop-btn img {
  opacity: 0.8;
}
#shop .shop-btn img:hover {
  opacity: 1;
}
