@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;
  }
}

@media print, screen and (min-width: 768.1px) {
  .bl-header {
    transition: transform 0.5s 0.5s;
  }
  html.js.scroll-top .bl-header {
    transform: translateY(-100%);
  }
  html.js:not(.scroll-top) .bl-header {
    transform: translateY(0);
  }
}
body {
  padding-top: 0;
}

.bl-hero {
  height: 100vh;
  height: 100svh;
}
.bl-hero__slides {
  height: 100%;
  overflow: hidden;
  position: relative;
}
.bl-hero__slides img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.bl-hero__slides > * {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s;
}
.bl-hero__slides > *:first-of-type {
  position: relative;
}
.bl-hero__section {
  position: absolute;
  z-index: 5;
  left: 0;
  bottom: 0;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bl-hero__section::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  background: #003078;
  opacity: 0.6;
}
.bl-hero__title {
  order: 5;
  margin-top: 35px;
}
.bl-hero__title .pro {
  font-weight: 700;
  color: #0C508A;
  background: #FFEC00;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bl-hero__heading1 {
  font-weight: 500;
}
.bl-hero__heading2 {
  font-weight: 900;
}
.bl-hero__scroll {
  margin: 0 auto;
  width: 34px;
  height: 66px;
  border: 1px solid #fff;
  border-radius: 17px;
  position: absolute;
  bottom: 77px;
  left: 245px;
}
.bl-hero__scroll .icon-arrow-down {
  font-size: 13px;
  zoom: 0.5;
  position: absolute;
  left: 0;
  right: 0;
  top: 34px;
  text-align: center;
  -webkit-animation: scroll-down 3s 0s infinite linear;
          animation: scroll-down 3s 0s infinite linear;
}
.bl-hero__state {
  position: absolute;
  z-index: 10;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bl-hero__state .bar {
  margin-bottom: 7px;
  width: 4px;
  height: 56px;
  background: #fff;
  position: relative;
}
.bl-hero__state .bar::after {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  background-color: #FFEC00;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.bl-hero__banner {
  background: #fff;
  display: block;
}
.bl-hero__banner img {
  display: block;
  width: 100%;
  height: 100%;
}
@media print, screen and (min-width: 768.1px) {
  .bl-hero__section {
    padding-left: 77px;
    width: 657px;
    height: 100%;
  }
  .bl-hero__section::after {
    -webkit-clip-path: polygon(0 0, 61.9482496195% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 61.9482496195% 0, 100% 100%, 0 100%);
  }
  .bl-hero__title .pro {
    margin-bottom: 14px;
    width: 369px;
    height: 29px;
    font-size: 1.25rem;
    --font-size: 20;
    line-height: 1;
    letter-spacing: 0.05em;
    text-indent: 0.05em;
  }
  .bl-hero__heading1 {
    font-size: 1.375rem;
    --font-size: 22;
    line-height: 1.6818181818;
    padding-top: 0.1px;
    padding-bottom: 0.1px;
    letter-spacing: 0.025em;
  }
  .bl-hero__heading1:before, .bl-hero__heading1:after {
    content: "";
    display: block;
    height: 0;
    width: 0;
  }
  .bl-hero__heading1:before {
    margin-top: -0.3409090909em;
  }
  .bl-hero__heading1:after {
    margin-bottom: -0.3409090909em;
  }
  .bl-hero__heading2 {
    margin-top: 30px;
    font-size: 1.9375rem;
    --font-size: 31;
    line-height: 1.4193548387;
    padding-top: 0.1px;
    padding-bottom: 0.1px;
    letter-spacing: 0.0748387097em;
  }
  .bl-hero__heading2:before, .bl-hero__heading2:after {
    content: "";
    display: block;
    height: 0;
    width: 0;
  }
  .bl-hero__heading2:before {
    margin-top: -0.2096774194em;
  }
  .bl-hero__heading2:after {
    margin-bottom: -0.2096774194em;
  }
  .bl-hero__state {
    right: 20px;
  }
  .bl-hero__banner {
    position: absolute;
    z-index: 2;
    right: 1.7857142857vw;
    bottom: 3.1428571429vw;
    width: 28.4285714286vw;
    height: 11.2142857143vw;
  }
}
@media (hover: hover) {
  .bl-hero__banner img {
    transition: opacity 0.4s;
    opacity: 1;
  }
  .bl-hero__banner:hover img {
    opacity: 0.5;
  }
}
@media screen and (max-width: 768px) {
  .bl-hero__section {
    padding-top: 30vw;
    height: 108.25vw;
    max-height: 500px;
    aspect-ratio: 400/433;
    width: 100%;
    text-align: center;
    justify-content: flex-start;
  }
  .bl-hero__section::after {
    -webkit-clip-path: polygon(0 0, 100% 29.3302540416vw, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 29.3302540416vw, 100% 100%, 0 100%);
  }
  .bl-hero__title {
    margin: 20px auto 0;
    width: 290px;
  }
  .bl-hero__title .pro {
    margin-bottom: 8px;
    height: 25px;
    width: 100%;
    font-size: 1.0625rem;
    --font-size: 17;
    line-height: 1;
    letter-spacing: 0.05em;
    text-indent: 0.05em;
  }
  .bl-hero__heading1 {
    font-size: 1rem;
    --font-size: 16;
    line-height: 1.625;
    padding-top: 0.1px;
    padding-bottom: 0.1px;
    letter-spacing: 0.025em;
    text-indent: 0.025em;
  }
  .bl-hero__heading1:before, .bl-hero__heading1:after {
    content: "";
    display: block;
    height: 0;
    width: 0;
  }
  .bl-hero__heading1:before {
    margin-top: -0.3125em;
  }
  .bl-hero__heading1:after {
    margin-bottom: -0.3125em;
  }
  .bl-hero__heading2 {
    margin-top: 18px;
    font-size: 1.375rem;
    --font-size: 22;
    line-height: 1.4545454545;
    padding-top: 0.1px;
    padding-bottom: 0.1px;
    letter-spacing: 0.075em;
    text-indent: 0.075em;
  }
  .bl-hero__heading2:before, .bl-hero__heading2:after {
    content: "";
    display: block;
    height: 0;
    width: 0;
  }
  .bl-hero__heading2:before {
    margin-top: -0.2272727273em;
  }
  .bl-hero__heading2:after {
    margin-bottom: -0.2272727273em;
  }
  .bl-hero__state {
    right: 13px;
  }
  .bl-hero__banner {
    margin-bottom: -1px;
    padding-top: 9vw;
    background-color: #0C508A;
  }
  .bl-hero__banner img {
    margin: auto;
    max-width: 80vw;
  }
}

.bl-hero[data-current="1"] .bl-hero__slides > *:nth-of-type(1) {
  opacity: 1;
}
.bl-hero[data-current="1"] .bl-hero__state .n1::after {
  -webkit-animation: hero-state 3s 0s forwards linear;
          animation: hero-state 3s 0s forwards linear;
}
.bl-hero[data-current="2"] .bl-hero__slides > *:nth-of-type(2) {
  opacity: 1;
}
.bl-hero[data-current="2"] .bl-hero__state .n2::after {
  -webkit-animation: hero-state 3s 0s forwards linear;
          animation: hero-state 3s 0s forwards linear;
}
.bl-hero[data-current="3"] .bl-hero__slides > *:nth-of-type(3) {
  opacity: 1;
}
.bl-hero[data-current="3"] .bl-hero__state .n3::after {
  -webkit-animation: hero-state 3s 0s forwards linear;
          animation: hero-state 3s 0s forwards linear;
}

@-webkit-keyframes hero-state {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}

@keyframes hero-state {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}
@-webkit-keyframes scroll-down {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  25% {
    opacity: 1;
    transform: translateY(0);
  }
  75% {
    opacity: 1;
    transform: translateY(40px);
  }
  100% {
    opacity: 0;
    transform: translateY(40px);
  }
}
@keyframes scroll-down {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  25% {
    opacity: 1;
    transform: translateY(0);
  }
  75% {
    opacity: 1;
    transform: translateY(40px);
  }
  100% {
    opacity: 0;
    transform: translateY(40px);
  }
}
.bl-about {
  --c-jaen-color-text: #fff;
  --c-jaen-color-bg: #008DCA;
  --c-more-color-bg-hover: #008DCA;
  color: #fff;
  position: relative;
}
.bl-about__strong {
  margin-top: 42px;
  font-weight: 700;
  font-size: 1.125rem;
  --font-size: 18;
  line-height: 1.6666666667;
  padding-top: 0.1px;
  padding-bottom: 0.1px;
}
.bl-about__strong:before, .bl-about__strong:after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}
.bl-about__strong:before {
  margin-top: -0.3333333333em;
}
.bl-about__strong:after {
  margin-bottom: -0.3333333333em;
}
.bl-about__description {
  margin-top: 30px;
  font-size: 0.9375rem;
  --font-size: 15;
  line-height: 1.8;
  padding-top: 0.1px;
  padding-bottom: 0.1px;
  letter-spacing: 0.0253333333em;
  text-align: justify;
}
.bl-about__description:before, .bl-about__description:after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}
.bl-about__description:before {
  margin-top: -0.4em;
}
.bl-about__description:after {
  margin-bottom: -0.4em;
}
.bl-about__button {
  margin-top: 34px;
}
.bl-about__bg1, .bl-about__bg2 {
  position: absolute;
  z-index: -2;
}
.bl-about__bg1::after, .bl-about__bg2::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
}
.bl-about__bg1 {
  top: 0;
  left: 0;
}
.bl-about__bg1::after {
  background: #0C508A;
}
.bl-about__bg2::after {
  background: #DCDCDC;
}
@media print, screen and (min-width: 768.1px) {
  .bl-about {
    margin: auto;
    width: 980px;
    max-width: 98%;
    min-height: 47.8571428571vw;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
  }
  .bl-about__image {
    margin-right: calc((100vw - 100%) / -2);
    width: 100%;
  }
  .bl-about__image img {
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .bl-about__section {
    padding: 20px 20px 20px 0;
    width: 400px;
    background: rgba(12, 80, 138, 0.5);
  }
  .bl-about__bg1 {
    max-height: 100%;
    width: 907px;
    height: 785px;
    left: calc((100vw - 100%) / -2);
  }
  .bl-about__bg1::after {
    -webkit-clip-path: polygon(0 0, 659px 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 659px 0, 100% 100%, 0 100%);
  }
  .bl-about__bg2 {
    top: 9.6428571429vw;
    left: calc((100vw - 100%) / -2 + 850px);
    width: 100vw;
    height: 1096px;
  }
  .bl-about__bg2::after {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 380px 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 380px 100%);
  }
}
@media screen and (max-width: 768px) {
  .bl-about {
    margin: auto;
    padding: 18.25vw 0 22vw;
    width: 80vw;
  }
  .bl-about::after {
    content: "";
    display: block;
    width: 100vw;
    height: 100%;
    position: absolute;
    z-index: -1;
    left: calc((100vw - 100%) / -2);
    top: 0;
    background: #0C508A;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 31.75vw));
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 31.75vw));
  }
  .bl-about__image {
    margin-top: 28px;
    margin-right: -10vw;
  }
  .bl-about__image img {
    width: 100%;
  }
  .bl-about__strong {
    margin-top: 34px;
  }
  .bl-about__button {
    margin-left: auto;
    margin-right: auto;
  }
  .bl-about__bg1 {
    display: none;
  }
}

