@charset "UTF-8";

:root {
  --color-black: #1F1F1F;
  --color-white: #ffffff;
  --color-gray: #A09898;
  --color-yellow: #FFD900;
  --color-yellow2: #F2D10E;
  --max-width: 390px;
  --font-indivisible: "indivisible-variable", sans-serif;
  --font-dnp-shuei: "dnp-shuei-gothic-kin-std", sans-serif;
  --font-notosans: "Noto Sans JP", sans-serif;
  --font-sofia: "sofia-pro", sans-serif;
}

html {
  font-size: clamp(0.1rem,calc(100vw * 11 / 390),11px);
}
body {
  font-family: var(--font-dnp-shuei);
  font-weight: 400;
  line-height: 1.6;
  background: var(--color-yellow2);
  color: var(--color-black);
}

* {
  box-sizing: border-box;
}
img {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
figure {
  margin: 0;
}
h1 {
  margin: 0;
}
h2 {
  margin: 0;
}
h3 {
  margin: 0;
}
p {
  font-size: clamp(0.1rem,calc(100vw * 11 / 390),11px);
  line-height: 1.9;
  margin: 0;
}
ul, ul li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.js-fade {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.js-fade-2 {
  opacity: 0;
  transition: opacity 0.3s ease 0.2s;
}
.js-fade.is-active,
.js-fade-2.is-active {
  opacity: 1;
}


body > div.wrapper {
  position: relative;
  margin-inline: auto;
}

body > div.wrapper.changing::after {
  opacity: 1;
}

body .wrapper .content {
  position: relative;
  max-width: var(--max-width);
  margin-inline: auto;
  background-color: var(--color-yellow);
  overflow: clip;
}


/* ===============================================
# BUYボタン
=============================================== */
.buy-btn {
  position: absolute;
  bottom: calc(-23/11*1rem);
  left: 0;
  display: block;
  width: fit-content;
  min-width: calc(65/11*1rem);
  padding: calc(2/11*1rem) calc(10/11*1rem);
  font-family: var(--font-indivisible);
  font-size: calc(11/11*1rem);
  font-weight: 700;
  text-align: center;
  background-color: var(--color-black);
  border: 0.5px solid var(--color-black);
  color: var(--color-white);
  border-radius: 100vmax;
  text-decoration: none;
  transition: color 0.3s ease, background 0.3s ease;
  animation: poyopoyo 2s ease-out infinite;
}
@media (any-hover: hover) {
  .buy-btn:hover {
    background-color: var(--color-white);
    color: var(--color-black);
  }
}

/* ===============================================
# header
=============================================== */
.header {
  position: relative;
  z-index: 1;
  overflow-x: clip;
}
.header-inner {
  position: relative;
  width: 100%;
  min-height: calc(732/11*1rem);
}
.header h1 {
  position: absolute;
  top: calc(657/11*1rem);
  right: calc(13/11*1rem);
  width: calc(140/11*1rem);
  z-index: 10;
  transform: rotate(90deg);
  transform-origin: right top;
}
.header h3 {
  position: absolute;
  top: calc(710/11*1rem);
  right: calc(22/11*1rem);
  width: calc(40/11*1rem);
  z-index: 10;
  transform: rotate(90deg);
  transform-origin: right top;
}
.header h2 {
  position: absolute;
  bottom: calc(16/11*1rem);
  left: calc(15/11*1rem);
  width: calc(13/11*1rem);
  z-index: 10;
}

.header-volume {
  position: absolute;
  bottom: calc(16/11*1rem);
  right: calc(22/11*1rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(8/11*1rem);
  font-family: var(--font-indivisible);
  font-size: calc(12/11*1rem);
  font-weight: 500;
  writing-mode: vertical-lr;
  color: var(--color-yellow);
  z-index: 10;
}
.header-volume::after {
  content: "";
  display: block;
  width: 1px;
  height: calc(25/11*1rem);
  background-color: var(--color-yellow);
}
.header-en {
  position: absolute;
  top: calc(245/11*1rem);
  left: 50%;
  transform: translateX(-50%);
  width: calc(400/11*1rem);
  z-index: 10;
  opacity: 0;
  transition: opacity 0.5s ease 0.6s;
}
.header-en.is-active {
  opacity: 1;
}
.header-en-text {
  position: absolute;
  top: calc(16/11*1rem);
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-indivisible);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--color-yellow);
}

/* フリップカードのベース設定 */
.header-images {
  position: relative;
  width: 100%;
  perspective: 1000px;
}

.header-image-flip {
  position: relative;
  width: 100%;
  height: calc(143/11*1rem);
  transform-style: preserve-3d;
  transition: transform 0.8s;
}

.header-image-front,
.header-image-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.header-image-back {
  transform: rotateY(180deg);
}

/* フリップアニメーション用クラス */
.flip {
  transform: rotateY(180deg);
}



/* ===============================================
# headline
=============================================== */
.content-wrap {
  position: relative;
  z-index: 2;
}
.headline {
  position: relative;
  padding: calc(45/11*1rem) calc(30/11*1rem) calc(32/11*1rem);
  z-index: 2;
}
.headline_copy {
  font-family: var(--font-dnp-shuei);
  font-size: calc(19/11*1rem);
  font-weight: 700;
  line-height: 2;
  text-align: center;
}
.headline_text {
  margin-top: calc(15/11*1rem);
  font-family: var(--font-dnp-shuei);
  font-size: calc(12/11*1rem);
  font-weight: 400;
  line-height: calc(20/11);
  letter-spacing: -0.03em;
  text-align: center;
}

/* ===============================================
# product
=============================================== */
section.product {
  position: relative;
  margin-top: calc(35/11*1rem);
  padding-top: calc(48/11*1rem);
  overflow-x: clip;
  z-index: 1;
}
section.product.style1 {
  padding-top: calc(80/11*1rem);
}
section.product.style2,
section.product.style4,
section.product.style6 {
  margin-top: calc(80/11*1rem);
  padding-top: calc(80/11*1rem);
  padding-bottom: calc(50/11*1rem);
  background-color: var(--color-white);
}
.style-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(430/11*1rem);
  max-width: none;
  z-index: -1;
}
.style2 .style-bg,
.style4 .style-bg,
.style6 .style-bg {
  top: calc(305/11*1rem);
}
.style-head {
  position: absolute;
  top: calc(-43/11*1rem);
  left: calc(-20/11*1rem);
  width: calc(181/11*1rem);
  z-index: 10;
}
.style2 .style-head,
.style4 .style-head,
.style6 .style-head {
  top: calc(-35/11*1rem);
}
.style3 .style-head,
.style5 .style-head {
  left: auto;
  right: calc(-20/11*1rem);
}
.style-title {
  position: absolute;
  top: calc(140/11*1rem);
  right: calc(-14/11*1rem);
  width: calc(60/11*1rem);
  z-index: 10;
}
.style2 .style-title,
.style4 .style-title,
.style6 .style-title {
  top: calc(-19/11*1rem);
}
.style3 .style-title,
.style5 .style-title {
  top: calc(96/11*1rem);
  right: auto;
  left: calc(-14/11*1rem);
}
.item_slide-inner {
  position: relative;
}
.style-slide-wrapper {
  position: relative;
  width: 100%;
  max-width: calc(335/11*1rem);
  margin-inline: auto;
}
.style-slide {
  margin: 0 auto;
}
.product-info-wrap {
  position: relative;
  margin-top: calc(22/11*1rem);
}

