@charset "UTF-8";

:root {
  --color-black: #000;
  --color-white: #ffffff;
  --color-bg: #EBEBEB;
  --max-width: 390px;
  /* --font-indivisible: "indivisible-variable", sans-serif; */
  --font-indivisible: "indivisible", 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: maru-maru-gothic-blr-stdn, sans-serif; */
  font-family: var(--font-dnp-shuei);
  font-weight: 400;
  line-height: 1.6;
  background: var(--color-bg);
  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;
}

body > div.wrapper {
  position: relative;
  margin-inline: auto;
  background-color: var(--color-bg);
  z-index: 1;
}
body > div.wrapper::before {
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-image, none) no-repeat top left / cover;
  z-index: -2;
  transition: opacity 0.5s ease;
}
body > div.wrapper::after {
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: var(--next-bg-image, none) no-repeat top left / cover;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}
body > div.wrapper.changing::after {
  opacity: 1;
}
body .wrapper .content {
  position: relative;
  max-width: var(--max-width);
  margin-inline: auto;
  background-color: #FFF;
  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;
}
.buy-btn.right {
  left: auto;
  right: 0;
}
@media (any-hover: hover) {
  .buy-btn:hover {
    background-color: var(--color-white);
    color: var(--color-black);
  }
}

/* ===============================================
# header
=============================================== */
.header-inner {
  position: relative;
  width: 100%;
  z-index: 1;
}
.header h1 {
  position: absolute;
  top: calc(13/11*1rem);
  left: calc(13/11*1rem);
  width: calc(153/11*1rem);
  z-index: 10;
}
.header h2 {
  position: absolute;
  bottom: calc(23/11*1rem);
  left: calc(19/11*1rem);
  width: calc(14/11*1rem);
  z-index: 10;
}
.header h3 {
  position: absolute;
  top: calc(23/11*1rem);
  left: calc(180/11*1rem);
  width: calc(51/11*1rem);
  z-index: 10;
}
.header h4 {
  position: absolute;
  top: calc(10/11*1rem);
  right: calc(10/11*1rem);
  width: calc(56/11*1rem);
  margin: 0;
  z-index: 10;
}

.header-slide {
  border: 1px solid var(--color-black);
}
.header-slide .swiper-slide {
  min-height: calc(621/11*1rem);
}
.header-slide .swiper-slide img {
  height: 100%;
  min-height: calc(621/11*1rem);
  object-fit: cover;
  transform: scale(1.1);
  opacity: 0;
  transition: transform 1s ease, opacity 1s ease;
}
.header-slide .swiper-slide-active img {
  transform: scale(1.02);
  opacity: 1;
}
.header-slide-bg {
  position: absolute;
  top: 0;
  left: calc(-1/11*1rem);
  width: calc(53/11*1rem);
  height: calc(622/11*1rem);
  background-color: #FFF;
  border-left: 1px solid var(--color-black);
  border-right: 1px solid var(--color-black);
  z-index: 5;
}
.header-slide-bg::before {
  content: "";
  position: absolute;
  top: calc(310/11*1rem);
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-black);
}
.header-text {
  position: absolute;
  top: calc(243/11*1rem);
  left: calc(21/11*1rem);
  width: calc(7.3/11*1rem);
  /* font-family: var(--font-indivisible);
  font-size: calc(11/11*1rem);
  letter-spacing: -0.01em;
  font-weight: 500;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl; */
  z-index: 6;
}

