@charset "UTF-8";
/* SASS の function 機能 */
/**
【2020/9/12更新】

※pxで記述するものは、pxなしでも動作する。


strip-unit(30px)
  単位の除去

vh(30px, 1200px)
  第2引数を100vhとして、第1引数が何vh かを返す処理

addpx(30)
  単位なしの数値が入ったら px を付与

vwsp(100px)
  100px を vw に変換して返す（スマホ版デザインで算出）

vwpc(100px)
  100px を vw に変換して返す（パソコン版デザインで算出）

*/
/**
 * 単位なしの値には px を付与する
 */
/**
 * スマートフォン用デザイン上でのピクセル数を指定すると、vw換算での値を返す
 * @require d.$design-width-sp
 */
/**
 * パソコン用デザイン上でのピクセル数を指定すると、vw換算での値を返す
 * @require d.$design-width-pc
 */
/*
三角関数
https://codepen.io/NyX/pen/dYvymM
*/
/*
$pi: 3.14159265359;
$_precision: 10;

@function pow($base, $exp) {
  $value: $base;

  @if $exp>1 {
    @for $i from 2 through $exp {
      $value: $value * $base;
    }
  }

  @if $exp < 1 {
    @for $i from 0 through -$exp {
      $value: $value / $base;
    }
  }

  @return $value;
}

@function fact($num) {
  $fact: 1;

  @if $num>0 {
    @for $i from 1 through $num {
      $fact: $fact * $i;
    }
  }

  @return $fact;
}

@function _to_unitless_rad($angle) {
  @if unit($angle)=="deg" {
    $angle: $angle / 180deg * $pi;
  }

  @if unit($angle)=="rad" {
    $angle: $angle / 1rad;
  }

  @return $angle;
}

@function sin($angle) {
  $a: _to_unitless_rad($angle);
  $sin: $a;

  @for $n from 1 through $_precision {
    $sin: $sin + (pow(-1, $n) / fact(2 * $n + 1)) * pow($a, (2 * $n + 1));
  }

  @return $sin;
}

@function cos($angle) {
  $a: _to_unitless_rad($angle);
  $cos: 1;

  @for $n from 1 through $_precision {
    $cos: $cos + (pow(-1, $n) / fact(2*$n)) * pow($a, 2*$n);
  }

  @return $cos;
}

@function tan($angle) {
  @return sin($angle) / cos($angle);
}
*/
/*
_sitefont.scss で使用する、自前フォントを使うための mixin集
*/
/*
@function str-replace($substr, $newsubstr, $str, $all:false) {
  $pos: str-index($str, $substr);

  @while $pos !=null {
    $strlen: str-length($substr);
    $start: str-slice($str, 0, $pos - 1);
    $end: str-slice($str, $pos + $strlen);
    $str: $start + $newsubstr + $end;

    @if $all==true {
      $pos: str-index($str, $substr);
    }

    @else {
      $pos: null;
    }
  }

  @return $str;
}
*/
/**
 * z-index値の調整用
 */
