@charset "utf-8";

/*共通設定
------------------------------*/
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth !important;
  scroll-behavior: auto;
  /*ぬるっとスクロール用に記載後で悪影響がないといいなと思う*/
  /* ネイティブのスムースは無効化（Lenisと二重になるのを防ぐ） */
}

html.lenis {
  scroll-behavior: auto;
}

body {
  position: relative;
  max-height: 100%;
  margin: 0;
  padding: 0;
  font-family: "fot-tsukuaoldmin-pr6n", sans-serif;
  font-size: 1.2rem;
  line-height: 1.6;
  letter-spacing: 1px;
  color: #231815;
  background: #FFFEFD;
  scroll-behavior: smooth !important;
  font-weight: 300;
  font-style: normal;
}

/* .body_inner {
  overflow: hidden;
} */

html,
body {
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

main {
  width: 100%;
  height: 100%;
  min-height: 100%;
}

h2 {
  font-weight: 300;
}

a {
  color: #000;
  text-decoration: none;
}

a:hover {
  opacity: .5;
  transition: 0.5s !important;
}

a[href^="tel:"] {
  pointer-events: none;
}

ul,
ol {
  list-style-type: none;
}

.align_center {
  text-align: center;
}

.spbr {
  display: none;
}

@media (max-width: 1300px) {
  html {
    font-size: 60%;
  }
}

@media (max-width: 767px) {
  html {
    font-size: 58%;
  }

  body {
    overflow-x: hidden;
    width: 100%;
    font-size: 1.5rem;
  }

  a[href^="tel:"] {
    pointer-events: auto;
  }
}

@media (max-width: 540px) {
  .pcbr {
    display: none;
  }

  .spbr {
    display: block;
  }
}

.header {
  position: sticky;
  top: 0;
  z-index: 200;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 48px 4.92%;
}

.tools {
  width: 168px;
  position: fixed;
  right: 4.92%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 20px;
  z-index: 2000;
}

.sns_box {
  width: 168px;
  position: fixed;
  right: 4.92%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
}

.sns {
  height: 20px;
  display: block;
  opacity: 1 !important;
  transition: opacity 0.4s ease;
}

.sns:hover {
  opacity: 0.6;
}

@media (max-width:767px) {
  .header {
    padding: 30px 7.44%;
  }

  .header_logo {
    width: 195px;
    height: 46px;
  }

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

  .tools {
    width: 106px;
    right: 7.44%;
    margin-top: 8px;
  }

  .sns_box {
    width: 114px;
  }

  .sns {
    height: 18px;
  }
}

html {
  scrollbar-gutter: stable;
}


/*ハンバーガーメニューここから
------------------------------*/
#menu {
  position: fixed;
  inset: 0;
  z-index: 10000;
}

.burger {
  position: relative;
  z-index: 1200;
  width: 63px;
  height: 48px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
  margin-top: -13px;
  margin-left: 16px;
}

.burger span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 63px;
  height: 1px;
  background-color: #989898 !important;
  transform-origin: center;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

/* 通常位置（PC: 行間10px） */
.burger span:nth-child(1) {
  transform: translate(-50%, calc(-50% - 10px));
}

.burger span:nth-child(2) {
  transform: translate(-50%, -50%);
}

.burger span:nth-child(3) {
  transform: translate(-50%, calc(-50% + 10px));
}

/* 開いたら✕（角度20°） */
.burger.open span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(20deg);
}

.burger.open span:nth-child(2) {
  opacity: 0;
  transition-delay: 0s;
}

.burger.open span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-20deg);
}

.burger:not(.open) span:nth-child(2) {
  opacity: 1;
  transition-delay: 0.1s;
}

.menu[hidden] {
  display: none;
}

.menu {
  position: fixed;
  inset: 0;
  z-index: 1500;
  pointer-events: none;
}

/* オーバーレイ いらなかったら消す*/
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .4);
  opacity: 0;
  transition: opacity 300ms ease-in-out;
  pointer-events: none;
}

/* パネル（PC） */
.panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 37%;
  background: rgba(0, 0, 0, 0.85);
  color: #f5f5f5;
  padding: 105px 80px 40px;
  box-sizing: border-box;
  transform: translateX(24px);
  opacity: 0;
  transition: transform 300ms ease-in-out, opacity 300ms ease-in-out;
  pointer-events: auto;
  backdrop-filter: blur(2px);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  z-index: 1000;
}

/* 開いた時の表示 */
.menu.open {
  pointer-events: auto;
}

.menu.open .overlay {
  opacity: 1;
  pointer-events: auto;
}

.menu.open .panel {
  transform: translateX(0);
  opacity: 1;
  /* overflow-y: scroll; */
}

/* ナビ部分 */
.nav {
  list-style: none;
  margin: 84px 0 0;
  padding: 0;
}

.nav li {
  position: relative;
  height: 50px;
}

.nav li a {
  display: flex;
  align-items: center;
  height: 100%;
  font-size: 20px;
  color: #fff;
  position: relative;
}

