@charset "UTF-8";
/*
====================================================================================================
----------------------------------------------------------------------------------------------------

	style.css
	( style.scss )
	
----------------------------------------------------------------------------------------------------

    ページデザイン メインスタイルシート

----------------------------------------------------------------------------------------------------
*/
/*
-----

! デザインフォントとして Google Fonts より Quicksand を表示しています。

    <!-- Google Fonts / Quicksand -->
    <link href="https://fonts.googleapis.com/css?family=Quicksand" rel="stylesheet">


【 Quicksand 】
    
    Quicksand - Google Fonts
    https://fonts.google.com/specimen/Quicksand

    font-family: 'Quicksand', sans-serif;

    ライセンス： Open Font License
    http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL_web

-----
*/
/*
-----

PC版を基準に記述
スマートフォン表示に対してメディアクエリを適用

-----
*/
/*
-----

《 common.js 》

メニュー表示時：JavaScript で body に status-menu-open クラスを付加

スクロール時：JavaScript で body に status-scroll クラスを付加

スマートフォン（電話発信可能端末）表示時：JavaScript で body に agent-is-mobile-phone クラスを付加

-----
*/
/*
----------------------------------------------------------------------------------------------------

Compassを利用
@import "compass";

-----
*/
/*
----------------------------------------------------------------------------------------------------

タグのデフォルト調整
@import "compass/reset";

-----
*/
/* line 5, C:/Ruby25-x64/lib/ruby/gems/2.5.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

/* line 22, C:/Ruby25-x64/lib/ruby/gems/2.5.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
html {
  line-height: 1;
}

/* line 24, C:/Ruby25-x64/lib/ruby/gems/2.5.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
ol, ul {
  list-style: none;
}

/* line 26, C:/Ruby25-x64/lib/ruby/gems/2.5.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 28, C:/Ruby25-x64/lib/ruby/gems/2.5.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

/* line 30, C:/Ruby25-x64/lib/ruby/gems/2.5.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
q, blockquote {
  quotes: none;
}
/* line 103, C:/Ruby25-x64/lib/ruby/gems/2.5.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

/* line 32, C:/Ruby25-x64/lib/ruby/gems/2.5.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
a img {
  border: none;
}

/* line 116, C:/Ruby25-x64/lib/ruby/gems/2.5.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

/*
----------------------------------------------------------------------------------------------------

基本設定の読み込み
@import "base";

-----
*/
@keyframes highlight-gradation-animate {
  0% {
    background: linear-gradient(150deg, #ea711e, #ffd021);
  }
  10% {
    background: linear-gradient(168deg, #ea711e, #ffd021);
  }
  20% {
    background: linear-gradient(186deg, #ea711e, #ffd021);
  }
  30% {
    background: linear-gradient(204deg, #ea711e, #ffd021);
  }
  40% {
    background: linear-gradient(222deg, #ea711e, #ffd021);
  }
  50% {
    background: linear-gradient(240deg, #ea711e, #ffd021);
  }
  60% {
    background: linear-gradient(258deg, #ea711e, #ffd021);
  }
  70% {
    background: linear-gradient(276deg, #ea711e, #ffd021);
  }
  80% {
    background: linear-gradient(294deg, #ea711e, #ffd021);
  }
  90% {
    background: linear-gradient(312deg, #ea711e, #ffd021);
  }
  100% {
    background: linear-gradient(330deg, #ea711e, #ffd021);
  }
}
/*
----------------------------------------------------------------------------------------------------

独自関数の読み込み
@import "func";

-----
*/
/*
----------------------------------------------------------------------------------------------------

レイアウトデザインの読み込み
@import "layout";

-----
*/
/*
==================================================
--------------------------------------------------

基本設定

--------------------------------------------------
==================================================
*/
/*
==================================================

	フォントやカラーの設定

==================================================
*/
/*----------------------------
	HTMLとBODY
--------------------------- */
/* line 35, ../scss/_layout.scss */
html {
  width: 100%;
  margin: 0;
  padding: 0;
  /* フォントを設定 */
  background-color: #fff;
  color: #1a1a1a;
  /* 標準フォント */
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-weight: normal;
  font-size: 16px;
  line-height: 1.8;
}

/* line 51, ../scss/_layout.scss */
body {
  width: 100%;
  margin: 0;
  padding: 0;
}

/*
==================================================

	タグのデフォルト設定

==================================================
*/
/*----------------------------
	aタグのスタイルを解除（cursorを除く）
--------------------------- */
/* line 1271, ../scss/_func.scss */
a, a:link, a:hover, a:focus, a:visited {
  text-decoration: inherit;
  color: inherit;
}

/*----------------------------
	aタグの改行設定（URL幅溢れ対策）
--------------------------- */
/* line 80, ../scss/_layout.scss */
a[href^=http] {
  word-break: break-all;
}

/*----------------------------
	フォームタグのフォント設定
--------------------------- */
/* line 88, ../scss/_layout.scss */
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
}

/*
==================================================

	コンテナの設定

==================================================
*/
/*----------------------------
	配置コンテナ
--------------------------- */
/* line 105, ../scss/_layout.scss */
.container {
  display: block;
  /* 幅高さの基準を変更 */
  box-sizing: border-box;
  width: 100%;
  max-width: 1080px;
  padding-left: 70px;
  padding-right: 70px;
  margin-left: auto;
  margin-right: auto;
  margin-left: auto;
  margin-right: auto;
}
@media all and (min-width: 960px) and (max-width: 1199px) {
  /* line 105, ../scss/_layout.scss */
  .container {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media all and (min-width: 768px) and (max-width: 959px) {
  /* line 105, ../scss/_layout.scss */
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media all and (min-width: 480px) and (max-width: 767px) {
  /* line 105, ../scss/_layout.scss */
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media all and (max-width: 479px) {
  /* line 105, ../scss/_layout.scss */
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* line 109, ../scss/_layout.scss */
.container-mini {
  display: block;
  /* 幅高さの基準を変更 */
  box-sizing: border-box;
  width: 100%;
  max-width: 860px;
  padding-left: 70px;
  padding-right: 70px;
  margin-left: auto;
  margin-right: auto;
  margin-left: auto;
  margin-right: auto;
}
@media all and (min-width: 960px) and (max-width: 1199px) {
  /* line 109, ../scss/_layout.scss */
  .container-mini {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media all and (min-width: 768px) and (max-width: 959px) {
  /* line 109, ../scss/_layout.scss */
  .container-mini {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media all and (min-width: 480px) and (max-width: 767px) {
  /* line 109, ../scss/_layout.scss */
  .container-mini {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media all and (max-width: 479px) {
  /* line 109, ../scss/_layout.scss */
  .container-mini {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/*
==================================================

	その他の動作設定

==================================================
*/
/* ---------------------------
	電話番号リンクのデザイン
--------------------------- */
/* line 1271, ../scss/_func.scss */
a.call-link, a.call-link:link, a.call-link:hover, a.call-link:focus, a.call-link:visited {
  /* PCで表示 */
  color: inherit;
  text-decoration: inherit;
  cursor: text;
}
/* line 1271, ../scss/_func.scss */
body.agent-is-mobile-phone a.call-link, body.agent-is-mobile-phone a.call-link:link, body.agent-is-mobile-phone a.call-link:hover, body.agent-is-mobile-phone a.call-link:focus, body.agent-is-mobile-phone a.call-link:visited {
  /* スマホで表示 */
  text-decoration: underline;
  cursor: pointer;
}

/*----------------------------
	改行制御
--------------------------- */
/* line 157, ../scss/_layout.scss */
.line-break-span span {
  display: inline-block;
}

/*----------------------------
	PCのみ表示クラス
--------------------------- */
@media all and (max-width: 767px) {
  /* line 166, ../scss/_layout.scss */
  .pc-only {
    display: none !important;
  }
}

/*----------------------------
	スマートフォンのみ表示クラス
--------------------------- */
@media all and (min-width: 768px) {
  /* line 176, ../scss/_layout.scss */
  .sp-only {
    display: none !important;
  }
}

/*----------------------------
	初期表示アニメーション設定
--------------------------- */
/* line 186, ../scss/_layout.scss */
.status-before-display {
  /* 変形 */
  -moz-transform: translateY(15px);
  -ms-transform: translateY(15px);
  -webkit-transform: translateY(15px);
  transform: translateY(15px);
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
}
@media print {
  /* line 186, ../scss/_layout.scss */
  .status-before-display {
    /* 変形 */
    -moz-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none;
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
  }
}

/* line 194, ../scss/_layout.scss */
.status-after-display {
  /* 変形 */
  -moz-transform: none;
  -ms-transform: none;
  -webkit-transform: none;
  transform: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  /* アニメーション変化 */
  -moz-transition: filter 0.8s ease-out 0s, opacity 0.8s ease-out 0s, -moz-transform 0.8s ease-out 0s, -ms-transform 0.8s ease-out 0s, -webkit-transform 0.8s ease-out 0s, transform 0.8s ease-out 0s;
  -o-transition: filter 0.8s ease-out 0s, opacity 0.8s ease-out 0s, -moz-transform 0.8s ease-out 0s, -ms-transform 0.8s ease-out 0s, -webkit-transform 0.8s ease-out 0s, transform 0.8s ease-out 0s;
  -webkit-transition: filter 0.8s ease-out 0s, opacity 0.8s ease-out 0s, -moz-transform 0.8s ease-out 0s, -ms-transform 0.8s ease-out 0s, -webkit-transform 0.8s ease-out 0s, transform 0.8s ease-out 0s;
  transition: filter 0.8s ease-out 0s, opacity 0.8s ease-out 0s, -moz-transform 0.8s ease-out 0s, -ms-transform 0.8s ease-out 0s, -webkit-transform 0.8s ease-out 0s, transform 0.8s ease-out 0s;
}

/*----------------------------
	画像フレーム
--------------------------- */
/* line 205, ../scss/_layout.scss */
div.image-cover {
  position: relative;
  overflow: hidden;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
/* line 211, ../scss/_layout.scss */
div.image-cover img.screen {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  height: auto;
  /* 変形 */
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
/* line 221, ../scss/_layout.scss */
div.image-cover.screen-built img.screen {
  display: none;
}
@media print {
  /* line 220, ../scss/_layout.scss */
  div.image-cover.screen-built {
    background-image: none !important;
  }
  /* line 226, ../scss/_layout.scss */
  div.image-cover.screen-built img.screen {
    display: block;
  }
}

/*----------------------------
	スクロール半追従背景
--------------------------- */
/* line 238, ../scss/_layout.scss */
.scroll-follow-background {
  position: relative;
  overflow: hidden;
}
/* line 241, ../scss/_layout.scss */
.scroll-follow-background .scroll-follow-item {
  position: absolute;
  width: 100%;
  display: block;
}
/* line 247, ../scss/_layout.scss */
.scroll-follow-background .scroll-follow-item.target-wrapper {
  height: 180%;
}
/* line 250, ../scss/_layout.scss */
.scroll-follow-background .scroll-follow-item.target-window {
  height: 120vh;
}
/* line 253, ../scss/_layout.scss */
.scroll-follow-background .scroll-follow-item.orient-top {
  top: 0;
}
/* line 256, ../scss/_layout.scss */
.scroll-follow-background .scroll-follow-item.orient-bottom {
  bottom: 0;
}
@media all and (max-width: 767px) {
  /* line 241, ../scss/_layout.scss */
  .scroll-follow-background .scroll-follow-item {
    /* 変形 */
    -moz-transform: none !important;
    -ms-transform: none !important;
    -webkit-transform: none !important;
    transform: none !important;
  }
  /* line 261, ../scss/_layout.scss */
  .scroll-follow-background .scroll-follow-item.target-wrapper {
    height: 100% !important;
  }
  /* line 264, ../scss/_layout.scss */
  .scroll-follow-background .scroll-follow-item.target-window {
    height: 100% !important;
  }
  /* line 267, ../scss/_layout.scss */
  .scroll-follow-background .scroll-follow-item.orient-top {
    top: 0 !important;
  }
  /* line 270, ../scss/_layout.scss */
  .scroll-follow-background .scroll-follow-item.orient-bottom {
    bottom: 0 !important;
  }
}
@media all and (-ms-high-contrast: none) {
  /* line 241, ../scss/_layout.scss */
  .scroll-follow-background .scroll-follow-item {
    /* Internet Explorer only */
    /* 変形 */
    -moz-transform: none !important;
    -ms-transform: none !important;
    -webkit-transform: none !important;
    transform: none !important;
  }
  /* line 276, ../scss/_layout.scss */
  .scroll-follow-background .scroll-follow-item.target-wrapper {
    height: 100% !important;
  }
  /* line 279, ../scss/_layout.scss */
  .scroll-follow-background .scroll-follow-item.target-window {
    height: 100% !important;
  }
  /* line 282, ../scss/_layout.scss */
  .scroll-follow-background .scroll-follow-item.orient-top {
    top: 0 !important;
  }
  /* line 285, ../scss/_layout.scss */
  .scroll-follow-background .scroll-follow-item.orient-bottom {
    bottom: 0 !important;
  }
}
@supports (-ms-ime-align: auto) {
  /* line 241, ../scss/_layout.scss */
  .scroll-follow-background .scroll-follow-item {
    /* 変形 */
    -moz-transform: none !important;
    -ms-transform: none !important;
    -webkit-transform: none !important;
    transform: none !important;
  }
  /* line 291, ../scss/_layout.scss */
  .scroll-follow-background .scroll-follow-item.target-wrapper {
    height: 100% !important;
  }
  /* line 294, ../scss/_layout.scss */
  .scroll-follow-background .scroll-follow-item.target-window {
    height: 100% !important;
  }
  /* line 297, ../scss/_layout.scss */
  .scroll-follow-background .scroll-follow-item.orient-top {
    top: 0 !important;
  }
  /* line 300, ../scss/_layout.scss */
  .scroll-follow-background .scroll-follow-item.orient-bottom {
    bottom: 0 !important;
  }
}

/*----------------------------
	アコーディオンメニュー
--------------------------- */
/* line 312, ../scss/_layout.scss */
.accordion-next {
  cursor: pointer;
}

/*----------------------------
	リサイズ時の表示崩れ対応
--------------------------- */
/* line 322, ../scss/_layout.scss */
body.on-resize * {
  /* アニメーション変化 */
  -moz-transition: none !important;
  -o-transition: none !important;
  -webkit-transition: none !important;
  transition: none !important;
}

/*----------------------------
	SLICKの印刷対応
--------------------------- */
@media print {
  /* line 333, ../scss/_layout.scss */
  .slick-fade-printable .slick-list {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    left: 0 !important;
    -webkit-transform: none !important;
    -moz-transform: none !important;
    -ms-transform: none !important;
    -o-transform: none !important;
    transform: none !important;
  }
  /* line 350, ../scss/_layout.scss */
  .slick-fade-printable .slick-list .slick-track {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    left: 0 !important;
    -webkit-transform: none !important;
    -moz-transform: none !important;
    -ms-transform: none !important;
    -o-transform: none !important;
    transform: none !important;
  }
  /* line 367, ../scss/_layout.scss */
  .slick-fade-printable .slick-list .slick-track .slick-slide {
    float: none !important;
    position: absolute !important;
    display: block !important;
    opacity: 0 !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    left: 0 !important;
    -webkit-transform: none !important;
    -moz-transform: none !important;
    -ms-transform: none !important;
    -o-transform: none !important;
    transform: none !important;
  }
  /* line 386, ../scss/_layout.scss */
  .slick-fade-printable .slick-list .slick-track .slick-slide.slick-current {
    opacity: 1 !important;
  }
}

/*
==================================================
--------------------------------------------------

ヘッダー、フッターなどサイト全体で共通のデザイン

--------------------------------------------------
==================================================
*/
/*
==================================================

	サイトヘッダー、サイトフッター、メインコンテンツの配置と基本設定

==================================================
*/
/* ---------------------------
    サイトヘッダーの配置デザイン
--------------------------- */
/* line 417, ../scss/_layout.scss */
header#common-header {
  position: fixed;
  z-index: 10001;
  left: 0;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}
@media print {
  /* line 417, ../scss/_layout.scss */
  header#common-header {
    position: static;
  }
}

/* ---------------------------
    スクロール領域の配置デザイン
--------------------------- */
/* line 436, ../scss/_layout.scss */
div#scroll-content {
  /* 通常スクロール */
  position: static;
  width: 100%;
  /* 非表示操作の不具合防止 */
  overflow: hidden;
}

/* ---------------------------
    メインコンテンツの配置デザイン
--------------------------- */
/* line 466, ../scss/_layout.scss */
main {
  /* 通常スクロール ただし内部要素の位置調整のためrelative指定 */
  position: relative;
  /* サイズと余白を設定 */
  /* ヘッダー半透明のため上部余白不要 */
  /* フッター下付け調整のため最低高さを設定 */
  /* 幅高さの基準を変更 */
  box-sizing: border-box;
  width: 100%;
  height: auto;
  /* 非表示操作の不具合防止 */
  overflow: hidden;
  margin: 0;
  padding: 0;
  /* 子要素を中央配置 */
  text-align: center;
}

/* ---------------------------
    サイトフッターの配置デザイン
--------------------------- */
/* line 493, ../scss/_layout.scss */
footer#common-footer {
  position: relative;
  z-index: 9998;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}

/*
==================================================

	サイトヘッダーとメニュー表示の詳細設定

==================================================
*/
/* line 856, ../scss/_layout.scss */
header#common-header {
  top: -90px;
  background-color: #fff;
  /* アニメーション変化 */
  -moz-transition: top 0.6s ease 0s;
  -o-transition: top 0.6s ease 0s;
  -webkit-transition: top 0.6s ease 0s;
  transition: top 0.6s ease 0s;
}
@media all and (min-width: 960px) and (max-width: 1199px) {
  /* line 856, ../scss/_layout.scss */
  header#common-header {
    top: -90px;
  }
}
@media all and (min-width: 768px) and (max-width: 959px) {
  /* line 856, ../scss/_layout.scss */
  header#common-header {
    top: -60px;
  }
}
@media all and (min-width: 480px) and (max-width: 767px) {
  /* line 856, ../scss/_layout.scss */
  header#common-header {
    top: -60px;
  }
}
@media all and (max-width: 479px) {
  /* line 856, ../scss/_layout.scss */
  header#common-header {
    top: -60px;
  }
}
/* line 875, ../scss/_layout.scss */
body.status-scroll-top-limit header#common-header {
  top: 0;
}
/* line 880, ../scss/_layout.scss */
header#common-header .orient {
  position: relative;
  display: block;
  /* 幅高さの基準を変更 */
  box-sizing: border-box;
  width: 100%;
  max-width: 1400px;
  padding-left: 70px;
  padding-right: 70px;
  margin-left: auto;
  margin-right: auto;
  height: 90px;
}
@media all and (min-width: 960px) and (max-width: 1199px) {
  /* line 880, ../scss/_layout.scss */
  header#common-header .orient {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media all and (min-width: 768px) and (max-width: 959px) {
  /* line 880, ../scss/_layout.scss */
  header#common-header .orient {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media all and (min-width: 480px) and (max-width: 767px) {
  /* line 880, ../scss/_layout.scss */
  header#common-header .orient {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media all and (max-width: 479px) {
  /* line 880, ../scss/_layout.scss */
  header#common-header .orient {
    padding-left: 20px;
    padding-right: 20px;
  }
}
/* line 94, ../scss/_func.scss */
header#common-header .orient::after {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  clear: both;
}
@media all and (min-width: 960px) and (max-width: 1199px) {
  /* line 880, ../scss/_layout.scss */
  header#common-header .orient {
    height: 90px;
  }
}
@media all and (min-width: 768px) and (max-width: 959px) {
  /* line 880, ../scss/_layout.scss */
  header#common-header .orient {
    height: 60px;
  }
}
@media all and (min-width: 480px) and (max-width: 767px) {
  /* line 880, ../scss/_layout.scss */
  header#common-header .orient {
    height: 60px;
  }
}
@media all and (max-width: 479px) {
  /* line 880, ../scss/_layout.scss */
  header#common-header .orient {
    height: 60px;
  }
}
/* line 897, ../scss/_layout.scss */
header#common-header .orient #common-header-title {
  display: inline-block;
}
@media all and (min-width: 480px) {
  /* line 897, ../scss/_layout.scss */
  header#common-header .orient #common-header-title {
    /* ▼ 上下左右を中央配置 */
    position: absolute;
    top: 50%;
    left: 50%;
    /* 変形 */
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    /* ▲ 上下左右を中央配置 */
  }
}
@media all and (max-width: 479px) {
  /* line 897, ../scss/_layout.scss */
  header#common-header .orient #common-header-title {
    /* ▼ 上下を中央配置 */
    position: absolute;
    top: 50%;
    /* 変形 */
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    /* ▲ 上下を中央配置 */
    left: 20px;
  }
}
/* line 910, ../scss/_layout.scss */
header#common-header .orient #common-header-title a {
  display: inline-block;
}
@media all and (min-width: 480px) and (max-width: 959px) {
  /* line 914, ../scss/_layout.scss */
  header#common-header .orient #common-header-title img {
    height: 40px;
    width: auto;
  }
}
@media all and (max-width: 479px) {
  /* line 920, ../scss/_layout.scss */
  header#common-header .orient #common-header-title img {
    height: 36px;
    width: auto;
  }
}
/* line 926, ../scss/_layout.scss */
header#common-header .orient #common-header-menu {
  /* ▼ 上下を中央配置 */
  position: absolute;
  top: 50%;
  /* 変形 */
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  /* ▲ 上下を中央配置 */
  display: inline-block;
  right: 70px;
  font-family: "Quicksand", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-weight: normal;
  letter-spacing: 0;
  font-size: 24px;
  font-size: 1.5rem;
}
@media all and (min-width: 960px) and (max-width: 1199px) {
  /* line 926, ../scss/_layout.scss */
  header#common-header .orient #common-header-menu {
    right: 50px;
  }
}
@media all and (min-width: 768px) and (max-width: 959px) {
  /* line 926, ../scss/_layout.scss */
  header#common-header .orient #common-header-menu {
    right: 30px;
  }
}
@media all and (min-width: 480px) and (max-width: 767px) {
  /* line 926, ../scss/_layout.scss */
  header#common-header .orient #common-header-menu {
    right: 20px;
  }
}
@media all and (max-width: 479px) {
  /* line 926, ../scss/_layout.scss */
  header#common-header .orient #common-header-menu {
    right: 20px;
  }
}
/* line 944, ../scss/_layout.scss */
header#common-header .orient #common-header-menu a {
  display: inline-block;
}
/* line 947, ../scss/_layout.scss */
header#common-header .orient #common-header-menu img {
  display: inline-block;
}
/* line 950, ../scss/_layout.scss */
header#common-header .orient #common-header-menu .to-call {
  margin-right: 20px;
  text-decoration: none;
}
/* line 953, ../scss/_layout.scss */
header#common-header .orient #common-header-menu .to-call img {
  margin-bottom: -0.2em;
  margin-right: 0.2em;
  vertical-align: baseline;
}
/* line 959, ../scss/_layout.scss */
header#common-header .orient #common-header-menu .to-form {
  /* アニメーション変化 */
  -moz-transition: -moz-transform 0.4s ease 0s, -ms-transform 0.4s ease 0s, -webkit-transform 0.4s ease 0s, transform 0.4s ease 0s;
  -o-transition: -moz-transform 0.4s ease 0s, -ms-transform 0.4s ease 0s, -webkit-transform 0.4s ease 0s, transform 0.4s ease 0s;
  -webkit-transition: -moz-transform 0.4s ease 0s, -ms-transform 0.4s ease 0s, -webkit-transform 0.4s ease 0s, transform 0.4s ease 0s;
  transition: -moz-transform 0.4s ease 0s, -ms-transform 0.4s ease 0s, -webkit-transform 0.4s ease 0s, transform 0.4s ease 0s;
}
/* line 960, ../scss/_layout.scss */
header#common-header .orient #common-header-menu .to-form img {
  vertical-align: baseline;
}
/* line 1253, ../scss/_func.scss */
header#common-header .orient #common-header-menu .to-form:hover {
  /* 変形 */
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
@media all and (min-width: 768px) and (max-width: 959px) {
  /* line 926, ../scss/_layout.scss */
  header#common-header .orient #common-header-menu {
    font-size: 18px;
    font-size: 1.125rem;
  }
  /* line 971, ../scss/_layout.scss */
  header#common-header .orient #common-header-menu .to-call img {
    height: 24px;
    width: auto;
  }
  /* line 977, ../scss/_layout.scss */
  header#common-header .orient #common-header-menu .to-form img {
    margin-bottom: -0.1em;
  }
}
@media all and (max-width: 767px) {
  /* line 983, ../scss/_layout.scss */
  header#common-header .orient #common-header-menu a {
    width: 35px;
    text-align: center;
  }
  /* line 987, ../scss/_layout.scss */
  header#common-header .orient #common-header-menu .to-call {
    margin-right: 0;
  }
  /* line 989, ../scss/_layout.scss */
  header#common-header .orient #common-header-menu .to-call span.number {
    display: none;
  }
  /* line 992, ../scss/_layout.scss */
  header#common-header .orient #common-header-menu .to-call img {
    margin-right: 0;
  }
}

