body {
  margin: 0;
  line-height: 1.6;
  color: #191a1c;
  line-break:strict;
  font-family: 'Helvetica Neue','Arial','ヒラギノ角ゴシック','Hiragino Sans',YuGothic,'Yu Gothic',sans-serif;
}

body::before{
  content:"";
  display:block;
  position:fixed;
  top:0;
  left:0;
  background-position: 50% 50%;
  z-index:-1;
  width:100%;
  height:100vh;
  background-repeat:no-repeat;
  background-image:url(../images/mv.webp);
  background-size:cover;
}

@media screen and (max-width: 600px) {
  body::before{
    background-image: url(../images/mv_sp.webp);
  }
}

html{
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}


a{
  text-decoration: none;
  color: #fff;
  word-break:break-all;
}

img{
  max-width: 100%;
}


/* =========================
    Loading
========================= */

#loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 50% 45%, #1b1c19 0%, #111210 45%, #0a0b0a 100%);
  opacity: 1;
  visibility: visible;
  transition: opacity 1.4s cubic-bezier(0.22, 1, 0.36, 1), visibility 1.4s;
}

.loading-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(420px, 70vw);
}

.loading-logo {
  display: block;
  width: min(300px, 60vw);
  height: auto;
  margin-bottom: 42px;
  opacity: 0;
  transform: translateY(5px);
  animation: prime-logo-in 1.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}

.spinner {
  position: relative;
  width: 100%;
  height: 1px;
  background: rgba(213, 193, 150, 0.13);
}

.spinner-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(190, 165, 110, 0.35) 0%, rgba(211, 187, 137, 0.75) 50%, rgba(239, 222, 182, 1) 100% );
  box-shadow:0 0 8px rgba(225, 207, 166, 0.10);
  animation: prime-line 3.4s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

.spinner-line::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #f4e7c6;
  transform: translate(50%, -50%);
  box-shadow: 0 0 4px rgba(244, 231, 198, 0.75), 0 0 10px rgba(225, 207, 166, 0.35), 0 0 18px rgba(205, 181, 128, 0.14);
  animation: prime-light 3.4s ease-in-out infinite;
}