.nav li::before {
  content: '';
  position: absolute;
  left: -14px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: #E60012;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav li:hover::before,
.nav li.is-active::before {
  opacity: 1;
}

/* SNS部分 */
.menu_sns {
  border-bottom: 0.5px solid #F5F5F5;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  padding-bottom: 40px;
}

.menu_sns a {
  display: block;
  width: 20px;
  height: 20px;
}

/* その他メニュー内要素 */
.menu_contact {
  margin-top: 42px;
}

.menu_contact div {
  margin-bottom: 30px;
}

.menu_contact a {
  color: #F5F5F5;
  font-size: 11px;
  display: block;
}

.menu_title {
  color: #B14E4E;
  margin-bottom: 8px;
}

.menu_title:first-of-type {
  margin-top: 42px;
}

.small_text {
  font-size: 1rem;
}

.mb3 {
  margin-bottom: 3px;
}

/* PCで開いている間はスクロールを止める */
html.menu-open,
html.menu-open body {
  overflow: hidden !important;
}

/* ===============================
   Tablet
=============================== */
@media (max-width:1024px) {
  .burger span {
    width: 48px;
  }

  .burger span:nth-child(1) {
    transform: translate(-50%, calc(-50% - 9px));
  }

  .burger span:nth-child(3) {
    transform: translate(-50%, calc(-50% + 9px));
  }
}

/* ===============================
   SP（閉じる時のひゅっ動作なし）
=============================== */
@media (max-width:767px) {
  .burger span {
    width: 32px;
  }

  .burger {
    width: 32px;
    height: 18px;
    margin-top: 0;
    margin-left: 0;
  }

  .burger span:nth-child(1) {
    transform: translate(-50%, calc(-50% - 8px));
  }

  .burger span:nth-child(3) {
    transform: translate(-50%, calc(-50% + 8px));
  }

  .panel {
    left: 0;
    right: 0;
    width: 100vw;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.20);
    will-change: opacity, box-shadow;
    transform: none !important;
    /* 位置固定（動かさない） */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .45s ease;
    /* 透明度のみアニメ */
  }

  .menu.open .panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    padding: 105px 40px 40px;
  }
}

/* SP版でのスクロール固定（確実版） */
@media (max-width:767px) {
  body.scroll-lock {
    position: fixed;
    overflow: hidden;
    width: 100%;
  }
}

/*ハンバーガーメニューここまで
------------------------------*/

/*mail_visual
--------------------------------------------------- */
.main_visual {
  position: relative;
}

.main_text_pc {
  position: absolute;
  top: 40px;
  right: 31%;
  z-index: 10;
  width: 4.523%;
}

.main_text_sp {
  display: none;
}

/* ===== PC: 3枠 ===== */
.fade-gallery {
  display: flex;
  width: 100%;
  margin: auto;
}

.col {
  position: relative;
  flex: 1;
  overflow: hidden;
  aspect-ratio: 1738 / 2210;
}

.col img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  /* ふわっとのため初期は0 */
  transition: opacity 2s ease-in-out;
  /* ふわっと */
  will-change: opacity;
}

/* ===== SP: 1枠 ===== */
.mobile-stack {
  display: none;
}

.fade-gallery img {
  aspect-ratio: 1738 / 2210;
  /* 横:縦の比率 */
  width: 100%;
  height: auto;
  object-fit: cover;
  /* 中央でトリミングして比率維持 */
  display: block;
  /* 隙間防止 */
}

@media (max-width: 1023px) {
  .menu.open .panel {
    overflow-y: auto;
    padding: 40px 64px 40px;
    width: 45%;
  }
}

@media (max-width: 768px) {
  .main_visual h2 {
    padding: 0 7.44%;
  }

  .fade-gallery {
    display: block;
    /* PCのflexを解除 */
    position: relative;
  }

  .col {
    display: none;
    /* PC用は非表示 */
  }

  .mobile-stack {
    display: block;
    position: relative;
    width: 100%;
    aspect-ratio: 390 / 532;
    overflow: hidden;
    background: #eee;
  }

  .mobile-stack img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    /* ふわっと */
    will-change: opacity;
  }

  .main_text_pc {
    display: none;
  }

  .main_text_sp {
    display: block;
    width: 100%;
    margin-top: -6%;
    z-index: 100;
    position: relative;
  }
}

@media (max-width: 767px) {
  .menu.open .panel {
    width: 100%;
    padding: 40px 50px;
  }
}



/*mv下のテキスト
--------------------------------------------------- */
.top_message {
  width: 100%;
  padding: 60px 0;
  max-width: 1920px;
  margin: 0 auto;
}

.top_message_pc {
  width: 55%;
}

.top_message_sp {
  display: none;
}

@media (max-width: 2000px) {
  .top_message {
    padding: 60px 4.92%;
  }
}

@media (max-width: 1300px) {
  .top_message_pc {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .top_message {
    padding: 29px 7.44% 108px;
  }

  .top_message_pc {
    display: none;
  }

  .top_message_sp {
    display: block;
    width: 77%;
  }
}

/*mv下の開催日
--------------------------------------------------- */
.top_date {
  width: 100%;
  padding: 0 0 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  max-width: 1920px;
  margin: 0 auto;
}

.top_date_img {
  width: 30%;
}

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

.top_date_flex {
  width: 66%;
  height: 90px;
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
}

.top_ivent_date {
  line-height: 2;
  font-size: 1.3rem;
  letter-spacing: 2px;
}

.date_line_sp {
  display: none;
}

.date_line {
  width: 1px;
  height: 92px;
  object-fit: cover;
}

.top_infomation {
  font-size: 1.4rem;
  letter-spacing: 10%;
  line-height: 2;
}

.top_infomation li {
  margin-bottom: 3px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-width: 400px;
}

.top_infomation .mb16 {
  margin-bottom: 18px;
}

@media (max-width: 2000px) {
  .top_date {
    padding: 0 4.92% 60px;
  }
}

@media (max-width: 1600px) {
  .top_date {
    gap: 22px;
  }

  .top_ivent_date {
    font-size: 1.2rem;
    letter-spacing: 1.2px;
    min-width: 400px;
  }

  .top_date_img {
    width: 28%;
  }

  .top_infomation {
    font-size: 1.3rem;
  }

  .top_date_flex {
    margin-top: 0;
  }
}

@media (max-width: 1450px) {
  .top_date {
    justify-content: flex-start;
  }

  .top_date_img {
    width: 25%;
  }

  .top_date_flex {
    width: 73%;
  }
}

@media (max-width: 1300px) {
  .top_date {
    flex-direction: column;
    max-width: 1000px;
    gap: 29px;
  }

  .top_date_img {
    width: 50%;
    margin-right: auto;
  }

  .top_date_flex {
    width: 100%;
  }
}

@media (max-width: 920px) {
  .top_date_flex {
    flex-direction: column;
    height: auto;
  }

  .top_date_img {
    margin-right: unset;
  }

  .date_line {
    display: none;
  }
}

@media (max-width: 767px) {
  .top_date_img {
    padding-left: 0;
  }

  .top_date {
    padding: 0 7.44% 95px;
  }

  .top_ivent_date li {
    margin-bottom: 16px;
  }

  .top_ivent_date li:last-child {
    margin-bottom: 0;
  }

  .top_infomation li {
    max-width: 50%;
  }
}

@media (max-width: 540px) {

  .top_date_img {
    width: 100%;
  }

  .top_ivent_date {
    min-width: auto;
  }

  .top_date_flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 48px;
  }

  .top_infomation li {
    max-width: 100%;
    gap: 10px;
  }

  .top_infomation li img {
    width: 23px;
  }

  .date_line_sp {
    display: block;
    border-bottom: 0.5px solid #2b2b2b;
    width: 100%;
  }
}