.bl-coursefee2__items {
  display: grid;
}
.bl-coursefee2__item {
  position: relative;
}
.bl-coursefee2__item.mod_title {
  grid-column-start: 1;
  grid-column-end: 3;
  aspect-ratio: auto;
  background: #fff;
  padding: 10px 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bl-coursefee2__description {
  margin-top: 47px;
  font-size: 0.9375rem;
  --font-size: 15;
  line-height: 1.8;
  padding-top: 0.1px;
  padding-bottom: 0.1px;
  letter-spacing: 0.0253333333em;
  text-align: justify;
}
.bl-coursefee2__description:before, .bl-coursefee2__description:after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}
.bl-coursefee2__description:before {
  margin-top: -0.4em;
}
.bl-coursefee2__description:after {
  margin-bottom: -0.4em;
}
.bl-coursefee2__section {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 48, 120, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #fff;
  transition: background-color 0.3s;
}
.bl-coursefee2__section.mod_gray {
  background: rgba(102, 102, 102, 0.6);
}
.bl-coursefee2__section.mod_sky {
  background: rgba(255, 236, 0, 0.6);
}
.bl-coursefee2__section.mod_sky .bl-coursefee2__name {
  color: #000;
}
.bl-coursefee2__section.mod_sky .bl-coursefee2__name strong {
  color: #0C508A;
}
.bl-coursefee2__section.mod_sky .bl-coursefee2__more {
  color: #000;
}
.bl-coursefee2__section.mod_sky .bl-coursefee2__more::after {
  border-color: #000;
}
.bl-coursefee2__name {
  font-weight: 700;
  font-size: 1.0625rem;
  --font-size: 17;
  line-height: 1.3529411765;
  padding-top: 0.1px;
  padding-bottom: 0.1px;
  letter-spacing: 0.0252941176em;
  text-indent: 0.0252941176em;
  text-align: center;
}
.bl-coursefee2__name:before, .bl-coursefee2__name:after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}
.bl-coursefee2__name:before {
  margin-top: -0.1764705882em;
}
.bl-coursefee2__name:after {
  margin-bottom: -0.1764705882em;
}
.bl-coursefee2__name strong {
  color: #FFEC00;
}
.bl-coursefee2__name small {
  margin-top: 8px;
  display: block;
  font-weight: 500;
  font-size: 0.875rem;
  --font-size: 14;
  line-height: 1.5714285714;
  padding-top: 0.1px;
  padding-bottom: 0.1px;
  text-align: center;
}
.bl-coursefee2__name small:before, .bl-coursefee2__name small:after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}
.bl-coursefee2__name small:before {
  margin-top: -0.2857142857em;
}
.bl-coursefee2__name small:after {
  margin-bottom: -0.2857142857em;
}
.bl-coursefee2__id {
  margin-top: 10px;
  font-size: 0.8125rem;
  --font-size: 13;
  line-height: 1;
  letter-spacing: 0.0253846154em;
  text-indent: 0.0253846154em;
}
.bl-coursefee2__append {
  font-weight: 700;
  font-size: 1.0625rem;
  --font-size: 17;
  line-height: 1.3529411765;
  letter-spacing: 0.0252941176em;
  text-indent: 0.0252941176em;
  text-align: center;
  color: #fff68c;
}
.bl-coursefee2__append:empty {
  display: none;
}
.bl-coursefee2__more {
  margin-top: 18px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  font-size: 14px;
  position: relative;
}
.bl-coursefee2__more::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  border: 1px solid #fff;
  transition: transform 0.3s;
}
.bl-coursefee2__image {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.bl-coursefee2__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (hover: hover) {
  .bl-coursefee2__section:hover {
    background: rgba(0, 48, 120, 0.8);
  }
  .bl-coursefee2__section:hover .bl-coursefee2__more::after {
    transform: scale(1.2);
  }
  .bl-coursefee2__section:hover.mod_gray {
    background: rgba(102, 102, 102, 0.83);
  }
  .bl-coursefee2__section:hover.mod_sky {
    background: rgba(255, 236, 0, 0.8);
  }
}
@media print, screen and (min-width: 768.1px) {
  .bl-coursefee2 {
    margin-top: 109px;
  }
  .bl-coursefee2__items {
    margin-top: 20px;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 8px;
    grid-row-gap: 8px;
  }
  .bl-coursefee2__item {
    aspect-ratio: 344/250;
  }
  .bl-coursefee2__append {
    margin-top: 11px;
  }
}
.bl-coursefee2__category {
  margin-top: 62px;
}
.bl-coursefee2__category:nth-of-type(1) {
  margin-top: 31px;
}
@media print, screen and (min-width: 768.1px) and (max-width: 1200px) {
  .bl-coursefee2__items {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .bl-coursefee2 {
    padding-bottom: 36.5vw;
    position: relative;
  }
  .bl-coursefee2__bg {
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 0;
    background: #DCDCDC;
    width: 100%;
    height: calc(100% - 25.75vw);
    -webkit-clip-path: polygon(0 0, 100% 31.75vw, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 31.75vw, 100% 100%, 0 100%);
  }
  .bl-coursefee2__items {
    margin-top: 18px;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 7px;
    grid-row-gap: 7px;
  }
  .bl-coursefee2__item {
    aspect-ratio: 196/201;
    text-align: center;
  }
  .bl-coursefee2__item.mod_title {
    padding: 0;
    background: none;
  }
  .bl-coursefee2__description {
    margin: 40px auto 38px;
    width: 80vw;
  }
  .bl-coursefee2__more {
    margin-top: 12px;
  }
  .bl-coursefee2__category {
    margin-top: 40px;
  }
  .bl-coursefee2__category:nth-of-type(1) {
    margin-top: 26px;
  }
  .bl-coursefee2__append {
    margin-top: 7px;
  }
}

@media print, screen and (min-width: 768.1px) {
  .bl-imagecut {
    margin-top: 134px;
    position: relative;
  }
  .bl-imagecut__bg {
    width: 100%;
    height: 512px;
    position: absolute;
    z-index: -1;
    right: 0;
    top: 67px;
  }
  .bl-imagecut__bg::after {
    content: "";
    display: block;
    width: 82.5714285714vw;
    height: 100%;
    top: 0;
    right: calc((100vw - 100%) / -2);
    background: #DCDCDC;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 163px 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 163px 100%);
    position: absolute;
    top: 0;
    right: 0;
  }
}
@media screen and (max-width: 768px) {
  .bl-imagecut__image {
    margin-top: -13vw;
    width: 93.5vw;
  }
  .bl-imagecut__image img {
    width: 100%;
  }
}

.bl-schedule-banner {
  --c-jaen-color-bg: #008DCA;
  margin: auto;
  background: #0C508A;
}
.bl-schedule-banner__image img {
  width: 100%;
}
.bl-schedule-banner__section {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bl-schedule-banner__title .ja {
  color: #FFEC00;
}
.bl-schedule-banner__title .en {
  color: #fff;
}
.bl-schedule-banner__description {
  color: #fff;
}
.bl-schedule-banner__button .text {
  font-style: normal;
}
.bl-schedule-banner__button .icon {
  font-size: 18px;
}
.bl-schedule-banner__button::after {
  background-color: #008DCA;
}
@media print, screen and (min-width: 768.1px) {
  .bl-schedule-banner {
    margin-top: 85px;
    width: 786px;
    max-width: 98%;
    display: flex;
    justify-content: center;
  }
  .bl-schedule-banner__image {
    width: 47.4554707379%;
  }
  .bl-schedule-banner__section {
    padding: 5px 40px 5px 44px;
    width: 52.5445292621%;
  }
  .bl-schedule-banner__title .ja {
    line-height: 39px;
  }
  .bl-schedule-banner__description {
    margin-top: 19px;
    font-size: 0.9375rem;
    --font-size: 15;
    line-height: 1.6666666667;
    padding-top: 0.1px;
    padding-bottom: 0.1px;
    letter-spacing: 0.0253333333em;
  }
  .bl-schedule-banner__description:before, .bl-schedule-banner__description:after {
    content: "";
    display: block;
    height: 0;
    width: 0;
  }
  .bl-schedule-banner__description:before {
    margin-top: -0.3333333333em;
  }
  .bl-schedule-banner__description:after {
    margin-bottom: -0.3333333333em;
  }
  .bl-schedule-banner__button {
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .bl-schedule-banner {
    margin-top: 7.5vw;
    margin-bottom: 15vw;
    width: 80vw;
  }
  .bl-schedule-banner__section {
    padding: 8.75vw 5.75vw 10vw;
  }
  .bl-schedule-banner__title .ja {
    line-height: 1.15625;
  }
  .bl-schedule-banner__description {
    margin-top: 24px;
    font-size: 0.875rem;
    --font-size: 14;
    line-height: 1.7857142857;
    padding-top: 0.1px;
    padding-bottom: 0.1px;
    letter-spacing: 0.025em;
  }
  .bl-schedule-banner__description:before, .bl-schedule-banner__description:after {
    content: "";
    display: block;
    height: 0;
    width: 0;
  }
  .bl-schedule-banner__description:before {
    margin-top: -0.3928571429em;
  }
  .bl-schedule-banner__description:after {
    margin-bottom: -0.3928571429em;
  }
  .bl-schedule-banner__button {
    margin: 24px auto 0;
    width: 210px;
    max-width: 100%;
  }
}

.bl-topics {
  --c-jaen-color-bg: #0C508A;
  margin: auto;
  position: relative;
}
.bl-topics__title {
  color: #fff;
}
.bl-topics__bg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: calc((100vw - 100%) / -2);
  width: 100vw;
  height: 100%;
}
.bl-topics__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #008DCA;
  display: block;
  height: 100%;
}
.bl-topics__item:nth-of-type(n+2) {
  border-top: 2px solid #0C508A;
}
@media print, screen and (min-width: 768.1px) {
  .bl-topics {
    margin-top: 130px;
    padding: 60px 0 58px;
    width: 610px;
  }
  .bl-topics__bg::after {
    width: 65.8571428571vw;
    -webkit-clip-path: polygon(0 0, calc(100% - 140px) 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, calc(100% - 140px) 0, 100% 100%, 0 100%);
  }
  .bl-topics__items {
    margin-top: 34px;
  }
  .bl-topics__more {
    margin-top: 28px;
    margin-left: auto;
  }
}
@media screen and (max-width: 768px) {
  .bl-topics {
    padding: 20vw 0 13.75vw;
    width: 80vw;
  }
  .bl-topics__bg::after {
    width: 100vw;
    -webkit-clip-path: polygon(0 0, 50% 0, 100% 15.75vw, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 50% 0, 100% 15.75vw, 100% 100%, 0 100%);
  }
  .bl-topics__items {
    margin-top: 29px;
  }
  .bl-topics__item:nth-of-type(n+2) {
    border-top-color: transparent;
  }
  .bl-topics__more {
    margin: 25px auto 0;
  }
}

.el-topic {
  padding: 0 0 0 23px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  transition: background-color 0.3s;
}
.el-topic .date {
  width: 110px;
  color: #0C508A;
  font-style: italic;
  font-weight: 500;
  font-size: 1rem;
  --font-size: 16;
}
.el-topic .title {
  font-weight: 500;
  font-size: 0.9375rem;
  --font-size: 15;
  line-height: 1;
  letter-spacing: 0.0253333333em;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  transition: color 0.3s;
  width: calc(100% - 23px - 110px - 26px);
}
.el-topic .arrow {
  height: 100%;
  background: #ededed;
  color: #0C508A;
  font-size: 14px;
  width: 26px;
  display: grid;
  place-items: center;
  transition: background-color 0.3s;
}
@media (hover: hover) {
  .el-topic:hover {
    background-color: #FFEC00;
  }
  .el-topic:hover .title {
    color: #0C508A;
  }
  .el-topic:hover .arrow {
    background: #FFEC00;
  }
}
@media screen and (max-width: 768px) {
  .el-topic {
    padding: 0 38px 0 18px;
    flex-direction: column;
    justify-content: center;
    position: relative;
  }
  .el-topic .date {
    width: 100%;
  }
  .el-topic .title {
    margin-top: 4px;
    width: 100%;
  }
  .el-topic .arrow {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
  }
}

.bl-instagram {
  margin: auto;
  position: relative;
}
.bl-instagram__contents #sb_instagram .sb_instagram_header {
  display: none;
}
.bl-instagram__contents #sb_instagram #sbi_load {
  display: none;
}
.bl-instagram__contents #sb_instagram #sbi_images {
  margin: -6px auto;
  padding: 0 !important;
}
.bl-instagram__contents #sb_instagram #sbi_images .sbi_item {
  padding: 6px !important;
}
.bl-instagram__contents #sb_instagram .sbi_photo {
  position: relative;
}
.bl-instagram__contents #sb_instagram .sbi_photo::after {
  content: "VIEW MORE";
  font-family: "Tomorrow", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 19px;
  color: #FFEC00;
  display: grid;
  place-items: center;
  position: absolute;
  z-index: 1;
  background: rgba(0, 48, 120, 0.8);
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .bl-instagram__contents #sb_instagram .sbi_photo:hover::after {
    opacity: 1;
  }
}
.bl-instagram__more {
  margin: auto;
}
@media print, screen and (min-width: 768.1px) {
  .bl-instagram {
    margin-top: 90px;
    padding-top: 36px;
    width: 980px;
    max-width: 98%;
    min-height: 443px;
  }
  .bl-instagram__bg {
    position: absolute;
    top: 0;
    right: calc((100vw - 100%) / -2);
    height: 100%;
    width: calc(50% + (100vw - 100%) / 2);
  }
  .bl-instagram__bg::after {
    content: "";
    display: block;
    background: #DCDCDC;
    height: 100%;
    width: calc(100% - 85px);
    position: absolute;
    right: 0;
    top: 0;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 141px 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 141px 100%);
  }
  .bl-instagram__contents {
    margin-top: 28px;
  }
  .bl-instagram__more {
    margin-top: 34px;
  }
}
@media screen and (max-width: 768px) {
  .bl-instagram {
    margin-top: 20.5vw;
    width: 80vw;
  }
  .bl-instagram__contents {
    margin-top: 25px;
  }
  .bl-instagram__more {
    margin-top: 34px;
  }
}

