@charset "UTF-8";
/* 各種設定 */
/* 色の変数 */
/**
 * 他で使用する色
 */
/*
 * 優先して読み込まれるCSSに base/__structure.scss を含むかどうか
 * true : atf.scss に import されます
 * false: common.scss に import されます
 * ※ .pc-block, .sp-block 等、レスポンシブ時の表示非表示に関するCSSを含むため、trueにするとリフローが発生しなくなります。
 */
/*
 * Gutenbergエディタで作成されたコンテンツを表示するCSSを常に読み込むか
 * ・minifyしても80kbほどある（gzipで圧縮転送で 11kb程度）
 * ・falseにした場合、"投稿" コンテンツを表示する際のみ読み込まれる @ single-post.scss
 */
/*
 * 属性セレクタの指定
 */
/*
 * スクロールバーの指定
 */
/* 色の変数 */
/**
 * 他で使用する色
 */
/**
 * スマートフォンに切り替わる際の幅を指定します。
 * この幅を元に一部の @mixin が動作します。
 */
/**
 * Illustrator / Photoshop 等での想定された画面幅を指定する箇所です。
 * この幅を元に vw 系のサイズ指定をする @function が存在します。
 */
/* フォントの変数 */
/* ユーザー投稿関連の設定 (.user_contents 内の変数群) */
/* 各種設定 */
/* 色の変数 */
/**
 * 他で使用する色
 */
/*
 * 優先して読み込まれるCSSに base/__structure.scss を含むかどうか
 * true : atf.scss に import されます
 * false: common.scss に import されます
 * ※ .pc-block, .sp-block 等、レスポンシブ時の表示非表示に関するCSSを含むため、trueにするとリフローが発生しなくなります。
 */
/*
 * Gutenbergエディタで作成されたコンテンツを表示するCSSを常に読み込むか
 * ・minifyしても80kbほどある（gzipで圧縮転送で 11kb程度）
 * ・falseにした場合、"投稿" コンテンツを表示する際のみ読み込まれる @ single-post.scss
 */
/*
 * 属性セレクタの指定
 */
/*
 * スクロールバーの指定
 */
/* 色の変数 */
/**
 * 他で使用する色
 */
/**
 * スマートフォンに切り替わる際の幅を指定します。
 * この幅を元に一部の @mixin が動作します。
 */
/**
 * Illustrator / Photoshop 等での想定された画面幅を指定する箇所です。
 * この幅を元に vw 系のサイズ指定をする @function が存在します。
 */
/* フォントの変数 */
/* ユーザー投稿関連の設定 (.user_contents 内の変数群) */
/* 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 $design-width-sp
 */
/**
 * パソコン用デザイン上でのピクセル数を指定すると、vw換算での値を返す
 * @require $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;
}
*/
/*
【2020/9/12更新】

※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-smartphone)
  dl,dt,dd で2列の表を作るのを簡単にする。
  $dt-width を指定すると、残り幅を dd の幅に割り当てる。
  $breakpoint になると、1列の表に戻す。



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

@include on-sp{
  【 CSSを記述 】
}
  $width-smartphone の値を元に @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列にする際の幅　既定値はスマホの幅
 */
/**
 * input要素のうちテキストボックス型にCSSをまとめて適用
 */
/**
 * input要素の日付関連のみCSSをまとめて適用
 */
/**
 * input要素およびbutton要素のみCSSをまとめて適用
 */
/*
JavaScriptが無効な場合に適用するCSSを記述する
ex)
  .caution{
    @include no-js(){
      color: red;
    }
  }
*/
/* 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 $design-width-sp
 */
/**
 * パソコン用デザイン上でのピクセル数を指定すると、vw換算での値を返す
 * @require $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;
}
*/
/* 各種設定 */
/* 色の変数 */
/**
 * 他で使用する色
 */
/*
 * 優先して読み込まれるCSSに base/__structure.scss を含むかどうか
 * true : atf.scss に import されます
 * false: common.scss に import されます
 * ※ .pc-block, .sp-block 等、レスポンシブ時の表示非表示に関するCSSを含むため、trueにするとリフローが発生しなくなります。
 */
/*
 * Gutenbergエディタで作成されたコンテンツを表示するCSSを常に読み込むか
 * ・minifyしても80kbほどある（gzipで圧縮転送で 11kb程度）
 * ・falseにした場合、"投稿" コンテンツを表示する際のみ読み込まれる @ single-post.scss
 */
/*
 * 属性セレクタの指定
 */