/* ===============================================
# headline
=============================================== */
.content-wrap {
  position: relative;
  z-index: 2;
}
.headline {
  position: relative;
  padding: calc(20/11*1rem) 0;
  z-index: 2;
}
.headline img {
  position: absolute;
  top: calc(-62/11*1rem);
  right: calc(6/11*1rem);
  width: calc(169/11*1rem);
  opacity: 0;
  animation: fadeIn 0.5s ease-out 1s forwards;
}
.headline_copy {
  padding-bottom: calc(20/11*1rem);
  font-family: var(--font-dnp-shuei);
  font-size: calc(22/11*1rem);
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  border-bottom: 1px solid var(--color-black);
}
.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;
  padding-top: calc(40/11*1rem);
}
section.product.style1 {
  padding-top: calc(20/11*1rem);
}
.item_slide-inner {
  position: relative;
  padding-top: calc(10/11*1rem);
}
.style-slide-wrapper {
  position: relative;
  width: 100%;
}
.style-slide {
  margin: 0 auto;
}
.product-info {
  position: relative;
  margin-inline: auto;
  font-family: var(--font-dnp-shuei);
  z-index: 2;
}
.product-info-title {
  padding-block: calc(20/11*1rem);
  font-size: calc(20/11*1rem);
  font-weight: 500;
  line-height: calc(22/15);
  text-align: center;
  border-bottom: 1px solid var(--color-black);
}
.product-info-text {
  /* max-width: calc(340/11*1rem); */
  margin: calc(14/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;
}
.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(168/11*1rem);
  left: calc(98/11*1rem);
}
.product-info-ph-text.text02 {
  top: calc(102/11*1rem);
  right: calc(87/11*1rem);
}
.product-info-ph-text.text03 {
  top: calc(165/11*1rem);
  left: calc(116/11*1rem);
}
.product-info-ph-text.text04 {
  top: calc(151/11*1rem);
  left: calc(82/11*1rem);
}
.product-info-ph-text.text05 {
  top: calc(170/11*1rem);
  left: calc(99/11*1rem);
}
.product-info-ph-text.text06 {
  top: calc(99/11*1rem);
  left: calc(120/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(-28/11*1rem);
  left: calc(20/11*1rem);
}
.product-info-ph-text.text02::after {
  bottom: calc(-28/11*1rem);
  left: calc(20/11*1rem);
}
.product-info-ph-text.text03::after {
  bottom: calc(-28/11*1rem);
  left: calc(20/11*1rem);
}
.product-info-ph-text.text04::after {
  bottom: calc(-28/11*1rem);
  left: calc(20/11*1rem);
}
.product-info-ph-text.text05::after {
  bottom: calc(-28/11*1rem);
  left: calc(20/11*1rem);
}
.product-info-ph-text.text06::after {
  bottom: calc(-28/11*1rem);
  left: calc(20/11*1rem);
} */
.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;
}

.style-color {
  position: absolute;
  top: calc(380/11*1rem);
  right: calc(10/11*1rem);
  width: calc(105/11*1rem);
  z-index: 10;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.style-color.is-active {
  opacity: 1;
}
.style-color.style1 {
  width: calc(105/11*1rem);
}
.style-color.style2 {
  width: calc(128/11*1rem);
}
.style-color.style3 {
  right: calc(22/11*1rem);
  width: calc(121/11*1rem);
}
.style-color.style4 {
  right: calc(36/11*1rem);
  width: calc(90/11*1rem);
}
.style-color.style5 {
  right: calc(5/11*1rem);
  width: calc(157/11*1rem);
}
.style-color.style6 {
  top: calc(468/11*1rem);
  right: auto;
  left: calc(25/11*1rem);
  width: calc(170/11*1rem);
}


/* ===============================================
# 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;
  width: 100%;
  max-width: calc(343/11*1rem);
  margin-inline: auto;
  text-align: center;
  z-index: 1;
  opacity: 1;
}
.pc-contents-images {
  max-width: calc(332/11*1rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: calc(20/11*1rem) 0 0;
}
.pc-contents-images > div {
  display: flex;
  align-items: center;
}
.pc-contents-images p img {
  width: calc(19/11*1rem);
}

.pc-contents-images .image {
  width: calc(101/11*1rem);
}
.pc-contents-images .image1 .image {
  width: calc(101/11*1rem);
  margin-left: calc(-10/11*1rem);
}
.pc-contents-images .image2 .image {
  width: calc(116/11*1rem);
  margin-top: calc(-22/11*1rem);
  margin-left: calc(-30/11*1rem);
}
.pc-contents-images .image3 .image {
  width: calc(133/11*1rem);
  margin-left: calc(-30/11*1rem);
}
.pc-contents-images .image4 .image {
  width: calc(108/11*1rem);
  margin-left: calc(-30/11*1rem);
}
.pc-contents-images .image5 .image {
  width: calc(116/11*1rem);
  margin-top: calc(-22/11*1rem);
  margin-left: calc(-30/11*1rem);
}
.pc-contents-images .image6 .image {
  width: calc(114/11*1rem);
  margin-left: calc(-20/11*1rem);
}
.pc-contents-top,
.pc-contents-top-02 {
  display: block;
}
.pc-contents-top {
  width: calc(343/11*1rem);
}
.pc-contents-top-02 {
  width: calc(207/11*1rem);
  margin-top: calc(16/11*1rem);
}

/* ===============================================
# scroll
=============================================== */
.scroll {
  position: fixed;
  top: 0;
  right: 0;
  width: calc((100% - 390px) / 2);
  height: 100dvh;
  background-color: #FFF;
}
@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-black);
  transform: translateX(-50%);
}

