@charset "UTF-8";
/*-------------------------------------------------
  TOKYO OUTLET WEEK 2026 Autumn & Winter TOKYO
  CSS Stylesheet
-------------------------------------------------*/
@import "reset.css";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700;800;900&family=Noto+Sans+JP:wght@300;400;500;700;900&display=swap');
@font-face {
  font-family: "futura-r";
  src: url(../font/texgyreadventor_regular_macroman/texgyreadventor-regular-webfont.woff) format("woff"), url(../font/texgyreadventor_regular_macroman/texgyreadventor-regular-webfont.ttf) format("truetype");
}
@font-face {
  font-family: "futura-b";
  src: url(../font/texgyreadventor_bold_macroman/texgyreadventor-bold-webfont.woff) format("woff"), url(../font/texgyreadventor_bold_macroman/texgyreadventor-bold-webfont.ttf) format("truetype");
}
:root {
  --color-primary: #FF68BF;
  --color-primary-dark: #E0277D;
  --color-primary-light: #FFECF4;
  --color-black: #111111;
  --color-dark: #222222;
  --color-gray-btn: #555555;
  --color-gray-bg: #F8F8F8;
  --color-gray-card: #EFEFEF;
  --color-gray-blob: #D6D6D6;
  --color-gray-text: #666666;
  --color-white: #FFFFFF;
  --font-en: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --font-ja: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', '游ゴシック Medium', sans-serif;
}

html {
  font-size: 16px;
  line-height: 1.6;
  margin: 0 !important;
  padding: 0;
  height: 100%;
  scroll-behavior: smooth;
  overflow-y: initial !important;
}

body {
  font-family: var(--font-ja);
  color: var(--color-black);
  background-color: var(--color-white);
  margin: 0;
  padding: 0;
  position: relative;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

* {
  box-sizing: border-box;
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

a:hover {
  opacity: 0.85;
}

.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

@media (max-width: 768px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}

/*-------------------------------------------------
  共通アニメーション & ユーティリティ
-------------------------------------------------*/
.fadein {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.fadein.active {
  opacity: 1;
  transform: translateY(0);
}

/* 見出し共通 */
.tow2026awSectionTitle {
  font-family: "futura-b";
  font-size: 48px;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.1;
  color: var(--color-black);
  margin: 0 0 6px 0;
  text-shadow: none;
}

.tow2026awSectionTitle--white {
  color: var(--color-white);
}

.tow2026awSectionSub {
  font-size: 14px;
  font-weight: 500;
  color: #888888;
  letter-spacing: 0.05em;
  margin: 0 0 32px 0;
}

.tow2026awSectionSub--white {
  color: rgba(255, 255, 255, 0.85);
}

/* ボタン共通 */
.tow2026awBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  border-radius: 9999px;
  padding: 14px 36px;
  transition: all 0.3s ease;
  font-size: 15px;
  letter-spacing: 0.04em;
}

.tow2026awBtn--pink {
  background-color: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(255, 59, 148, 0.35);
  border-radius: 50px;
}

.tow2026awBtn--pink:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 59, 148, 0.45);
}

.tow2026awBtn--pill {
  background-color: var(--color-gray-btn);
  color: var(--color-white);
  padding: 12px 32px;
  border-radius: 9999px;
  font-size: 14px;
}

.tow2026awBtn--pill:hover {
  background-color: var(--color-black);
  transform: translateY(-2px);
}

.tow2026awBtn--black {
  background-color: var(--color-black);
  color: var(--color-white);
  border-radius: 8px;
  padding: 14px 32px;
  font-size: 15px;
}

.tow2026awBtn--black:hover {
  background-color: var(--color-dark);
  transform: translateY(-2px);
}

/* 幾何学パターン・Blob背景 */
.bg-blob {
  position: absolute;
  background-color: var(--color-gray-blob);
  opacity: 0.7;
  pointer-events: none;
  z-index: 1;
  border-radius: 45% 55% 60% 40% / 50% 45% 55% 50%;
}

.pattern-pink-grid {
  position: absolute;
  width: 140px;
  height: 140px;
  background-image: 
    linear-gradient(45deg, var(--color-primary) 25%, transparent 25%), 
    linear-gradient(-45deg, var(--color-primary) 25%, transparent 25%), 
    linear-gradient(45deg, transparent 75%, var(--color-primary) 75%), 
    linear-gradient(-45deg, transparent 75%, var(--color-primary) 75%);
  background-size: 16px 16px;
  background-position: 0 0, 0 8px, 8px -8px, -8px 0px;
  opacity: 0.55;
  pointer-events: none;
}