@keyframes prime-line {
  0% {
    width: 0%;
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  72% {
    width: 100%;
    opacity: 1;
  }
  86% {
    width: 100%;
    opacity: 1;
  }
  100% {
    width: 100%;
    opacity: 0;
  }
}


@keyframes prime-light {
  0% {
    opacity: 0;
  }
  8% {
    opacity: 0.7;
  }
  40% {
    opacity: 1;
  }
  72% {
    opacity: 1;
  }
  86% {
    opacity: 0.7;
  }
  100% {
    opacity: 0;
  }
}


@keyframes prime-logo-in {
  0% {
    opacity: 0;
    transform: translateY(5px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

#loading.is-loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}





/* main */
a:hover{
    transition: opacity .4s;
    color: #b89a62;
}

.header {
  position: relative;
  height: 0;
}



section {
  text-align: center;
  padding: 50px 0;
}

.main-visual {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-visual-inner{
  text-align: center;
}

.main-visual-inner img{
  width:70vh;
}

.main-visual-inner p{
  margin: 1rem 0;
  font-size: 1.7rem;
  text-align: center;
  font-weight: bold;
  color: #191a1c;
  -webkit-text-stroke: 3px #fff;
  text-stroke: 3px #fff;
  paint-order: stroke;
}

@media screen and (max-width: 1000px) {
    .main-visual-inner img{
      width:90%;
      max-width: 450px;
    }
    .main-visual-inner p{
      font-size: clamp(1rem, 4vw, 1.25rem);
    }
}

.a40-logo{
  position: absolute;
  margin: 1.5vw;
  top: 0;
  left: 0;
}

@media screen and (max-width: 1000px) {
  .a40-logo{
    width: 35vw;
    max-width: 120px;
    margin: 5vw;
  }
}



/* ===== banner ===== */

.banner{
  margin: 0vh auto 0vh auto;
  background-image: linear-gradient(0deg, #191a1c, #514841 100%);
  box-shadow: 0.5px 0.5px 3px 0.2px #191a1c;
}

.bannar-inner{
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
  max-width:  90%;
  margin: auto;
}

.bannar-inner img{
    box-shadow: 0.5px 0.5px 0.5px 0.1px gray;
}

.bannar-inner a{
    display: inline-block;
    position: relative;
}

.bannar-inner a:hover{
  opacity: 0.7;
}

@media screen and (max-width: 1000px) {
  .banner{
    padding: 20px 0;
  }

  .bannar-inner {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .bannar-inner a{
    width: 100%;
  }

}




/* ===== 共通 ===== */

.menu-wrapper {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1100;
  background-color: transparent;
}

.menu-btn {
  font-size: 4vh;
  cursor: pointer;
  padding: 1.5vh 2.5vh;
  border: #191a1c 1px solid;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  margin: 1.5vw;
  transition: color 0.5s ease, background-color 0.5s ease, border-color 0.5s ease;
  position: relative;
  z-index: 1200;
}

.menu-btn:hover{
  color: #b89a62;
}

@media screen and (max-width: 1000px) {
  .menu-btn{
    margin: 3vw;
  }
}


/* メニュー初期状態 */
.nav {
  position: absolute;
  top: -1.1vh;
  right: -2vh;
  padding: 10px 14px;
  z-index: 1110;
  opacity: 0;
  transform: translateX(10px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  height: 100vh;
  width: 40vw;
  color: #fff;
  border: rgba(255,255,255,0.3) 1px solid;
  background: linear-gradient( 90deg, rgba(0, 0, 0, 0.9), rgba(27, 27, 27, 0.9));
}

/* 表示状態 */
.nav.is-open {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
}

.nav a {
  white-space: nowrap;
}

.nav img{
  width:70%;
  margin: 0 auto 2rem;
  display: block;
}

.nav .midashi-title{
  margin: 1rem 0;
}

.nav .midashi-title h2.en {
  font-size: 1.8rem;
}
.nav .midashi-title h2.jp {
  font-size: 0.8rem;
}

@media screen and (max-width: 1000px) {
  .nav {
    width: 100vw;
    position: fixed;
    margin: 0;
    transform: translateY(-10px);
  }
  .nav ul {
    display: flex;
    flex-direction: column;
  }
  .nav a {
    font-size: 20px;
  }
  .nav .midashi-title{
    margin: 0;
  }
  .nav .midashi-title h2.en {
    font-size: 2rem;
  }
  .nav .midashi-title h2.jp {
    font-size: 1rem;
  }
  .nav img{
    width: 50%;
  }
}

@media screen and (max-width: 600px) {
  .nav img{
    width: 70%;
  }
  .nav .midashi-title h2.en {
    font-size: 1.35rem;
  }
  .nav .midashi-title h2.jp {
    font-size: 0.8rem;
  }
}


#about,
#details,
#video {
  scroll-margin-top: 100px;
}

@media screen and (max-width: 600px) {
  #about,
  #details,
  #video {
    scroll-margin-top: 200px;
  }
}


/* BACKDROP */

.menu-backdrop {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  z-index: 1000;
  background: rgba(10, 11, 10, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.45s ease, visibility 0.45s;
}


/* メニューを開いた状態 */
body.menu-open .menu-backdrop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}


/* メニュー展開中はスクロール禁止 */
body.menu-open {
  overflow: hidden;
}





/* fade-in */

.scroll_up {
  transition: 0.8s ease-in-out;
  transform: translateY(20px);
  opacity: 0;
}

.scroll_up.on {
  transform: translateY(0);
  opacity: 1.0;
}



/* float bannar */
.float{
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 100;
  padding: 18px;
  border: 1px solid rgba(216, 191, 136, 0.55);
  text-align: center;
  opacity: 0;
  box-sizing: border-box;
  pointer-events: none;
  transform: translateY(20px);
  background:linear-gradient(135deg, rgba(20, 21, 20, 1), rgba(8, 9, 8, 1) );
  margin: 1.5vw;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25), inset 0 0 0 1px rgba(255, 255, 255, 0.025);
}

.float.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.float.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}

/* 上部の細いゴールドLINE */
.float::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background:
    linear-gradient(
      90deg,
      transparent 0%,
      #b89a62 20%,
      #f1e2bb 60%,
      transparent 100%
    );
  opacity: 0.8;
}

/* メイン部分 */
.float-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 1;
}

/* テキスト */
.float-text {
  min-width: 0;
}

.float-text p {
  margin: 0;
  color: #fff;
  font-size: clamp( 0.95rem, 1.15vw, 1.1rem);
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.06rem;
}



/* Arrow */
.float-arrow {
  position: relative;
  flex: 0 0 auto;
  display: block;
  width: 34px;
  height: 1px;
  background: #d8bf88;
  transition:
    width 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.float-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 6px;
  height: 6px;
  border-top: 1px solid #d8bf88;
  border-right: 1px solid #d8bf88;
  transform:
    translateY(-50%)
    rotate(45deg);
}

/* Hover */
.float:hover {
  color: #fff;
  border-color: rgba(241, 226, 187, 0.9);
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.32),
    0 0 25px rgba(216, 191, 136, 0.07);
}

.float:hover .float-arrow {
  transform: translateX(3px);
}

.float:hover .float-text p {
  color: #f1e2bb;
}

@media screen and (max-width: 600px) {
  .float {
    right: 0;
    bottom: 0;
    width: 100%;
    padding:1rem;
    margin: 0;
  }

  .float-label {
    margin-bottom: 7px;
    font-size: 0.6rem;
  }

  .float-text p {
    font-size: clamp(0.85rem, 3.6vw, 1rem);
  }

  .float .caption {
    font-size: 0.65rem;
  }

  .float-arrow {
    width: 28px;
  }
}



/* ========================================
   City Story
======================================== */

.city-story {
  position: relative;
  height: 200vh;
  padding: 0;
  background: #0b0c0b;
  -webkit-text-stroke: 3px rgba(25, 26, 28, 0.5);
  paint-order: stroke fill;
}

.city-sticky {
  position: sticky;
  top: 0;
  width: 100%;
  /* フォールバック */
  height: 100vh;
  /* スマホのブラウザUIに追従 */
  height: 100dvh;
  overflow: hidden;
  background: #0b0c0b;
}

.city-line-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.city-line-pc {
  display: block;
}

.city-line-sp {
  display: none;
}

@media screen and (max-width: 1000px),
       screen and (max-aspect-ratio: 3 / 4) {
  .city-line-pc {
    display: none;
  }
  .city-line-sp {
    display: block;
  }
}

.city-line-base {
  fill: none;
  stroke: rgba(218, 194, 143, 0.12);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.city-line-progress {
  fill: none;
  stroke-width: 0.16rem;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.city-line-head {
  fill: #f6e8c5;
  opacity: 0;
  pointer-events: none;
}



/* Copy */

.city-copy {
  position: absolute;
  left: clamp(30px, 7vw, 120px);
  top: 25%;
  color: #fff;
}

.city-copy h2 {
  margin: 0;
  font-family: serif;
  font-size: clamp(42px, 6vw, 92px);
  line-height: 0.92;
  letter-spacing: 0.02rem;
}


.city-copy p {
  margin-top: 30px;
  font-size: 1.5rem;
  letter-spacing: 0.12rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: bold;
}

.city-caption {
  position: absolute;
  top: 60%;
  right: clamp(30px, 7vw, 120px);
  width: 50%;
}

.city-caption h3{
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
}

.copy-innar{
  width: 90%;
  margin: 0 auto;
}

@media screen and (max-width: 1000px) {
  .copy-innar {
    position: absolute;
    inset: 0;
    width: 90%;
    height: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: clamp(30px, 6vh, 60px);
    z-index: 2;
    box-sizing: border-box;
  }
  .city-copy{
    width:100%;
    position: static;
  }
  .city-caption {
    width: 100%;
    position: static;
  }
   .city-copy h2 {
    font-size: clamp(2rem, 9vw, 3.5rem );
    line-height: 1;
  }
  .city-copy p {
    font-size: clamp( 0.9rem, 3.8vw, 1.1rem);
    line-height: 1.6;
  }
  .city-caption h3 {
    font-size: clamp( 0.85rem, 3.4vw, 1rem);
    line-height: 1.8;
  }
}



/* Section */
.section {
  position: relative;
  width: 100%;
  height: 200vh;
  padding: 0;
  background: #fff;
}

.section-sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #191a1c;
}

.section-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.section-bg-shade {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 0;
  pointer-events: none;
}


/* LINE */

.section-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 0.16rem;
  transform: translateX(-50%);
  background: linear-gradient(
    to bottom,
    #d8bf88 0%,
    rgba(216, 191, 136, 0.65) 20%,
    rgba(216, 191, 136, 0.15) 40%,
    rgba(216, 191, 136, 0) 50%,
    rgba(216, 191, 136, 0.15) 60%,
    rgba(216, 191, 136, 0.65) 80%,
    #d8bf88 100%
  );

  pointer-events: none;
  z-index: 1;
}



/* Contents */

.contents {
  position: relative;
  width: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}


/* Detail */

.detail {
  display: flex;
  width: 90%;
  max-width: 1500px;
  height: 60vh;
  margin: 0 auto;
  border: solid 0.5px #191a1c;
  color: inherit;
  text-decoration: none;
  background: #fff;
  text-align: left;
}

.detail-left {
  width: 60%;
  overflow: hidden;
}

.detail-left img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.detail:hover .detail-left img {
  transform: scale(1.025);
}

.detail-right {
  position: relative;
  width: 40%;
  padding: 3vw;
  color: #191a1c;
}

@media screen and (max-width: 1000px) {
  .detail {
    flex-direction: column;
    height: auto;
    max-height: 75vh;
  }
  .detail-left {
    width: 100%;
  }
  .detail-right {
    width: 100%;
    box-sizing: border-box;
    padding: 5vw 5vw 12vw;
  }
}

h2.en {
  margin: 0;
  font-size: 2.3rem;
  line-height: 1;
  letter-spacing: 2;
  word-break: keep-all;
  overflow-wrap: break-word;
}

h2.jp {
  margin: 0;
  font-size: 1rem;
  letter-spacing: 2;
}

.detail-right p {
  margin: 1.8vw 0;
  font-size: 1rem;
}

@media screen and (max-width: 1000px) {
  .news-movie .midashi-title h2.en,
  .info .midashi-title h2.en,
  .links .midashi-title h2.en {
    font-size: clamp( 1.6rem, 6vw, 2.2rem );
    line-height: 1;
  }
  .news-movie .midashi-title h2.jp,
  .info .midashi-title h2.jp,
  .links .midashi-title h2.jp {
    font-size: clamp( 0.8rem, 3.2vw, 1rem);
    line-height: 1.5;
  }
}

.detail-navi {
  position: absolute;
  right: 3vw;
  bottom: 3vw;
  padding-right: 45px;
  letter-spacing: 0.18rem;
  font-weight: bold;
}

.detail-navi::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 30px;
  height: 1px;
  background: currentColor;
  transform: translateY(-50%);
  transition:
    width 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    right 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.detail-navi::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 6px;
  height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  transition: right 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.detail:hover .detail-navi,
.detail:hover .en,
.detail:hover .jp{
  color: #b89a62;
}

.detail:hover .detail-navi::before {
  width: 36px;
  right: -6px;
}

.detail:hover .detail-navi::after {
  right: -6px;
}


@media screen and (max-width: 1000px) {
  .detail-navi{
    right: 7vw;
    bottom: 5vw;
    font-size: 0.8rem;
  }
   .detail-right > span {
    font-size: clamp( 0.7rem, 2.8vw, 0.85rem);
  }
  .detail-right h2.en {
    font-size: clamp( 1.35rem, 5.5vw, 1.9rem );
    line-height: 1.05;
  }
  .detail-right h2.jp {
    font-size: clamp( 0.8rem, 3.2vw, 1rem);
    line-height: 1.5;
  }
  .detail-right p {
    font-size: clamp( 0.8rem, 3.2vw, 0.95rem);
    line-height: 1.7;
    margin: 1vh 0;
  }
  .detail-navi {
    font-size: clamp( 0.7rem, 2.8vw, 0.85rem);
  }
  .detail-right p{
    font-size:0.8rem;
  }
}


/* ========================================
   NEWS → PRODUCT
======================================== */

.news-product-flow {
  position: relative;
  isolation: isolate;
}

.news-flow-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: visible;
}