/*
【2020/9/18更新】

※pxで記述するものは、pxなしでも動作する。

解説記事
https://kaminarimagazine.com/web/2017/12/12/sass%E3%81%A7%E3%82%88%E3%81%8F%E4%BD%BF%E3%81%A3%E3%81%A6%E3%81%84%E3%82%8Bmixin%E3%82%92%E7%B4%B9%E4%BB%8B%E3%81%97%E3%81%BE%E3%81%99/



==== 文字系 ====

@include font-rem(16px, 32px, 0.1px, true)
  Illustratorで自動生成されるCSSの値を3つ順に入れると rem + em ベースでの文字指定ができる。
  font-size, line-height, letter-spacing を px単位で打ち込む（単位は省略可）
  第4引数は letter-spacing & text-align:center の場合に位置がずれるのを修正するかどうか。

@include fonti(16px, 32px, 0.1px, true)
  font-remとほぼ同様だが、Illustratorでは文字の上に余白がなく位置調整がしづらいため、
  Webでも上に余白をなくしてしまえ！というmixin。ついでに下の余白もなくす。
  （下にはみ出す英字系フォントではズレが出ると思われる）

@include line-truncate
  1行から溢れたら ... と省略する

@include lines-truncate(3)
  指定行数から溢れたら ... と省略する



==== 段落系 ====

@include justify();
  両端揃えの設定がされる。IEも対応。

@include full-width();
  ブロックの幅をウィンドウ幅全体に変更する。
  ただしPCではスクロールバーの幅の関係でややあふれるため、祖先要素に overflow:hidden; が必要。



==== 画像系 ====
@include fix-aspect(300px, 200px, true)
  ブロックの縦横比を指定する処理。
  横幅、縦幅、子要素も同様にするかの順に指定。

@include object-fit(cover, center center);
  JavaScriptライブラリ Object Fit Images を用いて
  IE でも object-fit および object-fit-position が使用できるようになる。
  ただし別途 Object Fit Images を実行する必要があるので注意。
  （既定では class="ofi" を付与していると自動的に対象となる）

@include pseudo-img(30px, 30px, ../../images/item.jpg);
  疑似要素に画像を入れる場合に使う。
  疑似要素系は記述が多くて面倒なため。



==== レイアウト系 ====

@include dl-table($dt-width, $breakpoint: $width-sp)
  dl,dt,dd で2列の表を作るのを簡単にする。
  $dt-width を指定すると、残り幅を dd の幅に割り当てる。
  $breakpoint になると、1列の表に戻す。

@include flex-layout($padding)
  flexでよく使うマイナスマージンについての対応をする。
  display:flex とする要素の親要素（またはそれ以上）に対して使用し、
  flexとする要素には .container クラスを付与すること。
    @param $padding : 各要素と要素の間隔を指定(px,vw等)


==== メディアクエリ系 ====

@media screen and (max-width:768px){
  【 CSSを記述 】
}
  $width-sp の値を元に @media(max-width:768px) を作成する。
  ただの省略用。

@include max-width(1400px){
  【 CSSを記述 】
}
  任意のmax-widthでメディアクエリを書く省略形。



==== 入力フォーム系 ====

  input要素はtype属性により表示が全く異なるので、それらをまとめて設定するためのmixin。

@include form-text{
  【 CSSを記述 】
}
  text, email, number, password, tel, search, url, date, datetime, datetime-local, month, week

@include form-datetime{
  【 CSSを記述 】
}
  date, datetime, datetime-local, month, week

@include form-button{
  【 CSSを記述 】
}
  button要素と button, image, submit, reset


*/
/**
 * Illustrator の出力するCSSを rem ベース + em ベースに変換する
 * @param int $font-size      px単位での文字サイズ
 * @param int $line-height    px単位での行の高さ ※0にすると無視
 * @param int $letter-spacing px単位での字間 ※0にすると無視
 * @param bool $is_center     中央揃えで使用する際の調整をするか
 * @require $font-size-root
 * @example1 @font-rem(14px, 28px, 0.4px, true);
 * @example2 @font-rem(14, 28, 0.4, true);
 */
/**
 * Illustrator の出力するCSSを rem ベース + em ベースに変換し、
 * さらに line-height により生じる上下の余白を調整する（Illustrator に合わせる）
 *
 * @param int $font-size      px単位での文字サイズ
 * @param int $line-height    px単位での行の高さ ※0にすると無視
 * @param int $letter-spacing px単位での字間 ※0にすると無視
 * @param bool $is_center     中央揃えで使用する際の調整をするか
 * @require $font-size-root
 * @example1 @font-rem(14px, 28px, 0.4px, true);
 * @example2 @font-rem(14, 28, 0.4, true);
 * @see https://coliss.com/articles/build-websites/operation/css/simple-css-remove-top-space.html
 */