/*トップページのスライダー
--------------------------------------------------- */
.swiper-container {
  position: relative;
  overflow: hidden;
  --peek: 27%;
  max-width: 1920px;
  margin: 0 auto;
}

/* 1920px以上：メインビジュアルの左端に合わせる */
@media (min-width: 2000px) {
  .swiper-container {
    max-width: unset;
    margin-left: calc((100vw - 1920px) / 2);
  }
}

@media (max-width: 1999px) {
  .swiper-container {
    margin-left: 4.92%;
  }
}

@media (max-width: 768px) {
  .swiper-container {
    --peek: 0px;
    margin-left: 0;
  }
}

.swiper-wrapper {
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.swiper-slide {
  flex: 0 0 calc(100% - var(--peek));
  width: auto;
  margin-right: 0 !important;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

/* =========================
   Slide Images (bg)
========================= */
.slide1 {
  background-image: url('../images/slide1.webp');
}

.slide2 {
  background-image: url('../images/slide2.jpg');
}

.slide3 {
  background-image: url('../images/slide3.webp');
}

.slide4 {
  background-image: url('../images/slide4.webp');
}

@media (max-width: 540px) {
  .slide1 {
    background-image: url('../images/slide1_sp.webp');
  }

  .slide2 {
    background-image: url('../images/slide2_sp.jpg');
  }

  .slide3 {
    background-image: url('../images/slide3_sp.webp');
  }

  .slide4 {
    background-image: url('../images/slide4_sp.webp');
  }
}


/* =========================
   スライドに重ねている文字
========================= */
.slide-text {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  z-index: 10;
  padding: 4%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.slide-text .title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 8px;
  width: 13%;
}

.slide-text .title img {
  width: 100%
}

.slide_info_box {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 35px;
}

.slide_date {
  width: 18.5%;
}

.slide_date img {
  width: 100%;
}

.sp_date {
  display: none;
}

.slide_info {
  min-width: 640px;
  font-size: 1.4rem;
  line-height: 16.708px;
  /* 128.525% */
  letter-spacing: 1.17px;
}

.slide_info li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.40);
}

.slide_map:hover {
  opacity: 0.6;
}

.slide_map {
  width: 25%;
}

.slide_map img {
  width: 55%;
  vertical-align: bottom;
}

.swiper-button-next {
  width: 5%;
  left: unset;
  right: 32%;
  top: unset;
  bottom: 10%;
}

.swiper-button-next img,
.swiper-button-prev img {
  width: 100%;
}

.swiper-button-next:hover {
  animation: poke-right 0.7s ease;
}

@keyframes poke-right {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(5px);
  }

  /* 右に動く */
  100% {
    transform: translateX(0);
  }
}

.swiper-button-prev {
  width: 5%;
  left: unset;
  right: 41%;
  top: unset;
  bottom: 10%;
}

.swiper-button-prev:hover {
  animation: poke-left 0.7s ease;
}

@keyframes poke-left {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-5px);
  }

  100% {
    transform: translateX(0);
  }
}

.swiper-button-next::after,
.swiper-button-prev::after {
  display: none;
}

.swiper-button-disabled {
  opacity: .35;
  pointer-events: none;
}

.swiper-wrapper {
  transition-timing-function: cubic-bezier(.22, .61, .36, 1);
  will-change: transform;
}

.swiper-slide {
  backface-visibility: hidden;
  transform: translateZ(0);
  aspect-ratio: 3504 / 1644;
}

.slider_txt {
  color: #F5F5F5;
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

/*チケット購入ボタン*/
.ticket_btn,
.end_btn {
  width: 170px;
  height: 40px;
  background: #A14141;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  padding: 0 14px;
  margin-top: 8px;
}

.ticket_btn img {
  width: 100%;
}

/*イベント終了ボタン*/
.end_btn {
  background: #A7A7A7;
}

.ticket_btn:hover {
  opacity: 1;
  background: #7F7F7F;
}

.slide_info .spbr {
  display: block;
}

@media (max-width: 1400px) {
  .slide_info {
    font-size: 1.3rem;
  }

  .swiper-button-prev,
  .swiper-button-next {
    bottom: 9%;
  }
}

@media (max-width: 1300px) {
  .slide_info {
    min-width: 600px;
  }
}

@media (max-width: 1200px) {

  .swiper-button-prev,
  .swiper-button-next {
    bottom: 7%;
  }

  .slide_info li {
    margin-bottom: 5px;
  }

  .slider_txt {
    font-size: 1.1rem;
  }

  .slide_info_box {
    gap: 10px;
  }

  .slide_info .spbr {
    display: block;
  }
}

@media (max-width: 960px) {
  .slide_info {
    font-size: 1.1rem;
    line-height: 13.517px;
    /* 122.475% */
    letter-spacing: 0.221px;
  }

  .slide_map {
    display: inline-block;
    width: 20%;
  }

  .pc_date {
    display: none;
  }

  .sp_date {
    display: block;
  }

  .swiper-button-prev,
  .swiper-button-next {
    bottom: 4%;
  }

  .swiper-slide {
    aspect-ratio: 3504 / 2000;
  }
}


@media (max-width: 768px) {

  .swiper-button-next,
  .swiper-button-prev {
    width: 38px;
    height: 38px;
  }

  .swiper-button-next {
    right: 7.44%;
    bottom: 6%;
  }

  .swiper-button-prev {
    left: unset;
    right: 20%;
    bottom: 6%;
  }

  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 14px;
  }

  .slide_info .spbr {
    display: none;
  }
}