.news-movie-stickey,
.info-innar {
  position: relative;
  z-index: 2;
}

.news-flow-base {
  fill: none;
  stroke: rgba(216, 191, 136, 0.18);
  stroke-width: 1;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.news-flow-progress {
  fill: none;
  stroke: url(#newsFlowGold);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.news-flow-head {
  fill: #f6e8c5;
  opacity: 0;
  pointer-events: none;
}



/* ===== お知らせ・動画 共通 ===== */

.news-movie {
  background-image: url(../images/qv.webp);
  background-size: cover;
  padding: 12rem 0;
  background-attachment: fixed;
  box-shadow: inset 0.5px 0.5px 3px 0.2px #191a1c;
}

.midashi-title{
  margin: 2rem 0;
}

.news-innar{
  width: 100%;
  margin: 0 0 8rem;

}

.news-innar .midashi-title{
  margin-top: 0;
}

@media screen and (max-width: 1000px) {
  .midashi-title{
    margin: 0.8rem 0;
  }
}

/* NEWS BUTTON */
.news-button {
  width: 90%;
  display: flex;
  max-width: 1500px;
  margin: 0 auto 2rem;
  border: solid 0.5px #191a1c;
  color: #191a1c;
  text-decoration: none;
  background: #fff;
  transition:
    border-color 0.5s ease,
    background-color 0.5s ease;
}


/* 左側：ニュース3件 */
.news-button-left {
  width: 80%;
  padding: 1rem 3rem;
  box-sizing: border-box;
}

.news-row {
  display: flex;
  align-items: center;
  min-height: 52px;
  border-bottom: solid 0.5px #191a1c;
}

.news-row:last-child {
  border-bottom: none;
}

.news-row time {
  flex: 0 0 120px;
  margin-right: 2vw;
  color: #a58b58;
  font-size: 0.8rem;
  letter-spacing: 0.08rem;
}

.news-row p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}


/* 右側：DETAIL */
.news-button-right {
  width: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border-left: solid 0.5px #191a1c;
  box-sizing: border-box;
  font-size: 1rem;
  letter-spacing: 0.18rem;
  font-weight: bold;
}

/* 矢印 */
.news-arrow {
  position: relative;
  display: block;
  width: 32px;
  height: 1px;
  background: currentColor;
  transition:
    width 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.news-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 6px;
  height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform:
    translateY(-50%)
    rotate(45deg);
}


/* Hover */
.news-button:hover .news-row{
  border-bottom-color: #b89a62;
}

.news-row:last-child:hover {
  border-bottom: none;
}

.news-button:hover .news-row p {
  color: #7e6942;
}

.news-button:hover .news-button-right {
  color: #b89a62;
}

.news-button:hover .news-arrow {
  width: 40px;
  transform: translateX(4px);
}


@media screen and (max-width: 1000px) {
  .news-movie{
    padding: 6rem 0;
  }
  .news-innar{
    margin: 0 0 4rem;
  }
  .news-button {
    flex-direction: column;
  }
  .news-button-left {
    width: 100%;
    padding: 1rem 1rem 0;
  }
  .news-button-right {
    width: 100%;
    box-sizing: border-box;
    padding: 1.5rem;
    border-left:none;
    border-top: solid 0.5px #191a1c;
    font-size: clamp( 0.72rem, 2.8vw, 0.85rem );
  }
  .news-row{
    flex-direction: column;
    font-size: clamp( 0.7rem, 2.8vw, 0.8rem );
    padding: 0.6em 0;
    min-height:unset;
  }
  .news-row p{
    line-height: 1.2;
    font-size: clamp( 0.8rem, 3.2vw, 0.9rem);
  }
  .news-row time{
    flex:0;
  }
}



/* ===== 動画 ===== */

.movie-innar {
  width: 100%;
}

.movie-list {
  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(280px, 1fr));
  width: 90%;
  margin: 3rem auto 0;
  padding: 0;
  list-style: none;
}