/*
==================================================

	スクロールコンテンツの詳細設定

==================================================
*/
/*
==================================================

	メインコンテンツの詳細設定

==================================================
*/
/*
==================================================

	スクロールボタンの詳細設定

==================================================
*/
/* line 1096, ../scss/_layout.scss */
#fixed-buttons {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  z-index: 9999;
}
@media print {
  /* line 1096, ../scss/_layout.scss */
  #fixed-buttons {
    display: none;
  }
}
/* line 1108, ../scss/_layout.scss */
#fixed-buttons #fixed-common-nav {
  position: absolute;
  display: block;
}
@media all and (min-width: 768px) {
  /* line 1108, ../scss/_layout.scss */
  #fixed-buttons #fixed-common-nav {
    right: -180px;
    top: -60vh;
    width: 180px;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    /* アニメーション変化 */
    -moz-transition: filter 0.4s ease 0s, opacity 0.4s ease 0s, background-color 0.4s ease 0s, right 0.4s ease 0s;
    -o-transition: filter 0.4s ease 0s, opacity 0.4s ease 0s, background-color 0.4s ease 0s, right 0.4s ease 0s;
    -webkit-transition: filter 0.4s ease 0s, opacity 0.4s ease 0s, background-color 0.4s ease 0s, right 0.4s ease 0s;
    transition: filter 0.4s ease 0s, opacity 0.4s ease 0s, background-color 0.4s ease 0s, right 0.4s ease 0s;
  }
  /* line 1117, ../scss/_layout.scss */
  body.additional-header-after #fixed-buttons #fixed-common-nav, body.page-header-after #fixed-buttons #fixed-common-nav {
    right: 0;
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
  }
  /* line 1253, ../scss/_func.scss */
  body.additional-header-after #fixed-buttons #fixed-common-nav:hover, body.page-header-after #fixed-buttons #fixed-common-nav:hover {
    right: 0;
  }
}
@media all and (max-width: 767px) {
  /* line 1108, ../scss/_layout.scss */
  #fixed-buttons #fixed-common-nav {
    right: 0px;
    top: 0px;
    width: 100%;
    height: 40px;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    /* アニメーション変化 */
    -moz-transition: filter 0.4s ease 0s, opacity 0.4s ease 0s, background-color 0.4s ease 0s, top 0.4s ease 0s;
    -o-transition: filter 0.4s ease 0s, opacity 0.4s ease 0s, background-color 0.4s ease 0s, top 0.4s ease 0s;
    -webkit-transition: filter 0.4s ease 0s, opacity 0.4s ease 0s, background-color 0.4s ease 0s, top 0.4s ease 0s;
    transition: filter 0.4s ease 0s, opacity 0.4s ease 0s, background-color 0.4s ease 0s, top 0.4s ease 0s;
  }
  /* line 1134, ../scss/_layout.scss */
  body.additional-header-after.common-footer-none #fixed-buttons #fixed-common-nav, body.page-header-after.common-footer-none #fixed-buttons #fixed-common-nav {
    top: -40px;
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
  }
}
/* line 1140, ../scss/_layout.scss */
#fixed-buttons #fixed-common-nav ul.common-nav {
  background-color: #1a1a1a;
  color: #fff;
  font-family: "Quicksand", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-weight: normal;
  letter-spacing: 0;
}
/* line 1144, ../scss/_layout.scss */
#fixed-buttons #fixed-common-nav ul.common-nav li {
  /* 幅高さの基準を変更 */
  box-sizing: border-box;
  width: 100%;
}
/* line 1147, ../scss/_layout.scss */
#fixed-buttons #fixed-common-nav ul.common-nav li a {
  /* 幅高さの基準を変更 */
  box-sizing: border-box;
  position: relative;
  display: block;
  text-decoration: none;
  /* アニメーション変化 */
  -moz-transition: background-color 0.4s ease 0s;
  -o-transition: background-color 0.4s ease 0s;
  -webkit-transition: background-color 0.4s ease 0s;
  transition: background-color 0.4s ease 0s;
}
/* line 1253, ../scss/_func.scss */
#fixed-buttons #fixed-common-nav ul.common-nav li a:hover {
  background-color: #4d4d4d;
}
/* line 1156, ../scss/_layout.scss */
#fixed-buttons #fixed-common-nav ul.common-nav li a img {
  display: inline-block;
}
/* line 1159, ../scss/_layout.scss */
#fixed-buttons #fixed-common-nav ul.common-nav li a span {
  display: inline-block;
}
/* line 1164, ../scss/_layout.scss */
#fixed-buttons #fixed-common-nav ul.common-nav li.current a {
  background-color: #4d4d4d;
}
@media all and (min-width: 768px) {
  /* line 1140, ../scss/_layout.scss */
  #fixed-buttons #fixed-common-nav ul.common-nav {
    font-size: 16px;
    font-size: 1rem;
  }
  /* line 1171, ../scss/_layout.scss */
  #fixed-buttons #fixed-common-nav ul.common-nav li {
    width: 100%;
  }
  /* line 1173, ../scss/_layout.scss */
  #fixed-buttons #fixed-common-nav ul.common-nav li:not(:last-child) {
    border-bottom: 2px solid #fff;
  }
  /* line 1176, ../scss/_layout.scss */
  #fixed-buttons #fixed-common-nav ul.common-nav li a {
    padding: 5px 5px 5px 55px;
    text-align: left;
  }
  /* line 1179, ../scss/_layout.scss */
  #fixed-buttons #fixed-common-nav ul.common-nav li a img {
    position: absolute;
    top: 50%;
    left: 25px;
    /* 変形 */
    -moz-transform: translate(-50%, -50%) scale(1.2);
    -ms-transform: translate(-50%, -50%) scale(1.2);
    -webkit-transform: translate(-50%, -50%) scale(1.2);
    transform: translate(-50%, -50%) scale(1.2);
  }
  /* line 1189, ../scss/_layout.scss */
  #fixed-buttons #fixed-common-nav ul.common-nav li.current a {
    background-color: #4d4d4d;
  }
}
@media all and (max-width: 767px) {
  /* line 1140, ../scss/_layout.scss */
  #fixed-buttons #fixed-common-nav ul.common-nav {
    font-size: 11px;
    font-size: 0.6875rem;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: stretch;
    align-items: stretch;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  /* line 615, ../scss/_func.scss */
  body.no-flex #fixed-buttons #fixed-common-nav ul.common-nav {
    display: block;
    text-align: center;
    text-align: between;
  }
  /* line 94, ../scss/_func.scss */
  body.no-flex #fixed-buttons #fixed-common-nav ul.common-nav::after {
    content: "";
    display: block;
    width: 100%;
    height: 0;
    clear: both;
  }
  /* line 627, ../scss/_func.scss */
  body.no-flex #fixed-buttons #fixed-common-nav ul.common-nav > * {
    display: block;
    float: left;
    vertical-align: middle;
  }
  /* line 1198, ../scss/_layout.scss */
  #fixed-buttons #fixed-common-nav ul.common-nav li {
    width: 33.3333%;
  }
  /* line 1200, ../scss/_layout.scss */
  #fixed-buttons #fixed-common-nav ul.common-nav li:nth-child(2) {
    border-left: 2px solid #fff;
    border-right: 2px solid #fff;
  }
  /* line 1204, ../scss/_layout.scss */
  #fixed-buttons #fixed-common-nav ul.common-nav li a {
    height: 40px;
    padding: 5px;
    text-align: center;
  }
  /* line 1208, ../scss/_layout.scss */
  #fixed-buttons #fixed-common-nav ul.common-nav li a img {
    vertical-align: baseline;
    margin-bottom: -0.2em;
  }
  /* line 1212, ../scss/_layout.scss */
  #fixed-buttons #fixed-common-nav ul.common-nav li a span {
    margin-left: 0.5em;
    line-height: 30px;
  }
}

/*
==================================================

	サイトフッターの詳細設定

==================================================
*/
/* line 1233, ../scss/_layout.scss */
footer#common-footer {
  background-color: #fff;
  color: #1a1a1a;
}
@media print {
  /* line 1233, ../scss/_layout.scss */
  footer#common-footer {
    border-top: 3px solid #1a1a1a;
  }
}
/* line 1243, ../scss/_layout.scss */
footer#common-footer #common-footer-nav nav ul.common-nav {
  background-color: #1a1a1a;
  color: #fff;
  font-family: "Quicksand", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-weight: normal;
  letter-spacing: 0;
  font-size: 14px;
  font-size: 0.875rem;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media print {
  /* line 1243, ../scss/_layout.scss */
  footer#common-footer #common-footer-nav nav ul.common-nav {
    background-color: #fff;
    color: #1a1a1a;
  }
}
/* line 615, ../scss/_func.scss */
body.no-flex footer#common-footer #common-footer-nav nav ul.common-nav {
  display: block;
  text-align: center;
  text-align: between;
}
/* line 94, ../scss/_func.scss */
body.no-flex footer#common-footer #common-footer-nav nav ul.common-nav::after {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  clear: both;
}
/* line 627, ../scss/_func.scss */
body.no-flex footer#common-footer #common-footer-nav nav ul.common-nav > * {
  display: block;
  float: left;
  vertical-align: middle;
}
/* line 1253, ../scss/_layout.scss */
footer#common-footer #common-footer-nav nav ul.common-nav li {
  /* 幅高さの基準を変更 */
  box-sizing: border-box;
  width: 33.3333%;
}
/* line 1256, ../scss/_layout.scss */
footer#common-footer #common-footer-nav nav ul.common-nav li:nth-child(2) {
  border-left: 2px solid #fff;
  border-right: 2px solid #fff;
}
/* line 1260, ../scss/_layout.scss */
footer#common-footer #common-footer-nav nav ul.common-nav li a {
  display: block;
  padding: 5px;
  text-decoration: none;
  text-align: center;
  /* アニメーション変化 */
  -moz-transition: background-color 0.4s ease 0s;
  -o-transition: background-color 0.4s ease 0s;
  -webkit-transition: background-color 0.4s ease 0s;
  transition: background-color 0.4s ease 0s;
}
/* line 1253, ../scss/_func.scss */
footer#common-footer #common-footer-nav nav ul.common-nav li a:hover {
  background-color: #4d4d4d;
}
/* line 1269, ../scss/_layout.scss */
footer#common-footer #common-footer-nav nav ul.common-nav li a img {
  vertical-align: baseline;
  margin-bottom: -0.1em;
}
/* line 1273, ../scss/_layout.scss */
footer#common-footer #common-footer-nav nav ul.common-nav li a span {
  margin-left: 0.5em;
  line-height: 30px;
}
/* line 1279, ../scss/_layout.scss */
footer#common-footer #common-footer-nav nav ul.common-nav li.current a {
  background-color: #4d4d4d;
}
@media all and (max-width: 767px) {
  /* line 1243, ../scss/_layout.scss */
  footer#common-footer #common-footer-nav nav ul.common-nav {
    font-size: 11px;
    font-size: 0.6875rem;
  }
  /* line 1288, ../scss/_layout.scss */
  footer#common-footer #common-footer-nav nav ul.common-nav li a img {
    margin-bottom: -0.2em;
  }
}
/* line 1298, ../scss/_layout.scss */
footer#common-footer #common-footer-credit {
  padding: 30px 0 30px;
  text-align: center;
}
/* line 94, ../scss/_func.scss */
footer#common-footer #common-footer-credit::after {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  clear: both;
}
/* line 1302, ../scss/_layout.scss */
footer#common-footer #common-footer-credit p.corporate-name {
  float: left;
}
/* line 1304, ../scss/_layout.scss */
footer#common-footer #common-footer-credit p.corporate-name a {
  display: inline-block;
}
/* line 1308, ../scss/_layout.scss */
footer#common-footer #common-footer-credit div.corporate-site-link {
  float: right;
}
/* line 1310, ../scss/_layout.scss */
footer#common-footer #common-footer-credit div.corporate-site-link a {
  position: relative;
  display: inline-block;
  padding: 10px 70px 12px 40px;
  border: 2px solid #1a1a1a;
  font-family: "Quicksand", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-weight: normal;
  letter-spacing: 0;
  /* ※ 本要素のbefore, afterでブロックを作成 */
  /* アニメーション変化 */
  -moz-transition: background-color 0.4s ease 0s, color 0.4s ease 0s;
  -o-transition: background-color 0.4s ease 0s, color 0.4s ease 0s;
  -webkit-transition: background-color 0.4s ease 0s, color 0.4s ease 0s;
  transition: background-color 0.4s ease 0s, color 0.4s ease 0s;
}
/* line 988, ../scss/_func.scss */
footer#common-footer #common-footer-credit div.corporate-site-link a::before, footer#common-footer #common-footer-credit div.corporate-site-link a::after {
  /* before, afterで矢印：矢印の各辺を作成 */
  position: absolute;
  z-index: auto;
  display: block;
  /* 幅高さの基準を変更 */
  box-sizing: border-box;
  width: 11px;
  height: 11px;
  border: 1px solid #1a1a1a;
  background-color: transparent;
  content: "";
}
/* line 1001, ../scss/_func.scss */
footer#common-footer #common-footer-credit div.corporate-site-link a::before {
  /* before, afterでブロック：配置 */
  bottom: 50%;
  right: 25px;
  margin-bottom: -3.3px;
  margin-right: -3.3px;
}
/* line 1018, ../scss/_func.scss */
footer#common-footer #common-footer-credit div.corporate-site-link a::after {
  /* before, afterでブロック：配置 */
  bottom: 50%;
  right: 25px;
  margin-bottom: -7.7px;
  margin-right: -7.7px;
}
/* line 1047, ../scss/_func.scss */
footer#common-footer #common-footer-credit div.corporate-site-link a::before, footer#common-footer #common-footer-credit div.corporate-site-link a::after {
  /* アニメーション変化 */
  -moz-transition: border-color 0.4s ease 0s;
  -o-transition: border-color 0.4s ease 0s;
  -webkit-transition: border-color 0.4s ease 0s;
  transition: border-color 0.4s ease 0s;
}
/* line 1253, ../scss/_func.scss */
footer#common-footer #common-footer-credit div.corporate-site-link a:hover {
  background-color: #e5e5e5;
}
/* line 1326, ../scss/_layout.scss */
footer#common-footer #common-footer-credit p.copyright {
  clear: both;
  text-align: left;
  font-family: "Quicksand", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-weight: normal;
  letter-spacing: 0;
  font-size: 13px;
  font-size: 0.8125rem;
}
@media all and (max-width: 767px) {
  /* line 1333, ../scss/_layout.scss */
  footer#common-footer #common-footer-credit p.corporate-name {
    float: none;
    text-align: center;
  }
  /* line 1337, ../scss/_layout.scss */
  footer#common-footer #common-footer-credit div.corporate-site-link {
    float: none;
    margin-top: 20px;
    text-align: center;
  }
  /* line 1342, ../scss/_layout.scss */
  footer#common-footer #common-footer-credit p.copyright {
    margin-top: 20px;
    text-align: center;
  }
}

/*
==================================================
--------------------------------------------------

特殊なメニュー

--------------------------------------------------
==================================================
*/
/* line 1362, ../scss/_layout.scss */
#additional-header-positioner {
  width: 100%;
  height: 60px;
}
@media all and (min-width: 768px) and (max-width: 959px) {
  /* line 1362, ../scss/_layout.scss */
  #additional-header-positioner {
    height: 50px;
  }
}
@media all and (max-width: 767px) {
  /* line 1362, ../scss/_layout.scss */
  #additional-header-positioner {
    height: 40px;
  }
}
/* line 1371, ../scss/_layout.scss */
#additional-header-positioner #additional-header {
  position: relative;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  /* アニメーション変化 */
  -moz-transition: top 0.3s ease 0s;
  -o-transition: top 0.3s ease 0s;
  -webkit-transition: top 0.3s ease 0s;
  transition: top 0.3s ease 0s;
}
/* line 1378, ../scss/_layout.scss */
#additional-header-positioner #additional-header::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 170%;
  background-color: rgba(255, 255, 255, 0.6);
  content: "";
}
/* line 1389, ../scss/_layout.scss */
#additional-header-positioner #additional-header::after {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #e5e5e5;
  content: "";
}
/* line 1400, ../scss/_layout.scss */
#additional-header-positioner #additional-header .orient {
  position: relative;
  display: block;
  /* 幅高さの基準を変更 */
  box-sizing: border-box;
  width: 100%;
  max-width: 1400px;
  padding-left: 70px;
  padding-right: 70px;
  margin-left: auto;
  margin-right: auto;
}
@media all and (min-width: 960px) and (max-width: 1199px) {
  /* line 1400, ../scss/_layout.scss */
  #additional-header-positioner #additional-header .orient {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media all and (min-width: 768px) and (max-width: 959px) {
  /* line 1400, ../scss/_layout.scss */
  #additional-header-positioner #additional-header .orient {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media all and (min-width: 480px) and (max-width: 767px) {
  /* line 1400, ../scss/_layout.scss */
  #additional-header-positioner #additional-header .orient {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media all and (max-width: 479px) {
  /* line 1400, ../scss/_layout.scss */
  #additional-header-positioner #additional-header .orient {
    padding-left: 20px;
    padding-right: 20px;
  }
}
/* line 94, ../scss/_func.scss */
#additional-header-positioner #additional-header .orient::after {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  clear: both;
}
/* line 1404, ../scss/_layout.scss */
#additional-header-positioner #additional-header .orient #additional-header-title {
  position: absolute;
  z-index: 3;
  top: 30px;
  left: 70px;
}
/* line 1409, ../scss/_layout.scss */
#additional-header-positioner #additional-header .orient #additional-header-title a {
  display: inline-block;
}
/* line 1412, ../scss/_layout.scss */
#additional-header-positioner #additional-header .orient #additional-header-title img {
  height: 60px;
  width: auto;
}
@media all and (min-width: 960px) and (max-width: 1199px) {
  /* line 1404, ../scss/_layout.scss */
  #additional-header-positioner #additional-header .orient #additional-header-title {
    left: 50px;
  }
}
@media all and (min-width: 768px) and (max-width: 959px) {
  /* line 1404, ../scss/_layout.scss */
  #additional-header-positioner #additional-header .orient #additional-header-title {
    top: 25px;
    left: 30px;
  }
}
@media all and (min-width: 480px) and (max-width: 767px) {
  /* line 1404, ../scss/_layout.scss */
  #additional-header-positioner #additional-header .orient #additional-header-title {
    top: 20px;
    left: 20px;
  }
  /* line 1426, ../scss/_layout.scss */
  #additional-header-positioner #additional-header .orient #additional-header-title img {
    height: 40px;
  }
}
@media all and (max-width: 479px) {
  /* line 1404, ../scss/_layout.scss */
  #additional-header-positioner #additional-header .orient #additional-header-title {
    top: 20px;
    left: 20px;
  }
  /* line 1433, ../scss/_layout.scss */
  #additional-header-positioner #additional-header .orient #additional-header-title img {
    height: 40px;
  }
}
/* line 1438, ../scss/_layout.scss */
#additional-header-positioner #additional-header .orient #additional-header-toggle {
  position: relative;
  z-index: 4;
  float: right;
  display: block;
  width: 40px;
  height: 40px;
  border: 0px none;
  outline: none;
  background: transparent;
}
/* line 1448, ../scss/_layout.scss */
main.page-yuso #additional-header-positioner #additional-header .orient #additional-header-toggle {
  /* ※ 本要素のbefore, afterで矢印を作成 */
}
/* line 881, ../scss/_func.scss */
main.page-yuso #additional-header-positioner #additional-header .orient #additional-header-toggle::before, main.page-yuso #additional-header-positioner #additional-header .orient #additional-header-toggle::after {
  /* before, afterで矢印：矢印の各辺を作成 */
  position: absolute;
  z-index: auto;
  display: block;
  width: 10px;
  height: 0;
  border-top: 1px solid #00945d;
  border-bottom: 1px solid #00945d;
  margin-bottom: -1px;
  background-color: #00945d;
  content: "";
}
/* line 895, ../scss/_func.scss */
main.page-yuso #additional-header-positioner #additional-header .orient #additional-header-toggle::before {
  /* before, afterで矢印：配置して変形 */
  bottom: 50%;
  right: 50%;
  /* 変形 */
  -moz-transform: matrix(1, 1, 0, 1, 0, 0);
  -ms-transform: matrix(1, 1, 0, 1, 0, 0);
  -webkit-transform: matrix(1, 1, 0, 1, 0, 0);
  transform: matrix(1, 1, 0, 1, 0, 0);
}
/* line 916, ../scss/_func.scss */
main.page-yuso #additional-header-positioner #additional-header .orient #additional-header-toggle::after {
  /* before, afterで矢印：配置して変形 */
  bottom: 50%;
  right: 50%;
  margin-right: -10px;
  /* 変形 */
  -moz-transform: matrix(1, -1, 0, 1, 0, 0);
  -ms-transform: matrix(1, -1, 0, 1, 0, 0);
  -webkit-transform: matrix(1, -1, 0, 1, 0, 0);
  transform: matrix(1, -1, 0, 1, 0, 0);
}
/* line 1451, ../scss/_layout.scss */
main.page-soko #additional-header-positioner #additional-header .orient #additional-header-toggle {
  /* ※ 本要素のbefore, afterで矢印を作成 */
}
/* line 881, ../scss/_func.scss */
main.page-soko #additional-header-positioner #additional-header .orient #additional-header-toggle::before, main.page-soko #additional-header-positioner #additional-header .orient #additional-header-toggle::after {
  /* before, afterで矢印：矢印の各辺を作成 */
  position: absolute;
  z-index: auto;
  display: block;
  width: 10px;
  height: 0;
  border-top: 1px solid #0083cc;
  border-bottom: 1px solid #0083cc;
  margin-bottom: -1px;
  background-color: #0083cc;
  content: "";
}
/* line 895, ../scss/_func.scss */
main.page-soko #additional-header-positioner #additional-header .orient #additional-header-toggle::before {
  /* before, afterで矢印：配置して変形 */
  bottom: 50%;
  right: 50%;
  /* 変形 */
  -moz-transform: matrix(1, 1, 0, 1, 0, 0);
  -ms-transform: matrix(1, 1, 0, 1, 0, 0);
  -webkit-transform: matrix(1, 1, 0, 1, 0, 0);
  transform: matrix(1, 1, 0, 1, 0, 0);
}
/* line 916, ../scss/_func.scss */
main.page-soko #additional-header-positioner #additional-header .orient #additional-header-toggle::after {
  /* before, afterで矢印：配置して変形 */
  bottom: 50%;
  right: 50%;
  margin-right: -10px;
  /* 変形 */
  -moz-transform: matrix(1, -1, 0, 1, 0, 0);
  -ms-transform: matrix(1, -1, 0, 1, 0, 0);
  -webkit-transform: matrix(1, -1, 0, 1, 0, 0);
  transform: matrix(1, -1, 0, 1, 0, 0);
}
/* line 1454, ../scss/_layout.scss */
#additional-header-positioner #additional-header .orient #additional-header-toggle::before, #additional-header-positioner #additional-header .orient #additional-header-toggle::after {
  /* アニメーション変化 */
  -moz-transition: margin-right 0.6s ease 0s, width 0.6s ease 0s;
  -o-transition: margin-right 0.6s ease 0s, width 0.6s ease 0s;
  -webkit-transition: margin-right 0.6s ease 0s, width 0.6s ease 0s;
  transition: margin-right 0.6s ease 0s, width 0.6s ease 0s;
}
/* line 1458, ../scss/_layout.scss */
body.status-menu-open #additional-header-positioner #additional-header .orient #additional-header-toggle::before, body.status-menu-open #additional-header-positioner #additional-header .orient #additional-header-toggle::after {
  margin-right: -10px;
  width: 20px;
}
@media all and (min-width: 768px) {
  /* line 1438, ../scss/_layout.scss */
  #additional-header-positioner #additional-header .orient #additional-header-toggle {
    display: none;
  }
}
/* line 1467, ../scss/_layout.scss */
#additional-header-positioner #additional-header .orient #additional-header-menu {
  position: relative;
  z-index: 5;
  float: right;
}
@media all and (min-width: 768px) {
  /* line 1471, ../scss/_layout.scss */
  #additional-header-positioner #additional-header .orient #additional-header-menu ul {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  /* line 615, ../scss/_func.scss */
  body.no-flex #additional-header-positioner #additional-header .orient #additional-header-menu ul {
    display: block;
    text-align: right;
  }
  /* line 94, ../scss/_func.scss */
  body.no-flex #additional-header-positioner #additional-header .orient #additional-header-menu ul::after {
    content: "";
    display: block;
    width: 100%;
    height: 0;
    clear: both;
  }
  /* line 627, ../scss/_func.scss */
  body.no-flex #additional-header-positioner #additional-header .orient #additional-header-menu ul > * {
    display: block;
    float: left;
    vertical-align: top;
  }
}
/* line 1476, ../scss/_layout.scss */
#additional-header-positioner #additional-header .orient #additional-header-menu ul li a {
  position: relative;
  display: block;
  padding: 13px 20px 17px;
  text-decoration: none;
  line-height: 30px;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-weight: bold;
  letter-spacing: 0;
  font-size: 16px;
  font-size: 1rem;
}
@media all and (min-width: 768px) and (max-width: 959px) {
  /* line 1476, ../scss/_layout.scss */
  #additional-header-positioner #additional-header .orient #additional-header-menu ul li a {
    padding: 13px 10px 17px;
    line-height: 20px;
    font-size: 14px;
    font-size: 0.875rem;
  }
}
/* line 1489, ../scss/_layout.scss */
#additional-header-positioner #additional-header .orient #additional-header-menu ul li a::before {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  content: "";
  /* アニメーション変化 */
  -moz-transition: background-color 0.4s ease 0s;
  -o-transition: background-color 0.4s ease 0s;
  -webkit-transition: background-color 0.4s ease 0s;
  transition: background-color 0.4s ease 0s;
}
/* line 1500, ../scss/_layout.scss */
main.page-yuso #additional-header-positioner #additional-header .orient #additional-header-menu ul li a:hover::before {
  background-color: #00945d;
}
/* line 1503, ../scss/_layout.scss */
main.page-soko #additional-header-positioner #additional-header .orient #additional-header-menu ul li a:hover::before {
  background-color: #0083cc;
}
/* line 1508, ../scss/_layout.scss */
main.page-yuso #additional-header-positioner #additional-header .orient #additional-header-menu ul li a.status-display-head {
  color: #00945d;
}
/* line 1511, ../scss/_layout.scss */
main.page-soko #additional-header-positioner #additional-header .orient #additional-header-menu ul li a.status-display-head {
  color: #0083cc;
}
@media all and (max-width: 767px) {
  /* line 1467, ../scss/_layout.scss */
  #additional-header-positioner #additional-header .orient #additional-header-menu {
    float: none;
    position: absolute;
    z-index: 1;
    top: 40px;
    right: 100vw;
    background-color: #fff;
    border-left: 2px solid #e5e5e5;
    border-bottom: 2px solid #e5e5e5;
    /* 変形 */
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    /* アニメーション変化 */
    -moz-transition: -moz-transform 0.6s ease 0s, -ms-transform 0.6s ease 0s, -webkit-transform 0.6s ease 0s, transform 0.6s ease 0s, filter 0.6s ease 0s, opacity 0.6s ease 0s, right 0s ease 0.6s;
    -o-transition: -moz-transform 0.6s ease 0s, -ms-transform 0.6s ease 0s, -webkit-transform 0.6s ease 0s, transform 0.6s ease 0s, filter 0.6s ease 0s, opacity 0.6s ease 0s, right 0s ease 0.6s;
    -webkit-transition: -moz-transform 0.6s ease 0s, -ms-transform 0.6s ease 0s, -webkit-transform 0.6s ease 0s, transform 0.6s ease 0s, filter 0.6s ease 0s, opacity 0.6s ease 0s, right 0s ease 0.6s;
    transition: -moz-transform 0.6s ease 0s, -ms-transform 0.6s ease 0s, -webkit-transform 0.6s ease 0s, transform 0.6s ease 0s, filter 0.6s ease 0s, opacity 0.6s ease 0s, right 0s ease 0.6s;
  }
  /* line 1532, ../scss/_layout.scss */
  #additional-header-positioner #additional-header .orient #additional-header-menu ul li a {
    line-height: 1;
  }
  /* line 1537, ../scss/_layout.scss */
  body.status-menu-open #additional-header-positioner #additional-header .orient #additional-header-menu {
    right: 0;
    /* 変形 */
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
    /* アニメーション変化 */
    -moz-transition: -moz-transform 0.6s ease 0s, -ms-transform 0.6s ease 0s, -webkit-transform 0.6s ease 0s, transform 0.6s ease 0s, filter 0.6s ease 0s, opacity 0.6s ease 0s;
    -o-transition: -moz-transform 0.6s ease 0s, -ms-transform 0.6s ease 0s, -webkit-transform 0.6s ease 0s, transform 0.6s ease 0s, filter 0.6s ease 0s, opacity 0.6s ease 0s;
    -webkit-transition: -moz-transform 0.6s ease 0s, -ms-transform 0.6s ease 0s, -webkit-transform 0.6s ease 0s, transform 0.6s ease 0s, filter 0.6s ease 0s, opacity 0.6s ease 0s;
    transition: -moz-transform 0.6s ease 0s, -ms-transform 0.6s ease 0s, -webkit-transform 0.6s ease 0s, transform 0.6s ease 0s, filter 0.6s ease 0s, opacity 0.6s ease 0s;
  }
}
/* line 1551, ../scss/_layout.scss */
body.additional-header-after #additional-header-positioner #additional-header {
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  /* アニメーション変化 */
  -moz-transition: top 0.6s ease 0s;
  -o-transition: top 0.6s ease 0s;
  -webkit-transition: top 0.6s ease 0s;
  transition: top 0.6s ease 0s;
}
/* line 1577, ../scss/_layout.scss */
#additional-header-positioner.header-banner {
  height: 60px;
}
/* line 1579, ../scss/_layout.scss */
#additional-header-positioner.header-banner #additional-header {
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  /* アニメーション変化 */
  -moz-transition: top 0.6s ease 0s;
  -o-transition: top 0.6s ease 0s;
  -webkit-transition: top 0.6s ease 0s;
  transition: top 0.6s ease 0s;
}
/* line 1587, ../scss/_layout.scss */
body.status-scroll-top-limit #additional-header-positioner.header-banner #additional-header {
  top: 90px;
}
@media all and (min-width: 960px) and (max-width: 1199px) {
  /* line 1587, ../scss/_layout.scss */
  body.status-scroll-top-limit #additional-header-positioner.header-banner #additional-header {
    top: 90px;
  }
}
@media all and (min-width: 768px) and (max-width: 959px) {
  /* line 1587, ../scss/_layout.scss */
  body.status-scroll-top-limit #additional-header-positioner.header-banner #additional-header {
    top: 60px;
  }
}
@media all and (min-width: 480px) and (max-width: 767px) {
  /* line 1587, ../scss/_layout.scss */
  body.status-scroll-top-limit #additional-header-positioner.header-banner #additional-header {
    top: 60px;
  }
}
@media all and (max-width: 479px) {
  /* line 1587, ../scss/_layout.scss */
  body.status-scroll-top-limit #additional-header-positioner.header-banner #additional-header {
    top: 60px;
  }
}
/* line 1602, ../scss/_layout.scss */
#additional-header-positioner.header-banner #additional-header::before, #additional-header-positioner.header-banner #additional-header::after {
  display: none;
}
/* line 1605, ../scss/_layout.scss */
#additional-header-positioner.header-banner #additional-header .product-banner-container {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
/* line 403, ../scss/_func.scss */
#additional-header-positioner.header-banner #additional-header .product-banner-container > * {
  display: block;
  /* 幅高さの基準を変更 */
  box-sizing: border-box;
}
/* line 417, ../scss/_func.scss */
body.no-flex #additional-header-positioner.header-banner #additional-header .product-banner-container {
  display: block;
}
/* line 94, ../scss/_func.scss */
body.no-flex #additional-header-positioner.header-banner #additional-header .product-banner-container::after {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  clear: both;
}
/* line 420, ../scss/_func.scss */
body.no-flex #additional-header-positioner.header-banner #additional-header .product-banner-container > * {
  float: left;
}
/* line 432, ../scss/_func.scss */
#additional-header-positioner.header-banner #additional-header .product-banner-container > * {
  width: 50%;
}
/* line 434, ../scss/_func.scss */
#additional-header-positioner.header-banner #additional-header .product-banner-container > *:not(:nth-child(2n+1)) {
  margin-left: 0%;
}
/* line 437, ../scss/_func.scss */
#additional-header-positioner.header-banner #additional-header .product-banner-container > *:nth-child(2n+1) {
  margin-left: 0;
}
/* line 443, ../scss/_func.scss */
body.no-flex #additional-header-positioner.header-banner #additional-header .product-banner-container > *:not(:nth-child(2n+1)) {
  clear: none;
}
/* line 446, ../scss/_func.scss */
body.no-flex #additional-header-positioner.header-banner #additional-header .product-banner-container > *:nth-child(2n+1) {
  clear: both;
}
/* line 1607, ../scss/_layout.scss */
#additional-header-positioner.header-banner #additional-header .product-banner-container .product-banner-yuso,
#additional-header-positioner.header-banner #additional-header .product-banner-container .product-banner-soko {
  position: relative;
  display: block;
  height: 60px;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
}
/* line 1615, ../scss/_layout.scss */
#additional-header-positioner.header-banner #additional-header .product-banner-container .product-banner-yuso::before,
#additional-header-positioner.header-banner #additional-header .product-banner-container .product-banner-soko::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
}
/* line 1624, ../scss/_layout.scss */
#additional-header-positioner.header-banner #additional-header .product-banner-container .product-banner-yuso .text,
#additional-header-positioner.header-banner #additional-header .product-banner-container .product-banner-soko .text {
  /* ▼ 上下左右を中央配置 */
  position: absolute;
  top: 50%;
  left: 50%;
  /* 変形 */
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  /* ▲ 上下左右を中央配置 */
  width: 100%;
  text-align: center;
  font-size: 16px;
  font-size: 1rem;
}
/* line 1629, ../scss/_layout.scss */
#additional-header-positioner.header-banner #additional-header .product-banner-container .product-banner-yuso .text img,
#additional-header-positioner.header-banner #additional-header .product-banner-container .product-banner-soko .text img {
  display: block;
  margin: 0 auto 0;
}
/* line 1638, ../scss/_layout.scss */
#additional-header-positioner.header-banner #additional-header .product-banner-container .product-banner-yuso::before {
  background-color: #00945d;
}
/* line 1643, ../scss/_layout.scss */
#additional-header-positioner.header-banner #additional-header .product-banner-container .product-banner-soko::before {
  background-color: #0083cc;
}

