@charset "utf-8";

:root {
  --bg: #050508;
  --cyan: #00ffe5;
  --magenta: #ff00aa;
  --yellow: #ffe600;
  --white: #f0f0f0;
  --sb_bg: #800000;
  --red: #d70035;
  --blue: #007bff;
  --yellow: #ffc107;
}

/*=====================================================================*/
html,
body {
  width: 100%;
  word-wrap: break-word;
  word-break: break-all;
  font-size: 18px;
  letter-spacing: 0.05em;
}

img {
  display: block;
  max-width: 100%;
  image-rendering: -webkit-optimize-contrast;
}

p {
  line-height: 1.6;
  margin: 20px 0;
}

::-webkit-full-page-media,
:future,
:root img {
  image-rendering: auto;
}

svg {
  fill: currentColor;
  max-width: 100%;
}

.bold {
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
}

.ex_bold {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
}

.pc_only {
  display: inline-block;
}

.sp_only {
  display: none;
}

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

  html,
  body {
    font-size: 18px;
  }
}

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

  html,
  body {
    font-size: 14px;
  }

  .pc_only {
    display: none;
  }

  .sp_only {
    display: inline-block;
  }
}

body {
  color: #070707;
  font-family: "LINE Seed JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  background-color: #fffff9;
  font-weight: 400;
}

/*共通CSS*/
.font_10 {
  font-size: 1rem;
}

.font_12 {
  font-size: 1.2rem;
}

.font_14 {
  font-size: 1.4rem;
}

.font_16 {
  font-size: 1.6rem;
}

.font_18 {
  font-size: 1.8rem;
}

.font_20 {
  font-size: 2rem;
}

.font_25 {
  font-size: 2.5rem;
}

.font_30 {
  font-size: 3rem;
}

.font_35 {
  font-size: 3.5rem;
}

.font_40 {
  font-size: 4rem;
}

.font_45 {
  font-size: 4.5rem;
}

.font_50 {
  font-size: 5rem;
}

.font_60 {
  font-size: 6rem;
}

.mt_10 {
  margin-top: 10px;
}

.mt_20 {
  margin-top: 20px;
}

.mt_30 {
  margin-top: 30px;
}

.mt_40 {
  margin-top: 40px;
}

.mt_50 {
  margin-top: 50px;
}

.mt_100 {
  margin-top: 100px;
}

.pt_10 {
  padding-top: 10px;
}

.pt_20 {
  padding-top: 20px;
}

.pt_30 {
  padding-top: 30px;
}

.pt_40 {
  padding-top: 40px;
}

.pt_50 {
  padding-top: 50px;
}

.pt_100 {
  padding-top: 100px;
}

.center {
  text-align: center;
}

.text_s_b {
  text-shadow: #070707 1px 0 0.2em, #070707 -1px 0 0.2em, #070707 0 1px 0.2em, #070707 0 -1px 0.2em;
}

.text_s_w {
  text-shadow: #bfbfbf 1px 0 0.2em, #bfbfbf -1px 0 0.2em, #bfbfbf 0 1px 0.2em, #bfbfbf 0 -1px 0.2em;
}

.under_line {
  border-bottom: solid 2px;
}

.under_dot {
 border-bottom: dotted 2px;
}

.red{
  color: var(--red);
}

.blue{
  color: var(--blue);
}

.yellow{
  color: var(--yellow);
}

/* ============================================
   UMAYOMI - 背景グリッチテキスト
   使い方:
   <span class="bg_glitch" data-text="テキスト">テキスト</span>
   ============================================ */

.bg_glitch {
  position: relative;
  display: inline-block;
  background: var(--yellow);
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  text-shadow: #282828 1px 0 0.2em, #282828 -1px 0 0.2em, #282828 0 1px 0.2em, #282828 0 -1px 0.2em;
  padding: 10px 30px;
  border: #fffff9 4px solid;
  border-radius: 20px;
  line-height: 1.4;
}

/* グリッチ複製レイヤー 共通 */
.bg_glitch::before,
.bg_glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.05em 0.4em;
  width: 100%;
  height: 100%;
  background: #d70035;
  font-weight: 700;
  line-height: 1.4;
  overflow: hidden;
  box-sizing: border-box;
}