.movie-item {
  min-width: 0;
  text-align: left;
  border: solid 0.5px #191a1c;
}

.movie-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0b0c0b;
}

.movie-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.movie-caption {
  padding: 16px 22px;
  background-color: #fff;
}

.movie-title {
  font-size: 0.9rem;
  letter-spacing: 0.08rem;
}

@media screen and (max-width: 1000px) {
  .movie-title {
    font-size: clamp( 0.78rem, 3.2vw, 0.9rem );
  }
}


/* OFFICIAL CHANNEL */
.link-btn {
  display: flex;
  justify-content: center;
  width: 90%;
  margin: 38px auto 0;
}

.square-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 33.3%;
  padding: 16px 22px;
  box-sizing: border-box;
  border: 1px solid #191a1c;
  color: #191a1c;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  transition:
    color 0.5s ease,
    background-color 0.5s ease,
    border-color 0.5s ease;
  font-weight: bold;
}

.btn-text {
  font-size: 0.9rem;
  letter-spacing: 0.18rem;
}

@media screen and (max-width: 1000px) {
  .btn-text {
    font-size: clamp( 0.72rem, 2.8vw, 0.85rem );
    letter-spacing: 0.14rem;
  }
}

.btn-arrow {
  position: relative;
  display: block;
  width: 32px;
  height: 1px;
  margin-left: 32px;
  background: currentColor;
  transition:
    width 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 6px;
  height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform:
    translateY(-50%)
    rotate(45deg);
}