/*
==================================================
--------------------------------------------------

多数利用するラベル

--------------------------------------------------
==================================================
*/
/*
==================================================

	製品バナー

==================================================
*/
/* line 1677, ../scss/_layout.scss */
.product-banner-container {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
/* line 403, ../scss/_func.scss */
.product-banner-container > * {
  display: block;
  /* 幅高さの基準を変更 */
  box-sizing: border-box;
}
/* line 417, ../scss/_func.scss */
body.no-flex .product-banner-container {
  display: block;
}
/* line 94, ../scss/_func.scss */
body.no-flex .product-banner-container::after {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  clear: both;
}
/* line 420, ../scss/_func.scss */
body.no-flex .product-banner-container > * {
  float: left;
}
/* line 432, ../scss/_func.scss */
.product-banner-container > * {
  width: 50%;
}
/* line 434, ../scss/_func.scss */
.product-banner-container > *:not(:nth-child(2n+1)) {
  margin-left: 0%;
}
/* line 437, ../scss/_func.scss */
.product-banner-container > *:nth-child(2n+1) {
  margin-left: 0;
}
/* line 443, ../scss/_func.scss */
body.no-flex .product-banner-container > *:not(:nth-child(2n+1)) {
  clear: none;
}
/* line 446, ../scss/_func.scss */
body.no-flex .product-banner-container > *:nth-child(2n+1) {
  clear: both;
}
/* line 1679, ../scss/_layout.scss */
.product-banner-container .product-banner-yuso,
.product-banner-container .product-banner-soko {
  position: relative;
  display: block;
  height: 200px;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
}
/* line 1687, ../scss/_layout.scss */
.product-banner-container .product-banner-yuso::before,
.product-banner-container .product-banner-soko::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
}
/* line 1696, ../scss/_layout.scss */
.product-banner-container .product-banner-yuso .image-cover,
.product-banner-container .product-banner-soko .image-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
  opacity: 0.4;
}
/* line 1705, ../scss/_layout.scss */
.product-banner-container .product-banner-yuso .text,
.product-banner-container .product-banner-soko .text {
  /* ▼ 上下左右を中央配置 */
  position: absolute;
  top: 50%;
  left: 50%;
  /* 変形 */
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  /* ▲ 上下左右を中央配置 */
  width: 100%;
  text-align: center;
  font-size: 16px;
  font-size: 1rem;
}
/* line 1711, ../scss/_layout.scss */
.product-banner-container .product-banner-yuso .text img,
.product-banner-container .product-banner-soko .text img {
  display: block;
  margin: 10px auto 0;
}
@media all and (max-width: 767px) {
  /* line 1679, ../scss/_layout.scss */
  .product-banner-container .product-banner-yuso,
  .product-banner-container .product-banner-soko {
    height: 140px;
  }
  /* line 1718, ../scss/_layout.scss */
  .product-banner-container .product-banner-yuso .text,
  .product-banner-container .product-banner-soko .text {
    font-size: 12px;
    font-size: 0.75rem;
  }
  /* line 1720, ../scss/_layout.scss */
  .product-banner-container .product-banner-yuso .text span,
  .product-banner-container .product-banner-soko .text span {
    display: block;
  }
  /* line 1723, ../scss/_layout.scss */
  .product-banner-container .product-banner-yuso .text img,
  .product-banner-container .product-banner-soko .text img {
    height: 30px;
    width: auto;
  }
}
/* line 1731, ../scss/_layout.scss */
.product-banner-container .product-banner-yuso::before {
  background-color: #00945d;
}
/* line 1736, ../scss/_layout.scss */
.product-banner-container .product-banner-soko::before {
  background-color: #0083cc;
}
/* line 1741, ../scss/_layout.scss */
.product-banner-container a .image-cover {
  /* アニメーション変化 */
  -moz-transition: -moz-transform 0.4s ease 0s, -ms-transform 0.4s ease 0s, -webkit-transform 0.4s ease 0s, transform 0.4s ease 0s, filter 0.4s ease 0s, opacity 0.4s ease 0s;
  -o-transition: -moz-transform 0.4s ease 0s, -ms-transform 0.4s ease 0s, -webkit-transform 0.4s ease 0s, transform 0.4s ease 0s, filter 0.4s ease 0s, opacity 0.4s ease 0s;
  -webkit-transition: -moz-transform 0.4s ease 0s, -ms-transform 0.4s ease 0s, -webkit-transform 0.4s ease 0s, transform 0.4s ease 0s, filter 0.4s ease 0s, opacity 0.4s ease 0s;
  transition: -moz-transform 0.4s ease 0s, -ms-transform 0.4s ease 0s, -webkit-transform 0.4s ease 0s, transform 0.4s ease 0s, filter 0.4s ease 0s, opacity 0.4s ease 0s;
}
/* line 1745, ../scss/_layout.scss */
.product-banner-container a:hover .image-cover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=10);
  opacity: 0.1;
  /* 変形 */
  -moz-transform: matrix(1.2, 0, 0, 1.2, 0, 0);
  -ms-transform: matrix(1.2, 0, 0, 1.2, 0, 0);
  -webkit-transform: matrix(1.2, 0, 0, 1.2, 0, 0);
  transform: matrix(1.2, 0, 0, 1.2, 0, 0);
}

/*
==================================================

	メイン末尾ナビ

==================================================
*/
/* line 1763, ../scss/_layout.scss */
.main-bottom-nav .contact-nav {
  padding: 90px 0 70px;
  background-color: #f1f1f1;
}
/* line 1766, ../scss/_layout.scss */
.main-bottom-nav .contact-nav .heading {
  text-align: center;
}
/* line 1768, ../scss/_layout.scss */
.main-bottom-nav .contact-nav .heading em.main {
  display: inline-block;
  font-family: "Quicksand", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-weight: normal;
  letter-spacing: 0;
  font-size: 38px;
  font-size: 2.375rem;
}
/* line 1774, ../scss/_layout.scss */
.main-bottom-nav .contact-nav .comments {
  margin-top: 50px;
}
/* line 1777, ../scss/_layout.scss */
.main-bottom-nav .contact-nav .contact-nav-box {
  margin-top: 50px;
}
@media all and (min-width: 768px) {
  /* line 1777, ../scss/_layout.scss */
  .main-bottom-nav .contact-nav .contact-nav-box {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: stretch;
    align-items: stretch;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  /* line 403, ../scss/_func.scss */
  .main-bottom-nav .contact-nav .contact-nav-box > * {
    display: block;
    /* 幅高さの基準を変更 */
    box-sizing: border-box;
  }
  /* line 417, ../scss/_func.scss */
  body.no-flex .main-bottom-nav .contact-nav .contact-nav-box {
    display: block;
  }
  /* line 94, ../scss/_func.scss */
  body.no-flex .main-bottom-nav .contact-nav .contact-nav-box::after {
    content: "";
    display: block;
    width: 100%;
    height: 0;
    clear: both;
  }
  /* line 420, ../scss/_func.scss */
  body.no-flex .main-bottom-nav .contact-nav .contact-nav-box > * {
    float: left;
  }
  /* line 432, ../scss/_func.scss */
  .main-bottom-nav .contact-nav .contact-nav-box > * {
    width: 48%;
  }
  /* line 434, ../scss/_func.scss */
  .main-bottom-nav .contact-nav .contact-nav-box > *:not(:nth-child(2n+1)) {
    margin-left: 4%;
  }
  /* line 437, ../scss/_func.scss */
  .main-bottom-nav .contact-nav .contact-nav-box > *:nth-child(2n+1) {
    margin-left: 0;
  }
  /* line 443, ../scss/_func.scss */
  body.no-flex .main-bottom-nav .contact-nav .contact-nav-box > *:not(:nth-child(2n+1)) {
    clear: none;
  }
  /* line 446, ../scss/_func.scss */
  body.no-flex .main-bottom-nav .contact-nav .contact-nav-box > *:nth-child(2n+1) {
    clear: both;
  }
}
@media all and (max-width: 767px) {
  /* line 1783, ../scss/_layout.scss */
  .main-bottom-nav .contact-nav .contact-nav-box a:first-child {
    margin-bottom: 30px;
  }
  /* line 1786, ../scss/_layout.scss */
  .main-bottom-nav .contact-nav .contact-nav-box a {
    width: 420px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
/* line 1792, ../scss/_layout.scss */
.main-bottom-nav .contact-nav .contact-nav-box a {
  display: block;
  text-align: center;
  border: 2px solid #1a1a1a;
  text-decoration: none !important;
}
/* line 1798, ../scss/_layout.scss */
.main-bottom-nav .contact-nav .contact-nav-box .phone {
  /* 幅高さの基準を変更 */
  box-sizing: border-box;
  padding: 20px;
}
/* line 1801, ../scss/_layout.scss */
.main-bottom-nav .contact-nav .contact-nav-box .phone .pict {
  width: 100%;
  height: 100px;
  background-image: url(../img/icon/phone-common.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 50px 68px;
}
/* line 1808, ../scss/_layout.scss */
body.no-svg .main-bottom-nav .contact-nav .contact-nav-box .phone .pict {
  background-image: url(../img/icon/phone-common.png);
}
@media print {
  /* line 1801, ../scss/_layout.scss */
  .main-bottom-nav .contact-nav .contact-nav-box .phone .pict {
    display: none;
  }
}
/* line 1815, ../scss/_layout.scss */
.main-bottom-nav .contact-nav .contact-nav-box .phone .phone-number {
  font-family: "Quicksand", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-weight: normal;
  letter-spacing: 0;
  font-size: 46px;
  font-size: 2.875rem;
}
/* line 1819, ../scss/_layout.scss */
.main-bottom-nav .contact-nav .contact-nav-box .phone .reception-time {
  font-size: 16px;
  font-size: 1rem;
}
@media all and (max-width: 479px) {
  /* line 1823, ../scss/_layout.scss */
  .main-bottom-nav .contact-nav .contact-nav-box .phone .phone-number {
    font-size: 32px;
    font-size: 2rem;
  }
  /* line 1826, ../scss/_layout.scss */
  .main-bottom-nav .contact-nav .contact-nav-box .phone .reception-time {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
/* line 1831, ../scss/_layout.scss */
.main-bottom-nav .contact-nav .contact-nav-box .form {
  /* 幅高さの基準を変更 */
  box-sizing: border-box;
  padding: 20px;
  /* アニメーション変化 */
  -moz-transition: background-color 0.4s ease 0s;
  -o-transition: background-color 0.4s ease 0s;
  -webkit-transition: background-color 0.4s ease 0s;
  transition: background-color 0.4s ease 0s;
}
/* line 1253, ../scss/_func.scss */
.main-bottom-nav .contact-nav .contact-nav-box .form:hover {
  background-color: #e5e5e5;
}
/* line 1838, ../scss/_layout.scss */
.main-bottom-nav .contact-nav .contact-nav-box .form .pict {
  width: 100%;
  height: 100px;
  background-image: url(../img/icon/form-common.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 82px 56px;
}
/* line 1845, ../scss/_layout.scss */
body.no-svg .main-bottom-nav .contact-nav .contact-nav-box .form .pict {
  background-image: url(../img/icon/form-common.png);
}
@media print {
  /* line 1838, ../scss/_layout.scss */
  .main-bottom-nav .contact-nav .contact-nav-box .form .pict {
    display: none;
  }
}
/* line 1852, ../scss/_layout.scss */
.main-bottom-nav .contact-nav .contact-nav-box .form .label {
  font-size: 26px;
  font-size: 1.625rem;
}
/* line 1854, ../scss/_layout.scss */
.main-bottom-nav .contact-nav .contact-nav-box .form .label span {
  display: inline-block;
  padding: 10px;
}
/* line 1857, ../scss/_layout.scss */
.main-bottom-nav .contact-nav .contact-nav-box .form .label span:first-child {
  border-bottom: 2px solid #1a1a1a;
}
@media all and (max-width: 479px) {
  /* line 1863, ../scss/_layout.scss */
  .main-bottom-nav .contact-nav .contact-nav-box .form .label {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
/* line 1869, ../scss/_layout.scss */
main.page-yuso .main-bottom-nav .contact-nav {
  color: #00945d;
}
/* line 1872, ../scss/_layout.scss */
main.page-yuso .main-bottom-nav .contact-nav .contact-nav-box a {
  border: 2px solid #00945d;
}
/* line 1876, ../scss/_layout.scss */
main.page-yuso .main-bottom-nav .contact-nav .contact-nav-box .phone .pict {
  background-image: url(../img/icon/phone-yuso.svg);
}
/* line 1878, ../scss/_layout.scss */
body.no-svg main.page-yuso .main-bottom-nav .contact-nav .contact-nav-box .phone .pict {
  background-image: url(../img/icon/phone-yuso.png);
}
/* line 1253, ../scss/_func.scss */
main.page-yuso .main-bottom-nav .contact-nav .contact-nav-box .form:hover {
  background-color: #cceadf;
}
/* line 1887, ../scss/_layout.scss */
main.page-yuso .main-bottom-nav .contact-nav .contact-nav-box .form .pict {
  background-image: url(../img/icon/form-yuso.svg);
}
/* line 1889, ../scss/_layout.scss */
body.no-svg main.page-yuso .main-bottom-nav .contact-nav .contact-nav-box .form .pict {
  background-image: url(../img/icon/form-yuso.png);
}
/* line 1895, ../scss/_layout.scss */
main.page-yuso .main-bottom-nav .contact-nav .contact-nav-box .form .label span:first-child {
  border-bottom: 2px solid #00945d;
}
/* line 1903, ../scss/_layout.scss */
main.page-soko .main-bottom-nav .contact-nav {
  color: #0083cc;
}
/* line 1906, ../scss/_layout.scss */
main.page-soko .main-bottom-nav .contact-nav .contact-nav-box a {
  border: 2px solid #0083cc;
}
/* line 1910, ../scss/_layout.scss */
main.page-soko .main-bottom-nav .contact-nav .contact-nav-box .phone .pict {
  background-image: url(../img/icon/phone-soko.svg);
}
/* line 1912, ../scss/_layout.scss */
body.no-svg main.page-soko .main-bottom-nav .contact-nav .contact-nav-box .phone .pict {
  background-image: url(../img/icon/phone-soko.png);
}
/* line 1253, ../scss/_func.scss */
main.page-soko .main-bottom-nav .contact-nav .contact-nav-box .form:hover {
  background-color: #cce6f5;
}
/* line 1921, ../scss/_layout.scss */
main.page-soko .main-bottom-nav .contact-nav .contact-nav-box .form .pict {
  background-image: url(../img/icon/form-soko.svg);
}
/* line 1923, ../scss/_layout.scss */
body.no-svg main.page-soko .main-bottom-nav .contact-nav .contact-nav-box .form .pict {
  background-image: url(../img/icon/form-soko.png);
}
/* line 1929, ../scss/_layout.scss */
main.page-soko .main-bottom-nav .contact-nav .contact-nav-box .form .label span:first-child {
  border-bottom: 2px solid #0083cc;
}

/*
----------------------------------------------------------------------------------------------------

共通デザインの読み込み
@import "objects";

-----
*/
/* line 1271, ../scss/_func.scss */
main a, main a:link, main a:hover, main a:focus, main a:visited {
  text-decoration: underline;
}
/* line 23, ../scss/_object.scss */
main .youtube-media {
  position: relative;
  overflow: hidden;
  /* ※ 本要素のbeforeで縦横比を固定 */
  padding: 0;
  max-width: 100%;
}
/* line 1068, ../scss/_func.scss */
main .youtube-media::before {
  /* paddingが横幅基準であることを利用して高さを確保 */
  display: block;
  position: static;
  width: 100%;
  height: 0;
  margin: 0;
  padding: 56.25% 0 0;
  overflow: hidden;
  content: "";
}
/* line 27, ../scss/_object.scss */
main .youtube-media iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media all and (max-width: 767px) {
  /* line 42, ../scss/_object.scss */
  main div.table-wrap {
    overflow: auto;
  }
  /* line 45, ../scss/_object.scss */
  main div.table-wrap table {
    width: 100%;
  }
}
/* line 56, ../scss/_object.scss */
main select.text-base {
  /* 幅高さの基準を変更 */
  box-sizing: border-box;
  border: 1px solid #ccc;
  padding: 10px 0 10px 5px;
  font-size: 16px;
  font-size: 1rem;
  text-align: left;
}
/* line 63, ../scss/_object.scss */
main input.text-base {
  /* 幅高さの基準を変更 */
  box-sizing: border-box;
  border: 1px solid #ccc;
  padding: 10px 20px;
  font-size: 16px;
  font-size: 1rem;
  text-align: left;
}
/* line 70, ../scss/_object.scss */
main input.text {
  /* 幅高さの基準を変更 */
  box-sizing: border-box;
  border: 1px solid #ccc;
  width: 100%;
  padding: 10px 20px;
  font-size: 16px;
  font-size: 1rem;
  text-align: left;
}
/* line 78, ../scss/_object.scss */
main input.zip {
  /* 幅高さの基準を変更 */
  box-sizing: border-box;
  border: 1px solid #ccc;
  width: 200px;
  padding: 10px 20px;
  font-size: 16px;
  font-size: 1rem;
  text-align: left;
}
/* line 86, ../scss/_object.scss */
main textarea.textbox {
  /* 幅高さの基準を変更 */
  box-sizing: border-box;
  border: 1px solid #ccc;
  width: 100%;
  height: 180px;
  padding: 10px 20px;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.4;
  text-align: left;
}
/* line 96, ../scss/_object.scss */
main select.num-value,
main input.num-value {
  text-align: right;
}
/* line 100, ../scss/_object.scss */
main input.ime-disabled {
  ime-mode: disabled;
}
/* line 107, ../scss/_object.scss */
main input.designed-check, main input.designed-radio {
  display: none;
}
/* line 110, ../scss/_object.scss */
main input.designed-check + label,
main input.designed-radio + label,
main label.designed-check,
main label.designed-radio {
  position: relative;
  display: inline-block;
  padding-left: 2em;
  line-height: 1.4;
  min-height: 1.4em;
  vertical-align: middle;
  cursor: pointer;
  text-align: left;
}
/* line 122, ../scss/_object.scss */
main input.designed-check + label:not(:last-of-type),
main input.designed-radio + label:not(:last-of-type),
main label.designed-check:not(:last-of-type),
main label.designed-radio:not(:last-of-type) {
  margin-right: 2em;
}
@media all and (max-width: 479px) {
  /* line 110, ../scss/_object.scss */
  main input.designed-check + label,
  main input.designed-radio + label,
  main label.designed-check,
  main label.designed-radio {
    display: block;
    margin-right: 0;
  }
  /* line 128, ../scss/_object.scss */
  main input.designed-check + label:not(:last-of-type),
  main input.designed-radio + label:not(:last-of-type),
  main label.designed-check:not(:last-of-type),
  main label.designed-radio:not(:last-of-type) {
    margin-right: 0;
    margin-bottom: 0.4em;
  }
  /* line 132, ../scss/_object.scss */
  main input.designed-check + label:last-of-type + p,
  main input.designed-radio + label:last-of-type + p,
  main label.designed-check:last-of-type + p,
  main label.designed-radio:last-of-type + p {
    margin-top: 0.8em;
  }
}
/* line 136, ../scss/_object.scss */
main input.designed-check + label i.check-mark,
main input.designed-radio + label i.check-mark,
main label.designed-check i.check-mark,
main label.designed-radio i.check-mark {
  /* チェックボックス枠 */
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -0.7em;
  display: block;
  width: 1.2em;
  height: 1.2em;
  background-color: #fff;
  border: 1px solid #ccc;
  content: "";
}
/* line 149, ../scss/_object.scss */
main input.designed-check + label i.check-mark::before,
main input.designed-radio + label i.check-mark::before,
main label.designed-check i.check-mark::before,
main label.designed-radio i.check-mark::before {
  /* チェックボックス チェックマーク 短辺 透明にして非表示 */
  position: absolute;
  top: 50%;
  left: 0.2em;
  margin-top: -0.1em;
  display: block;
  width: 0.5em;
  height: 2px;
  background-color: #DC2800;
  border: 1px solid #DC2800;
  border-radius: 5px;
  transform: rotate(45deg);
  content: "";
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
}
/* line 165, ../scss/_object.scss */
main input.designed-check + label i.check-mark::after,
main input.designed-radio + label i.check-mark::after,
main label.designed-check i.check-mark::after,
main label.designed-radio i.check-mark::after {
  /* チェックボックス チェックマーク 長辺 透明にして非表示 */
  position: absolute;
  top: 50%;
  left: 0.45em;
  margin-top: -0.25em;
  display: block;
  width: 1em;
  height: 2px;
  background-color: #DC2800;
  border: 1px solid #DC2800;
  border-radius: 5px;
  transform: rotate(-45deg);
  content: "";
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
}
/* line 182, ../scss/_object.scss */
main span.designed-label-text {
  position: relative;
  display: inline-block;
  padding-left: 2em;
  margin-right: 2em;
  line-height: 1.4;
  vertical-align: middle;
  text-align: left;
}
/* line 190, ../scss/_object.scss */
main span.designed-label-text:last-child {
  margin-right: 0;
}
/* line 193, ../scss/_object.scss */
main span.designed-label-text label {
  display: inline;
}
/* line 196, ../scss/_object.scss */
main span.designed-label-text input.designed-check + label,
main span.designed-label-text input.designed-radio + label,
main span.designed-label-text label.designed-check,
main span.designed-label-text label.designed-radio {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 2em;
  padding-left: 0;
  margin-right: 0;
  height: 1.4em;
}
/* line 212, ../scss/_object.scss */
main input.designed-radio + label i.check-mark,
main label.designed-radio i.check-mark {
  /* 角丸 */
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  border-radius: 100%;
}
/* line 220, ../scss/_object.scss */
main input.designed-check:checked + label i.check-mark::before,
main input.designed-radio:checked + label i.check-mark::before,
main label.designed-check.checked i.check-mark::before,
main label.designed-radio.checked i.check-mark::before {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  /* アニメーション変化 */
  -moz-transition: filter 0.2s ease 0s, opacity 0.2s ease 0s;
  -o-transition: filter 0.2s ease 0s, opacity 0.2s ease 0s;
  -webkit-transition: filter 0.2s ease 0s, opacity 0.2s ease 0s;
  transition: filter 0.2s ease 0s, opacity 0.2s ease 0s;
}
/* line 224, ../scss/_object.scss */
main input.designed-check:checked + label i.check-mark::after,
main input.designed-radio:checked + label i.check-mark::after,
main label.designed-check.checked i.check-mark::after,
main label.designed-radio.checked i.check-mark::after {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  /* アニメーション変化 */
  -moz-transition: filter 0.2s ease 0.05s, opacity 0.2s ease 0.05s;
  -o-transition: filter 0.2s ease 0.05s, opacity 0.2s ease 0.05s;
  -webkit-transition: filter 0.2s ease 0.05s, opacity 0.2s ease 0.05s;
  transition: filter 0.2s ease 0.05s, opacity 0.2s ease 0.05s;
}
/* line 233, ../scss/_object.scss */
main span.mwform-checkbox-field,
main span.mwform-radio-field {
  display: inline-block;
  margin-left: 0 !important;
  margin-top: 0.3em;
  margin-right: 2em;
}
@media all and (max-width: 479px) {
  /* line 233, ../scss/_object.scss */
  main span.mwform-checkbox-field,
  main span.mwform-radio-field {
    display: block;
    margin-right: 0;
  }
  /* line 248, ../scss/_object.scss */
  main span.mwform-checkbox-field:last-of-type + p,
  main span.mwform-radio-field:last-of-type + p {
    margin-top: 0.8em;
  }
}
/* line 253, ../scss/_object.scss */
main span.mwform-checkbox-field > label > input[type="checkbox"],
main span.mwform-radio-field > label > input[type="radio"] {
  display: none;
}
/* line 257, ../scss/_object.scss */
main span.mwform-checkbox-field > label,
main span.mwform-radio-field > label {
  position: relative;
  display: inline-block;
  padding-left: 2em;
  line-height: 1.4;
  min-height: 1.4em;
  vertical-align: middle;
  cursor: pointer;
  text-align: left;
}
/* line 267, ../scss/_object.scss */
main span.mwform-checkbox-field > label::before,
main span.mwform-radio-field > label::before {
  /* チェックボックス枠 */
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -0.7em;
  display: block;
  width: 1.2em;
  height: 1.2em;
  background-color: #fff;
  border: 1px solid #ccc;
  content: "";
}
/* line 282, ../scss/_object.scss */
main span.mwform-radio-field > label::before {
  /* 角丸 */
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  border-radius: 100%;
}
/* line 286, ../scss/_object.scss */
main span.mwform-checkbox-field > label > input[type="checkbox"] + span.mwform-checkbox-field-text,
main span.mwform-radio-field > label > input[type="radio"] + span.mwform-radio-field-text {
  display: inline;
}
/* line 289, ../scss/_object.scss */
main span.mwform-checkbox-field > label > input[type="checkbox"] + span.mwform-checkbox-field-text::before,
main span.mwform-radio-field > label > input[type="radio"] + span.mwform-radio-field-text::before {
  /* チェックボックス チェックマーク 短辺 透明にして非表示 */
  position: absolute;
  top: 50%;
  left: 0.2em;
  margin-top: -0.1em;
  display: block;
  width: 0.5em;
  height: 2px;
  background-color: #DC2800;
  border: 1px solid #DC2800;
  border-radius: 5px;
  transform: rotate(45deg);
  content: "";
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
}
/* line 305, ../scss/_object.scss */
main span.mwform-checkbox-field > label > input[type="checkbox"] + span.mwform-checkbox-field-text::after,
main span.mwform-radio-field > label > input[type="radio"] + span.mwform-radio-field-text::after {
  /* チェックボックス チェックマーク 長辺 透明にして非表示 */
  position: absolute;
  top: 50%;
  left: 0.45em;
  margin-top: -0.25em;
  display: block;
  width: 1em;
  height: 2px;
  background-color: #DC2800;
  border: 1px solid #DC2800;
  border-radius: 5px;
  transform: rotate(-45deg);
  content: "";
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
}
/* line 324, ../scss/_object.scss */
main span.mwform-checkbox-field > label > input[type="checkbox"]:checked + span.mwform-checkbox-field-text::before,
main span.mwform-radio-field > label > input[type="radio"]:checked + span.mwform-radio-field-text::before {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  /* アニメーション変化 */
  -moz-transition: filter 0.2s ease 0s, opacity 0.2s ease 0s;
  -o-transition: filter 0.2s ease 0s, opacity 0.2s ease 0s;
  -webkit-transition: filter 0.2s ease 0s, opacity 0.2s ease 0s;
  transition: filter 0.2s ease 0s, opacity 0.2s ease 0s;
}
/* line 328, ../scss/_object.scss */
main span.mwform-checkbox-field > label > input[type="checkbox"]:checked + span.mwform-checkbox-field-text::after,
main span.mwform-radio-field > label > input[type="radio"]:checked + span.mwform-radio-field-text::after {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  /* アニメーション変化 */
  -moz-transition: filter 0.2s ease 0.05s, opacity 0.2s ease 0.05s;
  -o-transition: filter 0.2s ease 0.05s, opacity 0.2s ease 0.05s;
  -webkit-transition: filter 0.2s ease 0.05s, opacity 0.2s ease 0.05s;
  transition: filter 0.2s ease 0.05s, opacity 0.2s ease 0.05s;
}
/* line 335, ../scss/_object.scss */
main button {
  cursor: pointer;
}

/*
----------------------------------------------------------------------------------------------------

ページごとデザインの読み込み
@import "page_***";

-----
*/
/*
==================================================

	サブページ共通

==================================================
*/
/* line 27, ../scss/_page_common.scss */
main {
  font-size: 16px;
  font-size: 1rem;
  text-align: center;
}
@media all and (max-width: 767px) {
  /* line 27, ../scss/_page_common.scss */
  main {
    text-align: left;
    font-size: 14px;
    font-size: 0.875rem;
  }
}
/* line 37, ../scss/_page_common.scss */
main #sub-page-header {
  position: relative;
  background-color: #e5e5e5;
  padding-top: 90px;
  height: 300px;
}
@media all and (min-width: 960px) and (max-width: 1199px) {
  /* line 37, ../scss/_page_common.scss */
  main #sub-page-header {
    padding-top: 90px;
  }
}
@media all and (min-width: 768px) and (max-width: 959px) {
  /* line 37, ../scss/_page_common.scss */
  main #sub-page-header {
    padding-top: 60px;
  }
}
@media all and (min-width: 480px) and (max-width: 767px) {
  /* line 37, ../scss/_page_common.scss */
  main #sub-page-header {
    padding-top: 60px;
  }
}
@media all and (max-width: 479px) {
  /* line 37, ../scss/_page_common.scss */
  main #sub-page-header {
    padding-top: 60px;
  }
}
/* line 54, ../scss/_page_common.scss */
main #sub-page-header #page-title {
  position: absolute;
  z-index: 2;
  bottom: 150px;
  left: 50%;
  display: block;
  /* 変形 */
  -moz-transform: translate(-50%, 50%);
  -ms-transform: translate(-50%, 50%);
  -webkit-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
  text-align: center;
  white-space: nowrap;
}
/* line 63, ../scss/_page_common.scss */
main #sub-page-header #page-title em.main {
  display: inline-block;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-weight: bold;
  letter-spacing: 0;
  font-size: 32px;
  font-size: 2rem;
  line-height: 1;
}
/* line 69, ../scss/_page_common.scss */
main #sub-page-header #page-title span.ruby {
  display: inline-block;
  color: #808080;
  margin-top: 10px;
  font-family: "Quicksand", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-weight: normal;
  letter-spacing: 0;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1;
}
@media all and (min-width: 960px) and (max-width: 1199px) {
  /* line 37, ../scss/_page_common.scss */
  main #sub-page-header {
    height: 300px;
  }
  /* line 80, ../scss/_page_common.scss */
  main #sub-page-header #page-title {
    bottom: 150px;
    white-space: nowrap;
  }
  /* line 83, ../scss/_page_common.scss */
  main #sub-page-header #page-title em.main {
    font-size: 32px;
    font-size: 2rem;
  }
  /* line 86, ../scss/_page_common.scss */
  main #sub-page-header #page-title span.ruby {
    margin-top: 10px;
    font-size: 18px;
    font-size: 1.125rem;
  }
}
@media all and (min-width: 480px) and (max-width: 959px) {
  /* line 37, ../scss/_page_common.scss */
  main #sub-page-header {
    height: 300px;
  }
  /* line 94, ../scss/_page_common.scss */
  main #sub-page-header #page-title {
    bottom: 150px;
    white-space: nowrap;
  }
  /* line 97, ../scss/_page_common.scss */
  main #sub-page-header #page-title em.main {
    font-size: 26px;
    font-size: 1.625rem;
  }
  /* line 100, ../scss/_page_common.scss */
  main #sub-page-header #page-title span.ruby {
    margin-top: 10px;
    font-size: 16px;
    font-size: 1rem;
  }
}
@media all and (max-width: 479px) {
  /* line 37, ../scss/_page_common.scss */
  main #sub-page-header {
    height: 200px;
  }
  /* line 108, ../scss/_page_common.scss */
  main #sub-page-header #page-title {
    bottom: 100px;
    white-space: nowrap;
  }
  /* line 111, ../scss/_page_common.scss */
  main #sub-page-header #page-title em.main {
    font-size: 22px;
    font-size: 1.375rem;
  }
  /* line 114, ../scss/_page_common.scss */
  main #sub-page-header #page-title span.ruby {
    margin-top: 10px;
    font-size: 14px;
    font-size: 0.875rem;
  }
}

