@charset "utf-8";
/* 一般 */
div,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video,input,textarea {
  margin: 0;
  padding: 0;
  border: none;
  font-size: 100%;
  font-style: normal;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* shape */
.elementor-shape {
  box-sizing: border-box;
  direction: ltr;
  left: 0;
  line-height: 0;
  overflow: hidden;
  position: absolute;
  width: 100%;
}
.elementor-shape svg {
  display: block;
  left: 50%;
  position: relative;
  transform: translateX(-50%);
  width: calc(100% + 1.3px);
  box-sizing: border-box;
}
.elementor-shape .elementor-shape-fill {
  fill: #fff;
  transform: rotateY(0deg);
  transform-origin: center;
}

/* animeアニメーション */
.anime.active {
  animation: fade-in-bottom 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
@keyframes fade-in-bottom {
  0% {
    transform: translateX(30px) translateY(30px);
    opacity: 0;
  }
  100% {
   transform: translateX(0) translateY(0);
    opacity: 1;
  }
}
/* anime1アニメーション */
.anime1.active {
  animation: slideFromBack 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards, wave 2s infinite ease-in-out;
}
@keyframes slideFromBack {
  0% { opacity: 0; transform: translateZ(-300px) scale(0.3); }
  100% { opacity: 1; transform: translateZ(0) scale(1); }
}
@keyframes wave {
  0%, 100% { transform: translateZ(0px) translateY(0) rotateZ(0deg); }
  50% { transform: translateZ(0px) translateY(-10px) rotateZ(-10deg); }
}
.slideout-text span:nth-child(1) { animation-delay: 0s; }
.slideout-text span:nth-child(2) { animation-delay: 0.1s; }
.slideout-text span:nth-child(3) { animation-delay: 0.2s; }
.slideout-text span:nth-child(4) { animation-delay: 0.3s; }
.slideout-text span:nth-child(5) { animation-delay: 0.4s; }
.slideout-text span:nth-child(6) { animation-delay: 0.5s; }
.slideout-text span:nth-child(7) { animation-delay: 0.6s; }
.slideout-text span:nth-child(8) { animation-delay: 0.7s; }
.slideout-text span:nth-child(9) { animation-delay: 0.8s; }
.slideout-text span:nth-child(10) { animation-delay: 0.9s; }
.slideout-text span:nth-child(11) { animation-delay: 1s; }
.slideout-text span:nth-child(12) { animation-delay: 1.1s; }
.slideout-text span:nth-child(13) { animation-delay: 1.2s; }

/* anime2アニメーション */
.anime2.active {
  animation: bounce-in-bottom 0.3s both;
}
@keyframes bounce-in-bottom {
  0% {
    transform: translateY(100px);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    transform: translateY(0);
    animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    transform: translateY(35px);
    animation-timing-function: ease-in;
  }
  72% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
  81% {
    transform: translateY(18px);
    animation-timing-function: ease-in;
  }
  90% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
  95% {
    transform: translateY(8px);
    animation-timing-function: ease-in;
  }
  100% {
    transform: translateY(0);
    animation-timing-function: ease-out;
    opacity: 1; 
  }
}

/* くるくる */
.kurukuru-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(5px, 2vw, 30px);
  width: 98%;
  max-width: 600px;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
.kurukuru {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.link {
  width: 100%;
  height: 100%;
  display: inline-block;
  font-size: clamp(0.8rem, 1.5vw, 1.2rem);
  font-family: "Yusei Magic", sans-serif;
  z-index: 2;
}
.link_svg, .link2_svg, .link3_svg {
  width: 100%;
  height: auto;
  transform-box: fill-box;
  fill: #535f70;
  stroke-width: 0.1em;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.link_svg { stroke: #f77e7e; }
.link2_svg { stroke: #91acc9; }
.link3_svg { stroke: #95cf86; }
.link_cloud {
  transform-origin: center;
  animation: rotate normal infinite 30s linear;
  fill: #fdeff2;
}
.link2_cloud {
  transform-origin: center;
  animation: rotateReverse normal infinite 30s linear;
  fill: #eaf4fc;
}
.link3_cloud {
  transform-origin: center;
  animation: rotate normal infinite 30s linear;
  fill: #d6e9ca;
}
.link_text {
  animation: rotateReverse normal infinite 20s linear;
  transform-origin: 100px 100px;
}
.link2_text {
  animation: rotate normal infinite 20s linear;
  transform-origin: 100px 100px;
}
@media (hover: hover) {
  .link_text:hover, .link2_text:hover {
    animation-play-state: paused;
  }
}
@keyframes rotate {
    0% { transform:rotate(0deg); }
    100% { transform:rotate(360deg); }
}
@keyframes rotateReverse {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(-360deg); }
}
.link_face {
  transform-origin: center;
  transition: transform 0.3s / 2 cubic-bezier(0.32, 0, 0.67, 0);
}
@media (hover: hover) {
  .link_face:hover {
    transform: scale(1.1);
    transition: transform 0.3s cubic-bezier(0.33, 1, 0.68, 1);
  }
}
.link-alt {
  font-size: 1.2rem;
  letter-spacing: 0.2;
  word-spacing: 0;
}

/* イメージイラスト */
.image-container {
  position: relative;
  display: block;
  width: 100%;
  max-width: 700px;
  margin: 100px auto 0;
  z-index: 2;
}
.image-irasuto {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.image-text {
  position: absolute;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  text-shadow: 1px 1px 2px #000;
  font-size: clamp(0.938rem, 0.778rem + 0.8vw, 1.375rem);
  font-weight: 500;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "MS PMincho", serif;
  letter-spacing: .3em;
  padding: 15px 10px;
  z-index: 3;
}
@media screen and (max-width: 480px) {
  .image-text { letter-spacing: .2em; }
}
.image-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(190 140 0 / .7);
  box-shadow: 0 1px 2px rgba(0 0 0 / .9);
  transform: skewY(-30deg);
  z-index: -1;
}
.stylized-text {
  width: 100%;
  max-width: 650px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin: 0 auto;
  gap: 2px;
  flex-wrap: wrap;
  font-size: clamp(1rem, 0.508rem + 2.19vw, 1.875rem);
  font-family: "Kaisei Opti", serif;
  font-weight: 700;
  color: #535f70;
  z-index: 2;
}
.word1 {
  font-family: "oshigo", serif;
  color: #EDACA6;
  font-size: clamp(1.25rem, 0.688rem + 2.5vw, 2.25rem);
  text-shadow: 
    1px 1px 0 #d32f2f,
    -1px 1px 0 #d32f2f,
    1px -1px 0 #d32f2f,
    -1px -1px 0 #d32f2f,
    1px 0 0 #d32f2f,
    -1px 0 0 #d32f2f,
    0 1px 0 #d32f2f,
    0 -1px 0 #d32f2f;
  transform: rotateZ(-10deg);
  display: inline-block;
}
.word2 {
  font-family: "oshigo", serif;
  font-size: clamp(1.25rem, 0.688rem + 2.5vw, 2.25rem);
  color: #f8e58c;
  text-shadow: 
    1px 1px 0 #71686c,
    -1px 1px 0 #71686c,
    1px -1px 0 #71686c,
    -1px -1px 0 #71686c,
    1px 0 0 #71686c,
    -1px 0 0 #71686c,
    0 1px 0 #71686c,
    0 -1px 0 #71686c;
  transform: rotateZ(-10deg);
  display: inline-block;
}
.word3 {
  font-family: "oshigo", serif;
  font-size: clamp(1.25rem, 0.688rem + 2.5vw, 2.25rem);
  color: #83ccd2;
  text-shadow: 
    1px 1px 0 #008899,
    -1px 1px 0 #008899,
    1px -1px 0 #008899,
    -1px -1px 0 #008899,
    1px 0 0 #008899,
    -1px 0 0 #008899,
    0 1px 0 #008899,
    0 -1px 0 #008899;
  transform: rotateZ(-10deg);
  display: inline-block;
}

/* 見出し */
.sub-text {
  display: block;
  text-align: center;
  margin: 0 auto;
  width: 100%;
  font-family: "craft", sans-serif;
  font-size: clamp(1.25rem, 1.114rem + 0.68vw, 1.625rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #0066B8;
  z-index: 2;
  position: relative;
}
.slideout-text {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 500px;
  margin: 20px auto 0;
  font-size: clamp(1.5rem, 1rem + 2.5vw, 2.875rem);
  font-weight: 900;
  letter-spacing: 0.1em;
}
.text-space {
  display: inline-block;
  width: 0.3em;
}
.letter {
  display: inline-block;
  margin: 0;
  font-family: "Arial Black", sans-serif;
  text-shadow:
      1px 1px 0 var(--shadow-color),
      2px 2px 0 var(--shadow-color),
      3px 3px 0 var(--shadow-color),
      4px 4px 0 var(--shadow-color),
      5px 5px 0 #7c7c7c;
  will-change: transform;
  z-index: 2;
}
.slideout-text span[data-color="pink"] { color: #ffb3c6; --shadow-color: #cc8fa0; }
.slideout-text span[data-color="mint"] { color: #b3f0d1; --shadow-color: #8fc2a7; }
.slideout-text span[data-color="blue"] { color: #b3d9ff; --shadow-color: #8fadcc; }
.slideout-text span[data-color="orange"] { color: #ffcc99; --shadow-color: #cca377; }
.slideout-text span[data-color="green"] { color: #c6f7d0; --shadow-color: #9cc5a6; }
.slideout-text span[data-color="yellow"] { color: #fff2b3; --shadow-color: #ccc28f; }

/* Introductionの説明文 */
.intro-contents {
  box-sizing: border-box;
  margin: 0 auto;
  width: 95%;
  max-width: 700px;
  height: auto;
  padding: 0 15px 20px;
  backdrop-filter: blur(10px);
  background: rgba(42 63 92 / .8);
  border: 2px solid #d4af37;
  border-radius: 5px;
  box-shadow: inset 0 2px 4px rgb(0 0 0 / .9);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.intro-contents p {
  font-size: clamp(0.875rem, 0.807rem + 0.34vw, 1.063rem);
  line-height: 1.6;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.8);
  margin-top: 20px;
  text-align: justify;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "MS PMincho", serif;
  font-weight: 400;
  position: relative;
}
@media screen and (max-width: 480px) {
  .intro-contents p { line-height: 1.5; }
}

/* stoy物語 */
.story-waku {
  box-sizing: border-box;
  width: 80%;
  max-width: 400px;
  min-width: 280px;
  height: clamp(380px, 30vw, 450px);
  margin: 0 auto;
  backdrop-filter: blur(10px);
  background: rgba(224 229 236 / .6);
  border-radius: 20px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0 0 0 / .3);
  z-index: 2;
  position: relative;
}
.story-tategaki {
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  text-align: start;
  display: inline-block;
  margin: 0 auto;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "MS PMincho", serif;
  font-weight: 400;
  font-size: clamp(0.938rem, 0.892rem + 0.23vw, 1.063rem);
  line-height: 1.7;
  z-index: 2;
}

/* outlineゲーム概要 */
.outline-waku {
  box-sizing: border-box;
  width: 95%;
  max-width: 600px;
  margin: 0 auto;
  backdrop-filter: blur(10px);
  background: rgba(224 229 236 / .6);
  border-radius: 20px;
  padding: 20px 15px 15px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0 0 0 / .3);
  display: flex;
  align-items: center;
  flex-direction: column;
  z-index: 2;
  position: relative;
}
.outline-map img {
  width: 90%;
  height: auto;
  object-fit: contain;
  box-shadow: 0 0 10px rgba(0 0 0 / .3);
  border-radius: 20px;
  z-index: 2;
}
.outline-sassi img {
  width: 90%;
  object-fit: contain;
  filter: drop-shadow(0px 0px 5px rgb(0 0 0 / .6));
}
.outline-list {
  list-style: none;
  padding: 0;
}
.outline-list li {
  position: relative;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "MS PMincho", serif;
  text-align: left;
  font-size: clamp(0.875rem, 0.807rem + 0.34vw, 1.063rem);
  font-weight: 500;
  color: #535f70;
  margin: 5px 0 0;
  padding-left: 10px;
  line-height: 1.6;
}
.outline-list li::before {
  content: "●";
  font-size: 9px;
  position: absolute;
  left: 0;
  color: #535f70;
  line-height: 3;
}

/* flow遊び方の流れ */
.flow-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  width: 95%;
  max-width: 800px;
  margin: 40px auto 0;
  padding: 3px;
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
.flow-card {
  position: relative;
  backdrop-filter: blur(10px);
  background: #e0e5ec;
  border-radius: 20px;
  padding: 15px 10px;
  text-align: center;
  box-shadow: 
    9px 9px 16px rgba(163, 177, 198, 0.6),
    -9px -9px 16px rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
  z-index: 2;
}
@media (hover: hover) {
  .flow-card:hover {
    transform: translateY(-4px);
    box-shadow: 
      inset 9px 9px 16px rgba(163, 177, 198, 0.6),
      inset -9px -9px 16px rgba(255, 255, 255, 0.5);
  }
}
.flow-icon {
  width: 100%;
  margin: 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flow-icon img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.flow-number {
  margin: -30px auto 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #EDACA6;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.25rem, 1.109rem + 0.63vw, 1.5rem);
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
  animation: pulse 2s ease-in-out infinite;
  font-family: "oshigo", sans-serif;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}
.flow-title {
  width: 100%;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: #160c28;
  font-weight: 600;
  font-size: clamp(1rem, 0.93rem + 0.31vw, 1.125rem);
  margin: 0;
  padding: 0;
  line-height: 1.4;
}
.flow-text {
  text-align: left;
  font-size: clamp(0.875rem, 0.805rem + 0.31vw, 1rem);
  font-weight: 400;
  color: #160c28;
  margin: 0;
  padding: 0;
}
@media screen and (max-width:767px) {
  .flow-icon img { width: 60%;}
  .flow-icon { margin: 10px 0; }
  .flow-container { gap: 20px; grid-template-columns: repeat(2, 1fr); grid-template-rows: auto auto; }
}
@media screen and (max-width:468px) {
  .flow-icon img { width: 70%;}
}

/* enjoy楽しみ方 */
.enjoy-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 95%;
  max-width: 800px;
  margin: 0 auto;
  padding: 3px;
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
.enjoy-card {
  position: relative;
  backdrop-filter: blur(10px);
  background: #e0e5ec;
  border-radius: 20px;
  padding: 15px;
  text-align: center;
  box-shadow: 
    9px 9px 16px rgba(163, 177, 198, 0.6),
    -9px -9px 16px rgba(255, 255, 255, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 2;
}
@media (hover: hover) {
  .enjoy-card:hover {
    transform: translateY(-4px);
    box-shadow: 
      inset 9px 9px 16px rgba(163, 177, 198, 0.6),
      inset -9px -9px 16px rgba(255, 255, 255, 0.5);
  }
}
.enjoy-icon {
  width: 100%;
  margin: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.enjoy-icon img {
  width: auto;
  height: clamp(80px, 20vw, 150px) !important;
  object-fit: contain;
}
.enjoy-title {
  width: 100%;
  font-family: "oshigo", sans-serif;
  color: #160c28;
  font-weight: 400;
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
  margin: 0;
  padding: 0;
  display: inline-block;
}
.enjoy-text {
  text-align: left;
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
  font-weight: 400;
  color: #160c28;
  margin: 0;
  padding: 0;
}
@media screen and (max-width:768px) {
  .enjoy-icon { margin: 10px 0; }
  .enjoy-container { gap: 10px; grid-template-columns: repeat(2, 1fr); grid-template-rows: auto auto; }
  .enjoy-container > *:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 50%;
  }
}

/* カードカルーセル */
.goods-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0;
  position: relative;
  perspective: 1500px;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  overflow: hidden;
  z-index: 2;
}
.goods-wrapper {
  position: relative;
  width: 400px;
  height: 670px;
  overflow: visible;
  margin: 20px auto 0;
}
.goods-track {
  position: relative;
  width: 100%;
  height: 100%;
}
.goods-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0 0 0 / .8);
}
.goods-card {
  position: absolute;
  width: 100%;
  padding: 20px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform-origin: center center;
  backface-visibility: hidden;
  background: linear-gradient(135deg, #3c3c3c 0%, #5a5a5a 25%, #7a7a7a 50%, #5a5a5a 75%, #3c3c3c 100%);
  border: 4px solid #d4af37;
  box-shadow: inset 0 2px 4px rgb(0 0 0 / .9);
}
/* デフォルト状態：右に積み重なって待機 */
.goods-card {
  transform: translateX(120%) scale(0.7);
  opacity: 0;
  z-index: 0;
}
/* アクティブカード：中央に表示 */
.goods-card.active {
  box-sizing: border-box;
  transform: translateX(0) scale(1);
  opacity: 1;
  z-index: 10;
  box-shadow: 0 0 20px rgba(102 126 234 / .4);
}
/* 左に去ったカード */
.goods-card.prev {
  transform: translateX(-120%) scale(0.7);
  opacity: 0;
  z-index: 0;
}
/* 前のカードを少し見せる */
.goods-card.prev-preview {
  box-sizing: border-box;
  transform: translateX(-40%) scale(0.8);
  opacity: 0.3;
  z-index: 5;
}
/* 次に来るカードを少し見せる */
.goods-card.next-preview {
  box-sizing: border-box;
  transform: translateX(40%) scale(0.8);
  opacity: 0.3;
  z-index: 5;
}
.goods-title {
  width: fit-content;
  margin: -25px auto 10px;
  color: #FFEE00;
  font-family: "craft", serif;
  font-weight: 400;
  font-size: 26px;
  line-height: 1.6;
  text-shadow: 0 0 5px rgba(0 0 0 / .9);
  background: rgba(255 255 255 / .1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255 255 255 / .2);
  border-radius: 16px;
  padding: 5px 10px;
  box-shadow: 0 8px 32px 0 rgba(0 0 0 / .1);
}
.goods-description {
  font-size: 16px;
  line-height: 1.6;
  color: white;
  margin: 0 0 10px;
  padding: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
.goods-controls {
  width: 95%;
  max-width: 240px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto 20px;
  padding: 0;
}
.goods-control-btn {
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(102 126 234 / .9);
  position: relative;
  overflow: hidden;
}
.goods-control-btn::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255 255 255 / .3);
  transform: translateX(-100%) rotate(45deg);
  transition: transform 0.6s;
}
.goods-control-btn:hover::before {
  transform: translateX(100%) rotate(45deg);
}
@media (hover: hover) {
  .goods-control-btn:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 20px rgba(102 126 234 / .4);
  }
}
.goods-control-btn:active {
  transform: scale(0.95);
}
.goods-dots-container {
  display: flex;
  gap: 10px;
}
.goods-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e0;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}
.goods-dot::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
}
.goods-dot.active::after {
  opacity: 1;
  transform: scale(1);
}
.goods-dot.active {
  width: 20px;
  border-radius: 5px;
}
/* リンクボタン */
@property --gradient-angle-with {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
.color-button {
  display: flex;
  margin: 0 auto;
  position: relative;
  padding: 12px 28px;
  font-family: "Gill sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.2em;
  border: 1px solid transparent;
  border-radius: 50px;
  color: white;
  background: 
    linear-gradient(#4098ff, #4058ff) padding-box,
    conic-gradient(
      from var(--gradient-angle-with),
      transparent,
      gold 5%,
      white 10%,
      gold 15%,
      transparent 20%
    ) border-box;
  cursor: pointer;
  animation: rotate-with 3s linear infinite;
  overflow: hidden;
}
@keyframes rotate-with {
  to { --gradient-angle-with: 360deg; }
}
.color-button:active { translate: 0 1px; }
.color-button::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 0;
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(-50deg, transparent, gold, transparent);
  mask-image: radial-gradient(circle at bottom, transparent 40%, black);
  opacity: 0.6;
  pointer-events: none;
  animation: 
    rotate-element 3s linear infinite,
    rotate-element calc(3s / 0.4) linear infinite reverse paused;
  animation-composition: add;
}
@keyframes rotate-element { to { rotate: 360deg; } }
.color-button span {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 480px) and (min-width: 390px) {
  .goods-wrapper { width: 330px; height: 570px; }
  .goods-card.prev-preview { transform: translateX(-24%) scale(0.75); }
  .goods-card.next-preview { transform: translateX(24%) scale(0.75); }
  .goods-title { font-size: 23px; }
  .goods-description { font-size: 15px; }
  .color-button { font-size: 15px; }
  .goods-card { padding: 20px 15px; }
}
@media screen and (max-width: 389px) and (min-width: 360px) {
  .goods-wrapper { width: 300px; height: 570px; }
  .goods-card.prev-preview { transform: translateX(-24%) scale(0.75); }
  .goods-card.next-preview { transform: translateX(24%) scale(0.75); }
  .goods-title { font-size: 23px; }
  .goods-description { font-size: 15px; }
  .color-button { font-size: 15px; }
  .goods-card { padding: 20px 15px; }
}
@media screen and (max-width: 359px) {
  .goods-wrapper { width: 260px; height: 520px; }
  .goods-card.prev-preview { transform: translateX(-24%) scale(0.75); }
  .goods-card.next-preview { transform: translateX(24%) scale(0.75); }
  .goods-title { font-size: 22px; }
  .goods-description { font-size: 14px; }
  .color-button { font-size: 14px; }
  .goods-card { padding: 15px; }
}
/* Sales info */
.info-cards-wrapper {
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  width: 90%;
  max-width: 600px;
  margin: 0 auto;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
.info-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 10px rgb(0 0 0 / .2);
  transition: transform 0.2s ease;
  position: relative;
  background: rgba(224 229 236 / .7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2;
}
@media (hover: hover) {
  .info-card:hover {
    transform: translateY(-2px);
  }
}
.info-card-header {
  background: #EDACA6;
  color: white;
  font-weight: 700;
  font-size: clamp(1.125rem, 0.984rem + 0.63vw, 1.375rem);
  font-family: "Kaisei Opti", sans-serif;
  margin: 0;
  padding: 12px 0;
  text-align: center;
  letter-spacing: 0.1em;
}
.info-card-content {
  padding: 20px 5px 5px;
}
.info-card-title {
  font-size: 19px;
  font-weight: 500;
  color: #160c28;
  margin-bottom: 20px;
  text-align: center;
}
.info-card-list {
  list-style: none;
  padding: 0;
}
.info-card-list li {
  position: relative;
  padding-left: 10px;
  margin-bottom: 4px;
  line-height: 1.6;
  color: #333;
  font-size: 13px;
}
.info-card-list li::before {
  content: "●";
  font-size: 7px;
  position: absolute;
  left: 0;
  color: #333;
  line-height: 3.4;
}
.price {
  font-size: 20px;
  font-weight: 700;
  color: #e53e3e;
}
.price-note {
  text-align: center;
  margin-bottom: 20px;
  font-size: 14px;
  color: #160c28;
  font-weight: 500;
}
@media (max-width: 480px) {
  .info-cards-wrapper { grid-template-columns: 1fr;}
  .info-card-title { font-size: 17px; }
  .info-card { width: 95%; margin: 0 auto; }
}
.sales-card-wrapper {
  box-sizing: border-box;
  width: 90%;
  max-width: 450px;
  margin: 0 auto;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  z-index: 2;
  position: relative;
  backdrop-filter: blur(10px);
}
.midori-button {
  display: flex;
  width: 180px;
  height: 40px;
  margin: 30px auto 50px;
  padding: 0;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  text-shadow: 0px 1px 1px rgb(0 0 0 / .8);
  border-radius: 5px;
  border: 0;
  color: #fff;
  background: #4098ff;
  box-shadow: 0 4px 0 #1557a3;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  transition: transform 0.2s ease;
  z-index: 2;
}
.midori-button:active {
  transform: translate(0, 3px);
  box-shadow: 0 1px 0 #1557a3;
}
.yubisasu-ojisan {
  width: 30%;
  height: auto;
  object-fit: contain;
  display: block;
  position: absolute;
  top: 70%;
  left: 70%;
  z-index: 1;
}
@media screen and (max-width: 768px) and (min-width: 481px) {
  .yubisasu-ojisan { width: 25%; top: 72%; }
}
@media (max-width: 480px) {
  .yubisasu-ojisan { width: 30%; top: 75%; left: 77%; }
}

/* お試しナゾ */
.accordion-item {
  box-sizing: border-box;
  width: 95%;
  max-width: 600px;
  margin: 0 auto;
}
.accordion-header {
  background: #68699b;
  padding: 8px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
  position: relative;
  border-radius: 8px;
  box-shadow: 0 0 10px 2px rgb(0 0 0 / .35);
  color: white;
  -webkit-user-select: none;
  user-select: none;
  z-index: 2;
}
@media (hover: hover) {
  .accordion-header:hover {
    background: #bbc8e6;
    color: #1e50a2;
  }
}
.accordion-header.active {
  background: #bbc8e6;
  color: #1e50a2;
  box-shadow: 0 -2px 10px 2px rgb(0 0 0 / .35);
}
.accordion-title {
  font-size: clamp(0.938rem, 0.915rem + 0.11vw, 1rem);
  font-weight: 700;
  font-family: "Kaisei Opti", sans-serif;
}
.accordion-icon {
  width: 24px;
  height: 24px;
  font-family: 'Hiragino Kaku Gothic ProN', 'Helvetica Neue', Arial, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.accordion-icon::before {
  content: '+';
  font-size: 20px;
  font-weight: bold;
  color: white;
}
.accordion-header:hover .accordion-icon::before {
  color: #1e50a2;
}
.accordion-header.active .accordion-icon::before {
  content: '\2212';
  color: #1e50a2;
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: white;
  box-shadow: 0 0 15px 5px rgb(0 0 0 / .35);
  position: relative;
  z-index: 2;
}
.accordion-content.active {
  max-height: 2000px;
}
.accordion-body {
  padding: 15px;
  -webkit-user-select: none;
  user-select: none;
  text-align: center;
}
.accordion-body p {
  text-align: left;
  color: #160c28;
  line-height: 1.6;
  font-size: clamp(0.875rem, 0.852rem + 0.11vw, 0.938rem);
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
}
.accordion-content {
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.accordion-icon {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.accordion-header.active .accordion-icon {
  transform: rotate(180deg);
}
.otamesi-gazou {
  width: 80%;
  height: 80%;
  margin: 20px auto;
  object-fit: contain;
}
input[type="text"].anser_waku {
  box-sizing: border-box;
  display: flex;
  margin: 10px auto;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 2.5em;
  width: 80%;
  max-width: 300px;
  padding: 0 10px;
  border-radius: 5px;
  border: 1px solid #63d62d;
  background: #fff;
  font-size: 17px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: #c53d43;
  box-shadow: inset 0 0 10px 2px rgb(99 214 45 / .35);
  appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
  transition: all 0.3s ease;
}
input[type="text"].anser_waku::placeholder {
  color: #7b7c7d;
}
input[type="text"].anser_waku:focus {
  outline: 0;
  background: #fff;
  border: 1px solid #63d62d;
  box-shadow:  0px 0px 10px 4px rgb(99 214 45 / .35);
  color: #160c28;
  transform: scale(1.1);
}
.sousin_botan {
  display: inline-block;
  text-align: center;
  margin: 20px auto;
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
  font-size: clamp(0.875rem, 0.852rem + 0.11vw, 0.938rem);
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  text-shadow: 1px 1px 1px rgb(77 77 77 / .7);
  border-radius: 50px;
  border: 0;
  color: #ffffff;
  background: #f08300;
  cursor: pointer;
  box-shadow: 0 5px 0 #b36b00;
}
.sousin_botan:active {
  transform: translate(0, 3px);
  background: #f08300;
  box-shadow: 0 0 0 #b36b00;
}
.popup-correct, .popup-incorrect {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / .5);
  justify-content: center;
  align-items: center;
  z-index: 99;
}
.popup-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: white;
  width: 80%;
  max-width: 400px;
  padding: 10px 20px;
  border: 3px solid #997526;
  border-radius: 20px;
}
.popup-inner p {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(0.938rem, 0.915rem + 0.11vw, 1rem);
  font-weight: 400;
  line-height: 1.5;
  color: #000;
  text-decoration: none;
  margin: 15px 0 0;
  text-align: left;
}
.close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 5px;
  right: 10px;
  height: 30px;
  width: 30px;
  font-family: Arial, sans-serif;
  font-size: 26px;
  font-weight: 600;
  background: #ffec47;
  border: 1px solid #006e54;
  border-radius: 50%;
  color: #00a381;
  cursor: pointer;
}
.loader {
  background: rgb(0 0 0 / .5);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 999;
}
.loader_spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.loader_saigo {
  width: 40px;
  height: 40px;
  --c:no-repeat linear-gradient(#99DDFF 0 0);
  background: var(--c),var(--c),var(--c),var(--c);
  background-size: 21px 21px;
  animation: l5 1.3s infinite cubic-bezier(0.3,1,0,1);
}
@keyframes l5 {
   0%   {background-position: 0    0,100% 0   ,100% 100%,0 100%}
   33%  {background-position: 0    0,100% 0   ,100% 100%,0 100%;width:60px;height: 60px}
   66%  {background-position: 100% 0,100% 100%,0    100%,0 0   ;width:60px;height: 60px}
   100% {background-position: 100% 0,100% 100%,0    100%,0 0   }
}
.message {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5em;
  color: #000;
  text-decoration: none;
  margin: 5px;
}
.message p {
  margin: 0;
}

/* 注意事項 */
.caution-container {
  box-sizing: border-box;
  width: 95%;
  max-width: 800px;
  margin: 0 auto;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #160c28;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgb(0 0 0 / .3);
  padding: 10px 5px;
  background: rgba(224 229 236 / .7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2;
  position: relative;
}
.caution-list {
  list-style: none;
  padding: 0;
}
.caution-list li {
  position: relative;
  padding-left: 10px;
  margin-bottom: 4px;
  line-height: 1.6;
  font-size: 14px;
  font-weight: 400;
}
.caution-list li::before {
  content: "●";
  font-size: 9px;
  position: absolute;
  left: 0;
  color: #333;
  line-height: 2.5;
}

/* ページトップへ戻るボタン */
.back-to-top {
  height: 46px;
  width: 46px;
  margin: 60px 5px 30px auto;
  background: #AABBEE;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
.back-to-top-arrow {
  height: 10px;
  width: 10px;
  border-top: 3px solid white;
  border-right: 3px solid white;
  transform: translateY(20%) rotate(-45deg);
}

/* 画像 */
.gazou-waku {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.takasa {
  height: auto;
  object-fit: contain;
}
/* フッター */
.noasobi {
  width: 14%;
  min-width: 200px;
  height: auto;
}
@media screen and (max-width: 768px) and (min-width: 481px) {
  .noasobi { width: 35%; max-width: 200px; }
}
@media (max-width: 480px) {
  .noasobi { width: 30%; min-width: 150px; }
}
.footer {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 100px 0 0;
  background: white;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 400;
}
.link-container {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: #160c28;
}
.link-list {
  list-style: none;
  padding: 0;
}
.link-list li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 5px;
  line-height: 1.6;
}
.link-list li a {
  color: #160c28;
}
.link-list li::before {
  content: "→";
  position: absolute;
  left: 0;
}
.footer-copyright {
  width: 100%;
  height: 50px;
  background: #000;
  display: flex;
  align-items: center;
}
.footer-copyright p {
  color: white;
  font-size: 13px;
  margin-left: auto;
  margin-right: 5px;
}

/* スペース */
.space-5 { margin-top: -5px; }
.space-10 { margin-top: -10px; }
.space-15 { margin-top: -15px; }
.space-20 { margin-top: -20px; }
.space-30 { margin-top: -30px; }
.space-40 { margin-top: -40px; }
.space-50 { margin-top: -50px; }
.space-60 { margin-top: -60px; }
.space10 { margin-top: 10px; }
.space20 { margin-top: 20px; }
.space30 { margin-top: 30px; }
.space40 { margin-top: 40px; }
.space50 { margin-top: 50px; }
.space60 { margin-top: 60px; }
.space80 { margin-top: 80px; }
.space100 { margin-top: 100px; }
.space120 { margin-top: 120px; }
.space200 { margin-top: 200px; }
.space300 { margin-top: 300px; }
.space400 { margin-top: 400px; }
.botomu10 { margin-bottom: 10px; }
.botomu20 { margin-bottom: 20px; }
.botomu100 { margin-bottom: 100px; }

/* 画像大きさ */
.haba90 { width: 90%; }
.haba80 { width: 80%; }
.haba70 { width: 70%; }
.haba60 { width: 60%; }
.haba50 { width: 50%; }
.haba45 { width: 45%; }
.haba40 { width: 40%; }
.haba30 { width: 30%; }
.haba20 { width: 20%; }
.haba15 { width: 15%; }
.haba10 { width: 10%; }
.haba30-60 { width: 30%; }
.haba25-30 { width: 25%; }
.haba20-40 { width: 20%; }
.haba15-20 { width: 15%; }
@media (max-width: 480px) {
  .haba30-60 { width: 60%; }
  .haba15-20 { width: 20%; }
  .haba25-30 { width: 30%; }
  .haba20-40 { width: 40%; }
}

/* フォント */
@font-face {
    src: url("/wp-content/themes/diver_child/custom-fonts/miya-nazo1-kaiseiopti-bold.woff2") format("woff2");
    font-family: "Kaisei Opti";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}
@font-face {
    src: url("/fonts/NotoSansJP-Regular.woff2") format("woff2");
    font-family: "Noto Sans JP";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}
@font-face {
    src: url("/fonts/GIL_____.woff2") format("woff2");
    font-family: "Gill sans";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}
@font-face {
    src: url("/fonts/YuseiMagic-Regular.woff2") format("woff2");
    font-family: "Yusei Magic";
    font-style: normal;
    font-weight: Normal;
    font-display: swap;
}
@font-face {
    src: url("/fonts/oshigo.woff2") format("woff2");
    font-family: "oshigo";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}
@font-face {
    src: url("/wp-content/themes/diver_child/custom-fonts/miya-nazo1-craftmincho.woff2") format("woff2");
    font-family: "craft";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}