@charset "Shift_JIS";

/* --------------------------------------------------------------------
要素の表示制限とボタン追加（addShowMoreButton.js）
--------------------------------------------------------------------- */

/* 【PC】開閉ボタン（.js-list-sec）
--------------------------------- */

.mainframe_ .js-list-sec + .js-list-sec {
  margin-top: 60px;
}

.mainframe_ .js-list-sec .js-toggle-content {
  overflow: hidden;
  transition: opacity 0.3s ease, height 0.3s ease, margin 0.3s ease !important;
}

.mainframe_ .js-list-sec:has(.js-toggle-trigger.is-active) .js-toggle-content {
  overflow: visible;
}

/* 開閉ボタン（.js-toggle-trigger） */
.mainframe_ .js-list-sec .js-toggle-trigger {
  margin-top: 20px;
}

.mainframe_ .js-list-sec .js-toggle-button {
  display: block;
  width: 420px;
  margin: auto;
  padding: 12px;
  background: #ccc;
  border: 0;
  font-family: inherit;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  color: #222;
  outline: 0;
  cursor: pointer;
}

.mainframe_ .js-list-sec .js-toggle-trigger .ico_ {
  position: relative;
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 10px;
}

.mainframe_ .js-list-sec .js-toggle-trigger .ico_::before,
.mainframe_ .js-list-sec .js-toggle-trigger .ico_::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: #222;
  transition: all 0.3s ease;
}

.mainframe_ .js-list-sec .js-toggle-trigger .ico_::before {
  transform: translate(-50%, -50%);
}

.mainframe_ .js-list-sec .js-toggle-trigger .ico_::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.mainframe_ .js-list-sec .js-toggle-trigger.is-active .ico_::after {
  transform: translate(-50%, -50%);
}

/* 【SP】開閉ボタン（.js-list-sec）
--------------------------------- */
.wrapper_:not(:has(.mainframe_)) .js-list-sec + .js-list-sec {
  margin-top: 60px;
}

.wrapper_:not(:has(.mainframe_)) .item_list .js-toggle-content ul {
  margin-top: 10px;
}

.wrapper_:not(:has(.mainframe_)) .js-list-sec .js-toggle-content {
  overflow: hidden;
  transition: opacity 0.6s ease, height 0.6s ease, margin 0.6s ease !important;
}

.wrapper_:not(:has(.mainframe_)) .js-list-sec:has(.js-toggle-trigger.is-active) .js-toggle-content {
  overflow: visible;
}

/* 開閉ボタン（.js-toggle-trigger） */
.wrapper_:not(:has(.mainframe_)) .js-list-sec .js-toggle-trigger {
  margin-top: 20px;
}

.wrapper_:not(:has(.mainframe_)) .js-list-sec .js-toggle-button {
  display: block;
  width: 60%;
  margin: auto;
  padding: 12px;
  background: #ccc;
  border: 0;
  font-family: inherit;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  color: #222;
  cursor: pointer;
  outline: 0;
}

.wrapper_:not(:has(.mainframe_)) .js-list-sec .js-toggle-trigger .ico_ {
  position: relative;
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 10px;
}

.wrapper_:not(:has(.mainframe_)) .js-list-sec .js-toggle-trigger .ico_::before,
.wrapper_:not(:has(.mainframe_)) .js-list-sec .js-toggle-trigger .ico_::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: #222;
  transition: all 0.3s ease;
}

.wrapper_:not(:has(.mainframe_)) .js-list-sec .js-toggle-trigger .ico_::before {
  transform: translate(-50%, -50%);
}

.wrapper_:not(:has(.mainframe_)) .js-list-sec .js-toggle-trigger .ico_::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.wrapper_:not(:has(.mainframe_)) .js-list-sec .js-toggle-trigger.is-active .ico_::after {
  transform: translate(-50%, -50%);
}

/* --------------------------------------------------------------------
タブコンポーネントの作成（tabSwitch.js）
--------------------------------------------------------------------- */