.link-btn:hover .btn-arrow {
  width: 42px;
  margin-left: 22px;
  transform: translateX(4px);
}

@media screen and (max-width: 1000px) {
  .square-btn{
    width: 90%;
    font-size: 0.8rem;
  }
}

/* 動画が1本だけの場合 */
.movie-list:has(.movie-item:only-child) {
  grid-template-columns: 33%;
  justify-content: center;
}

/* 動画が2本の場合 */
.movie-list:has(.movie-item:nth-child(2):last-child) {
  grid-template-columns:
    repeat(2, minmax(280px, 600px));
  justify-content: center;
}

@media screen and (max-width: 1000px) {
  .movie-list:has(.movie-item:only-child) {
    grid-template-columns:unset;
  }
  .movie-list{
    gap: 1rem;
    margin: 1rem auto;
    display: block;
  }
  .movie-list li{
    margin: 1rem 0;
  }
}



/* ===== info ===== */

.info{
  position: relative;
  color: #191a1c;
  background: transparent;
  padding: 10rem 0;
}

.info::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 0;
  pointer-events: none;
}

.info-innar{
  width: 90%;
  margin: 0 auto;
  z-index: 2;
  position: relative;
}

/* 2カラム */
.info-columns {
  display: flex;
  gap: 36px;
  margin: 40px 0;
  align-items: center;
}