/* シアン層 */
.bg_glitch::before {
  color: #00eaff;
  mix-blend-mode: screen;
  animation: bg-cyan 2s infinite;
}

/* イエロー層 */
.bg_glitch::after {
  color: #ffff00;
  mix-blend-mode: screen;
  animation: bg-red 2s infinite;
}

/* シアン層アニメーション */
@keyframes bg-cyan {

  0%,
  43%,
  49%,
  72%,
  78%,
  100% {
    clip-path: inset(0 0 100% 0);
    transform: translateX(0);
  }

  44% {
    clip-path: inset(20% 0 50% 0);
    transform: translateX(-4px);
  }

  45% {
    clip-path: inset(50% 0 20% 0);
    transform: translateX(5px);
  }

  45.5% {
    clip-path: inset(10% 0 70% 0);
    transform: translateX(-3px);
  }

  46% {
    clip-path: inset(70% 0 10% 0);
    transform: translateX(4px);
  }

  46.5% {
    clip-path: inset(30% 0 40% 0);
    transform: translateX(-5px);
  }

  47% {
    clip-path: inset(60% 0 5% 0);
    transform: translateX(3px);
  }

  47.5% {
    clip-path: inset(0 0 100% 0);
    transform: translateX(0);
  }

  73% {
    clip-path: inset(0 0 100% 0);
    transform: translateX(0);
  }

  73.5% {
    clip-path: inset(40% 0 30% 0);
    transform: translateX(-6px);
  }

  74% {
    clip-path: inset(15% 0 60% 0);
    transform: translateX(4px);
  }

  74.5% {
    clip-path: inset(55% 0 15% 0);
    transform: translateX(-3px);
  }

  75% {
    clip-path: inset(0 0 100% 0);
    transform: translateX(0);
  }
}

/* イエロー層アニメーション */
@keyframes bg-red {

  0%,
  43%,
  49%,
  72%,
  78%,
  100% {
    clip-path: inset(0 0 100% 0);
    transform: translateX(0);
  }

  44% {
    clip-path: inset(50% 0 20% 0);
    transform: translateX(5px);
  }

  45% {
    clip-path: inset(20% 0 50% 0);
    transform: translateX(-4px);
  }

  45.5% {
    clip-path: inset(75% 0 5% 0);
    transform: translateX(3px);
  }

  46% {
    clip-path: inset(5% 0 75% 0);
    transform: translateX(-5px);
  }

  46.5% {
    clip-path: inset(40% 0 30% 0);
    transform: translateX(4px);
  }

  47% {
    clip-path: inset(10% 0 55% 0);
    transform: translateX(-3px);
  }

  47.5% {
    clip-path: inset(0 0 100% 0);
    transform: translateX(0);
  }

  73% {
    clip-path: inset(0 0 100% 0);
    transform: translateX(0);
  }

  73.5% {
    clip-path: inset(20% 0 55% 0);
    transform: translateX(5px);
  }

  74% {
    clip-path: inset(60% 0 10% 0);
    transform: translateX(-4px);
  }

  74.5% {
    clip-path: inset(35% 0 40% 0);
    transform: translateX(3px);
  }

  75% {
    clip-path: inset(0 0 100% 0);
    transform: translateX(0);
  }
}

/* ============================================
   UMAYOMI - カウントアップ
   使い方:
   <span class="countup" data-target="10000" data-suffix="人以上">0</span>

   オプション:
   data-target   : 目標数値（必須）
   data-suffix   : 後置き単位（例: 人以上、%）
   data-prefix   : 前置き（例: ¥）
   data-comma    : "true" でカンマ区切り
   data-duration : アニメーション時間ms（デフォルト: 2000）
   ============================================ */

.countup {
  display: inline-block;
  font-weight: 700;
  color: var(--color-text-primary);
}

.countup.done {
  animation: cu-flash 0.4s ease;
}

@keyframes cu-flash {
  0% {
    opacity: 1;
  }

  30% {
    opacity: 0.4;
  }

  100% {
    opacity: 1;
  }
}

