@charset "UTF-8";
/*
* 1. Immediately jump any animation to the end point
* 2. Remove transitions & fixed background attachment
* See: https://github.com/mozdevs/cssremedy/issues/11
*/
@media (prefers-reduced-motion: reduce) {
  *,
::before,
::after {
    -webkit-animation-delay: -1ms !important;
            animation-delay: -1ms !important;
    -webkit-animation-duration: 1ms !important;
            animation-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    background-attachment: initial !important;
    scroll-behavior: auto !important;
    transition-delay: 0s !important;
    transition-duration: 0s !important;
  }
}
@font-face {
  font-family: "icomoon";
  src: url("../../font/fonts/icomoon.eot?7hblw1");
  src: url("../../font/fonts/icomoon.eot?7hblw1#iefix") format("embedded-opentype"), url("../../font/fonts/icomoon.ttf?7hblw1") format("truetype"), url("../../font/fonts/icomoon.woff?7hblw1") format("woff"), url("../../font/fonts/icomoon.svg?7hblw1#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=icon-], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-arrow-down:before {
  content: "\e900";
}

.icon-arrow-right:before {
  content: "\e901";
}

.icon-calc:before {
  content: "\e902";
}

.icon-calendar:before {
  content: "\e903";
}

.icon-document:before {
  content: "\e904";
}

.icon-helmet:before {
  content: "\e905";
}

.icon-instagram:before {
  content: "\e906";
}

.icon-mail:before {
  content: "\e907";
}

.icon-outer:before {
  content: "\e908";
}

.icon-pdf:before {
  content: "\e909";
}

.icon-tel:before {
  content: "\e90a";
}

/* 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
 */
:where(.bl-footer) {
  position: relative;
  position: -webkit-sticky;
  position: sticky;
  top: 100vh;
  z-index: 1;
}

.bl-footer {
  background: #0C508A;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
}
.bl-footer__info-box {
  margin-top: 10px;
  font-size: 0.875rem;
  --font-size: 14;
  line-height: 1.5;
  padding-top: 0.1px;
  padding-bottom: 0.1px;
  letter-spacing: 0.01em;
  text-indent: 0.01em;
  text-align: center;
}
.bl-footer__info-box:before, .bl-footer__info-box:after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}
.bl-footer__info-box:before {
  margin-top: -0.25em;
}
.bl-footer__info-box:after {
  margin-bottom: -0.25em;
}
.bl-footer__sns-box {
  margin-top: 14px;
  display: flex;
  align-items: center;
}
.bl-footer__sns-box .link {
  padding: 0 8px 0 9px;
  width: 138px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background: #FFEC00;
  color: #0C508A;
  font-weight: 600;
  font-style: italic;
  font-size: 1.0625rem;
  --font-size: 17;
}
.bl-footer__sns-box .link .icon-arrow-right {
  font-size: 10px;
}
.bl-footer__sns {
  margin-left: 1em;
  font-size: 23px;
}
.bl-footer__outer-links {
  margin: 30px auto 0;
}
.bl-footer__outer-links a {
  display: block;
  background: #fff;
}
.bl-footer__outer-links a img {
  display: block;
}
.bl-footer__footer-bottom-box {
  width: 100%;
}
.bl-footer__links {
  margin-top: 50px;
  border-top: 1px solid #fff;
  padding-top: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  font-size: 0.8125rem;
  --font-size: 13;
  line-height: 1;
  letter-spacing: 0.01em;
}
.bl-footer__links a {
  margin: 0 0.5em;
}
.bl-footer__links a::before {
  content: "■";
  color: #008DCA;
}
.bl-footer__copyright {
  margin-top: 55px;
  font-size: 0.75rem;
  --font-size: 12;
  line-height: 1;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
  font-weight: 500;
  text-align: center;
}
@media (hover: hover) {
  .bl-footer__sns-box .link {
    transition: background-color 0.3s, color 0.3s;
  }
  .bl-footer__sns-box .link:hover {
    background-color: #008DCA;
    color: #FFEC00;
  }
  .bl-footer__sns {
    transition: color 0.3s;
  }
  .bl-footer__sns:hover {
    color: #008DCA;
  }
  .bl-footer__outer-links a img {
    transition: opacity 0.3s;
  }
  .bl-footer__outer-links a:hover img {
    opacity: 0.5;
  }
  .bl-footer__links a::before {
    transition: color 0.3s;
  }
  .bl-footer__links a:hover::before {
    color: #FFEC00;
  }
}
@media print, screen and (min-width: 768.1px) {
  .bl-footer {
    padding: 54px 0 22px;
  }
  .bl-footer__outer-links {
    width: 614px;
    display: flex;
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .bl-footer {
    padding: 50px 0 29px;
  }
  .bl-footer__logo {
    margin: auto;
    width: 80vw;
  }
  .bl-footer__outer-links {
    margin-bottom: -9px;
  }
  .bl-footer__outer-links a {
    margin-bottom: 9px;
  }
}

.bl-telme {
  border-top: 1px solid #0C508A;
  text-align: center;
}
.bl-telme__tel {
  margin-top: 30px;
  color: #008DCA;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bl-telme__tel .text {
  font-style: italic;
  font-weight: 600;
}
.bl-telme__tel-note {
  margin-top: 9px;
}
.bl-telme__tel-note .guidance {
  color: #fff;
  font-weight: 700;
  font-size: 0.8125rem;
  --font-size: 13;
  height: 20px;
  padding: 0 19px 0 9px;
  background: #0C508A;
  display: inline-flex;
  align-items: center;
  -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}
.bl-telme__tel-note .business {
  font-size: 0.875rem;
  --font-size: 14;
  line-height: 1;
  letter-spacing: 0.025em;
}
.bl-telme__form {
  margin: 24px auto 0;
}
@media print, screen and (min-width: 768.1px) {
  .bl-telme {
    margin-top: 105px;
    padding: 75px 0 56px;
  }
  .bl-telme__tel .icon-tel {
    font-size: 31px;
  }
  .bl-telme__tel .text {
    font-size: 40px;
  }
}
@media screen and (max-width: 768px) {
  .bl-telme {
    margin-top: 78px;
    padding: 63px 0 92px;
    border-top-width: 2px;
  }
  .bl-telme__tel .icon-tel {
    font-size: 27px;
  }
  .bl-telme__tel .text {
    font-size: 36px;
  }
}

:root {
  --c-jaen-color-text: #0C508A;
  --c-jaen-color-bg: #DCDCDC;
}

:where(.c-jaen) {
  color: var(--c-jaen-color-text);
  margin-bottom: 10px;
}
:where(.c-jaen) .ja {
  font-weight: 900;
  font-size: 2rem;
  --font-size: 32;
}
:where(.c-jaen) .en {
  margin-top: 12px;
  padding: 0 38px 0 9px;
  font-style: italic;
  font-weight: 500;
  font-size: 1.375rem;
  --font-size: 22;
  line-height: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  z-index: 1;
}
:where(.c-jaen) .en::after {
  content: "";
  display: block;
  height: 0.8636363636em;
  width: 100%;
  background: var(--c-jaen-color-bg);
  position: absolute;
  z-index: -1;
  top: 10px;
  left: 0;
  -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}
:where(.c-jaen).mod_center {
  text-align: center;
}
:where(.c-jaen).mod_center .en {
  margin-left: auto;
  margin-right: auto;
  padding: 0 18px;
}
:where(.c-jaen).mod_hero {
  --c-jaen-color-bg: #FFEC00;
}
:where(.c-jaen).mod_hero .ja {
  font-size: 2.3125rem;
  --font-size: 37;
  line-height: 1.4285714286;
  padding-top: 0.1px;
  padding-bottom: 0.1px;
  font-feature-settings: normal;
}
:where(.c-jaen).mod_hero .ja:before, :where(.c-jaen).mod_hero .ja:after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}
:where(.c-jaen).mod_hero .ja:before {
  margin-top: -0.2142857143em;
}
:where(.c-jaen).mod_hero .ja:after {
  margin-bottom: -0.2142857143em;
}
:where(.c-jaen).mod_hero .en {
  font-size: 1.6875rem;
  --font-size: 27;
}
:where(.c-jaen).mod_hero .en::after {
  top: 13px;
}
@media screen and (max-width: 768px) {
  :where(.c-jaen) {
    margin-bottom: 9px;
  }
  :where(.c-jaen) .ja, :where(.c-jaen) .en {
    margin-left: auto;
    margin-right: auto;
    display: block;
    text-align: center;
  }
  :where(.c-jaen) .ja {
    font-size: 27px;
  }
  :where(.c-jaen) .en {
    margin-top: 10px;
    padding: 0 24px;
  }
  :where(.c-jaen) .en::after {
    top: 12px;
  }
  :where(.c-jaen).mod_center .en {
    margin-top: 8px;
  }
  :where(.c-jaen).mod_hero {
    margin: 9.125vw auto 8.845vw;
  }
  :where(.c-jaen).mod_hero .ja {
    font-size: clamp(28px, 7vw, calc(var(--font-size) * 1px));
  }
  :where(.c-jaen).mod_hero .en {
    font-size: clamp(23px, 5.75vw, calc(var(--font-size) * 1px));
  }
  :where(.c-jaen).mod_sp-row {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
  }
  :where(.c-jaen).mod_sp-row .ja, :where(.c-jaen).mod_sp-row .en {
    margin: 0;
  }
  :where(.c-jaen).mod_sp-row .en {
    margin-left: 8px;
    padding: 0 12px 8px 4px;
  }
}

