@charset "UTF-8";
a[href^='tel:'] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^='tel:'] {
    pointer-events: auto;
  }
}

a {
  color: inherit;
}

body {
  background-color: #ffffff;
}

html {
  background-color: #ffffff;
}

/* ===============================================
# header
=============================================== */
.header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  padding: 20px 0;
  background-color: #ffffff;
}
.header a {
  display: inline-block;
  height: 100%;
  transition: opacity 0.3s;
}
.header a:hover {
  opacity: 0.7;
}

.herder-inner {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0 20px;
}

.header-logo {
  position: relative;
  z-index: 131;
  width: 10%;
  max-width: 137px;
  a {
    line-height: 0;
  }
}
@media screen and (max-width: 768px) {
  .header {
    padding: 10px 0;
  }

  .header-logo {
    width: 100%;
    max-width: 100px;
  }
}
.header-logo img {
  width: 100%;
  height: auto;

  -o-object-fit: contain;
  object-fit: contain;
}

.header-search {
  width: 100%;
  max-width: 250px;
  margin-left: min(1.56vw, 30px);
  /* ボタン用のスタイルを更新 */
}
.header-search form.search-box {
  position: relative;
  width: 100%;
}
.header-search input.text {
  width: 100%;
  padding: 5px 25px 5px 5px;
  border: 1px solid gray;
  color: gray;
  text-align: left;
  outline: none;
}
.header-search button.fas {
  position: absolute;
  top: 0;
  right: 0;
  padding: 7px;
  border: none;
  background-color: transparent;
  color: #e09c4e;
  outline: none;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .header-search button.fas {
    top: 53%;
    right: 70px;
    transform: translateY(-50%);
    padding: 0;
    font-size: 20px;
  }
}

@media screen and (max-width: 768px) {
  .header-search.pc {
    display: none;
  }
}

.header-search.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .header-search.sp {
    display: block;
  }
}

.header-nav__wrapper {
  display: flex;
  align-items: center;
  width: 80%;
  height: 100%;
  margin-left: auto;
}
@media screen and (max-width: 1240px) {
  .header-nav__wrapper {
    display: none;
  }
}

.header-nav {
  height: 100%;
  margin-left: auto;
}

.herder-nav__list {
  display: flex;
  align-items: center;
}

.herder-nav__item a {
  padding: 0 min(0.78vw, 15px);
  border-left: 1px solid #e09c4e;
  font-weight: bold;
  font-size: min(0.83vw, 16px);
}

.herder-nav__item:first-child a {
  border: none;
}

.header-login {
  margin-left: 10px;
}
.header-login a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 10px 20px;
  border-radius: 20px;
  background-color: #e09c4e;
  color: #ffffff;
  white-space: nowrap;
  font-size: min(0.83vw, 16px);
}

/*=========================================
#hamburger
=========================================*/
.hamburger {
  display: none;
  position: absolute;
  top: 45%;
  right: 20px;
  z-index: 150;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  cursor: pointer;
}
.hamburger.is-active {
  position: fixed;
  top: 40px;
}
.header:has(.hamburger.is-active) .header-logo {
  position: fixed;
  top: 10px;
}
@media screen and (max-width: 1240px) {
  .hamburger {
    display: block;
  }
}

.hamburger.is-active span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(135deg);
}

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

.hamburger.is-active span:nth-child(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-135deg);
}

.hamburger span {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 2px;
  background-color: #333333;
  transition: transform 0.3s;
}

.hamburger.is-active span {
  background-color: #ffffff;
}

.hamburger span:nth-child(1) {
  top: 30%;
}

.hamburger span:nth-child(2) {
  top: 60%;
}

.hamburger span:nth-child(3) {
  top: 90%;
}

/*=========================================
#drawer
=========================================*/
.drawer {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 130;
  width: 100%;
  height: 100vh;
  background-color: #222222;
  transition: opacity 0.3s, visibility 0.3s;
}

.drawer::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../../assets/img/common/drawer-bg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  content: '';

  filter: blur(10px);
}

.drawer.is-active {
  visibility: visible;
  opacity: 1;
}

.drawer-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 0 20px;
}

.drawer__list {
  display: flex;
  flex-direction: column;
  list-style: none;
  position: relative;
  z-index: 2;

  gap: 20px;
}
.drawer__item {
  text-align: center;
}

.drawer__list.drawer__list-login {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  margin-top: 30px;
}
.drawer__list.drawer__list-login a {
  padding: 10px;
  width: 100%;
}
.drawer__list.drawer__list-login .drawer__item:nth-child(1) a {
  border: 1px solid #e09c4e;
  background-color: #e09c4e;
  color: #ffffff;
}
.drawer__list.drawer__list-login .drawer__item:nth-child(2) a {
  border: 1px solid #ffffff;
  background-color: #ffffff;
  color: #e09c4e;
}

