/*
Theme Name: Okinawa Actors School
Description: Custom theme for Okinawa Actors School
*/

/* ===============================================
# 共通設定
=============================================== */
:root {
  /* フォントの色 */
  --main_font_color: #1e1e1e;
  --white_font_color: #fff;
  --accent_color: #E60012;
  
  /* 背景の色 */
  --bg_white: #fff;
  --bg_gray: #f5f5f5;
  
  /* border */
  --border_gray: #e0e0e0;
  --border_content: 1px solid #030303; /* TOPの区切りの線 */

  /* padding */
  --padding_content: 120px 0;
  --padding_content_sp: 80px 0;

  
  /* テキスト */
  --txt_ja: 'Noto Sans JP', 'Roboto', 'ヒラギノ角ゴ ProN', '游ゴシック体', 'Meiryo', sans-serif;
  --txt_en: 'Lexend', 'Roboto', 'Arial', 'Helvetica Neue', 'Segoe UI', sans-serif;
}

/* スムーズスクロール */
html {
  scroll-behavior: auto;
  scroll-padding-top: 137px; /* ヘッダーの高さ分 */
}

@media screen and (max-width: 768px) {
  html {
    scroll-padding-top: 81px; /* モバイル時のヘッダーの高さ分 */
  }
}

body {
  line-height: 1.7;
  font-family: var(--txt_ja);
  font-size: 16px;
  letter-spacing: 0.05em;
  color: var(--main_font_color);
}

.inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

.contents {
  padding: var(--padding_content);
  border-bottom: var(--border_content);
}

.sub-contents {
  padding-bottom: 200px;
  border-bottom: var(--border_content);
}

.sp {
  display: none !important;
}

.pc {
  display: block !important;
}

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

  .pc {
    display: none !important;
  }
}



.section-title {
  font-family: var(--txt_en);
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 40px;
  text-align: left;
}

.section-title-ja {
  font-size: 14px;
  color: var(--accent_color);
  display: block;
  margin-top: 5px;
}

/* ヘッダー全体 */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

/* サブヘッダー */
.sub-header {
  background: #F9F6F1;
  padding: 10px 0;
  border-bottom: var(--border_content);
}

.sub-header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 30px;
}

.site-description {
  font-size: 12px;
  color: #333;
}

.social-links {
  display: flex;
  gap: 15px;
  align-items: center;
}

.social-links a {
  text-decoration: none;
  color: #333;
  font-size: 12px;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #E60012;
}

.social-links img {
  width: 20px;
  height: 20px;
  transition: opacity 0.3s;
  object-fit: contain;
}

.social-links a:hover img {
  opacity: 0.7;
}

/* メインヘッダー */
.main-header {
  background: #fff;
  padding: 20px 0;
  border-bottom: var(--border_content);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 30px;
}

.site-logo img {
  width: 220px;
}

.global-nav ul {
  display: flex;
  gap: 12px;
  align-items: center;
}

.global-nav a {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 1.2;
}

.global-nav a:hover {
  color: #E60012;
}

/* 英語表記のスタイル */
.nav-en {
  font-family: var(--txt_en);
  font-size: 15px;
  font-weight: bold;
  display: block;
  margin-bottom: 2px;
}

/* 日本語表記のスタイル */
.nav-ja {
  font-family: var(--txt_ja);
  font-size: 10px;
  font-weight: 400;
  display: block;
  opacity: 0.8;
}

/* レスポンシブ対応 */
@media screen and (max-width: 1024px) {  
  .global-nav a {
    font-size: 14px;
  }
  
  /* 英語表記のレスポンシブ調整 */
  .nav-en {
    font-size: 12px;
  }
  
  /* 日本語表記のレスポンシブ調整 */
  .nav-ja {
    font-size: 9px;
  }
}

@media screen and (max-width: 900px) {
  /* ナビゲーション項目間のギャップを狭く */
  .global-nav ul {
    gap: 8px;
  }
  
  /* さらに小さく調整 */
  .nav-en {
    font-size: 11px;
  }
  
  .nav-ja {
    font-size: 8px;
  }
}

@media screen and (max-width: 768px) {
  .sub-header {
    padding: 5px 0;
  }
  
  .global-nav {
    display: none;
  }

  .sub-header .header-inner,
  .header-inner {
    margin: 0 15px;
  }

  .main-visual {
    margin-top: 102px; /* モバイル用に調整 */
  }

  .nav-en {
    font-size: 16px;
  }

  .nav-ja {
    text-align: center;
    font-size: 10px;
  }
}

/* メインビジュアル */
.main-visual {
  margin-top: 137px;
  position: relative;
  width: 100%;
  overflow: visible;
  /* padding: 80px 0; */
  border-bottom: var(--border_content);
}

/* Swiperカスタマイズ */
.main-swiper {
  overflow: visible;
  padding: 0;
}