:root {
  --c-more-color-bg-hover: #0C508A;
}

:where(.c-more) {
  padding: 0 17px;
  width: 230px;
  height: 38px;
  background: #FFEC00;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #0C508A;
}
:where(.c-more) .text {
  font-style: italic;
  font-weight: 600;
  font-size: 1.1875rem;
  --font-size: 19;
}
:where(.c-more) .icon-arrow-right {
  font-size: 14px;
}
@media (hover: hover) {
  :where(.c-more) {
    transition: color 0.4s;
    overflow: hidden;
    position: relative;
  }
  :where(.c-more) .text, :where(.c-more) .icon {
    position: relative;
    z-index: 1;
  }
  :where(.c-more)::after {
    content: "";
    display: block;
    background: var(--c-more-color-bg-hover);
    width: 120%;
    height: 100%;
    -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 14px) 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, calc(100% - 14px) 100%, 0 100%);
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    transform: translateX(-100%);
    transition: transform 0.4s;
  }
  :where(.c-more):hover {
    color: #FFEC00;
  }
  :where(.c-more):hover::after {
    transform: translateX(0);
  }
}

.bl-footnavi {
  border-top: 2px solid #0C508A;
  position: fixed;
  z-index: 8;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 58px;
  display: flex;
  transform: translateY(100%);
  transition: transform 0.5s 0.1s;
}
.bl-footnavi__button {
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0C508A;
  color: #fff;
}
.bl-footnavi__button.mod_second {
  background: #FFEC00;
  color: #0C508A;
}
.bl-footnavi__button .text {
  margin-left: 6px;
  font-weight: 700;
  font-size: 0.9375rem;
  --font-size: 15;
}
.bl-footnavi__button .icon-document {
  font-size: 21px;
}
.bl-footnavi__button .icon-helmet {
  font-size: 17px;
}
html.js.scroll-up .bl-footnavi, html.js.scroll-bottom .bl-footnavi {
  transform: translateY(0);
}

