@charset "UTF-8";
*:where(:not(html, iframe, canvas, img, svg, video, audio, select, textarea):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

select, textarea {
  border: 0;
  margin: 0;
  padding: 0;
  outline: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

a, button {
  cursor: revert;
}

ol, ul, menu {
  list-style: none;
}

img {
  max-width: 100%;
}

table {
  border-collapse: collapse;
}

input, textarea {
  -webkit-user-select: auto;
}

textarea {
  white-space: revert;
}

meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

::-moz-placeholder {
  color: unset;
}

::placeholder {
  color: unset;
}

:where([hidden]) {
  display: none !important;
}

:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

:where([draggable=true]) {
  -webkit-user-drag: element;
}

:root {
  font: 16px/1 "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  background: #fff;
  color: #000;
}

html {
  height: -webkit-fill-available;
}

body {
  min-height: 100vh;
  min-height: -webkit-fill-available;
}

:where(img) {
  height: auto;
}

:where(li, figure, h1, h2, h3, h4, h5, h6) img {
  display: block;
}

:root {
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  --if-screen-effect__duration: 0.8s;
  --if-screen-effect__distance: 30px;
}

:where(a:visited) {
  color: inherit;
}

:where(a:not([class])) {
  color: inherit;
}

:where(label) {
  cursor: pointer;
}

:where(input:where([type=radio], [type=checkbox])) {
  margin: auto 0.2em auto auto;
  width: 1rem;
  height: 1rem;
  background: #fff;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  cursor: pointer;
}

:where(input[type=radio]) {
  border-radius: 50%;
}

:where(label) {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}
:where(label):not([class]) {
  padding-right: 1.5em;
}

html.js.config-allow-motion:not(.js-scroll-effect-started) .if-screen {
  opacity: 0;
}

:root {
  --effect-duration: 0.8s;
  --effect-distance: 30px;
  --effect-distance-: calc(var(--effect-distance) * -1);
  --effect-delay-base: 0.5s;
  --effect-delay: 0.5s;
  --effect-timing-function: cubic-bezier(0.36, 0.14, 0, 1);
}

.if-screen .effect0 {
  --effect-delay: calc(var(--effect-delay-base) * 0);
}
.if-screen .effect1 {
  --effect-delay: calc(var(--effect-delay-base) * 0);
}
.if-screen .effect2 {
  --effect-delay: calc(var(--effect-delay-base) * 1);
}
.if-screen .effect3 {
  --effect-delay: calc(var(--effect-delay-base) * 2);
}
.if-screen .effect4 {
  --effect-delay: calc(var(--effect-delay-base) * 3);
}
.if-screen .effect5 {
  --effect-delay: calc(var(--effect-delay-base) * 4);
}
.if-screen .effect6 {
  --effect-delay: calc(var(--effect-delay-base) * 5);
}
.if-screen .effect7 {
  --effect-delay: calc(var(--effect-delay-base) * 6);
}
.if-screen .effect8 {
  --effect-delay: calc(var(--effect-delay-base) * 7);
}
.if-screen .effect9 {
  --effect-delay: calc(var(--effect-delay-base) * 8);
}
.if-screen .effect10 {
  --effect-delay: calc(var(--effect-delay-base) * 9);
}
.if-screen .effect11 {
  --effect-delay: calc(var(--effect-delay-base) * 10);
}
.if-screen .effect12 {
  --effect-delay: calc(var(--effect-delay-base) * 11);
}
.if-screen [class*=effect] {
  transition-duration: var(--effect-duration);
  transition-delay: var(--effect-delay);
  transition-timing-function: var(--effect-timing-function);
}
.if-screen [class*=effect].duration-slow {
  transition-duration: calc(var(--effect-duration) * 1.5);
}
.if-screen [class*=effect].duration-quick {
  transition-duration: calc(var(--effect-duration) * 0.75);
}
.if-screen [class*=effect].delay-slow {
  transition-delay: calc(var(--effect-delay) * 1.5);
}
.if-screen [class*=effect].delay-quick {
  transition-delay: calc(var(--effect-delay) * 0.75);
}
.if-screen [class*=effect]:is(.fadein, .fadeinUp, .fadeinDown, .fadeinLeft, .fadeinRight) {
  opacity: 0;
  transition-property: opacity, transform;
}
.if-screen [class*=effect]:is(.fadein, .fadeinUp, .fadeinDown, .fadeinLeft, .fadeinRight).js-fire {
  opacity: 1;
  transform: translate(0, 0) !important;
}
.if-screen [class*=effect].fadeinUp {
  transform: translate(0, var(--effect-distance));
}
.if-screen [class*=effect].fadeinUp.effect-100p {
  transform: translate(0, 100%);
}
.if-screen [class*=effect].fadeinDown {
  transform: translate(0, var(--effect-distance-));
}
.if-screen [class*=effect].fadeinDown.effect-100p {
  transform: translate(0, -100%);
}
.if-screen [class*=effect].fadeinLeft {
  transform: translate(var(--effect-distance), 0);
}
.if-screen [class*=effect].fadeinLeft.effect-100p {
  transform: translate(100%, 0);
}
.if-screen [class*=effect].fadeinLeft.effect-50p {
  transform: translate(50%, 0);
}
.if-screen [class*=effect].fadeinRight {
  transform: translate(var(--effect-distance-), 0);
}
.if-screen [class*=effect].fadeinRight.effect-100p {
  transform: translate(-100%, 0);
}
.if-screen [class*=effect].fadeinRight.effect-50p {
  transform: translate(-50%, 0);
}
.if-screen [class*=effect]:is(.fadein2) > *:not([class*=effect]) {
  opacity: 0;
  transition-duration: var(--effect-duration);
  transition-delay: var(--effect-delay);
  transition-timing-function: var(--effect-timing-function);
  will-change: opacity, translate;
}
.if-screen [class*=effect]:is(.fadein2).js-fire > *:not([class*=effect]) {
  opacity: 1;
  transform: translate(0, 0) !important;
}
.if-screen [class*=effect].fadein2 > *:not([class*=effect]) {
  transform: translate(0, var(--effect-distance));
}
.if-screen [class*=effect]:is(.clipLeft, .clipRight) {
  will-change: clip-path, opacity;
  transition-duration: var(--effect-duration);
  transition-delay: var(--effect-delay);
  transition-timing-function: var(--effect-timing-function);
}
.if-screen [class*=effect]:is(.clipLeft, .clipRight).js-fire {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%) !important;
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%) !important;
}
.if-screen [class*=effect].clipLeft {
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
          clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}
