@charset "UTF-8";
.header {
  z-index: 50;
}
.header__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 40px 0 30px;
  position: relative;
}

.nav__list {
  display: flex;
  align-items: center;
}
.nav__item {
  position: relative;
}
.nav__item:not(:first-child) {
  margin-left: 32px;
}
.nav__item .is-active {
  font-weight: bold;
  position: relative;
}
.nav__item .is-active:after {
  content: "";
  width: 100%;
  height: 2px;
  background: #980000;
  position: absolute;
  left: 0;
  bottom: -10px;
}
.nav__link, .nav__hasChild {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  padding: 8px 0;
  font-size: 16px;
  font-weight: 700;
  color: #222;
  text-decoration: none;
  transition: color 0.2s ease;
}
.home .nav__link, .home .nav__hasChild {
  color: #fff;
}
.nav__link:hover, .nav__item:hover .nav__hasChild {
  border-bottom: 2px solid #fff;
}
.nav__hasChild {
  cursor: pointer;
}
.nav__hasChild::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 6px;
  background-color: currentColor;
  -webkit-mask: url("../images/common/arrow-down.svg") no-repeat center/contain;
  mask: url("../images/common/arrow-down.svg") no-repeat center/contain;
  transition: transform 0.2s ease;
}
@media only screen and (min-width: 768px) {
  .nav__item:hover .nav__hasChild::after {
    transform: rotate(180deg);
  }
}

.subNav {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  padding-top: 20px;
  opacity: 0;
  visibility: hidden;
}
.subNav__list {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  padding: 40px;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 20;
}
.nav__item:hover .subNav, .subNav:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.nav__item:hover .subNav .subNav__list, .subNav:hover .subNav__list {
  pointer-events: auto;
  transform: translateY(0);
}
.subNav__item:not(:last-child) {
  margin-bottom: 20px;
}
.subNav__link {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: bold;
  color: #333;
  text-decoration: none;
  transition: color 0.2s ease;
}
.subNav__link::after {
  content: "";
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-left: 12px;
  background: url("../images/common/arrow-right.svg") no-repeat center/contain;
}
.subNav__link:hover {
  color: #980000;
}

/* ==============================
   トップページ 2カラムコンテンツ
============================== */
.toppage-wrap {
  padding: 80px 0 100px;
}

.toppage-layout {
  display: flex;
  align-items: stretch;
  gap: 40px;
}

.toppage-main {
  flex: 1;
  min-width: 0;
}

.toppage-sidebar {
  flex: 0 0 280px;
  width: 280px;
}
.toppage-sidebar__inner {
  position: static;
}

@media only screen and (max-width: 991px) {
  .toppage-layout {
    flex-direction: column;
    align-items: stretch;
    gap: 60px;
  }
  .toppage-main {
    min-width: 0;
    width: 100%;
  }
  .toppage-sidebar {
    width: 100%;
    flex: 0 0 auto;
  }
  .toppage-sidebar__inner {
    position: static;
  }
}
/* ---- セクション見出し（共通） ---- */
.toppage-section {
  margin-bottom: 90px;
}
.toppage-section:last-child {
  margin-bottom: 0;
}
.toppage-section__head {
  margin-bottom: 64px;
}
.toppage-section__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: #980000;
  font-weight: 400;
  font-size: 48px;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 48px;
}
.toppage-section__title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 64px;
}
.toppage-section__tag {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 16px 24px;
  gap: 10px;
  height: 43px;
  background: #FFFFFF;
  box-shadow: 0px 4px 6px rgba(34, 34, 34, 0.1);
  border-radius: 22px;
  font-size: 15px;
  font-weight: bold;
}
.toppage-section__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
}
.toppage-section__desc {
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .toppage-wrap {
    padding: 50px 0;
  }
  .toppage-section {
    margin-bottom: 60px;
  }
  .toppage-section__head {
    margin-bottom: 48px;
  }
  .toppage-section__title-wrap {
    flex-direction: column;
    margin-bottom: 48px;
  }
  .toppage-section__tag {
    font-size: 13px;
    color: #4B4B4B;
    line-height: 1;
    padding: 12px 16px;
  }
  .toppage-section__eyebrow {
    gap: 8px;
    font-size: 30px;
    margin-bottom: 24px;
  }
  .toppage-section__eyebrow img {
    width: 32px;
  }
  .toppage-section__title {
    font-size: 20px;
    text-align: center;
  }
  .toppage-section__desc {
    font-size: 14px;
    text-align: left;
  }
  .toppage-sidebar {
    display: none;
  }
}
/* ---- COLUMN：テーマタブ ---- */
.column-tabs__nav {
  display: flex;
}
.column-tabs__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  border-left: 1px solid #D9D9DA;
  border-top: 2px solid #E8E8E8;
  background: #E8E8E8;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 20px;
  width: 16.6666666667%;
  height: 78px;
  border-radius: 0;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.column-tabs__btn.is-active {
  background: #fff;
  border-color: #980000;
}
.column-tabs__btn:first-child {
  border-left: none;
}
.column-tabs__panel {
  display: none;
  background: #fff;
  padding: 40px;
}
.column-tabs__panel.is-active {
  display: block;
}
.column-tabs__link {
  display: table;
  font-size: 14px;
  line-height: 1;
  margin: 27px 0 0 auto;
}
.column-tabs__link img {
  position: relative;
  top: -1px;
}