.drawer__link {
  display: block;
  color: #ffffff;
  font-size: 16px;
  text-align: center;
}
.drawer__link:not(.drawer__list-login a) {
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.56);
}

.drawer__sns {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 30px;
  z-index: 3;
  padding: 20px;
}

.drawer-sns__list {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 10px;
  list-style: none;
  -moz-column-gap: 10px;
}

.drawer-sns__item a {
  width: 30px;
  height: 30px;
}
.drawer-sns__item a img {
  width: 100%;
  height: 100%;

  -o-object-fit: contain;
  object-fit: contain;
}

/* ===============================================
# スマホ時のサーチボックス
=============================================== */
.sp-search-area {
  display: flex;
  align-items: center;
  position: fixed;
  top: 66px;
  left: 0;
  z-index: 9998;
  width: 100%;
  padding: 20px 5px;
  border-top: 1px solid #dddddd;
  background-color: #ffffff;
}
.sp-search-area form {
  width: 100%;
}
.sp-search-area input {
  width: 90%;
  padding: 10px;
  font-size: 14px;
}
.sp-search-area button {
  position: absolute;
  top: 50%;
  right: 10px;
  left: auto;
  transform: translateY(-50%);
  border: none;
  background-color: transparent;
  color: #e09c4e;
  font-size: 20px;
  outline: none;
  cursor: pointer;
}

.sp-search-area.hidden {
  display: none;
}

/* ===============================================
# footer
=============================================== */
.footer {
  padding: 90px 0;
  background-color: #555555;
}
@media screen and (max-width: 991px) {
  .footer {
    padding-bottom: 0;
  }
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  column-gap: 30px;
  max-width: 1200px;
  padding: 0 20px;

  -moz-column-gap: 30px;
  margin-inline: auto;
}
@media screen and (max-width: 991px) {
  .footer-inner {
    flex-direction: column;
    padding: 0 10px;
  }
}

.footer-left {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  width: 20%;
}
@media screen and (max-width: 991px) {
  .footer-left {
    align-items: center;
    margin-inline: auto;
    width: 100%;
  }
}

.footer-logo {
  width: 100%;
  max-width: 200px;
}
.footer-logo img {
  width: 100%;
  height: auto;

  -o-object-fit: contain;
  object-fit: contain;
}

.footer-sns.sp {
  display: none;
}
@media screen and (max-width: 991px) {
  .footer-sns.sp {
    display: block;
  }
}

@media screen and (max-width: 991px) {
  .footer-sns.pc {
    display: none;
  }
}

.footer-sns__list {
  display: flex;
  align-items: center;
  column-gap: 10px;
  list-style: none;

  -moz-column-gap: 10px;
}
@media screen and (max-width: 991px) {
  .footer-sns__list {
    justify-content: center;
    margin-top: 30px;
  }
}

.footer-sns__item {
  width: 40px;
  height: 40px;
}
.footer-sns__item img {
  width: 100%;
  height: auto;

  -o-object-fit: contain;
  object-fit: contain;
}

.footer-right {
  display: flex;
  width: 70%;
  gap: 20px;
}
@media screen and (max-width: 991px) {
  .footer-right {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 10px;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 30px;
    text-align: center;

    margin-inline: auto;
  }
}

.f-right__unit {
  width: 100%;
}

.footer-nav__list {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  list-style: none;
}

.footer-nav__item a {
  color: #ffffff;
  line-height: 1.5;
  white-space: nowrap;
}

.footer-copy {
  margin-top: 50px;
  padding: 0 20px;
  color: #ffffff;
  font-size: 14px;
  text-align: center;
}
@media screen and (max-width: 991px) {
  .footer-copy {
    padding: 20px 10px;
  }
}

/* ===============================================
# 不要スタイルの打消
=============================================== */
.required_color {
  padding-left: 0;
}

/* ===============================================
# プラン
=============================================== */
.select_top_img {
  height: 500px;
}
.select_top_img .select_top_box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: auto;
  background: none;
}
.select_top_img img {
  height: 100%;

  -o-object-fit: cover;
  object-fit: cover;
}

.aspect-ratio {
  aspect-ratio: 18 / 15;
  height: auto !important;
}

/* ===============================================
# movie.php
=============================================== */
@media screen and (max-width: 768px) {
  .movie_wrap {
    row-gap: 100px;
  }
}