@media (max-width: 540px) {
  .swiper-slide {
    aspect-ratio: 390 / 560;
  }

  .slide_date {
    width: 96px;
  }

  .slide-text .title {
    width: 35%;
  }

  .slide-text {
    padding: 50px 7.44% 88px;
  }

  .swiper-button-next {
    width: 50px;
    top: unset;
    bottom: 32px;
    right: 7.44%;
  }

  .swiper-button-prev {
    width: 50px;
    top: unset;
    bottom: 32px;
    right: 30%;
  }

  .slide_info_box {
    gap: 5px;
    align-items: flex-end;
  }

  .slide_info li {
    margin-bottom: 0;
    margin-top: 8px;
    gap: 4px;
  }

  .slide_info li img {
    width: 15px;
  }

  .slide_map {
    padding-left: 0;
  }

  .slide_info .slide_map img {
    width: 67px;
  }

  .ticket_btn {
    width: 148px;
    height: 38px;
    left: 7.44%;
  }

  .slide_info {
    min-width: unset;
  }
}

@media (max-width: 389px) {
  .sp_date {
    width: 90%;
  }

  .slide_info {
    font-size: 1rem;
  }
}

/*news
--------------------------------------------------- */
.news_section{
  border-bottom: 0.5px solid #231815;
  padding-bottom: 80px;
}
.news_wrapper.news_wrapper_top{
  margin: 65px auto 25px;
}
.news_viewmore{
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 1080px;
  padding-left: 180px;
}
.news_viewmore img{
  width: 80px;
}
.news_viewmore img:hover{
   border-bottom: 0.5px solid #989898;
  }

@media (max-width: 1200px) {
  .news_section{
    margin-bottom: 0;
    padding-bottom: 120px;
  }
  .news_viewmore{
  padding: 0 10.3%;
}
  .news_viewmore img{
    width: 70px;
  }
}


/*story
--------------------------------------------------- */
.top_story {
  max-width: 1200px;
  margin: 0 auto;
  padding: 280px 4.92% 300px;
}

.story-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 120px;
}

.photo-container {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.photo_text {
  position: absolute;
  left: 0;
  bottom: -36px;
}

.photo-wrapper {
  position: relative;
  /* overflow: hidden; */
  width: 185px;
  height: 520px;
}

.photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  transition: opacity 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.photo.active {
  opacity: 1;
}

.photo:not(.active) {
  opacity: 0;
}

.top_story h2 {
  font-size: 1.6rem;
  margin: 75px 0 30px 0;
  transform: scale(1.15, 1);
  letter-spacing: -0.3px;
  font-feature-settings: "palt";
  margin-left: 7%;
}

.top_story p {
  margin-bottom: 16px;
  line-height: 28px;
  transform: scale(1.15, 1);
  font-feature-settings: "palt";
  letter-spacing: -0.01rem;
  margin-left: 7%;
  min-width: 350px;
}

.top_story .photo_text {
  margin-bottom: 0;
}

.story_text {
  font-size: 1.2rem;
}

.signature {
  display: inline-block;
  width: 114px;
  margin-top: 20px;
  position: relative;
}

.signature img {
  width: 100%;
}

.signature img:hover {
  opacity: 0.5;
  transition: 0.5s !important;
}

.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.scroll-animate.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1200px) {
  .story-section {
    gap: 50px;
  }
}

@media (max-width: 1000px) {
  .story-section {
    flex-direction: column;
    align-items: center;
  }

  .top_story h2 {
    font-size: 1.4rem;
    margin: 110px 0 40px 2%;
  }

  .top_story p {
    margin-left: 2%;
  }

  .signature {
    margin-top: 76px;
  }
}

@media (max-width: 768px) {
  .top_story {
    padding: 150px 7.44% 222px;
  }

  .story-section {
    flex-direction: column;
    gap: 40px;
  }
}

@media (max-width: 540px) {
  .top_story p {
    margin-left: 13%;
    min-width: unset;
    max-width: 270px;
    margin: 0 auto 16px;
  }
}

@media (max-width: 480px) {
  .text-block p {
    font-size: 12px;
  }

  .photo-wrapper {
    width: 150px;
    height: 425px;
  }

  .top_story h2 {
    max-width: 270px;
    margin: 110px auto 40px;
  }

  .photo-container {
    width: 90%;
    gap: 10px;
  }

  .story_text {
    width: 90%;
  }
}

/*gallery 
-------------------------------------------------*/



/*top Artist
-------------------------------------------------*/
.top_artist {
  background-color: #2b2b2b;
  padding: 148px 0 200px;
  color: #f5f5f5;
  margin-top: 200px;
}

.top_artist h2 {
  margin-bottom: 70px;
  text-align: center;
}

.top_artist h2 span {
  display: block;
}

.top_artist_ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 60px 46px;
  max-width: 1150px;
  margin: 0 auto;
  color: #F5F5F5;
  margin-bottom: 130px;
}

.top_artist_ul li img {
  aspect-ratio: 188 / 213;
  object-fit: cover;
}

.artist_img {
  position: relative;
  display: inline-block;
  width: 100%;
  overflow: hidden;
}

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

/* カラー画像（hover時に表示） */
.hover {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  /* 少し長めに */
}