/* ===============================================
# swiper設定
=============================================== */
.swiper-pagination .swiper-pagination-bullet {
  position: relative;
  width: calc(10/11*1rem);
  height: calc(10/11*1rem);
  margin: 0;
  border-radius: 0;
  background-color: #FFF;
  border: 1px solid var(--color-black);
  opacity: 1;
}
.swiper-pagination .swiper-pagination-bullet-active::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='10.568' height='10.568'%3E%3Cg fill='none' stroke='%23000' stroke-miterlimit='10' data-name='グループ 3704'%3E%3Cpath d='m.353.353 9.86 9.86' data-name='線 340'/%3E%3Cpath d='m10.214.353-9.86 9.86' data-name='線 341'/%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(-50%, -50%);
}
.header-slide .swiper-pagination {
  top: calc(18/11*1rem);
  bottom: auto;
  left: calc(15/11*1rem);
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: calc(4/11*1rem);
  z-index: 10;
}
.product .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: calc(4/11*1rem);
  padding-left: calc(15/11*1rem);
}
.product .swiper-pagination .swiper-pagination-bullet {
  margin: 0;
}
.product .swiper-button-prev,
.product .swiper-button-next {
  width: 2rem;
  height: 2rem;
  background: url(../img/arrow.svg) no-repeat center / contain;
}
.product .swiper-button-prev {
  transform: scale(-1, 1);
}
.product .swiper-button-prev::after,
.product .swiper-button-next::after {
  display: none;
}

/* ===============================================
# 右から左にスクロール
=============================================== */
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
    to {
    transform: translateX(-100%);
  }
}
.scroll-infinity-wrap {
  display: flex;
  overflow: hidden;
}
.scroll-infinity-list {
  display: flex;
  gap: calc(20/11*1rem);
  list-style: none;
  padding: 0
}
.scroll-infinity-list--left {
  animation: infinity-scroll-left 50s infinite linear 0.5s both;
}
.header .scroll-infinity {
  padding-top: calc(55/11*1rem);
}
.header .scroll-infinity-item {
  width: calc(450/11*1rem);
}
.header .scroll-infinity-item > img {
  width: calc(508/11*1rem);
}
.header .scroll-infinity-wrap {
  padding-block: calc(5/11*1rem);
  border-top: 1px solid var(--color-black);
}
.product .scroll-infinity-item {
  width: calc(230/11*1rem);
}
.product .scroll-infinity-item > img {
  width: auto;
  height: calc(50/11*1rem);
}

/* ===============================================
# アニメーション
=============================================== */
@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);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}