.pattern-dots {
  position: absolute;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(#111 2px, transparent 2px);
  background-size: 12px 12px;
  opacity: 0.4;
  pointer-events: none;
}

/*-------------------------------------------------
  ヘッダー（tow2026ss/src/css/style.css より移植）
-------------------------------------------------*/
.fadeHeader {
  display: none;
}

header {
  width: 100%;
  height: 83px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  header {
    height: 62px;
  }
}
header section {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: calc(100% - 50px);
  margin: 0 auto;
}
header section .hamburger {
  display: none;
}
header .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 101;
}
@media screen and (max-width: 767px) {
  header .logo {
    width: 260px;
  }
}
header .logo img {
  width: 405px;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  header .logo img {
    width: 100%;
  }
}
header ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}
header ul li {
  font-family: "futura-b";
  position: relative;
}
header ul li .sp {
  vertical-align: middle;
}
header ul li .accordion-area {
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-weight: bold;
  color: #5E5E5E;
}
@media screen and (max-width: 767px) {
  header ul li .accordion-area {
    font-weight: normal;
  }
}
header ul li .accordion-area.active {
  text-decoration: underline;
  text-decoration-color: #FF7BAC;
  text-decoration-thickness: 2px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
header ul li .accordion-area:hover + .accordion-detail {
  display: block;
}
@media screen and (max-width: 767px) {
  header ul li .accordion-area:hover + .accordion-detail {
    display: none;
  }
}
header ul li .accordion-detail {
  display: none;
  position: absolute;
  top: 1.5em;
  left: -1rem;
  width: 200px;
  background: #fff;
  padding: 2rem 1rem 1rem;
  -webkit-box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.1);
  z-index: 9;
}
header ul li .accordion-detail:hover {
  display: block;
}
@media screen and (max-width: 767px) {
  header ul li .accordion-detail:hover {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  header ul li .accordion-detail {
    left: -1rem;
    -webkit-box-shadow: none;
            box-shadow: none;
    position: static;
    display: none;
  }
}
header ul li .accordion-detail.open {
  display: block;
}
header ul li .accordion-detail li {
  margin-bottom: 2em;
}
header ul li .accordion-detail li:last-child {
  margin-bottom: 0;
}
header ul li .accordion-detail li a {
  font-size: 1em;
  font-weight: bold;
  color: #000;
}
@media screen and (max-width: 640px) {
  header ul li .accordion-detail li a:hover {
    opacity: initial;
    -webkit-transition: initial;
    transition: initial;
  }
}
header ul li a {
  text-decoration: none;
  font-weight: bold;
  color: #5E5E5E;
  position: relative;
}
header ul li a::before {
  content: "";
  position: absolute;
  left: -8px;
  bottom: -8px;
  width: calc(100% + 16px);
  height: 1px;
  background: #D2638C;
  display: block;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
header ul li a.cs {
  color: #A0A0A0;
  pointer-events: none;
  line-height: 1;
}
header ul li a.cs::after {
  content: "(COMING SOON!)";
  color: #DD6363;
  display: block;
}
header ul li a:hover {
  opacity: 1;
}
header ul li a:hover::before {
  opacity: 1;
}
header ul li .headerBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #FF7BAC;
  color: #fff;
  font-weight: bold;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  width: 256px;
  height: 48px;
  font-size: 14px;
  -webkit-box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.2);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
header ul li .headerBtn:hover {
  background-color: #D2638C;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media screen and (max-width: 767px) {
  header ul li .headerBtn {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .hamburger {
    display: block !important;
    width: 36px;
    height: 36px;
    position: absolute;
    top: 13px;
    right: 3%;
    z-index: 100;
    border-radius: 50px;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }
  .hamburger_bar {
    pointer-events: none;
    display: block;
    width: 70%;
    margin: auto;
    height: 3px;
    position: absolute;
    left: 0;
    right: 0;
    background: #000;
    -webkit-transition: top 0.24s, opacity 0.24s, -webkit-transform 0.24s;
    transition: top 0.24s, opacity 0.24s, -webkit-transform 0.24s;
    transition: top 0.24s, transform 0.24s, opacity 0.24s;
    transition: top 0.24s, transform 0.24s, opacity 0.24s, -webkit-transform 0.24s;
    border-radius: 10px;
  }
  .hamburger_bar:nth-child(1) {
    top: 20%;
  }
  .hamburger_bar:nth-child(2) {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .hamburger_bar:nth-child(3) {
    top: 80%;
    -webkit-transform: translate(36%, -100%);
            transform: translate(36%, -100%);
    width: 40%;
  }
  .hamburger_bar.is_active {
    background: #000;
  }
  .hamburger_bar.is_active:nth-child(1) {
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(135deg);
            transform: translateY(-50%) rotate(135deg);
  }
  .hamburger_bar.is_active:nth-child(2) {
    -webkit-transform: translate(50%, -50%);
            transform: translate(50%, -50%);
    opacity: 0;
  }
  .hamburger_bar.is_active:nth-child(3) {
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(-135deg);
            transform: translateY(-50%) rotate(-135deg);
    width: 70%;
  }
  .nav {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 99;
    background: #fff 50% no-repeat;
    background-size: cover;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    opacity: 0;
    -webkit-transition: opacity 0.24s;
    transition: opacity 0.24s;
    pointer-events: none;
    height: 100vh;
    width: 90%;
  }
}
@media screen and (max-width: 767px) and (max-width: 640px) {
  .nav {
    width: 100%;
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  .nav.is_active {
    opacity: 1;
    pointer-events: auto;
  }
  .nav .nav-list {
    display: block;
    gap: 20px;
    padding-top: 5rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 640px) {
  .nav .nav-list {
    width: 100%;
    padding-top: 8rem;
  }
}
@media screen and (max-width: 767px) {
  .nav .nav-list li {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 640px) {
  .nav .nav-list li {
    border-bottom: 1px solid #D7D7D7;
    padding: 0 2rem 1.5rem;
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .nav .nav-list li:nth-child(4) {
    border-bottom: none;
  }
  .nav .nav-list li .sp {
    display: inline !important;
    font-weight: bold;
  }
  .nav .nav-list li .accordion-area {
    font-weight: bold;
  }
}
@media screen and (max-width: 767px) and (max-width: 640px) {
  .nav .nav-list li .accordion-area {
    font-weight: normal;
  }
}
@media screen and (max-width: 767px) {
  .nav .nav-list li .accordion-detail {
    display: none;
    position: relative;
    top: auto;
    padding: 0;
    width: auto;
  }
}
@media screen and (max-width: 767px) and (max-width: 640px) {
  .nav .nav-list li .accordion-detail {
    padding-top: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .nav .nav-list li .accordion-detail.open {
    display: block;
  }
  .nav .nav-list li .accordion-detail li {
    margin-bottom: 0;
    padding-left: 4rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 640px) {
  .nav .nav-list li .accordion-detail li {
    padding-left: 2rem;
    border-bottom: none;
  }
}
@media screen and (max-width: 767px) {
  .nav .nav-list li .accordion-detail li a {
    font-size: 1rem;
    font-weight: normal;
    color: #666;
  }
  .nav .nav-list li i {
    margin-right: 1rem;
  }
  .nav .nav-list li.line-top {
    border-top: 2px solid #FF7BAC;
    padding-top: 1.5rem;
  }
  .nav .nav-list li.line-top label {
    font-weight: bold;
  }
  .nav .nav-list li a:hover {
    text-decoration: underline;
  }
}
@media screen and (max-width: 767px) and (max-width: 640px) {
  .nav .nav-list li a {
    font-weight: normal;
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) and (max-width: 640px) {
  .nav .nav-list li a.spBtn {
    width: 256px;
    height: 52px;
    border-radius: 5px;
    border: #D2638C 1px solid;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 1rem auto 0;
    color: #D2638C;
  }
}
@media screen and (max-width: 767px) {
  button {
    border-color: transparent;
    background: transparent;
    cursor: pointer;
  }
}

header ul li .headerBtn.nagoya {
  background: #80DDB8;
}

header ul li a:hover:before {
  border-bottom: #80DDB8;
}

header ul li .headerBtn.fukuoka {
  background: #FAB23A;
}

header ul li a:hover:before {
  border-bottom: #FAB23A;
}

/*-------------------------------------------------
  全体ラッパー
-------------------------------------------------*/
#tow2026aw {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  position: relative;
  background-color: var(--color-white);
}

/*-------------------------------------------------
  1. FV（ファーストビュー）: #tow2026awFv
-------------------------------------------------*/
#tow2026awFv {
  position: relative;
  width: 100%;
  padding: 80px 0 90px;
  background-color: var(--color-white);
  overflow: hidden;
  min-height: 580px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#tow2026awFv .tow2026awFv__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.tow2026awFvContent {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/*-------------------------------------------------
  FV 背景図形 & アニメーション
-------------------------------------------------*/
.tow2026awFv__shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.tow2026awFvShape {
  position: absolute;
  pointer-events: none;
  line-height: 0;
  transform-origin: center center;
}

.tow2026awFvShape__inner {
  width: 100%;
  height: 100%;
  transform-origin: center center;
  will-change: transform;
}

.tow2026awFvShape img {
  width: 100%;
  height: auto;
  display: block;
}

/* 1. 左上: ピンクドット正方形 */
.tow2026awFvShape--pink-top-left {
  top: -50px;
  left: -70px;
  width: clamp(250px, 24.3vw, 350px);
  transform: rotate(-30deg);
  z-index: 2;
}
.tow2026awFvShape--pink-top-left .tow2026awFvShape__inner {
  animation: fvFloat1 11.4s ease-in-out infinite alternate;
}

/* 2. 左上〜左中央: グレー丸 (circle) */
.tow2026awFvShape--circle-left {
  top: 60px;
  left: -90px;
  width: clamp(250px, 23.6vw, 340px);
  transform: rotate(15deg);
  z-index: 1;
}
.tow2026awFvShape--circle-left .tow2026awFvShape__inner {
  animation: fvFloat2 14.2s ease-in-out infinite alternate;
}

/* 3. 左中央: 黒ドット正方形 */
.tow2026awFvShape--bk-left {
  top: 38%;
  left: -45px;
  width: clamp(180px, 18vw, 260px);
  transform: translateY(-50%) rotate(42deg);
  z-index: 2;
}
.tow2026awFvShape--bk-left .tow2026awFvShape__inner {
  animation: fvFloat3 12.8s ease-in-out infinite alternate;
}

/* 4. 左下: ピンクドット正方形 */
.tow2026awFvShape--pink-bottom-left {
  bottom: -50px;
  left: -30px;
  width: clamp(195px, 19.4vw, 280px);
  transform: rotate(-42deg);
  z-index: 2;
}
.tow2026awFvShape--pink-bottom-left .tow2026awFvShape__inner {
  animation: fvFloat4 10.5s ease-in-out infinite alternate;
}

/* 5. 中央上: グレー丸 (circle) */
.tow2026awFvShape--circle-top-center {
  top: -60px;
  left: 24%;
  width: clamp(230px, 22.2vw, 320px);
  transform: rotate(-25deg);
  z-index: 1;
}
.tow2026awFvShape--circle-top-center .tow2026awFvShape__inner {
  animation: fvFloat5 16.0s ease-in-out infinite alternate;
}

/* 6. 中央上: ピンクドット正方形 */
.tow2026awFvShape--pink-top-center {
  top: -70px;
  left: 16%;
  width: clamp(170px, 16.6vw, 240px);
  transform: rotate(-2deg);
  z-index: 2;
}
.tow2026awFvShape--pink-top-center .tow2026awFvShape__inner {
  animation: fvFloat6 13.0s ease-in-out infinite alternate;
}

/* 7. 左下〜中央下: グレー丸 (circle) */
.tow2026awFvShape--circle-bottom-center {
  bottom: -100px;
  left: 10%;
  width: clamp(310px, 30.5vw, 440px);
  transform: rotate(30deg);
  z-index: 1;
}
.tow2026awFvShape--circle-bottom-center .tow2026awFvShape__inner {
  animation: fvFloat1 15.5s ease-in-out infinite alternate -5s;
}

/* 8. 中央下: ピンクドット正方形 */
.tow2026awFvShape--pink-bottom-center {
  bottom: 10px;
  left: 21%;
  width: clamp(245px, 23.6vw, 340px);
  transform: rotate(-45deg);
  z-index: 2;
}
.tow2026awFvShape--pink-bottom-center .tow2026awFvShape__inner {
  animation: fvFloat2 11.8s ease-in-out infinite alternate -3s;
}

/* 9. 右上（写真上部）: 黒ドット正方形 */
.tow2026awFvShape--bk-right {
  top: -65px;
  right: 26%;
  width: clamp(150px, 14.5vw, 210px);
  transform: rotate(40deg);
  z-index: 3;
}
.tow2026awFvShape--bk-right .tow2026awFvShape__inner {
  animation: fvFloat3 9.6s ease-in-out infinite alternate -2s;
}

/* 不規則・ランダム浮遊&回転アニメーション */
@keyframes fvFloat1 {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  30% {
    transform: translate3d(18px, -15px, 0) rotate(12deg);
  }
  65% {
    transform: translate3d(-12px, -24px, 0) rotate(-8deg);
  }
  85% {
    transform: translate3d(8px, 12px, 0) rotate(16deg);
  }
  100% {
    transform: translate3d(-16px, 18px, 0) rotate(-14deg);
  }
}

@keyframes fvFloat2 {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  25% {
    transform: translate3d(-20px, 14px, 0) rotate(-16deg);
  }
  55% {
    transform: translate3d(14px, 20px, 0) rotate(10deg);
  }
  80% {
    transform: translate3d(-8px, -18px, 0) rotate(-12deg);
  }
  100% {
    transform: translate3d(16px, -12px, 0) rotate(18deg);
  }
}

@keyframes fvFloat3 {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  20% {
    transform: translate3d(15px, 20px, 0) rotate(20deg);
  }
  50% {
    transform: translate3d(-18px, 8px, 0) rotate(-15deg);
  }
  75% {
    transform: translate3d(12px, -22px, 0) rotate(24deg);
  }
  100% {
    transform: translate3d(-14px, -14px, 0) rotate(-10deg);
  }
}

@keyframes fvFloat4 {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  35% {
    transform: translate3d(-14px, -22px, 0) rotate(-14deg);
  }
  70% {
    transform: translate3d(18px, 16px, 0) rotate(18deg);
  }
  100% {
    transform: translate3d(10px, -10px, 0) rotate(-8deg);
  }
}

@keyframes fvFloat5 {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
  30% {
    transform: translate3d(22px, -18px, 0) rotate(10deg) scale(1.05);
  }
  60% {
    transform: translate3d(-16px, 14px, 0) rotate(-12deg) scale(0.96);
  }
  85% {
    transform: translate3d(12px, 20px, 0) rotate(8deg) scale(1.03);
  }
  100% {
    transform: translate3d(-20px, -12px, 0) rotate(-6deg) scale(1);
  }
}

@keyframes fvFloat6 {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  28% {
    transform: translate3d(-18px, -16px, 0) rotate(18deg);
  }
  58% {
    transform: translate3d(20px, 18px, 0) rotate(-20deg);
  }
  82% {
    transform: translate3d(-12px, 12px, 0) rotate(12deg);
  }
  100% {
    transform: translate3d(15px, -18px, 0) rotate(-15deg);
  }
}

#tow2026awFv .tow2026awFv__imgWrapper {
  position: absolute;
  right: -5%;
  top: 0;
  width: 45%;
  height: 100%;
  border-radius: 60% 40% 55% 45% / 45% 55% 45% 55%;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  z-index: 2;
}
#tow2026awFv .tow2026awFv__imgWrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 0.6s ease;
}
#tow2026awFv .tow2026awFv__imgWrapper:hover img {
  transform: scale(1.1);
}

.tow2026awFvContent__info {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tow2026awFv__sub {
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-black);
  margin: 0 0 8px 0;
}

.tow2026awFv__main {
  font-family: var(--font-en);
  font-size: 42px;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.15;
  color: var(--color-black);
  margin: 0 0 16px 0;
  width: 70%;
}

.tow2026awFv__discount {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0.9;
  margin: 15px 0 25px 0;
}

.tow2026awFv__discountLeft {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-right: 8px;
  transform: translateY(-30px);
}

.tow2026awFv__discountRight {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-left: 8px;
  transform: translateY(10px);
}

.tow2026awFv__max {
  font-family: var(--font-en);
  font-size: 24px;
  font-weight: 900;
  color: var(--color-primary);
}

.tow2026awFv__num {
  font-family: var(--font-en);
  font-size: 140px;
  font-weight: 900;
  color: var(--color-black);
  letter-spacing: -0.05em;
  line-height: 0.85;
}

.tow2026awFv__off {
  font-family: var(--font-en);
  font-size: 28px;
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
}

.tow2026awFv__place {
  font-family: var(--font-en);
  font-size: 38px;
  font-weight: 900;
  letter-spacing: 0.15em;
  color: var(--color-black);
  margin: 0 0 16px 0;
}

.tow2026awFv__dateBox {
  background-color: var(--color-black);
  color: var(--color-white);
  padding: 14px 32px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.tow2026awFv__dateBox em {
  font-style: normal;
  font-size: 22px;
  font-weight: 900;
}

.tow2026awFv__inTokyo {
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-black);
  margin: 0 0 20px 0;
}

.tow2026awFv__btn {
  display: block;
  width: 100%;
  max-width: 320px;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-weight: 700;
  font-size: 16px;
  padding: 16px 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(255, 59, 148, 0.4);
  letter-spacing: 0.05em;
  margin-top: 15px;
}

/* FV ビジュアル（右側） */
.tow2026awFvContent__visual {
  flex: 1;
  max-width: 580px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tow2026awFv__imgWrapper:hover img {
  transform: scale(1.1);
}

/*-------------------------------------------------
  2. ブランドロゴ流動バー（Marquee）: .tow2026awCur
-------------------------------------------------*/
.tow2026awCur {
  width: 100%;
  background-color: var(--color-white);
  padding: 24px 0;
  border-top: 1px solid #EEEEEE;
  border-bottom: 1px solid #EEEEEE;
  overflow: hidden;
  position: relative;
}

.tow2026awCurList {
  display: flex;
  width: max-content;
  animation: marquee 35s linear infinite;
}

.tow2026awCurList:hover {
  animation-play-state: paused;
}

.tow2026awCurList ul {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

.tow2026awCurList li {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  height: 48px;
}

.tow2026awCurList li img {
  max-height: 36px;
  width: auto;
  max-width: 120px;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.tow2026awCurList li:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/*-------------------------------------------------
  3. ABOUT セクション: #tow2026awAbout
-------------------------------------------------*/
#tow2026awAbout {
  background-color: var(--color-black);
  color: var(--color-white);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

/* ABOUT 背景図形 (Shapes) & 浮遊アニメーション */
.tow2026awAbout__shapes {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.tow2026awAboutShape {
  position: absolute;
  pointer-events: none;
}

.tow2026awAboutShape__inner {
  width: 100%;
  height: 100%;
  display: block;
}

.tow2026awAboutShape img {
  width: 100%;
  height: auto;
  display: block;
}

/* 1. 左側: 黒ドット正方形 (dot_square_bk.svg) */
.tow2026awAboutShape--dots {
  top: 60px;
  left: max(-40px, calc(50% - 630px));
  width: 340px;
  transform: rotate(-12deg);
  filter: invert(35%);
  opacity: 0.85;
}
.tow2026awAboutShape--dots .tow2026awAboutShape__inner {
  animation: aboutFloatDots 14s ease-in-out infinite alternate;
}

/* 2. 右側: グレー丸 blob (circle.svg) */
.tow2026awAboutShape--circle {
  right: max(-50px, calc(50% - 630px));
  top: 50%;
  transform: translateY(-50%) rotate(10deg);
  width: 380px;
  opacity: 0.95;
}
.tow2026awAboutShape--circle .tow2026awAboutShape__inner {
  animation: aboutFloatCircle 17s ease-in-out infinite alternate;
}

/* 不規則・ランダム浮遊&回転アニメーション (ABOUT) */
@keyframes aboutFloatDots {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  22% {
    transform: translate3d(14px, -16px, 0) rotate(12deg);
  }
  48% {
    transform: translate3d(-12px, -8px, 0) rotate(-10deg);
  }
  72% {
    transform: translate3d(16px, 14px, 0) rotate(15deg);
  }
  88% {
    transform: translate3d(-8px, 20px, 0) rotate(-6deg);
  }
  100% {
    transform: translate3d(10px, -10px, 0) rotate(10deg);
  }
}

@keyframes aboutFloatCircle {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  26% {
    transform: translate3d(-18px, 14px, 0) rotate(-12deg);
  }
  52% {
    transform: translate3d(16px, -16px, 0) rotate(14deg);
  }
  78% {
    transform: translate3d(-10px, -10px, 0) rotate(-8deg);
  }
  90% {
    transform: translate3d(12px, 18px, 0) rotate(10deg);
  }
  100% {
    transform: translate3d(-6px, 6px, 0) rotate(-14deg);
  }
}

.tow2026awAboutContent {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

.tow2026awAboutContent__left {
  flex: 0 0 340px;
}

.tow2026awAboutContent__left .tow2026awSectionTitle {
  color: var(--color-white);
  font-size: 56px;
  margin-bottom: 4px;
}

.tow2026awAboutContent__left .tow2026awSectionSub {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 36px;
}

.tow2026awAboutContent__right {
  flex: 1;
}

.tow2026awAbout__lead {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  margin: 0 0 24px 0;
  letter-spacing: 0.04em;
  color: var(--color-white);
}

.tow2026awAbout__text {
  font-size: 15px;
  font-weight: 400;
  line-height: 2;
  color: #CCCCCC;
  letter-spacing: 0.03em;
  margin: 0 0 36px 0;
}

/*-------------------------------------------------
  4. BRAND セクション: #tow2026awBrand
-------------------------------------------------*/
#tow2026awBrand {
  background-color: var(--color-white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* BRAND 背景図形 (Shapes) & 浮遊アニメーション */
.tow2026awBrand__shapes {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.tow2026awBrandShape {
  position: absolute;
  pointer-events: none;
}

.tow2026awBrandShape__inner {
  width: 100%;
  height: 100%;
  display: block;
}

.tow2026awBrandShape img {
  width: 100%;
  height: auto;
  display: block;
}

/* グレー丸 blob (circle.svg) */
.tow2026awBrandShape--circle {
  top: 60px;
  left: max(50px, calc(50% - 460px));
  width: 360px;
  transform: rotate(5deg);
  opacity: 0.95;
}
.tow2026awBrandShape--circle .tow2026awBrandShape__inner {
  animation: brandFloatCircle 15s ease-in-out infinite alternate;
}

/* 不規則・ランダム浮遊&回転アニメーション (BRAND) */
@keyframes brandFloatCircle {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  26% {
    transform: translate3d(16px, -15px, 0) rotate(10deg);
  }
  52% {
    transform: translate3d(-14px, 12px, 0) rotate(-12deg);
  }
  76% {
    transform: translate3d(12px, 16px, 0) rotate(8deg);
  }
  100% {
    transform: translate3d(-10px, -14px, 0) rotate(-10deg);
  }
}

.tow2026awBrandContent {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.tow2026awBrandContent__grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
  margin-top: 20px;
}

.tow2026awBrandContent__left {
  flex: 0 0 380px;
}

.tow2026awBrand__photoCard {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  margin-bottom: 24px;
}

.tow2026awBrand__photoCard img {
  width: 100%;
  height: auto;
  display: block;
}

.tow2026awBrand__desc {
  font-size: 14px;
  line-height: 1.8;
  color: #444444;
  margin: 0 0 24px 0;
}

.tow2026awBrandContent__right {
  flex: 1;
}

.tow2026awBrandTiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.tow2026awBrandTiles li {
  background: var(--color-white);
  border: 1px solid #E5E5E5;
  border-radius: 6px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.tow2026awBrandTiles li:hover {
  border-color: var(--color-primary);
  box-shadow: 0 6px 16px rgba(255, 59, 148, 0.15);
  transform: translateY(-2px);
}

.tow2026awBrandTiles li img {
  max-height: 46px;
  max-width: 90%;
  object-fit: contain;
}

.tow2026awBrandTiles li span {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  color: var(--color-black);
  letter-spacing: 0.05em;
}

/*-------------------------------------------------
  5. LOOKBOOK セクション: #tow2026awLb
-------------------------------------------------*/
#tow2026awLb {
  background-color: var(--color-primary);
  padding: 90px 0 100px;
  position: relative;
  overflow: hidden;
}

.tow2026awLbContent {
  width: 90%;
  max-width: 1160px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.tow2026awLbContainer {
  position: relative;
  margin-top: 36px;
}

.tow2026awLbScrollArea {
  max-height: 480px;
  overflow-y: auto;
  padding-right: 15px;
}

.tow2026awLbScrollArea::-webkit-scrollbar {
  width: 6px;
}
.tow2026awLbScrollArea::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.4);
  border-radius: 10px;
}
.tow2026awLbScrollArea::-webkit-scrollbar-thumb {
  background: var(--color-primary-dark);
  border-radius: 10px;
}

.tow2026awLbList {
  width: 100%;
}

.tow2026seLbContentList {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  list-style: none;
  padding: 0 0 60px 0;
  margin: 0;
  width: 100%;
}

.tow2026seLbContentList li {
  list-style: none;
  margin: 0;
  padding: 0;
  min-width: 0;
  width: 100%;
}

.tow2026seLbContentList li .instagram-media,
.tow2026seLbContentList li iframe {
  min-width: 0 !important;
  min-width: unset !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto !important;
  box-sizing: border-box !important;
}

@media (max-width: 1024px) {
  .tow2026seLbContentList {
    gap: 12px;
  }
}

@media (max-width: 860px) {
  .tow2026seLbContentList {
    grid-template-columns: repeat(2, 1fr);
  }
}

.tow2026awLbFade {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 25%;
  background: linear-gradient(to bottom, rgba(255, 104, 191, 0) 0%, rgba(255, 104, 191, 1) 100%);
  pointer-events: none;
  z-index: 10;
}

.tow2026awLbCard {
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tow2026awLbCard:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
}

.tow2026awLbCard__header {
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #F0F0F0;
  font-size: 12px;
}

.tow2026awLbCard__user {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--color-black);
}

.tow2026awLbCard__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #E0E0E0;
  background-size: cover;
}

.tow2026awLbCard__badge {
  color: #0095F6;
  font-weight: 700;
  font-size: 11px;
}

.tow2026awLbCard__media {
  position: relative;
  width: 100%;
  padding-top: 133%; /* 3:4 aspect */
  background-color: #FAFAFA;
  overflow: hidden;
}

.tow2026awLbCard__media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tow2026awLbCard__playBtn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, background 0.2s ease;
}

.tow2026awLbCard__playBtn::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-left: 12px solid var(--color-black);
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  margin-left: 3px;
}

.tow2026awLbCard:hover .tow2026awLbCard__playBtn {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--color-white);
}

/*-------------------------------------------------
  6. CAMPAIGN セクション: #tow2026awCp
-------------------------------------------------*/
#tow2026awCp {
  background-color: var(--color-white);
  padding: 90px 0;
  text-align: center;
}

.tow2026awCpContent {
  width: 90%;
  max-width: 860px;
  margin: 0 auto;
}

.tow2026awCp__bannerArea {
  width: 100%;
  height: 280px;
  background-color: #D9D9D9;
  border-radius: 12px;
  margin: 30px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

/*-------------------------------------------------
  COMING SOON 共通コンポーネント
-------------------------------------------------*/
.tow2026awBrandContent--comingSoon {
  text-align: center;
}

.tow2026awComingSoon {
  width: 100%;
  max-width: 860px;
  margin: 36px auto 0;
}

.tow2026awComingSoon__box {
  background: linear-gradient(145deg, #FFFFFF 0%, #FFF5F8 100%);
  border: 2px dashed #FFADC8;
  border-radius: 20px;
  padding: 64px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(255, 123, 172, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tow2026awComingSoon__box:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(255, 123, 172, 0.14);
}

.tow2026awComingSoon__box::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 123, 172, 0.07) 0%, transparent 70%);
  pointer-events: none;
  animation: csPulse 6s ease-in-out infinite alternate;
}

@keyframes csPulse {
  0% {
    transform: scale(0.95);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.05);
    opacity: 1;
  }
}

.tow2026awComingSoon__badge {
  display: inline-block;
  font-family: "futura-b", "Outfit", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #FF7BAC;
  background: rgba(255, 123, 172, 0.12);
  border: 1px solid rgba(255, 123, 172, 0.3);
  border-radius: 30px;
  padding: 6px 18px;
  margin-bottom: 16px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.tow2026awComingSoon__title {
  font-family: "futura-b", "Outfit", sans-serif;
  font-size: 42px;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: #222222;
  margin: 0 0 14px 0;
  line-height: 1.15;
  position: relative;
  z-index: 1;
}

.tow2026awComingSoon__desc {
  font-size: 15px;
  font-weight: 500;
  color: #666666;
  line-height: 1.85;
  margin: 0 auto;
  letter-spacing: 0.03em;
  position: relative;
  z-index: 1;
}

/*-------------------------------------------------
  7. INFOMATION セクション: #tow2026awInfo
-------------------------------------------------*/
#tow2026awInfo {
  background-color: var(--color-white);
  padding: 90px 0;
}

.tow2026awInfoContent {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  border: 1px solid #111;
}

.tow2026awInfoContent__block {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 50px;
}

.tow2026awInfoContent__left {
  flex: 1;
  max-width: 520px;
  padding: 42px 0 42px 42px;
}

.tow2026awInfoList {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tow2026awInfoItem {
  padding-bottom: 24px;
  border-bottom: 1px solid #EAEAEA;
}

.tow2026awInfoItem:last-child {
  border-bottom: none;
}

.tow2026awInfoBadge {
  display: inline-block;
  background-color: var(--color-gray-btn);
  color: var(--color-white);
  font-size: 13px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.tow2026awInfoDesc {
  font-size: 14px;
  line-height: 1.8;
  color: #333333;
}

.tow2026awInfoDesc em {
  font-style: normal;
  font-weight: 800;
  font-size: 16px;
}

.tow2026awInfoDesc small {
  display: block;
  color: #888888;
  font-size: 12px;
  margin-top: 4px;
}

.tow2026awInfoContent__right {
  flex: 1;
  min-height: 400px;
  overflow: hidden;
}

.tow2026awInfoContent__right iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
  display: block;
}

/*-------------------------------------------------
  8. TICKET セクション: #tow2026awTicket
-------------------------------------------------*/
#tow2026awTicket {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* TICKET 背景図形 (Shapes) & 浮遊アニメーション */
.tow2026awTicket__shapes {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.tow2026awTicketShape {
  position: absolute;
  pointer-events: none;
}

.tow2026awTicketShape__inner {
  width: 100%;
  height: 100%;
  display: block;
}

.tow2026awTicketShape img {
  width: 100%;
  height: auto;
  display: block;
}

/* 1. 左上: グレー丸 blob (circle.svg) */
.tow2026awTicketShape--circle {
  top: 100px;
  left: max(-160px, calc(50% - 820px));
  width: 520px;
  transform: rotate(5deg);
  opacity: 0.95;
}
.tow2026awTicketShape--circle .tow2026awTicketShape__inner {
  animation: ticketFloatCircle 16s ease-in-out infinite alternate;
}

/* 2. 右下: ピンクドット正方形 (dot_square_pink.svg) */
.tow2026awTicketShape--dots {
  bottom: 35px;
  right: max(-30px, calc(50% - 590px));
  width: 340px;
  transform: rotate(10deg);
}
.tow2026awTicketShape--dots .tow2026awTicketShape__inner {
  animation: ticketFloatDots 13.5s ease-in-out infinite alternate;
}

/* 不規則・ランダム浮遊&回転アニメーション (TICKET) */
@keyframes ticketFloatCircle {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  28% {
    transform: translate3d(-18px, 16px, 0) rotate(-10deg);
  }
  55% {
    transform: translate3d(16px, -15px, 0) rotate(12deg);
  }
  78% {
    transform: translate3d(-12px, -12px, 0) rotate(-8deg);
  }
  100% {
    transform: translate3d(14px, 18px, 0) rotate(14deg);
  }
}

@keyframes ticketFloatDots {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  24% {
    transform: translate3d(16px, -14px, 0) rotate(14deg);
  }
  50% {
    transform: translate3d(-14px, -10px, 0) rotate(-10deg);
  }
  75% {
    transform: translate3d(18px, 16px, 0) rotate(12deg);
  }
  100% {
    transform: translate3d(-10px, 18px, 0) rotate(-8deg);
  }
}

.tow2026awTicketContent {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.tow2026awTicketCards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0 36px;
}

.tow2026awTicketCard {
  background-color: var(--color-black);
  border-radius: 12px;
  padding: 16px 16px 20px;
  display: flex;
  flex-direction: column;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.tow2026awTicketCard__img {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  line-height: 0;
}

.tow2026awTicketCard__img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.tow2026awTicketCard__title {
  color: var(--color-white);
  font-size: 16px;
  font-weight: 700;
  margin: 16px 0 10px;
  text-align: center;
  line-height: 1.4;
}

.tow2026awTicketCard__desc {
  color: var(--color-white);
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
  text-align: center;
}

.tow2026awTicketCard__note {
  font-size: 11px;
  display: inline-block;
  margin-top: 4px;
  opacity: 0.85;
}

.tow2026awTicketNotice {
  font-size: 14px;
  color: #333333;
  margin: 20px 0 0;
}

.tow2026awTicketNotice a {
  display: inline-block;
  color: var(--color-primary);
  font-weight: 700;
  margin-top: 6px;
  text-decoration: underline;
}

/*-------------------------------------------------
  9. INSTAGRAM セクション: #tow2026awInsta
-------------------------------------------------*/
#tow2026awInsta {
  padding: 50px 0 80px;
}

.tow2026awInstaContent {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  background-color: var(--color-primary);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: left;
  box-shadow: 0 10px 35px rgba(255, 59, 148, 0.25);
  position: relative;
}

/* スクロール連動タワーアニメーション要素 */
.tow2026awInstaAnime {
  position: absolute;
  top: -29px;
  left: 40px;
  width: 26px;
  height: 30px;
  pointer-events: none;
  z-index: 10;
  will-change: transform;
  transform-origin: center center;
}

.tow2026awInstaAnime img {
  width: 100%;
  height: auto;
  display: block;
}

.tow2026awInstaList {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.tow2026awInstaItem {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  padding-top: 100%;
  background-color: var(--color-white);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.tow2026awInstaItem:hover {
  transform: translateY(-4px);
}

.tow2026awInstaItem img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#sb_instagram{
  width: 100%;
}

#sb_instagram #sbi_images{
  display: flex;
  justify-content: space-between;
}

#sb_instagram #sbi_images .sbi_item {
  width: 14.5%;
}
#sb_instagram #sbi_images .sbi_item {
    width: calc(33% - 13px);
}

/*-------------------------------------------------
  10. NEWS セクション: #tow2026awNews
-------------------------------------------------*/
#tow2026awNews {
  background-color: var(--color-white);
  padding: 100px 0;
}

.tow2026awNewsContent {
  width: 90%;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

/* カテゴリタブ */
.tow2026awNewsTabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 24px 0 36px;
}

.newsTabBtn {
  background-color: var(--color-white);
  color: var(--color-black);
  border: 1px solid #CCCCCC;
  padding: 8px 24px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}

.newsTabBtn.active,
.newsTabBtn:hover {
  background-color: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}

/* ニュースリスト */
.tow2026awNewsList {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
  text-align: left;
}

.tow2026awNewsItem {
  background-color: var(--color-gray-bg);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 24px;
  transition: all 0.3s ease;
  position: relative;
}

.tow2026awNewsItem:hover {
  background-color: #F0F0F0;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.tow2026awNewsItem__thumb {
  flex: 0 0 130px;
  height: 90px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #E0E0E0;
}

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

.tow2026awNewsItem__body {
  flex: 1;
}

.tow2026awNewsItem__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}

.tow2026awNewsItem__date {
  font-family: var(--font-en);
  font-size: 13px;
  color: #888888;
  font-weight: 600;
}

.tow2026awNewsItem__category {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  padding: 1px 8px;
  border-radius: 9999px;
}

.tow2026awNewsItem__title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-black);
  margin: 0;
}

/*-------------------------------------------------
  11. TO COMPANIES セクション: #tow2026awCompany
-------------------------------------------------*/
#tow2026awCompany {
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 33.3%, #F3F3F3 33%, #F3F3F3 66.6%, #ffffff 66.6%, #ffffff 100%);
  padding: 80px 0;
  height: 100%;
  width: 100%;
}