/**
 * 溢れたテキストは … にする。
 * 1行限定だが、ブラウザ依存なし。
 */
/**
 * 溢れたテキストを … にする。
 * 任意行指定可能だが、-webkit が使える環境限定。
 * @param int $lines  最大行数
 */
/**
 * 幅をウィンドウ幅すべての幅にする
 * ただしPC版ではスクロールバーも含めたサイズとなるため、親要素を overflow:hidden; にしておくこと。
 */
/**
 * 縦横比を強制する
 * @param int $width        ブロックの幅
 * @param int $height       ブロックの高さ
 * @param bool $isFixChild  子要素にも縦横比を強制するか（既定値は false）
 */
/**
 * 疑似要素に画像をはめ込む
 */
/**
 * スマホ表示時のメディアクエリ
 *  メリット: 記述が楽になった
 *  デメリット: タブ下にあるセレクタの表示が直感的にわかりにくくなった
 */
/**
 * max-width のメディアクエリを作成する
 *  @param : $max-width  最大幅  数値に単位がない場合は px を付与。既定値はスマホの幅
 */
/**
 * dl要素を2列の表として表示する際のmixin
 * @param $dt-width: dt要素の幅
 * @param $breakpoint: 1列にする際の幅　既定値はスマホの幅
 */
/**
 * flexでよく使うマイナスマージンについての対応をする。
 * display:flex とする要素の親要素（またはそれ以上）に対して使用し、
 * flexとする要素には .container クラスを付与すること。
 * @param $padding : 各要素と要素の間隔を指定
 */
/**
 * input要素のうちテキストボックス型にCSSをまとめて適用
 */
/**
 * input要素の日付関連のみCSSをまとめて適用
 */
/**
 * input要素およびbutton要素のみCSSをまとめて適用
 */
/*
JavaScriptが無効な場合に適用するCSSを記述する
ex)
  .caution{
    @include no-js(){
      color: red;
    }
  }
*/
/**
 * background-image で png と webp を振り分ける処理。
 * 引数は拡張子を記載しない。
 *  記述例) @include bgi("../images/hoge")
 * ../images/hoge.png と ../images/hoge.webp で振り分けるように動作する。
 */
/**
 * スライド処理する親要素に設定すると、JavaScript無効時でもレイアウト崩れがない状態とすることができる
 */
/**
 * ページロード時の最初の瞬間に表示されないようにする
 */
/**
 * ブロック背景に色を付与する。
 * 要親要素以上での overflow: hidden
 */
/**
 * 三角形生成
 * @ref https://qiita.com/manabuyasuda/items/be17291426890d9fb15b
 */