/*
 * スクロールバーの指定
 */
/* 色の変数 */
/**
 * 他で使用する色
 */
/**
 * スマートフォンに切り替わる際の幅を指定します。
 * この幅を元に一部の @mixin が動作します。
 */
/**
 * Illustrator / Photoshop 等での想定された画面幅を指定する箇所です。
 * この幅を元に vw 系のサイズ指定をする @function が存在します。
 */
/* フォントの変数 */
/* ユーザー投稿関連の設定 (.user_contents 内の変数群) */
/*
ゴシック体にしたい場合
  @extend %sans-serif;
明朝体にしたい場合
  @extend %serif;

変数指定だととても長くなるため、CSSのサイズ縮小用
*/
/* 各種設定 */
/* 色の変数 */
/**
 * 他で使用する色
 */
/*
 * 優先して読み込まれるCSSに base/__structure.scss を含むかどうか
 * true : atf.scss に import されます
 * false: common.scss に import されます
 * ※ .pc-block, .sp-block 等、レスポンシブ時の表示非表示に関するCSSを含むため、trueにするとリフローが発生しなくなります。
 */
/*
 * Gutenbergエディタで作成されたコンテンツを表示するCSSを常に読み込むか
 * ・minifyしても80kbほどある（gzipで圧縮転送で 11kb程度）
 * ・falseにした場合、"投稿" コンテンツを表示する際のみ読み込まれる @ single-post.scss
 */
/*
 * 属性セレクタの指定
 */
/*
 * スクロールバーの指定
 */
/* 色の変数 */
/**
 * 他で使用する色
 */
/**
 * スマートフォンに切り替わる際の幅を指定します。
 * この幅を元に一部の @mixin が動作します。
 */
/**
 * Illustrator / Photoshop 等での想定された画面幅を指定する箇所です。
 * この幅を元に vw 系のサイズ指定をする @function が存在します。
 */
/* フォントの変数 */
/* ユーザー投稿関連の設定 (.user_contents 内の変数群) */
body .el_common--eyecatch .dialog {
  left: 104%;
}
body .el_common--object-right {
  max-height: 115px;
}

.bl_schoolmap {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  background: #45AFE1 url(../../images/202104/mirai/v3/wave.png) repeat-x center center/contain;
  overflow: hidden;
  max-width: 100vw;
  padding-bottom: 130px;
}
.bl_schoolmap--base {
  position: absolute;
  top: 0;
  left: 0;
}
.bl_schoolmap--frame {
  padding-top: 55px;
  width: 898px;
  max-width: 100%;
  position: relative;
}
.bl_schoolmap--inner {
  display: block;
  width: 100%;
  height: 0;
  padding-top: 98.6636971047%;
  position: relative;
}
.bl_schoolmap--fukidashi {
  display: block;
  width: 46.7706013363%;
  height: 31.151241535%;
  position: absolute;
  left: 0%;
  top: 13%;
  z-index: 1;
}
.bl_schoolmap--pin {
  display: block;
  position: absolute;
  z-index: 5;
  width: auto;
  height: 5.8690744921%;
  animation: pin-pyoco 3s 0s infinite;
}
.bl_schoolmap--pin img {
  height: 100%;
  width: auto;
}
@keyframes pin-pyoco {
  0% {
    transform: translate(0, 0);
  }
  4% {
    transform: translate(0, -20%);
  }
  8% {
    transform: translate(0, 0);
  }
  12% {
    transform: translate(0, -22%);
  }
  16% {
    transform: translate(0, 0);
  }
}
@media (max-width: 768px) {
  .bl_schoolmap {
    padding-top: 11.4666666667vw;
    padding-bottom: 20vw;
    background-image: url(../../images/202104/mirai/v3/sp/wave.png);
    background-size: 70%;
    background-repeat: no-repeat;
    background-position: center 80%;
  }
  .bl_schoolmap--title {
    width: 68vw;
  }
  .bl_schoolmap--frame {
    padding-top: 17.3333333333vw;
    width: 88.2666666667vw;
  }
  .bl_schoolmap--fukidashi {
    top: -7%;
    width: 46.1333333333vw;
    height: 42.5333333333vw;
  }
  .bl_schoolmap--pin {
    width: 20%;
    height: 16.3522012579%;
  }
}