/* 親要素ホバー時に子要素を制御 */
.artist_img:hover .hover {
  opacity: 1;
  transition: opacity 1s ease;
  /* ここにもトランジション */
}

/* 重要：aタグの半透明効果を完全に無効化 */
a.artist_img,
a.artist_img:hover {
  opacity: 1 !important;
  transition: none;
  /* aタグ自体のトランジションは無効に */
}

.top_artist_ul .artist_img:hover .hover {
  opacity: 1;
}

.top_artist_ul li {
  text-align: center;
  ;
}

.architect {
  font-family: "fot-tsukuaoldmin-pr6n", sans-serif;
  color: #A14141;
  font-size: 1.1rem;
  margin: 12px 0 10px;
}

.architect span {
  font-size: 1rem;
  font-family: "Manrope", sans-serif;
  display: block;
}

.top_artist_name {
  color: #F5F5F5;
  font-size: 1.5rem;
  font-weight: 300;
}

.top_artist_name_en {
  font-size: 1.1rem;
  font-family: "A P-OTF GenrokuShian StdN", "Crimson Text", serif;
  margin-top: 3px;
  color: #F5F5F5;
  letter-spacing: 1.5px;
  font-style: italic;
}

.viewmore {
  display: block;
  width: 85px;
  margin: 0 auto;
}

.viewmore img {
  width: 100%;
}

.viewmore:hover {
  opacity: .5;
  transition: 0.5s !important;
}

.viewmore_btn {
  display: none;
}

.commingsoon {
  display: block;
  margin: 0 auto;
}

@media (max-width: 1400px) {
  .top_artist_ul {
    max-width: 70%;
  }
}

@media (max-width: 1200px) {
  .top_artist_ul {
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .top_artist_ul {
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
    gap: 60px 36px;
    margin-bottom: 62px;
  }

  .top_artist_ul li img {
    aspect-ratio: 1 / 1;
  }

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


  .top_artist {
    padding: 120px 7.44%;
    margin-top: 160px;
  }

}

@media (max-width: 540px) {
  .top_artist_name {
    font-size: 1.3rem;
  }

  .top_artist h2 {
    margin-bottom: 20px;
  }

  .architect {
    font-size: 1rem;
    margin: 5px 0 10px;
  }

  .architect span {
    font-size: 0.9rem;
  }

  .top_artist_name_en {
    font-size: 0.9rem;
  }
}

/*top Access
-------------------------------------------------*/
.top_access {
  text-align: center;
  padding: 200px 4.92% 350px;
}

.top_access h2 {
  margin: 0 auto 75px;
}

.top_access_flex {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 60px;
  max-width: 1612px;
  margin: 0 auto;
}

.sano {
  width: 30%;
}

.sano_access {
  width: 42%;
}

@media (max-width:1023px) {
  .top_access_flex {
    flex-direction: column;
    align-items: center;
  }

  .sano {
    width: 50%;
  }

  .sano_access {
    width: 90%;
  }
}

@media (max-width:768px) {
  .top_access {
    text-align: center;
    padding: 150px 7.44% 315px;
  }
}

@media (max-width:539px) {
  .top_access_flex img {
    width: 100%;
  }

  .top_access_flex .sano {
    width: 80%;
  }
}

/*footer
-------------------------------------------------*/
footer {
  padding: 0 8% 70px;
  background-color: #fff;
}

.footer_nav {
  display: flex;
  justify-content: space-between;
  margin-bottom: 36px;
  padding: 0 2.5%;
}

.footer_nav ul {
  display: flex;
  gap: 52px;
}

.footer_info {
  display: flex;
  justify-content: center;
  gap: 50px;
  padding-bottom: 20px;
  border-bottom: 0.5px solid #231815;
  position: relative;
}

.footer_info a {
  display: block;
}

.footer_info_topic {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.footer_info_text {
  font-size: 1.1rem;
}

.footer_sns {
  display: flex;
  position: absolute;
  bottom: 20px;
  right: 2.89%;
  gap: 21px;
}

small {
  color: #A14141;
  font-family: "Manrope", sans-serif;
  text-align: right;
  display: block;
  margin-top: 15px;
  font-size: 1rem;
  font-weight: 400;
  padding-right: 2.89%;
}

#page-top {
  position: fixed;
  bottom: 4%;
  right: 4%;
  line-height: 1;
  z-index: 99;
}

#page-top img {
  mix-blend-mode: difference;
}

#page-top a {
  width: 42px;
  text-align: center;
  display: block;
  border-radius: 90px;
  transition: all .3s ease;
}

#page-top a:hover {
  opacity: .5;
}

@media (max-width: 1300px) {
  .footer_nav {
    flex-direction: column;
    gap: 30px;
  }

  .footer_nav ul {
    justify-content: center;
  }
}

@media (max-width: 1023px) {
  #page-top {
    bottom: 2%;
  }
}

@media (max-width: 768px) {
  .footer_nav ul {
    justify-content: flex-start;
    gap: 20px;
  }

  .footer_nav_menu {
    flex-direction: column;
  }

  #page-top a {
    width: 38px;
  }

  #page-top a img {
    width: 100%;
    object-fit: cover;
  }

  .footer_logo {
    width: 220px;
  }

  .footer_sns {
    bottom: 245px;
    right: 6%;
    gap: 18px;
  }
}

@media (max-width: 540px) {
  footer {
    padding: 0 8% 30px;
  }

  #page-top {
    bottom: 1%;
  }

  .footer_info {
    gap: 36px;
  }

  .footer_info_text {
    font-size: 8px;
    letter-spacing: 0.24px;
  }

  small {
    font-size: 8px;
  }
}

@media (max-width: 389px) {
  .footer_info {
    gap: 16px;
    border-bottom: 0.5px solid #231815;
  }
}

/*ローディング
-----------------------------------------------*/
#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.logo {
  width: 200px;
  opacity: 0;
  z-index: 2;
  transition: opacity 3s ease;
}