.bl-guide__button {
  --c-jaen-color-bg: #008DCA;
  background: #0C508A;
  display: flex;
  align-items: center;
}
.bl-guide__button .c-jaen .ja {
  color: #fff;
}
.bl-guide__button .c-jaen .en {
  color: #fff;
}
.bl-guide__button .icon-arrow-right {
  color: #fff;
}
.bl-guide__button.mod_second {
  background: #008DCA;
  --c-jaen-color-bg: #0C508A;
}
.bl-guide__button.mod_second .c-jaen .ja {
  color: #FFEC00;
}
@media (hover: hover) {
  .bl-guide__button {
    transition: opacity 0.3s;
    opacity: 1;
  }
  .bl-guide__button:hover {
    opacity: 0.5;
  }
}
@media print, screen and (min-width: 768.1px) {
  .bl-guide {
    margin-top: 102px;
    display: flex;
    justify-content: center;
  }
  .bl-guide__button {
    margin: 0 2px;
    padding: 0 40px 0 59px;
    width: 488px;
    height: 200px;
    justify-content: space-between;
  }
  .bl-guide__button .icon-arrow-right {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  .bl-guide {
    margin: 18.5vw auto 0;
    width: 80vw;
    display: block;
    margin-bottom: -4.25vw;
  }
  .bl-guide__button {
    margin: 0 auto 4.25vw;
    aspect-ratio: 320/158;
    min-height: 100px;
    max-width: 320px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .bl-guide__button .icon-arrow-right {
    margin-top: 13px;
    font-size: 21px;
  }
}

.bl-top__description {
  color: #0C508A;
  font-weight: 700;
  font-size: 1.1875rem;
  --font-size: 19;
  line-height: 1.7321052632;
  padding-top: 0.1px;
  padding-bottom: 0.1px;
  text-align: center;
}
.bl-top__description:before, .bl-top__description:after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}
.bl-top__description:before {
  margin-top: -0.3660526316em;
}
.bl-top__description:after {
  margin-bottom: -0.3660526316em;
}
.bl-top__image {
  position: absolute;
  z-index: -1;
  top: 0;
  height: 100%;
}
.bl-top__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.bl-top__image.mod_left {
  left: 0;
}
.bl-top__image.mod_right {
  right: 0;
}
@media print, screen and (min-width: 768.1px) {
  .bl-top__container {
    height: 404px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .bl-top__description {
    margin-top: 33px;
  }
  .bl-top__image {
    width: 516px;
  }
  .bl-top__image.mod_left img {
    -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 158px) 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, calc(100% - 158px) 100%, 0 100%);
  }
  .bl-top__image.mod_right img {
    -webkit-clip-path: polygon(158px 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(158px 0, 100% 0, 100% 100%, 0 100%);
  }
}
@media print, screen and (min-width: 768.1px) and (max-width: 1300px) {
  .bl-top__section {
    padding: 15px;
    background: rgba(255, 255, 255, 0.6);
  }
}
@media screen and (max-width: 768px) {
  .bl-top__description {
    margin-top: 32px;
    font-size: clamp(18px, 4.5vw, calc(var(--font-size) * 1px));
  }
  .bl-top__image-wrap {
    height: 49.3625vw;
    position: relative;
  }
}

.bl-wrap {
  margin: auto;
}
@media print, screen and (min-width: 768.1px) {
  .bl-wrap {
    width: 980px;
    max-width: 98%;
  }
}
@media screen and (max-width: 768px) {
  .bl-wrap {
    width: 80vw;
  }
}

.bl-index__link .text {
  color: #0C508A;
  font-weight: 700;
  font-size: 0.9375rem;
  --font-size: 15;
  line-height: 1.5333333333;
  letter-spacing: 0.0253333333em;
  transition: color 0.3s;
}
.bl-index__link .text > span {
  display: inline-block;
  white-space: nowrap;
}
.bl-index__link .icon {
  color: #008DCA;
  margin-left: 8px;
  font-size: 14px;
  zoom: 0.5;
  transition: color 0.3s;
}
@media (hover: hover) {
  .bl-index__link:hover .icon {
    color: #0C508A;
  }
  .bl-index__link:hover::after {
    height: 3px;
  }
}
@media print, screen and (min-width: 768.1px) {
  .bl-index {
    margin-top: 88px;
  }
  .bl-index__items {
    margin-left: -31px;
    margin-right: -31px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-around;
  }
  .bl-index__items::before, .bl-index__items::after {
    content: "";
    order: 99;
  }
  .bl-index__item, .bl-index__items::before, .bl-index__items::after {
    padding-left: 31px;
    padding-right: 31px;
    width: 33.3333333333%;
    min-width: 341px;
  }
  .bl-index__item {
    margin-top: 19px;
  }
  .bl-index__link {
    padding: 0 8px 8px 0;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }
  .bl-index__link .icon {
    margin-bottom: 6px;
  }
  .bl-index__link::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: #008DCA;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: height 0.3s;
  }
}
@media screen and (max-width: 768px) {
  .bl-index {
    margin-top: 11.75vw;
    position: relative;
    z-index: 2;
  }
  .bl-index__container {
    margin-top: 17px;
    height: 38px;
  }
  .bl-index__label {
    padding: 0 10px;
    width: 100%;
    height: 38px;
    background: #FFEC00;
    display: flex;
    align-items: center;
    justify-content: space-between;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
  .bl-index__label .text {
    color: #0C508A;
    font-weight: 700;
    font-size: 0.9375rem;
    --font-size: 15;
    line-height: 1;
    letter-spacing: 0.0253333333em;
  }
  .bl-index__label .triangle {
    width: 0;
    height: 0;
    border-style: solid;
    border-color: #0C508A transparent transparent transparent;
    border-width: 12px 10.8px 0 10.8px;
    transform: rotate(0);
    transition: transform 0.6s;
  }
  .bl-index__items {
    padding: 10px 0;
    border-radius: 0 0 10px 10px;
    border: solid 2px #FFEC00;
    border-top: 0;
    background: #fff;
    transform: scaleY(0);
    transition: transform 0.6s;
    transform-origin: top center;
  }
  .bl-index__link {
    padding: 5px 10px;
    background: none;
    width: 100%;
    height: auto;
    display: block;
  }
  .bl-index__link .text {
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 15px;
    line-height: 1.4;
  }
  .bl-index__link .icon {
    margin-left: 10px;
  }
  .bl-index #switch-menu {
    display: none;
  }
  .bl-index #switch-menu:checked ~ .bl-index__items {
    transform: scaleY(1);
  }
  .bl-index #switch-menu:checked + .bl-index__label .triangle {
    transform: rotate(-180deg);
  }
}