.bl_popup {
  background: #2861CC;
  padding: 8px;
  width: 990px;
  max-width: 95vw;
  margin: auto;
  position: absolute;
  z-index: 10;
  top: 0;
  right: -100%;
  left: -100%;
  transform: translateX(100vw);
  overflow-x: auto;
  border-radius: 12px;
  scrollbar-color: #888 #ddd;
}
.bl_popup::-webkit-scrollbar {
  height: 8px;
}
.bl_popup::-webkit-scrollbar-thumb {
  background-color: #888;
}
.bl_popup::-webkit-scrollbar-track {
  background-color: #ddd;
}
.bl_popup--items {
  width: 100%;
  position: relative;
}
.bl_popup--item:target .bl_popup,
.bl_popup--item:target .bl_popup--close {
  transform: translateX(0);
  transition: 1.2s;
}
.bl_popup--item:target.state-closing .bl_popup,
.bl_popup--item:target.state-closing .bl_popup--close {
  transform: translateX(-100vw);
  transition: 1.2s;
}
.bl_popup--wrap {
  margin-top: -100px;
  padding-top: 100px;
}
.bl_popup--close {
  position: absolute;
  z-index: 9999999;
  top: 0;
  right: 0;
  padding: 15px;
  cursor: pointer;
  transform: translateX(100vw);
}
.bl_popup--row {
  position: relative;
}
.bl_popup--layout-top, .bl_popup--layout-bottom {
  display: flex;
  justify-content: space-between;
  padding: 36px 5.8585858586%;
}
.bl_popup--layout-bottom {
  background: #fff;
  color: #2861CC;
}
.bl_popup--layout-bottom-left {
  width: 65.6851642129%;
}
.bl_popup--layout-bottom-right {
  width: 25.3680634202%;
}
.bl_popup--header {
  color: #fff;
}
.bl_popup--header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bl_popup--selfie {
  border-radius: 50%;
  border: solid 4px #fff;
  width: 178px;
  height: 178px;
  margin-right: 15px;
}
.bl_popup--title {
  align-self: flex-end;
}
.bl_popup--position {
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 700;
  white-space: nowrap;
}
.bl_popup--name {
  margin-top: 23px;
  font-size: 2.375rem;
  line-height: 1;
  font-weight: 900;
  white-space: nowrap;
}
.bl_popup--name small {
  font-size: 1.0625rem;
  line-height: 2.2352941176;
  margin-left: 5px;
}
.bl_popup--namep {
  margin-top: 10px;
  font-size: 1.0625rem;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 15px;
}
.bl_popup--role {
  margin-top: 32px;
  padding-top: 14px;
  border-top: solid 1px #fff;
  font-weight: 700;
  font-size: 1.4375rem;
  line-height: 1.5217391304;
  letter-spacing: 0.1em;
  white-space: pre-line;
}
.bl_popup--role:before, .bl_popup--role:after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}
.bl_popup--role:before {
  margin-top: -0.2608695652em;
}
.bl_popup--role:after {
  margin-bottom: -0.2608695652em;
}
.bl_popup--movie {
  width: 39.5277207392%;
}
.bl_popup--cross {
  align-self: center;
}
.bl_popup--photo {
  margin-top: 27px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .bl_popup {
    padding: 18.2666666667vw 0 0;
    position: fixed;
    top: 0;
    z-index: 9999999;
    overflow: auto;
    width: 100%;
    max-width: none;
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .bl_popup .sp-inner {
    width: 82.4vw;
    margin-left: auto;
    margin-right: auto;
  }
  .bl_popup--wrap {
    position: relative;
  }
  .bl_popup--row {
    flex-direction: column-reverse;
    width: auto;
    position: static;
  }
  .bl_popup--movie {
    width: 100%;
  }
  .bl_popup--close {
    position: fixed;
    top: 0;
    right: 0;
    padding: 6vw 5.3333333333vw;
  }
  .bl_popup--close img {
    width: 8vw;
    height: 8vw;
  }
  .bl_popup--layout-top, .bl_popup--layout-bottom {
    flex-flow: column nowrap;
    padding: 0;
  }
  .bl_popup--layout-top {
    width: 84vw;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 11.4666666667vw;
  }
  .bl_popup--layout-bottom {
    padding: 8vw;
  }
  .bl_popup--layout-bottom-left, .bl_popup--layout-bottom-right {
    width: 100%;
  }
  .bl_popup--header-row {
    flex-flow: column nowrap;
  }
  .bl_popup--selfie {
    margin: auto;
    width: 57.3333333333vw;
    height: 57.3333333333vw;
    border-width: 1.3333333333vw;
  }
  .bl_popup--title {
    align-self: center;
    text-align: center;
    width: 100%;
  }
  .bl_popup--position {
    margin-top: 2.6666666667vw;
    font-size: 3.4666666667vw;
  }
  .bl_popup--name {
    margin-top: 3.0666666667vw;
    padding-top: 3.4666666667vw;
    border-top: solid 0.4vw #fff;
  }
  .bl_popup--name,
.bl_popup--name small {
    font-size: 7.0666666667vw;
    line-height: 1;
  }
  .bl_popup--namep {
    margin-top: 1.8666666667vw;
    font-size: 3.4666666667vw;
    color: #C0C5E3;
  }
  .bl_popup--role {
    margin-top: 5.6vw;
    border-top: 0;
    padding-top: 0;
    font-size: 4.2666666667vw;
    letter-spacing: 0.2133333333vw;
    text-align: center;
  }
}

.bl_profile--heading {
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 700;
}
.bl_profile--data {
  margin-top: 23px;
  font-size: 1rem;
  line-height: 1.375;
  letter-spacing: 0.1em;
  overflow: hidden;
}
.bl_profile--datatype, .bl_profile--datavalue {
  padding: 4px 0;
  float: left;
}
.bl_profile--datatype {
  clear: both;
  font-weight: 700;
}
.bl_profile--datatype:before {
  content: "●";
}
.bl_profile--datatype:after {
  content: "：";
}
.bl_profile--description {
  margin-top: 26px;
  font-size: 0.9375rem;
  line-height: 1.9333333333;
  color: #000;
  font-weight: 500;
  text-align: justify;
  text-justify: inter-ideograph;
  white-space: pre-line;
}
.bl_profile--description:before, .bl_profile--description:after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}
.bl_profile--description:before {
  margin-top: -0.4666666667em;
}
.bl_profile--description:after {
  margin-bottom: -0.4666666667em;
}
@media (max-width: 768px) {
  .bl_profile--data {
    margin-top: 4.5333333333vw;
    font-size: 3.4666666667vw;
  }
  .bl_profile--description {
    margin-top: 7.7333333333vw;
    font-size: 3.4666666667vw;
    font-weight: 700;
  }
}