.product-info {
  position: relative;
  margin-inline: auto;
  font-family: var(--font-dnp-shuei);
  z-index: 2;
}
.product-info-text {
  margin: calc(30/11*1rem) auto calc(30/11*1rem);
  font-size: calc(13/11*1rem);
  letter-spacing: -0.03em;
  text-align: center;
}
.product-info-ph {
  position: relative;
  text-align: center;
}
.product-info-ph img {
  max-width: calc(306/11*1rem);
}
.product-info-ph-text {
  position: absolute;
  display: inline-block;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.product-info-ph-text span {
  display: block;
  width: fit-content;
  padding: calc(2/11*1rem) calc(8/11*1rem);
  font-family: var(--font-notosans);
  font-size: calc(11/11*1rem);
  font-weight: 700;
  letter-spacing: -0.1em;
  line-height: 1;
  color: var(--color-black);
  border: 1px solid var(--color-black);
  background-color: var(--color-white);
}
.product-info-ph-text span + span {
  margin: calc(2/11*1rem) 0 0;
}
.product-info-ph-text.text01 {
  top: calc(166/11*1rem);
  left: calc(19/11*1rem);
}
.product-info-ph-text.text01-02 {
  top: calc(277/11*1rem);
  left: calc(73/11*1rem);
}
.product-info-ph-text.text02 {
  top: calc(207/11*1rem);
  right: calc(22/11*1rem);
}
.product-info-ph-text.text03 {
  top: calc(200/11*1rem);
  left: calc(18/11*1rem);
}
.product-info-ph-text.text04 {
  top: calc(123/11*1rem);
  right: calc(11/11*1rem);
}
.product-info-ph-text.text05 {
  top: calc(136/11*1rem);
  left: calc(106/11*1rem);
}
.product-info-ph-text.text06 {
  top: calc(127/11*1rem);
  left: calc(210/11*1rem);
}

.product-info-ph-text .buy-btn {
  bottom: calc(-28/11*1rem);
  left: 0;
}

.product-info-ph-text::after {
  content: "";
  position: absolute;
  bottom: calc(-28/11*1rem);
  left: calc(20/11*1rem);
  width: 1px;
  background-color: var(--color-black);
  z-index: -1;
  height: 0;
  transform-origin: bottom;
  transition: height 0.5s ease;
  --line-height: calc(32/11*1rem);
  transform: rotate(-45deg) translateY(100%);
}
.product-info-ph-text.text01::after {
  bottom: calc(20/11*1rem);
  left: auto;
  right: calc(0/11*1rem);
  --line-height: calc(20/11*1rem);
}
.product-info-ph-text.text01-02::after {
  bottom: calc(30/11*1rem);
  left: auto;
  right: calc(0/11*1rem);
  --line-height: calc(20/11*1rem);
  transform: rotate(-110deg) translateY(100%);
}
.product-info-ph-text.text02::after {
  left: calc(10/11*1rem);
  transform: rotate(45deg) translateY(100%);
}
.product-info-ph-text.text03::after {
  bottom: calc(20/11*1rem);
  left: auto;
  right: calc(45/11*1rem);
}
.product-info-ph-text.text04::after {
  left: calc(10/11*1rem);
  --line-height: calc(24/11*1rem);
  transform: rotate(45deg) translateY(100%);
}
.product-info-ph-text.text05::after {
  left: calc(50/11*1rem);
  --line-height: calc(20/11*1rem);
}
.product-info-ph-text.text06::after {
  left: calc(10/11*1rem);
  transform: rotate(45deg) translateY(100%);
}
.product-info-ph-text.is-active::after {
  animation: line-animation 0.5s ease forwards;
  animation-delay: 0.5s;
}
.product-info-ph-text.is-active {
  opacity: 1;
  animation: bounce 0.5s ease-out;
}


/* ===============================================
# store
=============================================== */
.store {
  position: relative;
  padding: calc(40/11*1rem);
  text-align: center;
  background-color: #fff;
}
.store img {
  width: calc(162/11*1rem);
  height: auto;
}

/* ===============================================
# footer
=============================================== */
footer {
  position: relative;
  padding: 2em 0;
  background-color: #fff;
}
footer ul.sns {
  display:flex;
  justify-content: center;
  margin: 1em auto;
  list-style-type: none;
}
footer ul.sns li {
  width: 1.5em;
  margin: 1em;
}
footer ul.sns li a {
  display: block;
}
footer small {
  text-align:center;
  display: block;
  color: var(--color-black);
}

/* ===============================================
# pc-contents
=============================================== */
.pc-contents {
  position: fixed;
  top: 0;
  left: 0;
  width: calc((100% - 390px) / 2);
  height: 100dvh;
  overflow: hidden;
}
@media (max-width: 1139px) {
  .pc-contents {
    display: none;
  }
}
.pc-contents-wrap {
  width: 100%;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: calc(130/11*1rem);
  padding-bottom: calc(70/11*1rem);
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.pc-contents-wrap::-webkit-scrollbar {
  display: none;
}
.pc-contents-inner {
  position: relative;
  text-align: center;
  z-index: 1;
}
.pc-contents-title {
  width: calc(600/11*1rem);
  max-width: none;
}
.pc-contents-logo {
  width: calc(216/11*1rem);
  margin: calc(20/11*1rem) auto 0;
}
.pc-contents-list {
  width: calc(330/11*1rem);
  margin: calc(-30/11*1rem) auto 0;
}

/* ===============================================
# scroll
=============================================== */
.scroll {
  position: fixed;
  top: 0;
  right: 0;
  width: calc((100% - 390px) / 2);
  height: 100dvh;
}
@media (max-width: 1139px) {
  .scroll {
    display: none;
  }
}
.scroll_inner {
  position: absolute;
  top: 50%;
  left: calc(75/11*1rem);
  transform: translateY(-50%);
  width: calc(14/11*1rem);
}
.scroll_circle {
  position: absolute;
  top: 0;
  left: 50%;
  display: inline-block;
  width: calc(15/11*1rem);
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: var(--color-gray);
  transform: translateX(-50%);
}


/* ===============================================
# アニメーション
=============================================== */
@keyframes shake {
  0% {
    rotate: 0deg;
  }
  5% {
    rotate: 3deg;
  }
  10% {
    rotate: -3deg;
  }
  15% {
    rotate: 0deg;
  }
  100% {
    rotate: 0deg;
  } 
}
@keyframes line-animation {
  0% {
    height: 0;
  }
  100% {
    height: var(--line-height);
  }
}
@keyframes bounce {
  0% {
      transform: scale(1);
  }

  25% {
      transform: scale(1.1);
      animation-timing-function: ease-in;
  }

  100% {
    transform: scale(1);
  }
}
@keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    transform: scale(1.0);
  }
  50%, 70% {
    transform: scale(0.8);
  }
}

/* ===============================================
# スライド設定
=============================================== */
.product .swiper-pagination {
  bottom: 0;
  left: auto;
  right: calc(-21/11*1rem);
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: calc(3/11*1rem);
}
.product .swiper-pagination-clickable .swiper-pagination-bullet {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(18/11*1rem);
  height: calc(18/11*1rem);
  margin: 0;
  background-color: transparent;
  opacity: 1;
  font-family: var(--font-indivisible);
  font-size: calc(12/11*1rem);
  font-weight: 500;
}

.product .swiper-pagination-clickable .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #FFF;
}

.style2.product .swiper-pagination-clickable .swiper-pagination-bullet.swiper-pagination-bullet-active,
.style4.product .swiper-pagination-clickable .swiper-pagination-bullet.swiper-pagination-bullet-active,
.style6.product .swiper-pagination-clickable .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--color-black);
  color: var(--color-white);
}