@media screen and (max-width: 768px) {
  .movie_box {
    flex-direction: column;
    row-gap: 20px;
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .movie_box .slider_middle_box {
    width: 100%;
  }
}

.slider_middle_box.movie_desc {
  width: 70%;
}
@media screen and (max-width: 768px) {
  .slider_middle_box.movie_desc {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .movie_thumbnail {
    width: 100%;
  }
}
.movie_thumbnail a {
  display: inline-block;
  width: 100%;
  max-width: 300px;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .movie_thumbnail a {
    max-width: 100%;
  }
}
.movie_thumbnail a img {
  width: 100%;
  height: auto;

  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .movie_thumbnail iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }
}

.comment-area {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.comment-area__input {
  flex-grow: 1;
  margin-right: 8px; /* Add space between the input and button */
  padding: 10px;
  border: 2px solid #cccccc;
  border-radius: 4px;
  font-size: 14px;
}

.comment-area__button {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  background-color: #f0c14b;
  color: #111111;
  font-size: 14px;
  cursor: pointer;
}

.comment-area__button:hover {
  background-color: #e5a00d;
}

.comment-list {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  list-style: none;
  margin-top: 20px;
}

.comment-item {
  padding: 15px 10px;
  border-top: 1px solid #dddddd;
  line-height: 1.5;
}

.comment-item:first-child {
  border: none;
}

/* ===============================================
# 会員登録
=============================================== */
.c-form_scroll {
  height: 150px;
  padding: 20px;
  overflow-y: scroll;
  border: 1px solid #cccccc;
}

/* ===============================================
# アーティスト一覧
=============================================== */
.l-artist {
  background-color: #ffffff;
}
.l-artist .top-card__body {
  text-align: left;
}
.l-artist .top-card__body-top {
  display: flex;
  align-items: center;
  column-gap: 20px;

  -moz-column-gap: 20px;
}
@media screen and (max-width: 768px) {
  .l-artist .top-card__body-top {
    flex-direction: column;
    align-items: start;
  }
}
.l-artist .top-card__body-bottom {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.l-artist .top-card__body-bottom img {
  width: 30px;
  height: auto;

  -o-object-fit: contain;
  object-fit: contain;
}

/* ===============================================
# アーティスト詳細
=============================================== */
.l-a-pf__content {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;

  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .l-a-pf__content {
    flex-direction: column-reverse;
  }
}

.l-a-pf__body {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .l-a-pf__body {
    width: 100%;
    margin-top: 20px;
  }
}

.l-a-pf__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.l-a-pf__name {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
}

.l-a-pf__name__en {
  font-size: 30px;
}
@media screen and (max-width: 768px) {
  .l-a-pf__name__en {
    font-size: 20px;
  }
}

.l-a-pf__name__jp {
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .l-a-pf__name__jp {
    font-size: 16px;
  }
}

.l-a-pf__tag {
  display: flex;
  align-items: center;
}
.l-a-pf__tag img {
  width: 30px;
  height: auto;

  -o-object-fit: contain;
  object-fit: contain;
}
@media screen and (max-width: 375px) {
  .l-a-pf__tag img {
    width: 20px;
  }
}

.l-a-pf__heading {
  margin-top: 20px;
  font-weight: bold;
  font-size: 24px;
}

.l-a-pf__text {
  margin-top: 30px;
  line-height: 1.7;
}

.l-a-pf_img {
  width: 44%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .l-a-pf_img {
    width: 100%;
  }
}
.l-a-pf_img img {
  width: 100%;
  height: auto;

  -o-object-fit: cover;
  object-fit: cover;
}

.l-a-movie__content {
  max-width: 1200px;
  text-align: center;

  margin-inline: auto;
}

.l-a-movie__youtube {
  max-width: 800px;
  margin-top: 20px;

  margin-inline: auto;
}
.l-a-movie__youtube iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

.l-a-lesson .midasi_2_1 {
  text-align: center;
}

/* ===============================================
# company
=============================================== */
.l-company table {
  width: 100%;
  max-width: 1000px;
  border-collapse: collapse;

  margin-inline: auto;
}
.l-company th,
.l-company td {
  padding: 10px;
  border: 1px solid #dddddd;
}
@media screen and (max-width: 768px) {
  .l-company th,
  .l-company td {
    width: 100%;
    border: none;
  }
}
@media screen and (max-width: 768px) {
  .l-company tr {
    display: flex;
    flex-direction: column;
    width: 100%;
    border: 1px solid #dddddd;
  }
}

/* ===============================================
# lecture
=============================================== */
.lecture-text {
  margin-left: 1em;
  font-weight: bold;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .lecture-text {
    margin-left: 0;
  }
}

.lecture_box {
  column-gap: 20px;
  width: 100%;
  border-bottom: 1px solid #dddddd;

  -moz-column-gap: 20px;
}
@media screen and (max-width: 768px) {
  .lecture_box {
    justify-content: space-between;
    align-items: center;
  }
}

.lecture_box-img {
  width: 100px;
  height: 100px;
}
@media screen and (max-width: 768px) {
  .lecture_box-img {
    width: 80px;
    height: 80px;
  }
}
.lecture_box-img img {
  width: 100%;
  height: 100%;

  -o-object-fit: cover;
  object-fit: cover;
}

.lecture_box-body {
  width: 70%;
}

.lecture_box .lecture_box-time {
  width: 10%;
  margin-right: 0 !important;
}
@media screen and (max-width: 768px) {
  .lecture_box .lecture_box-time span:nth-child(1) {
    font-size: 1.6rem;
  }
  .lecture_box .lecture_box-time span:nth-child(2) {
    font-size: 1.6rem;
  }
  .lecture_box .lecture_box-time span:nth-child(3) {
    font-size: 1.6rem;
  }
  .lecture_box .lecture_box-time span:nth-child(4) {
    font-size: 1.6rem;
  }
  .lecture_box .lecture_box-time span:nth-child(5) {
    font-size: 1.6rem;
  }
}

/* ===============================================
# 記事一覧
=============================================== */
.info-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;

  gap: 30px;
}
@media screen and (max-width: 768px) {
  .info-list {
    grid-template-columns: repeat(2, 1fr);

    gap: 10px;
  }
}

.info-item {
  padding: 20px;
  border: 1px solid #dddddd;
}

.info-item__img img {
  width: 100%;
  height: auto;

  -o-object-fit: cover;
  object-fit: cover;
}

.info-item__body {
  margin-top: 30px;
}
.info-item__body h3 {
  font-weight: bold;
  font-size: 20px;
}

.reco-area {
  margin-top: 20px;
  text-align: right;
}

/* ===============================================
# マイページ
=============================================== */
.mp-edit .c-form_box {
  max-width: 100%;
}
.mp-edit .c-form {
  width: 30%;
}
@media screen and (max-width: 768px) {
  .mp-edit .c-form {
    width: 100%;
  }
}

/* ===============================================
# 楽器詳細
=============================================== */
.page-bg {
  padding: 50px 0;
  background-image: url(../../assets/img/lower/saxophone-bg.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.saxophone-title h2 {
  font-weight: normal;
  font-size: 40px;
}
.saxophone-title span {
  display: inline-block;
  margin-top: 10px;
  line-height: 1.5;
}

/* ===============================================
# lesson-search
=============================================== */
.lesson-search__title {
  max-width: 1200px;
  font-weight: bold;
  font-size: 30px;

  margin-inline: auto;
}

.lesson-search__box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  padding: 10px;

  margin-inline: auto;
}

.lesson-search__box-input {
  flex-grow: 1;
  padding: 10px;
  border: 2px solid #cccccc;
  border-radius: 4px;
  font-size: 14px;
}

.lesson-search__box-button {
  margin-left: 8px;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  background-color: #f0c14b;
  color: #111111;
  font-size: 14px;
  cursor: pointer;
}

.lesson-search__box-button:hover {
  background-color: #e5a00d;
}

/* ===============================================
# 下層共通
=============================================== */
.lower-section {
  padding-top: 100px !important;
}
.lower-section.top {
  padding-top: 30px !important;
}

.lower-title {
  margin-bottom: 40px;
  padding: 0 20px;
  padding-bottom: 25px;
  color: #ce3a32;
  font-weight: bold;
  font-size: 32px;
  text-align: center;
}

.lower-heading {
  padding-bottom: 10px;
  border-bottom: 1px solid #dddddd;
  color: #ce3a32;
  font-size: 24px;
}

.left_menu {
  position: sticky;
  top: 100px;
}

/* ===============================================
# デフォルト打消
=============================================== */
main {
  padding-top: 0 !important;
  background-color: #ffffff;
}

main.lecture_page {
  background-color: #ffffff;
}

article {
  background-color: #ffffff;
}

.top_lower_contents {
  background-color: #ffffff;
}

.slider_child {
  padding-bottom: 0;
}

.sp-grab {
  display: none !important;
}

.slick-prev {
  z-index: 10;
}

.rank1:before,
.rank2:before,
.rank3:before,
.rank4:before,
.rank5:before {
  display: none;
}

/* ===============================================
# top
=============================================== */
.top-mv {
  position: relative;
  background-image: url(../../assets/img/top/top-mv.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .top-mv {
    display: flex;
    flex-direction: column;
    height: 800px !important;
  }
  @supports (-webkit-touch-callout: none) {
    .top-mv {
      height: -webkit-fill-available;
    }
  }
  
  /* トップページのすべての動画カード部分を横スクロール可能にする */
  .top-mv .slider_box.type_2,
  .top-movies .slider_box.type_2,
  .top-beginner .slider_box.type_2 {
    position: relative;
    padding-right: 40px;
  }
  
  .top-mv .slider_box.type_2 .slick-list,
  .top-movies .slider_box.type_2 .slick-list {
    overflow-x: auto !important;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.5) transparent;
  }
  
  /* 初心者セクション（背景が黒）用のスクロールバー */
  .top-beginner .slider_box.type_2 .slick-list {
    overflow-x: auto !important;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.6) transparent;
  }
  
  /* スクロールバーのスタイリング */
  .top-mv .slider_box.type_2 .slick-list::-webkit-scrollbar,
  .top-movies .slider_box.type_2 .slick-list::-webkit-scrollbar {
    height: 4px;
  }
  
  .top-mv .slider_box.type_2 .slick-list::-webkit-scrollbar-track,
  .top-movies .slider_box.type_2 .slick-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
  }
  
  .top-mv .slider_box.type_2 .slick-list::-webkit-scrollbar-thumb,
  .top-movies .slider_box.type_2 .slick-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
  }
  
  .top-mv .slider_box.type_2 .slick-list::-webkit-scrollbar-thumb:hover,
  .top-movies .slider_box.type_2 .slick-list::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.7);
  }
  
  /* 初心者セクション用のスクロールバー */
  .top-beginner .slider_box.type_2 .slick-list::-webkit-scrollbar {
    height: 4px;
  }
  
  .top-beginner .slider_box.type_2 .slick-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
  }
  
  .top-beginner .slider_box.type_2 .slick-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
  }
  
  .top-beginner .slider_box.type_2 .slick-list::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.8);
  }
  
  .top-mv .slider_box.type_2 .slick-track,
  .top-movies .slider_box.type_2 .slick-track,
  .top-beginner .slider_box.type_2 .slick-track {
    display: flex;
  }
  
  
  /* スクロール可能であることを示す矢印アイコン */
  /* おすすめ動画配信（白背景）用の矢印 */
  .top-mv .slider_box.type_2::before {
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    z-index: 11;
    pointer-events: none;
    animation: scrollHint 2s ease-in-out infinite;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s ease;
  }
  
  /* 最新動画セクション用の矢印（グレー） */
  .top-movies .slider_box.type_2::before {
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: rgba(128, 128, 128, 0.8);
    z-index: 11;
    pointer-events: none;
    animation: scrollHint 2s ease-in-out infinite;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.5);
    transition: opacity 0.3s ease;
  }
  
  /* 初心者セクション用の矢印（背景が黒なのでグレーで表示） */
  .top-beginner .slider_box.type_2::before {
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: rgba(180, 180, 180, 0.9);
    z-index: 11;
    pointer-events: none;
    animation: scrollHint 2s ease-in-out infinite;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    transition: opacity 0.3s ease;
  }
  
  /* スクロールが右端に到達したら矢印を非表示 */
  .top-mv .slider_box.type_2.scroll-end::before,
  .top-movies .slider_box.type_2.scroll-end::before,
  .top-beginner .slider_box.type_2.scroll-end::before {
    opacity: 0;
    animation: none;
  }
  
  
  @keyframes scrollHint {
    0%, 100% {
      transform: translateY(-50%) translateX(0);
      opacity: 0.7;
    }
    50% {
      transform: translateY(-50%) translateX(8px);
      opacity: 1;
    }
  }
  
  .slick-prev:before,
  .slick-next:before {
    display: none;
  }
}
.top-mv .top_midashi {
  margin: 0;
  padding: 0;
  color: #ffffff;
}
.top-mv .slick-prev:before,
.top-mv .slick-next:before {
  background-color: #222222;
}
@media screen and (max-width: 768px) {
  .top-mv .slick-prev:before,
  .top-mv .slick-next:before {
    display: none;
  }
}
.top-mv .slider_child {
  background-color: #ffffff;
}