.bl_photo--items {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  height: 100%;
}
.bl_photo--item {
  margin: 6.5px 0;
}
@media (max-width: 768px) {
  .bl_photo {
    margin-top: 4.0666666667vw;
  }
  .bl_photo--item {
    margin-top: 3vw;
    margin-bottom: 0;
  }
  .bl_photo--item img {
    width: 100%;
  }
}

.bl_movie {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
}
.bl_movie--inner {
  margin: auto;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
}
.bl_movie--link {
  display: block;
}
.bl_movie--button {
  margin-top: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 43px;
  border-radius: 18px;
  background: #fff;
  color: #2861cc;
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
  font-weight: 900;
}
.bl_movie--preview {
  position: relative;
  z-index: 0;
}
.bl_movie--preview img {
  display: block;
  border: solid 3px #000;
  border-radius: 9px;
}
.bl_movie--footer {
  margin-top: 32px;
}
@media (max-width: 768px) {
  .bl_movie--inner {
    width: auto;
    position: relative;
    z-index: 1;
  }
  .bl_movie--preview img {
    width: 100%;
    border-radius: 2.6666666667vw;
  }
  .bl_movie--preview:after {
    width: 7.52vw;
    height: 12.444vw;
  }
  .bl_movie--title {
    margin-top: 9.6vw;
  }
  .bl_movie--link {
    margin-top: 7.2vw;
  }
  .bl_movie--footer {
    margin: 6.2666666667vw auto 0;
  }
  .bl_movie--button {
    margin-top: 5.6vw;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4.2666666667vw;
    letter-spacing: 0.2133333333vw;
    text-indent: 0.2133333333vw;
    height: 13.3333333333vw;
    border-radius: 2.4vw;
    border-radius: 6.6666666667vw;
  }
}

.bl_coming {
  margin: 30px auto 0;
  width: 274px;
  height: 160px;
  border: solid #E1E100 4px;
  border-radius: 10px;
  color: #E1E100;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bl_coming--schedule {
  font-size: 1.875rem;
  line-height: 1.1;
  font-weight: 900;
}
.bl_coming--schedule:before, .bl_coming--schedule:after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}
.bl_coming--schedule:before {
  margin-top: -0.05em;
}
.bl_coming--schedule:after {
  margin-bottom: -0.05em;
}
@media (max-width: 768px) {
  .bl_coming {
    width: 73.3333333333vw;
  }
  .bl_coming--schedule {
    font-size: 8vw;
  }
  .bl_coming--soon {
    font-size: 6.1333333333vw;
  }
}