/* 左：画像 */
.info-columns .left img {
  width: 85%;
  height: auto;
  display: block;
  margin: 0 auto;
  border: 0.5px solid #191a1c;
}

.news-content .info-columns .left img {
  width: 100%;
}

.pk_small {
  display: block;
}

@media screen and (max-width: 1000px) {
  .pk_small {
    margin: 0 auto;
  }

  .info-columns .left img{
    max-width: 400px;
    flex-direction: column;
    gap: 18px;
  }
  .info-columns{
    flex-direction: column;
    margin: 1rem;
  }
}


/* カラム比率（画像を少し大きめ） */
.info-columns .left {
  flex: 3;
}

.info-columns .right {
  flex: 7;
  text-align: left;
  width: 100%;
}

/*table*/
.custom-table {
  border-collapse: collapse;
  margin: 0 auto;
  width:100%;
  }

@media screen and (max-width: 1000px) {
  .custom-table {
  border-spacing: 0;
  margin: 10px auto;
  font-size: 0.8rem;
  line-height: 1.6;
  }
}

.custom-table tr{
  border-bottom: 1px solid rgba(17, 17, 17, 0.5);
}

.left-cell, .right-cell {
  padding: 5px 0;
  text-align: left;
}

@media screen and (max-width: 1000px) {
  .left-cell, .right-cell {
    width: 100%;
    display: block;
    padding: 0;
  }
}

