@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のサイズ縮小用
*/
.module_header--title-ja {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "YuMincho", "Yu Mincho", "MS PMincho", serif;
}

/* 各種設定 */
/* 色の変数 */
/**
 * 他で使用する色
 */
/*
 * 優先して読み込まれる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 内の変数群) */
.el_common {
  padding-bottom: 222px;
  position: relative;
  z-index: 0;
}
.el_common:before {
  content: "";
  display: block;
  width: 100%;
  max-width: 683px;
  height: 100%;
  margin: auto;
  position: absolute;
  z-index: 0;
  top: 55px;
  left: 0;
  right: 0;
  background: url(../../images/202104/caravan/map-japan.png) no-repeat top center/contain;
}
@media (max-width: 768px) {
  .el_common:before {
    top: 7.2vw;
    width: 64.4vw;
  }
}
.el_common--title-ja {
  margin-top: 20px;
}
.el_common--object-right {
  margin-top: 20px;
  max-height: 115px !important;
}
@media (max-width: 768px) {
  .el_common {
    padding-bottom: 47vw;
  }
}

.module_header--title-en img {
  display: block;
  margin: auto;
}
.module_header--title-ja {
  margin-top: 46px;
  text-align: center;
  font-size: 1.875rem;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  color: #fff;
  font-weight: 900;
}
.module_header--title-ja.color-black {
  color: #000;
}
.module_header--description {
  margin-top: 46px;
  text-align: center;
  font-size: 1rem;
  line-height: 2.25;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  font-weight: 700;
}
.module_header--description:before, .module_header--description:after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}
.module_header--description:before {
  margin-top: -0.625em;
}
.module_header--description:after {
  margin-bottom: -0.625em;
}
@media (max-width: 768px) {
  .module_header--title-en {
    height: 4.9333333333vw;
  }
  .module_header--title-en img {
    width: auto;
    height: 100%;
  }
  .module_header--title-ja {
    margin-top: 7.3333333333vw;
    font-size: 4vw;
  }
  .module_header--description {
    margin-top: 5.3333333333vw;
    font-size: 3.4666666667vw;
  }
}

