@charset "UTF-8";

/* =========================================
   1. Variables
   ========================================= */
:root {
  --color-ts-red: #eb0a1e;
  --color-ts-red-light: #fcdadd;
  --color-ts-orange: #ea8706;
  --color-ts-blue: #0faedb;
  --color-ts-green: #1b8d50;

  --color-bg-gray: #efede9;
  --color-text-main: #333;
  --color-text-gray: #666;
  --color-text-dark-gray: #4b5563;
  --color-text-black-80: rgba(0, 0, 0, 0.8);
  --color-border: #e2e0dc;
  --color-step-bg: #e2e0dc;

  --shadow-card:
    0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-float: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
}

body {
  background-color: var(--color-bg-gray);
}

/* =========================================
   2. Objects (OOCSS Primitives)
   ========================================= */
/* 縦積み＋一定の縦間隔 */
.o-stack {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* 横並びの塊＋折返し＋一定の間隔 */
.o-cluster {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}

/* 画面幅で1→2→3列に自動切替 */
.o-switcher {
  display: grid;
  gap: var(--switcher-gap, 16px);
  grid-template-columns: repeat(
    auto-fit,
    minmax(var(--switcher-min, 200px), 1fr)
  );
}

/* 内側余白＋角丸＋境界線の箱 */
.o-box {
  padding: var(--box-p, 16px);
  border-radius: var(--box-r, 8px);
  border: 1px solid var(--box-bc, var(--color-border));
  background-color: var(--box-bg, transparent);
}

/* 中央寄せ＆最大幅 */
.o-center {
  box-sizing: border-box;
  margin-inline: auto;
  max-width: var(--center-w, 480px);
  display: flex;
  flex-direction: column;
}

/* =========================================
   3. Skins (色 / 見た目)
   ========================================= */
/* Backgrounds */
.s-bg-white {
  --box-bg: #fff;
  background-color: #fff;
}

.s-bg-gray {
  --box-bg: var(--color-bg-gray);
  background-color: var(--color-bg-gray);
}

.s-bg-step {
  --box-bg: var(--color-step-bg);
  background-color: var(--color-step-bg);
}

.s-bg-dark {
  background-color: #333;
}

.s-bg-transparent {
  --box-bg: transparent;
  background-color: transparent;
}

.s-bg-red {
  background-color: var(--color-ts-red);
}

.s-bg-blue {
  background-color: var(--color-ts-blue);
}

/* Borders */
.s-border-transparent {
  --box-bc: transparent;
  border-color: transparent;
}

.s-border-none {
  border: none;
}

.s-border-red-light {
  --box-bc: var(--color-ts-red-light);
  border-color: var(--color-ts-red-light);
}

/* Text Colors */
.s-text-red {
  color: var(--color-ts-red);
}

.s-text-blue {
  color: var(--color-ts-blue);
}

.s-text-green {
  color: var(--color-ts-green);
}

.s-text-orange {
  color: var(--color-ts-orange);
}

.s-text-gray {
  color: var(--color-text-gray);
}

.s-text-dark-gray {
  color: var(--color-text-dark-gray);
}

.s-text-main {
  color: var(--color-text-main);
}

.s-text-white {
  color: #fff;
}

.s-text-black {
  color: #000;
}

/* Shadows */
.s-shadow-card {
  box-shadow: var(--shadow-card);
}

.s-shadow-float {
  box-shadow: var(--shadow-float);
}

.s-shadow-sm {
  box-shadow: var(--shadow-sm);
}

.s-shadow-inset {
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.03);
}

.s-shadow-none {
  box-shadow: none;
}