.left-cell {
  width: 180px;
  font-weight: bold;
}

.left-cell span{
  font-weight: normal;
}

@media screen and (max-width: 1000px) {
    .left-cell {
      margin-top: 10px;
      width: 100%;
    }
  }


@media screen and (max-width: 1000px) {
  .info{
    padding: 2rem 0;
  }
  .info-innar .square-btn{
    width: 100%;
  }
  .link-btn{
    margin: 1rem auto;
  }
}

.info .link-btn{
  margin: 38px auto;
}

.widget{
  overflow-x: auto;
  margin-top: 80px;
}

.widget h3{
  text-align: center;
}

.widget iframe {
  display: block;
  width: 100%;
  max-width: 646px;
  margin: 0 auto;
  border: 0;
}



.pagetop {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 30px;
    flex-direction: column;
    background: #191a1c;
}

.pagetop__arrow {
  display: block;
  height: 10px;
  width: 10px;
  border-top: 0.5px solid #fff;
  border-right: 0.5px solid #fff;
  transform: translateY(20%) rotate(-45deg) scale(1.6);
  margin-top: 1.3rem;
}

.pagetop p{
  font-size: 0.7rem;
  margin: 5px auto;
}

@media screen and (max-width: 1000px) {
  .pagetop p{
    font-size: clamp( 0.65rem, 2.5vw, 0.75rem);
  }
}

.pagetop:hover .pagetop__arrow{
  border-color: #b89a62;
}



/* ===== 外部リンク ===== */

.links {
  padding: 0;
  text-align: center;
  background: linear-gradient(to bottom, rgba(165, 22, 59, 1) 0%, rgba(119, 7, 36, 1) 100%);
  color: #fff;
  border: 5px solid #191a1c;
  box-shadow: 0.5px 0.5px 3px 0.2px #191a1c;
}

.links-innar{
  background-image: url(../images/bk-hl.svg);
  background-position: bottom;
  background-size: cover;
  background-attachment: fixed;
  padding: 50px 0;
}

.ajp{
  width: 250px;
  display: block;
  margin: 0 auto;
}

.link-three{
  display: flex;
  margin: 0 auto;
  width: 90%;
}

.link-three .link-btn{
  margin: 0;
}

.link-three .square-btn{
    width: 100%;
}

.link-three .link-btn:last-child .square-btn{
  border-right: solid 0.5px #191a1c;
}

@media screen and (min-width: 1001px) {
  .link-three .square-btn{
    border-right: none;
    width: 100%;
  }
}

@media screen and (max-width: 1000px) {
  .ajp{
    max-width: 200px;
    width: 70%;
  }
  .link-three{
    display: block;
  }
  .link-three .square-btn{
    border-bottom: none;
  }
  .link-btn{
    width: 100%;
  }
  .link-three .link-btn:last-child .square-btn {
    border-bottom: solid 0.5px #191a1c;
  }
}



footer {
  background-color: #191a1c;
  width: 100%;
  padding: 0;
  text-align: center;
}