.bl_sumit {
  padding-bottom: 60px;
  overflow: hidden;
}
.bl_sumit--inner {
  max-width: 100%;
  width: 1080px;
  margin: auto;
}
.bl_sumit--title {
  margin-bottom: 35px;
}
.bl_sumit--title img {
  margin: auto;
}
.bl_sumit--title span {
  margin-top: 30px;
  display: block;
  text-align: center;
  font-size: 1.25rem;
  line-height: 2.045;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #000;
}
.bl_sumit--container {
  margin-top: 55px;
  padding-bottom: 126px;
  position: relative;
}
.bl_sumit--about {
  max-width: 465px;
  font-family: "Noto Sans JP", sans-serif;
}
.bl_sumit--about_title {
  font-size: 1.875rem;
  line-height: 1.6016666667;
  letter-spacing: 0.1em;
  font-weight: 900;
}
.bl_sumit--about_description {
  margin-top: 25px;
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.05em;
}
.bl_sumit--map {
  position: relative;
}
.bl_sumit--map img {
  margin: auto;
}
.bl_sumit--map .goal {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  height: 100%;
  z-index: 1;
}
@media (max-width: 768px) {
  .bl_sumit {
    margin-top: 12.6666666667vw;
    padding-bottom: 0;
  }
  .bl_sumit--container {
    margin-top: 0;
    padding-bottom: 0;
    display: flex;
    flex-flow: column-reverse nowrap;
  }
  .bl_sumit--title {
    margin: 20px auto 5.3333333333vw;
    max-width: 83.656vw;
  }
  .bl_sumit--title span {
    font-size: 4.2666666667vw;
    line-height: 1.71875;
  }
  .bl_sumit--about {
    width: 95%;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .bl_sumit--about_title {
    font-size: 4.2666666667vw;
  }
  .bl_sumit--about_description {
    font-size: 4vw;
    line-height: 2;
    letter-spacing: 0.05em;
  }
  .bl_sumit--map {
    margin: -4vw auto 0;
  }
  .bl_sumit--map img {
    margin: auto;
  }
}

.bl_profile {
  display: flex;
  justify-content: flex-start;
  flex-flow: row wrap;
  width: 271px;
  height: 425px;
  position: absolute;
  z-index: 1;
  font-weight: 700;
}
.bl_profile a {
  transition: 0.35s;
}
.bl_profile a:hover {
  opacity: 0.5;
}
.bl_profile--area {
  order: -100;
  display: flex;
  align-items: center;
  width: 100%;
  line-height: 1;
  margin-bottom: 12px;
}
.bl_profile--area .area.en img {
  display: block;
  width: auto;
  height: auto;
}
.bl_profile--info, .bl_profile--image {
  height: 100px;
}
.bl_profile--info {
  width: calc(100% - 100px);
  padding-left: 16px;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
}
.bl_profile--info .name {
  margin-top: 9px;
  font-size: 2.1875rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.bl_profile--info .romen {
  margin-top: 11px;
  font-size: 0.8125rem;
  letter-spacing: 0.2em;
  white-space: nowrap;
}
.bl_profile--info .notes {
  font-size: 0.875rem;
  font-weight: 900;
  color: #fff;
  height: 28px;
  line-height: 28px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
}
.bl_profile--info .notes > * {
  border-radius: 4px;
  padding-left: 15px;
  padding-right: 13.4px;
  margin-right: 4px;
}
.bl_profile--info .notes a {
  color: inherit;
}
.bl_profile--info .notes .role {
  white-space: nowrap;
}
.bl_profile--info .notes .twitter {
  background-color: transparent !important;
  padding: 0;
}
.bl_profile--info .notes .twitter img {
  height: 28px;
  width: auto;
}
.bl_profile--info .notes .vlog {
  margin-right: 0;
}
.bl_profile--image {
  order: -1;
  width: 100px;
}
.bl_profile--movie {
  margin-top: 7px;
  width: 100%;
  height: 92px;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.1875rem;
  text-align: center;
  border-radius: 6px;
}
.bl_profile--movie .report {
  display: block;
}
.bl_profile--movie .report img {
  display: block;
  margin: auto;
}
.bl_profile--movie .section {
  margin-top: 10px;
  display: block;
}
.bl_profile--movie:hover {
  opacity: 1 !important;
}
.bl_profile--car {
  position: relative;
}
.bl_profile--car .car {
  display: block;
}
.bl_profile--car .fukidashi {
  position: absolute;
  right: 93%;
  top: -6%;
}
.bl_profile.east {
  color: #1B488E;
  left: 9%;
  top: -4%;
  margin: auto;
}
.bl_profile.east .area.jp {
  background: #1B488E;
}
.bl_profile.east .notes > * {
  background-color: #1B488E;
}
.bl_profile.east .bl_profile--movie {
  background-color: #1B488F;
}
.bl_profile.east .bl_profile--movie:hover {
  background-color: #1B488E;
}
.bl_profile.east .bl_profile--info .name {
  letter-spacing: -0.15em;
}
.bl_profile.west {
  color: #C12318;
  right: 5%;
  bottom: 6%;
}
.bl_profile.west .area.jp {
  background: #C12318;
}
.bl_profile.west .notes > * {
  background-color: #C12318;
}
.bl_profile.west .bl_profile--movie {
  background-color: #C22318;
}
.bl_profile.west .bl_profile--movie:hover {
  background-color: #C12318;
}
@media (max-width: 768px) {
  .bl_profile {
    padding-bottom: 0;
    position: relative;
  }
  .bl_profile--wrap {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    position: relative;
    margin-left: calc((100% - 100vw) / 2);
    margin-right: calc((100% - 100vw) / 2);
    width: auto !important;
    max-width: none;
  }
  .bl_profile--wrap:before, .bl_profile--wrap:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  .bl_profile--wrap:after {
    background: no-repeat url(../../images/202104/caravan/bg-fish-r.png) right 15%;
    background-size: 26.2666666667vw 17.2vw;
  }
  .bl_profile--wrap:before {
    background: no-repeat url(../../images/202104/caravan/bg-fish-l.png) left 70%;
    background-size: 22.8vw 18.4vw;
  }
  .bl_profile.west .bl_profile--area {
    justify-content: flex-end;
  }
  .bl_profile.west {
    margin-top: 7.2vw;
    order: 2;
    margin-right: -30px;
    right: initial;
    bottom: initial;
    align-self: flex-end;
  }
  .bl_profile.east {
    margin-top: 13.6vw;
    order: 1;
    left: initial;
    top: initial;
    align-self: flex-start;
  }
  .bl_profile--car {
    margin: auto;
    margin-top: 3.6vw !important;
    width: 82.7586206897%;
  }
  .bl_profile--car .fukidashi {
    top: 0 !important;
    width: 40.8866995074%;
  }
  .bl_profile.east .bl_profile--car .fukidashi {
    left: 105%;
  }

  .bl_profile.west .bl_profile--car .fukidashi {
    right: 105%;
  }
}
@media (max-width: 520px) {
  .bl_profile--car {
    margin-top: 9.6vw;
  }
  .bl_profile--car .fukidashi {
    right: 79%;
    top: -23%;
  }
  .bl_profile.west, .bl_profile.east {
    margin-top: 8.6666666667vw;
    transform: scale(0.8);
    transform-origin: top center;
    margin: 0;
  }
  .bl_profile.west {
    margin-top: -21vw;
  }
  .bl_profile--area {
    margin-top: 12.1333333333vw;
  }
  .bl_profile--area .area.en img {
    width: 75%;
  }
  .bl_profile.west .bl_profile--area .area.en img {
    margin: 0 0 0 auto;
  }
  .bl_profile.east .bl_profile--area .area.en img {
    margin: 0 auto 0 0;
  }
}
.bl_videoblog {
  padding-bottom: 148px !important;
}
.bl_videoblog--item {
  margin-bottom: 70px !important;
}
.bl_videoblog--item.west.n1 {
  order: 1;
}
.bl_videoblog--item.west.n2 {
  order: 3;
}
.bl_videoblog--item.east.n1 {
  order: 2;
}
.bl_videoblog--item.east.n2 {
  order: 4;
}
.bl_videoblog--archive {
  margin: 0 auto;
  display: block;
  background: #2861CC;
  color: #fff;
  text-align: center;
  font-size: 1.0625rem;
  letter-spacing: 0.5em;
  text-indent: 0.5em;
  font-weight: 700;
  border-radius: 8px;
  height: 50px;
  line-height: 50px;
  transition: 0.35s;
}
.bl_videoblog--archive:hover {
  background-color: #1B488E;
}
@media (max-width: 768px) {
  .bl_videoblog {
    padding-bottom: 0 !important;
  }
  .bl_videoblog .el_title {
    width: 83.6vw;
  }
  .bl_videoblog .el_title .sub {
    margin-top: 24px;
    font-size: 4.2666666667vw;
    line-height: 1.71875;
  }
  .bl_videoblog--item {
    width: 100% !important;
    order: 0 !important;
    margin-bottom: 28px !important;
  }
  .bl_videoblog--videowrap:after {
    display: none !important;
  }
  .bl_videoblog--more,
.bl_videoblog figcaption, .bl_videoblog--archive {
    width: 84vw;
    margin-left: auto;
    margin-right: auto;
  }
  .bl_videoblog--place {
    transform: translateY(50%);
  }
  .bl_videoblog--archive {
    display: none;
    border: 0;
    border-radius: 4px;
  }
}

.el_title {
  max-width: 627.5px;
  width: 58.1018518519%;
  margin: auto;
}
.el_title .main {
  margin: auto;
}
.el_title .sub {
  margin-top: 32px;
  color: #000;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.25rem;
  line-height: 2.35;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  font-weight: 700;
}
.el_title--description {
  margin-top: 124px;
  text-align: center;
  font-size: 1.25rem;
  line-height: 2.35;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  font-weight: 900;
}

.bl_goal-movie {
  padding: 0 0 240px;
}
.bl_goal-movie--image {
  display: block;
  margin-top: 42px;
}
.bl_goal-movie--image img {
  margin: auto;
  display: block;
}
.bl_goal-movie--description {
  margin-top: 25px;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  line-height: 1.4;
  text-align: center;
}
.bl_goal-movie--description a {
  color: inherit;
}
.bl_goal-movie--description a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .bl_goal-movie {
    margin-top: 15.4666666667vw;
    padding: 0;
  }
  .bl_goal-movie--description {
    margin: auto;
    padding: 8vw 0;
    font-size: 3.4666666667vw;
    line-height: 5.4666666667vw;
  }
}

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