.tow2026awCompanyContent {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.tow2026awCompanyContent__left {
  flex: 1;
}

.tow2026awCompany__en {
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 800;
  color: var(--color-black);
  margin: 0 0 8px 0;
}

.tow2026awCompany__ja {
  font-size: 28px;
  font-weight: 900;
  color: var(--color-black);
  margin: 0 0 16px 0;
  text-shadow: none;
}

.tow2026awCompany__desc {
  font-size: 14px;
  line-height: 1.8;
  color: #555555;
  margin: 0 0 28px 0;
}

.tow2026awCompanyContent__right {
  flex: 0 0 340px;
  height: 220px;
  background-color: #D9D9D9;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 32px;
  font-weight: 900;
  color: #888888;
  letter-spacing: 0.05em;
  overflow: hidden;
}

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

/*-------------------------------------------------
  ヘッダー チケットボタン: .headerBtn
-------------------------------------------------*/
header ul li .headerBtn,
.headerBtn {
  cursor: pointer;
  user-select: none;
  transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

header ul li .headerBtn:hover,
.headerBtn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(255, 104, 191, 0.4);
}

/*-------------------------------------------------
  12. チケットポップアップモーダル (#popup, #overlay)
-------------------------------------------------*/
/* チェックボックス本体は非表示 */
input#popup {
  display: none !important;
}