.artdink_logo{
  margin: 0px auto;
  width: 100px;
}

@media screen and (max-width: 1200px) {
.artdink_logo img{
    width: 150px;
  }
}

.sns_icon {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 10px auto;
    padding: 0;
}

.sns_icon li{
  margin: 0 10px;
}

.sns_icon li:hover{
  opacity: 0.7;
}

.sns_icon img{
  height: 25px;
}

.footer-link {
  display: flex;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  list-style: none;
  margin: 10px auto;
  padding: 0;
  gap: 10px;
  justify-content: center;
}

.footer-link li a {
  transition: color 0.3s ease;
  text-decoration:none;
  padding: 10px;
  display: inline-block;
  width: 150px;
  font-size: 0.8rem;
}

@media screen and (max-width: 1000px) {
  .footer-link {
  display: block;
  margin: 0 auto;
  }
  .footer-link li{
    text-align: center;
  }
  .footer-link li a {
    font-size: 0.75rem;
  }
}

.footer-innar .copy{
  padding: 10px 20px 20px;
  color:#fff;
  font-size: 0.7rem;
}


hr{
  border: none;
  border-top: 0.5px solid #b89a62;
  width: 80%;
}



/* クリック可能に見せる */
.zoomable {
  cursor: zoom-in;
}

.image-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 2000;
}

.image-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.image-modal img {
  max-width: 90vw;
  max-height: 90vh;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
  animation: zoomIn 0.3s ease;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
}

@keyframes zoomIn {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}


.br-sp {
  display: none;
}

@media screen and (max-width: 1000px) {
  .br-pc {
    display: none;
  }
  .br-sp {
    display: inline-block;
  }
}


/* TABLET 601px ～ 1000px */

@media screen and (min-width: 601px) and (max-width: 1000px) {

  .main-visual-inner .release {
    font-size: 1.8rem;
  }

  .city-copy h2 {
    font-size: clamp( 6rem, 8vw, 8rem);
    line-height: 1;
  }

  .city-copy p {
    font-size: clamp( 1.6rem, 2.8vw, 1.8rem);
    line-height: 1.6;
  }

  .city-caption h3 {
    font-size: clamp( 1.4rem, 2.4vw, 1.6rem);
    line-height: 1.8;
  }

  .detail-right > span {
    font-size: 1.05rem;
  }

  .detail-right h2.en {
    font-size: clamp( 2.4rem, 4.8vw, 3.2rem);
    line-height: 1.05;
  }

  .detail-right h2.jp {
    font-size: clamp( 1.25rem, 2.4vw, 1.5rem);
    line-height: 1.5;
  }

  .detail-right p {
    font-size: clamp( 1.15rem, 2vw, 1.35rem );
    line-height: 1.8;
  }

  .detail-navi {
    font-size: 1.05rem;
  }

  .news-movie .midashi-title h2.en,
  .info .midashi-title h2.en,
  .links .midashi-title h2.en {
    font-size: clamp( 2.6rem, 5vw, 3.5rem);
    line-height: 1;
  }

  .news-movie .midashi-title h2.jp,
  .info .midashi-title h2.jp,
  .links .midashi-title h2.jp {
    font-size: clamp( 1.2rem, 2.2vw, 1.4rem);
    line-height: 1.5;
  }

  .news-row time {
    font-size: 1.05rem;
  }

  .news-row p {
    font-size: 1.25rem;
    line-height: 1.6;
  }

  .news-button-right {
    font-size: 1.1rem;
  }

  .movie-title {
    font-size: 1.2rem;
  }

  .btn-text {
    font-size: 1.1rem;
    letter-spacing: 0.14em;
  }

  .custom-table {
    font-size: 1.15rem;
    line-height: 1.7;
  }

  .pagetop p {
    font-size: 0.9rem;
  }

  .footer-link li a {
    font-size: 1rem;
  }

  .footer-innar .copy {
    font-size: 0.85rem;
    line-height: 1.7;
  }

}