@charset "UTF-8";
/* CSS Document */

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow: auto;
  scroll-behavior: smooth;
  scroll-padding-top: 1.5em;
}

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

.onlyPc { display: block; }
.onlySmp { display: none; }


/*++++++++++++++++++++++++++++++++++++*/
/*                Hyojo               */
/*++++++++++++++++++++++++++++++++++++*/

.range {
  position: relative;
}

#column3_wrap {
  display: flex;
  align-items: stretch;
  position: relative;
  z-index: 1;
}


/* ==============================
   PC SIDE COLUMN
============================== */

#side_left,
#side_right {
  position: relative !important;
  top: auto !important;
  bottom: auto !important;

  flex: 0 0 calc((100vw - min(51.928vw, 727px)) / 2 - .5em);
  width: calc((100vw - min(51.928vw, 727px)) / 2 - .5em);

  height: auto !important;
  min-height: 100%;

  align-self: stretch;

  background-color: #77C3F4;
  z-index: 10;
}


/*
  HTML上の
  class="follow js-fix"
  はそのまま残す。

  既存JSが .js-fixed を付けても、
  このページでは position を変えない。
*/
#side_left.follow,
#side_right.follow,
#side_left.follow.js-fixed,
#side_right.follow.js-fixed {
  position: relative !important;
  top: auto !important;
  bottom: auto !important;
  left: auto;
  right: auto;
  height: auto !important;
}


/* ------------------------------
   LEFT SIDE
------------------------------ */

#side_left {
  background-color: #77C3F4;
}

.side_left_inner {
  position: sticky;
  position: -webkit-sticky;
  top: 0;

  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;

  width: 100%;
  height: 100vh;
}

.side_left_inner > img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 100vh;
  object-fit: contain;
      margin-bottom: 30vh;
}


/* ------------------------------
   RIGHT SIDE
------------------------------ */

#side_right {
  padding-top: 0;
  background-color: #77C3F4;
}

.side_right_inner {
  position: sticky;
  position: -webkit-sticky;
  top: 0;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  width: 100%;
/*  height: 100vh;*/
}

.side_right_inner #menu_pc_wrap {
  width: 100%;
}


/* ==============================
   CENTER
============================== */

#center {
  position: relative;
  flex: 0 0 min(51.928vw, 727px);
  width: min(51.928vw, 727px);
  margin: 0 auto;
  background: #2badd5;
  z-index: 50;
}

#center::before,
#center::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: min(2.571vw,36px);
  filter: blur(min(1.071vw,15px));
  z-index: -10;
  mix-blend-mode: multiply;
}

#center::before {
  border-left: 4px solid #2badd5;
}

#center::after {
  border-right: 4px solid #2badd5;
}

@media screen and (min-width: 641px) {

  html,
  body,
  #allWrap,
  .range,
  #column3_wrap {
    overflow: visible !important;
  }

  .side_left_inner,
  .side_right_inner {
    position: sticky !important;
    top: 0 !important;
    height: 100vh;
  }

}
/* ==============================
   FOLLOW
============================== */

/*
  他ページ用のクラス名としてHTMLには残すが、
  このページでは左右ID側の指定が優先される。
*/

.follow {
  position: absolute;
  bottom: 0;
}

.follow.js-fixed {
  position: fixed;
  bottom: 0;
}


/* ==============================
   BACKGROUND
============================== */

.grad-wrapper {
  position: absolute;
  opacity: 3;
  inset: 0;
  background: linear-gradient(
    to right,
    rgb(244, 217, 228) 0%,
    rgb(220, 241, 249) 100%
  );
  background-attachment: fixed;
  animation: 20s ease 10s infinite alternate none running bgColors;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

@keyframes bgColors {
  from {
    filter: hue-rotate(0deg);
  }
  to {
    filter: hue-rotate(360deg);
  }
}

@keyframes bggradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.grad-wh-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, .7) 0%,
    rgba(255, 255, 255, .3) 50%,
    rgba(255, 255, 255, 0) 100%
  );

  pointer-events: none;
  z-index: -1;
}

.grad-wh-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  background: url("../img/bg_heart.png");
  background-repeat: repeat;
  background-position: top center;
  background-size: 4.2%;
}


/* ==============================
   INFINITY SCROLL
============================== */