.if-screen [class*=effect].clipRight {
  -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
          clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}
.if-screen [class*=effect]:is(.clipImgLeft, .clipImgRight) {
  opacity: 0;
  will-change: clip-path, opacity;
}
.if-screen [class*=effect]:is(.clipImgLeft, .clipImgRight) img {
  will-change: clip-path;
  transition-duration: var(--effect-duration);
  transition-delay: var(--effect-delay);
  transition-timing-function: var(--effect-timing-function);
}
.if-screen [class*=effect]:is(.clipImgLeft, .clipImgRight).js-fire {
  opacity: 1;
}
.if-screen [class*=effect]:is(.clipImgLeft, .clipImgRight).js-fire img {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%) !important;
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%) !important;
}
.if-screen [class*=effect].clipImgLeft img {
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
          clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}
.if-screen [class*=effect].clipImgRight img {
  -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
          clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}
.if-screen [class*=effect]:is(.scaleUp, .scaleDown) {
  will-change: transform;
}
.if-screen [class*=effect]:is(.scaleUp, .scaleDown).js-fire {
  transform: scale(1);
}
.if-screen [class*=effect].scaleUp {
  transform: scale(0);
}
.if-screen [class*=effect].scaleDown {
  transform: scale(1.2);
}

@media screen and (max-width: 768px) {
  .sp-none {
    display: none !important;
  }
}

@media print, screen and (min-width: 768.1px) {
  .pc-none {
    display: none !important;
  }
}

/* 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
 */
html.js.initial * {
  transition: none !important;
}

summary::-webkit-details-marker {
  display: none;
}

:root {
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  height: -webkit-fill-available;
}

.bl-whole {
  overflow: hidden;
}

.font-notosans {
  font-family: YakuHanJP_Noto, "Noto Sans JP", sans-serif;
}

.font-tomorrow {
  font-family: "Tomorrow", sans-serif;
}

.font-barlow {
  font-family: "Barlow", sans-serif;
}

::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
::-webkit-scrollbar-thumb {
  background-color: rgba(12, 80, 138, 0.7);
}
::-webkit-scrollbar-track {
  background-color: rgba(12, 80, 138, 0.1);
}

:root {
  scrollbar-width: 4px;
}

:root {
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
}