.main-swiper .swiper-slide {
  opacity: 1;
  transition: all 0.3s ease;
  transform: none;
  width: 100%;
}

.main-swiper.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
}

.main-swiper .swiper-slide-active {
  opacity: 1;
  transform: none;
}

.main-swiper.swiper-backface-hidden .swiper-slide-active {
  transform: translateZ(0);
}

.swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
}



/* ナビゲーションボタン */
.main-visual .main-prev,
.main-visual .main-next {
  width: auto;
  height: auto;
  top: auto;
  bottom: 80px;
  margin-top: 0;
  transform: none;
  background: none;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
}

.main-visual .main-prev {
  left: 100px;
}

.main-visual .main-next {
  right: 100px;
}

.main-visual .main-prev::after,
.main-visual .main-next::after {
  content: '';
}

.main-visual .main-prev span,
.main-visual .main-next span {
  font-size: 14px;
  color: #030303;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: gap 0.3s ease;
}

.main-visual .main-prev span i,
.main-visual .main-next span i {
  color: var(--accent_color);
  font-size: 20px;
  transition: transform 0.3s ease;
}

/* .main-visual .swiper-button-prev:hover span,
.main-visual .swiper-button-next:hover span {
  gap: 20px;
} */

.main-visual .main-prev:hover span,
.main-visual .main-next:hover span {
  opacity: 0.7;
}

/* ページネーション */
.main-pagination {
  position: absolute;
  right: 20px !important;
  /* transform: translateY(-50%); */
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 5px;
  z-index: 10;
  bottom: -20px !important;
  margin: -10px;
}

.main-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.7);
  border: 2px solid var(--border_gray);
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s ease;
  cursor: pointer;
  /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); */
}

.main-pagination .swiper-pagination-bullet-active {
  background: var(--accent_color);
  border-color: var(--accent_color);
  transform: scale(1.2);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.main-pagination .swiper-pagination-bullet:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: scale(1.1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.main-pagination .swiper-pagination-bullet-active:hover {
  background: var(--accent_color);
  transform: scale(1.2);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .main-visual {
    margin-top: 81px;
    /* padding: 50px 0 ; */
  }

  .main-visual .main-prev,
  .main-visual .main-next {
    bottom: 20px;
  }

  .main-visual .main-prev {
    left: 20px;
  }

  .main-visual .main-next {
    right: 20px;
  }

  .main-visual .main-prev span,
  .main-visual .main-next span {
    font-size: 14px;
    gap: 5px;
  }

  .main-visual .main-prev span i,
  .main-visual .main-next span i {
    font-size: 20px;
  }

  /* モバイル用ページネーション */
  .main-pagination {
    top: 40% !important;
    right: 15px !important;
    transform: translateY(-50%);
    gap: 8px;
  }

  .main-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
}

/* NEWS */
.post-list {
  margin-top: 60px;
}

.post-item {
  background: #fff;
  transition: background-color 0.3s ease;
  border-bottom: var(--border_content);
}

.post-item:first-child {
  border-top: var(--border_content);
}

.post-link {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 20px 0;
  text-decoration: none;
  color: inherit;
  position: relative;
}

.post-image {
  width: 200px;
  height: 150px;
  flex-shrink: 0;
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.post-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 15px;
}

.post-date {
  font-size: 14px;
}

.post-category {
  display: inline-block;
  padding: 4px 15px;
  font-size: 12px;
  border-radius: 20px;
  border: 1px solid #030303;
}

.post-category.event {
  background: #FFF2CC;
}

.post-category.media {
  background: #D9EAD3;
}

.post-category.news {
  background: #CFE2F3;
}

.post-category.release {
  background: #E6E6E6;
}

.post-title {
  font-size: 18px;
  line-height: 1.6;
}

.post-more {
  margin-left: auto;
  padding-right: 20px;
}

.post-more i {
  color: #E60012;
  font-size: 20px;
  transition: transform 0.3s ease;
}

.post-link:hover .post-more i {
  transform: translateX(5px);
}


.post-link:hover + .post-item,
.post-item:hover {
  background: #f5f5f5;
}

.post-more-link {
  text-align: center;
  margin-top: 60px;
}

.more-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 40px;
  background: #030303;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.more-button:hover {
  background: #E60012;
}

@media screen and (max-width: 768px) {
  .post-list {
    margin-top: 40px;
  }

  .post-link {
    /* flex-direction: column; */
    gap: 10px;
    padding: 20px 0;
  }

  .post-meta {
    flex-wrap: wrap;
    gap: 5px;
  }

  .post-category {
    padding: 2px 10px;
  }

  .post-image {
    width: 150px;
    height: 150px;
    aspect-ratio: 16/9;
  }

  .post-content {
    width: calc(100% - 200px);
    gap: 10px;
  }

  .post-title {
    font-size: 14px;
  }

  /* .post-more {
    position: absolute;
    right: 0;
    bottom: 20px;
  } */

  .post-more-link {
    margin-top: 40px;
  }
}

/* NEW MUSIC VIDEO */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.video-item img {
  width: 100%;
  height: auto;
}

/* NEW RELEASE */
.release-slider {
  position: relative;
  padding: 0 40px;
}

.release-item {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
}


.release-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}