@media only screen and (max-width: 1179px) {
  .nav__item:not(:first-child) {
    margin-left: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .column-tabs__nav {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    box-sizing: border-box;
  }
  .column-tabs__nav::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
  }
  .column-tabs__btn {
    flex: 0 0 auto;
    flex-shrink: 0;
    width: 104px;
    min-width: 104px;
    height: 64px;
    font-size: 12px;
    padding: 10px 8px;
  }
  .column-tabs__panel {
    padding: 24px 16px;
  }
}
.column-cards {
  gap: 32px;
  margin: 0 0 40px;
}
.column-cards .item {
  width: calc((100% - 32px) / 2);
}
.column-cards .item-inner {
  display: block;
  background: #fff;
  border: 1px solid #D8DEE3;
  overflow: hidden;
  height: 100%;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.column-cards .item-inner:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.column-cards .thumbnail {
  overflow: hidden;
}
.column-cards .thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.column-cards .text-block {
  padding: 30px;
}
.column-cards .cat {
  margin-bottom: 8px;
}
.column-cards .title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  color: #1a1a1a;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.column-cards .desc {
  font-size: 12px;
  line-height: 1.7;
  color: #888;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media only screen and (max-width: 767px) {
  .column-cards {
    gap: 20px;
    margin-bottom: 32px;
  }
  .column-cards .item {
    flex: 0 0 100%;
    width: 100%;
  }
}
.linkBtn {
  padding-left: 40px;
  padding-right: 40px;
  position: relative;
  max-width: 366px;
}
.linkBtn:after {
  content: "";
  width: 16px;
  height: 16px;
  background: url(../images/common/icon_arrow.png) no-repeat center/contain;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

/* ---- MOVIE：講師紹介カード ---- */
.instructor-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  background: #fff;
  border-left: 1px solid #980000;
  padding: 48px;
  margin-bottom: 64px;
  text-decoration: none;
}
.instructor-card__label {
  display: inline-block;
  color: #980000;
  font-size: 14px;
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: 16px;
}
.instructor-card__name {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}
.instructor-card__furigana {
  font-size: 14px;
  font-weight: bold;
  color: #9c9c9c;
  padding-left: 1em;
}
.instructor-card__affiliation {
  font-size: 14px;
  font-weight: bold;
  margin: 18px 0;
}
.instructor-card__profile {
  border-top: 1px solid #D8DEE3;
  padding-top: 18px;
  font-size: 14px;
  line-height: 1.8;
}
.instructor-card__profile strong {
  font-weight: bold;
}
.instructor-card__img {
  flex-shrink: 0;
  width: 160px;
  border-radius: 8px;
  overflow: hidden;
}
.instructor-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media only screen and (max-width: 767px) {
  .instructor-card {
    flex-direction: column;
    padding: 32px;
    gap: 24px;
    margin-bottom: 32px;
  }
  .instructor-card__img {
    margin: 0 auto;
  }
}
/* ---- サイドバー ---- */
.sidebar-block__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #980000;
  font-size: 24px;
  border-bottom: 1px solid #D8DEE3;
  padding-bottom: 12px;
  margin-bottom: 24px;
}
.sidebar-block__title .toppage-icon {
  flex-shrink: 0;
  color: #980000;
  width: 18px;
  height: 18px;
}
.sidebar-block .toppage-section__tag {
  margin-bottom: 16px;
}