html.js.scroll-top .bl-footnavi {
  transform: translateY(100%);
}

.bl-sidebar {
  position: fixed;
  z-index: 11;
  right: 0;
  bottom: 10px;
}
.bl-sidebar__calc {
  background: #008DCA;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}
.bl-sidebar__calc .icon {
  font-size: 29px;
}
.bl-sidebar__calc .text {
  font-weight: 700;
  font-size: 0.8125rem;
  --font-size: 13;
  line-height: 1.2307692308;
}
.bl-sidebar__calc .text strong {
  display: block;
  color: #FFEC00;
}
.bl-sidebar__gotop {
  margin-top: 16px;
  margin-left: auto;
  display: block;
  position: relative;
}
.bl-sidebar__gotop img {
  margin: auto;
  display: block;
  transition: opacity 0.3s;
}
.bl-sidebar__gotop img:nth-of-type(1) {
  opacity: 1;
}
.bl-sidebar__gotop img:nth-of-type(2) {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  opacity: 0;
}
@media (hover: hover) {
  .bl-sidebar__calc {
    transition: background-color 0.3s;
  }
  .bl-sidebar__calc .icon, .bl-sidebar__calc .text, .bl-sidebar__calc .text strong {
    transition: color 0.3s;
  }
  .bl-sidebar__calc:hover {
    background: #FFEC00;
  }
  .bl-sidebar__calc:hover .icon {
    color: #008DCA;
  }
  .bl-sidebar__calc:hover .text, .bl-sidebar__calc:hover .text strong {
    color: #0C508A;
  }
  .bl-sidebar__gotop:hover img:nth-of-type(1) {
    opacity: 0;
  }
  .bl-sidebar__gotop:hover img:nth-of-type(2) {
    opacity: 1;
  }
}
@media print, screen and (min-width: 768.1px) {
  .bl-sidebar__calc {
    padding-right: 14px;
    width: 122px;
    height: 50px;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 16px 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 16px 100%);
    justify-content: flex-end;
  }
  .bl-sidebar__calc .text {
    margin-left: 7px;
  }
}
@media screen and (max-width: 768px) {
  .bl-sidebar {
    right: 6px;
    bottom: 70px;
  }
  .bl-sidebar__calc {
    border-radius: 50%;
    border: 2px solid #fff;
    width: 41px;
    height: 41px;
    font-size: 0.75rem;
    --font-size: 12;
    line-height: 1.0833333333;
    text-align: center;
  }
  .bl-sidebar__gotop {
    margin: 10px auto 0;
    width: 29px;
    height: 27px;
  }
  .bl-sidebar__gotop img {
    width: 100%;
    height: auto;
  }
}

:where(.c-slash-title) {
  height: 44px;
  display: grid;
  place-items: center;
  background: #008DCA;
  position: relative;
  overflow: hidden;
}
:where(.c-slash-title) .text {
  color: #FFEC00;
  font-weight: 700;
  font-size: 1.3125rem;
  --font-size: 21;
  line-height: 1;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
  position: relative;
  z-index: 1;
}
:where(.c-slash-title)::after {
  content: "";
  display: block;
  background: #0C508A;
  width: calc(50% + 44px);
  height: 100%;
  position: absolute;
  z-index: 0;
  top: 0;
  left: -44px;
  transform: skewX(-45deg);
  transform-origin: right center;
}
/*# sourceMappingURL=common.css.map */