.release-item:hover p {
  color: var(--accent_color);
}

/* MEMBER */
.member-slider {
  margin: 0  60px 60px 60px;
  position: relative;
}

.member-item {
  display: block;
}

.member-image {
  width: 100%;
  aspect-ratio: 1/1;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.member-image::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 30%;
  background: url(./img/member_bg.png) no-repeat center center / cover;
  z-index: 1;
  transition: all 0.3s ease;
}

.member-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0);
  z-index: 1;
  transition: all 0.3s ease;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  object-position: center top;
}

.member-item:hover .member-image::before {
  background: rgba(255, 255, 255, 0.1);
}

.member-item:hover .member-image img {
  transform: scale(1.1);
}

.member-info {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  padding: 0 10px;
  z-index: 2;
}

.member-name-en {
  font-size: 16px;
  line-height: 1.2;
  color: #fff;
  text-align: center;
  font-weight: bold;
}

.member-name-ja {
  font-size: 12px;
  line-height: 1.2;
  color: #fff;
  text-align: center;
}

/* Swiperカスタマイズ */
.member-slider .member-prev,
.member-slider .member-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #030303;
}

.member-slider .member-prev {
  left: -50px;
}

.member-slider .member-next {
  right: -50px;
}

.member-slider .member-prev::after,
.member-slider .member-next::after {
  /* font-size: 16px;
  color: #fff; */
  display: none;
}

.member-slider .member-prev i,
.member-slider .member-next i {
  color: #E60012;
  transition: color 0.3s;
}

.member-slider .member-prev,
.member-slider .member-next {
  transition: background-color 0.3s;
}

.member-slider .member-prev:hover,
.member-slider .member-next:hover {
  background: #030303;
}

.member-slider .member-prev:hover i,
.member-slider .member-next:hover i {
  color: #fff;
}

.member-more-link {
  text-align: center;
  margin-top: 60px;
}

@media screen and (max-width: 768px) {
  .member-slider {
    margin: 0;
    /* padding: 0 40px; */
  }

  .member-name-en {
    font-size: 14px;
  }

  .member-name-ja {
    font-size: 10px;
  }

  .member-slider .member-prev,
  .member-slider .member-next {
    top: 110%;
  }

  .member-slider .member-prev {
    right: 70px;
    left: auto;
  }

  .member-slider .member-next {
    right: 10px;
  }

  .member-slider .member-prev::after,
  .member-slider .member-next::after {
    font-size: 14px;
  }

  /* .member-more-link {
    margin-top: 40px;
  } */
}

/* スポンサー */
.sponsor-list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: center;
}

.sponsor-list img {
  height: 40px;
  width: auto;
  transition: opacity 0.3s ease;
}

.sponsor-list img:hover {
  opacity: 0.7;
}

/* ボタン */
.more-btn {
  display: inline-block;
  padding: 15px 40px;
  background: var(--main_font_color);
  color: var(--white_font_color);
  text-decoration: none;
  border-radius: 30px;
  margin-top: 40px;
  transition: 0.3s;
}

.more-btn:hover {
  background: var(--accent_color);
  opacity: 1;
}

/* ===============================================
# タブレット
=============================================== */
@media screen and (max-width: 1280px) {
  .inner {
    width: 95%;
    max-width: 1200px;
    box-sizing: border-box;
  }
  
  .member-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===============================================
# スマホ
=============================================== */
@media screen and (max-width: 767px) {
  .inner {
    width: 95%;
    padding: 0;
    box-sizing: border-box;
  }

  .contents {
    padding: var(--padding_content_sp);
  }

  .section-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .global-nav {
    display: none;
  }

  .video-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .sponsor-list {
    gap: 20px;
  }

  .sponsor-list img {
    height: 30px;
  }
}

/* SPECIAL EVENT */
.event-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 60px;
}

.event-item {
  display: flex;
  gap: 40px;
  position: relative;
}

.event-item img {
  width: 50%;
  height: 350px;
  background: #f0f0f0;
}

.event-item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.event-date {
  font-size: 14px;
  margin-bottom: 20px;
}

.event-title {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.event-more {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50px;
  height: 50px;
  border: 1px solid #030303;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.event-more i {
  color: #E60012;
  font-size: 20px;
}

.event-more:hover {
  background: #030303;
}

.event-more:hover i {
  color: #fff;
}

@media screen and (max-width: 768px) {
  .event-list {
    gap: 40px;
    margin-top: 40px;
  }

  .event-item {
    flex-direction: column;
    gap: 20px;
  }

  .event-item img {
    width: 100%;
  }

  .event-title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .event-more {
    position: relative;
    margin-top: 20px;
    align-self: flex-end;
  }
}

@media screen and (max-width: 768px) {
  .sponsor-list {
    gap: 30px;
  }

  .sponsor-list img {
    height: 30px;
  }
}

/* FOOTER */
.footer {
  color: #030303;
  position: relative;
}

.footer-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0;
  background: #F9F6F1;
  padding: 60px 120px 60px 60px;
}