@media (max-width: 767px) {
  .logo {
    width: 40%;
  }

  .bg {
    content: url('../images/sp_loadind.webp');
  }

  .logo {
    content: url('../images/sp_loadinglogo.svg');
  }
}

/*gallery 
-------------------------------------------------*/
.gallery-wrapper {
  height: 600vh;
  position: relative;
}

/* 中間画像のスタイル追加 */
.mid-image-1,
.mid-image-2 {
  z-index: 2;
  clip-path: inset(0 0 0% 0);
  transition: clip-path 0.15s ease-out;
}

.gallery-container {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  /* overflow: hidden; */
  background: #0a0a0a;
}

.image-pair {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  gap: 5px;
  padding: 1.2%;
  background-color: #fff;
}

.image-layer {
  position: relative;
  flex: 1;
  height: 100%;
  /* overflow: hidden; */
  border-radius: 20px;
}

.image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
  -webkit-clip-path: inset(0 0 0% 0);
  clip-path: inset(0 0 0% 0);
}

/* ベース画像（下層） */
.base-image {
  z-index: 1;
}

/* マスク画像（上層） */
.mask-image {
  z-index: 3;
  clip-path: inset(0 0 0% 0);
  transition: clip-path 0.15s ease-out;
}

.control-btn {
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 500;
}

.control-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.control-btn.active {
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-color: transparent;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .image-pair {
    flex-direction: column;
    padding: 8% 3%;
  }

  .controls {
    bottom: 20px;
    right: 20px;
    flex-direction: column;
  }

  .image-layer2 {
    display: none;
  }

  .gallery-wrapper {
    height: 600vh;
  }
}

/*下層ページ About - 2つの背景要素対応版
-------------------------------------------------*/
.section {
  position: relative;
  min-height: 150vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 300px;
  padding-bottom: 200px;
  margin-bottom: 0;
  gap: 50px;
}

.section:first-of-type {
  padding-top: 200px;
}

.section4 {
  padding-top: 400px;
}

.section h3 {
  color: #F5F5F5;
  font-size: 26px;
  font-weight: 300;
  transform: scale(1.15, 1);
  letter-spacing: -0.3px;
  font-feature-settings: "palt";
  margin-bottom: 40px;
  line-height: 1.8;
  position: relative;
}

.section h3 img {
  position: absolute;
  top: -50px;
  left: 0;
}

.section2 h3 {
  color: #231815;
}

.section p {
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 34px;
  letter-spacing: -1.2px;
  transform: scale(1.15, 1);
  letter-spacing: -0.3px;
  font-feature-settings: "palt";
  margin-bottom: 30px;
  -webkit-font-smoothing: antialiased;
}

.section2 p {
  color: #231815;
}

.section1 {
  min-height: 100vh;
}

.section2_flex {
  display: flex;
  gap: 100px;
  align-items: flex-start;
  margin-left: 2%;
}

.section3 .section_left,
.section4 .section_left {
  width: 43%;
}

.section_right1 {
  left: 8%;
}

.section3 .section_right,
.section4 .section_right {
  width: 30%;
}

.about_img {
  width: 345px;
  height: 600px;
}

/* 基本背景スタイル */
.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -10;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: opacity;
}

.background.active {
  opacity: 1;
}

.background {
  /* 既存のスタイル */
  transform: translate3d(0, 0, 0);
  /* GPU加速で処理安定化 */
  -webkit-transform: translate3d(0, 0, 0);
}

/* Safariのみ対象 */
@supports (-webkit-appearance: none) {
  .background {
    background-attachment: scroll;
    /* fixedの代わり */
  }
}

/* 各背景の設定 */
.bg-1 {
  background-image: url('../images/bg1.webp');
}

.bg-2 {
  background: #ffffff;
}

.bg-3 {
  background-image: url('../images/bg2.webp');
}

.bg-4 {
  background-image: url('../images/bg3.webp');
  background-position: center bottom;
  height: 150vh;
}

.sub_title {
  display: block;
  color: #989898;
}

.about_footer {
  position: relative;
  z-index: 2;
  background: #fff;
  backdrop-filter: blur(10px);
  margin-top: 0;
  padding-top: 200px;
}

.text-content {
  position: relative;
  z-index: 10;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.8s ease-out;
  color: #F5F5F5;
}

.text-content.visible {
  transform: translateY(0);
  opacity: 1;
}

.main-content {
  margin-bottom: 0;
  padding-bottom: 0;
}

.about_img {
  width: 345px;
  height: 600px;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.8s ease-out;
}

.about_img2 {
  width: 200px;
  margin-top: 14px;
}

.about_photo {
  display: flex;
  flex-direction: column;
}

.text-content.visible .about_img {
  transform: translateY(0);
  opacity: 1;
}

.sub_title_sp {
  display: none;
}