html.js:not(.out-of-firstview) .bl-sidebar {
  transform: translateX(125px);
}

.bl-sidebar {
  transition: transform 0.6s;
}

.bl-calendar {
  margin: auto;
  max-width: 100%;
}
.bl-calendar__wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}
.bl-calendar__title {
  margin-bottom: 20px;
  text-align: center;
}
.bl-calendar .c-more {
  margin: 0 10px 8px;
  width: 120px;
}
@media print, screen and (min-width: 768.1px) {
  .bl-calendar {
    margin-top: 30px;
    width: 980px;
  }
  .bl-calendar__wrap {
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .bl-calendar {
    margin: 0 auto 15vw;
    width: 80vw;
  }
  .bl-calendar__wrap {
    justify-content: center;
  }
}

.bl-related-services {
  --c-jaen-color-bg: #008DCA;
  --c-more-color-bg-hover: #008DCA;
  margin: auto;
  position: relative;
  z-index: 0;
}
.bl-related-services__title {
  color: #fff;
}
.bl-related-services__bg {
  width: 300vw;
  height: 100%;
  background: #DCDCDC;
  position: absolute;
  z-index: -2;
  top: 0;
  left: -100vw;
}
.bl-related-services__bg2 {
  position: absolute;
  z-index: -1;
  top: 0;
  left: calc((100vw - 100%) / -2);
  width: 100vw;
  height: 100%;
}
.bl-related-services__bg2::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #0C508A;
  display: block;
  height: 100%;
}
.bl-related-services__item {
  background: #fff;
}
.bl-related-services__item-title :is(a, picture) {
  display: block;
}
.bl-related-services__item-title img {
  width: 100%;
}
.bl-related-services__item-description {
  font-size: 0.9375rem;
  --font-size: 15;
  line-height: 1.8;
  padding-top: 0.1px;
  padding-bottom: 0.1px;
  letter-spacing: 0.0253333333em;
  color: #35416A;
  text-align: justify;
}
.bl-related-services__item-description:before, .bl-related-services__item-description:after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}
.bl-related-services__item-description:before {
  margin-top: -0.4em;
}
.bl-related-services__item-description:after {
  margin-bottom: -0.4em;
}
.bl-related-services__item-button {
  margin-left: auto;
  margin-right: auto;
}
.bl-related-services__item-button .icon {
  font-size: 13px;
}
@media print, screen and (min-width: 768.1px) {
  .bl-related-services {
    margin-top: 144px;
    padding: 68px 10px 52px;
    width: 1000px;
    max-width: 98%;
  }
  .bl-related-services__bg2::after {
    width: 58.2142857143vw;
    -webkit-clip-path: polygon(0 0, calc(100% - 241px) 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, calc(100% - 241px) 0, 100% 100%, 0 100%);
  }
  .bl-related-services__items {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    gap: 4px;
  }
  .bl-related-services__item {
    padding: 28px 5.5102040816% 33px;
    width: 50%;
  }
  .bl-related-services__item:first-of-type .bl-related-services__item-title {
    padding-bottom: 3px;
  }
  .bl-related-services__item-description {
    margin-top: 21px;
  }
  .bl-related-services__item-button {
    margin-top: 35px;
  }
}
@media screen and (max-width: 768px) {
  .bl-related-services {
    margin-top: 21.875vw;
    padding: 57px 0 16.25vw;
    width: 80vw;
  }
  .bl-related-services__bg2::after {
    width: 100vw;
    height: 57.5%;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 26.25vw), 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% calc(100% - 26.25vw), 0 100%);
  }
  .bl-related-services__items {
    margin-top: 10.25vw;
  }
  .bl-related-services__item {
    margin-top: 9.75vw;
    padding-bottom: 7vw;
  }
  .bl-related-services__item-description {
    margin: 17px auto 0;
    width: 68vw;
  }
  .bl-related-services__item-button {
    margin-top: 27px;
  }
}

@media print, screen and (min-width: 768.1px) {
  body .bl-telme {
    margin-top: 0;
    border-top: 0;
  }
}
/*# sourceMappingURL=page-index.css.map */