.footer-logo {
  margin-bottom: 30px;
}

.footer-logo a {
  display: inline-block;
  transition: opacity 0.3s ease;
}

.footer-logo a:hover {
  opacity: 0.7;
}

.footer-logo img {
  width: 300px;
  height: auto;
}

.footer-info {
  font-size: 14px;
  line-height: 1.8;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 30px;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 30px;
}

.footer-menu a {
  font-size: 16px;
  transition: opacity 0.3s ease;
  font-family: var(--txt_en);
}

.footer-menu a:hover {
  opacity: 0.7;
}

.footer-social {
  display: flex;
  gap: 20px;
}

.social-link img {
  width: 30px;
  height: 30px;
  transition: opacity 0.3s ease;
  object-fit: contain;
}

.social-link:hover img {
  opacity: 0.7;
}

.privacy-link {
  font-size: 14px;
  color: #434343;
}

.copyright {
  text-align: right;
  font-size: 12px;
  margin: 0;
  background: #E83421;
  color: #fff;
  padding: 15px 120px;
}

@media screen and (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 30px;
    align-items: center;
    padding: 40px 10px;
  }

  .footer-logo {
    text-align: center;
    margin-bottom: 10px;
  }


  .footer-info p {
    text-align: center;
  }

  .footer-nav {
    align-items: center;
    gap: 15px;
  }

  .footer-menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 15px;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .copyright {
    text-align: center;
    padding: 15px 5px;
    box-sizing: border-box;
    height: 50px;
  }


}

.page-top {
  position: absolute;
  right: 0;
  bottom: 51px;
  width: 80px;
  height: 80px;
  background: #fff;
  color: #E83421;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 5px 0 0 0;
  transition: opacity 0.3s ease;
}

.page-top i {
  font-size: 30px;
}

.page-top:hover {
  opacity: 0.8;
}

@media screen and (max-width: 768px) {
  .page-top {
    right: 0;
    bottom: 50px;
    width: 60px;
    height: 60px;
  }

  .page-top i {
    font-size: 20px;
  }
}

/* Google Fontsの読み込み */
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@500&display=swap');

/* Sub Page Main Visual */
.sub-mv {
  position: relative;
  width: 100%;
  height: 350px;
  margin-top: 137px;
  margin-bottom: 80px;
  border-bottom: var(--border_content);
}

.sub-mv__mask {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.sub-mv__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
}

.sub-mv__title h1 {
  font-family: var(--txt_en);
  font-size: 64px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  text-align: center;
}

.sub-mv__title p {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1;
}

/* Single Post MV Overlay */
.post-mv .sub-mv__mask::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.post-mv .sub-mv__title {
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .sub-mv {
    height: 200px;
    margin-top: 81px;
    margin-bottom: 40px;
  }

  .sub-mv__title h1 {
    font-size: 40px;
  }

  .sub-mv__title p {
    font-size: 18px;
  }
}

/* Sub Page Common */
.sub-page {
  padding-bottom: 120px !important;
  border-bottom: var(--border_content);
}

@media screen and (max-width: 768px) {
  .sub-page {
    /* padding-top: 40px; */
    padding-bottom: 40px;
  }
}

/* Company Page */
.company__content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.company__info {
  width: 100%;
}

.company__info-item {
  display: flex;
  align-items: center;
  border-bottom: 2px solid #E6E6E6;
  padding: 30px 0;
}

.company__info-item dt {
  width: 145px;
  line-height: 1.3;
  color: #E83421;
}

.company__info-item dd {
  flex: 1;
  line-height: 1.3;
  color: #030303;
}

@media screen and (max-width: 768px) {
  .company__content {
    padding: 0 15px;
  }

  .company__info-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 0;
  }

  .company__info-item dt {
    width: 100%;
    font-size: 16px;
    margin-bottom: 10px;
  }

  .company__info-item dd {
    width: 100%;
    font-size: 16px;
  }
}

/* Partner Page */
/* .partner__content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
} */

.partner__section {
  margin-bottom: 100px;
  padding-bottom: 100px;
  border-bottom: var(--border_content);
}

.partner__section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.partner__section-title {
  margin-bottom: 60px;
}

.partner__section-title-en {
  display: block;
  font-family: var(--txt_en);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 5px;
  text-align: center;
}

.partner__section-title-ja {
  display: block;
  font-size: 14px;
  color: #E83421;
  text-align: center;
}