@media (max-width: 1024px) {
  .sub_title_pc {
    display: none;
  }

  .sub_title_sp {
    display: block;
    margin-bottom: 10px;
  }

  .background {
    background-attachment: scroll;
    /* モバイルではscrollに */
    height: 100%;
    /* 必要に応じて調整 */
  }

  .section {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .section p {
    font-weight: 300;
    font-size: 13px;
    letter-spacing: -0.5px;
  }

  .section h3 {
    font-size: 18px;
  }

  .section1 {
    padding: 400px 10.5% 200px;
  }

  .section_right1 {
    left: 0;
    margin-left: 3%;
  }

  .section1 h2 {
    margin-right: 0;
  }

  .section1 h3 {
    margin-bottom: 80px;
  }

  .section2 {
    padding: 100px 10.5% 200px;
  }

  .section2_flex {
    flex-direction: column-reverse;
    align-items: center;
    margin-left: 0;
  }

  .section2_text {
    width: 100%;
    margin-left: 14%;
  }

  .text-content2 {
    margin-left: 8%;
  }

  .about_img {
    width: 100%;
    height: auto;
  }

  .section3 {
    padding: 300px 10.5%;
    padding-bottom: 250px;
  }

  .section4 {
    padding: 200px 10.5% 500px;
  }

  .section3 .section_right,
  .section4 .section_right {
    width: 100%;
  }

  .bg-1 {
    background-image: url('../images/bg1_sp.webp');
  }

  .bg-2 {
    background: #ffffff;
  }

  .bg-3 {
    background-image: url('../images/bg2_sp.webp');
  }

  .bg-4 {
    background-image: url('../images/bg3_sp.webp');
    background-position: center bottom;

  }
}

@media (max-width: 820px) {
  .section_right1 {
    margin-left: 4%;
  }
}

@media (max-width: 545px) {
  .section_right1 {
    left: 0;
    margin-left: 5%;
  }

  .section p {
    width: 87%;
  }
  .section_right1 p{
    width: 100%;
  }
}

@media (max-width: 500px) {
  .section p {
    width: 90%;
  }
}

@media (max-width: 490px) {
  .section p {
    width: 88%;
  }

  .section_right1 {
    margin-left: 6%;
  }
  .section_right1 p{
    width: 100%;
  }
}

@media (max-width: 391px) {
  .section p {
    width: 96%;
  }

  .section2_text p {
    width: 87%;
  }

  .section .text_width {
    width: 87%;
  }
}

/*下層ページ Artist
-------------------------------------------------*/
.artist_wrapper,
.news_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1080px;
  margin: 250px auto;
}
.news_wrapper{
  margin-bottom: 44px;
}

.artist_title img {
  display: block;
}

.artist_topic {
  margin-bottom: 16px;
}

.acc_title {
  padding: 0 16px 16px;
}

.red_circle {
  margin-right: 9px;
}

.accordion {
  width: 796px;
  margin: auto;
  border-top: 0.5px solid #231815;
}

.acc-item {
  border-bottom: 0.5px solid #231815;
}

.acc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
  padding: 10px 0 10px;
  max-width: 690px;
  margin: 0 auto;
}

.acc-title {
  display: flex;
  gap: 38px;
  align-items: center;
}

.acc-title h3 {
  color: #000;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 1.12px;
}

.acc-title-en {
  font-family: "A P-OTF GenrokuShian StdN", "Crimson Text", serif;
  font-style: italic;
  font-size: 13px;
}

.job {
  display: flex;
  color: #A14141;
  font-style: normal;
  letter-spacing: 0.77px;
  gap: 8px;
  line-height: 2.5;
  min-width: 300px;
  font-size: 12px;
}

.job span {
  color: #A14141;
  font-size: 10px;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  letter-spacing: 0.9px;
  line-height: 2.9;
}

.acc-panel {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height .6s ease, opacity .6s ease-out;
}

.acc-item.is-open .acc-panel {
  opacity: 1;
}

.acc-inner {
  padding: 20px 0 50px;
}

.acc-flex {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
  max-width: 690px;
  margin: 0 auto;
}

.acc-inner p {
  margin: 0 0 12px;
}

.acc-icon {
  width: 8px;
  height: 8px;
  background: url("../images/plus.svg") no-repeat center/contain;
}

.acc-item.is-open .acc-icon {
  background-image: url("../images/minus.svg");
}

.artist_image {
  width: 130px;
  height: 185px;
}

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

.artist_text {
  width: 79%;
  font-size: 12.5px;
  color: #000;
  text-align: justify;
  line-height: 1.8;
}

.artist_text a {
  color: #A14141;
  display: inline-block;
  margin-top: 20px;
}

.artist_text_name {
  color: #000;
  font-size: 18px;
  letter-spacing: 1.26px;
  line-height: 1;
}

/*スライダー*/
/* Artist Slider専用CSS - 複数ID対応版 */
#artist_slider_1,
#artist_slider_2,
#artist_slider_3,
#artist_slider_4,
#artist_slider_5 {
  width: 100%;
  max-width: 692px;
  margin: 0 auto 40px auto;
  /* 複数スライダー間のマージン */
  position: relative;
  overflow: hidden;
}

/* コントロールを写真の上のスペースに配置 */
#artist_slider_1 .artist_controls,
#artist_slider_2 .artist_controls,
#artist_slider_3 .artist_controls,
#artist_slider_4 .artist_controls,
#artist_slider_5 .artist_controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

/* スライダーコンテナ */
#artist_slider_1 .artist_slider_container,
#artist_slider_2 .artist_slider_container,
#artist_slider_3 .artist_slider_container,
#artist_slider_4 .artist_slider_container,
#artist_slider_5 .artist_slider_container {
  display: flex;
  transition: transform 0.8s ease;
}

#artist_slider_1 .artist_slide,
#artist_slider_2 .artist_slide,
#artist_slider_3 .artist_slide,
#artist_slider_4 .artist_slide,
#artist_slider_5 .artist_slide {
  flex: 0 0 calc(100% / 3);
  /* PC: 3分割 */
  height: auto;
  padding-right: 11px;
  box-sizing: border-box;
}


#artist_slider_1 .artist_slide img,
#artist_slider_2 .artist_slide img,
#artist_slider_3 .artist_slide img,
#artist_slider_4 .artist_slide img,
#artist_slider_5 .artist_slide img {
  width: 100%;
  height: 134px;
  object-fit: cover;
  display: block;
}

/* ページネーションを中央に配置 */
#artist_slider_1 .artist_pagination,
#artist_slider_2 .artist_pagination,
#artist_slider_3 .artist_pagination,
#artist_slider_4 .artist_pagination,
#artist_slider_5 .artist_pagination {
  text-align: center;
  color: #000;
}