/* オーバーレイ背景 */
#overlay {
  visibility: hidden;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 99990;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

#overlay #bg_gray {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99991;
  cursor: pointer;
}

/* ポップアップウィンドウ本体 */
#window {
  width: 90%;
  max-width: 660px;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -46%);
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  z-index: 99995;
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
  pointer-events: none;
}

/* 閉じるボタン */
#btn_cloth {
  position: absolute;
  top: -18px;
  right: -14px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1.5px solid #444444;
  z-index: 99999;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

#btn_cloth:hover {
  transform: scale(1.08);
  background-color: #F8F8F8;
}

#btn_cloth span,
#btn_cloth span::before {
  display: block;
  height: 2px;
  width: 20px;
  border-radius: 2px;
  background: #333333;
}

#btn_cloth span {
  transform: rotate(45deg);
}

#btn_cloth span::before {
  content: "";
  position: absolute;
  bottom: 0;
  transform: rotate(-90deg);
}

/* チェック時にポップアップ表示 */
#popup:checked ~ #overlay {
  visibility: visible;
  opacity: 1;
}

#popup:checked ~ #overlay #window {
  opacity: 1;
  transform: translate(-50%, -50%);
  pointer-events: auto;
}

/* コンテンツエリア */
#msg {
  position: relative;
  padding: 46px 36px 42px;
}