.partner__list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.partner__item {
  width: calc((100% - 80px) / 3);
  min-width: 200px;
  max-width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.partner__item img {
  width: 100%;
  height: 90px;
  object-fit: contain;
}

@media screen and (max-width: 768px) {
  .partner__section {
    padding-bottom: 60px;
  }

  .partner__section .inner {
    padding: 0 15px;
  }

  .partner__section-title {
    margin-bottom: 40px;
  }

  .partner__section-title-en {
    font-size: 24px;
  }

  .partner__section-title-ja {
    font-size: 12px;
  }

  .partner__list {
    gap: 20px;
  }

  .partner__item {
    width: calc((100% - 20px) / 2);
    min-width: 140px;
    padding: 15px;
    box-sizing: border-box;
  }
}


/* ビデオセクション */
.video-container {
  margin: 0 60px 60px 60px;
  position: relative;
}

.video-swiper {
  padding: 0 50px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9のアスペクト比 */
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.video-title {
  margin-top: 15px;
  font-size: 16px;
  text-align: center;
  font-weight: bold;
}

.video-container .video-prev,
.video-container .video-next {
    width: 40px;
    height: 40px;
  background: #fff;
  border: 1px solid #030303;
  border-radius: 50%;
  margin-top: -20px;
}

.video-container .video-prev {
  left: -50px;
}

.video-container .video-next {
  right: -50px;
}

.video-container .video-prev::after,
.video-container .video-next::after {
    display: none;
  }

.video-container .video-prev i,
.video-container .video-next i {
  color: #E60012;
    font-size: 16px;
  }

.video-container .video-prev:hover,
.video-container .video-next:hover {
  background: #030303;
}

.video-container .video-prev:hover i,
.video-container .video-next:hover i {
  color: #fff;
}

@media screen and (max-width: 767px) {
  .video-container {
    margin: 0;
  }

  .video-swiper {
    padding: 0 40px;
  }

  .video-title {
    font-size: 14px;
  }

  .video-container .video-prev,
  .video-container .video-next {
    top: 110%;
  }

  .video-container .video-prev {
    right: 70px;
    left: auto;
  }

  .video-container .video-next {
    right: 10px;
  }
  

  
}

/* リリースセクション */
.release-container {
      margin: 0 60px 60px 60px;
  position: relative;
}

.release-swiper {
  padding: 0 50px;
}

.release-item {
  display: flex;
  flex-direction: column;
  aspect-ratio: auto; /* 固定比率を解除 */
  overflow: visible;  /* 隠さないように変更 */
  text-align: center;
  text-decoration: none;
}

.release-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.release-item:hover img {
  transform: scale(1.01);
  opacity: 0.8;
}

.release-item:active {
  transform: scale(0.95);
  transition: transform 0.15s ease-out;
}

.release-item:active img {
  transform: scale(1.1);
  transition: transform 0.15s ease-out;
}

.release-item p {
  transition: color 0.3s ease;
}

.release-container .new-release-prev,
.release-container .new-release-next {
  width: 40px;
  height: 40px;
  background: #fff;
  border: 1px solid #030303;
  border-radius: 50%;
  margin-top: -20px;
}

.release-container .new-release-prev {
  left: -50px;
}

.release-container .new-release-next {
  right: -50px;
}

.release-container .new-release-prev::after,
.release-container .new-release-next::after {
  display: none;
}

.release-container .new-release-prev i,
.release-container .new-release-next i {
  color: #E60012;
  font-size: 16px;
}

.release-container .new-release-prev:hover,
.release-container .new-release-next:hover {
  background: #030303;
}

.release-container .new-release-prev:hover i,
.release-container .new-release-next:hover i {
  color: #fff;
}

@media screen and (max-width: 767px) {
  .release-container {
    margin: 0;
  }

  .release-swiper {
    padding: 0 40px;
  }

  .release-container .new-release-prev,
  .release-container .new-release-next {
    top: 110%;
  }

  .release-container .new-release-prev {
    right: 70px;
    left: auto;
  }

  .release-container .new-release-next {
    right: 10px;
  }

  .release-item p {
    font-size: 14px;
  }
}

/* ページネーション */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 60px;
}

.pagination .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--main_font_color);
  border-radius: 50%;
  font-family: var(--txt_en);
  font-size: 16px;
  color: var(--main_font_color);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.pagination .page-numbers:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  background: var(--main_font_color);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.pagination .page-numbers.current {
  background: var(--main_font_color);
  color: #fff;
  transform: scale(1.1);
}

.pagination .page-numbers:hover:not(.current):not(.dots) {
  color: #fff;
  transform: scale(1.1);
}

.pagination .page-numbers:hover:not(.current):not(.dots):before {
  transform: translate(-50%, -50%) scale(1);
}

.pagination .prev,
.pagination .next {
  font-size: 14px;
}

.pagination .prev:hover i,
.pagination .next:hover i {
  animation: arrowMove 0.5s ease-in-out;
}