.bl-quick__description {
  font-size: 0.9375rem;
  --font-size: 15;
  line-height: 1.8;
  padding-top: 0.1px;
  padding-bottom: 0.1px;
  letter-spacing: 0.0253333333em;
  text-indent: 0.0253333333em;
  text-align: center;
}
.bl-quick__description:before, .bl-quick__description:after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}
.bl-quick__description:before {
  margin-top: -0.4em;
}
.bl-quick__description:after {
  margin-bottom: -0.4em;
}
.bl-quick__button {
  margin: auto;
}
.bl-quick__button .icon {
  font-size: 23px;
}
@media print, screen and (min-width: 768.1px) {
  .bl-quick {
    margin-top: 82px;
  }
  .bl-quick__description {
    margin-top: 35px;
  }
  .bl-quick__button {
    margin-top: 37px;
  }
}
@media screen and (max-width: 768px) {
  .bl-quick {
    margin-top: 11.9vw;
  }
  .bl-quick__description {
    margin-top: 16px;
  }
  .bl-quick__button {
    margin-top: 34px;
  }
}

.bl-course {
  position: relative;
}
.bl-course__title .text > span {
  color: #fff;
}
.bl-course__title .text > span:nth-of-type(1) {
  color: #FFEC00;
}
.bl-course__bg {
  position: absolute;
  z-index: -1;
  top: 0;
  right: calc((100vw - 100%) / -2);
  left: calc((100vw - 100%) / -2);
}
.bl-course__bg::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #DCDCDC;
}
.bl-course__description {
  font-size: 0.9375rem;
  --font-size: 15;
  line-height: 1.8;
  padding-top: 0.1px;
  padding-bottom: 0.1px;
  letter-spacing: 0.0253333333em;
}
.bl-course__description:before, .bl-course__description:after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}
.bl-course__description:before {
  margin-top: -0.4em;
}
.bl-course__description:after {
  margin-bottom: -0.4em;
}
.bl-course__button .text {
  font-style: normal;
  font-size: 0.9375rem;
  --font-size: 15;
  line-height: 1;
  letter-spacing: 0.0253333333em;
  display: block;
  word-break: keep-all;
}
.bl-course__button .icon-outer {
  font-size: 12px;
}
.bl-course:nth-of-type(2n+1) .bl-course__bg {
  left: auto;
}
.bl-course:nth-of-type(2n+2) .bl-course__bg {
  right: auto;
}
@media print, screen and (min-width: 768.1px) {
  .bl-course {
    margin-top: 130px;
    padding-top: 64px;
  }
  .bl-course__bg {
    width: calc((100vw - 100%) / 2 + 370px);
    height: 523px;
  }
  .bl-course__image {
    margin-top: 32px;
  }
  .bl-course__description {
    margin-top: 28px;
    margin-bottom: 67px;
  }
  .bl-course__navi {
    margin: 30px 0;
    display: flex;
    justify-content: center;
  }
  .bl-course__button {
    margin: 0 12px 12px;
  }
  .bl-course:nth-of-type(2n+1) .bl-course__bg::after {
    -webkit-clip-path: polygon(186px 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(186px 0, 100% 0, 100% 100%, 0 100%);
  }
  .bl-course:nth-of-type(2n+2) .bl-course__bg::after {
    -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 186px) 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, calc(100% - 186px) 100%, 0 100%);
  }
}
@media screen and (max-width: 768px) {
  .bl-course {
    margin-top: 21.25vw;
    padding-top: 6.75vw;
  }
  .bl-course__title {
    padding: 12px 3px;
    height: auto;
    text-align: center;
  }
  .bl-course__title .text {
    font-size: 1.1875rem;
    --font-size: 19;
    line-height: 1.5263157895;
    letter-spacing: 0.05em;
    text-indent: 0.05em;
  }
  .bl-course__title .text span {
    display: inline-block;
    white-space: nowrap;
  }
  .bl-course__title .text small {
    font-size: 0.8947368421em;
  }
  .bl-course__bg {
    width: 50vw;
    height: 59.07vw;
  }
  .bl-course__image {
    margin-top: 16px;
  }
  .bl-course__description {
    margin-top: 16px;
    margin-bottom: 13.25vw;
  }
  .bl-course__navi {
    margin: 27px 0;
  }
  .bl-course__button {
    margin: 0 auto 14px;
    max-width: 100%;
  }
  .bl-course__button:last-of-type {
    margin-bottom: 0;
  }
}