.mv-slide {
  padding: 160px 0 80px 0;
}
@media screen and (max-width: 768px) {
  .mv-slide {
    padding: 80px 0 150px 0;
  }
}

.mv-slide__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin-bottom: 30px;
  padding: 0 20px;

  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .mv-slide__top {
    flex-direction: column;
    align-items: start;
    row-gap: 15px;
    margin-bottom: 20px;
  }
}

.mv-more {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .mv-more {
    margin-bottom: 50px;
    position: relative;
    z-index: 10;
  }
}

.top-mv__news {
  padding: 30px 0;
  background-color: #222222;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .top-mv__news {
    position: absolute;
    bottom: 0;
    z-index: 1;
  }
}

.mv-news__inner {
  max-width: 1200px;
  padding: 0 20px;
  width: 100%;
  margin-inline: auto;
}

.mv-news__item a {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 20px;
  max-width: 1200px;

  -moz-column-gap: 20px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .mv-news__item a {
    flex-direction: column;
    align-items: start;
    row-gap: 10px;
  }
}
.mv-news__item a span,
.mv-news__item a time {
  color: #ffffff;
}

.mv-news__tag {
  margin-right: 20px;
  padding: 10px;
  border-radius: 20px;
  background-color: #e09c4e;
}
@media screen and (max-width: 768px) {
  .mv-news__tag {
    margin-right: 0;
  }
}