/* Special Backgrounds & Patterns */
.s-gradient {
  background: linear-gradient(135deg, #fffafa 0%, #fff 100%);
}

.s-card-special {
  background-image: radial-gradient(
    var(--color-ts-red-light) 0.5px,
    transparent 0.5px
  );
  background-size: 10px 10px;
}

.s-card-normal {
  background-image: radial-gradient(
    rgba(15, 174, 219, 0.2) 0.5px,
    transparent 0.5px
  );
  background-size: 10px 10px;
}

.s-badge-orange-bg {
  background-color: rgba(234, 135, 6, 0.1);
  border: 1px solid rgba(234, 135, 6, 0.3);
}

.s-badge-white-bg {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  box-shadow: var(--shadow-sm);
}

.s-badge-red {
  background-color: var(--color-ts-red);
  color: #fff;
}

.s-badge-blue {
  background-color: var(--color-ts-blue);
  color: #fff;
}

/* =========================================
   4. State / Utility (一時状態・小ワザ)
   ========================================= */
.is-hidden {
  display: none !important;
}

/* Utilities - Positioning */
.u-absolute {
  position: absolute;
}

.u-relative {
  position: relative;
}

/* Utilities - Flex/Grid */
.u-flex-1 {
  flex: 1;
}

.u-w-full {
  width: 100%;
}

.u-justify-center {
  justify-content: center;
}

.u-justify-between {
  justify-content: space-between;
}

.u-align-center {
  align-items: center;
}

.u-overflow-hidden {
  overflow: hidden;
}

/* gap */

.u-gap-4 {
  gap: 4px;
}
.u-gap-6 {
  gap: 6px;
}

.u-gap-8 {
  gap: 8px;
}

.u-gap-12 {
  gap: 12px;
}

/* Utilities - Typography */
.u-text-center {
  text-align: center;
}

.u-text-left {
  text-align: left;
}

.u-font-bold {
  font-weight: bold;
}

.u-font-600 {
  font-weight: 600;
}

.u-font-normal {
  font-weight: normal;
}

.u-uppercase {
  text-transform: uppercase;
}

.u-tracking-wide {
  letter-spacing: 0.1em;
}

.u-underline {
  text-decoration: underline;
}

.u-lh-14 {
  line-height: 1.4;
}

.u-line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Utilities - Spacing (margin/padding) */
.u-m-auto {
  margin: auto;
}

.u-mt-0 {
  margin-top: 0;
}

.u-mb-0 {
  margin-bottom: 0;
}

.u-my-4 {
  margin-top: 4px;
  margin-bottom: 4px;
}

.u-my-8 {
  margin-top: 8px;
  margin-bottom: 8px;
}

.u-my-16 {
  margin-top: 16px;
  margin-bottom: 16px;
}

.u-my-24 {
  margin-top: 24px;
  margin-bottom: 24px;
}

.u-mb-4 {
  margin-bottom: 4px;
}

.u-mb-8 {
  margin-bottom: 8px;
}

.u-mb-12 {
  margin-bottom: 12px;
}

.u-mb-16 {
  margin-bottom: 16px;
}

.u-mb-20 {
  margin-bottom: 20px;
}

.u-mb-24 {
  margin-bottom: 24px;
}

.u-mb-32 {
  margin-bottom: 32px;
}

.u-mt-16 {
  margin-top: 16px;
}

.u-mt-24 {
  margin-top: 24px;
}

.u-mt-32 {
  margin-top: 32px;
}

.u-p-0 {
  padding: 0;
}

.u-p-8 {
  padding: 8px;
}

.u-p-16 {
  padding: 16px;
}

.u-p-20 {
  padding: 20px;
}

.u-p-24-20 {
  padding: 24px 20px 20px;
}

.u-pt-8 {
  padding-top: 8px;
}

.u-px-8 {
  padding-inline: 8px;
}

.u-px-16 {
  padding-inline: 16px;
}

.u-px-20 {
  padding-inline: 20px;
}

.u-py-4 {
  padding-top: 4px;
  padding-bottom: 4px;
}

.u-py-20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.u-pb-16 {
  padding-bottom: 16px;
}
.u-pb-24 {
  padding-bottom: 24px;
}

.u-pb-32 {
  padding-bottom: 32px;
}

.u-pb-40 {
  padding-bottom: 40px;
}

.u-p-24-8 {
  padding: 24px 8px;
}

/* Utilities - Borders */
.u-radius-16 {
  border-radius: 16px;
}

.u-radius-24 {
  border-radius: 24px;
}

.u-border-t {
  border-top: 1px solid var(--color-border);
}

/* 区切り線用 */
.u-border-b-none {
  border-bottom: none;
}

/* Utilities - Specific Layout Adjustments */
.u-pos-badge {
  top: -14px;
  left: 24px;
  z-index: 10;
}

.u-pos-badge-inner {
  top: 12px;
  left: 12px;
  z-index: 10;
}

.u-pos-icon-left {
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.u-pos-icon-right {
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.u-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 0 auto;
  background-color: #f8fafc;
  color: #cbd5e1;
}

/* Utilities - Animation */
.u-fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

.u-anim-bounce {
  animation: bounce 2s infinite ease-in-out;
}

.u-anim-shake {
  animation: shake 0.5s infinite;
}

/* Keyframes */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes shake {
  0% {
    transform: translate(1px, 1px) rotate(0deg);
  }

  10% {
    transform: translate(-1px, -2px) rotate(-1deg);
  }

  20% {
    transform: translate(-3px, 0px) rotate(1deg);
  }

  30% {
    transform: translate(3px, 2px) rotate(0deg);
  }

  40% {
    transform: translate(1px, -1px) rotate(1deg);
  }

  50% {
    transform: translate(-1px, 2px) rotate(-1deg);
  }

  60% {
    transform: translate(-3px, 1px) rotate(0deg);
  }

  70% {
    transform: translate(3px, 1px) rotate(-1deg);
  }

  80% {
    transform: translate(-1px, -1px) rotate(1deg);
  }

  90% {
    transform: translate(1px, 2px) rotate(0deg);
  }

  100% {
    transform: translate(1px, -2px) rotate(-1deg);
  }
}

/* =========================================
   5. Components (意味を持つ塊・BEM)
   ========================================= */
/* Icon */
.c-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  min-width: 1em;
  min-height: 1em;
  fill: currentColor;
  vertical-align: -0.125em;
  overflow: visible;
  line-height: 1;
  pointer-events: none;
}

.c-icon--sm {
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
}

.c-icon--md {
  width: 30px;
  height: 30px;
}

.c-icon--lg {
  width: 72px;
  height: 72px;
  min-width: 72px;
  min-height: 72px;
}

/* Badges */
.c-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.c-badge--pill {
  border-radius: 99px;
  padding: 4px 12px;
  font-size: 14px;
  font-weight: bold;
}

.c-badge--sm {
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 12px;
}

.c-badge--md {
  border-radius: 4px;
  padding: 4px 12px;
  font-size: 14px;
  font-weight: bold;
}

.c-badge--tiny {
  border-radius: 99px;
  padding: 4px 12px;
  font-size: 10px;
  font-weight: bold;
}

/* Typography Components */
.c-title-xl {
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.05em;
}

.c-title-lg {
  font-size: 24px;
  letter-spacing: -0.05em;
}

.c-title-md {
  font-size: 16px;
  line-height: 1.4;
}

.c-title-sm {
  font-size: 14px;
}

.c-title-xs {
  font-size: 12px;
}

.c-text-md {
  font-size: 14px;
  line-height: 1.8;
}

.c-text-sm {
  font-size: 12px;
  line-height: 1.6;
}

.c-text-xs {
  font-size: 10px;
  line-height: 1.6;
}

/* Value Display */
.c-value {
  font-size: 16px;
  display: inline-flex;
  align-items: baseline;
}

.c-value__unit {
  font-size: 10px;
  margin-left: 2px;
}

.c-amount {
  font-size: 20px;
  letter-spacing: -0.05em;
}

.c-code {
  font-size: 22px;
  font-family: monospace;
  font-weight: bold;
  flex-grow: 1;
  text-align: center;
}

/* Links */
.c-link {
  font-size: 12px;
  font-weight: bold;
  text-decoration: underline;
  text-underline-offset: 4px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  transition: color 0.2s;
  text-decoration-color: var(--color-border);
}

.c-link:hover {
  color: var(--color-text-main);
}

.c-link-inline {
  font-size: 10px;
}

/* Buttons */
.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  border: 1px solid transparent;
}