.under_red {
  background-image: linear-gradient(var(--red), var(--red));
  background-size: 100% 94%;
  /* ← ここで被り量を変える */
  background-position: 0 100%;
  background-repeat: no-repeat;
  padding: 5px 6px;
}

.under_blue {
  background-image: linear-gradient(var(--blue), var(--blue));
  background-size: 100% 94%;
  /* ← ここで被り量を変える */
  background-position: 0 100%;
  background-repeat: no-repeat;
  padding: 5px 6px;
}

.under_yellow {
  background-image: linear-gradient(var(--yellow), var(--yellow));
  background-size: 100% 94%;
  /* ← ここで被り量を変える */
  background-position: 0 100%;
  background-repeat: no-repeat;
  padding: 5px 6px;
}

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

  .under_red,
  .under_blue,
  .under_yellow {
    padding: 3px 0px;
    background-size: 100% 90%;
  }
  
}



/*header*/
.head_wrap {
  background: url("./../../../img/users/index/proposal_pc.png") center top no-repeat #000;
  padding: 20px 0;
  position: relative;
  z-index: 999;
}

@media screen and (max-width: 640px) {
  .head_wrap {
    background: url("./../../../img/users/index/proposal_sp.png") center top no-repeat #000;
    background-size: contain;
    padding: 10px 0 0;
  }
}

.header_inner {
  width: 920px;
  margin: 0 auto;
}

.head_text {
  width: 100%;
}

.head_logo {
  width: 70%;
  margin: 20px auto;
}

.head_form {
  width: 90%;
  margin: 20px auto 0;
  position: relative;
  border-radius: 20px;
  background-color: #1c1c1c;
  background-image:
    repeating-linear-gradient(-45deg,
      transparent, transparent 3px,
      rgba(255, 255, 255, .04) 3px, rgba(255, 255, 255, .04) 4px),
    repeating-linear-gradient(45deg,
      transparent, transparent 3px,
      rgba(255, 255, 255, .04) 3px, rgba(255, 255, 255, .04) 4px);
}

.form_title {
  font-size: 2rem;
  text-align: center;
}

.form_title span {
  padding: 0px 30px 6px;
  background: #fcc800;
  border-radius: 60px;
}

.form_inner {
  padding: 10px 20px;
}

.form_text {
  font-size: 1.4rem;
  text-align: center;
  margin: 20px auto 18px;
  padding: 10px;
  border-radius: 16px;
  background-color: #fafafa;
  background-image: repeating-linear-gradient(45deg,
      transparent,
      transparent 10px,
      rgba(0, 0, 0, .06) 10px,
      rgba(0, 0, 0, .06) 11px);
  font-weight: 800;
}

.form_text>ul {
  list-style: none;
  padding: 0;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.form_text>ul>li {
  display: flex;
  align-items: center;
  /* 複数行でも先頭に揃える */
  gap: 0.3em;
  margin: 0.2em;
}

.form_text>ul>li::before {
  content: "✅";
  /* 好きな記号・絵文字に変えられる */
  flex-shrink: 0;
  /* ← これが崩れ防止の核心 */
  line-height: 1.6;
  /* テキストと高さを合わせる */
}

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

  .header_inner {
    width: 100%;
  }

}

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

  .head_logo {
    width: 96%;
    margin: 10px auto;
  }

  .form_text {
    font-size: 1rem;
    padding: 10px 2px;
    margin: 30px auto 20px;
  }

  .form_text>ul {
    max-width: 320px;
  }

  .head_form {
    width: 100%;
    margin: 10px auto 0;
    position: relative;
    border-radius: 20px 20px 0px 0px;
  }

  .form_inner {
    padding: 10px 10px;
  }

  .form_text_1 {
    font-size: 1.2rem;
  }

  .form_text_2 {
    font-size: 1.2rem;
  }

}


/*subhead*/
.sub_head {
  width: 100%;
  background: #1a1a18;
  color: #fffff9;
}

.glitch_body {
  background: var(--sb_bg);
  display: grid;
  align-items: baseline;
  justify-content: center;
  position: relative;
}