.top-instrument {
  position: relative;
  background-color: #f7f7f7;
}

.top-instrument::before {
  display: none;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 30%;
  min-width: 200px;
  height: 80%;
  max-height: 300px;
  background-image: url(../../assets/img/saxophone.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  content: '';
}

.top_box2__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  position: relative;
  z-index: 2;
  max-width: 1200px;

  gap: 20px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .top_box2__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 375px) {
  .top_box2__list {
    grid-template-columns: 1fr;
  }
  .info-list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.top_box2__list li {
  background-color: #ffffff;
}

.top_box2__list li a {
  display: flex;
  align-items: center;
  column-gap: 10px;
  width: 100%;
  padding: 10px;
  height: 100%;
  -moz-column-gap: 10px;
}

.top-card__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  list-style: none;

  gap: 30px;
}

.lesson-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  gap: 30px;
}

.lesson-item {
  margin: 0 5px;
  width: 100%;
  box-sizing: border-box;
}

/* Slickスライダー内のlesson-item */
.slider_box.type_2 .lesson-item {
  margin: 0;
  width: 100%;
}

.lesson-item .slider_middle_box {
  background-color: #FFFFFF;
}

/* lesson-item .slider_img のスタイルは、動画カード共通スタイルで上書きされるため削除 */

.tag-category {
  background-color: #e09c4e !important;
  display: inline-block;
  padding: 2px;
  margin: 0 2px 2px 0;
  color: white;
  border-radius: 2.625px;
  font-size: 10.5px;
}

