@charset "UTF-8";
/* フォントファミリー
-----------------------------------------------*/
/* フォント
-----------------------------------------------*/
/* カラー
-----------------------------------------------*/
/* インナー幅
-----------------------------------------------*/
/* 重なり順の定義
-----------------------------------------------*/
/*==============================================
#共通クラス
===============================================*/
body {
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  color: #222;
  font-family: "Noto Sans JP", sans-serif;
}

body.no-scroll {
  overflow: hidden;
}

.inner {
  max-width: 1000px;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .inner {
    padding-inline: 20px;
  }
}

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

.is-tab {
  display: none;
}
@media screen and (max-width: 768px) {
  .is-tab {
    display: block;
  }
}

.is-sp {
  display: none;
}
@media screen and (max-width: 390px) {
  .is-sp {
    display: block;
  }
}

.sp-hide {
  display: block;
}
@media screen and (max-width: 390px) {
  .sp-hide {
    display: none;
  }
}

hr {
  display: inline-block;
  width: 100%;
  border-bottom: 1px solid #000;
  margin: 20px 0;
}

/* ボタン
-----------------------------------------------*/
.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #EBEBEB;
  font-weight: 700;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn:hover {
  opacity: 0.7;
}

.btn-header {
  background: #222;
  border-radius: 30px;
  padding: 11px 41px 12px 42px;
}
@media screen and (max-width: 1000px) {
  .btn-header {
    padding: 11px 30px 12px 30px;
  }
}

.btn-category {
  font-size: 16px;
  line-height: 14px;
  padding: 13px 40px;
  border-radius: 20px;
  border: 1px solid transparent;
}

.btn-category--all {
  background: transparent;
  border: 1px solid #EBEBEB;
}

.btn-category--blue {
  background: #569AFF;
}

.btn-category--pink {
  background: #EF6BAB;
}

.btn-category--green {
  background: #18BE64;
}

.btn-category--orange {
  background: #EE933E;
}

.btn-category--transparent {
  background: transparent;
  border: 1px solid #EBEBEB;
}

.btn-tag {
  font-size: 16px;
  line-height: 14px;
  padding: 13px 25px;
  border-radius: 20px;
  background: transparent;
  border: 1px solid #EBEBEB;
}

.btn-tag--active {
  background: #727272;
  border: 1px solid #727272;
}

.btn-wrap {
  display: inline-block;
}

.btn-search {
  font-size: 16px;
  line-height: 16px;
  padding: 13px 66px 13px 40px;
  border-radius: 20px;
  background: #9F28FB;
  position: relative;
}
.btn-search::after {
  content: "";
  position: absolute;
  background: url(../img/icon_search.svg) no-repeat center center/cover;
  width: 14px;
  height: 14px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 40px;
}

.tag-cat-sm {
  display: inline-block;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #EBEBEB;
  font-weight: 700;
  font-size: 13px;
  line-height: 13px;
  padding: 7px 12px;
  border-radius: 19.5px;
  background: #EF6BAB;
}

.tag-cat-sm--blue {
  background: #569AFF;
}

.tag-cat-sm--pink {
  background: #EF6BAB;
}

.tag-cat-sm--green {
  background: #18BE64;
}

.tag-cat-sm--orange {
  background: #EE933E;
}

.btn-more--black {
  font-size: 15px;
  line-height: 1;
  width: 248px;
  height: 50px;
  border-radius: 30px;
  border: 1px solid #EBEBEB;
  background: #222;
}

.btn-more--color {
  font-size: 15px;
  line-height: 1;
  width: 248px;
  height: 50px;
  border-radius: 30px;
  background: #9F28FB;
}

.btn-works-sp {
  font-size: 16px;
  line-height: 1;
  padding: 16px 66px;
  border-radius: 25px;
  background: #9F28FB;
  position: relative;
  width: 250px;
}
@media screen and (max-width: 350px) {
  .btn-works-sp {
    padding-right: 66px;
  }
}
.btn-works-sp::after {
  content: "";
  position: absolute;
  background: url(../img/icon_btn-arrow.svg) no-repeat center center/cover;
  width: 12px;
  height: 7px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 26px;
}

/* カード
-----------------------------------------------*/
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.card {
  width: 312px;
  height: auto;
  border-radius: 25px;
  background: #EBEBEB;
  padding: 31px 19px;
}

