@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-main {
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
  max-width: 1028px;
}
@media screen and (max-width: 768px) {
  .bl-main {
    padding-left: 0;
    padding-right: 0;
    width: 80vw;
  }
}

@media print, screen and (min-width: 768.1px) {
  .bl-footer {
    margin-top: -40px;
  }
}
@media screen and (max-width: 768px) {
  .bl-footer {
    margin-top: -4vw;
  }
}

.bl-top__section {
  display: flex;
  flex-direction: column;
}
.bl-top__title {
  margin-top: 19px;
  padding: 10px 12px;
  background-image: var(--gradient);
  color: #fff;
  font-weight: 600;
  font-size: 1.25rem;
  --font-size: 20;
  line-height: 1.4;
  letter-spacing: 0.1em;
}
.bl-top__category {
  order: -1;
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
}
.bl-top__category .en {
  color: var(--color-genre);
  font-size: 2.6875rem;
  --font-size: 43;
  line-height: 1;
  letter-spacing: 0.05em;
}
.bl-top__category .ja {
  color: #86847D;
  font-weight: 500;
  font-size: 1rem;
  --font-size: 16;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-bottom: 0.3em;
}
.bl-top__catch {
  font-weight: 500;
  font-size: 1.0625rem;
  --font-size: 17;
  line-height: 1.75;
  padding-top: 0.1px;
  padding-bottom: 0.1px;
  letter-spacing: 0.15em;
  white-space: pre-line;
}
.bl-top__catch:before, .bl-top__catch:after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}
.bl-top__catch:before {
  margin-top: -0.375em;
}
.bl-top__catch:after {
  margin-bottom: -0.375em;
}
.bl-top__description {
  margin-top: 28px;
  font-size: 0.875rem;
  --font-size: 14;
  line-height: 1.9285714286;
  padding-top: 0.1px;
  padding-bottom: 0.1px;
  letter-spacing: 0.05em;
  white-space: pre-line;
  text-align: justify;
}
.bl-top__description:before, .bl-top__description:after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}
.bl-top__description:before {
  margin-top: -0.4642857143em;
}
.bl-top__description:after {
  margin-bottom: -0.4642857143em;
}
.bl-top__image {
  overflow: hidden;
}
@media print, screen and (min-width: 768.1px) {
  .bl-top {
    margin-top: 120px;
    display: flex;
    justify-content: space-between;
  }
  .bl-top__section {
    padding-top: 20px;
    padding-left: 7.7380952381%;
    width: 50%;
  }
  .bl-top__catch {
    margin-top: 30px;
  }
  .bl-top__image {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .bl-top {
    margin-top: 6.625vw;
  }
  .bl-top__category {
    margin-right: -2.5vw;
  }
  .bl-top__catch {
    margin-top: 35px;
  }
  .bl-top__image {
    margin-top: 34px;
  }
  .bl-top__image img {
    width: 100%;
  }
}

.bl-detail__items {
  margin-top: 17px;
}
.bl-detail__item {
  margin-top: 65px;
}
.bl-detail__title {
  padding: 9px 13px;
  background: #142D41;
  border-left: 6px solid var(--color-genre);
  font-weight: 500;
  color: #fff;
  font-size: 1rem;
  --font-size: 16;
  line-height: 1.5;
  letter-spacing: 0.025em;
}
.bl-detail__description {
  margin-top: 28px;
  font-size: 0.875rem;
  --font-size: 14;
  line-height: 1.9285714286;
  padding-top: 0.1px;
  padding-bottom: 0.1px;
  letter-spacing: 0.025em;
  white-space: pre-line;
  text-align: justify;
}
.bl-detail__description:before, .bl-detail__description:after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}
.bl-detail__description:before {
  margin-top: -0.4642857143em;
}
.bl-detail__description:after {
  margin-bottom: -0.4642857143em;
}
.bl-detail__more {
  margin-top: 30px;
}
@media print, screen and (min-width: 768.1px) {
  .bl-detail__items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .bl-detail__item {
    width: 46.0317460317%;
  }
}
/*# sourceMappingURL=taxonomy-treatment-category.css.map */