.tag-link {
  color: #fff !important;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.tag-link:visited {
  color: #fff !important;
}

.tag-link:hover {
  opacity: 0.7;
  text-decoration: underline;
  transform: translateY(-1px);
}

@media screen and (max-width: 768px) {
  .top-card__list {
    grid-template-columns: repeat(2, 1fr);

    gap: 10px;
  }

  .lesson-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

@media screen and (max-width: 435px) {
  .lesson-item {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }

  .lesson-row {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
  .top-mv {
    height: 650px !important;
  }
  .mv-slide {
    padding: 80px 0 150px 0;
  }
  .mv-more {
    margin-bottom: 50px;
  }
  .slider_box {
    margin-bottom: 0;
  }

  .checkboxes i {
    display: inline-block !important;
  }

  .checkboxes .input-wrapper {
    display: none;
  }
}

.top-card__item {
  padding: 20px;
  border: 1px solid #dddddd;
}

/* トップページ用アーティストカード */
.top-card__inner {
  padding: 20px;
  border: 1px solid #dddddd;
  height: 100%;
}

.top-card__inner img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
  object-fit: cover;
}

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

.top-card__data h3 {
  font-weight: bold;
  font-size: 20px;
}

.top-card__data p {
  margin-top: 10px;
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  .top-card__inner {
    padding: 10px;
  }

  .top-card__inner img {
    height: 150px;
  }

  .top-card__data h3 {
    font-size: 16px;
  }

  .top-card__data p {
    font-size: 12px;
  }
}

.top-card__img img {
  width: 100%;
  height: 300px;

  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .top-card__img img {
    width: 100%;
    height:150px;
  
    
  }

  .top-card__item {
    padding: 10px;
   
}
}

.top-card__body {
  margin-top: 10px;
  text-align: center;
}
.top-card__body h3 {
  font-weight: bold;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .top-card__body h3 {
    font-size: 16px;
  }
}
.top-card__body span {
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .top-card__body span {
    font-size: 12px;
  }
}
/* slider_middle_box の border-radius は動画カード共通スタイルで上書きされる */
.slider_box .slick-list {
  padding: 0;
  padding-bottom: 20px !important;
  margin: 0 -8px;
}

@media (min-width: 768px) {
  .slider_box .slick-list {
    margin: 0 -9px;
  }
}

@media (max-width: 768px) {
  .slider_box .slick-list {
    margin: 0 -6px;
  }
}

.slick-slide {
  height: auto !important;
}

.slick-slide > div {
  height: 100%;
}

/* Slickスライダー内の動画カードの幅を適切に設定 */
.slider_box.type_2 .slick-slide .lesson-item,
.slider_box.type_2 .slick-slide .slider_child {
  width: 100%;
  margin: 0;
}

.top-event {
  background-color: #f7f7f7;
}
.top-event .slick-prev:before,
.top-event .slick-next:before {
  background-color: #222222;
}
@media screen and (max-width: 768px) {
  .top-event .slick-prev:before,
  .top-event .slick-next:before {
    display: none;
  }
}

.top-movies .slick-prev:before,
.top-movies .slick-next:before {
  background-color: #222222;
}
@media screen and (max-width: 768px) {
  .top-movies .slick-prev:before,
  .top-movies .slick-next:before {
    display: none;
  }
}

.top-beginner {
  background-color: #222222;
}
.top_sec2.top-beginner {
  background-color: #222222;
}
.top-beginner .top_midashi,
.top_sec2.top-beginner .top_midashi {
  color: #ffffff;
}
.top-beginner .slider_child {
  background-color: #ffffff;
}
.top-beginner .slick-prev:before,
.top-beginner .slick-next:before {
  background-color: #222222;
}
@media screen and (max-width: 768px) {
  .top-beginner .slick-prev:before,
  .top-beginner .slick-next:before {
    display: none;
  }
}

.top-artist {
  background-color: #ffffff;
}

.top-movies {
  background-color: #ffffff;
}

/* ===============================================
# top共通
=============================================== */
.top_midashi {
  border: none;
  color: #ce3a32;
}

.top_sec2 {
  background-color: #ffffff;
}

.top_sec2.lecture {
  background-color: #ffffff;
}

.lecture_page .top_sec2 {
  background-color: #ffffff;
}

@media screen and (min-width: 1200px) {
  .top_sec2 {
    padding: 100px 0;
  }
}
.slick-prev {
  right: 50px;
}

.slick-next {
  left: 50px;
  z-index: 2;
}

/* ===============================================
# 共通
=============================================== */
.inner {
  padding: 0 20px;
}

.new-inner {
  max-width: 1200px;
  margin-inline: auto;
}

p.fit-text {
  width: -moz-fit-content;
  width: fit-content;

  margin-inline: auto;
}

.more a.black {
  border-color: #222222;
  color: #222222;
}
.more a.black i {
  color: #222222;
}
.more a.black:hover {
  background-color: #222222;
  color: #ffffff;
}
.more a.black:hover i {
  color: #ffffff;
}

.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mt50 {
  margin-top: 50px;
}

.mt60 {
  margin-top: 60px;
}

.mt70 {
  margin-top: 70px;
}

.mt80 {
  margin-top: 80px;
}

.mt90 {
  margin-top: 90px;
}

.mt100 {
  margin-top: 100px;
}

/* ===============================================
# 共通パーツ
=============================================== */
.common-desc__content {
  max-width: 1200px;
  background-image: url(../../assets/img/top/music-bg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  margin-inline: auto;
}

.cd-content__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 30px;
  border: 5px solid #e09c4e;
}
@media screen and (max-width: 768px) {
  .cd-content__inner {
    flex-direction: column;
    row-gap: 30px;
  }
}

.cd-content__body {
  width: 50%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .cd-content__body {
    width: 100%;
  }
}
.cd-content__body p {
  line-height: 1.7;
}

.cd-content__heading {
  margin-bottom: 30px;
}

.cd-content__heading--main {
  font-weight: bold;
  font-size: 40px;
}

.cd-content__heading--main::first-letter {
  color: #e09c4e;
}

.cd-content__heading--sub {
  display: inline-block;
  margin-top: 10px;
}

.cd-content__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .cd-content__btn {
    width: 100%;
  }
}