.bl_award, .bl_place {
  margin: auto;
  width: 860px;
  max-width: 98%;
}
.bl_award--wrap {
  background: #45AFE1;
}
.bl_award--title, .bl_place--title {
  color: #fff;
  font-size: 1.625rem;
  line-height: 2.1538461538;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  border: solid 3px #fff;
  font-weight: 900;
  text-align: center;
}
.bl_award--description {
  margin-top: 22px;
  font-size: 1.375rem;
  line-height: 1.5;
  font-weight: 900;
}
.bl_award--description:before, .bl_award--description:after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}
.bl_award--description:before {
  margin-top: -0.25em;
}
.bl_award--description:after {
  margin-bottom: -0.25em;
}
.bl_award--items {
  margin-top: 82px;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.bl_award--item {
  width: 46.511627907%;
  padding-bottom: 67px;
  margin-bottom: 67px;
  position: relative;
}
.bl_award--item:after {
  content: "";
  display: block;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 64%;
  height: 1px;
  background-color: #1C5B76;
  position: absolute;
}
@media (max-width: 768px) {
  .bl_award, .bl_place {
    padding-top: 18.6666666667vw;
    padding-bottom: 1px;
    width: 83.6vw;
    max-width: 100%;
  }
  .bl_award--title, .bl_place--title {
    font-size: 5.3333333333vw;
    border-radius: 0.8vw;
    border-width: 0.8vw;
  }
  .bl_award--description {
    margin-top: 1em;
    font-size: 4vw;
    line-height: 5.6vw;
  }
  .bl_award--items {
    margin-top: 0;
  }
  .bl_award--item {
    width: 100%;
    margin-top: 0;
  }
}

.el_award {
  margin-top: 68px;
  position: relative;
}
.el_award--image {
  position: relative;
}
.el_award--image1 {
  display: block;
  margin: auto;
  width: 67.4418604651%;
  border-radius: 10px;
  overflow: hidden;
}
.el_award--image2 {
  width: 44.4186046512%;
  position: absolute;
  top: -30px;
  left: -7.6744186047%;
}
.el_award:nth-of-type(1) {
  margin-top: 150px;
}
.el_award:nth-of-type(2n+1) .el_award--image1 {
  order: 10;
  margin-right: 0;
  margin-left: auto;
}
.el_award:nth-of-type(2n) .el_award--image1 {
  margin-right: auto;
  margin-left: 0;
}
.el_award:nth-of-type(2n) .el_award--image2 {
  right: -7.6744186047%;
  left: auto;
}
.el_award--content {
  text-align: center;
}
.el_award--theme {
  margin-top: 25px;
  color: #fff;
  position: relative;
  z-index: 0;
}
.el_award--theme span {
  display: inline-block;
  background-color: #45AFE1;
  padding: 0 1em;
  position: relative;
  z-index: 1;
}
.el_award--theme:after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 0;
}
.el_award--title {
  margin-top: 25px;
  color: #fff;
  font-size: 2.5rem;
  line-height: 1.42625;
  font-weight: 900;
  white-space: pre-line;
}
.el_award--title:before, .el_award--title:after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}
.el_award--title:before {
  margin-top: -0.213125em;
}
.el_award--title:after {
  margin-bottom: -0.213125em;
}
.el_award--nickname {
  margin-top: 25px;
  font-size: 1.4375rem;
  line-height: 1;
}
.el_award--profile {
  margin-top: 25px;
  font-size: 1.625rem;
  line-height: 1.5384615385;
  font-weight: 900;
  white-space: pre-line;
  display: inline-block;
  border-bottom: solid 1px #1C5B76;
  padding-bottom: 39px;
}
.el_award--profile:before, .el_award--profile:after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}
.el_award--profile:before {
  margin-top: -0.2692307692em;
}
.el_award--profile:after {
  margin-bottom: -0.2692307692em;
}
.el_award--profile .kana {
  font-weight: 500;
}
@media (max-width: 768px) {
  .el_award {
    margin-top: 0 !important;
    margin-left: calc((100% - 100vw) / 2);
    margin-right: calc((100% - 100vw) / 2);
    width: auto !important;
    max-width: none;
  }
  .el_award--image {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
  }
  .el_award--image1 {
    order: 2 !important;
    width: 100%;
    border-radius: 0;
  }
  .el_award--image2 {
    order: 1 !important;
    width: 74vw;
    height: 66.8666666667vw;
    position: static;
    transform: translateY(9.371884347%);
  }
  .el_award--content {
    margin: auto;
    width: 77.3333333333vw;
  }
  .el_award--theme {
    margin-top: 5.2vw;
    font-size: 3.4666666667vw;
  }
  .el_award--title {
    margin-top: 5.2vw;
    font-size: 5.6vw;
  }
  .el_award--nickname {
    margin-top: 3.0666666667vw;
    font-size: 3.4666666667vw;
  }
  .el_award--profile {
    margin-top: 3.0666666667vw;
    font-size: 4vw;
    margin-bottom: 10.2666666667vw;
    padding-bottom: 10.2666666667vw;
  }
}

