@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-recommend, .bl-treatment, .bl-reason__row, .bl-reason__row2, .bl-about, .bl-other, .bl-link-area {
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
  max-width: 1028px;
}
@media screen and (max-width: 768px) {
  .bl-recommend, .bl-treatment, .bl-reason__row, .bl-reason__row2, .bl-about, .bl-other, .bl-link-area {
    padding-left: 0;
    padding-right: 0;
    width: 80vw;
  }
}

.bl-mainframe {
  position: relative;
  z-index: 10;
}

.bl-hero__slides {
  position: relative;
}
.bl-hero__slide {
  display: block;
  width: 100%;
  height: 100%;
}
.bl-hero__slide:nth-of-type(n+2) {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
html.js:not(.document-ready500) .bl-hero__slide:nth-of-type(n+2) {
  opacity: 0;
}

.bl-hero__slide.js-current {
  opacity: 1;
}
.bl-hero__slide img {
  display: block;
  width: 100%;
}
.js-initialized .bl-hero__slide {
  transition: opacity 1s;
  opacity: 0;
}
.js-initialized .bl-hero__slide.current {
  opacity: 1;
  z-index: 9;
}

@media print, screen and (min-width: 768.1px) {
  .bl-hero__slides {
    aspect-ratio: 1468/810;
  }
  .bl-hero__ui {
    margin: 20px 30px 0 auto;
    justify-content: flex-end;
  }
}
@media screen and (max-width: 768px) {
  .bl-hero__slides {
    aspect-ratio: 400/221;
  }
  .bl-hero__ui {
    margin: 15px auto 0;
    justify-content: center;
  }
}

.ui-dot {
  font-size: 22px;
  display: flex;
}
.ui-dot .switch {
  position: relative;
  z-index: 1;
}
.ui-dot .switch .icon {
  color: #142D41;
  cursor: pointer;
}
.ui-dot .switch .icon-pause {
  display: block;
}
.ui-dot .switch .icon-play {
  display: none;
}
.ui-dot .switch .path2, .ui-dot .switch .path3 {
  color: #fff;
}
.ui-dot .dots {
  margin-left: -11px;
  padding-right: 9px;
  padding-left: 17px;
  border-radius: 0 11px 11px 0;
  height: 22px;
  background: #fff;
  display: flex;
  align-items: center;
}
.ui-dot .dot {
  margin: auto 8px;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  background: #D0D5D9;
  cursor: pointer;
  transition: background-color 0.5s;
}
.ui-dot .dot.current {
  background-color: #CAA800;
  cursor: auto;
}
html.no-js .ui-dot {
  display: none;
}

.js-pause .ui-dot .switch .icon-pause {
  display: none;
}
.js-pause .ui-dot .switch .icon-play {
  display: block;
}

.bl-news {
  margin: auto;
}
@media print, screen and (min-width: 768.1px) {
  .bl-news {
    margin-top: 18px;
    width: 880px;
    max-width: 98%;
    display: grid;
    grid-template-columns: 208px auto;
    grid-template-rows: auto auto;
    grid-template-areas: "title news" "more news";
  }
  .bl-news__title {
    grid-area: title;
  }
  .bl-news__more {
    grid-area: more;
  }
  .bl-news__newsblock {
    grid-area: news;
    min-width: 0;
  }
}
@media screen and (max-width: 768px) {
  .bl-news {
    margin-top: 10vw;
    width: 80vw;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .bl-news__more {
    order: 9;
    margin-top: 18px;
    align-self: flex-start;
  }
  .bl-news__newsblock {
    margin-top: 14px;
    width: 100%;
  }
}

.bl-recommend__wrap {
  overflow: hidden;
}
@media print, screen and (min-width: 768.1px) {
  .bl-recommend {
    margin-top: 115px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 768px) {
  .bl-recommend {
    margin-top: 19.5vw;
    width: auto;
  }
}

.bl-slideshow__items {
  width: calc(100% * var(--data-count));
}
.bl-slideshow__item {
  display: block;
  width: calc(100% / var(--data-count));
  transition: transform 0.75s;
  transform: translateX(calc(-100% * (var(--current) - 1)));
}
.bl-slideshow__item img {
  display: block;
  width: 100%;
}
.bl-slideshow__ui {
  justify-content: center;
}
.bl-slideshow__button {
  z-index: 9;
  width: 1em;
  height: 1em;
  font-size: 30px;
  position: absolute;
  cursor: pointer;
}
.bl-slideshow__button .path1 {
  color: #CAA800;
}
.bl-slideshow__button .path2 {
  color: #fff;
}
.bl-slideshow__button.mod_prev {
  transform: rotateY(180deg);
}
.bl-slideshow[data-max="1"] {
  --data-count: 1;
}
.bl-slideshow[data-max="2"] {
  --data-count: 2;
}
.bl-slideshow[data-max="3"] {
  --data-count: 3;
}
.bl-slideshow[data-max="4"] {
  --data-count: 4;
}
.bl-slideshow[data-max="5"] {
  --data-count: 5;
}
.bl-slideshow[data-max="6"] {
  --data-count: 6;
}
.bl-slideshow[data-max="7"] {
  --data-count: 7;
}
.bl-slideshow[data-max="8"] {
  --data-count: 8;
}
.bl-slideshow[data-max="9"] {
  --data-count: 9;
}
.bl-slideshow[data-max="10"] {
  --data-count: 10;
}
.bl-slideshow[data-max="11"] {
  --data-count: 11;
}
.bl-slideshow[data-max="12"] {
  --data-count: 12;
}
.bl-slideshow[data-max="13"] {
  --data-count: 13;
}
.bl-slideshow[data-max="14"] {
  --data-count: 14;
}
.bl-slideshow[data-max="15"] {
  --data-count: 15;
}
.bl-slideshow[data-max="16"] {
  --data-count: 16;
}
@media (hover: hover) {
  .bl-slideshow__button .path1 {
    transition: color 0.5s;
  }
  .bl-slideshow__button:hover .path1 {
    color: #C785BB;
  }
}
@media print, screen and (min-width: 768.1px) {
  .bl-slideshow {
    margin-top: 38px;
  }
  .bl-slideshow__items {
    position: relative;
    display: flex;
  }
  .bl-slideshow__item {
    padding: 0 33px;
  }
  .bl-slideshow__ui {
    margin-top: 25px;
  }
  .bl-slideshow__button {
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .bl-slideshow__button.mod_prev {
    left: -0.5em;
  }
  .bl-slideshow__button.mod_next {
    left: calc(100% / var(--data-count));
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 768px) {
  .bl-slideshow {
    margin-top: 29px;
    padding-bottom: 57px;
    position: relative;
    overflow: hidden;
  }
  .bl-slideshow__items::after {
    content: "";
    display: block;
    clear: both;
  }
  .bl-slideshow__item {
    float: left;
  }
  .bl-slideshow__ui {
    margin-top: 18px;
  }
  .bl-slideshow__button {
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
  .bl-slideshow__button.mod_prev {
    left: -70px;
  }
  .bl-slideshow__button.mod_next {
    right: -70px;
  }
}

.bl-treatment {
  display: flex;
  flex-direction: column;
}
.bl-treatment__image {
  order: -1;
}
.bl-treatment__menu-image img {
  width: 100%;
  filter: grayscale(100%);
}
.bl-treatment__menu-title {
  padding-bottom: 30px;
  text-align: center;
  font-weight: 700;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.bl-treatment__menu-title .en {
  color: #CAA800;
  font-size: 3rem;
  --font-size: 48;
  line-height: 1;
  letter-spacing: 0.075em;
  text-indent: 0.075em;
}
.bl-treatment__menu-title .ja {
  margin-top: -17px;
  color: #fff;
  font-size: 1.125rem;
  --font-size: 18;
  line-height: 1;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
}
.bl-treatment__about {
  padding: 0 0 0 43px;
  background: #142D41;
  position: relative;
  display: flex;
  align-items: center;
}
.bl-treatment__about .c-linelink {
  margin-left: auto;
  --border: #fff;
  color: #fff;
  width: 145px;
  position: absolute;
  right: 41px;
  bottom: 43px;
}
.bl-treatment__about .c-linelink:hover {
  color: #009AB9;
}
.bl-treatment__copy {
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 1rem;
  --font-size: 16;
  line-height: 1.6875;
  letter-spacing: 0.025em;
  color: #fff;
}
@media (hover: hover) {
  .bl-treatment__menu-image img {
    transition: filter 0.5s;
  }
  .bl-treatment__menu-image:hover img {
    filter: grayscale(0);
  }
}
@media print, screen and (min-width: 768.1px) {
  .bl-treatment {
    margin-top: 120px;
  }
  .bl-treatment__title .en {
    margin-top: -0.6533333333em;
  }
  .bl-treatment__image {
    margin-left: calc((100vw - var(--header-width) - 100%) / -2);
  }
  .bl-treatment__blocks {
    margin-top: 40px;
  }
  .bl-treatment__items {
    --gap: 28px;
    margin: auto;
    max-width: 1008px;
    display: grid;
    gap: var(--gap);
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media print and (max-width: 920px), screen and (min-width: 768.1px) and (max-width: 920px) {
  .bl-treatment__items {
    --gap: 15px;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 768px) {
  .bl-treatment {
    margin-top: 60px;
  }
  .bl-treatment__title {
    margin-top: -21px;
  }
  .bl-treatment__image {
    margin-right: calc((100vw - 100%) / -2);
    margin-left: calc((100vw - 100%) / -2);
  }
  .bl-treatment__blocks {
    margin-top: 8.25vw;
  }
  .bl-treatment__item {
    display: block;
    margin-top: 7.5vw;
  }
  .bl-treatment__item:first-child {
    margin-top: 0;
  }
  .bl-treatment__about {
    aspect-ratio: 316/367;
    display: flex;
  }
}

.bl-reason {
  position: relative;
}
.bl-reason__read {
  color: #fff;
  font-size: 0.9375rem;
  --font-size: 15;
  line-height: 1.8;
  padding-top: 0.1px;
  padding-bottom: 0.1px;
  letter-spacing: 0.0253333333em;
}
.bl-reason__read:before, .bl-reason__read:after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}
.bl-reason__read:before {
  margin-top: -0.4em;
}
.bl-reason__read:after {
  margin-bottom: -0.4em;
}
.bl-reason__image {
  overflow: hidden;
}
.bl-reason__button {
  width: 328px;
  max-width: 100%;
  line-height: 1.5;
  display: block;
  margin: 50px auto 0;
  background: #CAA800;
  transition: background-color 0.2s, color 0.2s;
  position: relative;
  padding: 12px 47px 12px 19px;
}
.bl-reason__button .arrow {
  z-index: 0;
  width: 28px;
  height: 28px;
  text-align: center;
  align-items: center;
  position: absolute;
  transform: translate(0, -50%);
  display: block;
  line-height: 28px;
  top: 50%;
  right: 15px;
  font-size: 11px;
}
.bl-reason__button .arrow:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  transition: opacity 0.2s;
  border-radius: 50%;
  opacity: 0;
  background: #CAA800;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.bl-reason__button:hover {
  background: #e1cf94;
  color: #fff;
}
.bl-reason__button:hover .arrow:before {
  opacity: 1;
}
@media print, screen and (min-width: 768.1px) {
  .bl-reason {
    margin-top: 10vw;
    padding-top: 6.0588235294vw;
    padding-bottom: 7.3529411765vw;
    background: linear-gradient(-42.91deg, rgb(0, 154, 185) 0%, rgb(12, 86, 110) 35%, rgb(20, 45, 65) 100%);
  }
  .bl-reason__row {
    position: relative;
  }
  .bl-reason__section {
    padding-left: 8.5317460317%;
    width: 50%;
  }
  .bl-reason__title, .bl-reason__read {
    position: relative;
    z-index: 10;
  }
  .bl-reason__title {
    width: 100vw;
  }
  .bl-reason__read {
    margin-bottom: 0;
  }
  .bl-reason__image {
    margin-right: -240px;
    width: 892px;
    transform: translateY(-11.5294117647vw);
    position: absolute;
    top: 0;
    right: 0;
  }
}
@media print and (max-width: 1700px), screen and (min-width: 768.1px) and (max-width: 1700px) {
  .bl-reason__image {
    width: 52.4705882353vw;
    margin-right: calc((100vw - var(--header-width) - 100%) / -2);
  }
}
@media print, screen and (min-width: 768.1px) {
  .bl-reason__row2 {
    margin-top: 5.4117647059vw;
    display: flex;
    justify-content: space-between;
  }
}
@media print, screen and (min-width: 768.1px) {
  .bl-reason__image2 {
    padding-right: 15px;
  }
}
@media print, screen and (min-width: 768.1px) {
  .bl-reason__items {
    position: relative;
  }
}
@media print, screen and (min-width: 768.1px) {
  .bl-reason__item:nth-of-type(n+2) {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #5A6C7A;
  }
}
@media print, screen and (min-width: 768.1px) {
  .bl-reason__button {
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .bl-reason {
    margin-top: 53.75vw;
    padding-bottom: 10.5vw;
    background: linear-gradient(-42.91deg, rgb(0, 154, 185) 0%, rgb(12, 86, 110) 40%, rgb(20, 45, 65) 100%);
  }
  .bl-reason__title {
    margin-top: calc(-30.75vw - 14px);
  }
  .bl-reason__image {
    margin-right: -10vw;
    transform: translateY(-30.75vw);
    margin-bottom: -30.75vw;
  }
  .bl-reason__image2 {
    margin: auto;
    width: 68vw;
  }
  .bl-reason__item {
    padding: 20px 0 32px;
  }
  .bl-reason__item:nth-of-type(n+2) {
    border-top: 2px solid #5A6C7A;
  }
  .bl-reason__button {
    margin-block: 20px 30px;
  }
}

.el-reason__number {
  display: block;
  text-align: center;
  color: #5A6C7A;
  font-weight: 700;
  font-size: 4.75rem;
  --font-size: 76;
}
.el-reason__title {
  color: #CAA800;
  font-weight: 700;
  font-size: 1.125rem;
  --font-size: 18;
  line-height: 1.5;
  padding-top: 0.1px;
  padding-bottom: 0.1px;
  letter-spacing: 0.025em;
}
.el-reason__title:before, .el-reason__title:after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}
.el-reason__title:before {
  margin-top: -0.25em;
}
.el-reason__title:after {
  margin-bottom: -0.25em;
}
.el-reason__description {
  margin-top: 12px;
  color: #fff;
  font-size: 0.9375rem;
  --font-size: 15;
  line-height: 1.7333333333;
  padding-top: 0.1px;
  padding-bottom: 0.1px;
  letter-spacing: 0.0253333333em;
}
.el-reason__description:before, .el-reason__description:after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}
.el-reason__description:before {
  margin-top: -0.3666666667em;
}
.el-reason__description:after {
  margin-bottom: -0.3666666667em;
}
@media print, screen and (min-width: 768.1px) {
  .el-reason {
    display: grid;
    grid-template-columns: 96px auto;
    grid-template-rows: auto auto;
    grid-template-areas: "number title" "number description";
  }
  .el-reason__number {
    grid-area: number;
    height: 50px;
    line-height: 50px;
  }
  .el-reason__title {
    grid-area: title;
  }
  .el-reason__description {
    grid-area: description;
  }
}
@media screen and (max-width: 768px) {
  .el-reason {
    margin: auto;
    max-width: 320px;
  }
  .el-reason__title {
    text-align: center;
  }
  .el-reason__description {
    margin-top: 16px;
    margin-left: auto;
    margin-right: auto;
  }
}

.bl-about__image {
  overflow: hidden;
}
.bl-about__image img {
  width: 100%;
}
.bl-about__read {
  margin-bottom: 0;
}
.bl-about__viewmore .icon {
  margin-left: 5px;
  font-size: 10px;
}
@media print, screen and (min-width: 1024.1px) {
  .bl-about {
    --item-width: 410px;
    --icon-right-position: 11px;
    margin-top: 105px;
  }
  .bl-about__row {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }
  .bl-about__image {
    width: 55.1587301587%;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 0;
    display: flex;
    align-items: center;
  }
  .bl-about__image .scaleDown {
    width: 100%;
  }
  .bl-about__image img {
    max-width: none;
    max-height: 324px;
  }
  .bl-about__section {
    padding: 65px 4.6626984127% 65px 16.0714285714%;
    min-width: 478px;
    background: #fff;
    width: 56.3492063492%;
    align-self: flex-end;
  }
  .bl-about__viewmore {
    margin-top: 39px;
  }
}
@media screen and (max-width: 1024px) {
  .bl-about {
    margin: 102px auto 0;
    width: 80%;
    position: relative;
    z-index: 2;
  }
  .bl-about::after {
    content: "";
    background: #fff;
    display: block;
    width: 96.875%;
    height: calc(100% + 45px + 58px);
    position: absolute;
    z-index: -1;
    right: -12.5%;
    top: -45px;
  }
  .bl-about__image {
    max-width: 100%;
  }
  .bl-about__section {
    margin-top: 30px;
  }
  .bl-about__title .en, .bl-about__title .ja {
    text-align: center !important;
  }
  .bl-about__viewmore {
    margin-top: 38px;
    margin-left: auto;
    margin-right: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.bl-other__item {
  width: var(--item-width);
  border-bottom: 2px solid #fff;
}
.bl-other__image {
  overflow: hidden;
}
@media print, screen and (min-width: 768.1px) {
  .bl-other {
    margin-top: 95px;
    display: flex;
    justify-content: space-between;
  }
  .bl-other__section {
    width: 43.6507936508%;
    min-width: 285px;
  }
  .bl-other__title {
    margin-top: 26px;
    width: 100vw;
  }
  .bl-other__items {
    margin-top: 26px;
  }
  .bl-other__item {
    max-width: 100%;
  }
  .bl-other__image {
    width: 44.8412698413%;
    display: grid;
    place-items: center;
  }
  .bl-other__image img {
    margin: auto;
  }
}
@media screen and (max-width: 768px) {
  .bl-other {
    margin-top: 120px;
  }
  .bl-other__title .mod_space {
    display: none;
  }
  .bl-other__items {
    margin-top: 28px;
  }
  .bl-other__image {
    margin: 18vw auto 0;
    width: 67.5vw;
  }
  .bl-other__image img {
    width: 100%;
  }
}

.el-menu {
  padding: 20px 0;
  display: flex;
  align-items: center;
  position: relative;
  color: #142D41;
  font-feature-settings: "palt";
}
:root {
  --icon-right-position: 11px;
  --color-genre-light1: #CAA800;
  --color-genre-light3: #142D41;
}

.el-menu__number {
  font-weight: 700;
  width: 66px;
  font-size: 52px;
  color: #fff;
}
.el-menu__title {
  font-weight: 700;
  padding-right: 1em;
  font-size: 1.0625rem;
  --font-size: 17;
  line-height: 1.4117647059;
  padding-top: 0.1px;
  padding-bottom: 0.1px;
  letter-spacing: 0.1em;
  word-break: keep-all;
}
.el-menu__title:before, .el-menu__title:after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}
.el-menu__title:before {
  margin-top: -0.2058823529em;
}
.el-menu__title:after {
  margin-bottom: -0.2058823529em;
}
.el-menu__icon {
  height: 28px;
  font-size: 28px;
  position: absolute;
  right: var(--icon-right-position);
  top: 0;
  bottom: 0;
  margin: auto;
}
.el-menu__icon .path1, .el-menu__icon .path2 {
  display: inline-block;
  position: relative;
}
.el-menu__icon .path1 {
  color: var(--color-genre-light1);
  transform: scale(0);
}
.el-menu__icon .path2 {
  color: #142D41;
  z-index: 1;
}
@media (hover: hover) {
  .el-menu, .el-menu__number, .el-menu__title, .el-menu__icon .path2 {
    transition: color 0.3s;
  }
  .el-menu__icon .path1 {
    transition: transform 0.3s, color 0.3s;
  }
  .el-menu:hover {
    color: var(--color-genre-light3);
  }
  .el-menu:hover .el-menu__icon .path1 {
    transform: scale(1);
  }
}
@media print, screen and (min-width: 768.1px) {
  .el-menu {
    width: var(--item-width);
    max-width: 100%;
  }
}
.bl-link-area {
  --color-bg: #142D41;
  --color-title-en: #CAA800;
  padding: 24px 20px 33px;
  background: var(--color-bg);
}
.bl-link-area__title {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  color: var(--color-title-en);
}
.bl-link-area__title .en {
  opacity: 1 !important;
  font-weight: 900;
  font-size: 2.5rem;
  --font-size: 40;
  line-height: 0.9;
  letter-spacing: 0.05em;
}
.bl-link-area__title .ja {
  padding-bottom: 5px;
  font-weight: 700;
  font-size: 1rem;
  --font-size: 16;
  line-height: 1;
  letter-spacing: 0.15em;
}
.bl-link-area__items {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  color: #fff;
}
.bl-link-area__description {
  text-align: center;
  font-size: 0.875rem;
  --font-size: 14;
  line-height: 1.4285714286;
  padding-top: 0.1px;
  padding-bottom: 0.1px;
  letter-spacing: 0.025em;
  text-indent: 0.025em;
}
.bl-link-area__description:before, .bl-link-area__description:after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}
.bl-link-area__description:before {
  margin-top: -0.2142857143em;
}
.bl-link-area__description:after {
  margin-bottom: -0.2142857143em;
}
.bl-link-area__description:empty {
  display: none;
}
.bl-link-area__link {
  margin: 13px auto 0;
  padding-bottom: 7px;
  max-width: 187px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #8996A0;
  transition: color 0.4s;
}
.bl-link-area__link .text {
  font-weight: 700;
  font-size: 0.9375rem;
  --font-size: 15;
  line-height: 1;
  letter-spacing: 0.0253333333em;
}
.bl-link-area__link .icomoon {
  margin-top: 2px;
  font-size: 10px;
}
@media (hover: hover) {
  .bl-link-area__link:hover {
    color: #009AB9;
  }
}
@media print, screen and (min-width: 768.1px) {
  .bl-link-area {
    margin-top: 109px;
    max-width: 658px;
  }
}
@media screen and (max-width: 768px) {
  .bl-link-area {
    margin-top: 20vw;
  }
}
/*# sourceMappingURL=page-index.css.map */