.name-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 10px 20px;
  border-radius: 21px;
  background-color: #e09c4e;
  color: #ffffff;
  font-size: 12px;
  z-index: 3;
}

.slider_child {
  position: relative;
  border-radius: 20px;
}
.slider_child .slider_img {
  border-radius: 20px 20px 0 0;
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.slider_child .slide-rec {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
}
.slider_child .schedule-date {
  position: absolute;
  top: 20px;
  left: 5px;
  z-index: 2;
  background-color: #FFFFFF;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 11px;
}

.video-info {
  margin-top: 10px;
}

.slider_child .slide-rec i {
  color: #ffffff;
} /*# sourceMappingURL=style.css.map */

/* ===============================================
# 
=============================================== */
@media screen and (max-width: 768px) {
  .slider_box--custom {
    margin-top: 30px;
    .slider_child {
      flex-direction: column;
      padding: 0;
      .slider_middle_box {
        width: 100%;
        padding: 20px;
      }
    }
  }
}
.link-list {
  max-width: 1200px;
  margin-inline: auto;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap:15px;
  li {
    width: 30%;
    display: flex;
    align-items: center;
  }
  a {
    width: 100%;
    padding: 10px 20px;
    background-color: #ce3a32;
    color: #fff;
    text-align: center;
    display: inline-block;
  }
}
@media screen and (max-width: 550px) {
  .link-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
    li{
      width: 100%;
    }
  }
}
.link-blue {
  color: blue;
  text-decoration: underline;
}
.lower-section.cate {
  padding: 50px 0 !important;
}
.lower-section.cate + .lower-section {
  padding-top: 50px !important;
}

header:has(.drawer.is-active) #sp-search {
  display: none;
}