.el_award2--image {
  margin-top: 25px;
  overflow: hidden;
  border-radius: 6px;
  display: block;
}
.el_award2--content {
  text-align: center;
  background: url(../../images/202104/mirai/v5/title-outer.svg) no-repeat center center/contain;
  height: 192px;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
}
.el_award2--theme {
  font-size: 1.5625rem;
  line-height: 1.3372;
  white-space: pre-line;
}
.el_award2--theme:before, .el_award2--theme:after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}
.el_award2--theme:before {
  margin-top: -0.1686em;
}
.el_award2--theme:after {
  margin-bottom: -0.1686em;
}
.el_award2--title {
  order: -1;
  width: 75%;
  font-size: 1.9375rem;
  line-height: 1;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: solid 2px #fff;
}
.el_award2--profile {
  margin-top: 20px;
  color: #221714;
  font-size: 1.125rem;
  line-height: 1.2916666667;
  white-space: pre-line;
}
.el_award2--profile:before, .el_award2--profile:after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}
.el_award2--profile:before {
  margin-top: -0.1458333333em;
}
.el_award2--profile:after {
  margin-bottom: -0.1458333333em;
}
@media (max-width: 768px) {
  .el_award2--content {
    height: 36.9333333333vw;
  }
  .el_award2--theme {
    font-size: 4.8vw;
  }
  .el_award2--title {
    font-size: 6vw;
    margin-bottom: 2.9333333333vw;
    padding-bottom: 2.9333333333vw;
  }
  .el_award2--profile {
    margin-top: 3.3333333333vw;
    font-size: 3.7333333333vw;
  }
}

.bl_inquiry--title {
  font-weight: 900;
  font-size: 1.375rem;
  line-height: 1;
}
.bl_inquiry--row {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border: solid 1px #000;
  padding: 38px 7.9069767442%;
}
.bl_inquiry--row > * {
  white-space: pre-line;
}
.bl_inquiry--to {
  font-size: 1.375rem;
  line-height: 1.9090909091;
  letter-spacing: 0.04em;
  font-weight: 900;
  padding-right: 1em;
}
.bl_inquiry--detail {
  font-size: 1.3125rem;
  line-height: 2;
  padding-left: 5.8139534884%;
  border-left: solid 1px #221714;
}
.bl_inquiry--note {
  margin-top: 45px;
  white-space: pre-line;
  font-size: 1rem;
  line-height: 1.875;
}
.bl_inquiry--note:before, .bl_inquiry--note:after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}
.bl_inquiry--note:before {
  margin-top: -0.4375em;
}
.bl_inquiry--note:after {
  margin-bottom: -0.4375em;
}
@media (max-width: 768px) {
  .bl_inquiry {
    color: #fff;
  }
  .bl_inquiry--title {
    font-size: 3.6vw;
    margin-bottom: 1em;
  }
  .bl_inquiry--row {
    margin-top: 0;
    flex-flow: column nowrap;
    border-radius: 0.8vw;
    border-width: 0.8vw;
    border-color: #fff;
    padding: 4vw 7.0666666667vw;
  }
  .bl_inquiry--to, .bl_inquiry--detail {
    font-size: 3.6vw;
    line-height: 6.9333333333vw;
    font-weight: 500;
    width: 100%;
  }
  .bl_inquiry--to {
    padding-right: 0;
  }
  .bl_inquiry--detail {
    padding-left: 0;
    border-left: 0;
    border-top: solid 0.4vw #fff;
    margin-top: 1em;
    padding-top: 1em;
  }
  .bl_inquiry--note {
    margin-top: 9.7333333333vw;
    font-size: 3.4666666667vw;
    line-height: 6.4vw;
    color: #221714;
  }
}