#msg .msg__btnArea {
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
  text-align: center;
}

#msg .msg__btnArea h3 {
  max-width: 290px;
  margin: 0 auto 30px;
}

#msg .msg__btnArea h3 img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

#msg .msg__btnArea--block {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

#msg .msg__btnArea--block .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  max-width: 250px;
  min-width: 200px;
  height: 56px;
  border-radius: 9999px;
  text-decoration: none;
  font-family: var(--font-ja, sans-serif);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.04em;
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: all 0.25s ease;
}

#msg .msg__btnArea--block .btn.line {
  background-color: #06C755;
}

#msg .msg__btnArea--block .btn.line:hover {
  background-color: #05B34C;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(6, 199, 85, 0.4);
}

#msg .msg__btnArea--block .btn.mail {
  background-color: var(--color-primary, #FF68BF);
}

#msg .msg__btnArea--block .btn.mail:hover {
  background-color: var(--color-primary-dark, #E0277D);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(255, 104, 191, 0.4);
}

@media screen and (max-width: 640px) {
  #msg {
    padding: 36px 20px 32px;
  }

  #msg .msg__btnArea h3 {
    max-width: 230px;
    margin-bottom: 22px;
  }

  #msg .msg__btnArea--block {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  #msg .msg__btnArea--block .btn {
    width: 100%;
    max-width: 290px;
    height: 52px;
    font-size: 15px;
  }

  #btn_cloth {
    top: -14px;
    right: -8px;
    width: 34px;
    height: 34px;
  }
}