.c-btn:active {
  transform: scale(0.98);
}

.c-btn--primary {
  width: 100%;
  padding: 18px;
  border-radius: 99px;
  font-size: 20px;
  border-color: var(--color-border);
}

.c-btn--primary.is-active {
  background-color: var(--color-ts-red);
  color: #fff;
  box-shadow: 0 4px 12px rgba(235, 10, 30, 0.3);
  border-color: var(--color-ts-red);
}

.c-btn--primary.is-disabled {
  background-color: #e2e8f0;
  color: #94a3b8;
  border-color: #cbd5e1;
  box-shadow: none;
  cursor: not-allowed;
  opacity: 0.8;
  pointer-events: none;
}

.c-btn--hotel {
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  font-size: 16px;
}

.c-btn--copy {
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 14px;
  border-color: #cbd5e1;
}

.c-btn--copy:hover {
  background-color: var(--color-bg-gray);
  color: var(--color-text-main);
  border-color: #94a3b8;
}

.c-btn--copy:active {
  transform: translateY(1px);
  box-shadow: none;
}

.c-btn--more {
  gap: 8px;
  font-size: 16px;
  padding: 10px 20px;
  border-radius: 99px;
  border-color: var(--color-ts-red);
  transition: background 0.2s;
}

.c-btn--more:hover {
  background-color: var(--color-bg-gray);
}