.bl_event {
  background: #45afe1;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  padding-bottom: 133px;
}
.bl_event img {
  margin: auto;
  display: block;
  max-width: 100%;
}
.bl_event--subtitle {
  margin-top: 75px;
  font-size: 2.125rem;
  line-height: 1.4173529412;
  letter-spacing: 0.04em;
  text-indent: 0.04em;
  text-align: center;
  font-weight: 900;
}
.bl_event--subtitle:before, .bl_event--subtitle:after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}
.bl_event--subtitle:before {
  margin-top: -0.2086764706em;
}
.bl_event--subtitle:after {
  margin-bottom: -0.2086764706em;
}
.bl_event--description {
  margin-top: 75px;
  font-weight: 900;
  font-size: 1.5rem;
  line-height: 2.1666666667;
  text-align: center;
  white-space: pre-line;
}
.bl_event--description:before, .bl_event--description:after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}
.bl_event--description:before {
  margin-top: -0.5833333333em;
}
.bl_event--description:after {
  margin-bottom: -0.5833333333em;
}
.bl_event--description2 {
  margin-top: 42px;
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.7716666667;
  font-weight: 500;
}
.bl_event--description2:before, .bl_event--description2:after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}
.bl_event--description2:before {
  margin-top: -0.3858333333em;
}
.bl_event--description2:after {
  margin-bottom: -0.3858333333em;
}
.bl_event--image {
  margin-top: 80px !important;
  width: 100%;
}
.bl_event--image5 {
  margin-top: 80px !important;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .bl_event {
    padding-bottom: 0;
  }
  .bl_event--title {
    margin-top: 10.6666666667vw;
    width: 86.6666666667vw;
  }
  .bl_event--subtitle {
    margin-top: 10.2666666667vw;
    font-size: 4.5333333333vw;
  }
  .bl_event--description {
    margin-top: 7.3333333333vw;
    font-size: 4vw;
    line-height: 6.8533333333vw;
  }
  .bl_event--description2 {
    margin-top: 7.3333333333vw;
    font-size: 4vw;
  }
  .bl_event--image {
    margin-top: 15.3333333333vw;
  }
  .bl_event--image5 {
    margin-top: 12.5333333333vw !important;
    border-radius: 0;
  }
}

.bl_place--section {
  margin: 51px auto 75px;
}
.bl_place--section.place p {
  font-size: 1.375rem;
  line-height: 2;
}
.bl_place--section.place p:before, .bl_place--section.place p:after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}
.bl_place--section.place p:before {
  margin-top: -0.5em;
}
.bl_place--section.place p:after {
  margin-bottom: -0.5em;
}
.bl_place--section.place p.strong {
  font-weight: 900;
}
.bl_place--section.route p {
  font-size: 1.25rem;
  line-height: 1.9;
}
.bl_place--section.route p:before, .bl_place--section.route p:after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}
.bl_place--section.route p:before {
  margin-top: -0.45em;
}
.bl_place--section.route p:after {
  margin-bottom: -0.45em;
}
.bl_place--section.route p.white {
  color: #fff;
  padding-top: 1em;
  border-top: solid 2px #fff;
}
.bl_place--section.route p.white strong {
  color: #f00;
}
.bl_place--title2 {
  font-size: 1.375rem;
  line-height: 1;
  color: #fff;
  font-weight: 900;
  margin-bottom: 1em;
}
.bl_place--image {
  margin-top: 51px;
  border-radius: 8px;
}
.bl_place--routes {
  display: flex;
  flex-flow: row wrap;
  font-size: 1.25rem;
  line-height: 2.4;
}
.bl_place--routes > * {
  border-bottom: solid 1px #000;
}
.bl_place--routes > dd {
  width: 12em;
}
.bl_place--routes > dt {
  width: calc(100% - 12em);
}
.bl_place--route_detail {
  text-align: right;
}
.bl_place--route_detail strong {
  font-weight: 700;
}
.bl_place--note {
  margin-top: 1.6em;
  font-size: 1.125rem;
  line-height: 1.7777777778;
}
.bl_place--note:before, .bl_place--note:after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}
.bl_place--note:before {
  margin-top: -0.3888888889em;
}
.bl_place--note:after {
  margin-bottom: -0.3888888889em;
}
@media (max-width: 768px) {
  .bl_place {
    padding-bottom: 1px;
  }
  .bl_place--section {
    margin: 4.9333333333vw auto 12.9333333333vw;
  }
  .bl_place--section.place p {
    font-size: 3.4666666667vw;
  }
  .bl_place--section.place p.strong {
    font-size: 4vw;
  }
  .bl_place--section.route p.white {
    font-size: 3.8666666667vw;
  }
  .bl_place--title2 {
    font-size: 4vw;
  }
  .bl_place--routes {
    font-size: 3.4666666667vw;
  }
  .bl_place--route_title {
    white-space: nowrap;
  }
  .bl_place--note {
    font-size: 3.4666666667vw;
  }
}