.glitch-rgb {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3.6rem;
  font-weight: 900;
  color: var(--white);
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  animation: glitch-rgb-base 2s infinite;
}

.glitch-rgb-middle {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  animation: glitch-rgb-base 2s infinite;
}

.glitch-rgb-small {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--white);
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  animation: glitch-rgb-base 2s infinite;
}

@media screen and (max-width: 640px) {
  .glitch-rgb {
    font-size: 3rem;
  }

  .glitch-rgb-middle {
    font-size: 2.6rem;
  }

  .glitch-rgb-small {
    font-size: 2.0rem;
  }

}

.glitch-rgb::before,
.glitch-rgb::after,
.glitch-rgb-small::before,
.glitch-rgb-small::after,
.glitch-rgb-middle::before,
.glitch-rgb-middle::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.glitch-rgb::before,
.glitch-rgb-small::before,
.glitch-rgb-middle::before {
  color: var(--cyan);
  animation: glitch-rgb-before 2s infinite;
  clip-path: polygon(0 15%, 100% 15%, 100% 40%, 0 40%);
}

.glitch-rgb::after,
.glitch-rgb-small::after,
.glitch-rgb-middle::after {
  color: var(--magenta);
  animation: glitch-rgb-after 2s infinite;
  clip-path: polygon(0 55%, 100% 55%, 100% 80%, 0 80%);
}

@keyframes glitch-rgb-base {

  0%,
  90%,
  100% {
    transform: none;
  }

  91% {
    transform: skewX(-1deg);
  }

  93% {
    transform: skewX(1deg);
  }

  95% {
    transform: none;
  }
}

@keyframes glitch-rgb-before {

  0%,
  88%,
  100% {
    transform: none;
    opacity: 0;
  }

  89% {
    transform: translate(-4px, 0);
    opacity: 0.8;
    clip-path: polygon(0 10%, 100% 10%, 100% 35%, 0 35%);
  }

  91% {
    transform: translate(4px, 0);
    opacity: 0.8;
    clip-path: polygon(0 60%, 100% 60%, 100% 85%, 0 85%);
  }

  93% {
    transform: translate(-2px, 0);
    opacity: 0.8;
    clip-path: polygon(0 30%, 100% 30%, 100% 55%, 0 55%);
  }

  95% {
    transform: none;
    opacity: 0;
  }
}

@keyframes glitch-rgb-after {

  0%,
  88%,
  100% {
    transform: none;
    opacity: 0;
  }

  89% {
    transform: translate(4px, 0);
    opacity: 0.8;
    clip-path: polygon(0 50%, 100% 50%, 100% 75%, 0 75%);
  }

  91% {
    transform: translate(-4px, 0);
    opacity: 0.8;
    clip-path: polygon(0 5%, 100% 5%, 100% 30%, 0 30%);
  }

  93% {
    transform: translate(2px, 0);
    opacity: 0.8;
    clip-path: polygon(0 70%, 100% 70%, 100% 95%, 0 95%);
  }

  95% {
    transform: none;
    opacity: 0;
  }
}

.glitch_body::before {
  content: "";
  position: absolute;
  height: 60px;
  width: 100%;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  background-color: var(--sb_bg);
  left: 0;
  bottom: -59px;
}

@media screen and (max-width: 640px) {
  .glitch_body::before {
    content: "";
    position: absolute;
    height: 40px;
    width: 100%;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
    background-color: var(--sb_bg);
    left: 0;
    bottom: -39px;
  }
}

/*メインセクション*/
.main_section {
  width: 100%;
  margin: 0 auto;
  padding: 80px 0 20px;
}

.section_content {
  color: #f0f0f0;
  max-width: 920px;
  width: 90%;
  margin: 0 auto;
  font-family: "LINE Seed JP", sans-serif;
  font-weight: 900;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 640px) {
  .main_section {
    padding: 80px 0 20px;
  }

}




/*レイアウト系*/
.card_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 100px auto 0;
}

@media (max-width: 640px) {
  .card_grid {
    grid-template-columns: 1fr;
  }
}