/* ===============================================
# 動画カード共通スタイル（YouTube風デザイン）
=============================================== */
/* グリッドレイアウト（Slickスライダーが適用されていない場合のみ） */
.slider_box.type_2:not(.slick-initialized) {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

@media (min-width: 768px) {
  .slider_box.type_2:not(.slick-initialized) {
    gap: 18px;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .slider_box.type_2:not(.slick-initialized) {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* Slickスライダーが適用されている場合のスタイル */
.slider_box.type_2.slick-initialized {
  display: block;
}

.slider_box.type_2.slick-initialized .slick-slide {
  padding: 0 8px;
}

@media (min-width: 768px) {
  .slider_box.type_2.slick-initialized .slick-slide {
    padding: 0 9px;
  }
}

@media (max-width: 768px) {
  .slider_box.type_2.slick-initialized .slick-slide {
    padding: 0 6px;
  }
}

/* 動画カード共通スタイル */
.slider_child,
.lesson-item {
  background: #ffffff;
  border: none;
  border-radius: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.1s ease;
  max-width: 100%;
  width: 100%;
  height: 100%;
}

.slider_child:hover,
.lesson-item:hover {
  transform: none;
}

.slider_child a,
.lesson-item a {
  text-decoration: none;
}

/* サムネイルラッパー */
.slider_child .thumb-wrap,
.lesson-item .thumb-wrap,
.slider_child > a,
.lesson-item > a {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
  display: block;
}

@supports not (aspect-ratio: 16 / 9) {
  .slider_child .thumb-wrap,
  .lesson-item .thumb-wrap,
  .slider_child > a,
  .lesson-item > a {
    padding-top: 56.25%; /* 16:9 アスペクト比のフォールバック */
  }
}

/* サムネイル画像 */
.slider_child .slider_img,
.lesson-item .slider_img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  aspect-ratio: unset !important;
  border-radius: 0 !important;
}

/* サムネイルラッパーがない場合のフォールバック（既存のHTML構造に対応） */
.slider_child > a > img.slider_img,
.lesson-item > a > img.slider_img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  aspect-ratio: unset !important;
  border-radius: 0 !important;
}

/* サムネイルラッパー内のdiv要素（thumb-wrapがない場合のフォールバック） */
.slider_child > a > div,
.lesson-item > a > div {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
  display: block;
}

.slider_child > a > div > img.slider_img,
.lesson-item > a > div > img.slider_img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  aspect-ratio: unset !important;
  border-radius: 0 !important;
}

@supports not (aspect-ratio: 16 / 9) {
  .slider_child > a > div,
  .lesson-item > a > div {
    padding-top: 56.25%; /* 16:9 アスペクト比のフォールバック */
  }
}

/* コンテンツボックス */
.slider_middle_box {
  border-radius: 0;
  padding: 8px 10px 10px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 0;
}

/* PC用スタイル */
@media (min-width: 1025px) {
  .slider_box.type_2:not(.slick-initialized) {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
  }
  
  .slider_middle_box {
    padding: 10px 12px 12px;
  }
  
  .midasi_3_1 a {
    font-size: 16px;
    line-height: 1.35;
  }
  
  .video-info {
    font-size: 13px;
  }
}

/* 大きなPC用スタイル */
@media (min-width: 1440px) {
  .slider_box.type_2:not(.slick-initialized) {
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
  }
}

.midasi_3_1 {
  margin: 0;
}

.midasi_3_1 a {
  color: #222222;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.32;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.slider_bottom_box {
  margin-top: 0;
  padding-top: 0;
}

.video-info {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  margin-top: 0;
  line-height: 1.3;
  color: #606060;
  font-size: 12px;
}

/* タブレット用スタイル */
@media (min-width: 769px) and (max-width: 1024px) {
  .slider_box.type_2:not(.slick-initialized) {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
  }
  
  .slider_middle_box {
    padding: 8px 8px 10px;
  }
  
  .midasi_3_1 a {
    font-size: 14px;
    line-height: 1.3;
  }
}

/* スマホ用スタイル */
@media (max-width: 768px) {
  .slider_box.type_2:not(.slick-initialized) {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .slider_middle_box {
    padding: 8px 4px 0;
    gap: 4px;
  }
  
  .midasi_3_1 a {
    font-size: 14px;
    line-height: 1.35;
  }
  
  .video-info {
    font-size: 11px;
    color: #606060;
    margin-top: 2px;
    gap: 4px;
  }
  
  /* スマホでのSlickスライダーのスライド幅調整 */
  .slider_box.type_2.slick-initialized .slick-slide {
    padding: 0 4px;
  }
  
  .slider_box .slick-list {
    margin: 0 -4px;
  }
}

/* 小さいスマホ用スタイル */
@media (max-width: 480px) {
  .slider_middle_box {
    padding: 6px 2px 0;
  }
  
  .midasi_3_1 a {
    font-size: 13px;
    line-height: 1.3;
  }
  
  .video-info {
    font-size: 10px;
  }
}