/*-------------------------------------------------
  13. SP追従チケットバー: .sp_fixed
-------------------------------------------------*/
.sp_fixed {
  display: none;
}

@media (max-width: 768px) {
  .sp_fixed {
    display: block !important;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(8px);
    z-index: 99;
    padding: 10px;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.15);
  }

  .sp_fixedContent {
    display: flex;
    gap: 8px;
    justify-content: center;
  }

  .sp_fixedContent .btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    padding: 10px 4px;
    border-radius: 6px;
    color: var(--color-white);
  }

  .sp_fixedContent .btn.line {
    background-color: #06C755;
  }

  .sp_fixedContent .btn.mail {
    background-color: var(--color-primary);
  }

  .sp_fixedContent .btn.fast {
    background-color: #333333;
    font-size: 11px;
    line-height: 1.2;
    display: none;
  }
}

/*-------------------------------------------------
  13. レスポンシブ対応 (SP向け詳細スタイル)
-------------------------------------------------*/
@media (max-width: 768px) {
  /* セクション余白・見出し */
  .tow2026awSectionTitle {
    font-size: 36px;
  }

  /* FV (SP) */
  #tow2026awFv {
    position: relative;
    padding: 0 0 50px;
    min-height: 70vh;
    display: block;
    overflow: hidden;
    background-color: var(--color-white);
  }

  #tow2026awFv .tow2026awFv__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  .tow2026awFv__shapes {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
  }

  /* SP写真: 画面上部にオーバル/ペブル形状で配置 */
  #tow2026awFv .tow2026awFv__imgWrapper {
    position: absolute;
    top: -80px;
    left: 30%;
    right: auto;
    transform: translateX(-56%);
    width: 90%;
    max-width: 370px;
    height: 380px;
    border-radius: 50% 50% 55% 45% / 45% 55% 45% 55%;
    overflow: hidden;
    opacity: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    z-index: 2;
  }
  #tow2026awFv .tow2026awFv__imgWrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  /* SPコンテンツ: 写真下部に重なるよう配置 */
  .tow2026awFvContent {
    position: relative;
    z-index: 3;
    width: 90%;
    max-width: 380px;
    margin: 0 auto;
    padding-top: 27vh;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
  }

  .tow2026awFvContent__info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .tow2026awFv__main {
    width: 90%;
    margin: 0 auto;
    line-height: 0;
  }
  .tow2026awFv__main img.sp {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }

  .tow2026awFv__btn {
    display: block;
    width: 100%;
    max-width: 292px;
    margin: 24px auto 0;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-weight: 700;
    font-size: 15px;
    padding: 14px 16px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(255, 59, 148, 0.4);
    letter-spacing: 0.05em;
  }

  .tow2026awCur {
    padding: 8px 0;
  }

  /* FV 背景図形 SP配置 (添付デザイン画像に完全準拠) */
  /* 1. 左上（写真上部左）: 黒ドット正方形 */
  .tow2026awFvShape--bk-left {
    top: -15px;
    left: -15px;
    width: 135px;
    transform: rotate(-15deg);
  }

  /* 2. 右上（画面右上）: ピンクドット正方形 */
  .tow2026awFvShape--pink-top-left {
    top: -10px;
    right: -20px;
    left: auto;
    width: 150px;
    transform: rotate(20deg);
  }

  /* 3. 右中央（90%の右背面）: グレー丸 (circle) */
  .tow2026awFvShape--circle-top-center {
    top: 190px;
    right: -50px;
    left: auto;
    width: 180px;
    transform: rotate(15deg);
  }

  /* 4. 右中央（90%の右背面）: 黒ドット正方形 */
  .tow2026awFvShape--bk-right {
    top: 215px;
    right: -25px;
    left: auto;
    width: 145px;
    transform: rotate(40deg);
  }

  /* 5. 左中央（90%〜日付バーの左背面）: グレー丸 (circle) */
  .tow2026awFvShape--circle-left {
    top: 260px;
    left: -50px;
    width: 190px;
    transform: rotate(10deg);
  }

  /* 6. 左下（日付バー下〜ボタン左）: ピンクドット正方形 */
  .tow2026awFvShape--pink-bottom-left {
    top: 350px;
    left: -30px;
    bottom: auto;
    width: 130px;
    transform: rotate(-20deg);
  }

  /* 7. 右下（ボタン右側）: ピンクドット正方形 */
  .tow2026awFvShape--pink-bottom-center {
    top: 440px;
    right: -35px;
    left: auto;
    bottom: auto;
    width: 140px;
    transform: rotate(15deg);
  }

  /* 8. ボタン下部（マーキー上部中央）: 黒ドット正方形 */
  .tow2026awFvShape--bk-bottom {
    top: 535px;
    left: 45%;
    width: 115px;
    transform: rotate(35deg);
  }

  /* SPで非表示のシェイプ（重複調整） */
  .tow2026awFvShape--circle-bottom-center,
  .tow2026awFvShape--pink-top-center {
    display: none;
  }

  /* ABOUT */
  #tow2026awAbout {
    padding: 60px 0;
  }

  .tow2026awAboutShape--dots {
    left: -30px;
    top: 15px;
    width: 190px;
    opacity: 0.75;
  }

  .tow2026awAboutShape--circle {
    right: -40px;
    top: auto;
    bottom: 20px;
    transform: rotate(10deg);
    width: 240px;
    opacity: 0.85;
  }

  .tow2026awAboutContent {
    flex-direction: column;
    gap: 24px;
  }

  .tow2026awAboutContent__left {
    flex: none;
    width: 100%;
  }

  .tow2026awAbout__lead {
    font-size: 18px;
  }

  .tow2026awAbout__text {
    font-size: 14px;
  }

  /* BRAND */
  #tow2026awBrand {
    padding: 60px 0;
  }

  .tow2026awBrandShape--circle {
    top: 30px;
    left: 40px;
    width: 240px;
    opacity: 0.85;
  }

  .tow2026awBrandContent__grid {
    flex-direction: column;
    gap: 30px;
  }

  .tow2026awBrandContent__left {
    flex: none;
    width: 100%;
  }

  .tow2026awBrandTiles {
    grid-template-columns: repeat(2, 1fr);
  }

  /* LOOKBOOK */
  #tow2026awLb {
    padding: 60px 0;
  }

  .tow2026awLbList {
    width: 100%;
    margin: 0 auto;
  }

  .tow2026seLbContentList {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 360px;
    margin: 20px auto 0;
    padding-bottom: 50px;
  }

  /* CAMPAIGN */
  #tow2026awCp {
    padding: 60px 0;
  }

  .tow2026awCp__bannerArea {
    height: 180px;
  }

  /* COMING SOON (SP) */
  .tow2026awComingSoon {
    margin-top: 24px;
  }

  .tow2026awComingSoon__box {
    padding: 44px 20px;
    border-radius: 16px;
    border-width: 1.5px;
  }

  .tow2026awComingSoon__badge {
    font-size: 11px;
    padding: 4px 14px;
    margin-bottom: 12px;
  }

  .tow2026awComingSoon__title {
    font-size: 28px;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
  }

  .tow2026awComingSoon__desc {
    font-size: 13px;
    line-height: 1.75;
  }

  /* INFOMATION */
  #tow2026awInfo {
    padding: 60px 0;
  }

  .tow2026awInfoContent__block {
    flex-direction: column;
    gap: 30px;
  }

  .tow2026awInfoContent__left {
    max-width: 100%;
    padding: 28px 28px 0;
  }

  .tow2026awInfoContent__right {
    min-height: 280px;
  }

  .tow2026awInfoContent__right iframe {
    min-height: 280px;
  }

  /* TICKET */
  #tow2026awTicket {
    padding: 60px 0;
  }

  .tow2026awTicketShape--circle {
    left: -80px;
    top: 50px;
    width: 280px;
    opacity: 0.8;
  }

  .tow2026awTicketShape--dots {
    right: -25px;
    bottom: 20px;
    width: 200px;
    opacity: 0.85;
  }

  .tow2026awTicketCards {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 30px auto;
  }

  /* INSTAGRAM */
  #tow2026awInsta {
    padding: 40px 0 60px;
  }

  .tow2026awInstaContent {
    padding: 40px 20px;
    border-radius: 16px;
    width: 92%;
    margin: 0 auto;
  }

  .tow2026awInstaAnime {
    top: -25px;
    left: 20px;
    width: 22px;
    height: 26px;
  }

  .tow2026awInstaList {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  #sb_instagram #sbi_images .sbi_item {
    width: calc(33% - 13px);
  }

  /* NEWS */
  #tow2026awNews {
    padding: 60px 0;
  }

  .tow2026awNewsContent {
    width: 92%;
  }

  .tow2026awNewsList {
    gap: 16px;
    margin-bottom: 30px;
  }

  .tow2026awNewsItem {
    background-color: var(--color-gray-bg);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 14px;
  }

  .tow2026awNewsItem__thumb {
    flex: 0 0 88px;
    width: 88px;
    height: 118px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #DCDCDC;
  }

  .tow2026awNewsItem__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  .tow2026awNewsItem__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .tow2026awNewsItem__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
  }

  .tow2026awNewsItem__date {
    font-family: var(--font-en);
    font-size: 13px;
    font-weight: 700;
    color: #777777;
    line-height: 1;
  }

  .tow2026awNewsItem__category {
    font-size: 11px;
    font-weight: 700;
    color: var(--color-primary);
    border: 1.5px solid var(--color-primary);
    padding: 1px 10px;
    border-radius: 9999px;
    line-height: 1.4;
    background: transparent;
  }

  .tow2026awNewsItem__title {
    font-size: 15px;
    font-weight: 800;
    line-height: 1.45;
    color: var(--color-black);
    margin: 0;
    text-align: left;
    word-break: break-word;
  }

  /* TO COMPANIES */
  #tow2026awCompany {
    padding: 60px 0 100px;
  }

  .tow2026awCompanyContent {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .tow2026awCompanyContent__right {
    width: 100%;
    max-width: 320px;
    height: 180px;
    margin: 0 auto;
    display: none;
  }
}