/*
==================================================

	製品情報

==================================================
*/
/* line 28, ../scss/_page_products.scss */
#top-screen-panel {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
/* line 34, ../scss/_page_products.scss */
#top-screen-panel .scroll-follow-item {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
/* line 42, ../scss/_page_products.scss */
#top-screen-panel .video-container {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
}
/* line 61, ../scss/_page_products.scss */
#top-screen-panel .video-container video {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  display: block;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  /* 変形 */
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
/* line 72, ../scss/_page_products.scss */
#top-screen-panel .video-container video.wide {
  height: 100%;
}
/* line 75, ../scss/_page_products.scss */
#top-screen-panel .video-container video.narrow {
  width: 100%;
}
/* line 78, ../scss/_page_products.scss */
#top-screen-panel .video-container video .image-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* line 87, ../scss/_page_products.scss */
#top-screen-panel .screen-container {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 50%;
  color: #fff;
  text-align: center;
}
/* line 95, ../scss/_page_products.scss */
main.page-yuso #top-screen-panel .screen-container {
  background-color: #00945d;
}
/* line 98, ../scss/_page_products.scss */
main.page-soko #top-screen-panel .screen-container {
  background-color: #0083cc;
}
/* line 101, ../scss/_page_products.scss */
#top-screen-panel .screen-container #top-screen-title {
  /* ▼ 上下を中央配置 */
  position: absolute;
  top: 50%;
  /* 変形 */
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  /* ▲ 上下を中央配置 */
  left: 10%;
  width: 80%;
  font-size: 32px;
  font-size: 2rem;
  line-height: 1.6;
}
/* line 107, ../scss/_page_products.scss */
#top-screen-panel .screen-container #top-screen-title em {
  display: inline-block;
  margin-top: 30px;
}
/* line 112, ../scss/_page_products.scss */
#top-screen-panel .screen-container #top-screen-scroll {
  position: absolute;
  bottom: 50px;
  left: 50%;
  display: inline-block;
  /* 変形 */
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  /* アニメーション変化 */
  -moz-transition: -moz-transform 0.4s ease 0s, -ms-transform 0.4s ease 0s, -webkit-transform 0.4s ease 0s, transform 0.4s ease 0s;
  -o-transition: -moz-transform 0.4s ease 0s, -ms-transform 0.4s ease 0s, -webkit-transform 0.4s ease 0s, transform 0.4s ease 0s;
  -webkit-transition: -moz-transform 0.4s ease 0s, -ms-transform 0.4s ease 0s, -webkit-transform 0.4s ease 0s, transform 0.4s ease 0s;
  transition: -moz-transform 0.4s ease 0s, -ms-transform 0.4s ease 0s, -webkit-transform 0.4s ease 0s, transform 0.4s ease 0s;
}
/* line 1253, ../scss/_func.scss */
#top-screen-panel .screen-container #top-screen-scroll:hover {
  /* 変形 */
  -moz-transform: translate(-50%, 20%);
  -ms-transform: translate(-50%, 20%);
  -webkit-transform: translate(-50%, 20%);
  transform: translate(-50%, 20%);
}
@media all and (max-width: 959px) {
  /* line 131, ../scss/_page_products.scss */
  #top-screen-panel .video-container {
    width: 100%;
    height: 60%;
  }
  /* line 135, ../scss/_page_products.scss */
  #top-screen-panel .screen-container {
    height: 45%;
    width: 100%;
  }
  /* line 138, ../scss/_page_products.scss */
  #top-screen-panel .screen-container #top-screen-title {
    top: -60px;
    left: 5%;
    width: 90%;
    font-size: 32px;
    font-size: 2rem;
    line-height: 1.6;
  }
  /* line 144, ../scss/_page_products.scss */
  #top-screen-panel .screen-container #top-screen-title em {
    display: inline-block;
    margin-top: 30px;
  }
}
@media all and (max-width: 479px) {
  /* line 153, ../scss/_page_products.scss */
  #top-screen-panel .screen-container #top-screen-title {
    top: -35px;
    font-size: 22px;
    font-size: 1.375rem;
  }
  /* line 156, ../scss/_page_products.scss */
  #top-screen-panel .screen-container #top-screen-title em {
    margin-top: 10px;
  }
  /* line 158, ../scss/_page_products.scss */
  #top-screen-panel .screen-container #top-screen-title em img {
    height: 50px;
    width: auto;
  }
}

