@charset "UTF-8";

/*
  背景画像を加工せず、そのまま固定表示するためのCSSです。
  グラデーション、opacity、filter、blend-modeは使用していません。
*/

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  background: #000;
}
a {
  overflow-wrap: anywhere;
  word-break: break-word;
}
.fixed-background {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.fixed-background img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  filter: none;
  mix-blend-mode: normal;
  transform: none;
}

/* 背景の上に余計な疑似要素を作らない */
.fixed-background::before,
.fixed-background::after {
  content: none;
}

.nav-link,
.mobile-nav-link {
  transition: opacity 0.2s ease;
}

.nav-link:hover,
.mobile-nav-link:hover {
  opacity: 0.65;
}

@media (max-width: 767px) {
  .fixed-background img {
    object-position: center;
  }
}

/* キービジュアル登場アニメーション */
.key-visual {
  width: 100%;
  max-width: 1600px;
  opacity: 0;
  transform: translateY(40px) scale(0.85) rotate(-3deg);
  animation:
    keyVisualEntrance 1.4s cubic-bezier(0.22, 1, 0.36, 1) forwards,
    keyVisualFloat 4s ease-in-out 1.6s infinite;
  transform-origin: center center;
  will-change: transform, opacity;
}

@keyframes keyVisualEntrance {
  0% {
    opacity: 0;
    transform: translateY(80px) scale(0.6) rotate(-8deg);
  }

  45% {
    opacity: 1;
    transform: translateY(-18px) scale(1.12) rotate(2deg);
  }

  62% {
    transform: translateY(10px) scale(0.92) rotate(-1deg);
  }

  76% {
    transform: translateY(-6px) scale(1.06) rotate(0.6deg);
  }

  88% {
    transform: translateY(3px) scale(0.98);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0);
  }
}

/* 登場後のゆるい浮遊 */
@keyframes keyVisualFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(-10px) rotate(0.3deg);
  }
}

/* 動きを減らす設定 */
@media (prefers-reduced-motion: reduce) {
  .key-visual {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
.fixed-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 25vw;
  max-width: 362px;
  z-index: 100;
}

.fixed-banner img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 767px) {
  .fixed-banner {
    right: 10px;
    bottom: 10px;
    width: 55vw;
    max-width: 300px;
  }
}

/* ========================================
   コラボグッズ販売店舗一覧
======================================== */

.collabo-shop-list {
    display: block;
    width: 100%;
    max-width: none;
    margin: 0px 0 0;
    overflow: hidden;
    border: 1px solid #dce7f2;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 12px 35px rgba(20, 56, 100, 0.08);
}

.collabo-shop-list__table {
    display: table;
    width: 100%;
    margin: 0;
    border: 0;
    border-spacing: 0;
    border-collapse: collapse;
    table-layout: fixed;
    background: #fff;
    color: #12213a;
}

.collabo-shop-list__table tbody {
    display: table-row-group;
}

.collabo-shop-list__table tr {
    display: table-row;
    background: #fff;
    transition: background-color 0.25s ease;
}

.collabo-shop-list__table tr:nth-child(even) {
    background: #f6faff;
}

.collabo-shop-list__table tr:hover {
    background: #edf8ff;
}

.collabo-shop-list__table td {
    display: table-cell;
    box-sizing: border-box;
    padding: 20px 18px;
    border: 0;
    border-bottom: 1px solid #e3edf5;
    background: transparent;
    color: #526177;
    font-size: 16px;
    line-height: 1.7;
    vertical-align: middle;
    overflow-wrap: anywhere;
}

/* 店舗名 */

.collabo-shop-list__table td:nth-child(1) {
    position: relative;
    width: 32%;
    padding-left: 48px;
    color: #10213c;
    font-weight: 700;
}

.collabo-shop-list__table td:nth-child(1)::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 24px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #168fce;
    transform: translateY(-50%);
}

/* 住所 */

.collabo-shop-list__table td:nth-child(2) {
    width: auto;
}

/* Google MAP */

.collabo-shop-list__table td:nth-child(3) {
    width: 190px;
    padding-right: 24px;
    text-align: center;
    white-space: nowrap;
}

.collabo-shop-list__table td:nth-child(3) a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 155px;
    max-width: 100%;
    box-sizing: border-box;
    padding: 11px 14px;
    border: 1px solid #158bc9;
    border-radius: 999px;
    background: #fff;
    color: #0879b6;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.collabo-shop-list__table td:nth-child(3) a::before {
    content: "";
    width: 10px;
    height: 10px;
    margin-right: 9px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #efa936;
}

.collabo-shop-list__table td:nth-child(3) a:hover {
    background: #158bc9;
    color: #fff;
    box-shadow: 0 7px 18px rgba(21, 139, 201, 0.25);
    transform: translateY(-2px);
}

.collabo-shop-list__table tr:last-child td {
    border-bottom: 0;
}


/* ========================================
   タブレット
======================================== */

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

    .collabo-shop-list {
        width: 100%;
    }

    .collabo-shop-list__table td {
        padding: 18px 14px;
        font-size: 14px;
    }

    .collabo-shop-list__table td:nth-child(1) {
        width: 32%;
        padding-left: 40px;
    }

    .collabo-shop-list__table td:nth-child(1)::before {
        left: 19px;
    }

    .collabo-shop-list__table td:nth-child(3) {
        width: 165px;
        padding-right: 14px;
    }

    .collabo-shop-list__table td:nth-child(3) a {
        width: 140px;
        padding: 10px;
        font-size: 13px;
    }
}


/* ========================================
   スマートフォン
======================================== */

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

    .collabo-shop-list {
        width: calc(100% - 30px);
        margin: 35px auto 0;
        overflow: visible;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .collabo-shop-list__table,
    .collabo-shop-list__table tbody,
    .collabo-shop-list__table tr,
    .collabo-shop-list__table td {
        display: block;
        width: 100%;
    }

    .collabo-shop-list__table {
        background: transparent;
        table-layout: auto;
    }

    .collabo-shop-list__table tr {
        box-sizing: border-box;
        margin-bottom: 18px;
        overflow: hidden;
        border: 1px solid #dce7f2;
        border-radius: 14px;
        background: #fff;
        box-shadow: 0 7px 20px rgba(20, 56, 100, 0.07);
    }

    .collabo-shop-list__table tr:nth-child(even),
    .collabo-shop-list__table tr:hover {
        background: #fff;
    }

    .collabo-shop-list__table td {
        box-sizing: border-box;
        padding: 8px 18px;
        border: 0;
        font-size: 14px;
    }

    .collabo-shop-list__table td:nth-child(1) {
        width: 100%;
        padding: 17px 18px 8px 40px;
        font-size: 16px;
    }

    .collabo-shop-list__table td:nth-child(1)::before {
        left: 20px;
    }

    .collabo-shop-list__table td:nth-child(2) {
        width: 100%;
        padding-top: 0;
    }

    .collabo-shop-list__table td:nth-child(3) {
        width: 100%;
        padding: 10px 18px 18px;
        text-align: left;
        white-space: normal;
    }

    .collabo-shop-list__table td:nth-child(3) a {
        width: 100%;
        max-width: none;
        padding: 14px 16px;
    }
}