.ranking-list {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
}
.ranking-list__item:not(:last-child) {
  margin-bottom: 24px;
}
.ranking-list__link:hover {
  opacity: 0.7;
}
.ranking-list__num {
  width: 44px;
  height: 44px;
  background: #222222;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #fff;
  position: absolute;
  left: 0;
  top: 0;
}
.ranking-list__thumb {
  position: relative;
}
.ranking-list__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.ranking-list__text {
  background: #fff;
  padding: 16px 24px;
}
.ranking-list__text .cat {
  display: inline-block;
  font-size: 10px;
  margin-bottom: 4px;
}
.ranking-list__text .title {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  color: #1a1a1a;
  margin-top: 12px;
}

.no-thumb {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f2e2e2, #f8f0f0);
}
.no-thumb--banner {
  aspect-ratio: 3/1;
  border-radius: 6px;
}

.sidebar-check {
  margin-bottom: 40px;
}

.check-banner {
  display: block;
  max-width: 220px;
  margin: 0 auto;
  transition: opacity 0.2s ease;
}
.check-banner:hover {
  opacity: 0.85;
}

.service-banner-list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
}
.service-banner-list__item {
  margin-bottom: 24px;
}
.service-banner-list__item:last-child {
  margin-bottom: 0;
}
.service-banner-list__item a:hover {
  opacity: 0.7;
}
.service-banner-list__item img {
  width: 100%;
  height: auto;
  display: block;
}

.home .case-content .thumbnail img {
  min-height: auto;
}
.home .case-content .item .text-block {
  padding: 20px;
}
.home #section-2,
.home #section-5,
.home #section-6 {
  border-bottom: 1px solid #D7D7D7;
  padding-bottom: 100px;
}
.home #section-2 .thumbnail img {
  height: 172px;
  -o-object-fit: cover;
     object-fit: cover;
}
.home #section-5 .thumbnail img {
  height: 158px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media only screen and (max-width: 767px) {
  .home #section-2,
  .home #section-5,
  .home #section-6 {
    padding-bottom: 60px;
  }
}
.nav-footer {
  position: relative;
}
@media only screen and (min-width: 768px) {
  .nav-footer:hover .nav__hasChild {
    border: none;
  }
  .nav-footer:hover .subNav-footer {
    display: block;
  }
}
.nav-footer.is-active .subNav-footer {
  display: block;
}
.nav-footer.is-active .nav__hasChild::after {
  transform: rotate(180deg);
}
.nav-footer .nav__hasChild {
  padding: 0;
  font-size: 14px;
  cursor: pointer;
}

.footer-01 ul {
  overflow: visible;
}

.subNav-footer {
  position: absolute;
  display: none;
}
.subNav-footer__list {
  padding-top: 20px;
}
.subNav-footer__item {
  display: block !important;
  margin: 0 0 10px !important;
}

@media only screen and (max-width: 767px) {
  #footer .menu-footer_nav-container #footer-nav {
    text-align: left;
  }
  .footer-01 ul li {
    display: block;
  }
  #footer .menu-footer_nav-container {
    margin: 20px 10px 0;
  }
  .footer-01 ul li {
    font-size: 13px;
    margin-bottom: 20px;
  }
  .subNav-footer {
    position: relative;
  }
  .nav-footer .nav__hasChild,
  .nav-footer .nav__link:hover,
  .nav-footer .nav__item:hover .nav__hasChild {
    border-bottom: none !important;
  }
  .subNav-footer__list {
    text-align: left !important;
    padding-top: 15px;
    padding-left: 1.5em;
  }
}
.eyecatch-link:hover {
  opacity: 0.7;
}/*# sourceMappingURL=add-style.css.map */