/* line 171, ../scss/_page_products.scss */
.product-section {
  padding: 70px 0 0;
}
/* line 174, ../scss/_page_products.scss */
.product-section .product-section-title {
  text-align: center;
}
/* line 176, ../scss/_page_products.scss */
.product-section .product-section-title em.main {
  display: inline-block;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-weight: bold;
  letter-spacing: 0;
  font-size: 38px;
  font-size: 2.375rem;
}
/* line 180, ../scss/_page_products.scss */
.product-section .product-section-title em.main.eng {
  font-family: "Quicksand", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-weight: normal;
  letter-spacing: 0;
}
/* line 183, ../scss/_page_products.scss */
.product-section .product-section-title em.main em {
  display: inline-block;
  margin: 0 0.2em;
  font-size: 52px;
  font-size: 3.25rem;
}
/* line 189, ../scss/_page_products.scss */
.product-section .product-section-title span.ruby {
  display: inline-block;
  font-family: "Quicksand", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-weight: normal;
  letter-spacing: 0;
  font-size: 16px;
  font-size: 1rem;
}
@media all and (min-width: 768px) and (max-width: 959px) {
  /* line 195, ../scss/_page_products.scss */
  .product-section .product-section-title em.main {
    font-size: 32px;
    font-size: 2rem;
  }
  /* line 197, ../scss/_page_products.scss */
  .product-section .product-section-title em.main em {
    font-size: 48px;
    font-size: 3rem;
  }
  /* line 201, ../scss/_page_products.scss */
  .product-section .product-section-title span.ruby {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
@media all and (max-width: 767px) {
  /* line 206, ../scss/_page_products.scss */
  .product-section .product-section-title em.main {
    font-size: 24px;
    font-size: 1.5rem;
  }
  /* line 208, ../scss/_page_products.scss */
  .product-section .product-section-title em.main em {
    font-size: 36px;
    font-size: 2.25rem;
  }
  /* line 212, ../scss/_page_products.scss */
  .product-section .product-section-title span.ruby {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
/* line 217, ../scss/_page_products.scss */
main.page-yuso .product-section .product-section-title em.main {
  color: #00945d;
}
/* line 220, ../scss/_page_products.scss */
main.page-yuso .product-section .product-section-title span.ruby {
  color: #66bf9e;
}
/* line 225, ../scss/_page_products.scss */
main.page-soko .product-section .product-section-title em.main {
  color: #0083cc;
}
/* line 228, ../scss/_page_products.scss */
main.page-soko .product-section .product-section-title span.ruby {
  color: #66b5e0;
}
/* line 234, ../scss/_page_products.scss */
.product-section ul.news-list {
  margin-top: 50px;
}
/* line 236, ../scss/_page_products.scss */
.product-section ul.news-list > li {
  margin-bottom: 20px;
}
/* line 238, ../scss/_page_products.scss */
.product-section ul.news-list > li a {
  text-decoration: none;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  /* アニメーション変化 */
  -moz-transition: filter 0.4s ease 0s, opacity 0.4s ease 0s;
  -o-transition: filter 0.4s ease 0s, opacity 0.4s ease 0s;
  -webkit-transition: filter 0.4s ease 0s, opacity 0.4s ease 0s;
  transition: filter 0.4s ease 0s, opacity 0.4s ease 0s;
}
/* line 615, ../scss/_func.scss */
body.no-flex .product-section ul.news-list > li a {
  display: block;
  text-align: left;
}
/* line 94, ../scss/_func.scss */
body.no-flex .product-section ul.news-list > li a::after {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  clear: both;
}
/* line 627, ../scss/_func.scss */
body.no-flex .product-section ul.news-list > li a > * {
  display: block;
  float: left;
  vertical-align: middle;
}
/* line 1253, ../scss/_func.scss */
.product-section ul.news-list > li a:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
}
/* line 245, ../scss/_page_products.scss */
.product-section ul.news-list > li a div.date {
  /* 幅高さの基準を変更 */
  box-sizing: border-box;
  width: 100px;
  text-align: left;
}
/* line 250, ../scss/_page_products.scss */
.product-section ul.news-list > li a div.category {
  /* 幅高さの基準を変更 */
  box-sizing: border-box;
  width: 100px;
  text-align: center;
  font-family: "Quicksand", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-weight: normal;
  letter-spacing: 0;
}
/* line 256, ../scss/_page_products.scss */
main.page-yuso .product-section ul.news-list > li a div.category.category-news {
  color: #fff;
  background-color: #33a97d;
}
/* line 260, ../scss/_page_products.scss */
main.page-yuso .product-section ul.news-list > li a div.category.category-event {
  color: #00945d;
  background-color: #cceadf;
}
/* line 266, ../scss/_page_products.scss */
main.page-soko .product-section ul.news-list > li a div.category.category-news {
  color: #fff;
  background-color: #339cd6;
}
/* line 270, ../scss/_page_products.scss */
main.page-soko .product-section ul.news-list > li a div.category.category-event {
  color: #0083cc;
  background-color: #cce6f5;
}
@media print {
  /* line 276, ../scss/_page_products.scss */
  main.page-yuso .product-section ul.news-list > li a div.category {
    border: 2px solid #00945d !important;
    color: #00945d !important;
  }
  /* line 280, ../scss/_page_products.scss */
  main.page-soko .product-section ul.news-list > li a div.category {
    border: 2px solid #0083cc !important;
    color: #0083cc !important;
  }
}
/* line 286, ../scss/_page_products.scss */
.product-section ul.news-list > li a div.title {
  /* 幅高さの基準を変更 */
  box-sizing: border-box;
  width: calc(100% - 200px);
  padding-left: 30px;
  text-align: left;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
@media all and (max-width: 767px) {
  /* line 296, ../scss/_page_products.scss */
  .product-section ul.news-list > li a div.date {
    width: 90px;
  }
  /* line 299, ../scss/_page_products.scss */
  .product-section ul.news-list > li a div.category {
    display: none;
  }
  /* line 302, ../scss/_page_products.scss */
  .product-section ul.news-list > li a div.title {
    /* 幅高さの基準を変更 */
    box-sizing: border-box;
    width: calc(100% - 90px);
    padding-left: 10px;
  }
}
/* line 312, ../scss/_page_products.scss */
.product-section div.link-to-list {
  margin-top: 50px;
  text-align: center;
}
/* line 315, ../scss/_page_products.scss */
.product-section div.link-to-list a {
  display: inline-block;
  /* 幅高さの基準を変更 */
  box-sizing: border-box;
  width: 240px;
  padding: 10px 20px 10px;
  margin: 0 10px 20px;
  line-height: 30px;
  text-decoration: none;
  font-family: "Quicksand", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-weight: normal;
  letter-spacing: 0;
  font-size: 16px;
  font-size: 1rem;
  /* アニメーション変化 */
  -moz-transition: filter 0.4s ease 0s, opacity 0.4s ease 0s;
  -o-transition: filter 0.4s ease 0s, opacity 0.4s ease 0s;
  -webkit-transition: filter 0.4s ease 0s, opacity 0.4s ease 0s;
  transition: filter 0.4s ease 0s, opacity 0.4s ease 0s;
}
/* line 1253, ../scss/_func.scss */
.product-section div.link-to-list a:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
}
/* line 330, ../scss/_page_products.scss */
main.page-yuso .product-section div.link-to-list a.category-news {
  color: #fff;
  background-color: #33a97d;
}
/* line 334, ../scss/_page_products.scss */
main.page-yuso .product-section div.link-to-list a.category-event {
  color: #00945d;
  background-color: #cceadf;
}
/* line 340, ../scss/_page_products.scss */
main.page-soko .product-section div.link-to-list a.category-news {
  color: #fff;
  background-color: #339cd6;
}
/* line 344, ../scss/_page_products.scss */
main.page-soko .product-section div.link-to-list a.category-event {
  color: #0083cc;
  background-color: #cce6f5;
}
@media print {
  /* line 350, ../scss/_page_products.scss */
  main.page-yuso .product-section div.link-to-list a {
    border: 2px solid #00945d !important;
    color: #00945d !important;
  }
  /* line 354, ../scss/_page_products.scss */
  main.page-soko .product-section div.link-to-list a {
    border: 2px solid #0083cc !important;
    color: #0083cc !important;
  }
}
/* line 376, ../scss/_page_products.scss */
.product-section dl.trouble-list {
  margin-top: 50px;
  text-align: left;
}
/* line 379, ../scss/_page_products.scss */
.product-section dl.trouble-list > dt {
  position: relative;
  z-index: 1;
  margin-top: 30px;
  background-color: #fff;
}
/* line 384, ../scss/_page_products.scss */
.product-section dl.trouble-list > dt::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  display: block;
  width: 190px;
  height: 100%;
  content: "";
}
/* line 392, ../scss/_page_products.scss */
main.page-yuso .product-section dl.trouble-list > dt::before {
  background-color: #00945d;
}
/* line 395, ../scss/_page_products.scss */
main.page-soko .product-section dl.trouble-list > dt::before {
  background-color: #0083cc;
}
/* line 400, ../scss/_page_products.scss */
.product-section dl.trouble-list > dt div.order {
  /* 幅高さの基準を変更 */
  box-sizing: border-box;
  color: #fff;
  width: 190px;
  padding: 10px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
/* line 405, ../scss/_page_products.scss */
main.page-yuso .product-section dl.trouble-list > dt div.order {
  background-color: #00945d;
}
/* line 408, ../scss/_page_products.scss */
main.page-soko .product-section dl.trouble-list > dt div.order {
  background-color: #0083cc;
}
@media print {
  /* line 412, ../scss/_page_products.scss */
  main.page-yuso .product-section dl.trouble-list > dt div.order {
    color: #00945d;
    background-color: #fff;
    border: 2px solid #00945d;
  }
  /* line 417, ../scss/_page_products.scss */
  main.page-soko .product-section dl.trouble-list > dt div.order {
    color: #0083cc;
    background-color: #fff;
    border: 2px solid #0083cc;
  }
}
/* line 687, ../scss/_func.scss */
body.no-flex .product-section dl.trouble-list > dt div.order {
  display: block;
  text-align: center;
}
/* line 692, ../scss/_func.scss */
body.no-flex .product-section dl.trouble-list > dt div.order > * {
  display: inline-block !important;
  vertical-align: middle;
}
/* line 424, ../scss/_page_products.scss */
.product-section dl.trouble-list > dt div.order > span {
  display: block;
  font-size: 16px;
  font-size: 1rem;
  line-height: 30px;
}
/* line 428, ../scss/_page_products.scss */
.product-section dl.trouble-list > dt div.order > span em.number {
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.5em;
  font-family: "Quicksand", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-weight: normal;
  letter-spacing: 0;
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 30px;
}
@media all and (-ms-high-contrast: none) {
  /* line 424, ../scss/_page_products.scss */
  .product-section dl.trouble-list > dt div.order > span {
    /* Internet Explorer only */
    padding-top: 0.2em;
  }
  /* line 438, ../scss/_page_products.scss */
  .product-section dl.trouble-list > dt div.order > span em.number {
    /* 変形 */
    -moz-transform: translateY(-8%);
    -ms-transform: translateY(-8%);
    -webkit-transform: translateY(-8%);
    transform: translateY(-8%);
  }
}
/* line 444, ../scss/_page_products.scss */
.product-section dl.trouble-list > dt p.text {
  position: relative;
  /* 幅高さの基準を変更 */
  box-sizing: border-box;
  background-color: #fff;
  width: calc(100% - 190px);
  padding: 10px 60px 10px 30px;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-weight: bold;
  letter-spacing: 0;
  font-size: 18px;
  font-size: 1.125rem;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
/* line 452, ../scss/_page_products.scss */
main.page-yuso .product-section dl.trouble-list > dt p.text {
  /* ※ 本要素のbefore, afterで矢印を作成 */
}
/* line 881, ../scss/_func.scss */
main.page-yuso .product-section dl.trouble-list > dt p.text::before, main.page-yuso .product-section dl.trouble-list > dt p.text::after {
  /* before, afterで矢印：矢印の各辺を作成 */
  position: absolute;
  z-index: auto;
  display: block;
  width: 10px;
  height: 0;
  border-top: 1px solid #00945d;
  border-bottom: 1px solid #00945d;
  margin-bottom: -1px;
  background-color: #00945d;
  content: "";
}
/* line 895, ../scss/_func.scss */
main.page-yuso .product-section dl.trouble-list > dt p.text::before {
  /* before, afterで矢印：配置して変形 */
  bottom: 50%;
  right: 30px;
  /* 変形 */
  -moz-transform: matrix(1, 1, 0, 1, 0, 0);
  -ms-transform: matrix(1, 1, 0, 1, 0, 0);
  -webkit-transform: matrix(1, 1, 0, 1, 0, 0);
  transform: matrix(1, 1, 0, 1, 0, 0);
}
/* line 916, ../scss/_func.scss */
main.page-yuso .product-section dl.trouble-list > dt p.text::after {
  /* before, afterで矢印：配置して変形 */
  bottom: 50%;
  right: 30px;
  margin-right: -10px;
  /* 変形 */
  -moz-transform: matrix(1, -1, 0, 1, 0, 0);
  -ms-transform: matrix(1, -1, 0, 1, 0, 0);
  -webkit-transform: matrix(1, -1, 0, 1, 0, 0);
  transform: matrix(1, -1, 0, 1, 0, 0);
}
/* line 455, ../scss/_page_products.scss */
main.page-soko .product-section dl.trouble-list > dt p.text {
  /* ※ 本要素のbefore, afterで矢印を作成 */
}
/* line 881, ../scss/_func.scss */
main.page-soko .product-section dl.trouble-list > dt p.text::before, main.page-soko .product-section dl.trouble-list > dt p.text::after {
  /* before, afterで矢印：矢印の各辺を作成 */
  position: absolute;
  z-index: auto;
  display: block;
  width: 10px;
  height: 0;
  border-top: 1px solid #0083cc;
  border-bottom: 1px solid #0083cc;
  margin-bottom: -1px;
  background-color: #0083cc;
  content: "";
}
/* line 895, ../scss/_func.scss */
main.page-soko .product-section dl.trouble-list > dt p.text::before {
  /* before, afterで矢印：配置して変形 */
  bottom: 50%;
  right: 30px;
  /* 変形 */
  -moz-transform: matrix(1, 1, 0, 1, 0, 0);
  -ms-transform: matrix(1, 1, 0, 1, 0, 0);
  -webkit-transform: matrix(1, 1, 0, 1, 0, 0);
  transform: matrix(1, 1, 0, 1, 0, 0);
}
/* line 916, ../scss/_func.scss */
main.page-soko .product-section dl.trouble-list > dt p.text::after {
  /* before, afterで矢印：配置して変形 */
  bottom: 50%;
  right: 30px;
  margin-right: -10px;
  /* 変形 */
  -moz-transform: matrix(1, -1, 0, 1, 0, 0);
  -ms-transform: matrix(1, -1, 0, 1, 0, 0);
  -webkit-transform: matrix(1, -1, 0, 1, 0, 0);
  transform: matrix(1, -1, 0, 1, 0, 0);
}
/* line 961, ../scss/_func.scss */
.product-section dl.trouble-list > dt p.text::before, .product-section dl.trouble-list > dt p.text::after {
  /* アニメーション変化 */
  -moz-transition: border-top-color 0.5s ease 0s, border-bottom-color 0.5s ease 0s, background-color 0.5s ease 0s, top 0.5s ease 0s, bottom 0.5s ease 0s, left 0.5s ease 0s, right 0.5s ease 0s, -moz-transform 0.5s ease 0s, -ms-transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s, transform 0.5s ease 0s;
  -o-transition: border-top-color 0.5s ease 0s, border-bottom-color 0.5s ease 0s, background-color 0.5s ease 0s, top 0.5s ease 0s, bottom 0.5s ease 0s, left 0.5s ease 0s, right 0.5s ease 0s, -moz-transform 0.5s ease 0s, -ms-transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s, transform 0.5s ease 0s;
  -webkit-transition: border-top-color 0.5s ease 0s, border-bottom-color 0.5s ease 0s, background-color 0.5s ease 0s, top 0.5s ease 0s, bottom 0.5s ease 0s, left 0.5s ease 0s, right 0.5s ease 0s, -moz-transform 0.5s ease 0s, -ms-transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s, transform 0.5s ease 0s;
  transition: border-top-color 0.5s ease 0s, border-bottom-color 0.5s ease 0s, background-color 0.5s ease 0s, top 0.5s ease 0s, bottom 0.5s ease 0s, left 0.5s ease 0s, right 0.5s ease 0s, -moz-transform 0.5s ease 0s, -ms-transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s, transform 0.5s ease 0s;
}
/* line 687, ../scss/_func.scss */
body.no-flex .product-section dl.trouble-list > dt p.text {
  display: block;
}
/* line 692, ../scss/_func.scss */
body.no-flex .product-section dl.trouble-list > dt p.text > * {
  display: inline-block !important;
  vertical-align: middle;
}
/* line 460, ../scss/_page_products.scss */
.product-section dl.trouble-list > dt p.text > span {
  display: block;
  width: 100%;
  text-align: left;
}
/* line 951, ../scss/_func.scss */
main.page-yuso .product-section dl.trouble-list > dt.open p.text::before {
  /* 変形 */
  -moz-transform: matrix(1, -1, 0, 1, 0, 0);
  -ms-transform: matrix(1, -1, 0, 1, 0, 0);
  -webkit-transform: matrix(1, -1, 0, 1, 0, 0);
  transform: matrix(1, -1, 0, 1, 0, 0);
}
/* line 954, ../scss/_func.scss */
main.page-yuso .product-section dl.trouble-list > dt.open p.text::after {
  /* 変形 */
  -moz-transform: matrix(1, 1, 0, 1, 0, 0);
  -ms-transform: matrix(1, 1, 0, 1, 0, 0);
  -webkit-transform: matrix(1, 1, 0, 1, 0, 0);
  transform: matrix(1, 1, 0, 1, 0, 0);
}
/* line 951, ../scss/_func.scss */
main.page-soko .product-section dl.trouble-list > dt.open p.text::before {
  /* 変形 */
  -moz-transform: matrix(1, -1, 0, 1, 0, 0);
  -ms-transform: matrix(1, -1, 0, 1, 0, 0);
  -webkit-transform: matrix(1, -1, 0, 1, 0, 0);
  transform: matrix(1, -1, 0, 1, 0, 0);
}
/* line 954, ../scss/_func.scss */
main.page-soko .product-section dl.trouble-list > dt.open p.text::after {
  /* 変形 */
  -moz-transform: matrix(1, 1, 0, 1, 0, 0);
  -ms-transform: matrix(1, 1, 0, 1, 0, 0);
  -webkit-transform: matrix(1, 1, 0, 1, 0, 0);
  transform: matrix(1, 1, 0, 1, 0, 0);
}
@media all and (min-width: 768px) {
  /* line 379, ../scss/_page_products.scss */
  .product-section dl.trouble-list > dt {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: stretch;
    align-items: stretch;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  /* line 615, ../scss/_func.scss */
  body.no-flex .product-section dl.trouble-list > dt {
    display: block;
    text-align: left;
  }
  /* line 94, ../scss/_func.scss */
  body.no-flex .product-section dl.trouble-list > dt::after {
    content: "";
    display: block;
    width: 100%;
    height: 0;
    clear: both;
  }
  /* line 627, ../scss/_func.scss */
  body.no-flex .product-section dl.trouble-list > dt > * {
    display: block;
    float: left;
    vertical-align: middle;
  }
}
@media all and (min-width: 768px) and (max-width: 959px) {
  /* line 481, ../scss/_page_products.scss */
  .product-section dl.trouble-list > dt div.order > span {
    font-size: 14px;
    font-size: 0.875rem;
  }
  /* line 483, ../scss/_page_products.scss */
  .product-section dl.trouble-list > dt div.order > span em.number {
    font-size: 24px;
    font-size: 1.5rem;
  }
  /* line 488, ../scss/_page_products.scss */
  .product-section dl.trouble-list > dt p.text {
    font-size: 16px;
    font-size: 1rem;
  }
}
@media all and (max-width: 767px) {
  /* line 493, ../scss/_page_products.scss */
  .product-section dl.trouble-list > dt div.order {
    width: 100%;
    padding: 5px 10px;
  }
  /* line 496, ../scss/_page_products.scss */
  .product-section dl.trouble-list > dt div.order > span {
    font-size: 14px;
    font-size: 0.875rem;
  }
  /* line 498, ../scss/_page_products.scss */
  .product-section dl.trouble-list > dt div.order > span em.number {
    font-size: 24px;
    font-size: 1.5rem;
  }
  /* line 503, ../scss/_page_products.scss */
  .product-section dl.trouble-list > dt p.text {
    width: 100%;
    padding: 10px 60px 10px 20px;
    font-size: 14px;
    font-size: 0.875rem;
  }
}
/* line 510, ../scss/_page_products.scss */
.product-section dl.trouble-list > dd {
  padding: 30px 0;
}
/* line 512, ../scss/_page_products.scss */
.product-section dl.trouble-list > dd .heading {
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-weight: bold;
  letter-spacing: 0;
  font-size: 22px;
  font-size: 1.375rem;
}
/* line 515, ../scss/_page_products.scss */
.product-section dl.trouble-list > dd .heading em.mark {
  display: inline-block;
  padding: 4px 20px 4px;
  margin-right: 1em;
}
/* line 519, ../scss/_page_products.scss */
main.page-yuso .product-section dl.trouble-list > dd .heading em.mark {
  color: #00945d;
  border: 2px solid #00945d;
}
/* line 523, ../scss/_page_products.scss */
main.page-soko .product-section dl.trouble-list > dd .heading em.mark {
  color: #0083cc;
  border: 2px solid #0083cc;
}
@media all and (-ms-high-contrast: none) {
  /* line 515, ../scss/_page_products.scss */
  .product-section dl.trouble-list > dd .heading em.mark {
    /* Internet Explorer only */
    padding: 0.35em 20px 0.1em;
  }
}
/* line 532, ../scss/_page_products.scss */
.product-section dl.trouble-list > dd .content {
  margin-top: 30px;
}
/* line 94, ../scss/_func.scss */
.product-section dl.trouble-list > dd .content::after {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  clear: both;
}
/* line 535, ../scss/_page_products.scss */
.product-section dl.trouble-list > dd .content div.image {
  float: right;
  width: 28%;
  margin-left: 10px;
  margin-bottom: 5px;
}
/* line 540, ../scss/_page_products.scss */
.product-section dl.trouble-list > dd .content div.image img {
  display: block;
  width: 100%;
  height: auto;
}
/* line 547, ../scss/_page_products.scss */
.product-section dl.trouble-list > dd .content div.text > *:not(:first-child) {
  margin-top: 20px;
}
/* line 94, ../scss/_func.scss */
.product-section dl.trouble-list > dd .content div.text div.list::after {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  clear: both;
}
@media all and (min-width: 480px) {
  /* line 552, ../scss/_page_products.scss */
  .product-section dl.trouble-list > dd .content div.text div.list .list-title {
    float: left;
  }
}
@media all and (max-width: 479px) {
  /* line 552, ../scss/_page_products.scss */
  .product-section dl.trouble-list > dd .content div.text div.list .list-title {
    margin-bottom: 10px;
  }
}
@media all and (min-width: 480px) {
  /* line 560, ../scss/_page_products.scss */
  .product-section dl.trouble-list > dd .content div.text div.list dl {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: stretch;
    align-items: stretch;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  /* line 467, ../scss/_func.scss */
  .product-section dl.trouble-list > dd .content div.text div.list dl > dt, .product-section dl.trouble-list > dd .content div.text div.list dl > dd {
    display: block;
    /* 幅高さの基準を変更 */
    box-sizing: border-box;
  }
  /* line 472, ../scss/_func.scss */
  .product-section dl.trouble-list > dd .content div.text div.list dl > dt {
    width: 7em;
  }
  /* line 478, ../scss/_func.scss */
  .product-section dl.trouble-list > dd .content div.text div.list dl > dd {
    width: calc(100% - 7em);
  }
  /* line 486, ../scss/_func.scss */
  body.no-flex .product-section dl.trouble-list > dd .content div.text div.list dl {
    display: block;
  }
  /* line 94, ../scss/_func.scss */
  body.no-flex .product-section dl.trouble-list > dd .content div.text div.list dl::after {
    content: "";
    display: block;
    width: 100%;
    height: 0;
    clear: both;
  }
  /* line 489, ../scss/_func.scss */
  body.no-flex .product-section dl.trouble-list > dd .content div.text div.list dl > dt {
    clear: both;
    float: left;
  }
  /* line 493, ../scss/_func.scss */
  body.no-flex .product-section dl.trouble-list > dd .content div.text div.list dl > dd {
    float: right;
  }
}
@media all and (min-width: 480px) {
  /* line 564, ../scss/_page_products.scss */
  .product-section dl.trouble-list > dd .content div.text div.list dl > dt {
    text-align: center;
  }
}
/* line 569, ../scss/_page_products.scss */
.product-section dl.trouble-list > dd .content div.text div.list dl > dd {
  padding-left: 1.6em;
  text-indent: -1.2em;
}
/* line 572, ../scss/_page_products.scss */
.product-section dl.trouble-list > dd .content div.text div.list dl > dd::before {
  content: "… ";
}
@media all and (max-width: 479px) {
  /* line 569, ../scss/_page_products.scss */
  .product-section dl.trouble-list > dd .content div.text div.list dl > dd {
    margin-bottom: 10px;
  }
}
@media all and (min-width: 768px) and (max-width: 959px) {
  /* line 510, ../scss/_page_products.scss */
  .product-section dl.trouble-list > dd {
    padding: 20px 0;
  }
  /* line 585, ../scss/_page_products.scss */
  .product-section dl.trouble-list > dd .heading {
    font-size: 16px;
    font-size: 1rem;
  }
  /* line 588, ../scss/_page_products.scss */
  .product-section dl.trouble-list > dd .content {
    margin-top: 20px;
  }
}
@media all and (max-width: 767px) {
  /* line 510, ../scss/_page_products.scss */
  .product-section dl.trouble-list > dd {
    padding: 20px 0;
  }
  /* line 594, ../scss/_page_products.scss */
  .product-section dl.trouble-list > dd .heading {
    font-size: 16px;
    font-size: 1rem;
  }
  /* line 596, ../scss/_page_products.scss */
  .product-section dl.trouble-list > dd .heading em.mark {
    display: inline-block;
    padding: 5px 20px 5px;
  }
  /* line 600, ../scss/_page_products.scss */
  .product-section dl.trouble-list > dd .heading > span {
    display: block;
    margin-top: 7px;
  }
  /* line 605, ../scss/_page_products.scss */
  .product-section dl.trouble-list > dd .content {
    margin-top: 20px;
  }
  /* line 607, ../scss/_page_products.scss */
  .product-section dl.trouble-list > dd .content div.image {
    float: none;
    width: 100%;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5px;
  }
}
/* line 620, ../scss/_page_products.scss */
.product-section ul.function-outline-list {
  margin-top: 50px;
}
@media all and (min-width: 768px) {
  /* line 620, ../scss/_page_products.scss */
  .product-section ul.function-outline-list {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: stretch;
    align-items: stretch;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  /* line 403, ../scss/_func.scss */
  .product-section ul.function-outline-list > * {
    display: block;
    /* 幅高さの基準を変更 */
    box-sizing: border-box;
  }
  /* line 417, ../scss/_func.scss */
  body.no-flex .product-section ul.function-outline-list {
    display: block;
  }
  /* line 94, ../scss/_func.scss */
  body.no-flex .product-section ul.function-outline-list::after {
    content: "";
    display: block;
    width: 100%;
    height: 0;
    clear: both;
  }
  /* line 420, ../scss/_func.scss */
  body.no-flex .product-section ul.function-outline-list > * {
    float: left;
  }
  /* line 432, ../scss/_func.scss */
  .product-section ul.function-outline-list > * {
    width: 30%;
  }
  /* line 434, ../scss/_func.scss */
  .product-section ul.function-outline-list > *:not(:nth-child(3n+1)) {
    margin-left: 5%;
  }
  /* line 437, ../scss/_func.scss */
  .product-section ul.function-outline-list > *:nth-child(3n+1) {
    margin-left: 0;
  }
  /* line 443, ../scss/_func.scss */
  body.no-flex .product-section ul.function-outline-list > *:not(:nth-child(3n+1)) {
    clear: none;
  }
  /* line 446, ../scss/_func.scss */
  body.no-flex .product-section ul.function-outline-list > *:nth-child(3n+1) {
    clear: both;
  }
}
/* line 625, ../scss/_page_products.scss */
.product-section ul.function-outline-list > li {
  margin-bottom: 50px;
}
/* line 627, ../scss/_page_products.scss */
.product-section ul.function-outline-list > li div.pict {
  position: relative;
  width: 100%;
  height: 140px;
}
/* line 631, ../scss/_page_products.scss */
.product-section ul.function-outline-list > li div.pict img {
  display: block;
  max-width: 100%;
  height: auto;
  /* ▼ 上下左右を中央配置 */
  position: absolute;
  top: 50%;
  left: 50%;
  /* 変形 */
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  /* ▲ 上下左右を中央配置 */
}
/* line 638, ../scss/_page_products.scss */
.product-section ul.function-outline-list > li .heading {
  margin-top: 20px;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-weight: bold;
  letter-spacing: 0;
  font-size: 18px;
  font-size: 1.125rem;
  text-align: center;
}
/* line 644, ../scss/_page_products.scss */
.product-section ul.function-outline-list > li .text {
  margin-top: 20px;
  text-align: left;
}
/* line 651, ../scss/_page_products.scss */
.product-section dl.all-functions-list {
  margin-top: 50px;
  border-bottom: 2px solid #ccc;
  text-align: left;
}
@media all and (min-width: 768px) {
  /* line 651, ../scss/_page_products.scss */
  .product-section dl.all-functions-list {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: stretch;
    align-items: stretch;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  /* line 467, ../scss/_func.scss */
  .product-section dl.all-functions-list > dt, .product-section dl.all-functions-list > dd {
    display: block;
    /* 幅高さの基準を変更 */
    box-sizing: border-box;
  }
  /* line 472, ../scss/_func.scss */
  .product-section dl.all-functions-list > dt {
    width: 33%;
  }
  /* line 478, ../scss/_func.scss */
  .product-section dl.all-functions-list > dd {
    width: 67%;
  }
  /* line 486, ../scss/_func.scss */
  body.no-flex .product-section dl.all-functions-list {
    display: block;
  }
  /* line 94, ../scss/_func.scss */
  body.no-flex .product-section dl.all-functions-list::after {
    content: "";
    display: block;
    width: 100%;
    height: 0;
    clear: both;
  }
  /* line 489, ../scss/_func.scss */
  body.no-flex .product-section dl.all-functions-list > dt {
    clear: both;
    float: left;
  }
  /* line 493, ../scss/_func.scss */
  body.no-flex .product-section dl.all-functions-list > dd {
    float: right;
  }
}
/* line 658, ../scss/_page_products.scss */
.product-section dl.all-functions-list > dt {
  position: relative;
  z-index: 2;
  border-top: 2px solid #ccc;
  padding: 5px 20px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
@media all and (min-width: 768px) and (max-width: 959px) {
  /* line 658, ../scss/_page_products.scss */
  .product-section dl.all-functions-list > dt {
    padding: 5px 15px;
  }
}
@media all and (max-width: 767px) {
  /* line 658, ../scss/_page_products.scss */
  .product-section dl.all-functions-list > dt {
    border-bottom: 0px none;
    padding: 10px 10px;
  }
}
/* line 687, ../scss/_func.scss */
body.no-flex .product-section dl.all-functions-list > dt {
  display: block;
}
/* line 692, ../scss/_func.scss */
body.no-flex .product-section dl.all-functions-list > dt > * {
  display: inline-block !important;
  vertical-align: middle;
}
/* line 671, ../scss/_page_products.scss */
.product-section dl.all-functions-list > dt > span {
  display: block;
  width: 100%;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-weight: bold;
  letter-spacing: 0;
  font-size: 18px;
  font-size: 1.125rem;
}
@media all and (max-width: 959px) {
  /* line 671, ../scss/_page_products.scss */
  .product-section dl.all-functions-list > dt > span {
    font-size: 16px;
    font-size: 1rem;
  }
}
/* line 680, ../scss/_page_products.scss */
.product-section dl.all-functions-list > dt:nth-child(4n+1) {
  background-color: #f1f1f1;
}
/* line 683, ../scss/_page_products.scss */
.product-section dl.all-functions-list > dt:nth-child(4n+3) {
  background-color: #e5e5e5;
}
/* line 687, ../scss/_page_products.scss */
.product-section dl.all-functions-list > dt.option em.mark {
  display: inline-block;
  padding: 7px 15px 7px;
  margin-right: 0.4em;
  color: #fff;
  font-family: "Quicksand", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-weight: normal;
  letter-spacing: 0;
  line-height: 1;
}
@media all and (min-width: 768px) and (max-width: 959px) {
  /* line 687, ../scss/_page_products.scss */
  .product-section dl.all-functions-list > dt.option em.mark {
    padding: 7px 10px;
  }
}
/* line 698, ../scss/_page_products.scss */
main.page-yuso .product-section dl.all-functions-list > dt.option {
  background-color: #e5f4ef;
}
/* line 700, ../scss/_page_products.scss */
main.page-yuso .product-section dl.all-functions-list > dt.option em.mark {
  background-color: #00945d;
}
@media print {
  /* line 700, ../scss/_page_products.scss */
  main.page-yuso .product-section dl.all-functions-list > dt.option em.mark {
    border: 2px solid #00945d;
    background-color: #fff;
    color: #00945d;
  }
}
/* line 708, ../scss/_page_products.scss */
main.page-yuso .product-section dl.all-functions-list > dt.option + dd::before {
  background-color: #e5f4ef;
}
/* line 712, ../scss/_page_products.scss */
main.page-soko .product-section dl.all-functions-list > dt.option {
  background-color: #e5f3fa;
}
/* line 714, ../scss/_page_products.scss */
main.page-soko .product-section dl.all-functions-list > dt.option em.mark {
  background-color: #0083cc;
}
@media print {
  /* line 714, ../scss/_page_products.scss */
  main.page-soko .product-section dl.all-functions-list > dt.option em.mark {
    border: 2px solid #0083cc;
    background-color: #fff;
    color: #0083cc;
  }
}
/* line 722, ../scss/_page_products.scss */
main.page-soko .product-section dl.all-functions-list > dt.option + dd::before {
  background-color: #e5f3fa;
}
/* line 728, ../scss/_page_products.scss */
.product-section dl.all-functions-list > dd {
  position: relative;
  z-index: 1;
  border-top: 2px solid #ccc;
  padding: 0 0 0 20px;
}
@media all and (max-width: 767px) {
  /* line 728, ../scss/_page_products.scss */
  .product-section dl.all-functions-list > dd {
    padding: 0;
  }
}
@media all and (min-width: 768px) {
  /* line 737, ../scss/_page_products.scss */
  .product-section dl.all-functions-list > dd::before {
    position: absolute;
    z-index: -1;
    right: 100%;
    top: 0;
    display: block;
    width: 49.254%;
    height: 100%;
    content: "";
  }
  /* line 748, ../scss/_page_products.scss */
  .product-section dl.all-functions-list > dd:nth-child(4n+2)::before {
    background-color: #f1f1f1;
  }
  /* line 753, ../scss/_page_products.scss */
  .product-section dl.all-functions-list > dd:nth-child(4n+4)::before {
    background-color: #e5e5e5;
  }
}
/* line 758, ../scss/_page_products.scss */
.product-section dl.all-functions-list > dd > dl {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
/* line 467, ../scss/_func.scss */
.product-section dl.all-functions-list > dd > dl > dt, .product-section dl.all-functions-list > dd > dl > dd {
  display: block;
  /* 幅高さの基準を変更 */
  box-sizing: border-box;
}
/* line 472, ../scss/_func.scss */
.product-section dl.all-functions-list > dd > dl > dt {
  width: 48%;
}
/* line 478, ../scss/_func.scss */
.product-section dl.all-functions-list > dd > dl > dd {
  width: 48%;
}
/* line 486, ../scss/_func.scss */
body.no-flex .product-section dl.all-functions-list > dd > dl {
  display: block;
}
/* line 94, ../scss/_func.scss */
body.no-flex .product-section dl.all-functions-list > dd > dl::after {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  clear: both;
}
/* line 489, ../scss/_func.scss */
body.no-flex .product-section dl.all-functions-list > dd > dl > dt {
  clear: both;
  float: left;
}
/* line 493, ../scss/_func.scss */
body.no-flex .product-section dl.all-functions-list > dd > dl > dd {
  float: right;
}
/* line 760, ../scss/_page_products.scss */
.product-section dl.all-functions-list > dd > dl > dt {
  padding: 0 20px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
/* line 761, ../scss/_page_products.scss */
.product-section dl.all-functions-list > dd > dl > dt:not(:nth-child(1)) {
  border-top: 1px solid #ccc;
}
@media all and (max-width: 767px) {
  /* line 760, ../scss/_page_products.scss */
  .product-section dl.all-functions-list > dd > dl > dt {
    padding: 0 10px;
  }
}
/* line 687, ../scss/_func.scss */
body.no-flex .product-section dl.all-functions-list > dd > dl > dt {
  display: block;
}
/* line 692, ../scss/_func.scss */
body.no-flex .product-section dl.all-functions-list > dd > dl > dt > * {
  display: inline-block !important;
  vertical-align: middle;
}
/* line 769, ../scss/_page_products.scss */
.product-section dl.all-functions-list > dd > dl > dt > span {
  display: block;
  width: 100%;
}
/* line 775, ../scss/_page_products.scss */
.product-section dl.all-functions-list > dd > dl > dd:not(:nth-child(2)) {
  border-top: 1px solid #ccc;
}
/* line 780, ../scss/_page_products.scss */
.product-section dl.all-functions-list > dd > div.type {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
/* line 403, ../scss/_func.scss */
.product-section dl.all-functions-list > dd > div.type > * {
  display: block;
  /* 幅高さの基準を変更 */
  box-sizing: border-box;
}
/* line 417, ../scss/_func.scss */
body.no-flex .product-section dl.all-functions-list > dd > div.type {
  display: block;
}
/* line 94, ../scss/_func.scss */
body.no-flex .product-section dl.all-functions-list > dd > div.type::after {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  clear: both;
}
/* line 420, ../scss/_func.scss */
body.no-flex .product-section dl.all-functions-list > dd > div.type > * {
  float: left;
}
/* line 432, ../scss/_func.scss */
.product-section dl.all-functions-list > dd > div.type > * {
  width: 48%;
}
/* line 434, ../scss/_func.scss */
.product-section dl.all-functions-list > dd > div.type > *:not(:nth-child(2n+1)) {
  margin-left: 4%;
}
/* line 437, ../scss/_func.scss */
.product-section dl.all-functions-list > dd > div.type > *:nth-child(2n+1) {
  margin-left: 0;
}
/* line 443, ../scss/_func.scss */
body.no-flex .product-section dl.all-functions-list > dd > div.type > *:not(:nth-child(2n+1)) {
  clear: none;
}
/* line 446, ../scss/_func.scss */
body.no-flex .product-section dl.all-functions-list > dd > div.type > *:nth-child(2n+1) {
  clear: both;
}
/* line 784, ../scss/_page_products.scss */
.product-section dl.all-functions-list > dd ul {
  margin-bottom: -1px;
}
/* line 786, ../scss/_page_products.scss */
.product-section dl.all-functions-list > dd ul > li {
  border-bottom: 1px solid #ccc;
  padding: 5px 20px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
@media all and (max-width: 767px) {
  /* line 786, ../scss/_page_products.scss */
  .product-section dl.all-functions-list > dd ul > li {
    padding: 5px 10px;
  }
}
/* line 687, ../scss/_func.scss */
body.no-flex .product-section dl.all-functions-list > dd ul > li {
  display: block;
}
/* line 692, ../scss/_func.scss */
body.no-flex .product-section dl.all-functions-list > dd ul > li > * {
  display: inline-block !important;
  vertical-align: middle;
}
/* line 793, ../scss/_page_products.scss */
.product-section dl.all-functions-list > dd ul > li > span {
  display: block;
  width: 100%;
}
@media all and (min-width: 768px) {
  /* line 798, ../scss/_page_products.scss */
  .product-section dl.all-functions-list > dd ul.singledata {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
@media all and (max-width: 767px) {
  /* line 798, ../scss/_page_products.scss */
  .product-section dl.all-functions-list > dd ul.singledata {
    margin-bottom: 0;
  }
}
/* line 806, ../scss/_page_products.scss */
.product-section dl.all-functions-list > dd ul.singledata > li {
  border-bottom: 0px none;
}
/* line 811, ../scss/_page_products.scss */
.product-section dl.all-functions-list > dd ul.nodata::before {
  display: block;
  width: 100%;
  height: 1em;
  content: " ";
}
/* line 820, ../scss/_page_products.scss */
.product-section dl.all-functions-list a {
  text-decoration: none;
}
/* line 822, ../scss/_page_products.scss */
.product-section dl.all-functions-list a i.fa-image {
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.5em;
  font-size: 1.6em;
  line-height: 1;
  /* 変形 */
  -moz-transform: translateY(-5%);
  -ms-transform: translateY(-5%);
  -webkit-transform: translateY(-5%);
  transform: translateY(-5%);
}
/* line 830, ../scss/_page_products.scss */
main.page-yuso .product-section dl.all-functions-list a {
  color: #00945d;
}
/* line 833, ../scss/_page_products.scss */
main.page-soko .product-section dl.all-functions-list a {
  color: #0083cc;
}
/* line 839, ../scss/_page_products.scss */
.product-section .environment-data-list {
  margin-top: 50px;
}
/* line 841, ../scss/_page_products.scss */
.product-section .environment-data-list .environment-data {
  background-color: #fff;
  padding: 30px 50px;
  text-align: left;
}
/* line 845, ../scss/_page_products.scss */
.product-section .environment-data-list .environment-data .heading {
  font-size: 18px;
  font-size: 1.125rem;
}
/* line 848, ../scss/_page_products.scss */
.product-section .environment-data-list .environment-data .text {
  margin-top: 1em;
}
/* line 850, ../scss/_page_products.scss */
.product-section .environment-data-list .environment-data .text p {
  padding-left: 2em;
}
/* line 853, ../scss/_page_products.scss */
.product-section .environment-data-list .environment-data .text p.heading {
  padding-left: 0;
}
/* line 857, ../scss/_page_products.scss */
.product-section .environment-data-list .environment-data + .environment-data {
  margin-top: 20px;
}
@media all and (max-width: 767px) {
  /* line 841, ../scss/_page_products.scss */
  .product-section .environment-data-list .environment-data {
    padding: 10px;
  }
  /* line 862, ../scss/_page_products.scss */
  .product-section .environment-data-list .environment-data .text {
    margin-top: 0.5em;
  }
}
/* line 867, ../scss/_page_products.scss */
.product-section .environment-data-list .environment-comment {
  margin-top: 50px;
  text-align: left;
}
/* line 874, ../scss/_page_products.scss */
.product-section .designband {
  margin-top: 90px;
  position: relative;
  z-index: 1;
  height: 420px;
}
/* line 879, ../scss/_page_products.scss */
.product-section .designband .image-cover {
  z-index: -1;
}
@media all and (min-width: 768px) and (max-width: 959px) {
  /* line 874, ../scss/_page_products.scss */
  .product-section .designband {
    height: 360px;
  }
}
@media all and (max-width: 767px) {
  /* line 874, ../scss/_page_products.scss */
  .product-section .designband {
    height: 200px;
  }
}
/* line 890, ../scss/_page_products.scss */
.product-section .product-banner {
  margin-top: 90px;
}
/* line 897, ../scss/_page_products.scss */
main.page-yuso .product-section#trouble, main.page-yuso .product-section#environment {
  background-color: #e5f4ef;
}
/* line 900, ../scss/_page_products.scss */
main.page-yuso .product-section#trouble .designband.with-arrow::before, main.page-yuso .product-section#environment .designband.with-arrow::before {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 50%;
  margin-left: -40px;
  /* ▼ borderを利用した三角形 */
  display: inline-block;
  width: 0;
  height: 0;
  overflow: hidden;
  background-color: transparent;
  border-right: 40px solid transparent;
  border-bottom: 40px solid #e5f4ef;
  border-left: 40px solid transparent;
  /* 変形 */
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  /* ▲ borderを利用した三角形 */
  content: "";
}
/* line 911, ../scss/_page_products.scss */
main.page-soko .product-section#trouble, main.page-soko .product-section#environment {
  background-color: #e5f3fa;
}
/* line 914, ../scss/_page_products.scss */
main.page-soko .product-section#trouble .designband.with-arrow::before, main.page-soko .product-section#environment .designband.with-arrow::before {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 50%;
  margin-left: -40px;
  /* ▼ borderを利用した三角形 */
  display: inline-block;
  width: 0;
  height: 0;
  overflow: hidden;
  background-color: transparent;
  border-right: 40px solid transparent;
  border-bottom: 40px solid #e5f3fa;
  border-left: 40px solid transparent;
  /* 変形 */
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  /* ▲ borderを利用した三角形 */
  content: "";
}

/* line 928, ../scss/_page_products.scss */
#functions {
  padding-bottom: 90px;
}

/* line 931, ../scss/_page_products.scss */
#environment {
  padding-bottom: 120px;
}

/*
==================================================

	導入事例

==================================================
*/
/* line 29, ../scss/_page_sub_voice.scss */
main .voice-nav-button {
  padding-top: 70px;
  padding-bottom: 70px;
}
/* line 32, ../scss/_page_sub_voice.scss */
main .voice-nav-button ul {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
/* line 403, ../scss/_func.scss */
main .voice-nav-button ul > * {
  display: block;
  /* 幅高さの基準を変更 */
  box-sizing: border-box;
}
/* line 417, ../scss/_func.scss */
body.no-flex main .voice-nav-button ul {
  display: block;
}
/* line 94, ../scss/_func.scss */
body.no-flex main .voice-nav-button ul::after {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  clear: both;
}
/* line 420, ../scss/_func.scss */
body.no-flex main .voice-nav-button ul > * {
  float: left;
}
/* line 432, ../scss/_func.scss */
main .voice-nav-button ul > * {
  width: 48%;
}
/* line 434, ../scss/_func.scss */
main .voice-nav-button ul > *:not(:nth-child(2n+1)) {
  margin-left: 4%;
}
/* line 437, ../scss/_func.scss */
main .voice-nav-button ul > *:nth-child(2n+1) {
  margin-left: 0;
}
/* line 443, ../scss/_func.scss */
body.no-flex main .voice-nav-button ul > *:not(:nth-child(2n+1)) {
  clear: none;
}
/* line 446, ../scss/_func.scss */
body.no-flex main .voice-nav-button ul > *:nth-child(2n+1) {
  clear: both;
}
/* line 35, ../scss/_page_sub_voice.scss */
main .voice-nav-button ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  font-family: "Quicksand", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-weight: normal;
  letter-spacing: 0;
  font-size: 18px;
  font-size: 1.125rem;
  /* アニメーション変化 */
  -moz-transition: background-color 0.4s ease 0s;
  -o-transition: background-color 0.4s ease 0s;
  -webkit-transition: background-color 0.4s ease 0s;
  transition: background-color 0.4s ease 0s;
}
/* line 44, ../scss/_page_sub_voice.scss */
main .voice-nav-button ul li a img {
  display: inline-block;
  vertical-align: middle;
  height: 1.6em;
  width: auto;
}
/* line 50, ../scss/_page_sub_voice.scss */
main .voice-nav-button ul li a span {
  display: inline-block;
  margin-left: 2em;
}
@media all and (max-width: 767px) {
  /* line 35, ../scss/_page_sub_voice.scss */
  main .voice-nav-button ul li a {
    padding: 10px 10px 30px;
  }
  /* line 56, ../scss/_page_sub_voice.scss */
  main .voice-nav-button ul li a span {
    display: block;
    margin: 0;
  }
}
@media all and (max-width: 479px) {
  /* line 35, ../scss/_page_sub_voice.scss */
  main .voice-nav-button ul li a {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
/* line 66, ../scss/_page_sub_voice.scss */
main .voice-nav-button ul li.yuso a {
  border: 2px solid #00945d;
  color: #00945d;
}
@media all and (min-width: 768px) {
  /* line 66, ../scss/_page_sub_voice.scss */
  main .voice-nav-button ul li.yuso a {
    /* ※ 本要素のbefore, afterで矢印を作成 */
  }
  /* line 881, ../scss/_func.scss */
  main .voice-nav-button ul li.yuso a::before, main .voice-nav-button ul li.yuso a::after {
    /* before, afterで矢印：矢印の各辺を作成 */
    position: absolute;
    z-index: auto;
    display: block;
    width: 10px;
    height: 0;
    border-top: 1px solid #00945d;
    border-bottom: 1px solid #00945d;
    margin-bottom: -1px;
    background-color: #00945d;
    content: "";
  }
  /* line 895, ../scss/_func.scss */
  main .voice-nav-button ul li.yuso a::before {
    /* before, afterで矢印：配置して変形 */
    bottom: 50%;
    right: 30px;
    /* 変形 */
    -moz-transform: matrix(1, 1, 0, 1, 0, 0);
    -ms-transform: matrix(1, 1, 0, 1, 0, 0);
    -webkit-transform: matrix(1, 1, 0, 1, 0, 0);
    transform: matrix(1, 1, 0, 1, 0, 0);
  }
  /* line 916, ../scss/_func.scss */
  main .voice-nav-button ul li.yuso a::after {
    /* before, afterで矢印：配置して変形 */
    bottom: 50%;
    right: 30px;
    margin-right: -10px;
    /* 変形 */
    -moz-transform: matrix(1, -1, 0, 1, 0, 0);
    -ms-transform: matrix(1, -1, 0, 1, 0, 0);
    -webkit-transform: matrix(1, -1, 0, 1, 0, 0);
    transform: matrix(1, -1, 0, 1, 0, 0);
  }
}
@media all and (max-width: 767px) {
  /* line 66, ../scss/_page_sub_voice.scss */
  main .voice-nav-button ul li.yuso a {
    /* ※ 本要素のbefore, afterで矢印を作成 */
  }
  /* line 881, ../scss/_func.scss */
  main .voice-nav-button ul li.yuso a::before, main .voice-nav-button ul li.yuso a::after {
    /* before, afterで矢印：矢印の各辺を作成 */
    position: absolute;
    z-index: auto;
    display: block;
    width: 10px;
    height: 0;
    border-top: 1px solid #00945d;
    border-bottom: 1px solid #00945d;
    margin-bottom: -1px;
    background-color: #00945d;
    content: "";
  }
  /* line 895, ../scss/_func.scss */
  main .voice-nav-button ul li.yuso a::before {
    /* before, afterで矢印：配置して変形 */
    bottom: 20px;
    right: 50%;
    /* 変形 */
    -moz-transform: matrix(1, 1, 0, 1, 0, 0);
    -ms-transform: matrix(1, 1, 0, 1, 0, 0);
    -webkit-transform: matrix(1, 1, 0, 1, 0, 0);
    transform: matrix(1, 1, 0, 1, 0, 0);
  }
  /* line 916, ../scss/_func.scss */
  main .voice-nav-button ul li.yuso a::after {
    /* before, afterで矢印：配置して変形 */
    bottom: 20px;
    right: 50%;
    margin-right: -10px;
    /* 変形 */
    -moz-transform: matrix(1, -1, 0, 1, 0, 0);
    -ms-transform: matrix(1, -1, 0, 1, 0, 0);
    -webkit-transform: matrix(1, -1, 0, 1, 0, 0);
    transform: matrix(1, -1, 0, 1, 0, 0);
  }
}
/* line 1253, ../scss/_func.scss */
main .voice-nav-button ul li.yuso a:hover {
  background-color: #e5f4ef;
}
/* line 81, ../scss/_page_sub_voice.scss */
main .voice-nav-button ul li.soko a {
  border: 2px solid #0083cc;
  color: #0083cc;
}
@media all and (min-width: 768px) {
  /* line 81, ../scss/_page_sub_voice.scss */
  main .voice-nav-button ul li.soko a {
    /* ※ 本要素のbefore, afterで矢印を作成 */
  }
  /* line 881, ../scss/_func.scss */
  main .voice-nav-button ul li.soko a::before, main .voice-nav-button ul li.soko a::after {
    /* before, afterで矢印：矢印の各辺を作成 */
    position: absolute;
    z-index: auto;
    display: block;
    width: 10px;
    height: 0;
    border-top: 1px solid #0083cc;
    border-bottom: 1px solid #0083cc;
    margin-bottom: -1px;
    background-color: #0083cc;
    content: "";
  }
  /* line 895, ../scss/_func.scss */
  main .voice-nav-button ul li.soko a::before {
    /* before, afterで矢印：配置して変形 */
    bottom: 50%;
    right: 30px;
    /* 変形 */
    -moz-transform: matrix(1, 1, 0, 1, 0, 0);
    -ms-transform: matrix(1, 1, 0, 1, 0, 0);
    -webkit-transform: matrix(1, 1, 0, 1, 0, 0);
    transform: matrix(1, 1, 0, 1, 0, 0);
  }
  /* line 916, ../scss/_func.scss */
  main .voice-nav-button ul li.soko a::after {
    /* before, afterで矢印：配置して変形 */
    bottom: 50%;
    right: 30px;
    margin-right: -10px;
    /* 変形 */
    -moz-transform: matrix(1, -1, 0, 1, 0, 0);
    -ms-transform: matrix(1, -1, 0, 1, 0, 0);
    -webkit-transform: matrix(1, -1, 0, 1, 0, 0);
    transform: matrix(1, -1, 0, 1, 0, 0);
  }
}
@media all and (max-width: 767px) {
  /* line 81, ../scss/_page_sub_voice.scss */
  main .voice-nav-button ul li.soko a {
    /* ※ 本要素のbefore, afterで矢印を作成 */
  }
  /* line 881, ../scss/_func.scss */
  main .voice-nav-button ul li.soko a::before, main .voice-nav-button ul li.soko a::after {
    /* before, afterで矢印：矢印の各辺を作成 */
    position: absolute;
    z-index: auto;
    display: block;
    width: 10px;
    height: 0;
    border-top: 1px solid #0083cc;
    border-bottom: 1px solid #0083cc;
    margin-bottom: -1px;
    background-color: #0083cc;
    content: "";
  }
  /* line 895, ../scss/_func.scss */
  main .voice-nav-button ul li.soko a::before {
    /* before, afterで矢印：配置して変形 */
    bottom: 20px;
    right: 50%;
    /* 変形 */
    -moz-transform: matrix(1, 1, 0, 1, 0, 0);
    -ms-transform: matrix(1, 1, 0, 1, 0, 0);
    -webkit-transform: matrix(1, 1, 0, 1, 0, 0);
    transform: matrix(1, 1, 0, 1, 0, 0);
  }
  /* line 916, ../scss/_func.scss */
  main .voice-nav-button ul li.soko a::after {
    /* before, afterで矢印：配置して変形 */
    bottom: 20px;
    right: 50%;
    margin-right: -10px;
    /* 変形 */
    -moz-transform: matrix(1, -1, 0, 1, 0, 0);
    -ms-transform: matrix(1, -1, 0, 1, 0, 0);
    -webkit-transform: matrix(1, -1, 0, 1, 0, 0);
    transform: matrix(1, -1, 0, 1, 0, 0);
  }
}
/* line 1253, ../scss/_func.scss */
main .voice-nav-button ul li.soko a:hover {
  background-color: #e5f3fa;
}
/* line 100, ../scss/_page_sub_voice.scss */
main .voice-section {
  padding: 50px 0 70px;
}
/* line 103, ../scss/_page_sub_voice.scss */
main .voice-section .voice-section-title {
  text-align: center;
}
/* line 105, ../scss/_page_sub_voice.scss */
main .voice-section .voice-section-title em.main {
  display: inline-block;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-weight: bold;
  letter-spacing: 0;
  font-size: 32px;
  font-size: 2rem;
}
/* line 109, ../scss/_page_sub_voice.scss */
main .voice-section .voice-section-title em.main img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.3em;
  height: 1.5em;
  width: auto;
}
/* line 117, ../scss/_page_sub_voice.scss */
main .voice-section .voice-section-title span.ruby {
  display: inline-block;
  font-family: "Quicksand", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-weight: normal;
  letter-spacing: 0;
  font-size: 16px;
  font-size: 1rem;
}
@media all and (min-width: 768px) and (max-width: 959px) {
  /* line 123, ../scss/_page_sub_voice.scss */
  main .voice-section .voice-section-title em.main {
    font-size: 26px;
    font-size: 1.625rem;
  }
  /* line 126, ../scss/_page_sub_voice.scss */
  main .voice-section .voice-section-title span.ruby {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
@media all and (max-width: 767px) {
  /* line 131, ../scss/_page_sub_voice.scss */
  main .voice-section .voice-section-title em.main {
    font-size: 18px;
    font-size: 1.125rem;
  }
  /* line 134, ../scss/_page_sub_voice.scss */
  main .voice-section .voice-section-title span.ruby {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
/* line 140, ../scss/_page_sub_voice.scss */
main .voice-section dl.voice-list {
  margin-top: 50px;
  padding-bottom: 70px;
  text-align: left;
}
/* line 144, ../scss/_page_sub_voice.scss */
main .voice-section dl.voice-list > dt {
  margin-top: 30px;
}
/* line 146, ../scss/_page_sub_voice.scss */
main .voice-section dl.voice-list > dt div.order {
  /* 幅高さの基準を変更 */
  box-sizing: border-box;
  color: #fff;
  width: 80px;
  min-height: 80px;
  padding: 10px;
  font-family: "Quicksand", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-weight: normal;
  letter-spacing: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
/* line 687, ../scss/_func.scss */
body.no-flex main .voice-section dl.voice-list > dt div.order {
  display: block;
}
/* line 692, ../scss/_func.scss */
body.no-flex main .voice-section dl.voice-list > dt div.order > * {
  display: inline-block !important;
  vertical-align: middle;
}
/* line 154, ../scss/_page_sub_voice.scss */
main .voice-section dl.voice-list > dt div.order > span {
  position: relative;
  display: block;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1;
}
/* line 161, ../scss/_page_sub_voice.scss */
main .voice-section dl.voice-list > dt div.order > span em.number {
  display: block;
  font-size: 28px;
  font-size: 1.75rem;
}
/* line 167, ../scss/_page_sub_voice.scss */
main .voice-section dl.voice-list > dt p.text {
  position: relative;
  /* 幅高さの基準を変更 */
  box-sizing: border-box;
  width: calc(100% - 80px);
  padding: 10px 30px;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-weight: bold;
  letter-spacing: 0;
  font-size: 18px;
  font-size: 1.125rem;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
/* line 961, ../scss/_func.scss */
main .voice-section dl.voice-list > dt p.text::before, main .voice-section dl.voice-list > dt p.text::after {
  /* アニメーション変化 */
  -moz-transition: border-top-color 0.5s ease 0s, border-bottom-color 0.5s ease 0s, background-color 0.5s ease 0s, top 0.5s ease 0s, bottom 0.5s ease 0s, left 0.5s ease 0s, right 0.5s ease 0s, -moz-transform 0.5s ease 0s, -ms-transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s, transform 0.5s ease 0s;
  -o-transition: border-top-color 0.5s ease 0s, border-bottom-color 0.5s ease 0s, background-color 0.5s ease 0s, top 0.5s ease 0s, bottom 0.5s ease 0s, left 0.5s ease 0s, right 0.5s ease 0s, -moz-transform 0.5s ease 0s, -ms-transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s, transform 0.5s ease 0s;
  -webkit-transition: border-top-color 0.5s ease 0s, border-bottom-color 0.5s ease 0s, background-color 0.5s ease 0s, top 0.5s ease 0s, bottom 0.5s ease 0s, left 0.5s ease 0s, right 0.5s ease 0s, -moz-transform 0.5s ease 0s, -ms-transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s, transform 0.5s ease 0s;
  transition: border-top-color 0.5s ease 0s, border-bottom-color 0.5s ease 0s, background-color 0.5s ease 0s, top 0.5s ease 0s, bottom 0.5s ease 0s, left 0.5s ease 0s, right 0.5s ease 0s, -moz-transform 0.5s ease 0s, -ms-transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s, transform 0.5s ease 0s;
}
/* line 687, ../scss/_func.scss */
body.no-flex main .voice-section dl.voice-list > dt p.text {
  display: block;
}
/* line 692, ../scss/_func.scss */
body.no-flex main .voice-section dl.voice-list > dt p.text > * {
  display: inline-block !important;
  vertical-align: middle;
}
/* line 176, ../scss/_page_sub_voice.scss */
main .voice-section dl.voice-list > dt p.text > span {
  display: block;
  width: 100%;
}
/* line 951, ../scss/_func.scss */
main .voice-section dl.voice-list > dt.open p.text::before {
  /* 変形 */
  -moz-transform: matrix(1, -1, 0, 1, 0, 0);
  -ms-transform: matrix(1, -1, 0, 1, 0, 0);
  -webkit-transform: matrix(1, -1, 0, 1, 0, 0);
  transform: matrix(1, -1, 0, 1, 0, 0);
}
/* line 954, ../scss/_func.scss */
main .voice-section dl.voice-list > dt.open p.text::after {
  /* 変形 */
  -moz-transform: matrix(1, 1, 0, 1, 0, 0);
  -ms-transform: matrix(1, 1, 0, 1, 0, 0);
  -webkit-transform: matrix(1, 1, 0, 1, 0, 0);
  transform: matrix(1, 1, 0, 1, 0, 0);
}
@media all and (min-width: 768px) {
  /* line 144, ../scss/_page_sub_voice.scss */
  main .voice-section dl.voice-list > dt {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: stretch;
    align-items: stretch;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  /* line 615, ../scss/_func.scss */
  body.no-flex main .voice-section dl.voice-list > dt {
    display: block;
    text-align: left;
  }
  /* line 94, ../scss/_func.scss */
  body.no-flex main .voice-section dl.voice-list > dt::after {
    content: "";
    display: block;
    width: 100%;
    height: 0;
    clear: both;
  }
  /* line 627, ../scss/_func.scss */
  body.no-flex main .voice-section dl.voice-list > dt > * {
    display: block;
    float: left;
    vertical-align: middle;
  }
}
@media all and (max-width: 767px) {
  /* line 190, ../scss/_page_sub_voice.scss */
  main .voice-section dl.voice-list > dt div.order {
    width: 100%;
    padding: 10px 10px;
    min-height: 1em;
  }
  /* line 195, ../scss/_page_sub_voice.scss */
  main .voice-section dl.voice-list > dt div.order > span em.number {
    display: inline-block;
    margin-left: 0.5em;
    font-size: 24px;
    font-size: 1.5rem;
  }
  /* line 202, ../scss/_page_sub_voice.scss */
  main .voice-section dl.voice-list > dt p.text {
    width: 100%;
    padding: 10px 0;
    font-size: 18px;
    font-size: 1.125rem;
  }
}
/* line 209, ../scss/_page_sub_voice.scss */
main .voice-section dl.voice-list > dd {
  padding: 30px 0 70px;
}
/* line 94, ../scss/_func.scss */
main .voice-section dl.voice-list > dd .content::after {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  clear: both;
}
/* line 214, ../scss/_page_sub_voice.scss */
main .voice-section dl.voice-list > dd .content .outline {
  float: right;
  /* 幅高さの基準を変更 */
  box-sizing: border-box;
  width: 40%;
}
/* line 218, ../scss/_page_sub_voice.scss */
main .voice-section dl.voice-list > dd .content .outline .org {
  padding: 10px 20px;
  text-align: left;
}
/* line 221, ../scss/_page_sub_voice.scss */
main .voice-section dl.voice-list > dd .content .outline .org .name {
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-weight: bold;
  letter-spacing: 0;
  font-size: 18px;
  font-size: 1.125rem;
}
/* line 225, ../scss/_page_sub_voice.scss */
main .voice-section dl.voice-list > dd .content .outline .org .data {
  margin-top: 1em;
  font-size: 14px;
  font-size: 0.875rem;
}
@media all and (min-width: 480px) {
  /* line 228, ../scss/_page_sub_voice.scss */
  main .voice-section dl.voice-list > dd .content .outline .org .data dl {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: stretch;
    align-items: stretch;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  /* line 467, ../scss/_func.scss */
  main .voice-section dl.voice-list > dd .content .outline .org .data dl > dt, main .voice-section dl.voice-list > dd .content .outline .org .data dl > dd {
    display: block;
    /* 幅高さの基準を変更 */
    box-sizing: border-box;
  }
  /* line 472, ../scss/_func.scss */
  main .voice-section dl.voice-list > dd .content .outline .org .data dl > dt {
    width: 6.5em;
  }
  /* line 478, ../scss/_func.scss */
  main .voice-section dl.voice-list > dd .content .outline .org .data dl > dd {
    width: calc(100% - 6.5em);
  }
  /* line 486, ../scss/_func.scss */
  body.no-flex main .voice-section dl.voice-list > dd .content .outline .org .data dl {
    display: block;
  }
  /* line 94, ../scss/_func.scss */
  body.no-flex main .voice-section dl.voice-list > dd .content .outline .org .data dl::after {
    content: "";
    display: block;
    width: 100%;
    height: 0;
    clear: both;
  }
  /* line 489, ../scss/_func.scss */
  body.no-flex main .voice-section dl.voice-list > dd .content .outline .org .data dl > dt {
    clear: both;
    float: left;
  }
  /* line 493, ../scss/_func.scss */
  body.no-flex main .voice-section dl.voice-list > dd .content .outline .org .data dl > dd {
    float: right;
  }
}
@media all and (max-width: 479px) {
  /* line 237, ../scss/_page_sub_voice.scss */
  main .voice-section dl.voice-list > dd .content .outline .org .data dl > dt {
    font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
    font-weight: bold;
    letter-spacing: 0;
  }
  /* line 240, ../scss/_page_sub_voice.scss */
  main .voice-section dl.voice-list > dd .content .outline .org .data dl > dd {
    margin-bottom: 10px;
  }
}
/* line 247, ../scss/_page_sub_voice.scss */
main .voice-section dl.voice-list > dd .content .outline ul.images {
  margin-top: 30px;
}
/* line 249, ../scss/_page_sub_voice.scss */
main .voice-section dl.voice-list > dd .content .outline ul.images li {
  /* 幅高さの基準を変更 */
  box-sizing: border-box;
}
/* line 250, ../scss/_page_sub_voice.scss */
main .voice-section dl.voice-list > dd .content .outline ul.images li:not(:last-child) {
  margin-bottom: 20px;
}
/* line 253, ../scss/_page_sub_voice.scss */
main .voice-section dl.voice-list > dd .content .outline ul.images li img {
  width: 100%;
  height: auto;
}
@media all and (max-width: 767px) {
  /* line 247, ../scss/_page_sub_voice.scss */
  main .voice-section dl.voice-list > dd .content .outline ul.images {
    display: none;
  }
}
/* line 265, ../scss/_page_sub_voice.scss */
main .voice-section dl.voice-list > dd .content dl.story {
  float: left;
  width: 54%;
  text-align: left;
}
/* line 269, ../scss/_page_sub_voice.scss */
main .voice-section dl.voice-list > dd .content dl.story > dt {
  margin-bottom: 30px;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-weight: bold;
  letter-spacing: 0;
  font-size: 22px;
  font-size: 1.375rem;
}
/* line 275, ../scss/_page_sub_voice.scss */
main .voice-section dl.voice-list > dd .content dl.story > dd:not(:last-child) {
  margin-bottom: 70px;
}
/* line 278, ../scss/_page_sub_voice.scss */
main .voice-section dl.voice-list > dd .content dl.story > dd > *:not(:last-child) {
  margin-bottom: 20px;
}
/* line 281, ../scss/_page_sub_voice.scss */
main .voice-section dl.voice-list > dd .content dl.story > dd .heading {
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-weight: bold;
  letter-spacing: 0;
  font-size: 18px;
  font-size: 1.125rem;
}
/* line 282, ../scss/_page_sub_voice.scss */
main .voice-section dl.voice-list > dd .content dl.story > dd .heading:not(:first-child) {
  margin-top: 50px;
}
/* line 289, ../scss/_page_sub_voice.scss */
main .voice-section dl.voice-list > dd .content dl.story > dd ul > li {
  position: relative;
  padding-left: 1.2em;
  font-size: 17px;
  font-size: 1.0625rem;
}
/* line 291, ../scss/_page_sub_voice.scss */
main .voice-section dl.voice-list > dd .content dl.story > dd ul > li:not(:last-child) {
  margin-bottom: 20px;
}
/* line 296, ../scss/_page_sub_voice.scss */
main .voice-section dl.voice-list > dd .content dl.story > dd ul > li::before {
  position: absolute;
  left: -0.25em;
  top: 0.65em;
  content: "";
}
/* line 304, ../scss/_page_sub_voice.scss */
main .voice-section dl.voice-list > dd .content dl.story > dd span.sub {
  font-size: 0.9em;
}
/* line 310, ../scss/_page_sub_voice.scss */
main .voice-section dl.voice-list > dd .content ul.images-slick {
  clear: both;
  padding-top: 50px;
}
/* line 313, ../scss/_page_sub_voice.scss */
main .voice-section dl.voice-list > dd .content ul.images-slick li {
  /* 幅高さの基準を変更 */
  box-sizing: border-box;
  padding: 0 5px;
}
/* line 316, ../scss/_page_sub_voice.scss */
main .voice-section dl.voice-list > dd .content ul.images-slick li img {
  width: 100%;
  height: auto;
}
@media all and (min-width: 768px) {
  /* line 310, ../scss/_page_sub_voice.scss */
  main .voice-section dl.voice-list > dd .content ul.images-slick {
    display: none;
  }
}
/* line 326, ../scss/_page_sub_voice.scss */
main .voice-section dl.voice-list > dd .content .additional-image {
  clear: both;
  padding-top: 50px;
  text-align: center;
}
/* line 330, ../scss/_page_sub_voice.scss */
main .voice-section dl.voice-list > dd .content .additional-image img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}
@media all and (max-width: 767px) {
  /* line 338, ../scss/_page_sub_voice.scss */
  main .voice-section dl.voice-list > dd .content .outline {
    float: none;
    margin-bottom: 50px;
    width: 100%;
  }
  /* line 343, ../scss/_page_sub_voice.scss */
  main .voice-section dl.voice-list > dd .content dl.story {
    float: none;
    width: 100%;
  }
  /* line 346, ../scss/_page_sub_voice.scss */
  main .voice-section dl.voice-list > dd .content dl.story > dt {
    margin-bottom: 20px;
    font-size: 18px;
    font-size: 1.125rem;
  }
  /* line 351, ../scss/_page_sub_voice.scss */
  main .voice-section dl.voice-list > dd .content dl.story > dd:not(:last-child) {
    margin-bottom: 50px;
  }
  /* line 354, ../scss/_page_sub_voice.scss */
  main .voice-section dl.voice-list > dd .content dl.story > dd > *:not(:last-child) {
    margin-bottom: 20px;
  }
  /* line 357, ../scss/_page_sub_voice.scss */
  main .voice-section dl.voice-list > dd .content dl.story > dd .heading {
    font-size: 16px;
    font-size: 1rem;
  }
  /* line 358, ../scss/_page_sub_voice.scss */
  main .voice-section dl.voice-list > dd .content dl.story > dd .heading:not(:first-child) {
    margin-top: 30px;
  }
  /* line 364, ../scss/_page_sub_voice.scss */
  main .voice-section dl.voice-list > dd .content dl.story > dd ul > li {
    font-size: 14px;
    font-size: 0.875rem;
  }
  /* line 365, ../scss/_page_sub_voice.scss */
  main .voice-section dl.voice-list > dd .content dl.story > dd ul > li:not(:last-child) {
    margin-bottom: 10px;
  }
}
@media all and (min-width: 768px) and (max-width: 959px) {
  /* line 209, ../scss/_page_sub_voice.scss */
  main .voice-section dl.voice-list > dd {
    padding: 30px 0 70px;
  }
}
@media all and (max-width: 767px) {
  /* line 209, ../scss/_page_sub_voice.scss */
  main .voice-section dl.voice-list > dd {
    padding: 30px 0 70px;
  }
}
/* line 385, ../scss/_page_sub_voice.scss */
main .voice-section div.no-item {
  margin-top: 120px;
  padding-bottom: 240px;
  text-align: center;
}
/* line 389, ../scss/_page_sub_voice.scss */
main .voice-section div.no-item p.heading {
  color: #a1a1a1;
  font-family: "Quicksand", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-weight: normal;
  letter-spacing: 0;
  font-size: 32px;
  font-size: 2rem;
}
/* line 399, ../scss/_page_sub_voice.scss */
main .voice-section#yuso .voice-section-title em.main {
  color: #00945d;
}
/* line 402, ../scss/_page_sub_voice.scss */
main .voice-section#yuso .voice-section-title span.ruby {
  color: #66bf9e;
}
/* line 408, ../scss/_page_sub_voice.scss */
main .voice-section#yuso dl.voice-list > dt div.order {
  background-color: #00945d;
}
@media print {
  /* line 408, ../scss/_page_sub_voice.scss */
  main .voice-section#yuso dl.voice-list > dt div.order {
    color: #00945d;
    background-color: #fff;
    border: 2px solid #00945d;
  }
}
/* line 420, ../scss/_page_sub_voice.scss */
main .voice-section#yuso dl.voice-list > dd .content .outline .org {
  color: #00945d;
  background-color: #cceadf;
}
@media print {
  /* line 420, ../scss/_page_sub_voice.scss */
  main .voice-section#yuso dl.voice-list > dd .content .outline .org {
    border: 2px solid #00945d;
  }
}
/* line 429, ../scss/_page_sub_voice.scss */
main .voice-section#yuso dl.voice-list > dd .content dl.story > dt {
  color: #00945d;
}
/* line 435, ../scss/_page_sub_voice.scss */
main .voice-section#yuso dl.voice-list > dd .content dl.story > dd ul > li::before {
  /* ▼ borderを利用した三角形 */
  display: inline-block;
  width: 0;
  height: 0;
  overflow: hidden;
  background-color: transparent;
  border-right: 0.5em solid transparent;
  border-bottom: 0.5em solid #00945d;
  border-left: 0.5em solid transparent;
  /* 変形 */
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  /* ▲ borderを利用した三角形 */
}
/* line 450, ../scss/_page_sub_voice.scss */
main .voice-section#soko .voice-section-title em.main {
  color: #0083cc;
}
/* line 453, ../scss/_page_sub_voice.scss */
main .voice-section#soko .voice-section-title span.ruby {
  color: #66b5e0;
}
/* line 459, ../scss/_page_sub_voice.scss */
main .voice-section#soko dl.voice-list > dt div.order {
  background-color: #0083cc;
}
@media print {
  /* line 459, ../scss/_page_sub_voice.scss */
  main .voice-section#soko dl.voice-list > dt div.order {
    color: #0083cc;
    background-color: #fff;
    border: 2px solid #0083cc;
  }
}
/* line 471, ../scss/_page_sub_voice.scss */
main .voice-section#soko dl.voice-list > dd .content .outline .org {
  color: #0083cc;
  background-color: #cce6f5;
}
@media print {
  /* line 471, ../scss/_page_sub_voice.scss */
  main .voice-section#soko dl.voice-list > dd .content .outline .org {
    border: 2px solid #0083cc;
  }
}
/* line 480, ../scss/_page_sub_voice.scss */
main .voice-section#soko dl.voice-list > dd .content dl.story > dt {
  color: #0083cc;
}
/* line 486, ../scss/_page_sub_voice.scss */
main .voice-section#soko dl.voice-list > dd .content dl.story > dd ul > li::before {
  /* ▼ borderを利用した三角形 */
  display: inline-block;
  width: 0;
  height: 0;
  overflow: hidden;
  background-color: transparent;
  border-right: 0.5em solid transparent;
  border-bottom: 0.5em solid #0083cc;
  border-left: 0.5em solid transparent;
  /* 変形 */
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  /* ▲ borderを利用した三角形 */
}

/*
==================================================

	よくあるご質問

==================================================
*/
/* line 28, ../scss/_page_sub_faq.scss */
main .faq-nav-button {
  padding-top: 70px;
  padding-bottom: 70px;
}
/* line 31, ../scss/_page_sub_faq.scss */
main .faq-nav-button ul {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
/* line 403, ../scss/_func.scss */
main .faq-nav-button ul > * {
  display: block;
  /* 幅高さの基準を変更 */
  box-sizing: border-box;
}
/* line 417, ../scss/_func.scss */
body.no-flex main .faq-nav-button ul {
  display: block;
}
/* line 94, ../scss/_func.scss */
body.no-flex main .faq-nav-button ul::after {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  clear: both;
}
/* line 420, ../scss/_func.scss */
body.no-flex main .faq-nav-button ul > * {
  float: left;
}
/* line 432, ../scss/_func.scss */
main .faq-nav-button ul > * {
  width: 48%;
}
/* line 434, ../scss/_func.scss */
main .faq-nav-button ul > *:not(:nth-child(2n+1)) {
  margin-left: 4%;
}
/* line 437, ../scss/_func.scss */
main .faq-nav-button ul > *:nth-child(2n+1) {
  margin-left: 0;
}
/* line 443, ../scss/_func.scss */
body.no-flex main .faq-nav-button ul > *:not(:nth-child(2n+1)) {
  clear: none;
}
/* line 446, ../scss/_func.scss */
body.no-flex main .faq-nav-button ul > *:nth-child(2n+1) {
  clear: both;
}
/* line 34, ../scss/_page_sub_faq.scss */
main .faq-nav-button ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  font-family: "Quicksand", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-weight: normal;
  letter-spacing: 0;
  font-size: 18px;
  font-size: 1.125rem;
  /* アニメーション変化 */
  -moz-transition: background-color 0.4s ease 0s;
  -o-transition: background-color 0.4s ease 0s;
  -webkit-transition: background-color 0.4s ease 0s;
  transition: background-color 0.4s ease 0s;
}
/* line 43, ../scss/_page_sub_faq.scss */
main .faq-nav-button ul li a img {
  display: inline-block;
  vertical-align: middle;
  height: 1.6em;
  width: auto;
}
/* line 49, ../scss/_page_sub_faq.scss */
main .faq-nav-button ul li a span {
  display: inline-block;
  margin-left: 2em;
}
@media all and (max-width: 767px) {
  /* line 34, ../scss/_page_sub_faq.scss */
  main .faq-nav-button ul li a {
    padding: 10px 10px 30px;
  }
  /* line 55, ../scss/_page_sub_faq.scss */
  main .faq-nav-button ul li a span {
    display: block;
    margin: 0;
  }
}
@media all and (max-width: 479px) {
  /* line 34, ../scss/_page_sub_faq.scss */
  main .faq-nav-button ul li a {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
/* line 65, ../scss/_page_sub_faq.scss */
main .faq-nav-button ul li.yuso a {
  border: 2px solid #00945d;
  color: #00945d;
}
@media all and (min-width: 768px) {
  /* line 65, ../scss/_page_sub_faq.scss */
  main .faq-nav-button ul li.yuso a {
    /* ※ 本要素のbefore, afterで矢印を作成 */
  }
  /* line 881, ../scss/_func.scss */
  main .faq-nav-button ul li.yuso a::before, main .faq-nav-button ul li.yuso a::after {
    /* before, afterで矢印：矢印の各辺を作成 */
    position: absolute;
    z-index: auto;
    display: block;
    width: 10px;
    height: 0;
    border-top: 1px solid #00945d;
    border-bottom: 1px solid #00945d;
    margin-bottom: -1px;
    background-color: #00945d;
    content: "";
  }
  /* line 895, ../scss/_func.scss */
  main .faq-nav-button ul li.yuso a::before {
    /* before, afterで矢印：配置して変形 */
    bottom: 50%;
    right: 30px;
    /* 変形 */
    -moz-transform: matrix(1, 1, 0, 1, 0, 0);
    -ms-transform: matrix(1, 1, 0, 1, 0, 0);
    -webkit-transform: matrix(1, 1, 0, 1, 0, 0);
    transform: matrix(1, 1, 0, 1, 0, 0);
  }
  /* line 916, ../scss/_func.scss */
  main .faq-nav-button ul li.yuso a::after {
    /* before, afterで矢印：配置して変形 */
    bottom: 50%;
    right: 30px;
    margin-right: -10px;
    /* 変形 */
    -moz-transform: matrix(1, -1, 0, 1, 0, 0);
    -ms-transform: matrix(1, -1, 0, 1, 0, 0);
    -webkit-transform: matrix(1, -1, 0, 1, 0, 0);
    transform: matrix(1, -1, 0, 1, 0, 0);
  }
}
@media all and (max-width: 767px) {
  /* line 65, ../scss/_page_sub_faq.scss */
  main .faq-nav-button ul li.yuso a {
    /* ※ 本要素のbefore, afterで矢印を作成 */
  }
  /* line 881, ../scss/_func.scss */
  main .faq-nav-button ul li.yuso a::before, main .faq-nav-button ul li.yuso a::after {
    /* before, afterで矢印：矢印の各辺を作成 */
    position: absolute;
    z-index: auto;
    display: block;
    width: 10px;
    height: 0;
    border-top: 1px solid #00945d;
    border-bottom: 1px solid #00945d;
    margin-bottom: -1px;
    background-color: #00945d;
    content: "";
  }
  /* line 895, ../scss/_func.scss */
  main .faq-nav-button ul li.yuso a::before {
    /* before, afterで矢印：配置して変形 */
    bottom: 20px;
    right: 50%;
    /* 変形 */
    -moz-transform: matrix(1, 1, 0, 1, 0, 0);
    -ms-transform: matrix(1, 1, 0, 1, 0, 0);
    -webkit-transform: matrix(1, 1, 0, 1, 0, 0);
    transform: matrix(1, 1, 0, 1, 0, 0);
  }
  /* line 916, ../scss/_func.scss */
  main .faq-nav-button ul li.yuso a::after {
    /* before, afterで矢印：配置して変形 */
    bottom: 20px;
    right: 50%;
    margin-right: -10px;
    /* 変形 */
    -moz-transform: matrix(1, -1, 0, 1, 0, 0);
    -ms-transform: matrix(1, -1, 0, 1, 0, 0);
    -webkit-transform: matrix(1, -1, 0, 1, 0, 0);
    transform: matrix(1, -1, 0, 1, 0, 0);
  }
}
/* line 1253, ../scss/_func.scss */
main .faq-nav-button ul li.yuso a:hover {
  background-color: #e5f4ef;
}
/* line 80, ../scss/_page_sub_faq.scss */
main .faq-nav-button ul li.soko a {
  border: 2px solid #0083cc;
  color: #0083cc;
}
@media all and (min-width: 768px) {
  /* line 80, ../scss/_page_sub_faq.scss */
  main .faq-nav-button ul li.soko a {
    /* ※ 本要素のbefore, afterで矢印を作成 */
  }
  /* line 881, ../scss/_func.scss */
  main .faq-nav-button ul li.soko a::before, main .faq-nav-button ul li.soko a::after {
    /* before, afterで矢印：矢印の各辺を作成 */
    position: absolute;
    z-index: auto;
    display: block;
    width: 10px;
    height: 0;
    border-top: 1px solid #0083cc;
    border-bottom: 1px solid #0083cc;
    margin-bottom: -1px;
    background-color: #0083cc;
    content: "";
  }
  /* line 895, ../scss/_func.scss */
  main .faq-nav-button ul li.soko a::before {
    /* before, afterで矢印：配置して変形 */
    bottom: 50%;
    right: 30px;
    /* 変形 */
    -moz-transform: matrix(1, 1, 0, 1, 0, 0);
    -ms-transform: matrix(1, 1, 0, 1, 0, 0);
    -webkit-transform: matrix(1, 1, 0, 1, 0, 0);
    transform: matrix(1, 1, 0, 1, 0, 0);
  }
  /* line 916, ../scss/_func.scss */
  main .faq-nav-button ul li.soko a::after {
    /* before, afterで矢印：配置して変形 */
    bottom: 50%;
    right: 30px;
    margin-right: -10px;
    /* 変形 */
    -moz-transform: matrix(1, -1, 0, 1, 0, 0);
    -ms-transform: matrix(1, -1, 0, 1, 0, 0);
    -webkit-transform: matrix(1, -1, 0, 1, 0, 0);
    transform: matrix(1, -1, 0, 1, 0, 0);
  }
}
@media all and (max-width: 767px) {
  /* line 80, ../scss/_page_sub_faq.scss */
  main .faq-nav-button ul li.soko a {
    /* ※ 本要素のbefore, afterで矢印を作成 */
  }
  /* line 881, ../scss/_func.scss */
  main .faq-nav-button ul li.soko a::before, main .faq-nav-button ul li.soko a::after {
    /* before, afterで矢印：矢印の各辺を作成 */
    position: absolute;
    z-index: auto;
    display: block;
    width: 10px;
    height: 0;
    border-top: 1px solid #0083cc;
    border-bottom: 1px solid #0083cc;
    margin-bottom: -1px;
    background-color: #0083cc;
    content: "";
  }
  /* line 895, ../scss/_func.scss */
  main .faq-nav-button ul li.soko a::before {
    /* before, afterで矢印：配置して変形 */
    bottom: 20px;
    right: 50%;
    /* 変形 */
    -moz-transform: matrix(1, 1, 0, 1, 0, 0);
    -ms-transform: matrix(1, 1, 0, 1, 0, 0);
    -webkit-transform: matrix(1, 1, 0, 1, 0, 0);
    transform: matrix(1, 1, 0, 1, 0, 0);
  }
  /* line 916, ../scss/_func.scss */
  main .faq-nav-button ul li.soko a::after {
    /* before, afterで矢印：配置して変形 */
    bottom: 20px;
    right: 50%;
    margin-right: -10px;
    /* 変形 */
    -moz-transform: matrix(1, -1, 0, 1, 0, 0);
    -ms-transform: matrix(1, -1, 0, 1, 0, 0);
    -webkit-transform: matrix(1, -1, 0, 1, 0, 0);
    transform: matrix(1, -1, 0, 1, 0, 0);
  }
}
/* line 1253, ../scss/_func.scss */
main .faq-nav-button ul li.soko a:hover {
  background-color: #e5f3fa;
}
/* line 99, ../scss/_page_sub_faq.scss */
main .faq-section {
  padding: 50px 0 70px;
}
/* line 102, ../scss/_page_sub_faq.scss */
main .faq-section .faq-section-title {
  text-align: center;
}
/* line 104, ../scss/_page_sub_faq.scss */
main .faq-section .faq-section-title em.main {
  display: inline-block;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-weight: bold;
  letter-spacing: 0;
  font-size: 32px;
  font-size: 2rem;
}
/* line 108, ../scss/_page_sub_faq.scss */
main .faq-section .faq-section-title em.main img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.3em;
  height: 1.5em;
  width: auto;
}
/* line 116, ../scss/_page_sub_faq.scss */
main .faq-section .faq-section-title span.ruby {
  display: inline-block;
  font-family: "Quicksand", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-weight: normal;
  letter-spacing: 0;
  font-size: 16px;
  font-size: 1rem;
}
@media all and (min-width: 768px) and (max-width: 959px) {
  /* line 122, ../scss/_page_sub_faq.scss */
  main .faq-section .faq-section-title em.main {
    font-size: 26px;
    font-size: 1.625rem;
  }
  /* line 125, ../scss/_page_sub_faq.scss */
  main .faq-section .faq-section-title span.ruby {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
@media all and (max-width: 767px) {
  /* line 130, ../scss/_page_sub_faq.scss */
  main .faq-section .faq-section-title em.main {
    font-size: 18px;
    font-size: 1.125rem;
  }
  /* line 133, ../scss/_page_sub_faq.scss */
  main .faq-section .faq-section-title span.ruby {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
/* line 139, ../scss/_page_sub_faq.scss */
main .faq-section dl.faq-list {
  margin-top: 50px;
  padding-bottom: 70px;
  text-align: left;
}
/* line 143, ../scss/_page_sub_faq.scss */
main .faq-section dl.faq-list > dt {
  margin-top: 30px;
}
/* line 145, ../scss/_page_sub_faq.scss */
main .faq-section dl.faq-list > dt div.order {
  /* 幅高さの基準を変更 */
  box-sizing: border-box;
  color: #fff;
  width: 120px;
  padding: 10px 30px;
  font-family: "Quicksand", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-weight: normal;
  letter-spacing: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
/* line 687, ../scss/_func.scss */
body.no-flex main .faq-section dl.faq-list > dt div.order {
  display: block;
}
/* line 692, ../scss/_func.scss */
body.no-flex main .faq-section dl.faq-list > dt div.order > * {
  display: inline-block !important;
  vertical-align: middle;
}
/* line 152, ../scss/_page_sub_faq.scss */
main .faq-section dl.faq-list > dt div.order > span {
  position: relative;
  display: block;
  width: 100%;
  font-size: 26px;
  font-size: 1.625rem;
}
/* line 157, ../scss/_page_sub_faq.scss */
main .faq-section dl.faq-list > dt div.order > span em.number {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
}
/* line 165, ../scss/_page_sub_faq.scss */
main .faq-section dl.faq-list > dt p.text {
  position: relative;
  /* 幅高さの基準を変更 */
  box-sizing: border-box;
  width: calc(100% - 120px);
  padding: 10px 60px 10px 30px;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-weight: bold;
  letter-spacing: 0;
  font-size: 18px;
  font-size: 1.125rem;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
/* line 961, ../scss/_func.scss */
main .faq-section dl.faq-list > dt p.text::before, main .faq-section dl.faq-list > dt p.text::after {
  /* アニメーション変化 */
  -moz-transition: border-top-color 0.5s ease 0s, border-bottom-color 0.5s ease 0s, background-color 0.5s ease 0s, top 0.5s ease 0s, bottom 0.5s ease 0s, left 0.5s ease 0s, right 0.5s ease 0s, -moz-transform 0.5s ease 0s, -ms-transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s, transform 0.5s ease 0s;
  -o-transition: border-top-color 0.5s ease 0s, border-bottom-color 0.5s ease 0s, background-color 0.5s ease 0s, top 0.5s ease 0s, bottom 0.5s ease 0s, left 0.5s ease 0s, right 0.5s ease 0s, -moz-transform 0.5s ease 0s, -ms-transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s, transform 0.5s ease 0s;
  -webkit-transition: border-top-color 0.5s ease 0s, border-bottom-color 0.5s ease 0s, background-color 0.5s ease 0s, top 0.5s ease 0s, bottom 0.5s ease 0s, left 0.5s ease 0s, right 0.5s ease 0s, -moz-transform 0.5s ease 0s, -ms-transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s, transform 0.5s ease 0s;
  transition: border-top-color 0.5s ease 0s, border-bottom-color 0.5s ease 0s, background-color 0.5s ease 0s, top 0.5s ease 0s, bottom 0.5s ease 0s, left 0.5s ease 0s, right 0.5s ease 0s, -moz-transform 0.5s ease 0s, -ms-transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s, transform 0.5s ease 0s;
}
/* line 687, ../scss/_func.scss */
body.no-flex main .faq-section dl.faq-list > dt p.text {
  display: block;
}
/* line 692, ../scss/_func.scss */
body.no-flex main .faq-section dl.faq-list > dt p.text > * {
  display: inline-block !important;
  vertical-align: middle;
}
/* line 174, ../scss/_page_sub_faq.scss */
main .faq-section dl.faq-list > dt p.text > span {
  display: block;
  width: 100%;
}
@media all and (min-width: 768px) {
  /* line 143, ../scss/_page_sub_faq.scss */
  main .faq-section dl.faq-list > dt {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: stretch;
    align-items: stretch;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  /* line 615, ../scss/_func.scss */
  body.no-flex main .faq-section dl.faq-list > dt {
    display: block;
    text-align: left;
  }
  /* line 94, ../scss/_func.scss */
  body.no-flex main .faq-section dl.faq-list > dt::after {
    content: "";
    display: block;
    width: 100%;
    height: 0;
    clear: both;
  }
  /* line 627, ../scss/_func.scss */
  body.no-flex main .faq-section dl.faq-list > dt > * {
    display: block;
    float: left;
    vertical-align: middle;
  }
}
@media all and (max-width: 767px) {
  /* line 183, ../scss/_page_sub_faq.scss */
  main .faq-section dl.faq-list > dt div.order {
    width: 100%;
    padding: 2px 10px;
  }
  /* line 186, ../scss/_page_sub_faq.scss */
  main .faq-section dl.faq-list > dt div.order > span {
    width: 40px;
    font-size: 18px;
    font-size: 1.125rem;
  }
  /* line 191, ../scss/_page_sub_faq.scss */
  main .faq-section dl.faq-list > dt p.text {
    width: 100%;
    padding: 10px 60px 10px 20px;
    font-size: 14px;
    font-size: 0.875rem;
  }
}
/* line 198, ../scss/_page_sub_faq.scss */
main .faq-section dl.faq-list > dd {
  padding: 30px 0;
}
/* line 94, ../scss/_func.scss */
main .faq-section dl.faq-list > dd .content::after {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  clear: both;
}
/* line 202, ../scss/_page_sub_faq.scss */
main .faq-section dl.faq-list > dd .content div.image {
  float: right;
  width: 28%;
  margin-left: 10px;
  margin-bottom: 5px;
}
/* line 207, ../scss/_page_sub_faq.scss */
main .faq-section dl.faq-list > dd .content div.image img {
  display: block;
  width: 100%;
  height: auto;
}
@media all and (min-width: 768px) and (max-width: 959px) {
  /* line 198, ../scss/_page_sub_faq.scss */
  main .faq-section dl.faq-list > dd {
    padding: 20px 0;
  }
}
@media all and (max-width: 767px) {
  /* line 198, ../scss/_page_sub_faq.scss */
  main .faq-section dl.faq-list > dd {
    padding: 20px 0;
  }
  /* line 220, ../scss/_page_sub_faq.scss */
  main .faq-section dl.faq-list > dd .content div.image {
    float: none;
    width: 100%;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5px;
  }
}
/* line 236, ../scss/_page_sub_faq.scss */
main .faq-section#yuso .faq-section-title em.main {
  color: #00945d;
}
/* line 239, ../scss/_page_sub_faq.scss */
main .faq-section#yuso .faq-section-title span.ruby {
  color: #66bf9e;
}
/* line 245, ../scss/_page_sub_faq.scss */
main .faq-section#yuso dl.faq-list > dt div.order {
  background-color: #00945d;
}
@media print {
  /* line 245, ../scss/_page_sub_faq.scss */
  main .faq-section#yuso dl.faq-list > dt div.order {
    color: #00945d;
    background-color: #fff;
    border: 2px solid #00945d;
  }
}
/* line 253, ../scss/_page_sub_faq.scss */
main .faq-section#yuso dl.faq-list > dt p.text {
  background-color: #e5f4ef;
  /* ※ 本要素のbefore, afterで矢印を作成 */
}
/* line 881, ../scss/_func.scss */
main .faq-section#yuso dl.faq-list > dt p.text::before, main .faq-section#yuso dl.faq-list > dt p.text::after {
  /* before, afterで矢印：矢印の各辺を作成 */
  position: absolute;
  z-index: auto;
  display: block;
  width: 10px;
  height: 0;
  border-top: 1px solid #00945d;
  border-bottom: 1px solid #00945d;
  margin-bottom: -1px;
  background-color: #00945d;
  content: "";
}
/* line 895, ../scss/_func.scss */
main .faq-section#yuso dl.faq-list > dt p.text::before {
  /* before, afterで矢印：配置して変形 */
  bottom: 50%;
  right: 30px;
  /* 変形 */
  -moz-transform: matrix(1, 1, 0, 1, 0, 0);
  -ms-transform: matrix(1, 1, 0, 1, 0, 0);
  -webkit-transform: matrix(1, 1, 0, 1, 0, 0);
  transform: matrix(1, 1, 0, 1, 0, 0);
}
/* line 916, ../scss/_func.scss */
main .faq-section#yuso dl.faq-list > dt p.text::after {
  /* before, afterで矢印：配置して変形 */
  bottom: 50%;
  right: 30px;
  margin-right: -10px;
  /* 変形 */
  -moz-transform: matrix(1, -1, 0, 1, 0, 0);
  -ms-transform: matrix(1, -1, 0, 1, 0, 0);
  -webkit-transform: matrix(1, -1, 0, 1, 0, 0);
  transform: matrix(1, -1, 0, 1, 0, 0);
}
/* line 951, ../scss/_func.scss */
main .faq-section#yuso dl.faq-list > dt.open p.text::before {
  /* 変形 */
  -moz-transform: matrix(1, -1, 0, 1, 0, 0);
  -ms-transform: matrix(1, -1, 0, 1, 0, 0);
  -webkit-transform: matrix(1, -1, 0, 1, 0, 0);
  transform: matrix(1, -1, 0, 1, 0, 0);
}
/* line 954, ../scss/_func.scss */
main .faq-section#yuso dl.faq-list > dt.open p.text::after {
  /* 変形 */
  -moz-transform: matrix(1, 1, 0, 1, 0, 0);
  -ms-transform: matrix(1, 1, 0, 1, 0, 0);
  -webkit-transform: matrix(1, 1, 0, 1, 0, 0);
  transform: matrix(1, 1, 0, 1, 0, 0);
}
/* line 269, ../scss/_page_sub_faq.scss */
main .faq-section#soko .faq-section-title em.main {
  color: #0083cc;
}
/* line 272, ../scss/_page_sub_faq.scss */
main .faq-section#soko .faq-section-title span.ruby {
  color: #66b5e0;
}
/* line 278, ../scss/_page_sub_faq.scss */
main .faq-section#soko dl.faq-list > dt div.order {
  background-color: #0083cc;
}
@media print {
  /* line 278, ../scss/_page_sub_faq.scss */
  main .faq-section#soko dl.faq-list > dt div.order {
    color: #0083cc;
    background-color: #fff;
    border: 2px solid #0083cc;
  }
}
/* line 286, ../scss/_page_sub_faq.scss */
main .faq-section#soko dl.faq-list > dt p.text {
  background-color: #e5f3fa;
  /* ※ 本要素のbefore, afterで矢印を作成 */
}
/* line 881, ../scss/_func.scss */
main .faq-section#soko dl.faq-list > dt p.text::before, main .faq-section#soko dl.faq-list > dt p.text::after {
  /* before, afterで矢印：矢印の各辺を作成 */
  position: absolute;
  z-index: auto;
  display: block;
  width: 10px;
  height: 0;
  border-top: 1px solid #0083cc;
  border-bottom: 1px solid #0083cc;
  margin-bottom: -1px;
  background-color: #0083cc;
  content: "";
}
/* line 895, ../scss/_func.scss */
main .faq-section#soko dl.faq-list > dt p.text::before {
  /* before, afterで矢印：配置して変形 */
  bottom: 50%;
  right: 30px;
  /* 変形 */
  -moz-transform: matrix(1, 1, 0, 1, 0, 0);
  -ms-transform: matrix(1, 1, 0, 1, 0, 0);
  -webkit-transform: matrix(1, 1, 0, 1, 0, 0);
  transform: matrix(1, 1, 0, 1, 0, 0);
}
/* line 916, ../scss/_func.scss */
main .faq-section#soko dl.faq-list > dt p.text::after {
  /* before, afterで矢印：配置して変形 */
  bottom: 50%;
  right: 30px;
  margin-right: -10px;
  /* 変形 */
  -moz-transform: matrix(1, -1, 0, 1, 0, 0);
  -ms-transform: matrix(1, -1, 0, 1, 0, 0);
  -webkit-transform: matrix(1, -1, 0, 1, 0, 0);
  transform: matrix(1, -1, 0, 1, 0, 0);
}
/* line 951, ../scss/_func.scss */
main .faq-section#soko dl.faq-list > dt.open p.text::before {
  /* 変形 */
  -moz-transform: matrix(1, -1, 0, 1, 0, 0);
  -ms-transform: matrix(1, -1, 0, 1, 0, 0);
  -webkit-transform: matrix(1, -1, 0, 1, 0, 0);
  transform: matrix(1, -1, 0, 1, 0, 0);
}
/* line 954, ../scss/_func.scss */
main .faq-section#soko dl.faq-list > dt.open p.text::after {
  /* 変形 */
  -moz-transform: matrix(1, 1, 0, 1, 0, 0);
  -ms-transform: matrix(1, 1, 0, 1, 0, 0);
  -webkit-transform: matrix(1, 1, 0, 1, 0, 0);
  transform: matrix(1, 1, 0, 1, 0, 0);
}