#sec_1 {
  position: relative;
  background: url("./../../../img/users/index/bg_pc_normal.jpg") center top;
  background-size: cover;
  background-attachment: fixed;
  z-index: 0;
}

#sec_1::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #101010be 1px, #00000066 1px);
  background-size: 3px 3px;
  z-index: -1;
}

#sec_1 .section_content {
  text-align: center;
}

@media screen and (max-width: 640px) {
  #sec_1 .section_content {
  text-align: initial;
}
}

#sec_2 {
  position: relative;
  background: url("./../../../img/users/index/bg_pc_dark.jpg") center top;
  background-size: cover;
  background-attachment: fixed;
  z-index: 0;
  overflow: hidden;
}

/* フェード用 */
#sec_2::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("./../../../img/users/index/bg_pc_light.jpg") center top;
  background-size: cover;
  background-attachment: fixed;
  opacity: 0;
  z-index: -2;
  pointer-events: none;
}

#sec_2::after {
  opacity: var(--bg-opacity, 0);
}

/* ドットは一番上 */
#sec_2::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #8b8b8b52 1px, transparent 2px);
  background-size: 5px 5px;
  z-index: -1;
}

#sec_3 {
  position: relative;
  background: url("./../../../img/users/index/bg_pc_normal.jpg") center top;
  background-size: cover;
  background-attachment: fixed;
  z-index: 0;
}

#sec_3::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #101010be 1px, #00000066 1px);
  background-size: 3px 3px;
  z-index: -1;
}

#sec_4 {
  position: relative;
  background: url("./../../../img/users/index/proposal_pc.png") center top;
  background-size: cover;
  background-attachment: fixed;
  z-index: 0;
}

#sec_4::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #161616be 1px, #00000073 1px);
  background-size: 4px 2px;
  z-index: -1;
}

#sec_5 {
  position: relative;
  background: url("./../../../img/users/index/bg_pc_white.jpg") center top;
  background-size: cover;
  background-attachment: fixed;
  z-index: 0;
}

#sec_6 {
  position: relative;
  background: url("./../../../img/users/index/bg_pc_white.jpg") center top;
  background-size: cover;
  background-attachment: fixed;
  z-index: 0;
}


#sec_5::before,
#sec_6::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #000000c7 1px, #ffffff00 1px);
  background-size: 3px 3px;
  z-index: -1;
}

#sec_7 {
  position: relative;
  background: url("./../../../img/users/index/bg_pc_light.jpg") center top;
  background-size: cover;
  background-attachment: fixed;
  z-index: 0;
}

#sec_7::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #8b8b8b52 1px, transparent 2px);
  background-size: 5px 5px;
  z-index: -1;
}

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

  #sec_1 {
    background: url("./../../../img/users/index/bg_sp_normal.jpg");
    background-size: cover;
    background-attachment: fixed;
  }

  #sec_2 {
    background: url("./../../../img/users/index/bg_sp_dark.jpg");
    background-size: cover;
    background-attachment: fixed;
  }

  #sec_2::after {
    background: url("./../../../img/users/index/bg_sp_light.jpg");
    background-size: cover;
    background-attachment: fixed;
  }

  #sec_3 {
    background: url("./../../../img/users/index/bg_sp_normal.jpg");
    background-size: cover;
    background-attachment: fixed;
  }

  #sec_4 {
    background: url("./../../../img/users/index/proposal_sp.png");
    background-size: cover;
    background-attachment: fixed;
  }

  #sec_5 {
    background: url("./../../../img/users/index/bg_sp_white.jpg");
    background-size: cover;
    background-attachment: fixed;
  }

  #sec_6 {
    background: url("./../../../img/users/index/bg_sp_white.jpg");
    background-size: cover;
    background-attachment: fixed;
  }

  #sec_7 {
    background: url("./../../../img/users/index/bg_sp_light.jpg");
    background-size: cover;
    background-attachment: fixed;
  }

}

/*スライドインバナー*/
.slide_banner {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  position: fixed;
  /* 画面に対して固定 */
  bottom: 20px;
  /* 下からの距離 */
  left: 20px;
  /* 左からの距離 */
  z-index: 100;
  /* 他の要素の上に表示する */
  max-width: 300px;
  width: 40%;
}