/*==================================================
  NAGOYA SPECIFIC STYLES: main#nagoya
  Primary: #80DDB8
==================================================*/
main#nagoya {
  --color-primary: #80DDB8;
  --color-primary-dark: #58BA93;
  --color-primary-light: #E8FAF3;
  --color-primary-rgb: 128, 221, 184;
}

/* FV SP Ticket Button */
main#nagoya .tow2026awFv__btn.sp {
  background: #80DDB8;
  color: #FFFFFF;
  box-shadow: 0 6px 18px rgba(128, 221, 184, 0.45);
}

main#nagoya .tow2026awFv__btn.sp:hover {
  background: #58BA93;
}

/* Primary buttons (ABOUT, etc.) */
main#nagoya .tow2026awBtn--pink {
  background-color: #80DDB8;
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(128, 221, 184, 0.35);
}

main#nagoya .tow2026awBtn--pink:hover {
  background-color: #58BA93;
  box-shadow: 0 6px 20px rgba(128, 221, 184, 0.45);
}

/* Coming Soon Box (Brand & Campaign) */
main#nagoya .tow2026awComingSoon__box {
  background: linear-gradient(145deg, #FFFFFF 0%, #F0FBF7 100%);
  border: 2px dashed #80DDB8;
  box-shadow: 0 10px 30px rgba(128, 221, 184, 0.12);
}