/*
==================================================
--------------------------------------------------

メインコンテンツの部品デザイン

--------------------------------------------------
==================================================
*/
/*
==================================================

	お問い合わせ

==================================================
*/
/* line 41, ../scss/_page_sub_contact.scss */
main.page-contact .form-section {
  padding: 70px 0 120px;
}
/* line 45, ../scss/_page_sub_contact.scss */
main.page-contact .form-section p.comment {
  margin-bottom: 30px;
}
/* line 48, ../scss/_page_sub_contact.scss */
main.page-contact .form-section p.form-hint {
  margin-bottom: 30px;
  text-align: left;
}
/* line 53, ../scss/_page_sub_contact.scss */
main.page-contact .form-section em.required-mark {
  display: inline-block;
  padding: 5px 10px 5px;
  margin: 0 3px;
  background-color: #DC2800;
  color: #fff;
  /* 標準フォント 太字 */
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-weight: bold;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1;
  /* 変形 */
  -moz-transform: rotate(-0.05deg);
  -ms-transform: rotate(-0.05deg);
  -webkit-transform: rotate(-0.05deg);
  transform: rotate(-0.05deg);
}
/* line 65, ../scss/_page_sub_contact.scss */
main.page-contact .form-section .error-message,
main.page-contact .form-section span.error {
  display: block;
  text-align: left;
  color: #DC2800;
  /* 標準フォント 太字 */
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-weight: bold;
  font-size: 16px;
  font-size: 1rem;
  margin-bottom: 30px;
}
/* line 75, ../scss/_page_sub_contact.scss */
main.page-contact .form-section ul.contact-flow {
  margin-bottom: 30px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
/* line 403, ../scss/_func.scss */
main.page-contact .form-section ul.contact-flow > * {
  display: block;
  /* 幅高さの基準を変更 */
  box-sizing: border-box;
}
/* line 417, ../scss/_func.scss */
body.no-flex main.page-contact .form-section ul.contact-flow {
  display: block;
}
/* line 94, ../scss/_func.scss */
body.no-flex main.page-contact .form-section ul.contact-flow::after {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  clear: both;
}
/* line 420, ../scss/_func.scss */
body.no-flex main.page-contact .form-section ul.contact-flow > * {
  float: left;
}
/* line 432, ../scss/_func.scss */
main.page-contact .form-section ul.contact-flow > * {
  width: 31%;
}
/* line 434, ../scss/_func.scss */
main.page-contact .form-section ul.contact-flow > *:not(:nth-child(3n+1)) {
  margin-left: 3.5%;
}
/* line 437, ../scss/_func.scss */
main.page-contact .form-section ul.contact-flow > *:nth-child(3n+1) {
  margin-left: 0;
}
/* line 443, ../scss/_func.scss */
body.no-flex main.page-contact .form-section ul.contact-flow > *:not(:nth-child(3n+1)) {
  clear: none;
}
/* line 446, ../scss/_func.scss */
body.no-flex main.page-contact .form-section ul.contact-flow > *:nth-child(3n+1) {
  clear: both;
}
/* line 78, ../scss/_page_sub_contact.scss */
main.page-contact .form-section ul.contact-flow li {
  position: relative;
  z-index: 1;
  border: 2px solid #1a1a1a;
  padding: 9px 5px 11px;
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1;
}
@media all and (max-width: 479px) {
  /* line 78, ../scss/_page_sub_contact.scss */
  main.page-contact .form-section ul.contact-flow li {
    font-size: 11px;
    font-size: 0.6875rem;
  }
}
/* line 89, ../scss/_page_sub_contact.scss */
main.page-contact .form-section ul.contact-flow li.current {
  color: #fff;
  background-color: #1a1a1a;
}
/* line 95, ../scss/_page_sub_contact.scss */
main.page-contact .form-section dl.contact-table {
  margin-bottom: 30px;
  border-bottom: 2px solid #ccc;
}
@media all and (min-width: 960px) {
  /* line 95, ../scss/_page_sub_contact.scss */
  main.page-contact .form-section dl.contact-table {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: stretch;
    align-items: stretch;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  /* line 467, ../scss/_func.scss */
  main.page-contact .form-section dl.contact-table > dt, main.page-contact .form-section dl.contact-table > dd {
    display: block;
    /* 幅高さの基準を変更 */
    box-sizing: border-box;
  }
  /* line 472, ../scss/_func.scss */
  main.page-contact .form-section dl.contact-table > dt {
    width: 30%;
  }
  /* line 478, ../scss/_func.scss */
  main.page-contact .form-section dl.contact-table > dd {
    width: 70%;
  }
  /* line 486, ../scss/_func.scss */
  body.no-flex main.page-contact .form-section dl.contact-table {
    display: block;
  }
  /* line 94, ../scss/_func.scss */
  body.no-flex main.page-contact .form-section dl.contact-table::after {
    content: "";
    display: block;
    width: 100%;
    height: 0;
    clear: both;
  }
  /* line 489, ../scss/_func.scss */
  body.no-flex main.page-contact .form-section dl.contact-table > dt {
    clear: both;
    float: left;
  }
  /* line 493, ../scss/_func.scss */
  body.no-flex main.page-contact .form-section dl.contact-table > dd {
    float: right;
  }
}
@media all and (min-width: 768px) and (max-width: 959px) {
  /* line 95, ../scss/_page_sub_contact.scss */
  main.page-contact .form-section dl.contact-table {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: stretch;
    align-items: stretch;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  /* line 467, ../scss/_func.scss */
  main.page-contact .form-section dl.contact-table > dt, main.page-contact .form-section dl.contact-table > dd {
    display: block;
    /* 幅高さの基準を変更 */
    box-sizing: border-box;
  }
  /* line 472, ../scss/_func.scss */
  main.page-contact .form-section dl.contact-table > dt {
    width: 35%;
  }
  /* line 478, ../scss/_func.scss */
  main.page-contact .form-section dl.contact-table > dd {
    width: 65%;
  }
  /* line 486, ../scss/_func.scss */
  body.no-flex main.page-contact .form-section dl.contact-table {
    display: block;
  }
  /* line 94, ../scss/_func.scss */
  body.no-flex main.page-contact .form-section dl.contact-table::after {
    content: "";
    display: block;
    width: 100%;
    height: 0;
    clear: both;
  }
  /* line 489, ../scss/_func.scss */
  body.no-flex main.page-contact .form-section dl.contact-table > dt {
    clear: both;
    float: left;
  }
  /* line 493, ../scss/_func.scss */
  body.no-flex main.page-contact .form-section dl.contact-table > dd {
    float: right;
  }
}
/* line 104, ../scss/_page_sub_contact.scss */
main.page-contact .form-section dl.contact-table dt {
  border-top: 2px solid #ccc;
  position: relative;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.6;
  text-align: left;
}
@media all and (min-width: 960px) {
  /* line 106, ../scss/_page_sub_contact.scss */
  main.page-contact .form-section dl.contact-table dt.addr {
    width: 35%;
  }
}
@media all and (min-width: 768px) and (max-width: 959px) {
  /* line 106, ../scss/_page_sub_contact.scss */
  main.page-contact .form-section dl.contact-table dt.addr {
    width: 45%;
  }
}
/* line 113, ../scss/_page_sub_contact.scss */
main.page-contact .form-section dl.contact-table dt.addr + dd.addr + dt.addr {
  border-top: 1px solid #ccc;
}
@media all and (min-width: 768px) {
  /* line 116, ../scss/_page_sub_contact.scss */
  main.page-contact .form-section dl.contact-table dt.addr + dd.addr + dt.addr span.addr-main {
    display: none;
  }
}
@media all and (min-width: 768px) {
  /* line 104, ../scss/_page_sub_contact.scss */
  main.page-contact .form-section dl.contact-table dt {
    padding-top: 26px;
    padding-bottom: 26px;
    padding-left: 60px;
  }
  /* line 127, ../scss/_page_sub_contact.scss */
  main.page-contact .form-section dl.contact-table dt em.required-mark {
    position: absolute;
    top: 27px;
    left: 0;
  }
  /* line 132, ../scss/_page_sub_contact.scss */
  main.page-contact .form-section dl.contact-table dt span.addr-sub {
    position: absolute;
    left: 45%;
    top: 27px;
    display: inline-block;
  }
}
@media all and (max-width: 767px) {
  /* line 104, ../scss/_page_sub_contact.scss */
  main.page-contact .form-section dl.contact-table dt {
    padding-top: 20px;
    /* 標準フォント 太字 */
    font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
    font-weight: bold;
  }
  /* line 143, ../scss/_page_sub_contact.scss */
  main.page-contact .form-section dl.contact-table dt span.addr-sub::before {
    content: " - ";
  }
  /* line 148, ../scss/_page_sub_contact.scss */
  main.page-contact .form-section dl.contact-table dt span.addr-main + span.addr-sub::before {
    content: " - ";
  }
}
/* line 156, ../scss/_page_sub_contact.scss */
main.page-contact .form-section dl.contact-table dt span.hint {
  display: inline-block;
  font-size: 13px;
  font-size: 0.8125rem;
}
/* line 161, ../scss/_page_sub_contact.scss */
main.page-contact .form-section dl.contact-table dd {
  border-top: 2px solid #ccc;
  text-align: left;
  padding-bottom: 20px;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.6;
}
@media all and (min-width: 960px) {
  /* line 163, ../scss/_page_sub_contact.scss */
  main.page-contact .form-section dl.contact-table dd.addr {
    width: 65%;
  }
}
@media all and (min-width: 768px) and (max-width: 959px) {
  /* line 163, ../scss/_page_sub_contact.scss */
  main.page-contact .form-section dl.contact-table dd.addr {
    width: 55%;
  }
}
/* line 170, ../scss/_page_sub_contact.scss */
main.page-contact .form-section dl.contact-table dd.addr + dt.addr + dd.addr {
  border-top: 1px solid #ccc;
}
@media all and (min-width: 768px) {
  /* line 161, ../scss/_page_sub_contact.scss */
  main.page-contact .form-section dl.contact-table dd {
    padding-top: 20px;
  }
}
@media all and (max-width: 767px) {
  /* line 161, ../scss/_page_sub_contact.scss */
  main.page-contact .form-section dl.contact-table dd {
    border-top: 0px none !important;
    padding-bottom: 10px;
    margin-top: 10px;
    margin-bottom: 20px;
  }
}
/* line 188, ../scss/_page_sub_contact.scss */
main.page-contact .form-section dl.contact-table dd span.post-mark::after {
  content: "　";
}
/* line 94, ../scss/_func.scss */
main.page-contact .form-section dl.contact-table dd.date::after {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  clear: both;
}
/* line 194, ../scss/_page_sub_contact.scss */
main.page-contact .form-section dl.contact-table dd.date > span.year {
  float: left;
  width: 40%;
}
/* line 198, ../scss/_page_sub_contact.scss */
main.page-contact .form-section dl.contact-table dd.date > span.month {
  float: left;
  width: 30%;
}
/* line 202, ../scss/_page_sub_contact.scss */
main.page-contact .form-section dl.contact-table dd.date > span.day {
  float: left;
  width: 30%;
}
/* line 206, ../scss/_page_sub_contact.scss */
main.page-contact .form-section dl.contact-table dd.date > span > input,
main.page-contact .form-section dl.contact-table dd.date > span > select {
  width: calc(100% - 2em);
  margin-right: 0.5em;
}
/* line 212, ../scss/_page_sub_contact.scss */
main.page-contact .form-section dl.contact-table dd p.hint {
  clear: both;
  font-size: 13px;
  font-size: 0.8125rem;
}
/* line 216, ../scss/_page_sub_contact.scss */
main.page-contact .form-section dl.contact-table dd p.error-message,
main.page-contact .form-section dl.contact-table dd span.error {
  clear: both;
  font-size: 14px;
  font-size: 0.875rem;
  margin-bottom: 0;
}
/* line 228, ../scss/_page_sub_contact.scss */
main.page-contact .form-section dl.contact-table.confirm dd::after,
main.page-contact .form-section .mw_wp_form_confirm dl.contact-table dd::after {
  display: inline-block;
  height: 1em;
  content: "";
}
@media all and (min-width: 768px) {
  /* line 227, ../scss/_page_sub_contact.scss */
  main.page-contact .form-section dl.contact-table.confirm dd,
  main.page-contact .form-section .mw_wp_form_confirm dl.contact-table dd {
    padding-top: 26px;
    padding-bottom: 26px;
  }
}
/* line 240, ../scss/_page_sub_contact.scss */
main.page-contact .form-section p.privacy {
  margin-top: 70px;
  margin-bottom: 70px;
}
/* line 243, ../scss/_page_sub_contact.scss */
main.page-contact .form-section p.privacy a {
  display: inline-block;
  color: #DC2800;
}
/* line 249, ../scss/_page_sub_contact.scss */
main.page-contact .form-section .form-button {
  margin-top: 50px;
  text-align: center;
}
/* line 252, ../scss/_page_sub_contact.scss */
main.page-contact .form-section .form-button button, main.page-contact .form-section .form-button a, main.page-contact .form-section .form-button input[type="submit"] {
  position: relative;
  display: inline-block;
  /* 幅高さの基準を変更 */
  box-sizing: border-box;
  max-width: 100%;
  padding: 13px 20px 17px;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 30px;
  border: 2px solid #1a1a1a;
  background-color: #fff;
  text-decoration: none;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-weight: bold;
  letter-spacing: 0;
  /* アニメーション変化 */
  -moz-transition: background-color 0.4s ease 0s, filter 0.2s ease 0s, opacity 0.2s ease 0s;
  -o-transition: background-color 0.4s ease 0s, filter 0.2s ease 0s, opacity 0.2s ease 0s;
  -webkit-transition: background-color 0.4s ease 0s, filter 0.2s ease 0s, opacity 0.2s ease 0s;
  transition: background-color 0.4s ease 0s, filter 0.2s ease 0s, opacity 0.2s ease 0s;
}
/* line 1253, ../scss/_func.scss */
main.page-contact .form-section .form-button button:hover, main.page-contact .form-section .form-button a:hover, main.page-contact .form-section .form-button input[type="submit"]:hover {
  background-color: #e5e5e5;
}
@media all and (min-width: 768px) {
  /* line 268, ../scss/_page_sub_contact.scss */
  main.page-contact .form-section .form-button button.forward, main.page-contact .form-section .form-button a.forward, main.page-contact .form-section .form-button input[type="submit"].forward {
    width: 280px;
  }
}
@media all and (min-width: 768px) {
  /* line 273, ../scss/_page_sub_contact.scss */
  main.page-contact .form-section .form-button button.home, main.page-contact .form-section .form-button a.home, main.page-contact .form-section .form-button input[type="submit"].home {
    width: 280px;
  }
}
/* line 278, ../scss/_page_sub_contact.scss */
main.page-contact .form-section .form-button button + button, main.page-contact .form-section .form-button button + a, main.page-contact .form-section .form-button button + input[type="submit"], main.page-contact .form-section .form-button a + button, main.page-contact .form-section .form-button a + a, main.page-contact .form-section .form-button a + input[type="submit"], main.page-contact .form-section .form-button input[type="submit"] + button, main.page-contact .form-section .form-button input[type="submit"] + a, main.page-contact .form-section .form-button input[type="submit"] + input[type="submit"] {
  margin-left: 1em;
}
/* line 281, ../scss/_page_sub_contact.scss */
main.page-contact .form-section .form-button button:disabled, main.page-contact .form-section .form-button button[data-disabled], main.page-contact .form-section .form-button a:disabled, main.page-contact .form-section .form-button a[data-disabled], main.page-contact .form-section .form-button input[type="submit"]:disabled, main.page-contact .form-section .form-button input[type="submit"][data-disabled] {
  cursor: not-allowed;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.5;
}
/* line 1253, ../scss/_func.scss */
main.page-contact .form-section .form-button button:disabled:hover, main.page-contact .form-section .form-button button[data-disabled]:hover, main.page-contact .form-section .form-button a:disabled:hover, main.page-contact .form-section .form-button a[data-disabled]:hover, main.page-contact .form-section .form-button input[type="submit"]:disabled:hover, main.page-contact .form-section .form-button input[type="submit"][data-disabled]:hover {
  background-color: #fff;
}
/* line 291, ../scss/_page_sub_contact.scss */
main.page-contact .form-section .form-button button.forward, main.page-contact .form-section .form-button a.forward {
  padding-right: 40px;
  /* ※ 本要素のbefore, afterで矢印を作成 */
}
/* line 776, ../scss/_func.scss */
main.page-contact .form-section .form-button button.forward::before, main.page-contact .form-section .form-button button.forward::after, main.page-contact .form-section .form-button a.forward::before, main.page-contact .form-section .form-button a.forward::after {
  /* before, afterで矢印：矢印の各辺を作成 */
  position: absolute;
  z-index: auto;
  display: block;
  width: 0;
  border-left: 1px solid #1a1a1a;
  border-right: 1px solid #1a1a1a;
  height: 10px;
  margin-right: -1px;
  background-color: #1a1a1a;
  content: "";
}
/* line 790, ../scss/_func.scss */
main.page-contact .form-section .form-button button.forward::before, main.page-contact .form-section .form-button a.forward::before {
  /* before, afterで矢印：配置して変形 */
  top: 50%;
  right: 20px;
  margin-top: -10px;
  /* 変形 */
  -moz-transform: matrix(1, 0, 1, 1, 0, 0);
  -ms-transform: matrix(1, 0, 1, 1, 0, 0);
  -webkit-transform: matrix(1, 0, 1, 1, 0, 0);
  transform: matrix(1, 0, 1, 1, 0, 0);
}
/* line 811, ../scss/_func.scss */
main.page-contact .form-section .form-button button.forward::after, main.page-contact .form-section .form-button a.forward::after {
  /* before, afterで矢印：配置して変形 */
  top: 50%;
  right: 20px;
  /* 変形 */
  -moz-transform: matrix(1, 0, -1, 1, 0, 0);
  -ms-transform: matrix(1, 0, -1, 1, 0, 0);
  -webkit-transform: matrix(1, 0, -1, 1, 0, 0);
  transform: matrix(1, 0, -1, 1, 0, 0);
}
/* line 295, ../scss/_page_sub_contact.scss */
main.page-contact .form-section .form-button button.back, main.page-contact .form-section .form-button a.back {
  padding-left: 40px;
  /* ※ 本要素のbefore, afterで矢印を作成 */
}
/* line 776, ../scss/_func.scss */
main.page-contact .form-section .form-button button.back::before, main.page-contact .form-section .form-button button.back::after, main.page-contact .form-section .form-button a.back::before, main.page-contact .form-section .form-button a.back::after {
  /* before, afterで矢印：矢印の各辺を作成 */
  position: absolute;
  z-index: auto;
  display: block;
  width: 0;
  border-left: 1px solid #1a1a1a;
  border-right: 1px solid #1a1a1a;
  height: 10px;
  margin-left: -1px;
  background-color: #1a1a1a;
  content: "";
}
/* line 790, ../scss/_func.scss */
main.page-contact .form-section .form-button button.back::before, main.page-contact .form-section .form-button a.back::before {
  /* before, afterで矢印：配置して変形 */
  top: 50%;
  left: 20px;
  margin-top: -10px;
  /* 変形 */
  -moz-transform: matrix(1, 0, -1, 1, 0, 0);
  -ms-transform: matrix(1, 0, -1, 1, 0, 0);
  -webkit-transform: matrix(1, 0, -1, 1, 0, 0);
  transform: matrix(1, 0, -1, 1, 0, 0);
}
/* line 811, ../scss/_func.scss */
main.page-contact .form-section .form-button button.back::after, main.page-contact .form-section .form-button a.back::after {
  /* before, afterで矢印：配置して変形 */
  top: 50%;
  left: 20px;
  /* 変形 */
  -moz-transform: matrix(1, 0, 1, 1, 0, 0);
  -ms-transform: matrix(1, 0, 1, 1, 0, 0);
  -webkit-transform: matrix(1, 0, 1, 1, 0, 0);
  transform: matrix(1, 0, 1, 1, 0, 0);
}
/* line 303, ../scss/_page_sub_contact.scss */
main.page-contact .form-section .thanks-title {
  text-align: left;
  font-size: 22px;
  font-size: 1.375rem;
}
/* line 308, ../scss/_page_sub_contact.scss */
main.page-contact .form-section .thanks-message {
  text-align: left;
  margin-top: 20px;
}
/* line 313, ../scss/_page_sub_contact.scss */
main.page-contact .form-section .contact-credit {
  margin-top: 50px;
  border: 1px solid #ccc;
  padding: 20px;
  text-align: left;
}
/* line 318, ../scss/_page_sub_contact.scss */
main.page-contact .form-section .contact-credit .title {
  font-size: 18px;
  font-size: 1.125rem;
}
/* line 321, ../scss/_page_sub_contact.scss */
main.page-contact .form-section .contact-credit div.credit-data {
  margin-top: 20px;
}
/* line 323, ../scss/_page_sub_contact.scss */
main.page-contact .form-section .contact-credit div.credit-data p {
  margin-top: 0.5em;
}

/*
----------------------------------------------------------------------------------------------------

印刷用デザインの読み込み
@import "print";

-----
*/
/*
==================================================

	印刷設定

==================================================
*/
@media print {
  /* line 22, ../scss/_print.scss */
  html {
    /* 印刷用文字サイズ */
    font-size: 10.5pt;
  }

  /* line 29, ../scss/_print.scss */
  body > header,
  body.status-menu-open > header,
  body.status-scroll > header {
    /* ヘッダーを印刷しない */
  }
  /* line 33, ../scss/_print.scss */
  body > .scroll-content,
  body.status-menu-open > .scroll-content,
  body.status-scroll > .scroll-content {
    overflow-y: auto;
  }
  /* line 36, ../scss/_print.scss */
  body > .scroll-content > main::before,
  body.status-menu-open > .scroll-content > main::before,
  body.status-scroll > .scroll-content > main::before {
    /* 印刷用ヘッダー */
    position: static;
    display: block;
    width: 100%;
    content: "";
    page-break-after: avoid;
  }
  /* line 44, ../scss/_print.scss */
  body > .scroll-content > main::after,
  body.status-menu-open > .scroll-content > main::after,
  body.status-scroll > .scroll-content > main::after {
    /* 印刷用フッター */
    position: static;
    display: block;
    width: 100%;
    content: "";
    page-break-before: avoid;
  }
  /* line 53, ../scss/_print.scss */
  body > .scroll-content > footer,
  body.status-menu-open > .scroll-content > footer,
  body.status-scroll > .scroll-content > footer {
    /* フッターを印刷しない */
  }
}
/* Scss Document */