.card__head {
  margin-bottom: 16px;
}

.tag-cat-sm + .tag-cat-sm {
  margin-left: 5px;
}

.card__img {
  position: relative;
  padding-top: 67.5182%;
  overflow: hidden;
  margin-bottom: 16px;
}
.card__img img {
  position: absolute;
  width: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.card__img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.card__img:hover {
  cursor: pointer;
}
.card__img:hover::after {
  opacity: 1;
}
.card__img:hover .card__tag--hover {
  opacity: 1;
}

.card__tag--hover {
  position: absolute;
  bottom: 8.46px;
  left: 10.34px;
  color: #fff;
  font-family: Inter;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0;
  z-index: 2;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.card__body {
  position: relative;
}

.card__heart-icon {
  position: absolute;
  top: 0;
  right: 0;
}
.card__heart-icon input[type=checkbox] {
  width: 27px;
  height: 24px;
  background: url(../img/icon_heart.svg);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.card__heart-icon input[type=checkbox]:hover {
  cursor: pointer;
}
.card__heart-icon input[type=checkbox]:checked {
  background: url(../img/icon_heart-active.svg);
}
.card__heart-icon input[type=checkbox] {
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.card__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 8px;
}

.card__sub-title {
  color: #6B6B6B;
  font-size: 15px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.author-list {
  margin-bottom: 12px;
}

.author-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.author-item + .author-item {
  margin-top: 4px;
}

.author-img {
  width: 30px;
}
.author-img img {
  border-radius: 30px;
}

.author-name {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  margin-left: 4px;
}

.author-circle {
  margin-left: 4px;
}

.author--blue {
  color: #569AFF;
}

.author--pink {
  color: #EF6BAB;
}

.author--green {
  color: #18BE64;
}

.author--orange {
  color: #EE933E;
}

.card__text {
  color: #6B6B6B;
  line-height: 1.65;
  margin-bottom: 32px;
}

.card__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.card-more__link {
  padding-bottom: 5px;
  border-bottom: 1px solid #222;
  font-weight: 700;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.card-more__link:hover {
  opacity: 0.7;
}

.card-site {
  position: relative;
}

.card-site__link {
  padding-bottom: 5px;
  border-bottom: 1px solid #222;
  padding-right: 17px;
  font-weight: 700;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.card-site__link::after {
  content: "";
  position: absolute;
  background: url(../img/icon_card-arrow.svg) no-repeat center center/cover;
  top: 0;
  right: 0;
  width: 9px;
  height: 9px;
}
.card-site__link:hover {
  opacity: 0.7;
}

/*==============================================
#ヘッダー
===============================================*/
.header {
  width: 100%;
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding: 17px 0;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
@media screen and (max-width: 768px) {
  .header {
    padding: 15px 0;
    height: 70px;
  }
}

.header.is-color {
  opacity: 0.7;
  background-color: #646464;
  color: #EBEBEB;
}
.header.is-color .btn-header {
  color: #222;
  background: #EBEBEB;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__logo {
  padding: 10px 0;
}

.header__link {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header__link:hover {
  opacity: 0.7;
}

.header__white-logo {
  display: none;
}
.header__white-logo.is-color {
  display: block;
}

.header__black-logo.is-color {
  display: none;
}

.drawer-icon__wrap {
  margin-left: auto;
  position: fixed;
  top: 15px;
  right: 20px;
  z-index: 23;
}
@media screen and (max-width: 768px) {
  .drawer-icon__wrap {
    margin-right: -10px;
  }
}

.drawer__icon {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  width: 48px;
  height: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px;
  padding-bottom: 20px;
}
.drawer__icon .bar {
  display: block;
  width: 100%;
  height: 1px;
  background: #222;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.drawer__icon.js-open .bar1 {
  -webkit-transform: translateY(23px) rotate(45deg);
          transform: translateY(23px) rotate(45deg);
  background: #EBEBEB;
}
.drawer__icon.js-open .bar2 {
  display: none;
}
.drawer__icon.js-open .bar3 {
  -webkit-transform: translateY(0px) rotate(-45deg);
          transform: translateY(0px) rotate(-45deg);
  background: #EBEBEB;
}

.gnav {
  margin-left: auto;
}

.gnav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 1000px) {
  .gnav__list {
    gap: 20px;
  }
}

.gnav__link {
  display: block;
  font-weight: 700;
  line-height: 38px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}
.gnav__link:hover {
  opacity: 0.7;
}
.gnav__link::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #222;
  bottom: 5px;
  /*アンダーラインがaタグの下端から現れる*/
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
  -webkit-transform-origin: left top;
          transform-origin: left top;
  /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  /*変形の時間*/
}
.gnav__link:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  /*ホバー後、x軸方向に1（相対値）伸長*/
}

.gnav__btn {
  margin-left: 2px;
}

.btn-header {
  font-weight: 700;
  color: #EBEBEB;
  background: #222;
  border-radius: 30px;
  padding: 11px 41px 12px 42px;
}
@media screen and (max-width: 1000px) {
  .btn-header {
    padding: 11px 30px 12px 30px;
  }
}

.drawer__menu {
  width: 56.4103%;
  height: 100vh;
  background: rgba(34, 34, 34, 0.75);
  padding: 72px 34px;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 22;
  -webkit-transform: translateX(150%);
          transform: translateX(150%);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.drawer__menu.js-open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media screen and (max-width: 390px) {
  .drawer__menu {
    width: 100%;
    padding: 90px 50px;
  }
}

.drawer__item {
  margin-bottom: 32px;
}
.drawer__item a {
  display: inline-block;
  color: #EBEBEB;
  font-weight: 700;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.drawer__item a:hover {
  opacity: 0.7;
}

.drawer-bg {
  position: fixed;
  z-index: 21;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  display: none;
}
.drawer-bg.js-open {
  display: block;
}

/*==============================================
#メインビジュアル
===============================================*/
.mv {
  width: 100%;
  height: 700px;
  background: url(../img/img_fv-bg.jpg) no-repeat center center/cover;
  position: relative;
}
@media screen and (max-width: 390px) {
  .mv {
    height: 473px;
  }
}

.mv__inner {
  position: relative;
}

.mv__content {
  color: #fff;
  position: absolute;
  top: 163px;
  left: 0;
}
@media screen and (max-width: 768px) {
  .mv__content {
    padding-inline: 20px;
    top: 124.5px;
  }
}
@media screen and (max-width: 390px) {
  .mv__content {
    top: 86px;
  }
}

.mv__lead {
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 28px;
}
.mv__lead span {
  display: inline-block;
  font-size: inherit;
  font-weight: inherit;
}
@media screen and (max-width: 768px) {
  .mv__lead span {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .mv__lead {
    font-size: 20px;
    margin-bottom: 23px;
  }
}
@media screen and (max-width: 390px) {
  .mv__lead {
    font-size: 14px;
    margin-bottom: 18px;
  }
}

.mv__title {
  max-width: 610px;
  margin-bottom: 44px;
}
@media screen and (max-width: 768px) {
  .mv__title {
    max-width: 451px;
    margin-bottom: 33px;
  }
}
@media screen and (max-width: 390px) {
  .mv__title {
    max-width: 292px;
    margin-bottom: 22px;
  }
}

.mv__text {
  font-size: 16px;
  font-weight: 700;
  line-height: 165%;
}
@media screen and (max-width: 768px) {
  .mv__text {
    font-size: 14px;
  }
}
@media screen and (max-width: 390px) {
  .mv__text {
    font-size: 12px;
    line-height: 1.65;
  }
}

.mv__text-pc {
  display: inline-block;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}
@media screen and (max-width: 768px) {
  .mv__text-pc {
    display: none;
  }
}

.mv__text-tab {
  display: none;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}
@media screen and (max-width: 768px) {
  .mv__text-tab {
    display: inline-block;
  }
}

.mv-bg {
  width: 100%;
  height: 250px;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(14.58%, #222), color-stop(84.9%, rgba(34, 34, 34, 0)));
  background: linear-gradient(to top, #222 14.58%, rgba(34, 34, 34, 0) 84.9%);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

/*==============================================
#スワイパー
===============================================*/
.swiper-container {
  position: relative;
  margin-top: -250px;
  background: linear-gradient(180deg, transparent 0%, transparent 250px, #222 250px, #222 100%);
  padding-top: 25px;
}
@media screen and (max-width: 390px) {
  .swiper-container {
    padding-top: 42px;
  }
}

.swiper {
  position: relative;
}

.top-swiper {
  padding-bottom: 75px;
}
@media screen and (max-width: 390px) {
  .top-swiper {
    padding-bottom: 48px;
  }
}

.swiper-wrapper {
  position: relative;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

.top-swiper__slide {
  pointer-events: none;
}

.swiper-scrollbar.swiper-scrollbar-horizontal {
  top: calc(100% - 2px);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  max-width: 400px;
  height: 2px;
  background: #fff;
  cursor: -webkit-grab;
  cursor: grab;
}
@media screen and (max-width: 768px) {
  .swiper-scrollbar.swiper-scrollbar-horizontal {
    max-width: 200px;
  }
}

.swiper-scrollbar-drag {
  background: #9F28FB;
}

/*==============================================
#サマリー
===============================================*/
.summary {
  margin-top: -2px;
  padding-top: 127px;
  background: #222;
  padding-bottom: 192px;
}
@media screen and (max-width: 768px) {
  .summary {
    padding-top: 90px;
    padding-bottom: 94px;
  }
}

.summary__inner {
  max-width: 850px;
  width: 100%;
}

.summary__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .summary__content {
    display: block;
    padding-inline: 19px;
  }
}

.summary__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 346.025px;
          flex: 0 0 346.025px;
  margin-bottom: 15.5%;
}
@media screen and (max-width: 768px) {
  .summary__img {
    width: 58.3333%;
    min-width: 182px;
    margin-bottom: 40px;
  }
}

.summary__body {
  color: #EBEBEB;
  font-size: 18px;
  font-weight: 700;
  line-height: 2.1;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 401px;
          flex: 0 1 401px;
  margin-left: 12.1153%;
  margin-top: auto;
}
@media screen and (max-width: 768px) {
  .summary__body {
    width: 100%;
    margin-left: 0;
    font-size: 15px;
    line-height: 1.9;
  }
}

.summary__text + .summary__text {
  margin-top: 1em;
}

/*==============================================
#works
===============================================*/
.works {
  background: #222;
  padding-bottom: 144px;
  padding-top: 2px;
  margin-top: -2px;
}
@media screen and (max-width: 768px) {
  .works {
    padding-bottom: 70px;
  }
}

@media screen and (max-width: 350px) {
  .works__inner {
    padding-inline: 0px;
  }
}

.section__title {
  text-align: center;
  margin-bottom: 66px;
}
@media screen and (max-width: 768px) {
  .section__title {
    margin-bottom: 48px;
  }
}

.section__title--en {
  width: 98px;
  margin: 0 auto 15px;
}
@media screen and (max-width: 768px) {
  .section__title--en {
    width: 85px;
  }
}

.section__title--ja {
  color: #EBEBEB;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .section__title--ja {
    font-size: 13px;
    line-height: 1;
  }
}

/* ワークス ボタン部分
-----------------------------------------------*/
.works__button {
  margin-bottom: 96px;
}

.category__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 24px;
}

.btn-category--all.is-active {
  background: #9F28FB;
  border: 1px solid transparent;
}

.btn-category--pink.is-active {
  background: #EF6BAB;
  border: 1px solid transparent;
}

.btn-category--blue.is-active {
  background: #569AFF;
  border: 1px solid transparent;
}

.btn-category--green.is-active {
  background: #18BE64;
  border: 1px solid transparent;
}

.btn-category--orange.is-active {
  background: #EE933E;
  border: 1px solid transparent;
}

.tag__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 64px;
}

.btn-tag.is-active {
  background: #727272;
  border: 1px solid #727272;
}

.works__search {
  text-align: center;
}

/* ワークス ボタンsp
-----------------------------------------------*/
.works__btn--sp {
  text-align: center;
  margin-bottom: 56px;
}

.works__category--sp {
  margin-bottom: 24px;
}

/* タグ
-----------------------------------------------*/
.works__tag--sp {
  margin-bottom: 24px;
}

/* ワークス カード部分
-----------------------------------------------*/
.works-card__list {
  margin-bottom: 152px;
  -webkit-column-count: 3;
     -moz-column-count: 3;
          column-count: 3;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  -webkit-column-gap: 32px;
     -moz-column-gap: 32px;
          column-gap: 32px;
}
@media screen and (max-width: 1000px) {
  .works-card__list {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
  }
}
@media screen and (max-width: 768px) {
  .works-card__list {
    -webkit-column-count: auto;
       -moz-column-count: auto;
            column-count: auto;
  }
}
@media screen and (max-width: 390px) {
  .works-card__list {
    margin-bottom: 52px;
  }
}

.works__more {
  text-align: center;
}

.card-sort {
  -webkit-column-break-inside: avoid;
     -moz-column-break-inside: avoid;
          break-inside: avoid;
  width: 312px;
}

.card-sort.is-hide {
  display: none;
}

.card-sort:not(.is-hide) {
  margin-bottom: 32px;
}

.card-sort:last-of-type:not(.is-hide) {
  margin-bottom: 0;
}

/*==============================================
#course
===============================================*/
.course {
  background: #EBEBEB;
  position: relative;
  padding: 88px 0 147px;
}
@media screen and (max-width: 768px) {
  .course {
    padding: 54px 0 70px;
  }
}

.course__bg-texture {
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/bg_course-texture-pc.png) no-repeat center center/cover;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 390px) {
  .course__bg-texture {
    background: url(../img/sp/bg_course-texture-sp.png) no-repeat center center/cover;
  }
}

.course__bg {
  position: relative;
  background: url(../img/bg_course-pc.png) no-repeat center top/cover;
  max-width: 1195px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 390px) {
  .course__bg {
    background: url(../img/sp/bg_course-sp.png) no-repeat center top/cover;
  }
}

.course__heading {
  text-align: center;
  font-weight: 700;
}

.course__title-lead {
  margin-bottom: 26px;
}
@media screen and (max-width: 768px) {
  .course__title-lead {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 12px;
  }
}

.section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 26px;
}

.course__logo {
  width: 84.892px;
}
@media screen and (max-width: 768px) {
  .course__logo {
    width: 52.433px;
  }
}

.course__title {
  width: 188.478px;
  padding-bottom: 4.43px;
  margin-left: 32.66px;
}
@media screen and (max-width: 768px) {
  .course__title {
    width: 116.413px;
    padding-bottom: 2.74px;
    margin-left: 20.17px;
  }
}

.course__title-text {
  font-weight: 900;
  line-height: 1.65;
  margin-left: 18px;
  padding-bottom: 1.18px;
}
@media screen and (max-width: 768px) {
  .course__title-text {
    margin-left: 12px;
    font-size: 16px;
  }
}

.course__description {
  font-size: 18px;
  line-height: 1.65;
  margin-bottom: 46px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .course__description {
    font-size: 15px;
    margin-bottom: 39px;
  }
}

.course__curriculum {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .course__curriculum {
    display: block;
    width: 248px;
    margin-inline: auto;
    margin-bottom: 56px;
  }
}

.course__curriculum-item {
  width: 26%;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.65;
  padding: 12px 10px;
  background: #fff;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
.course__curriculum-item + .course__curriculum-item {
  margin-left: 3.5%;
}
@media screen and (max-width: 768px) {
  .course__curriculum-item + .course__curriculum-item {
    margin-top: 16px;
    margin-left: auto;
  }
}
@media screen and (max-width: 768px) {
  .course__curriculum-item {
    font-size: 13px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 12px 24px;
  }
}

/* コース一覧
-----------------------------------------------*/
.course__container {
  font-size: 15px;
  line-height: 2.1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 72px;
}

.course__primary {
  font-weight: 700;
  width: 135px;
  padding-top: 11px;
  border-top: 1px solid #6B6B6B;
}

.course__secondary {
  width: 480px;
  margin-left: 35px;
}

.secondary-item {
  font-weight: 700;
  padding-top: 11px;
  border-top: 1px solid #6B6B6B;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 9px;
  position: relative;
}
.secondary-item::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  top: 24px;
  left: 0;
  background-color: #9F28FB;
}

.third-ol {
  margin-left: 36px;
}
.third-ol span {
  color: #9F28FB;
}

.standard {
  margin-bottom: 34px;
}

.advanced__item {
  padding-left: 20px;
}

.course__btn {
  text-align: center;
}

/*==============================================
#footer
===============================================*/
.footer {
  background: #222;
  color: #fff;
}

.footer__inner {
  padding-top: 40px;
}
@media screen and (max-width: 768px) {
  .footer__inner {
    padding-top: 55px;
  }
}

.footer-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .footer-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.footer-logo {
  width: 280px;
}
@media screen and (max-width: 768px) {
  .footer-logo {
    width: 282px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 350px) {
  .footer-logo {
    width: 280px;
  }
}

.footer-logo__link {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.footer-logo__link:hover {
  opacity: 0.56;
}

.footer-sns {
  margin-top: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}
@media screen and (max-width: 768px) {
  .footer-sns {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 48px;
    margin-top: 34px;
  }
}

.footer-sns__link {
  padding: 3px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.footer-sns__link:hover {
  opacity: 0.56;
}

.twitter__link img {
  width: 34.56px;
}
@media screen and (max-width: 768px) {
  .twitter__link img {
    width: 44px;
  }
}

.insta__link img {
  width: 35.28px;
}
@media screen and (max-width: 768px) {
  .insta__link img {
    width: 44px;
  }
}

.footer-right {
  width: 47%;
  margin-left: auto;
  margin-right: 5px;
  margin-top: 10px;
}
@media screen and (max-width: 1000px) {
  .footer-right {
    width: 56%;
  }
}
@media screen and (max-width: 768px) {
  .footer-right {
    width: 100%;
    margin-right: 0;
    padding-inline: 13px;
    margin-top: 48px;
  }
}
@media screen and (max-width: 390px) {
  .footer-right {
    padding-inline: 5px;
  }
}

.footer-nav {
  display: grid;
  row-gap: 25px;
  -webkit-column-gap: 10%;
     -moz-column-gap: 10%;
          column-gap: 10%;
  grid-template-areas: "area1 area2 area3" "area4 area5 .....";
}
@media screen and (max-width: 1000px) {
  .footer-nav {
    -webkit-column-gap: 7%;
       -moz-column-gap: 7%;
            column-gap: 7%;
  }
}
@media screen and (max-width: 768px) {
  .footer-nav {
    grid-template-areas: "area1 area1 area2 area2" "area3 area4 area4 area5";
    -webkit-column-gap: 5%;
       -moz-column-gap: 5%;
            column-gap: 5%;
  }
}
@media screen and (max-width: 390px) {
  .footer-nav {
    -webkit-column-gap: 3%;
       -moz-column-gap: 3%;
            column-gap: 3%;
  }
}
@media screen and (max-width: 350px) {
  .footer-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.footer-nav__item {
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .footer-nav__item {
    font-size: 13px;
    line-height: 1.077;
    text-align: center;
  }
}
@media screen and (max-width: 390px) {
  .footer-nav__item {
    text-align: left;
  }
}

.footer-nav__item01 {
  grid-area: area1;
}
@media screen and (max-width: 768px) {
  .footer-nav__item01 {
    grid-area: area3;
  }
}

.footer-nav__item02 {
  grid-area: area2;
}
@media screen and (max-width: 768px) {
  .footer-nav__item02 {
    grid-area: area1;
  }
}

.footer-nav__item03 {
  grid-area: area3;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .footer-nav__item03 {
    grid-area: area5;
  }
}
@media screen and (max-width: 390px) {
  .footer-nav__item03 {
    text-align: right;
  }
}

.footer-nav__item04 {
  grid-area: area4;
}
@media screen and (max-width: 768px) {
  .footer-nav__item04 {
    grid-area: area4;
  }
}
@media screen and (max-width: 390px) {
  .footer-nav__item04 {
    text-align: center;
  }
}

.footer-nav__item05 {
  grid-area: area5;
}
@media screen and (max-width: 768px) {
  .footer-nav__item05 {
    grid-area: area2;
  }
}
@media screen and (max-width: 390px) {
  .footer-nav__item05 {
    text-align: right;
  }
}

.footer-nav__link {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.footer-nav__link:hover {
  opacity: 0.56;
}

.footer-emphasis {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.65;
  margin-top: 73px;
}
@media screen and (max-width: 768px) {
  .footer-emphasis {
    margin-top: 64px;
    padding-inline: 8px;
  }
}

.footer-copyright {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.07692;
  text-align: center;
  padding-bottom: 30px;
  margin-top: 40px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .footer-copyright {
    margin-top: 24px;
    letter-spacing: 0.1em;
    line-height: 0.7;
  }
}