.scroll-infinity {
  position: absolute;
  top: 0;
  width: 100vw;
  height: 100vh;
  opacity: .5;
  z-index: 5;
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.scroll_wrap {
  position: absolute;
  display: flex;
  width: 100%;
  margin-bottom: min(10.71vw,150px);
  overflow: hidden;
  opacity: .5;
  z-index: 5;
}

.scroll_list {
  display: flex;
  list-style: none;
  padding: 0 10vw 0 0;
  gap: 10vw;
  animation: infinity-scroll-left 80s infinite linear 0.5s both;
}

.scroll_item {
  width: calc(100vw / 1.7);
}

.scroll_item > img {
  width: 100%;
}


/* ==============================
   MAIN
============================== */

main {
  padding-bottom: 0;
  background: #2badd5;
}

section {
  position: relative;
  margin: 0 auto;
}

#top_img {
  padding-top: 10px;
}


/*++++++++++++++++++++++++++++++++++++*/
/*             NAVIGATION             */
/*++++++++++++++++++++++++++++++++++++*/

#hum_menu {
  display: none;
}

#navArea {
  display: flex;
  width: calc(100% - 200px);
  justify-content: space-between;
}

#menu_pc_wrap,
#menu_wrap {
  width: 100%;
  z-index: 3;
}

#menu_pc_scroll,
#menu_scroll {
  text-align: center;
}

/*
  ここは sticky にしない。
  sticky は .side_right_inner 側で行う。
*/
#menu_pc_scroll {
  position: static;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  width: 100%;
  height: 100%;
  min-height: 0;

  margin-top: 0;
  text-align: center;
}

#menu_pc_wrap ul,
#menu_wrap ul {
  width: 80%;
  margin: 0 auto;
  list-style: none;
}

#menu_pc_wrap ul {
  width: min(12.771vw, 178.8px);
  flex-shrink: 0;
}

#menu_pc_wrap ul li,
#menu_wrap ul li {
  position: relative;
  margin: 0;
}

#menu_pc_wrap ul li.child,
#menu_wrap ul li.child {
  margin: .2em 0;
}

#menu_pc_wrap ul li + li {
  margin-top: min(1.642vw,23px);
}

#menu_pc_wrap ul li:not([class]) + li.child {
  margin-top: -.5em;
}

#menu_pc_wrap ul li a,
#menu_wrap ul li a {
  position: relative;
  display: block;
  width: 100%;
  text-decoration: none;
  transition-duration: 0.2s;
}

#menu_pc_wrap ul li:not([class]) a:hover {
  opacity: .5;
}

#menu_pc_wrap ul li.child a,
#menu_wrap ul li.child a {
  color: #fff;
  border: none;
}

#menu_pc_wrap ul li.child a:hover {
  background: none;
  border: none;
  opacity: .5;
}

#menu_pc_wrap ul li.btn_external {
  margin: .8em 0 1.1em;
}

#menu_pc_wrap ul li.btn_external a {
  position: relative;
  width: 80%;
  margin: 0 auto;
  padding-right: 1em;

  background-image: linear-gradient(170deg, #d9ddda, #64c3de 100%);

  border: none;
  font-size: min(1.285vw, 16px);
  color: #fff;
  transition: all 0.5s ease 0s;
}

#menu_pc_wrap ul li.btn_external a::before {
  content: '';
  width: 0;
  height: 0;

  border-style: solid;
  border-width:
    min(.357vw,5px)
    0
    min(.357vw,5px)
    min(.5vw,5px);

  border-color:
    transparent
    transparent
    transparent
    #fff;

  position: absolute;
  top: 0;
  right: .8em;
  bottom: 0;
  margin: auto;
}

#menu_pc_wrap ul li.btn_external span {
  font-size: 90%;
}

#menu_pc_wrap ul li.btn_external a:hover {
  background: rgb(255,255,255,.5);
  color: #64c3de;
}

#menu_pc_wrap ul li.btn_external a:hover::before {
  border-color:
    transparent
    transparent
    transparent
    #64c3de;
}


/* ==============================
   LOGO / DOLL
============================== */

.pladoll_main,
.logo_heartcapsule {
  position: relative;
  margin: 0 auto;
}

.pladoll_main img,
.logo_heartcapsule img {
  position: absolute;
}

.pladoll_main {
  width: min(90%,400px);
  height: min(37.14vw,520px);
  margin-bottom: min(4.28vw, 60px);
}

.pladoll_main a {
  position: absolute;
  display: block;
  width: min(17.85vw, 250px);
  height: min(14.42vw, 202px);
}

.doll_mm {
  bottom: min(11.42vw,160px);
  right: 0;
  animation: floating-mm 3s ease-in-out infinite alternate-reverse;
  animation-delay: .5s;
}

@keyframes floating-mm {
  0% {
    transform: translateY(-2%);
  }
  100% {
    transform: translateY(2%);
  }
}