/* 【PC】タブ切り替えコンテンツ（.js-tab-switch）
--------------------------------- */
.mainframe_ .js-tab-switch {
  margin-bottom: 30px;
}

.mainframe_ .js-tab-switch div {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: auto;
}

.mainframe_ .js-tab-switch button {
  width: 100%;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}

/* 子要素のイベント伝播OFF */
.mainframe_ .js-tab-switch button * {
  pointer-events: none;
}

.mainframe_ .js-tab-switch button a {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 100%;
  min-height: 3em;
  padding: 0.3em 0;
  border-bottom: 4px solid #ccc;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.2em;
  color: #ccc;
  opacity: 1;
  transition: border-bottom 0.3s ease, color 0.3s ease !important;
  text-decoration: none;
  letter-spacing: 0.08em;
}

.mainframe_ .js-tab-switch button a .num {
  font-size: 1.4rem;
  transition: none;
}

/* アクティブ状態の管理 */
.mainframe_ .js-tab-switch button.active-item a {
  border-color: #222;
  color: #222;
}

/* 【SP】タブ切り替えコンテンツ（.js-tab-switch）
--------------------------------- */
.wrapper_:not(:has(.mainframe_)) .js-tab-switch {
  margin-bottom: 30px;
}

.wrapper_:not(:has(.mainframe_)) .js-tab-switch div {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: auto;
}

.wrapper_:not(:has(.mainframe_)) .js-tab-switch button {
  width: 100%;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}

/* 子要素のイベント伝播OFF */
.wrapper_:not(:has(.mainframe_)) .js-tab-switch button * {
  pointer-events: none;
}

.wrapper_:not(:has(.mainframe_)) .js-tab-switch button a {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 80px;
  height: 100%;
  min-height: 4em;
  padding: 0.3em 0;
  border-bottom: 4px solid #ccc;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.2em;
  color: #ccc;
  opacity: 1;
  transition: border-bottom 0.3s ease, color 0.3s ease !important;
  text-decoration: none;
  letter-spacing: 0.08em;
}

.wrapper_:not(:has(.mainframe_)) .js-tab-switch button a .num {
  font-size: 1.4rem;
  transition: none;
}

/* アクティブ状態の管理 */
.wrapper_:not(:has(.mainframe_)) .js-tab-switch button.active-item a {
  border-color: #222;
  color: #222;
}

/* --------------------------------------------------------------------
スライダー（MV用）の作成（mvSlider.js）
--------------------------------------------------------------------- */
.slideshow_ {
  width: 100%;
  max-width: 840px;
  max-height: 500px;
  margin: 0 auto 30px;
  overflow: hidden;
}

.wrapper_ > .slideshow_ {
  padding: 0 3px; 
} 

/* その場でフェードイン */
.js_slideshow ul {
  animation-name: fade-in-anime;
  animation-delay: 0.5s;
  animation-duration: 1.2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fade-in-anime {
  from {
    opacity: 0; }

  to {
    opacity: 1; }
}

/* js連動(クラス名変更不可) */
.js_slideshow ul li a {
  display: block;
}

.js_slideshow ul li a img {
  width: 100%;
  height: auto;
  max-width: 840px;
}

/* IE・Firefox用 */
.js_slideshow .swiper {
  padding: 0 0 5px; 
}

/* ナビ・ページネーションの基準色 */
.js_slideshow {
  --swiper-theme-color: #333; 
}

.js_slideshow .js_slideshow_control {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  padding: 10px 0 0;
}

.js_slideshow .swiper-pagination {
  position: static;
  display: inline;
  width: auto;
  padding: 0 30px;
}

.js_slideshow .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background: #ccc;
  opacity: 1;
}

.js_slideshow .swiper-pagination-bullet-active {
  background: #333;
}

.js_slideshow .swiper-button-prev,
.js_slideshow .swiper-button-next {
  position: static;
  width: 20px;
  height: 20px;
  margin: 0;
}