.pagination .dots {
  border: none;
  width: auto;
}

@keyframes arrowMove {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-3px);
  }
  100% {
    transform: translateX(0);
  }
}

.pagination .next:hover i {
  animation-name: arrowMoveRight;
}

@keyframes arrowMoveRight {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(3px);
  }
  100% {
    transform: translateX(0);
  }
}

@media screen and (max-width: 768px) {
  .pagination {
    gap: 8px;
    margin-top: 40px;
  }

  .pagination .page-numbers {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }

  .pagination .prev,
  .pagination .next {
    font-size: 12px;
  }
}

/* アーカイブメンバー */
.archive-member__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 24px;
  margin-top: 60px;
}

.archive-member__item {
  display: block;
  position: relative;
}

.archive-member__image {
  width: 100%;
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
}

.archive-member__image::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 30%;
  background: url(./img/member_bg.png) no-repeat center center / cover;
  z-index: 1;
  transition: all 0.3s ease;
}

.archive-member__image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0);
  z-index: 1;
  transition: all 0.3s ease;
}

.archive-member__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s ease;
}

.archive-member__info {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  padding: 0 10px;
  z-index: 2;
}

.archive-member__name-en {
  font-size: 16px;
  line-height: 1.2;
  color: #fff;
  text-align: center;
  font-weight: bold;
}

.archive-member__name-ja {
  font-size: 12px;
  line-height: 1.2;
  color: #fff;
  text-align: center;
}

.archive-member__item:hover .archive-member__image::before {
  background: rgba(255, 255, 255, 0.1);
}

.archive-member__item:hover .archive-member__image img {
  transform: scale(1.1);
}

@media screen and (max-width: 1024px) {
  .archive-member__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 20px;
  }
}

@media screen and (max-width: 768px) {
  .archive-member__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
    margin-top: 40px;
  }

  .archive-member__name-en {
    font-size: 14px;
  }

  .archive-member__name-ja {
    font-size: 11px;
  }
}

@media screen and (max-width: 480px) {
  .archive-member__info {
    bottom: 5px;
  }
}

/* メンバー詳細 */
.member-detail .sub-mv {
  background: #1E1E1E;
  height: 300px;
}

.member-detail .sub-mv__mask {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.member-detail .sub-mv__title {
  text-align: center;
  color: #fff;
}

.member-detail .sub-mv__title h1 {
  font-size: 48px;
  font-family: var(--txt_en);
  margin-bottom: 10px;
}

.member-detail .sub-mv__title p {
  font-size: 16px;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .member-detail .sub-mv {
    height: 150px;
  }

  .member-detail .sub-mv__title h1 {
    font-size: 32px;
    margin-bottom: 5px;
  }

  .member-detail .sub-mv__title p {
    font-size: 14px;
  }
}

.member-detail__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin: 60px 0 120px;
}

.member-detail__image {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
}

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

.member-detail__info {
  padding: 20px 0;
}

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

.member-detail__item {
  display: flex;
  align-items: baseline;
  gap: 40px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border_gray);
}

.member-detail__item dt {
  width: 100px;
  font-weight: bold;
}

.member-detail__item dd {
  flex: 1;
}

.member-detail__item dd a {
  color: var(--accent_color);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.member-detail__item dd a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 1024px) {
  .member-detail__container {
    gap: 40px;
  }

  .member-detail__item {
    gap: 30px;
  }

  .member-detail__item dt {
    width: 90px;
  }
}

@media screen and (max-width: 768px) {
  .member-detail__container {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
    margin: 60px 0 80px;
  }

  .member-detail__info {
    padding: 0;
  }

  .member-detail__list {
    gap: 20px;
  }

  .member-detail__item {
    gap: 20px;
    padding-bottom: 12px;
  }

  .member-detail__item dt {
    width: 80px;
    font-size: 14px;
  }

  .member-detail__item dd {
    font-size: 14px;
  }
}

/* ハンバーガーメニュー */
.hamburger {
  display: none;
  position: relative;
  width: 30px;
  height: 24px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
}

.hamburger__line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #333;
  transition: transform 0.3s;
}

.hamburger__line:nth-child(1) {
  top: 0;
}

.hamburger__line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger__line:nth-child(3) {
  bottom: 0;
}

/* ハンバーガーメニューオープン時 */
.hamburger.is-active .hamburger__line:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}