.doll_kr {
  bottom: min(6.78vw,95px);
  left: -3%;
  animation: floating-kr 2.8s ease-in-out infinite alternate-reverse;
  animation-delay: .3s;
}

@keyframes floating-kr {
  0% {
    transform: translateY(-1.8%);
  }
  100% {
    transform: translateY(1.8%);
  }
}

.doll_hk {
  bottom: 0;
  right: 16%;
  animation: floating-hk 2.2s ease-in-out infinite alternate-reverse;
}

@keyframes floating-hk {
  0% {
    transform: translateY(-2%);
  }
  100% {
    transform: translateY(2%);
  }
}

.doll_cr {
  bottom: min(20.71vw,290px);
  left: 23%;
  animation: floating-cr 2.5s ease-in-out infinite alternate-reverse;
  animation-delay: 1.2s;
}

@keyframes floating-cr {
  0% {
    transform: translateY(-1.5%);
  }
  100% {
    transform: translateY(1.5%);
  }
}

.logo_heartcapsule {
  width: min(17.142vw,240px);
  height: min(10.92vw,153px);
    margin-bottom: -40vh;
}

.logo_heartcapsule img {
  width: 100%;
  height: auto;
}

@keyframes floating-logo {
  0% {
    transform: translateY(-3.5%);
  }
  100% {
    transform: translateY(3.5%);
  }
}

.pkg_mm {
  left: 0;
  top: min(.71vw, 10px);
  animation: floating-s-mm 1.6s ease-in-out infinite alternate-reverse;
}

@keyframes floating-s-mm {
  0% {
    transform: translateY(-.5%);
  }
  100% {
    transform: translateY(.5%);
  }
}

.pkg_kr {
  left: 25.8%;
  animation: floating-s-kr 1.3s ease-in-out infinite alternate-reverse;
}

@keyframes floating-s-kr {
  0% {
    transform: translateY(-.1%);
  }
  100% {
    transform: translateY(.1%);
  }
}

.pkg_hk {
  right: 25.8%;
  top: min(.71vw, 10px);
  animation: floating-s-hk 1.6s ease-in-out infinite alternate-reverse;
}

@keyframes floating-s-hk {
  0% {
    transform: translateY(-.4%);
  }
  100% {
    transform: translateY(.4%);
  }
}

.pkg_cr {
  right: 0;
  top: min(.35vw, 5px);
  animation: floating-s-cr 1.8s ease-in-out infinite alternate-reverse;
}

@keyframes floating-s-cr {
  0% {
    transform: translateY(-.2%);
  }
  100% {
    transform: translateY(.2%);
  }
}


/* ------------ PHOTO GALLERY ------------ */

.slider-wrapper {
  display: flex;
  gap: min(2.5vw,30px);
  background: #ffef00;
  padding: min(1.916vw,23px) 0;
  overflow: hidden;
}

.slider {
  display: flex;
  gap: min(2.5vw,30px);
  list-style: none;
  animation: scroll-left 20s infinite linear .5s both;
}

.emo .slider {
  animation: scroll-right 20s infinite linear .5s both;
}

.slide {
  width: min(26vw, 312px);
  height: auto;
}