@media print, screen and (min-width: 768.1px) {
  body {
    padding-top: 117px;
  }
}
@media screen and (max-width: 768px) {
  body {
    padding-top: 54px;
  }
}

.bl-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 11;
  width: 100%;
  background: #fff;
}
.bl-header__row1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bl-header__document, .bl-header__application {
  color: #0C508A;
}
.bl-header__menu.mod_submenu {
  position: relative;
}
.bl-header__menu.mod_submenu .bl-header__menu-button .icon-arrow-down {
  padding-top: 4px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
  margin: auto;
  display: grid;
  place-items: center;
}
.bl-header__menu.mod_calendar {
  background: #0C508A;
  min-width: 215px;
}
.bl-header__menu.mod_calendar .on-narrow {
  display: none;
}
.bl-header__menu .icon-calendar {
  margin-right: 4px;
  font-size: 21px;
}
.bl-header__menu-button {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9375rem;
  --font-size: 15;
  line-height: 1.2666666667;
  font-weight: 700;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
}
.bl-header__menu-button .icon-arrow-down {
  zoom: 0.5;
}
.bl-header__submenu {
  transform-origin: top center;
  transform: scaleY(0);
  max-height: 0;
  width: 100%;
  background: #D1EAF5;
}
.bl-header__submenu-link {
  padding: 11px 5px;
  border-bottom: 1px solid #0C508A;
  min-height: 40px;
  font-weight: 500;
  color: #0C508A;
  font-size: 0.875rem;
  --font-size: 14;
  line-height: 1.2142857143;
  display: grid;
  place-items: center;
  text-align: center;
}
.bl-header__submenu-link small {
  display: block;
  font-size: 12px;
}
.bl-header__submenu-link:last-of-type {
  border-bottom: 0;
}
@media (hover: hover) {
  .bl-header__logo, .bl-header__email, .bl-header__application {
    transition: opacity 0.3s;
    opacity: 1;
  }
  .bl-header__logo:hover, .bl-header__email:hover, .bl-header__application:hover {
    opacity: 0.5;
  }
  .bl-header__document {
    transition: background-color 0.3s, opacity 0.3s;
    opacity: 1;
  }
  .bl-header__document:hover {
    opacity: 0.5;
    background: #DCDCDC;
  }
  .bl-header__menu {
    --hover-bg: #D1EAF5;
    transition: background-color 0.3s;
  }
  .bl-header__menu.mod_submenu .bl-header__submenu {
    transition: transform 0.3s, max-height 0.3s;
  }
  .bl-header__menu.mod_submenu:hover .bl-header__submenu {
    transform: scaleY(1);
    max-height: calc(100vh - 140px);
    overflow: auto;
  }
  .bl-header__menu.mod_calendar {
    --hover-bg: #85A7C4;
  }
  .bl-header__menu:hover {
    background-color: var(--hover-bg);
  }
}
@media print, screen and (min-width: 768.1px) {
  .bl-header {
    height: 117px;
  }
  .bl-header__nav1 {
    display: flex;
    align-items: center;
    align-self: stretch;
  }
  .bl-header__tel-etc .icon {
    font-size: 22px;
  }
  .bl-header__tel-etc .number {
    font-style: italic;
    font-size: 28px;
  }
  .bl-header__tel-etc .guidance {
    margin-left: 7px;
  }
  .bl-header__tel-etc .guidance .text {
    padding: 0 6px;
    display: inline-flex;
    align-items: center;
    width: 105px;
    height: 19px;
    background: #DCDCDC;
    font-size: 13px;
    position: relative;
    overflow: hidden;
  }
  .bl-header__tel-etc .guidance .text::after {
    content: "";
    display: block;
    background: #fff;
    height: 100%;
    width: 10px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    transform: skewX(-0.4844rad);
    transform-origin: bottom left;
  }
  .bl-header__tel-etc .business {
    margin-left: 22px;
    font-size: 12px;
  }
  .bl-header__tel {
    display: flex;
    align-items: center;
    color: #0C508A;
    font-weight: 700;
  }
  .bl-header__email {
    margin-left: 11px;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    background: #008DCA;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 15px;
  }
  .bl-header__document, .bl-header__application {
    border-left: 2px solid #DCDCDC;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
  }
  .bl-header__document .icon, .bl-header__application .icon {
    margin-right: 5px;
  }
  .bl-header__document {
    margin-left: 18px;
    width: 152px;
  }
  .bl-header__document .icon {
    font-size: 21px;
  }
  .bl-header__application {
    width: 212px;
    background: #FFEC00;
  }
  .bl-header__application .icon {
    font-size: 17px;
  }
  .bl-header__menus {
    display: flex;
    align-items: center;
  }
  .bl-header__menu {
    width: 16.6666666667%;
    height: 48px;
    border: solid 1px #fff;
    border-top: 0;
    border-bottom: 0;
    background: #008DCA;
    color: #fff;
  }
  .bl-header__menu.mod_enough-width .bl-header__submenu {
    min-width: 224px;
  }
  .bl-header__submenu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1;
  }
}
@media print, screen and (min-width: 768.1px) and (max-width: 1040px) {
  .bl-header__document {
    width: 100px;
  }
  .bl-header__application {
    width: 160px;
  }
  .bl-header__menu.mod_calendar {
    min-width: 150px;
  }
  .bl-header__menu.mod_calendar .on-narrow {
    margin-top: 3px;
    display: block;
  }
  .bl-header__menu.mod_w4 {
    min-width: 90px;
  }
  .bl-header__menu.mod_w6 {
    min-width: 110px;
  }
  .bl-header__menu.mod_w10 {
    min-width: 160px;
  }
  .bl-header__menu.mod_submenu .bl-header__menu-button {
    justify-content: flex-start;
    padding-left: 1em;
  }
  .bl-header__menu.mod_submenu .bl-header__menu-button .icon-arrow-down {
    right: 10px;
  }
}
@media print, screen and (min-width: 768.1px) and (max-width: 920px) {
  .bl-header__email {
    margin-left: 0;
  }
  .bl-header__tel-etc {
    width: 240px;
  }
  .bl-header__tel {
    flex-wrap: wrap;
  }
  .bl-header__tel .guidance {
    margin-left: 22px;
    width: 100%;
  }
  .bl-header__document {
    margin-left: 6px;
  }
}
@media screen and (max-width: 768px) {
  .bl-header {
    height: 54px;
  }
  .bl-header__row1 {
    height: 54px;
    background: #fff;
    border-bottom: 2px solid #0C508A;
  }
  .bl-header__logo {
    height: 100%;
  }
  .bl-header__logo img {
    height: 100%;
    width: auto;
  }
  .bl-header__nav2 {
    padding-top: 42px;
    height: calc(100svh - 54px);
    background: #fff;
    overflow-y: auto;
    transform: scaleY(0);
    transform-origin: top center;
    transition: transform 0.3s;
  }
  html.menu-open .bl-header__nav2 {
    transform: scaleY(1);
  }
  .bl-header__menus {
    margin: auto;
    width: 270px;
  }
  .bl-header__menu {
    margin-bottom: 12px;
    min-height: 48px;
    overflow: hidden;
  }
  .bl-header__menu.open .bl-header__submenu {
    opacity: 1;
    transform: scaleY(1);
    max-height: 1000px;
  }
  .bl-header__menu.open .bl-header__menu-button {
    color: #fff;
    background-color: #008DCA;
  }
  .bl-header__menu .icon {
    margin-right: 7px;
  }
  .bl-header__menu.mod_calendar .bl-header__menu-button {
    background: #0C508A;
    color: #fff;
  }
  .bl-header__menu.mod_calendar .bl-header__menu-button .icon {
    font-size: 21px;
  }
  .bl-header__menu.mod_document .bl-header__menu-button {
    background: #008DCA;
    color: #fff;
  }
  .bl-header__menu.mod_document .bl-header__menu-button .icon {
    font-size: 21px;
  }
  .bl-header__menu.mod_application .bl-header__menu-button {
    background: #FFEC00;
  }
  .bl-header__menu.mod_application .bl-header__menu-button .icon {
    font-size: 17px;
  }
  .bl-header__menu-button {
    height: 48px;
    background: #DCDCDC;
    color: #0C508A;
    font-size: 17px;
    position: relative;
    transition: background-color 0.3s, color 0.3s;
  }
  .bl-header__submenu {
    transition: transform 0.3s, max-height 0.3s;
    opacity: 0;
  }
  .bl-header__switch {
    display: block;
    width: 54px;
    height: 100%;
    background: url(../../images/common/menu-open.png) no-repeat center center;
  }
  html.menu-open .bl-header__switch {
    background-image: url(../../images/common/menu-close.png);
  }
}
/*# sourceMappingURL=atf.css.map */