/* Forms */
.c-select {
  width: 100%;
  border: 2px solid var(--color-border);
  border-radius: 12px;
  padding: 14px 16px 14px 40px;
  font-size: 12px;
  font-weight: bold;
  transition: all 0.3s;
  appearance: none;
  outline: none;
  background-color: #fff;
}

.c-select:focus {
  border-color: var(--color-ts-red);
}

/* Gacha Visual */
.c-gacha-visual {
  width: 180px;
  height: 180px;
  margin: 0 auto 20px;
  padding: 10px;
  cursor: pointer;
}

.c-gacha-visual__circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 4px solid var(--color-bg-gray);
  box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.05),
    inset 0 2px 4px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.1s;
  background-color: #fff;
}

.c-gacha-visual:active .c-gacha-visual__circle {
  transform: scale(0.98);
}

.c-gacha-visual__icon {
  font-size: 10px;
  color: var(--color-ts-red);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Card Images */
.c-card__img-wrap {
  width: 100%;
  height: 176px;
}

.c-card__img-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Media Card (Drive) */
.c-media-card {
  display: flex;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  transition:
    transform 0.1s,
    opacity 0.2s;
}

.c-media-card:active {
  transform: scale(0.98);
}

.c-media-card:hover {
  opacity: 0.7;
}

.c-media-card__img {
  width: 120px;
  min-height: 80px;
  object-fit: cover;
  border-radius: 12px 0 0 12px;
}

.c-media-card__body {
  padding: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  flex: 1;
}

/* Accordion */
.c-accordion {
  list-style: none;
}

.c-accordion:not(:last-child) {
  border-bottom: 1px solid var(--color-border);
}

.c-accordion__summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 16px;
  cursor: pointer;
  list-style: none;
  font-size: 12px;
  font-weight: bold;
  color: var(--color-text-main);
}

.c-accordion__summary::-webkit-details-marker {
  display: none;
}

.c-accordion__summary::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-bottom: 2px solid #000;
  border-right: 2px solid #000;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  margin-right: 4px;
}

.c-accordion[open] > .c-accordion__summary::after {
  transform: rotate(-135deg) translateY(-2px);
}

/* List */
.c-list {
  text-align: left;
}

.c-list__item {
  color: var(--color-text-gray);
  line-height: 1.6;
  opacity: 0.8;
  margin-bottom: 0;
  padding-left: 1em;
  text-indent: -1em;
}

/* フッター利用条件など小さいテキスト用モディファイア */
.c-list--xs .c-list__item {
  font-size: 10px;
}

/* PC Notice (スマートフォン・タブレット専用案内) */
/* HTMLで is-hidden を付与してデフォルト非表示。PC判定時にJSで is-hidden を外して表示する */
.c-pc-notice {
  display: flex;
  flex-direction: column;
}

.c-pc-notice__heading {
  font-size: 20px;
  line-height: 1.6;
}

.c-pc-notice__qr {
  display: block;
  width: 240px;
  height: 240px;
  margin: 0 auto;
}

.c-pc-notice__sub {
  font-size: 14px;
  line-height: 1.4;
  color: var(--color-text-black-80);
}

.c-pc-notice__link {
  font-size: 14px;
  line-height: 1.4;
  color: var(--color-text-black-80);
  text-decoration: underline;
  text-underline-offset: 4px;
  overflow-wrap: anywhere;
}

/* PC Notice: ボタンサイズ調整用モディファイア */
.c-btn--pc-notice-back {
  max-width: 400px;
  font-size: 16px;
}

/* PC Notice: カード余白調整用モディファイア */
.o-box--pc-notice {
  --box-p: 20px 20px 24px;
  --box-r: 8px;
}

.o-center--pc-notice {
  --center-w: 1000px;
}

.breadcrumbs_area {
  display: none;
}