.bl-course-detail {
  --list-cols: 7;
  margin-bottom: 18px;
}
.bl-course-detail:last-of-type {
  margin-bottom: 0;
}
.bl-course-detail__title {
  display: flex;
  align-items: center;
  background: #EAEAEA;
  font-weight: 700;
  transition: background-color 0.6s;
  cursor: pointer;
}
.bl-course-detail__title .main {
  color: #0C508A;
}
.bl-course-detail__title .sub {
  color: #008DCA;
}
.bl-course-detail__title::after {
  content: "";
  margin-left: 10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #008DCA transparent transparent transparent;
  border-width: 11px 8.7px 0 8.7px;
  transition: transform 0.6s;
}
.bl-course-detail__list {
  display: grid;
  grid-gap: 5px;
}
.bl-course-detail__type, .bl-course-detail__data {
  display: grid;
  place-items: center;
  min-height: 53px;
}
.bl-course-detail__type {
  background: #0C508A;
  color: #fff;
  font-weight: 500;
}
.bl-course-detail__data {
  background: #BDE1F1;
}
.bl-course-detail__data.mod_price {
  color: #f00;
  font-weight: 700;
}
.bl-course-detail__caution {
  font-weight: 500;
  font-size: 0.9375rem;
  --font-size: 15;
  line-height: 1.4666666667;
  padding-top: 0.1px;
  padding-bottom: 0.1px;
  letter-spacing: 0.0253333333em;
}
.bl-course-detail__caution:before, .bl-course-detail__caution:after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}
.bl-course-detail__caution:before {
  margin-top: -0.2333333333em;
}
.bl-course-detail__caution:after {
  margin-bottom: -0.2333333333em;
}
.bl-course-detail__caution a {
  color: #008DCA;
  text-decoration: underline;
}
.bl-course-detail__notes {
  margin-top: 14px;
  font-size: 0.875rem;
  --font-size: 14;
  line-height: 1.5714285714;
  letter-spacing: 0.025em;
}
@media (hover: hover) {
  .bl-course-detail__title {
    transition: background-color 0.3s;
  }
  .bl-course-detail__title:hover {
    background-color: #FFF580;
  }
}
@media print, screen and (min-width: 768.1px) {
  .bl-course-detail__title {
    padding: 16px 5px;
    justify-content: center;
    text-align: center;
  }
  .bl-course-detail__title .text {
    font-size: 1.125rem;
    --font-size: 18;
    line-height: 1.3888888889;
    padding-top: 0.1px;
    padding-bottom: 0.1px;
    letter-spacing: 0.025em;
    text-indent: 0.025em;
  }
  .bl-course-detail__title .text:before, .bl-course-detail__title .text:after {
    content: "";
    display: block;
    height: 0;
    width: 0;
  }
  .bl-course-detail__title .text:before {
    margin-top: -0.1944444444em;
  }
  .bl-course-detail__title .text:after {
    margin-bottom: -0.1944444444em;
  }
  .bl-course-detail__list {
    margin-top: 11px;
    grid-template-columns: repeat(var(--list-cols), 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-auto-flow: column;
    font-size: 1rem;
    --font-size: 16;
    line-height: 1.5;
    letter-spacing: 0.025em;
    text-indent: 0.025em;
  }
  .bl-course-detail__type, .bl-course-detail__data {
    min-height: 55px;
  }
  .bl-course-detail__data.mod_price {
    font-size: 18px;
  }
  .bl-course-detail__caution {
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .bl-course-detail__title {
    padding: 14.5px 17px;
    justify-content: space-between;
  }
  .bl-course-detail__title .text {
    font-size: 1rem;
    --font-size: 16;
    line-height: 1.3125;
    padding-top: 0.1px;
    padding-bottom: 0.1px;
    letter-spacing: 0.025em;
  }
  .bl-course-detail__title .text:before, .bl-course-detail__title .text:after {
    content: "";
    display: block;
    height: 0;
    width: 0;
  }
  .bl-course-detail__title .text:before {
    margin-top: -0.15625em;
  }
  .bl-course-detail__title .text:after {
    margin-bottom: -0.15625em;
  }
  .bl-course-detail__title .sub {
    font-size: 0.9em;
  }
  .bl-course-detail__list {
    margin-top: 11px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(var(--list-cols), 1fr);
    grid-auto-flow: row;
    font-size: 0.9375rem;
    --font-size: 15;
    line-height: 1.3333333333;
    letter-spacing: 0.0253333333em;
    text-indent: 0.0253333333em;
  }
  .bl-course-detail__data.mod_price {
    font-size: 17px;
  }
  .bl-course-detail__caution {
    margin-top: 23px;
  }
}
html.js .bl-course-detail .bl-course-detail__container {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s;
}
html.js .bl-course-detail .bl-course-detail__inner {
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 0.6s;
}
html.js .bl-course-detail.js-open .bl-course-detail__title {
  background-color: #FFEC00;
}
html.js .bl-course-detail.js-open .bl-course-detail__title::after {
  transform: rotate(-180deg);
}
html.js .bl-course-detail.js-open .bl-course-detail__container {
  max-height: 300vw;
}
html.js .bl-course-detail.js-open .bl-course-detail__inner {
  transform: scaleY(1);
}

.bl-course-detail-section {
  margin: 30px auto 0;
}
.bl-course-detail-section__title {
  margin-left: 1em;
  text-indent: -1em;
  font-weight: 500;
  font-size: 0.875rem;
  --font-size: 14;
  line-height: 1.2857142857;
}
.bl-course-detail-section__items {
  margin-left: 1em;
  padding-left: 1em;
  font-size: 0.875rem;
  --font-size: 14;
  line-height: 1.2857142857;
}
.bl-course-detail-section__item {
  margin-top: 0.818em;
  list-style-type: disc;
}
/*# sourceMappingURL=page-courses-fees.css.map */