.slide img {
  display: block;
  width: auto;
  height: 100%;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes scroll-right {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

.and_more {
  margin: min(3.55vw,42.6px) 0 0;
  padding: min(4.6525vw,55.83px) 0 0;

  background: url("../img/bg_photo.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
}

.btn_area {
  display: flex;
  flex-wrap: wrap;
  gap: min(1.25vw,15px) min(1.166vw,14px);
  width: 86.08%;
  margin: 0 auto;
}

.btn_area a {
  display: block;
  width: min(17.958vw,215.5px);
}

.btn_area li {
  display: block;
  width: min(13.958vw,215.5px);
}


/* ------------ LINE UP ------------ */

#line_up {
  position: relative;
  padding: min(21.7916vw,261.5px) 0 min(16.5vw,198px);

  background: url("../img/bg_square.png");
  background-repeat: repeat;
  background-position: top center;
  background-size: 1.5%;

  clip-path: polygon(
    0 .383%,
    100% 0,
    100% 100%,
    0 99.61%
  );
}

.ttl_lineup {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  margin: auto;
}

.bg_bottom {
  position: absolute;
  bottom: min(-.3333vw,-4px);
  left: 0;
  right: 0;
  margin: auto;
}

.line_up_blk {
  position: relative;
  width: 78%;
  margin: 0 auto;

  border-right: min(.2916vw,3.5px) solid #000;
  border-bottom: min(.2916vw,3.5px) solid #000;
}

.line_up_blk::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  background-color: rgba(217, 235, 242, 1);
  mix-blend-mode: multiply;
  z-index: -1;
}

.line_up_blk.yellow::before {
  background-color: rgba(255, 252, 228, 1);
}

.line_up_blk.red::before {
  background-color: rgba(244, 226, 213, 1);
}

.line_up_blk + .line_up_blk {
  margin-top: min(6.5vw,78px);
}

.peeps > img:first-of-type {
  display: block;
  margin-top: min(-2.583vw,-31px);
}

.icee > img:first-of-type {
  display: block;
  margin-top: min(-1.9166vw,-23px);
}

.breyers > img:first-of-type {
  display: block;
  margin-top: min(-3.8333vw,-46px);
}

.star {
  position: absolute;
  max-width: none;
  width: min(65.5vw, 786px);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.krispy .star {
  bottom: min(-5.4166vw,-65px);
}

.peeps .star {
  bottom: min(-7.333vw,88px);
}

.icee .star {
  bottom: min(-6.5vw,-78px);
}

.breyers .star {
  bottom: 0;
  top: min(26.333vw, 316px);
}

.kisses .star.first {
  bottom: 0;
  top: min(-3.333vw,-40px);
}

.kisses .star.second {
  bottom: min(-6.666vw,-80px);
}

.order_wrap {
  width: 95%;
  margin: 0 auto;
  padding: 0 0 min(3.333vw, 40px);
  background: #fff;
  border-radius: 1.3em;
}

.order_wrap p:not([class]) {
  padding-bottom: min(3.333vw, 40px);
  padding-top: min(3.75vw, 45px);
  font-size: min(2.083vw,25px);
  text-align: center;
  font-weight: 600;
}

.order_wrap ul {
  display: flex;
  flex-wrap: wrap;
  gap: min(1.25vw,15px) 2.5%;
  width: 94%;
  margin: 0 auto;
  padding: 0;
}

.order_wrap ul li {
  display: flex;
  width: 48%;
  min-height: min(9.383vw, 137px);
  list-style: none;
}

.order_wrap ul li a {
  display: flex;
  align-items: center;
  padding: min(.6849vw,10px) 1.2em;

  border-radius: 1rem;
  text-decoration: none;
  background: #ffb11b;

  text-align: center;
  vertical-align: center;
  box-sizing: border-box;
}

.order_wrap ul li a img {
  width: 90%;
  display: block;
  margin: 0 auto;
}

.copyAmazon {
  width: 90%;
  margin: 2em auto 0 !important;
  font-size: 80%;
  line-height: 1.3;
}


/* ------------ NEXT ------------ */

#next {
  position: relative;
}

#next::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;

  margin: auto;
  width: 99.9%;
  height: 2px;

  background: #fff;
}


/*++++++++++++++++++++++++++++++++++++*/
/*              MOBILE                */
/*++++++++++++++++++++++++++++++++++++*/