/* ボタンスタイル */
#artist_slider_1 .artist_button,
#artist_slider_2 .artist_button,
#artist_slider_3 .artist_button,
#artist_slider_4 .artist_button,
#artist_slider_5 .artist_button {
  width: 40px;
  height: 40px;
  background: none;
  color: #989898;
  border: none;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* 左矢印は左に移動 */
#artist_slider_1 .artist_prev_btn:hover,
#artist_slider_2 .artist_prev_btn:hover,
#artist_slider_3 .artist_prev_btn:hover,
#artist_slider_4 .artist_prev_btn:hover,
#artist_slider_5 .artist_prev_btn:hover {
  transform: translateX(-5px);
}

/* 右矢印は右に移動 */
#artist_slider_1 .artist_next_btn:hover,
#artist_slider_2 .artist_next_btn:hover,
#artist_slider_3 .artist_next_btn:hover,
#artist_slider_4 .artist_next_btn:hover,
#artist_slider_5 .artist_next_btn:hover {
  transform: translateX(5px);
}

.artist_sns_sp {
  display: none;
}

@media (max-width: 1200px) {
  .artist_wrapper {
    flex-direction: column;
    align-items: center;
    gap: 60px;
    padding: 0 10.3%;
    margin-top: 140px;
    margin-bottom: 87px;
  }

  .artist_title {
    width: 760px;
  }
}

@media (max-width: 1000px) {
  .acc-inner {
    padding: 10px 0 20px;
  }

  .accordion {
    width: 100%;
  }

  .artist_title {
    width: 100%;
  }

  .acc_title {
    padding: 0 0 10px;
  }
}

@media (max-width: 660px) {
  .acc-title {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
  }
}

/* モバイル時のレスポンシブ設定 */
@media (max-width: 600px) {

  #artist_slider_1 .artist_slide,
  #artist_slider_2 .artist_slide,
  #artist_slider_3 .artist_slide,
  #artist_slider_4 .artist_slide,
  #artist_slider_5 .artist_slide {
    flex: 0 0 calc(100% / 1.5);
    /* モバイル: 1.5枚表示 */
  }

  .acc-flex {
    flex-direction: column;
  }

  .artist_img_container {
    display: flex;
    gap: 30px;
    align-items: flex-start;
  }

  .artist_image {
    width: 195px;
    height: 206px;
  }

  .artist_sns {
    display: none;
  }

  .artist_sns_sp a {
    display: block;
    color: #A14141;
    margin-top: 5px;
    margin-bottom: 5px;
  }

  .artist_text {
    width: 100%;
    font-size: 14px;
  }

  .artist_sns_sp {
    display: block;
  }

  #artist_slider_1 .artist_controls,
  #artist_slider_2 .artist_controls,
  #artist_slider_3 .artist_controls,
  #artist_slider_4 .artist_controls,
  #artist_slider_5 .artist_controls {
    margin-bottom: 0;
    margin-top: 20px;
    font-size: 11px;
  }
}

/*下層ページ news
-------------------------------------------------*/
.news_title span {
  display: block;
  font-size: 12px;
}

.news_container {
  width: 900px;
}

.news_item {
  border-bottom: 0.5px solid #A5A5A5;
}

.news_item a,.news_item_detail {
  display: flex;
  gap: 20px;
  padding: 35px 0 15px;
}

.news_item_detail:first-child {
    padding-top: 10px;
}

.news_date{
  display: flex;
  gap: 20px;
}
.news_item:first-child a {
  padding-top: 10px;
}

.news_item time {
  width: 70px;
  /* font-weight: 500; */
  font-size: 12px;
}

.category {
  color: #E60012;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 12px;
}

.news_item h3 {
  font-weight: 300;
  font-size: 13px;
}

.pagenation,.pagenation2{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 32px;
  max-width: 1080px;
  margin: 0 auto 180px;
  padding-left: 180px;
}
.pagenation a {
  position: relative;
  font-style: italic;
  font-size: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 15px;
  text-decoration: none; /* デフォルトの下線消し */
}

.pagenation2 a{
  width: 44px;
}

.pagenation a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0.5px;
  width: 100%;
  background-color: #231815;
  opacity: 0;
  transition: opacity 0.5s ease; /* ← ここでふわっと */
}

.pagenation a:hover::after {
  opacity: 1;
}

.pagenation.pagenation2 a::after,
.pagenation.pagenation2 a:hover::after {
  content: none; /* 疑似要素自体を消す */
  opacity: 0;    /* 念のため */
}

@media (max-width: 1200px) {
  .news_wrapper{
    width: 100%;
    flex-direction: column;
    padding: 0 10.3%;
    margin-top: 140px;
    margin-bottom: 44px;
    gap: 40px;
  }

  .news_wrapper.news_wrapper_top {
    margin: 108px auto 32px;
}
  
.news_container {
    width: 100%;
}
.pagenation {
    width: 100%;
    padding: 0 10.3%;
  margin: 0 auto 100px;
}
}

@media (max-width: 700px) {
.news_item a,.news_item_detail {
    flex-direction: column;
    gap: 8px;
    padding: 15px 0 10px;
}
.news_date {
    gap: 30px;
}
.news_item time,.category {
  font-size: 11px;
}
}
/*下層ページ newsの詳細ページ
-------------------------------------------------*/
.news_container_detail{
  border-bottom: 0.5px solid #A5A5A5;
  padding-bottom: 78px;
}
.news_container_detail p{
  margin: 30px 0;
  font-size: 12.5px;
  line-height: 2;
  text-align: justify;
  text-align-last: left;
  -moz-text-align-last: left;/* Firefox 用 */
}

.news_image_detail{
  width: 600px;
  height: 370px;
}

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

@media (max-width: 700px) {
.news_image_detail {
    width: 100%;
}
.news_container_detail {
    padding-bottom: 38px;
}
}
@media (max-width: 540px) {
.news_image_detail {
    height: 250px;
}
}

@media (max-width: 390px) {
.news_image_detail {
    height: 180px;
}
}