.bl-judge {
  margin: 52px auto 0;
  width: 860px;
  max-width: 98%;
}
.bl-judge__title {
  font-size: 1.625rem;
  line-height: 1;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  font-weight: 900;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 3px #fff;
  height: 62px;
}
.bl-judge__itemswrap {
  margin: auto;
  width: 774px;
  max-width: 98%;
  overflow: hidden;
}
.bl-judge__items {
  padding: 90px 0;
  display: flex;
  flex-flow: row wrap;
  margin-left: -8.7209302326%;
  margin-right: -8.7209302326%;
}
.bl-judge__item {
  width: 50%;
  padding-left: 8.7209302326%;
  padding-right: 8.7209302326%;
}
.bl-judge__item:nth-of-type(1) .bl-judge__position, .bl-judge__item:nth-of-type(2) .bl-judge__position {
  height: 84px;
}
.bl-judge__item:nth-of-type(n+3) .bl-judge__image {
  margin-top: 60px;
  padding-top: 60px;
  border-top: solid 1px #fff;
}
.bl-judge__image {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
}
.bl-judge__image img {
  margin: auto;
  width: 196px;
  height: 196px;
  border-radius: 50%;
  border: solid 4px #fff;
  background: #fff;
}
.bl-judge__caption {
  margin-top: 20px;
  color: #fff;
}
.bl-judge__position {
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: pre-line;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.3571428571;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
  font-weight: 500;
}
.bl-judge__position:before, .bl-judge__position:after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}
.bl-judge__position:before {
  margin-top: -0.1785714286em;
}
.bl-judge__position:after {
  margin-bottom: -0.1785714286em;
}
.bl-judge__name {
  margin-top: 17px;
  font-size: 1.625rem;
  line-height: 1;
  text-align: center;
  font-weight: 900;
}
.bl-judge__description {
  margin-top: 46px;
  font-size: 0.9375rem;
  line-height: 1.8666666667;
  font-weight: 300;
  text-align: justify;
  text-justify: inter-ideograph;
}
.bl-judge__description:before, .bl-judge__description:after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}
.bl-judge__description:before {
  margin-top: -0.4333333333em;
}
.bl-judge__description:after {
  margin-bottom: -0.4333333333em;
}
@media (max-width: 768px) {
  .bl-judge {
    width: 83.6vw;
    max-width: 100%;
  }
  .bl-judge__title {
    font-size: 5.3333333333vw;
    border-width: 0.8vw;
    height: 13.0666666667vw;
  }
  .bl-judge__itemswrap {
    max-width: 100%;
  }
  .bl-judge__items {
    margin-top: 14.9333333333vw;
    padding-top: 0;
    margin-right: 0;
    margin-left: 0;
    padding-bottom: 30vw;
  }
  .bl-judge__item {
    padding-top: 0;
    width: 100%;
    padding-right: 0;
    padding-left: 0;
  }
  .bl-judge__item:nth-of-type(1) .bl-judge__position, .bl-judge__item:nth-of-type(2) .bl-judge__position {
    height: auto;
  }
  .bl-judge__item:nth-of-type(n+2) {
    margin-top: 12.6666666667vw;
    padding-top: 17.3333333333vw;
    border-top: solid 1px #fff;
  }
  .bl-judge__image {
    margin-top: 0 !important;
    padding-top: 0 !important;
    border: 0 !important;
  }
  .bl-judge__image img {
    width: 40vw;
    height: 40vw;
    border-width: 1.3333333333vw;
  }
  .bl-judge__caption {
    margin-top: 5.3333333333vw;
  }
  .bl-judge__position {
    font-size: 3.7333333333vw;
  }
  .bl-judge__name {
    margin-top: 4.8vw;
    font-size: 7.0666666667vw;
  }
  .bl-judge__description {
    margin-top: 11.7333333333vw;
    font-size: 4vw;
  }
}

/*# sourceMappingURL=page-future.css.map */