.hamburger.is-active .hamburger__line:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active .hamburger__line:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .hamburger {
    display: block;
    z-index: 999;
  }

  .global-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    transition: transform 0.3s ease-in-out;
    z-index: 998;
    padding: 50px 20px;
    box-sizing: border-box;
    box-shadow: -2px 0 4px rgba(0, 0, 0, 0.1);
  }

  .global-nav.is-active {
    transform: translateX(0);
    display: block;
    right: 0;
  }

  .global-nav__list {
    flex-direction: column;
  }

  /* .global-nav__item {
    margin: 0 0 20px;
  } */

  .global-nav__item a {
    display: block;
    font-size: 18px;
    padding: 10px;
  }

  /* SNSリンクのスタイル */
  .global-nav__item--sns {
    width: 100%;
  }

  .global-nav__item--sns-first {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-top: 20px;
    padding: 15px 0;
  }

  .global-nav__sns {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }

  .global-nav__sns-link {
    display: flex;
    align-items: center;
    font-size: 14px !important;
    padding: 5px !important;
  }

  .global-nav__sns-link img {
    width: 24px;
    height: 24px;
    object-fit: contain;
  }

  /* SHOP, COMPANY, CONTACTのリンク */
  .global-nav__sns-link:nth-child(-n+3) {
    /* width: calc(33.333% - 10px); */
    display: inline-block;
    padding: 10px;
    justify-content: center;
    transition: background-color 0.3s;
  }

  /* .global-nav__sns-link:nth-child(-n+3):hover {
    background-color: #e5e5e5;
  } */

  /* SNSアイコンのリンク */
  /* .global-nav__sns-link:nth-child(n+4) {
    width: calc(25% - 12px);
  } */

  /* サブヘッダーのレスポンシブ対応 */
  .sub-header .social-links {
    display: none;
  }
}

/* オーバーレイ */
/* .overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 997;
  transition: opacity 0.3s ease-in-out;
}

.overlay.is-active {
  display: block;
} */

/* Single Post */
.single-post {
  /* max-width: 800px; */
  margin: 0 auto;
}

.single-post__header {
  padding-bottom: 10px;
  margin-bottom: 40px;
  text-align: center;
  border-bottom: 1px solid var(--border_gray);
}

.single-post__meta {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
}

.single-post__date {
  font-size: 14px;
  color: var(--main_font_color);
}

.single-post__category {
  display: inline-block;
  padding: 4px 15px;
  font-size: 12px;
  border-radius: 20px;
  border: 1px solid #030303;
}

.single-post__category.event {
  background: #FFF2CC;
}

.single-post__category.media {
  background: #D9EAD3;
}

.single-post__category.news {
  background: #CFE2F3;
}

.single-post__category.release {
  background: #E6E6E6;
}

.single-post__title {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.4;
  color: var(--main_font_color);
}

.single-post__content {
  line-height: 1.8;
  font-size: 16px;
}

.single-post__content h3,
.audition__section h3{
  font-size: 22px;
  padding-left: 10px;
  border-left: 4px solid var(--accent_color);
  margin-bottom: 10px;
}

.single-post__content p {
  margin-bottom: 1.5em;
}

.single-post__content img {
  max-width: 100%;
  height: auto;
  margin: 20px 0;
  width: 500px;
}

.single-post__content a {
  color: var(--accent_color);
}

.single-post__content a:hover {
  opacity: 0.7;
}

/* Post Navigation */
.post-navigation {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-top: 80px;
  padding-top: 60px;
  /* border-top: 1px solid var(--border_gray); */
}

.post-nav__prev,
.post-nav__next {
  flex: 1;
  max-width: 45%;
}

.post-nav__next {
  text-align: right;
}

.post-nav__next .post-nav__title {
  text-align: right;
}

.post-nav__link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  padding: 20px;
  border: 1px solid var(--border_gray);
  border-radius: 8px;
}

.post-nav__link:hover {
  background: var(--bg_gray);
  border-color: var(--accent_color);
}

.post-nav__label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--accent_color);
  margin-bottom: 10px;
  font-weight: bold;
}

.post-nav__next .post-nav__label {
  justify-content: flex-end;
}

.post-nav__title {
  font-size: 16px;
  line-height: 1.4;
  display: block;
}

@media screen and (max-width: 768px) {
  .single-post {
    padding: 0 15px;
  }

  .single-post__header {
    margin-bottom: 30px;
  }

  .single-post__meta {
    /* flex-direction: column; */
    gap: 10px;
  }

  .single-post__title {
    font-size: 20px;
  }

  .single-post__content {
    font-size: 14px;
  }

  .post-navigation {
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
    padding-top: 0;
  }

  .post-nav__prev,
  .post-nav__next {
    max-width: 100%;
  }

  .post-nav__next {
    text-align: left;
  }

  .post-nav__next .post-nav__label {
    justify-content: flex-start;
  }

  .post-nav__link {
    padding: 15px;
  }

  .post-nav__label {
    font-size: 12px;
  }

  .post-nav__title {
    font-size: 14px;
  }
}

/* Other Members Section */
.other-members {
  /* padding: var(--padding_content); */
  /* background-color: #f9f9f9; */
}

.other-members__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.other-members__item {
  display: block;
}

.other-members__item .member-item {
  text-decoration: none;
  color: inherit;
  display: block;
}