.slide_banner.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.card_grid>div {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.card_grid>div.is-visible {
  opacity: 1;
  transform: translateX(0);
}


.card {
  background: rgba(255, 245, 230, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(255, 220, 160, 0.22);
  padding: 1.75rem 1.75rem 1.5rem;
  max-width: 800px;
  width: 100%;
  margin: 50px auto 0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #c4a880;
}

.eyebrow {
  letter-spacing: 0.18em;
  color: #d4a46a;
  margin-bottom: 0.7rem;
  font-weight: 400;
}

.card_title {
  color: #f5e8d0;
  line-height: 1.65;
  margin: 0 0 1.1rem;
  border-left: 3px solid #c08840;
  padding-left: 0.75rem;
  font-size: 1.2rem;
}

.card_under {
  margin-top: 1.1rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 220, 160, 0.18);
  display: flex;
  justify-content: flex-end;
}

.review-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.04);
  padding: 1.5rem;
  max-width: 520px;
  width: 100%;
}

.review-user-info {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #f0f0f0;
}

.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f0e8dc;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-avatar svg {
  width: 18px;
  height: 18px;
}

.review-meta {
  display: flex;
  gap: 8px;
  align-items: center;
}

.review-badge {
  font-weight: 500;
  color: #7a5028;
  background: #faf0e6;
  border: 1px solid #e8d8c4;
  border-radius: 20px;
  padding: 2px 11px;
  letter-spacing: 0.06em;
}

.review-text {
  color: #3a3028;
  margin: 0 0;
}


.review-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.04);
  padding: 1.5rem;
  max-width: 800px;
  margin: 50px auto 0;
  width: 100%;
}

.review-user-info {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #f0f0f0;
}

.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f0e8dc;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-avatar svg {
  width: 18px;
  height: 18px;
}

.review-meta {
  display: flex;
  gap: 8px;
  align-items: center;
}

.review-badge {
  font-weight: 500;
  color: #7a5028;
  background: #faf0e6;
  border: 1px solid #e8d8c4;
  border-radius: 20px;
  padding: 2px 11px;
  letter-spacing: 0.06em;
}

.review-text {
  color: #3a3028;
}















/*基本フェイド*/

.fade {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade.active {
  opacity: 1;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

/* 左からスライドイン */
.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-left.active {
  opacity: 1;
  transform: translateX(0);
}

/* 右からスライドイン */
.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.slide-in-right.active {
  opacity: 1;
  transform: translateX(0px);
}

/* 拡大フェードイン */
.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scale-in.active {
  opacity: 1;
  transform: scale(1);
}

.arrow {
  text-align: center;
  color: white;
  font-size: 2rem;
  animation: bounce 2s infinite;
}

.hit_set{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background: #FFFFFF;
    border-radius: 10px;
    overflow: inherit;
    color: #428bca;
    box-shadow: 0px 0px 10px rgba(125,179,200, 0.10);
    margin: 4% auto 4%;
    width: 100%;
    text-shadow: none;
}

.hit_set .txt{
    width: 100%;
    text-align: center;
    padding: 0;
}
.hit_set .m1{
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.3;
    margin: 3% 0 0% 0;
}
.hit_set .m2{
    color: #F87171;
    margin: 0 0 3% 0;
    display: flex;
    justify-content: center;
    align-items: baseline;
}
.hit_set .m2 .get{
    background: #3EFF86;
    color: #FFF;
    border-radius: 50px;
    width: 120px;
    align-self: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 0 3%;
    padding: 0 0 0.5% 0;
}
.hit_set .th{
    width: 100%;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
}

.hit_set .th img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.qr-wrapper {
    position: relative;
    line-height: 0;        /* 画像下の隙間を排除 */
}

.qr-btn {
    display: block;
    width: 100%;           /* 親要素に合わせる */
    height: auto;
}

.overlay-qr {
    position: absolute;
    top: 50%;
    left: 9.5%;
    transform: translate(-50%, -50%);
    width: 13%;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}