main#nagoya .tow2026awComingSoon__box:hover {
  box-shadow: 0 14px 36px rgba(128, 221, 184, 0.2);
}

main#nagoya .tow2026awComingSoon__badge {
  background-color: #80DDB8;
  color: #FFFFFF;
  border: none;
  box-shadow: 0 2px 10px rgba(128, 221, 184, 0.35);
}

main#nagoya .tow2026awComingSoon__title {
  color: #80DDB8;
}

main#nagoya .tow2026awComingSoon__pulse {
  border: 2px solid #80DDB8;
}

/* INFO section lbFade */
main#nagoya .tow2026awLbFade {
  background: linear-gradient(to bottom, rgba(128, 221, 184, 0) 0%, rgba(128, 221, 184, 1) 100%);
}

/* Instagram section card */
main#nagoya .tow2026awInstaContent {
  box-shadow: 0 10px 35px rgba(128, 221, 184, 0.3);
}

/* News Section */
main#nagoya .tow2026awNewsItem__category {
  color: #80DDB8;
  border-color: #80DDB8;
}

main#nagoya .tow2026awNewsItem:hover {
  border-color: #80DDB8;
  box-shadow: 0 8px 24px rgba(128, 221, 184, 0.15);
}

/* Ticket Notice Links */
main#nagoya .tow2026awTicketNotice a {
  color: #80DDB8;
}

main#nagoya .tow2026awTicketNotice a:hover {
  color: #58BA93;
}

/* Pop-up modal */
main#nagoya #msg .msg__btnArea--block .mail {
  background-color: #80DDB8;
}

/*--------------------------------------------------
  INFOMATION セクション (名古屋専用メディアレイアウト)
--------------------------------------------------*/
main#nagoya .tow2026awInfoBadge {
  background-color: #80DDB8;
  color: #FFFFFF;
}

main#nagoya .tow2026awInfoDesc strong {
  font-size: 15px;
  color: #111111;
  font-weight: 800;
}

main#nagoya .tow2026awInfoContent__right {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0;
  min-height: auto;
}

.tow2026awInfoNagoyaMedia {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

/* イラストマップ */
.tow2026awInfoNagoyaMap {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #EAEAEA;
  background: #FFFFFF;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
}

.tow2026awInfoNagoyaMap img {
  max-width: 100%;
  max-height: 280px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* 会場写真（外観・内観） */
.tow2026awInfoNagoyaPhotos {
  display: flex;
  gap: 14px;
  width: 100%;
}

.tow2026awInfoNagoyaPhoto {
  flex: 1;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #EAEAEA;
  background: #F7F7F7;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.tow2026awInfoNagoyaPhoto img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.tow2026awInfoNagoyaPhoto:hover img {
  transform: scale(1.03);
}

.tow2026awInfoNagoyaPhoto__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(2px);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  text-align: center;
  letter-spacing: 0.04em;
}

/* Google Map */
.tow2026awInfoNagoyaGmap {
  width: 100%;
  height: 220px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #EAEAEA;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.tow2026awInfoNagoyaGmap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* モバイル対応 (767px以下) */
@media screen and (max-width: 767px) {
  main#nagoya .tow2026awInfoContent__right {
    padding: 0 24px 36px;
    width: 100%;
  }

  .tow2026awInfoNagoyaMap {
    padding: 12px;
  }

  .tow2026awInfoNagoyaMap img {
    max-height: 240px;
  }

  .tow2026awInfoNagoyaPhotos {
    flex-direction: row;
    gap: 10px;
  }

  .tow2026awInfoNagoyaPhoto img {
    height: 110px;
  }

  .tow2026awInfoNagoyaPhoto__caption {
    font-size: 10px;
    padding: 3px 4px;
  }

  .tow2026awInfoNagoyaGmap {
    height: 180px;
  }
}