.other-members__item .member-image {
  width: 100%;
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.other-members__item .member-image::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 30%;
  background: url(./img/member_bg.png) no-repeat center center / cover;
  z-index: 1;
  transition: all 0.3s ease;
}

.other-members__item .member-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0);
  z-index: 1;
  transition: all 0.3s ease;
}

.other-members__item .member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  object-position: center top;
}

.other-members__item:hover .member-image::before {
  background: rgba(255, 255, 255, 0.1);
}

.other-members__item:hover .member-image img {
  transform: scale(1.1);
}

.other-members__item .member-info {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  padding: 0 10px;
  z-index: 2;
}

.other-members__item .member-name-en {
  font-size: 16px;
  line-height: 1.2;
  color: #fff;
  text-align: center;
  margin-bottom: 5px;
}

.other-members__item .member-name-ja {
  font-size: 12px;
  line-height: 1.2;
  color: #fff;
  text-align: center;
  margin: 0;
}

@media screen and (max-width: 1024px) {
  .other-members__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media screen and (max-width: 768px) {
  .other-members {
    /* padding: var(--padding_content_sp); */
    padding-top: 120px;
  }

  /* .other-members__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  } */
}

/* contact */
.contact-txt {
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: bold;
  margin-bottom: 8px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  max-width: 600px;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

textarea {
  resize: vertical;
  min-height: 150px;
}

.red {
  color: #e60033;
  font-weight: bold;
}

.privacy {
  margin-top: 20px;
  font-size: 14px;
}

.contact_btn {
  margin-top: 30px;
  text-align: center;
}

.contact_btn input[type="submit"] {
  width: 100%;
  /* max-width: 400px; */
  padding: 14px 20px;
  font-size: 18px;
  font-weight: bold;
  background-color: var(--accent_color);
  color: var(--white_font_color);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(230, 0, 18, 0.3);
}

.contact_btn input[type="submit"]:hover {
  background-color: #c8000f;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(230, 0, 18, 0.4);
}

.contact_btn input[type="submit"]:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(230, 0, 18, 0.3);
}

@media screen and (max-width: 768px) {
  .form-group {
    margin-bottom: 16px;
  }
}

/* ===============================================
# オーディションセクション
=============================================== */
.audition-content {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-top: 40px;
}

.audition-image {
  flex: 1;
  max-width: 50%;
}

.audition-image img {
  width: 100%;
  height: auto;
}

.audition-info {
  flex: 1;
  max-width: 50%;
  margin-top: 20px;
}

.audition-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--main_font_color);
  margin-bottom: 30px;
  line-height: 1.4;
  font-family: var(--txt_ja);
}

.audition-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: var(--accent_color);
  color: var(--white_font_color);
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(230, 0, 18, 0.3);
}

.audition-btn:hover {
  background-color: #cc0010;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(230, 0, 18, 0.4);
}

.audition-btn i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.audition-btn:hover i {
  transform: translateX(4px);
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
  .audition-content {
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
  }
  
  .audition-image {
    max-width: 100%;
  }
  
  .audition-info {
    max-width: 100%;
    width: 100%;
    /* padding-left: 10px; */
  }
  
  .audition-title {
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .audition-more-link {
    text-align: center;
  }
}

/* ===============================================
# アーティスト一覧
=============================================== */
.artist-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 60px 40px;
  margin-top: 40px;
}

.artist-item {
  background-color: #fff;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.artist-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.artist-image {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.artist-image::before,
.artist-image::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border: 2px solid #E60012;
  transition: all 0.4s ease-in-out;
  z-index: 2;
}

.artist-image::before {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}

.artist-image::after {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
}

.artist-item:hover .artist-image::before {
  width: 100%;
  height: 100%;
}

.artist-item:hover .artist-image::after {
  width: 100%;
  height: 100%;
}

.artist-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.artist-item:hover .artist-image img {
  transform: scale(1.05);
}

.artist-info {
  margin-top: 10px;
  text-align: center;
}

.artist-title {
  font-size: 20px;
  font-weight: 600;
  color: #1e1e1e;
  margin: 0;
  line-height: 1.4;
  transition: color 0.3s ease-in-out;
}

.artist-item:hover .artist-title {
  color: #E60012;
}

@media screen and (max-width: 768px) {
  .artist-list {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px 24px;
  }
  
  .artist-image {
    height: 250px;
  }
  
  .artist-title {
    font-size: 18px;
  }
}

/* Single Post Thumbnail */
.single-post__thumbnail {
  margin: 40px 0;
  text-align: center;
}

.single-post__thumbnail-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .single-post__thumbnail {
    margin: 30px 0;
  }
  
  .single-post__thumbnail-img {
    max-height: 400px;
    border-radius: 6px;
  }
}

/* ===============================================
# メインビジュアルスライドリンク
=============================================== */
.slide-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.slide-link:hover {
  opacity: 0.9;
}

/* スマホ用画像のアスペクト比を1:1に設定 */
.swiper-slide img.sp {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