@media screen and (max-width:640px) {

  .onlyPc {
    display: none;
  }

  .onlySmp {
    display: block;
  }

  main {
    padding: 0;
  }

  section {
    width: 100%;
  }

  #side_left,
  .scroll_wrap,
  #header::before {
    display: none !important;
  }

  #column3_wrap {
    display: block;
  }

  #side_left,
  #side_right {
    display: none;
  }

  #center {
    width: 100%;
    flex: none;
  }

  #center::before,
  #center::after {
    display: none;
  }


  /* ======================
           Container
  ======================= */


  #hum_menu {
    display: block;
  }

  #menu_wrap {
    position: fixed;
    opacity: 0;

    top: 0;
    width: 100%;
    height: 100vh;

    background: linear-gradient(
      45deg,
      #dcf1f9,
      #f4d9e4,
      #ffecf3,
      #dcf1f9
    );

    transition: all 0.3s;
    z-index: -1;
  }

  #menu_wrap.panelopen {
    display: block;
    opacity: 1;
    z-index: 999;
  }

  #menu_wrap.panelopen #menu_scroll {
    position: fixed;
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 999;
  }


  /* ======================
              Nav
  ======================= */

  #menu_wrap ul {
    display: none;
    position: absolute;

    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);

    z-index: 999;
  }

  #menu_wrap.panelopen ul {
    display: block;
    width: 60%;
  }

  #menu_wrap ul li {
    list-style: none;
    text-align: center;
    margin: 2em 0;
  }

  #menu_wrap ul li.child {
    margin: .8em 0;
  }

  #menu_wrap ul li.logo_heartcapsule_sp img {
    width: 95%;
    margin: 0 auto;
  }

  #menu_wrap ul li a {
    color: #9a85bd;
    font-size: 5.2vw;
    letter-spacing: 0.1em;
    text-decoration: none;
  }

  #menu_wrap ul li.child a {
    font-size: 4.7vw;
  }

  #menu_wrap ul li.btn_external {
    margin: 1.1em 0;
  }

  #menu_wrap ul li.btn_external a {
    position: relative;
    width: 80%;
    margin: 0 auto;
    padding: .7em 0;

    background-image: linear-gradient(
      170deg,
      #d9ddda,
      #64c3de 100%
    );

    border: none;
    font-size: 4.5vw;
    color: #fff;
  }

  #menu_wrap ul li.btn_external a::before {
    content: '';

    width: 0;
    height: 0;

    border-style: solid;
    border-width: 1.4vw 0 1.4vw 1.4vw;
    border-color:
      transparent
      transparent
      transparent
      #fff;

    position: absolute;
    top: 0;
    right: .8em;
    bottom: 0;

    margin: auto;
  }

  #menu_wrap ul li.btn_external span {
    font-size: 90%;
  }


  /* ======================
            Button
  ======================= */

  .toggle_btn {
    position: fixed;
    top: 3vw;
    right: 3vw;

    width: min(15vw,75px);
    height: min(15vw,75px);

    background: #fff;
    border-radius: 50%;

    text-align: center;
    cursor: pointer;

    z-index: -1;
    opacity: 0;

    transition: all 0.3s;
  }

  .toggle_btn.hoge_fixed {
    z-index: 9999;
    opacity: 1;
  }

  .toggle_btn.open {
    background: #f79fc0;
  }

  .toggle_btn span {
    display: inline-block;
    position: absolute;

    left: 0;
    right: 0;
    top: 0;
    bottom: 0;

    margin: auto;

    width: 60%;
    height: min(1.2vw, 6px);

    background: #f79fc0;
    border-radius: 2vw;

    transition: all .4s;
  }

  .toggle_btn span:nth-of-type(1) {
    bottom: 40%;
  }

  .toggle_btn span:nth-of-type(3) {
    top: 40%;
  }

  .toggle_btn.open span {
    background: #fff;
  }

  .toggle_btn.open span:nth-of-type(1) {
    width: 65%;
    bottom: 0;
    transform: translateY(0) rotate(-45deg);
  }

  .toggle_btn.open span:nth-of-type(2) {
    opacity: 0;
  }

  .toggle_btn.open span:nth-of-type(3) {
    width: 65%;
    top: 0;
    transform: translateY(0) rotate(45deg);
  }


  /* ------------ PHOTO GALLERY ------------ */

  .slider-wrapper {
    gap: 3.4096vw;
    padding: 3.4096vw 0;
  }

  .slider {
    gap: 3.4096vw;
  }

  .and_more {
    margin: 5.8vw 0 0;
    padding: 7.472vw 0 0;
  }

  .btn_area {
    gap: 1.8vw 1.904vw;
  }

  .btn_area a {
    width: 27.4244vw;
  }

  .btn_area li {
    width: 27.4244vw;
  }

  #line_up {
    padding: 33.46vw 0 25.44vw;

    clip-path: polygon(
      0 .38%,
      100% 0,
      100% 100%,
      0 99.6%
    );
  }

  .line_up_blk + .line_up_blk {
    margin-top: 9.16vw;
  }

  .ttl_lineup {
    top: -.13em;
  }

  .bg_bottom {
    bottom: -.13em;
  }

  .peeps > img:first-of-type {
    margin-top: -3.5vw;
  }

  .icee > img:first-of-type {
    margin-top: -2.8vw;
  }

  .breyers > img:first-of-type {
    margin-top: -6vw;
  }

  .star {
    width: 100vw;
  }

  .krispy .star {
    bottom: -8vw;
  }

  .peeps .star {
    bottom: -10.5vw;
  }

  .icee .star {
    bottom: -10vw;
  }

  .breyers .star {
    top: 35vw;
  }

  .kisses .star.first {
    top: -5vw;
  }

  .kisses .star.second {
    bottom: -10vw;
  }

  .order_wrap {
    border-radius: .8em;
  }

  .order_wrap p:not([class]) {
    padding-bottom: 5vw;
    padding-top: 5vw;
    font-size: 4vw;
  }

  .order_wrap ul {
    gap: 1.5vw 2.5%;
  }

  .order_wrap ul li a {
    min-height: 17vw;
    padding: .5em 1.2em;
    border-radius: .7em;
  }

  .copyAmazon {
    margin: 3vw auto !important;
    font-size: .4em;
  }
}