@charset "UTF-8";
body {
  word-break: break-all;
}

body {
  color: #000;
  font-size: 1.8rem;
  font-weight: 500;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
}

/*!
 * ress.css ? v1.0.1
 * MIT License
 * github.com/filipelinhares/ress
 */
/* # =================================================================
   # Global selectors
   # ================================================================= */
/**
 * 1. All browsers without overlaying scrollbars
 * 2. iOS 8+

 * 1. すべてのブラウザで、スクロールバーのオーバーレイを無し。
 * 2. iOS 8+
 */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow-y: scroll;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

*,
::before,
::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

/**
 * 1. Inherit text-decoration and vertical align to ::before and ::after pseudo elements

 * 1. 「::before」と「::after」に、「text-decoration」と「vertical-align」を継承。
 */
::before,
::after {
  text-decoration: inherit;
  /* 1 */
  vertical-align: inherit;
}

/**
 * 1. Set `background-repeat: no-repeat` to all elements
 * 2. Reset `padding` and `margin` of all elements

 * 1. すべての要素に、「background-repeat: no-repeat;」を指定。
 * 2. すべての要素に、「padding」と「margin」をリセット。
 */
* {
  background-repeat: no-repeat;
  /* 1 */
  padding: 0;
  /* 2 */
  margin: 0;
}

/* # =================================================================
   # General elements
   # ================================================================= */
/**
 * Add the correct display in iOS 4-7.

 * iOS 4-7に、正しいdisplayを設定。
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * 1. Show the overflow in Edge and IE

 * 1. EdgeとIEに、「overflow: visible;」を定義。
 */
hr {
  overflow: visible;
  /* 1 */
}

/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox
 * Correct `block` display not defined for `main` in IE 11

 * IE8/9に、displayプロパティを定義。
 * IE10/11とFirefoxのdetail要素とsummary要素に、displayプロパティを定義。
 * IE11のmain要素に、displayプロパティを定義。
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Set font-size to 80% in `small` elements

 * 1. small要素に、フォントサイズ「80%」を定義。
 */
small {
  font-size: 80%;
  /* 1 */
}

/**
 * 1. Add the correct display in IE

 * 1. IEに、displayプロパティを定義。
 */
[hidden],
template {
  display: none;
  /* 1 */
}

/**
 * 1. Add a bordered underline effect in all browsers
 * 2. Remove text decoration in Firefox 40+

 * 1. すべてのブラウザに、点線を定義。
 * 2. Firefox40+に、テキストの装飾を削除。
 */
abbr[title] {
  border-bottom: 1px dotted;
  /* 1 */
  text-decoration: none;
  /* 2 */
}

/**
 * 1. Remove the gray background on active links in IE 10
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+

 * 1. IE10に、アクティブリンクのグレーの背景を削除。
 * 2. iOS8+とSafari8+に、リンクの下線のギャップを削除。
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */
}

/**
 * 1. Remove the outline when hovering in all browsers

 * 1. すべてのブラウザに、ホバー時のアウトラインを削除。
 */
a:active,
a:hover {
  outline-width: 0;
  /* 1 */
}

/**
 * 1. Specify the font family of code elements

 * 1. コード要素に、フォントファミリーを指定。
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  /* 1 */
}

/**
 * 1. Correct style set to `bold` in Edge 12+, Safari 6.2+, and Chrome 18+

 * 1. Edge12+, Safari6.2+, Chrome18+に、「bold」を適用。
 */
b {
  font-weight: bold;
  display: inline;
}

strong {
  font-weight: bolder;
  /* 1 */
  color: #e71d0e;
  display: inline;
}

em {
  font-weight: 600;
}

/**
 * 1. Address styling not present in Safari and Chrome

 * 1. SafariとChromeに、定義。
 */
dfn {
  font-style: italic;
  /* 1 */
}

/**
 * Address styling not present in IE 8/9

 * 1. IE8/9に、定義。
 */
mark {
  background-color: #ff0;
  color: #000;
}

/**
 * https://gist.github.com/unruthless/413930
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* # =================================================================
   # Forms
   # ================================================================= */
input {
  border-radius: 0;
}

/**
 * 1. Firefox 36+

 * 1. Firefox 36+
 */
[type="number"] {
  width: auto;
  /* 1 */
}

/**
 * 1. Safari 8+

 * 1. Safari 8+
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
}

/**
 * 1. Safari 8

 * 1. Safari 8
 */
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
  /* 1 */
}

/**
 * 1. Internet Explorer 11+
 * 2. Specify textarea resizability

 * 1. Internet Explorer 11+
 * 2. textarea要素に、垂直方向のリサイズを指定。
 */
textarea {
  overflow: auto;
  /* 1 */
  resize: vertical;
  /* 2 */
}

/**
 * 1. Specify font inheritance of form elements

 * 1. フォーム要素に、フォントの継承を指定。
 */
button,
input,
optgroup,
select,
textarea {
  font: inherit;
  /* 1 */
}

/**
 * 1. Restore the font weight unset by the previous rule.

 * 1. 前の指定により、フォントのウェイトを再定義。
 */
optgroup {
  font-weight: bold;
  /* 1 */
}

/**
 * 1. Address `overflow` set to `hidden` in IE 8/9/10/11

 * 1. IE8/9/10/11に、overflow時にhiddenを設定。
 */
button {
  overflow: visible;
  /* 1 */
}

/**
 * Remove inner padding and border in Firefox 4+

 * Firefox4+に、内側のpaddingとborderを削除。
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: 0;
  padding: 0;
}

/**
 * Replace focus style removed in the border reset above

 * 1. フォーカス時のスタイルを定義。
 */
button:-moz-focusring,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  outline: none;
}

*:focus {
  outline: none;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`controls in Android 4
 * 2. Correct the inability to style clickable types in iOS

 * 1. Android4に、ネイティブのaudio要素とvideo要素のコントロールのバグを防ぐ。
 * 2. iOSに、クリッカブルなbutton要素のtypeのスタイルを修正。
 */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
}

/**
 * 1. Firefox 40+, Internet Explorer 11-

 * 1. Firefox 40+, Internet Explorer 11-
 */
button,
select {
  text-transform: none;
  /* 1 */
}

/**
 * Remove the default button styling in all browsers

 * すべてのブラウザにおいて、デフォルトのボタンのスタイルを削除。
 */
button,
input,
select,
textarea {
  /* background-color: transparent; */
  /* border-style: none; */
  color: inherit;
}

/**
 * Style select like a standard input
 * 1. Firefox 36+
 * 2. Chrome 41+

 * 標準的なinput要素のスタイルを選択。
 * 1. Firefox 36+
 * 2. Chrome 41+
 */
/*select {
  -moz-appearance: none;
  -webkit-appearance: none;
}*/

/**
 * 1. Internet Explorer 11+

 * 1. Internet Explorer 11+
 */
select::-ms-expand {
  display: none;
  /* 1 */
}

/**
 * 1. Internet Explorer 11+

 * 1. Internet Explorer 11+
 */
select::-ms-value {
  color: currentColor;
  /* 1 */
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11
 * 2. Correct the color inheritance from `fieldset` elements in IE
 * 3. Correct the text wrapping in Edge and IE
 * 4. Correct the text wrapping in Edge and IE
 * 5. Correct the text wrapping in Edge and IE

 * 1. IE 8/9/10/11に、カラーの継承を定義。
 * 2. IEに、fieldset要素からカラーを継承するように定義。
 * 3. EdgeとIEに、テキストのラッピングを修正。
 * 4. EdgeとIEに、テキストのラッピングを修正。
 * 5. EdgeとIEに、テキストのラッピングを修正。
 */
legend {
  border: 0;
  /* 1*/
  color: inherit;
  /* 2 */
  display: table;
  /* 3 */
  max-width: 100%;
  /* 4 */
  white-space: normal;
  /* 5 */
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari
 * 2. Change font properties to `inherit` in Chrome and Safari

 * 1. iOSとSafariに、クリッカブルなtypeのスタイルを修正。
 * 2. ChromeとSafariに、フォントプロパティの継承を変更。
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari

 * Chrome, Edge, Safariに、テキストのスタイルを修正。
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari
 * 2. Correct the outline style in Safari

 * 1. ChromeとSafariに、アピアランスを修正。
 * 2. Safariに、アウトラインを修正。
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/* # =================================================================
   # Specify media element style
   # ================================================================= */
/**
 * 1. Remove border when inside `a` element in IE 8/9/10

 * 1. IE8/9/10に、a要素の中にある時にボーダーを削除。
 */
img {
  max-width: 100%;
  border-style: none;
  /* 1 */
  vertical-align: top;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera

 * 1. Chrome, Firefox, Operaに、正しいvertical-alignを与える。
 */
progress {
  vertical-align: baseline;
}

/**
 * 1. Internet Explorer 11-

 * 1. Internet Explorer 11-
 */
svg:not(:root) {
  overflow: hidden;
  /* 1 */
}

/**
 * 1. Internet Explorer 11+, Windows Phone 8.1+

 * 1. Internet Explorer 11+, Windows Phone 8.1+
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
}

/* # =================================================================
   # Acessibility
   # ================================================================= */
/**
 * Hide content from screens but not screenreaders

 * コンテンツを隠す時は、スクリーンリーダーからでなく、スクリーンから。
 */

/**
 * Specify the progress cursor of updating elements

 * アップデート中の要素のプログレスのカーソルを指定。
 */
/* */
[aria-busy="true"] {
  cursor: progress;
}

/**
 * Specify the pointer cursor of trigger elements

 * トリガー要素のポインターのカーソルを指定。
 */
[aria-controls] {
  cursor: pointer;
}

/**
 * Specify the unstyled cursor of disabled, not-editable, or otherwise inoperable elements

 * 使用不可、編集不可の要素のスタイルが無いカーソルを指定。
 */
[aria-disabled] {
  cursor: default;
}

/* # =================================================================
   # Selection
   # ================================================================= */
/**
 * Specify text selection background color and omit drop shadow

 * テキスト選択時の背景色を指定し、ドロップシャドウを削除。
 */
/**
 * 1. Required when declaring ::selection

 * 1. 「::selection」を使用する時に必要。
 */
::-moz-selection {
  background-color: #b3d4fc;
  /* 1 */
  color: #fff;
  text-shadow: none;
}

/**
 * 1. Required when declaring ::selection

 * 1. 「::selection」を使用する時に必要。
 */
::-moz-selection {
  background-color: #b3d4fc;
  /* 1 */
  color: #fff;
  text-shadow: none;
}
::selection {
  background-color: #b3d4fc;
  /* 1 */
  color: #fff;
  text-shadow: none;
}

html, body {
  width: 100%;
  height: 100%;
}

html {
  font-size: 62.5%;
}

body {
  position: relative;
}

/**
 * 1. hタグ、ul・liタグ、aタグの定義
 */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  line-height: 1.2;
}

ul,
li {
  padding: 0;
  margin: 0;
  list-style: none;
}

a {
  text-decoration: none;
}

@-webkit-keyframes vibrate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
  50% {
    -webkit-transform: rotate(-15deg);
            transform: rotate(-15deg);
  }
  75% {
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

@keyframes vibrate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
  50% {
    -webkit-transform: rotate(-15deg);
            transform: rotate(-15deg);
  }
  75% {
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

@-webkit-keyframes vibrate02 {
  0% {
    -webkit-transform: rotate(0deg) scale(1.2);
            transform: rotate(0deg) scale(1.2);
  }
  5% {
    -webkit-transform: rotate(15deg) scale(1.2);
            transform: rotate(15deg) scale(1.2);
  }
  10% {
    -webkit-transform: rotate(-15deg) scale(1.2);
            transform: rotate(-15deg) scale(1.2);
  }
  15% {
    -webkit-transform: rotate(15deg) scale(1.2);
            transform: rotate(15deg) scale(1.2);
  }
  20% {
    -webkit-transform: rotate(0deg) scale(1);
            transform: rotate(0deg) scale(1);
  }
  100% {
    -webkit-transform: rotate(0deg) scale(1);
            transform: rotate(0deg) scale(1);
  }
}

@keyframes vibrate02 {
  0% {
    -webkit-transform: rotate(0deg) scale(1.2);
            transform: rotate(0deg) scale(1.2);
  }
  5% {
    -webkit-transform: rotate(15deg) scale(1.2);
            transform: rotate(15deg) scale(1.2);
  }
  10% {
    -webkit-transform: rotate(-15deg) scale(1.2);
            transform: rotate(-15deg) scale(1.2);
  }
  15% {
    -webkit-transform: rotate(15deg) scale(1.2);
            transform: rotate(15deg) scale(1.2);
  }
  20% {
    -webkit-transform: rotate(0deg) scale(1);
            transform: rotate(0deg) scale(1);
  }
  100% {
    -webkit-transform: rotate(0deg) scale(1);
            transform: rotate(0deg) scale(1);
  }
}

a:hover {
  outline: none;
}

a:active {
  outline: none;
}

a:focus {
  outline: none;
}

/* =================================
  header
================================= */
.ttl--site {
  display: inline-block;
}

.ttl--site a {
  display: block;
  padding: 11px 0;
}

.ttl--site a img {
  width: auto;
  height: 25px;
  display: inline-block;
  vertical-align: middle;
}

.ttl--site a > span {
  font-size: 1.4rem;
  font-weight: normal;
  color: #000;
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 0 20px;
}

.header {
  position: relative;
}

.header__top {
  width: 100%;
  padding: 19px 0;
}

.header__top__in {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.header__top__parts {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.header__top__parts .link {
  font-size: 1.4rem;
  font-weight: bold;
  color: #0d3781;
  border: 2px solid #0a4098;
  border-radius: 2px;
  padding: 10px 18px;
}

.header__top__parts .link:hover {
  color: #fff;
  background: #0a4098;
}

.gNav {
  background: #0d3781;
}

.gNav .gNav__list {
  max-width: 1180px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.gNav .gNav__list__item {
  width: 20%;
}

.gNav .gNav__list__item a {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  display: block;
  position: relative;
  text-align: center;
  padding: 31px 0;
}

.gNav .gNav__list__item a span {
  position: relative;
}

.gNav .gNav__list__item a span::before {
  font-family: "FontAwesome";
  font-weight: 400;
  font-size: 1.8rem;
  margin-right: 12px;
}

.gNav .gNav__list__item a span::after {
  content: "";
  width: 0;
  height: 1px;
  display: block;
  background: #fff;
  position: absolute;
  bottom: -7px;
  left: 0;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

.gNav .gNav__list__item a:hover {
  opacity: 1;
}

.gNav .gNav__list__item a:hover span::after {
  width: 100%;
}

.gNav .gNav__list__item:nth-child(1) span::before {
  content: "\f040";
}

.gNav .gNav__list__item:nth-child(2) span::before {
  content: "\f080";
}

.gNav .gNav__list__item:nth-child(3) span::before {
  content: "\f097";
}

.gNav .gNav__list__item:nth-child(4) span::before {
  content: "\f0f7";
}

.gNav .gNav__list__item:nth-child(5) span::before {
  content: "\f091";
}

.gNav .gNav__list__item:nth-child(6) span::before {
  content: "\f128";
}

.gNavForm {
  background: #f4f4f4;
  border: 2px solid #d4d4d4;
  border-radius: 2px;
  margin-left: 10px;
}

.gNavForm dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.gNavForm input {
  font-size: 1.6rem;
  padding: 8px 0 8px 10px;
}

.gNavForm input::-webkit-input-placeholder {
  font-size: 1.4rem;
  color: #656565;
}

.gNavForm input:-ms-input-placeholder {
  font-size: 1.4rem;
  color: #656565;
}

.gNavForm input::placeholder {
  font-size: 1.4rem;
  color: #656565;
}

.gNavForm button {
  cursor: pointer;
  font-size: 1.7rem;
  color: #a3a3a3;
  padding: 12px;
}

/*=================================
  footer
=================================*/
.footer {
  background: #2b3942;
}

.footer__inner {
  max-width: 1180px;
  margin: 0 auto;
}

.footer .fNav__top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
  padding: 50px 0 34px;
  border-bottom: 1px solid #414d55;
}

.footer .fNav__top .fNav__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  line-height: 1;
}

.footer .fNav__top .fNav__list .fNav__ttl {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  padding-bottom: 3px;
  margin: 0 0 30px;
  border-bottom: 1px dotted #aab0b3;
  display: inline-block;
}

.footer .fNav__top .fNav__list__item a {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  padding-left: 17px;
  display: inline-block;
}

.footer .fNav__top .fNav__list__item a::before {
  content: "";
  border-style: solid;
  border-width: 4.5px 0 4.5px 9px;
  border-color: transparent transparent transparent #fff;
  display: inline-block;
  margin-right: 7px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.footer .fNav__top .fNav__list > li + li {
  margin-left: 100px;
}

.footer .fNav__top .fNav__list > li li + li {
  margin: 16px 0 0;
}

.footer .fNav__top .sns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 70px;
}

.footer .fNav__top .sns li {
  background: #414d55;
  border-radius: 50%;
}

.footer .fNav__top .sns li a {
  font-size: 1.6rem;
  color: #fff;
  width: 34px;
  line-height: 34px;
  text-align: center;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

.footer .fNav__top .sns li + li {
  margin-left: 17px;
}

.footer .fNav__top .sns li:hover a {
  -webkit-transform: rotateY(360deg);
          transform: rotateY(360deg);
}

.footer .fNav__bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 33px 0;
}

.footer .fNav__bottom .fNav__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.footer .fNav__bottom .fNav__list a {
  font-size: 1.2rem;
  color: #fff;
}

.footer .fNav__bottom .fNav__list li + li {
  margin-left: 28px;
}

.footer .copy {
  font-size: 1.2rem;
  line-height: 1;
  color: #fff;
  padding-right: 15px;
}

.pageTop {
  position: fixed;
  right: -webkit-calc((100% - 1300px) / 2);
  right: calc((100% - 1300px) / 2);
  bottom: 36px;
}

.pageTop .btn--pageTop {
  background: #3b4a53;
  padding: 30px;
  display: block;
}

.pageTop .btn--pageTop::before {
  content: "";
  border-style: solid;
  border-width: 0 6px 12px 6px;
  border-color: transparent transparent #ffffff transparent;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

.pageTop:hover {
  opacity: 0.8;
}

.pageTop:hover .btn--pageTop::before {
  top: 45%;
}

/* =================================
  toppage
================================= */
/*mv*/
.mv {
  background: #dbeff8;
  padding: 30px 0 90px;
}

.mv__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.mv .sliderCard .thumb {
  position: relative;
}

.mv .sliderCard .thumb .label {
  position: absolute;
  top: 0;
  left: 0;
}

.mv .sliderCard__ttl {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.55555;
  letter-spacing: .02em;
  margin: 10px 0 0;
}

.mv .sliderCard__text {
  margin: 18px 0 0;
}

.mv .sliderCard__text time {
  font-size: 1.6rem;
  font-weight: bold;
  color: #000;
  border-bottom: 1px dotted #000;
}

.mv .sliderCard__text > span {
  font-size: 1.6rem;
  font-weight: bold;
  color: #000;
  border-bottom: 1px dotted #000;
  margin-left: 15px;
}

.mv .sliderCard__text > span span {
  font-size: 1.2rem;
}

.mv .sliderCard__in {
  margin: 0 10px;
}

.topSecWrap.reco {
  background: url(/fx/images/bg_geometry_l.png) no-repeat left center, url(/fx/images/bg_geometry_r.png) no-repeat right center, #fff;
}

.topSecWrap.reco .reco__ttl {
  text-align: center;
  position: relative;
  top: -36px;
}

.topSecWrap.reco .reco__ttlSub {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
  text-align: center;
}

.topSecWrap.reco .recoList {
  max-width: 1180px;
  margin: 64px auto 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.topSecWrap.reco .recoList li {
  width: -webkit-calc(33.333333% - 13.333333px);
  width: calc(33.333333% - 13.333333px);
  height: 225px;
  text-align: center;
  background: #0a4098;
  margin: 0 0 20px 20px;
  position: relative;
  cursor: pointer;
}

.topSecWrap.reco .recoList li a {
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  padding: 0 0 0 18px;
  width: 85%;
  position: absolute !important;
  left: 50%;
  bottom: 40px;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.topSecWrap.reco .recoList li a span {
  position: relative;
  display: inline-block;
}
.topSecWrap.reco .recoList li a span::before {
  content: "";
  border-style: solid;
  border-width: 4.5px 0 4.5px 9px;
  border-color: transparent transparent transparent #fff;
  display: inline-block;
  margin-right: 7px;
  position: absolute;
  top: 50%;
  left: -15px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.topSecWrap.reco .recoList li a::after {
  content: "";
  width: 0;
  height: 1px;
  background: #fff;
  display: inline-block;
  position: absolute;
  bottom: -15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

.topSecWrap.reco .recoList li:nth-child(3n + 1) {
  margin-left: 0;
}

.topSecWrap.reco .recoList li:nth-child(1) span::after {
  content: "";
  width: 39px;
  height: 51px;
  background: url(/fx/images/icon/icon_beginner.png) no-repeat center center;
  background-size: contain;
  display: inline-block;
  position: absolute;
  top: -65px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.topSecWrap.reco .recoList li:nth-child(2) span::after {
  content: "\f2b5";
  font-family: "FontAwesome";
  font-size: 5rem;
  font-weight: normal;
  color: #fff;
  display: inline-block;
  position: absolute;
  top: -65px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.topSecWrap.reco .recoList li:nth-child(3) span::after {
  content: "\f0d6";
  font-family: "FontAwesome";
  font-size: 5rem;
  font-weight: normal;
  color: #fff;
  display: inline-block;
  position: absolute;
  top: -65px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.topSecWrap.reco .recoList li:nth-child(4) span::after {
  content: "\f080";
  font-family: "FontAwesome";
  font-size: 5rem;
  font-weight: normal;
  color: #fff;
  display: inline-block;
  position: absolute;
  top: -65px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.topSecWrap.reco .recoList li:nth-child(5) span::after {
  content: "\f0c0";
  font-family: "FontAwesome";
  font-size: 5rem;
  font-weight: normal;
  color: #fff;
  display: inline-block;
  position: absolute;
  top: -65px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.topSecWrap.reco .recoList li:nth-child(6) span::after {
  content: "\f155";
  font-family: "FontAwesome";
  font-size: 5rem;
  font-weight: normal;
  color: #fff;
  display: inline-block;
  position: absolute;
  top: -65px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.topSecWrap.reco .recoList li::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(/fx/images/deco_frame.png) no-repeat center center;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  opacity: 0;
  -webkit-transform: scale(0.9);
      -ms-transform: scale(0.9);
          transform: scale(0.9);
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

.topSecWrap.reco .recoList li:hover::before {
  opacity: 1;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.topSecWrap.reco .recoList li:hover a {
  text-decoration: none;
}

.topSecWrap.reco .recoList li:hover a::after {
  width: 20%;
}

.topSecWrap.brand {
  background: url(/fx/images/top_brandBg.jpg) no-repeat center center;
  padding: 38px 0 40px;
}

.topSecWrap.brand .brand__ttl {
  font-size: 3.4rem;
  font-weight: bold;
  font-style: italic;
  color: #0d3781;
  background: url(/fx/images/top_brandTtl.png) no-repeat right top;
  background-size: contain;
  padding: 14px 0 0;
}

.topSecWrap.brand .brand__ttl span {
  font-size: 1.4rem;
  font-weight: normal;
  font-style: normal;
  color: #000;
  margin-left: 28px;
  display: inline-block;
  vertical-align: middle;
}

.topSecWrap.brand .btn--base {
  font-size: 2rem;
  max-width: 422px;
  margin: 0 auto;
}

.topSecWrap .brandList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: 17px auto 30px;
}

.topSecWrap .brandList__item {
  width: -webkit-calc(20% - 16px);
  width: calc(20% - 16px);
  background: #fff;
  -webkit-box-shadow: 0px 3px 5px 0px rgba(43, 57, 66, 0.05);
          box-shadow: 0px 3px 5px 0px rgba(43, 57, 66, 0.05);
  margin: 20px 0 0 20px;
  text-align: center;
  padding: 30px 0 26px;
}

.topSecWrap .brandList__item:nth-child(5n + 1) {
  margin-left: 0;
}

.topSecWrap .brandList__item .banner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  position: relative;
}

.topSecWrap .brandList__item a {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1;
  color: #0a4098;
  display: inline-block;
  position: relative;
}

.topSecWrap .brandList__item a::before {
  content: "";
  border-style: solid;
  border-width: 4.5px 0 4.5px 9px;
  border-color: transparent transparent transparent #0a4098;
  display: inline-block;
  margin-right: 5px;
}

.topSecWrap.pickup {
  padding: 64px 0 66px;
}

.topSecWrap.pickup .pickup__box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.topSecWrap.pickup .pickup__box > * {
  width: -webkit-calc(50% - 31px);
  width: calc(50% - 31px);
}

.topSecWrap.pickup .pickup__box .articleCard {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 0 12px;
  border-bottom: 1px solid #bababa;
}

.topSecWrap.pickup .newpost .titleWrap {
  background: url(/fx/images/newpost_ttl.png) no-repeat right center;
  margin: 0 0 25px;
  padding: 5px 0;
}

.topSecWrap.pickup .newpost .newpost__ttl {
  font-size: 3rem;
  font-weight: bold;
  font-style: italic;
  color: #0d3781;
  position: relative;
}

.topSecWrap.pickup .newpost .newpost__ttl::after {
  content: "";
  width: 2em;
  height: 4px;
  display: inline-block;
  background: #dae7ed;
  position: absolute;
  left: 0;
  bottom: -20px;
}

.topSecWrap.pickup .popular .titleWrap {
  background: url(/fx/images/popular_ttl.png) no-repeat right center;
  margin: 0 0 25px;
  padding: 5px 0;
}

.topSecWrap.pickup .popular .popular__ttl {
  font-size: 3rem;
  font-weight: bold;
  font-style: italic;
  color: #0d3781;
  position: relative;
}

.topSecWrap.pickup .popular .popular__ttl::after {
  content: "";
  width: 2em;
  height: 4px;
  display: inline-block;
  background: #dae7ed;
  position: absolute;
  left: 0;
  bottom: -20px;
}

.topSecWrap.column {
  padding: 80px 0 72px;
  background: #395668;
}

.topSecWrap.column .titleWrap {
  margin: 0 0 22px;
}

.topSecWrap.column .column__ttl {
  font-size: 2.4rem;
  font-weight: bold;
  color: #fff;
}

.topSecWrap.column .allview {
  color: #0a4098;
  background: #fff;
  border: none;
}

.topSecWrap.column .allview::before {
  border-color: transparent transparent transparent #0a4098;
}

.topSecWrap.column .allview:hover {
  color: #fff;
  background: #0a4098;
}

.topSecWrap.column .allview:hover::before {
  border-color: transparent transparent transparent #fff;
}
.topSecWrap.singlePage {
  max-width: 1180px;
  margin: 0 auto 66px;
}

.column__2col {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.column__2col .columnBox {
  width: -webkit-calc(50% - 31px);
  width: calc(50% - 31px);
}

.column__2col .articleCard {
  margin: 19px 0 0;
}

.column__2col + .column__2col {
  margin: 60px 0 0;
}

.allview:hover {
  background: #fff;
}

.articleCard__text {
  padding: 18px 10px 18px 0;
}

/* =================================
  article list
================================= */
/*tab*/
.ui-widget.ui-widget-content {
  border: none;
  border-radius: 0;
  padding: 0;
  background: initial;
}

.ui-tabs .ui-tabs-nav {
  padding: 0;
  border-radius: 0;
  border: none;
  background: none;
}

.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
  display: block;
  text-align: center;
  float: none;
}

.ui-tabs .ui-tabs-panel {
  padding: 52px 0 0;
}

/*tabs Num*/
#listNum .ui-state-active, #listNum .ui-widget-content .ui-state-active, #listNum .ui-widget-header .ui-state-active, #listNum a.ui-button:active, #listNum .ui-button:active, #listNum .ui-button.ui-state-active:hover {
  background: #0a4098 !important;
}

#listNum .ui-state-active a {
  color: #fff !important;
}

#listNum .ui-state-default, #listNum .ui-widget-content .ui-state-default, #listNum .ui-widget-header .ui-state-default, #listNum .ui-button, #listNum html .ui-button.ui-state-disabled:hover, #listNum html .ui-button.ui-state-disabled:active {
  background: #fff;
}

#listNum.ui-tabs .ui-tabs-nav li {
  width: 50%;
  margin: 0;
  padding: 0;
  border: 1px solid #0a4098;
  border-radius: 0;
  position: relative;
}

#listNum.ui-tabs .ui-tabs-nav li a {
  font-size: 2rem;
  font-weight: bold;
  color: #0a4098;
}

#listNum.ui-tabs .ui-tabs-nav li:not(.ui-tabs-active):hover {
  background: #0a4098;
  opacity: .8;
}

#listNum.ui-tabs .ui-tabs-nav li:not(.ui-tabs-active):hover a {
  color: #fff;
}

#listNum.ui-tabs .ui-tabs-nav li:first-child {
  border-right: none;
}

#listNum.ui-tabs .ui-tabs-nav li + li {
  border-left-color: #fff;
}

.pageSummary {
  line-height: 1.555555;
  margin: 30px 0 50px;
}

.articleListWrap {
  margin: 0 0 40px;
}

.articleList {
  margin: 26px 0 38px;
}

.articleList li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  border: 1px solid #bababa;
}

.articleList li .thumb {
  position: relative;
  width: 310px;
}

.articleList li .thumb .label {
  position: absolute;
  top: 0;
  left: 0;
}

.articleList li .thumb img {
  width: 100%;
  height: auto;
}

.articleList li + li {
  margin: 22px 0 0;
}

.articleList li:hover a {
  text-decoration: none !important;
}

.articleList__item {
  width: -webkit-calc(100% - 310px);
  width: calc(100% - 310px);
  padding: 20px 30px;
  background: #fff;
}

.articleList__item .articleList__ttl a {
  font-size: 2.2rem;
  line-height: 1.454545;
  color: #0a4098;
  text-decoration: underline;
}

.articleList__item .articleList__text {
  font-size: 1.5rem;
  line-height: 1.75;
  margin: 15px 0 0;
}

.pagenation {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1020px;
  margin: 0 auto 0;
}

.pagenation .pager {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.pagenation .pager li {
  font-size: 2.4rem;
  line-height: 1;
  display: inline-block;
}

.pagenation .pager li a {
  color: #494848;
  background: #eee;
  display: block;
  padding: 18px 23px;
}

.pagenation .pager li a:hover {
  color: #0d3781;
  background: #dfedf4;
}

.pagenation .pager li span {
  color: #0d3781;
  background: #dfedf4;
  display: block;
  padding: 18px 23px;
}

.pagenation .pager li + li {
  margin-left: 2px;
}

.pagenation .listCount {
  font-size: 2rem;
  color: #0d3781;
}

/* =================================
  singlePage
================================= */
.singlePage {
  width: 100%;
  background: #fff;
  border: 1px solid #bababa;
  border-top: none;
  margin: 0 0 70px;
  position: relative;
}

.singlePage::before {
  content: "";
  width: -webkit-calc(100% + 2px);
  width: calc(100% + 2px);
  height: 5px;
  display: block;
  background: #0d3781;
  margin-left: -1px;
}

.singlePage .data {
  margin: 30px 0 25px;
}

.singlePage .data .time {
  margin-left: 24px;
}

.singlePage .data .view {
  margin-left: 12px;
}

.singlePage .articleMv {
  width: 860px;
  height: auto;
  margin: 25px auto 30px;
}

.singlePage .tocBox {
  background: #eef4f6;
  margin: 28px 0 70px;
}

.singlePage .tocBox__ttl {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  background: #0d3781;
  display: inline-block;
  margin: 0;
  padding: 8px 12px 8px 20px;
  position: relative;
  vertical-align: bottom;
}

.singlePage .tocBox__ttl::before {
  content: "";
  width: 13px;
  height: 100%;
  background: #0d3781;
  display: inline-block;
  position: absolute;
  top: 0;
  right: -6px;
  -webkit-transform: skew(-20deg);
  -ms-transform: skew(-20deg);
  transform: skew(-20deg);
}

.singlePage .tocBox .tocList {
  padding: 30px 36px 40px;
  counter-reset: counterToc;
}

.singlePage .tocBox .tocList__item {
  padding: 0 0 0 33px;
  position: relative;
}

.singlePage .tocBox .tocList__item a {
  font-size: 1.6rem;
  text-decoration: underline;
}

.singlePage .tocBox .tocList__item a:hover {
  color: #0a4098;
  text-decoration: none;
}

.singlePage .tocBox .tocList__item + .tocList__item {
  margin: 12px 0 0;
}

.singlePage .tocBox .tocList__item::before {
  counter-increment: counterToc;
  font-size: 1.8rem;
  color: #0a4098;
  position: absolute;
  top: 0;
  left: 0;
}
.singlePage .tocBox .tocList__item:nth-child(-n + 9)::before {
  content: "0" counter(counterToc);
}
.singlePage .tocBox .tocList__item:nth-child(n + 10)::before {
  content: counter(counterToc);
}
.singlePage__in {
  padding: 0 80px 0;
}

.singlePage__in .aligncenter {
  display: block;
  margin: 36px auto 20px;
}

.singlePage__in > h1 {
  font-size: 4rem;
  font-weight: bold;
  line-height: 1.3;
  color: #0d3781;
  margin: 67px 0 30px;
}

.singlePage__in > h2 {
  font-size: 3.2rem;
  font-weight: normal;
  line-height: 1.375;
  color: #fff;
  background: #0d3781;
  padding: 22px 25px;
  margin: 67px 0 35px;
}

.singlePage__in > h3 {
  font-size: 2.8rem;
  font-weight: normal;
  line-height: 1.2857;
  border-bottom: 1px dotted #030000;
  border-left: 6px solid #0d3781;
  padding: 5px 13px 15px;
  margin: 50px 0 25px;
}

.singlePage__in > h4 {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.8;
  margin: 50px 0 38px;
  padding-bottom: 20px;
  border-bottom: 1px solid #969696;
  position: relative;
}

.singlePage__in > h4::before {
  content: "";
  width: 250px;
  height: 2px;
  display: inline-block;
  background: #0d3781;
  position: absolute;
  bottom: -2px;
  left: 0;
}

.singlePage__in > img {
  display: block;
  margin: 36px auto 20px;
}

.singlePage__in > .imgBox--r {
  overflow: hidden;
}

.singlePage__in > .imgBox--r img {
  float: right;
  max-width: 400px;
  height: auto;
  margin: 0 0 20px 40px;
}

.singlePage__in > .imgBox--r p {
  margin-top: 0;
}

.singlePage__in > .imgBox--l {
  overflow: hidden;
}

.singlePage__in > .imgBox--l img {
  float: left;
  max-width: 400px;
  height: auto;
  margin: 0 40px 20px 0;
}

.singlePage__in > .imgBox--l p {
  margin-top: 0;
}

.singlePage__in > blockquote {
  position: relative;
  padding: 35px 15px 10px 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-style: italic;
  background: #f5f5f5;
  color: #777777;
  border-left: 4px solid #0a4098;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.14);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.14);
}

.singlePage__in > blockquote:before {
  content: "\f10d";
  font-family: "FontAwesome";
  display: inline-block;
  position: absolute;
  top: 10px;
  left: 15px;
  vertical-align: middle;
  color: #0a4098;
  font-size: 28px;
  line-height: 1;
}

.singlePage__in > blockquote p {
  padding: 0;
  margin: 7px 0;
  font-size: 1.6rem;
  line-height: 1.666666;
}

.singlePage__in > blockquote cite {
  display: block;
  text-align: right;
  color: #888888;
  font-size: 1.4rem;
}

.singlePage__in > ul {
  margin: 30px auto 70px;
}

.singlePage__in > ul li {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.35;
  position: relative;
  padding-left: 34px;
}

.singlePage__in > ul li::before {
  content: "";
  width: 12px;
  height: 12px;
  background: #1d51a6;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  top: 4px;
  left: 7px;
}

.singlePage__in > ul li + li {
  margin: 20px 0 0;
}

.singlePage__in > ol {
  counter-reset: counterOl;
  margin: 40px auto 45px;
}

.singlePage__in > ol li {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.35;
  position: relative;
  padding-left: 34px;
}

.singlePage__in > ol li::before {
  content: counter(counterOl) ".";
  counter-increment: counterOl;
  font-weight: bold;
  line-height: 1;
  color: #0a4098;
  display: inline-block;
  position: absolute;
  left: 9px;
  top: 4px;
}

.singlePage__in > ol li + li {
  margin: 20px 0 0;
}

.singlePage .related--sm {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 45px 0;
}

.singlePage .related--sm .related__ttl {
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
  line-height: 1;
  padding: 9px 6px 9px 10px;
  background: #0a4098;
  display: inline-block;
  position: relative;
}

.singlePage .related--sm .related__ttl::before {
  content: "";
  width: 12px;
  height: 100%;
  background: #0a4098;
  display: inline-block;
  position: absolute;
  top: 0;
  right: -6px;
  -webkit-transform: skew(-20deg);
      -ms-transform: skew(-20deg);
          transform: skew(-20deg);
}

.singlePage .related--sm a {
  margin-left: 30px;
  text-decoration: underline;
}

.singlePage .related--sm a:hover {
  text-decoration: none;
}

.singlePage .related--sm p {
  margin: 0;
}

.singlePage .related--pdg {
  padding-bottom:30px;
}

.singlePage .related--md {
  border: 1px solid #4373c2;
  padding: 10px;
  margin: 45px 0 40px;
  position: relative;
}

.singlePage .related--md .related__ttl {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  background: #0a4098;
  padding: 7px 9px;
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
}

.singlePage .related--md .related__ttl::before {
  content: "";
  width: 12px;
  height: 100%;
  background: #0a4098;
  display: inline-block;
  position: absolute;
  top: 0;
  left: -6px;
  -webkit-transform: skew(20deg);
      -ms-transform: skew(20deg);
          transform: skew(20deg);
}

.singlePage .related--md .related__list__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.singlePage .related--md .related__list__item .thumb {
  width: 240px;
}

.singlePage .related--md .related__list__item .thumb img {
  width: 100%;
  height: auto;
}

.singlePage .related--md .related__list__item .related__txt {
  width: -webkit-calc(100% - 252px);
  width: calc(100% - 252px);
  margin-left: 12px;
}

.singlePage .related--md .related__list__item .related__txt a {
  font-size: 2rem;
  line-height: 1.6;
  text-decoration: underline;
}

.singlePage .related--md .related__list__item .data {
  margin: 18px 0;
}

.singlePage .related--md .related__list__item .time {
  margin-left: 0;
}

.singlePage .related--md .related__list__item + .related__list__item {
  margin: 10px 0 0;
}

.singlePage .related--lg {
  padding: 60px 80px 75px;
  margin: 76px auto 0;
  background: #496c81;
}

.singlePage .related--lg .related__ttl {
  font-size: 3.2rem;
  margin: 0 0 65px;
}

.singlePage .related--lg .related__list__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.singlePage .related--lg .related__list__item .thumb {
  width: 330px;
  position: relative;
}

.singlePage .related--lg .related__list__item .thumb img {
  width: 100%;
  height: auto;
}

.singlePage .related--lg .related__list__item .thumb .label {
  position: absolute;
  top: 0;
  left: 0;
}

.singlePage .related--lg .related__list__item .related__txt {
  width: -webkit-calc(100% - 330px);
  width: calc(100% - 330px);
  background: #fff;
  padding: 30px;
}

.singlePage .related--lg .related__list__item .related__txt a {
  font-size: 2rem;
  line-height: 1.5;
}

.singlePage .related--lg .related__list__item .data {
  margin: 0 0 20px;
}

.singlePage .related--lg .related__list__item .time {
  margin-left: 0;
}

.singlePage .related--lg .related__list__item + .related__list__item {
  margin: 28px 0 0;
}

.singlePage .pointBox {
  background: #fff6f6;
  padding: 48px 46px 33px;
  margin: 45px 0 20px;
  position: relative;
}

.singlePage .pointBox__ttl {
  font-size: 2.4rem;
  font-weight: normal;
  line-height: 1;
  color: #e71d0e;
  display: inline-block;
}

.singlePage .pointBox__ttl__sub {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  background: #ed3b3b;
  padding: 7px 9px;
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
}

.singlePage .pointBox__ttl__sub::after {
  content: "";
  width: 12px;
  height: 100%;
  background: #ed3b3b;
  display: inline-block;
  position: absolute;
  top: 0;
  left: -6px;
  -webkit-transform: skew(20deg);
      -ms-transform: skew(20deg);
          transform: skew(20deg);
}

.singlePage .pager {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 50px 0 37px;
}

.singlePage .pager .prev, .singlePage .pager .next {
  width: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.singlePage .pager .prev span, .singlePage .pager .next span {
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
  background: #0a4098;
  width: 100px;
  text-align: center;
  padding: 24px 0;
}

.singlePage .pager .prev a, .singlePage .pager .next a {
  width: -webkit-calc(100% - 100px);
  width: calc(100% - 100px);
  font-size: 1.6rem;
  line-height: 1.625;
  color: #000;
  padding: 9px 22px;
}

.singlePage .pager .prev span::before {
  content: "";
  border-style: solid;
  border-width: 5px 10px 5px 0;
  border-color: transparent #fff transparent transparent;
  display: inline-block;
  vertical-align: middle;
  margin-right: 7px;
}

.singlePage .pager .next {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  border-left: 1px dotted #363333;
}

.singlePage .pager .next span::after {
  content: "";
  border-style: solid;
  border-width: 5px 0 5px 10px;
  border-color: transparent transparent transparent #fff;
  display: inline-block;
  vertical-align: middle;
  margin-left: 7px;
}

.singlePage .fbShareBox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 37px 0 76px;
}

.singlePage .fbShareBox .thumb {
  width: 50%;
}

.singlePage .fbShareBox .text {
  text-align: center;
  width: 50%;
  background: #0d3781;
  padding: 23px 0;
}

.singlePage .fbShareBox .text p {
  font-size: 2.4rem;
  line-height: 1.66666;
  color: #fff;
  margin: 28px 0 0;
}

.singlePage .fbShareBox .fbBtnWrap {
  background: #fff;
  display: inline-block;
  padding: 0 3px;
  margin: 30px 0 0;
}

.singlePage .fbShareBox .fbBtnWrap > div {
  line-height: 1;
}

.outBox {
  width: -webkit-calc(100% + 160px);
  width: calc(100% + 160px);
  position: relative;
  left: -80px;
}

/*おすすめ*/
.recommend {
  background: #eef4f6;
  padding: 65px 80px 60px;
}

.recommend ul li + li {
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid #496c81;
}


.recommend__ttl {
  font-size: 3.2rem;
  font-weight: normal;
  color: #fff;
  background: #0d3781;
  padding: 24px;
  margin: 0 0 33px;
}

.recommend__ttl__sub {
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1;
  margin: 0 0 33px;
}

.recommend__ttl__sub a {
  display: inline-block;
}

.recommend__ttl__sub a:hover {
  text-decoration: underline;
}

.recommend .topParts {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.recommend .topParts .recommend__thumb {
  width: 320px;
  height: auto;
  margin: 0 20px 0 0;
}

.recommend .topParts .recommend__table {
  width: -webkit-calc(100% - 340px);
  width: calc(100% - 340px);
}

.recommend .topParts .recommend__table table {
  margin: 0;
}

.recommend .topParts .recommend__table caption {
  font-size: 1.6rem;
  color: #fff;
  padding: 7px 0;
  background: #0d3781;
}

.recommend .topParts .recommend__table th {
  font-size: 1.3rem;
  font-weight: bold;
  color: #050505;
  text-align: center;
  background: #f5f5f5;
  border: none;
  padding: 7px 5px;
}

.recommend .topParts .recommend__table th + th {
  border-left: 2px solid #dedede;
}

.recommend .topParts .recommend__table td {
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  background: #fff;
  border: none;
  padding: 4px 5px;
}

.recommend .topParts .recommend__table td + td {
  border-left: 2px solid #dedede;
}

.recommend .topParts .recommend__table .basicInfo td {
  color: #e71d0e;
}

.recommend .summary {
  font-size: 1.6rem;
  line-height: 2;
}

.recommend .campaign {
  background: #fff;
  padding: 37px 33px;
  position: relative;
}

.recommend .campaign__ttl {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  background: #ed3b3b;
  padding: 5px 9px;
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
}

.recommend .campaign__ttl::after {
  content: "";
  width: 12px;
  height: 100%;
  background: #ed3b3b;
  display: inline-block;
  position: absolute;
  top: 0;
  left: -6px;
  -webkit-transform: skew(20deg);
  -ms-transform: skew(20deg);
  transform: skew(20deg);
}

.recommend .campaign__ttl__sub {
  font-size: 2.6rem;
  color: #e71d0e;
}

.recommend .campaign p {
  font-size: 1.6rem;
  line-height: 2;
  margin: 20px 0 0;
}

.recommend.rank ul {
  counter-reset: icon-ranking;
}
.recommend.rank ul li .recommend__ttl__sub a {
  padding-left: 70px;
  position: relative;
}
.recommend.rank ul li .recommend__ttl__sub a::before {
  content: counter(icon-ranking);
  counter-increment: icon-ranking;
  text-decoration: none;
  color: #fff;
  background: url(../images/icon/icon_rank.png) no-repeat center center;
  background-size: contain;
  padding: 12px 20px;
  position: absolute;
  top: -12px;
  left: 0;
}
.recommend.rank ul li:nth-child(1) .recommend__ttl__sub a {
  padding-left: 85px;
}
.recommend.rank ul li:nth-child(1) .recommend__ttl__sub a::before {
  content: "";
  background: url(../images/icon/icon_rank01.png) no-repeat center center;
  background-size: contain;
  padding: 35px 36px;
  top: -16px;
}
.recommend.rank ul li:nth-child(2) .recommend__ttl__sub a {
  padding-left: 85px;
}
.recommend.rank ul li:nth-child(2) .recommend__ttl__sub a::before {
  content: "";
  background: url(../images/icon/icon_rank02.png) no-repeat center center;
  background-size: contain;
  padding: 35px 36px;
  top: -16px;
}
.recommend.rank ul li:nth-child(3) .recommend__ttl__sub a {
  padding-left: 85px;
}
.recommend.rank ul li:nth-child(3) .recommend__ttl__sub a::before {
  content: "";
  background: url(../images/icon/icon_rank03.png) no-repeat center center;
  background-size: contain;
  padding: 35px 36px;
  top: -16px;
}

.underSecWrap {
  background: #eef4f6;
  padding: 50px 0 70px;
}

.underSecWrap .titleWrap {
  margin: 0 0 45px;
}

.underSecWrap .column__ttl {
  font-size: 3rem;
  font-weight: bold;
  font-style: italic;
  color: #0d3781;
  position: relative;
}

.underSecWrap .column__ttl::after {
  content: "";
  width: 2em;
  height: 4px;
  display: inline-block;
  background: #dae7ed;
  position: absolute;
  left: 0;
  bottom: -20px;
}

.underSecWrap .articleList--2col .articleCard {
  background: transparent;
  border-bottom: 1px solid #bababa;
  padding-bottom: 12px;
}

.underSecWrap .articleList--2col .articleCard .articleCard__text {
  padding: 0;
}

.article__detail {
  max-width: 1020px;
}

.snsBarWrap {
  width: 60px;
}

.snsBar {
  margin-top: 50px;
}

.snsBar li {
  text-align: center;
}

.snsBar li a {
  font-size: 2rem;
  color: #fff;
  padding: 14px 20px;
  display: block;
}

.snsBar li a img {
  display: inline-block;
  vertical-align: middle;
}

.snsBar li.tw {
  background: #33addc;
}

.snsBar li.fb {
  background: #3d5184;
}

.snsBar li.hateb {
  background: #2785cb;
}

.snsBar li.line {
  background: #67bb49;
}

.snsBar li.rss {
  background: #fd982e;
}

.snsBar li + li {
  border-top: 1px solid #fff;
}

.snsBar li:hover a {
  -webkit-transform: rotateY(360deg);
          transform: rotateY(360deg);
}

/* =================================
  FX会社一覧
================================= */
.clientListWrap {
  margin: 50px 0 60px;
}

.clientList {
  margin: 30px 0 56px;
}

.listCard {
  border: 1px solid #bababa;
  border-top: 4px solid #0d3781;
  background: #fff;
  padding: 40px 60px 60px;
  position: relative;
}

.listCard__ttl {
  font-size: 3.4rem;
  line-height: 1;
  margin: 0 0 30px;
}

.listCard__top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.listCard__top .thumb {
  width: 424px;
  margin: 0 26px 0 0;
}

.listCard__top .thumb img {
  width: 100%;
  height: auto;
}

.listCard__top .table--feature {
  width: -webkit-calc(100% - 432px);
  width: calc(100% - 432px);
  margin: -2px 0 0;
}

.listCard__top .table--feature li {
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.14285;
  width: 112px;
  height: 94px;
  background: #eef4f6;
  display: inline-block;
  vertical-align: middle;
  padding: 57px 0 0;
  margin: 2px 0 0 -3px;
  position: relative;
}

.listCard__top .table--feature li .icon {
  font-size: 2rem;
  color: #0d3781;
  line-height: 1;
  display: inline-block;
  position: absolute;
  top: 26px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.listCard__top .table--feature li .icon.sm {
  font-size: 2.2rem;
}

.listCard__top .table--feature li .icon.md {
  font-size: 2.4rem;
}

.listCard__top .table--feature li .icon.lg {
  font-size: 2.8rem;
}

.listCard .tableWrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 28px 0 23px;
}

.listCard .tableWrap table {
  border-bottom: 2px solid #dedede;
  margin: 0;
}

.listCard .tableWrap caption {
  font-size: 1.8rem;
  color: #fff;
  background: #0d3781;
  padding: 8px 0;
}

.listCard .tableWrap th {
  font-size: 1.4rem;
  font-weight: bold;
  color: #050505;
  text-align: center;
  background: #eef4f6;
  padding: 10px 0;
  border: none;
  border-left: 2px solid #dedede;
}

.listCard .tableWrap th:first-child {
  border: none;
}

.listCard .tableWrap td {
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  background: #fff;
  padding: 12px 0;
  border: none;
  border-left: 2px solid #dedede;
}

.listCard .tableWrap td:first-child {
  border: none;
}

.listCard .tableWrap .table--basicinfo {
  width: 376px;
}

.listCard .tableWrap .table--spread {
  width: -webkit-calc(100% - 376px);
  width: calc(100% - 376px);
  border-left: 2px solid #dedede;
}

.listCard .tableWrap .table--spread caption {
  border-left: 2px solid #fff;
}

.listCard .desc {
  margin: 23px 0;
}

.listCard .campaign {
  background: #fff6f6;
  padding: 40px 46px 35px;
}

.listCard .campaign__ttl {
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1;
  color: #e71d0e;
  margin: 0 0 18px;
}

.listCard .campaign__text {
  margin: 0;
}

.listCard + .listCard {
  margin: 25px 0 0;
}

.listCard .tag {
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
  background: #0a4098;
  padding: 5px 25px;
  display: inline-block;
  position: absolute;
  top: -4px;
  right: -1px;
}

.listCard .tag::before {
  content: "";
  width: 12px;
  height: 100%;
  background: #0a4098;
  display: inline-block;
  position: absolute;
  top: 0;
  left: -6px;
  -webkit-transform: skew(20deg);
  -ms-transform: skew(20deg);
  transform: skew(20deg);
}

/* =================================
  FX会社詳細
================================= */
.clientDetail__ttl {
  font-size: 4rem;
  color: #0d3781;
  font-weight: bold;
  line-height: 1;
  display: inline-block;
  margin: 0 0 42px;
}

.clientDetailNav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 34px;
}

.clientDetailNav li {
  width: 33.333333%;
}

.clientDetailNav li a {
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
  background: #0d3781;
  padding: 18px 0;
  display: block;
  position: relative;
}

.clientDetailNav li a::after {
  content: "";
  border-style: solid;
  border-width: 10px 6px 0 6px;
  border-color: #fff transparent transparent transparent;
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

.clientDetailNav li a:hover {
  background: #5673a7;
}

.clientDetailNav li a:hover::after {
  top: 55%;
}

.clientDetailNav li + li {
  border-left: 1px solid #5673a7;
}

.clientDetail .desc__top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 42px;
}

.clientDetail .desc__top .thumb {
  width: 320px;
  margin: 0 40px 0 0;
}

.clientDetail .desc__top .thumb .caption {
  margin-bottom: 0;
  background: #fff;
}

.clientDetail .desc__top .descTableWrap {
  width: -webkit-calc(100% - 360px);
  width: calc(100% - 360px);
}

.clientDetail .desc__top .descTableWrap .table--feature {
  margin: -2px 0 0;
}

.clientDetail .desc__top .descTableWrap .table--feature li {
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.14285;
  width: 130px;
  height: 108px;
  background: #eef4f6;
  display: inline-block;
  vertical-align: middle;
  padding: 65px 0 0;
  margin: 2px 0 0 -3px;
  position: relative;
}

.clientDetail .desc__top .descTableWrap .table--feature li .icon {
  font-size: 2.3rem;
  color: #0d3781;
  line-height: 1;
  display: inline-block;
  position: absolute;
  top: 26px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.clientDetail .desc__top .descTableWrap .table--feature li .icon.sm {
  font-size: 2.5rem;
}

.clientDetail .desc__top .descTableWrap .table--feature li .icon.md {
  font-size: 2.7rem;
}

.clientDetail .desc__top .descTableWrap .table--feature li .icon.lg {
  font-size: 3.2rem;
}

.clientDetail .desc__top .descTableWrap .descTable__ttl {
  font-size: 2rem;
  font-weight: normal;
  line-height: 30px;
  border-left: 6px solid #0d3781;
  padding-left: 14px;
  margin: 16px 0 9px;
}

.clientDetail .desc__top .descTableWrap .table--basicInfo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #3d5c92;
  background: #fff;
  padding: 15px 20px;
}

.clientDetail .desc__top .descTableWrap .table--basicInfo dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.clientDetail .desc__top .descTableWrap .table--basicInfo dl + dl {
  padding-left: 53px;
}

.clientDetail .desc__top .descTableWrap .table--basicInfo dl + dl::before {
  content: "/";
  font-size: 1.8rem;
  color: #0d3781;
  position: absolute;
  top: 50%;
  left: 25px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.clientDetail .desc__top .descTableWrap .table--basicInfo dl dt {
  font-size: 1.6rem;
  font-weight: bold;
}

.clientDetail .desc__top .descTableWrap .table--basicInfo dl dd {
  font-size: 1.8rem;
  font-weight: bold;
  color: #c41928;
  margin-left: 20px;
}

.clientDetail .desc__top .descTableWrap .table--spread {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.clientDetail .desc__top .descTableWrap .table--spread dl {
  width: 120px;
  height: 120px;
  background: #eef4f6;
  border-radius: 50%;
  text-align: center;
}

.clientDetail .desc__top .descTableWrap .table--spread dl dt {
  font-size: 1.4rem;
  font-weight: bold;
}

.clientDetail .desc__top .descTableWrap .table--spread dl dt::before {
  content: "";
  width: 47px;
  height: 17px;
  display: block;
  margin: 19px auto 10px;
}

.clientDetail .desc__top .descTableWrap .table--spread dl dt.usd::before {
  background: url(/fx/images/icon/icon_usd.png) no-repeat center center;
  background-size: contain;
}

.clientDetail .desc__top .descTableWrap .table--spread dl dt.eur::before {
  background: url(/fx/images/icon/icon_eur.png) no-repeat center center;
  background-size: contain;
}

.clientDetail .desc__top .descTableWrap .table--spread dl dt.nzd::before {
  background: url(/fx/images/icon/icon_nzd.png) no-repeat center center;
  background-size: contain;
}

.clientDetail .desc__top .descTableWrap .table--spread dl dt.gbp::before {
  background: url(/fx/images/icon/icon_gbp.png) no-repeat center center;
  background-size: contain;
}

.clientDetail .desc__top .descTableWrap .table--spread dl dt.nzd::before {
  background: url(/fx/images/icon/icon_nzd.png) no-repeat center center;
  background-size: contain;
}

.clientDetail .desc__top .descTableWrap .table--spread dl dd {
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1.3;
}

.clientDetail .desc__top .descTableWrap .table--spread dl dd span {
  font-size: 1.6rem;
}

.clientDetail .conclusion__table {
  margin: 50px 0 42px;
  border: 4px solid #ed3b3b;
  padding: 23px;
  border-collapse: unset;
  background: #fff6f6;
}

.clientDetail .conclusion dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.clientDetail .conclusion dl + dl {
  margin: 8px 0 0;
}

.clientDetail .conclusion dt {
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  width: 210px;
  padding: 9px 0;
  background: #ed3b3b;
  position: relative;
}

.clientDetail .conclusion dt::before {
  content: "\f00c";
  font-family: "FontAwesome";
  font-size: 1.8rem;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 16px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.clientDetail .conclusion dd {
  font-size: 1.8rem;
  font-weight: bold;
  width: -webkit-calc(100% - 210px);
  width: calc(100% - 210px);
  padding: 9px 20px;
}

.clientDetail .clientRecommend {
  margin: 42px 0 55px;
}

.clientDetail .clientRecommend .recommend__ttl {
  margin: 0 0 5px;
}

.clientDetail .clientRecommend .recommend__list li {
  font-size: 2.2rem;
  border-bottom: 1px dotted #030000;
  padding: 17px 18px;
  position: relative;
}

.clientDetail .clientRecommend .recommend__list li::before {
  content: "\f2be";
  font-family: "FontAwesome";
  font-size: 2.4rem;
  color: #0a4098;
  margin-right: 16px;
}

.clientDetail .campaign {
  background: #eef4f6;
  padding: 46px 40px 40px 50px;
  margin: 55px 0 67px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.clientDetail .campaign__ttl {
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
  background: #0d3781;
  display: inline-block;
  padding: 8px 12px 8px 20px;
  position: absolute;
  top: 0;
  left: 0;
}

.clientDetail .campaign__ttl::before {
  content: "";
  width: 13px;
  height: 100%;
  background: #0d3781;
  display: inline-block;
  position: absolute;
  top: 0;
  right: -6px;
  -webkit-transform: skew(-20deg);
  -ms-transform: skew(-20deg);
  transform: skew(-20deg);
}

.clientDetail .campaign .thumb {
  max-width: 300px;
  height: auto;
}

.clientDetail .campaign .campaign__text {
  margin-right: 36px;
}

.clientDetail .campaign .campaign__text .campaign__ttl__sub {
  font-size: 2.8rem;
}

.clientDetail .campaign .campaign__text p {
  margin: 15px 0 50px;
}

.clientDetail .campaign .btn--orange {
  padding: 33px 0;
}

.spec {
  padding: 50px 0 67px;
  background: #537386;
}

.spec caption {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  margin: 0 0 25px;
}

.spec .table--spec table {
  margin: 30px 0 16px;
}

.spec .table--spec th {
  font-size: 1.6rem;
  font-weight: bold;
  color: #000;
  text-align: center;
  padding: 12px 2px;
  background: #eef4f6;
  border: none;
}

.spec .table--spec th:nth-child(n + 2) {
  border-left: 1px solid #537386;
}

.spec .table--spec td {
  font-size: 1.6rem;
  color: #000;
  text-align: center;
  padding: 12px 2px;
  background: #fff;
  border: none;
}

.spec .table--spec td:nth-child(n + 2) {
  border-left: 1px solid #537386;
}

.spec .table--spec .notes {
  color: #fff;
  line-height: 1;
/*  text-align: right;*/
}

.spec .table--manageInfo table {
  margin: 30px 0 16px;
}

.spec .table--manageInfo tr + tr {
  border-top: 1px solid #537386;
}

.spec .table--manageInfo th[colspan] {
  text-align: center;
}

.spec .table--manageInfo th {
  font-size: 1.6rem;
  font-weight: bold;
  color: #000;
  background: #eef4f6;
  padding: 10px 13px;
  text-align: left;
  border: none;
}

.spec .table--manageInfo td {
  background: #fff;
  padding: 10px 13px;
  text-align: left;
  width: 77%;
  border: none;
}

.spec .table--manageInfo .notes {
  color: #fff;
  line-height: 1;
/*  text-align: right;*/
}

.spec .btnWrap {
  margin: 58px 0 0;
}

.contactForm tr {
  border-top: 1px solid #537386;
}

.contactForm tr:last-child {
  border-bottom: 1px solid #537386;
}

.contactForm th {
  font-size: 1.5rem;
  font-weight: normal;
  color: #000;
  border: none;
  background: #eef4f6;
  vertical-align: top;
  padding: 30px 24px;
  width: 27%;
}

.contactForm td {
  font-size: 1.6rem;
  color: #000;
  border: none;
  padding: 30px 20px 30px 45px;
  background: #fff;
}

.contactForm td p {
  margin: 0;
}

.contactForm td * {
  font-size: 1.6rem;
}

.contactForm td input, .contactForm td textarea {
  background: #f6f9fa;
  border: 1px solid #e1e3e4;
  width: 100%;
  padding: 5px;
}

.contactForm td textarea {
  min-height: 200px;
}

.contactForm .required {
  font-size: 1.3rem;
  font-weight: bold;
  letter-spacing: 0.15em;
  line-height: 1;
  color: #fff;
  background: #0a4098;
  display: inline-block;
  padding: 5px 6px 5px 8px;
  margin-left: 15px;
}

.contactForm .confirmingTxt {
  font-size: 1.4rem;
  text-align: center;
  margin: 37px 0;
}

.contactForm .confirmingTxt a {
  color: #000;
  text-decoration: underline;
}

.contactForm .confirmingTxt a:hover {
  color: #0a4098;
}

.contactForm input[type="submit"] {
  margin: 0 auto;
  padding: 23px 40px;
}

.completedForm .completedMessage {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.06em;
  color: #d33701;
  display: inline-block;
  margin: 24px 0 0;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.completedForm .completedMessage::after {
  content: "";
  width: 100%;
  height: 2px;
  background: #d33701;
  display: inline-block;
}

.completedForm p {
  font-size: 1.5rem;
  text-align: center;
  margin: 40px 0 0;
}

.completedForm table {
  width: initial;
  margin: 40px auto 45px;
}

.completedForm th, .completedForm td {
  width: auto;
}

.completedForm th {
  font-size: 1.6rem;
  font-weight: bold;
  vertical-align: middle;
  padding: 15px 30px;
}

.completedForm td {
  vertical-align: middle;
  padding: 15px 30px;
}

.completedForm td .tel address {
  font-size: 3.4rem;
  font-style: normal;
  line-height: 1;
  color: #000;
}

.completedForm td .tel address::before {
  content: "";
  width: 25px;
  height: 25px;
  background: url(/fx/images/icon/icon_tel.png) no-repeat center center;
  background-size: contain;
  display: inline-block;
  vertical-align: baseline;
  margin-right: 12px;
}

.completedForm td .tel address:hover {
  color: #0a4098;
}

.completedForm td .tel address:hover::before {
  -webkit-animation-duration: .3s;
          animation-duration: .3s;
  -webkit-animation-timing-function: liner;
          animation-timing-function: liner;
  -webkit-animation-name: vibrate;
          animation-name: vibrate;
}

.completedForm td .receptionTime {
  margin: 5px 0 0;
}

.completedForm td .receptionTime dt {
  font-size: 1.3rem;
  font-weight: bold;
  color: #0a4098;
}

.completedForm td .receptionTime dd {
  font-size: 1.3rem;
  margin-left: 10px;
}

.completedForm td .receptionTime dt, .completedForm td .receptionTime dd {
  display: inline-block;
}

/* =================================
  side nav
================================= */
.sideNav {
  /*---------------------------
    サイドナビ共通
  ---------------------------*/
  margin: 52px 0 0;
  /*---------------------------
    検索
  ---------------------------*/
  /*---------------------------
    よく読まれている記事
  ---------------------------*/
  /*---------------------------
    カテゴリー
  ---------------------------*/
  /*---------------------------
    関連サービス
  ---------------------------*/
  /*---------------------------
    事務所詳細
  ---------------------------*/
}

.sideNav__ttl {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  background: #0a4098;
  padding: 8px 14px 8px 26px;
  display: inline-block;
  position: relative;
  top: -12px;
}

.sideNav__ttl::before {
  content: "";
  width: 27px;
  height: 31px;
  background: url(/fx/images/ttl_sideNavL.png) no-repeat center center;
  background-size: contain;
  display: inline-block;
  position: absolute;
  top: -12px;
  left: -13px;
}

.sideNav__ttl::after {
  content: "";
  width: 12px;
  height: 32px;
  background: url(/fx/images/ttl_sideNavR.png) no-repeat center center;
  background-size: contain;
  display: inline-block;
  position: absolute;
  top: 0;
  right: -12px;
}

.sideNav__sec {
  background: #faf9f6;
}

.sideNav__sec + .sideNav__sec {
  margin: 54px 0 0;
}

.sideNav .sideNav__search .sideNav__ttl span {
  position: relative;
}

.sideNav .sideNav__search .sideNav__ttl span::after {
  content: "";
  width: 14px;
  height: 14px;
  background: url(/fx/images/icon/icon_search02.png) no-repeat center center;
  background-size: contain;
  display: inline-block;
  vertical-align: middle;
  margin-left: 6px;
}

.sideNav .searchPrefectures__item {
  padding: 40px 15px 22px;
}

.sideNav .searchPrefectures__block > li + li {
  margin: 20px 0 0;
}

.sideNav .searchPrefectures__block__list li {
  width: -webkit-calc(25% - 3.75px);
  width: calc(25% - 3.75px);
}

.sideNav .searchPrefectures__block__list li:nth-child(4n + 1) {
  margin-left: 0px;
}

.sideNav .popular__list {
  counter-reset: popularItem;
  padding: 0 15px 22px;
}

.sideNav .popular__list li {
  position: relative;
}

.sideNav .popular__list li a {
  font-size: 1.4rem;
  color: #201a0a;
  display: block;
  padding: 15px 6px 15px 50px;
}

.sideNav .popular__list li a:hover {
  background: #d8efa6;
  color: #0a4098;
}

.sideNav .popular__list li::before {
  content: "0" counter(popularItem);
  counter-increment: popularItem;
  font-size: 1.5rem;
  font-weight: bold;
  color: #392301;
  line-height: 1;
  background: #fff;
  border: 1px solid #625c52;
  padding: 8px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.sideNav .popular__list li + li {
  border-top: 1px dashed #201a0a;
}

.sideNav .sideNav__category .category__list {
  padding: 0 18px 22px 15px;
}

.sideNav .sideNav__category .category__list li a {
  font-size: 1.5rem;
  line-height: 1;
  color: #201a0a;
  display: block;
  padding: 20px 0;
  position: relative;
}

.sideNav .sideNav__category .category__list li a:hover {
  background: #d8efa6;
  color: #0a4098;
}

.sideNav .sideNav__category .category__list li a::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 10px;
  border-color: transparent transparent transparent #0a4098;
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 5px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.sideNav .sideNav__category .category__list li + li {
  border-top: 1px dashed #201a0a;
}

.sideNav .sideNav__relation .relationBanner {
  padding: 10px 15px 22px;
  text-align: center;
}

.sideNav .sideNav__client {
  padding: 10px 14px 19px;
}

.sideNav .sideNav__client .clientTtl {
  width: -webkit-calc(100% + 25px);
  width: calc(100% + 25px);
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.66666;
  color: #fff;
  padding: 9px 20px;
  margin-bottom: 20px;
  background: #0a4098;
  position: relative;
  top: 0;
  left: -25px;
}

.sideNav .sideNav__client .clientTtl::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 11px 7px 0;
  border-color: transparent #113216 transparent transparent;
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: -7px;
}

.sideNav .sideNav__client .Thumb {
  display: block;
  margin: 0 auto;
}

.sideNav .sideNav__client .tel {
  border: 1px solid #0a4098;
  border-radius: 2px;
  background: #fff;
  padding: 15px 20px 12px 60px;
  margin: 24px 0 0;
  position: relative;
}

.sideNav .sideNav__client .tel address {
  font-size: 2.5rem;
  font-style: normal;
  color: #000;
}

.sideNav .sideNav__client .tel p {
  font-size: 1.2rem;
  line-height: 1.3;
  margin: 5px 0 0;
}

.sideNav .sideNav__client .tel::before {
  content: "";
  width: 25px;
  height: 25px;
  background: url(/fx/images/icon/icon_tel.png) no-repeat center center;
  background-size: contain;
  display: inline-block;
  vertical-align: baseline;
  position: absolute;
  top: 20px;
  left: 20px;
}

.sideNav .sideNav__client .tel:hover::before {
  -webkit-animation-duration: .3s;
          animation-duration: .3s;
  -webkit-animation-timing-function: liner;
          animation-timing-function: liner;
  -webkit-animation-name: vibrate;
          animation-name: vibrate;
}

.sideNav .sideNav__client .tel:hover address {
  color: #0a4098;
}

.sideNav .sideNav__client .btn--mailForm {
  font-size: 1.6rem;
  line-height: 1;
  text-shadow: 0px 1px 1px rgba(21, 15, 15, 0.21);
  color: #fff;
  padding: 14px 19px;
  display: block;
  background: #86c016;
  border-radius: 2px;
  text-align: center;
  margin: 14px 0 0;
}

.sideNav .sideNav__client .btn--mailForm::before {
  content: "";
  width: 16px;
  height: 13px;
  background: url(/fx/images/icon/icon_mail.png) no-repeat center center;
  background-size: contain;
  display: inline-block;
  margin-right: 17px;
}

.sideNav .sideNav__client .btn--mailForm:hover {
  opacity: .7;
}

@media screen and (min-width: 0) and (max-width: 1024px){
  body{
    font-size: 1.4rem;
  }
}

@media screen{
  [hidden~="screen"]{
    display: inherit;
  }
  [hidden~="screen"]:not(:active):not(:focus):not(:target){
    position: absolute !important;
    clip: rect(0 0 0 0) !important;
  }
}

@media screen and (min-width: 769px){

  /*----------------------------------
    スクロールで画像がふわっと出てくる
    ----------------------------------*/
  .animation--fadeup{
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.7s;
    transition-duration: 0.7s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    opacity: 0;
    -webkit-transform: translateY(70px);
    -ms-transform: translateY(70px);
    transform: translateY(70px);
  }
  .animation--fadeup.active{
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  .animation--fadedown{
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    -webkit-transition-delay: .2s;
    transition-delay: .2s;
    opacity: 0;
    -webkit-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    transform: translateY(-50px);
  }
  .animation--fadedown.active{
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  /*----------------------------------
    ズームする
    ----------------------------------*/
  .animation--zoom{
    overflow: hidden;
  }
  .animation--zoom img{
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
  }

  /*----------------------------------
    右に動く矢印
    ----------------------------------*/
  @-webkit-keyframes slideRight{
    0%{
      right: 10px;
      opacity: 1;
    }
    100%{
      right: 0;
      opacity: 0;
    }
  }
  @keyframes slideRight{
    0%{
      right: 10px;
      opacity: 1;
    }
    100%{
      right: 0;
      opacity: 0;
    }
  }
  @-webkit-keyframes slideRight02{
    0%{
      right: 18px;
      opacity: 1;
    }
    100%{
      right: 0;
      opacity: 0;
    }
  }
  @keyframes slideRight02{
    0%{
      right: 18px;
      opacity: 1;
    }
    100%{
      right: 0;
      opacity: 0;
    }
  }
}

@media screen and (min-width: 1024px){

  /* =================================
    hover
  ================================= */
  a{
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  a:hover{
    color: #0a4098;
  }
  .widelink{
    cursor: pointer;
  }
  .widelink .widelink__cover{
    position: relative;
    overflow: hidden;
  }
  .widelink .widelink__cover::before{
    content: "詳しく見る";
    position: absolute;
    top: 45%;
    left: 50%;
    z-index: 6;
    opacity: 0;
    font-size: 1.4rem;
    color: white;
    text-align: center;
    line-height: 1.3;
    -webkit-transition-property: opacity,top;
    transition-property: opacity,top;
    -webkit-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .widelink .widelink__cover::after{
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 5;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .widelink:hover a{
    text-decoration: underline;
    color: #0a4098;
  }
  .widelink:hover .widelink__cover::before{
    opacity: 1;
    top: 50%;
  }
  .widelink:hover .widelink__cover::after{
    opacity: 1;
  }
  .hoverBg .widelink__cover::before{
    content: none;
  }
  .hoverBg .widelink__cover::after{
    content: none;
  }
  .hoverBg:hover{
    background: #e9f1f5;
  }
  .footer .fNav__top .fNav__list__item a, .footer .fNav__bottom .fNav__list a{
    position: relative;
  }
  .footer .fNav__top .fNav__list__item a::after, .footer .fNav__bottom .fNav__list a::after{
    content: "";
    width: 0;
    height: 1px;
    background: #fff;
    display: inline-block;
    position: absolute;
    bottom: -3px;
    left: 0;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .footer .fNav__top .fNav__list__item a:hover::after, .footer .fNav__bottom .fNav__list a:hover::after{
    width: 100%;
  }
}

@media screen and (max-width: 1024px){

  /* =================================
    header
  ================================= */
  .ttl--site{
    width: -webkit-calc(100% - 135px);
    width: calc(100% - 135px);
  }
  .ttl--site a{
    padding: 4px 13px 3px 3px;
  }
  .ttl--site a img{
    height: 16px;
  }
  .ttl--site a > span{
    display: none;
  }
  .header{
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
  }
  .header__top{
    padding: 0;
    background: #fff;
  }
  .header__top__parts{
    position: relative;
    right: 45px;
  }
  .header__top__parts .link{
    font-size: 1rem;
    color: #333;
    border: none;
    border-radius: 0;
    text-align: center;
    padding: 9px 7px 1px;
    border-left: 1px solid #b5b5b5;
  }
  .header__top__parts .link:before{
    content: "\f02d";
    font-family: "FontAwesome";
    font-size: 1.4rem;
    font-weight: normal;
    color: #1f4a96;
    display: block;
  }
  .headerNav__cover{
    height: 0;
    width: 100vw;
    background: rgba(8, 8, 8, 0.6);
    position: absolute;
    top: 45px;
    display: none;
    z-index: -1;
  }
  .headerNav__cover.show{
    display: block;
    -webkit-animation: show .2s linear 0s;
    animation: show .2s linear 0s;
  }
  .headerNav__cover.hide{
    display: none;
    -webkit-animation: hide .2s linear 0s;
    animation: hide .2s linear 0s;
  }
  .gNav{
    display: none;
    max-height: 100vh;
    overflow-y: auto;
    position: relative;
    top: 0;
    margin: 0;
    padding: 35px 25px 28px;
    background: url(/fx/images/bg_gNab.jpg) no-repeat center top;
    background-size: cover;
  }
  .gNavForm{
    background: transparent;
    border: none;
    border-radius: 0;
    margin-left: 0;
  }
  .gNavForm .searchBtn{
    font-size: 1rem;
    font-weight: bold;
    color: #333;
    text-align: center;
    border-left: 1px solid #b5b5b5;
    padding: 9px 12px 1px;
  }
  .gNavForm .searchBtn::before{
    content: "\f002";
    font-family: "FontAwesome";
    font-size: 1.4rem;
    font-weight: normal;
    color: #1f4a96;
    display: block;
  }
  .gNavForm form{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
    opacity: 0;
    visibility: hidden;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
  }
  .gNavForm form.active{
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    visibility: visible;
  }
  .gNavForm form.active .gNavForm__cover{
    position: fixed;
    top: 40px;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(13, 55, 129, 0.9);
    z-index: 9999;
  }
  .gNavForm dl{
    background: #fff;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 4px 0;
  }
  .gNavForm dt{
    position: relative;
  }
  .gNavForm input{
    font-size: 1.6rem;
    padding: 2px 5px;
    border: 1px solid #d4d4d4;
  }
  .gNavForm input::-webkit-input-placeholder{
    font-size: 1.2rem;
  }
  .gNavForm input:-ms-input-placeholder{
    font-size: 1.2rem;
  }
  .gNavForm input::placeholder{
    font-size: 1.2rem;
  }
  .gNavForm button{
    font-size: 1.4rem;
    padding: 7px 7px 7px 16px;
  }
  .gNavForm .search--closeBtn{
    font-size: 1.4rem;
    color: #a3a3a3;
    position: absolute;
    top: 14px;
    left: 15px;
  }
  .gNav .gNav__list{
    display: block;
  }
  .gNav .gNav__list__item{
    width: 100%;
    margin-bottom: 11px;
  }
  .gNav .gNav__list__item a{
    font-size: 1.4rem;
    padding: 20px 0;
    background: #0d3781;
  }
  .gNav .gNav__list__item a span{
    position: relative;
  }
  .gNav .gNav__list__item a span::before{
    font-size: 1.4rem;
    margin-right: 6px;
  }
  .gNav .gNav__list__item a span::after{
    content: none;
  }

  /*バーガーボタン設定*/
  .burger{
    width: 45px;
    height: 40px;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    text-align: center;
    cursor: pointer;
    z-index: 205;
    border-left: 1px solid #b5b5b5;
  }
  .burger::after{
    content: "メニュー";
    font-size: 1rem;
    font-weight: bold;
    width: 100%;
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .burger.is-open::after{
    content: "閉じる";
  }
  .burger span{
    width: 12px;
    height: 2px;
    display: block;
    background: #1e4996;
    position: absolute;
    top: 14px;
    right: 0;
    left: 0;
    margin: 0 auto;
    -webkit-transition: width 0.2s, right 0.2s, left 0.2s;
    transition: width 0.2s, right 0.2s, left 0.2s;
  }
  .burger .burger--top{
    -webkit-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    transform: translateY(-4px);
  }
  .burger .burger--middle{
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
    position: relative;
    background: none;
  }
  .burger .burger--middle:before{
    content: "";
    display: block;
    position: absolute;
    width: 12px;
    height: 2px;
    background: #1e4996;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    border-radius: 50px;
  }
  .burger .burger--middle:after{
    content: "";
    display: block;
    position: absolute;
    width: 12px;
    height: 2px;
    background: #1e4996;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    border-radius: 50px;
  }
  .burger .burger--bottom{
    -webkit-transform: translateY(4px);
    -ms-transform: translateY(4px);
    transform: translateY(4px);
  }

  /*クリック後、バツボタンになる*/
  .burger.is-open .burger--top{
    left: 100%;
    width: 0px;
  }
  .burger.is-open .burger--middle:before{
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  .burger.is-open .burger--middle:after{
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .burger.is-open .burger--bottom{
    right: 100%;
    width: 0px;
  }
  .burgerBtn--close{
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 1;
    color: #333;
    background: #fff;
    text-align: center;
    width: 46%;
    margin: 15px auto 0;
    padding: 13px 0 17px;
    position: relative;
  }
  .burgerBtn--close::before{
    content: "\f00d";
    font-family: "FontAwesome";
    font-size: 1.7rem;
    color: #1e4996;
    margin-right: 7px;
  }

  /*=================================
    footer
  =================================*/
  .footer .fNav__top{
    display: block;
    padding: 40px 26px 27px 36px;
    border-bottom: none;
  }
  .footer .fNav__top .fNav__list{
    display: block;
  }
  .footer .fNav__top .fNav__list .fNav__ttl{
    font-size: 1.5rem;
    padding-bottom: 6px;
    margin: 0 0 19px;
  }
  .footer .fNav__top .fNav__list__item a{
    font-size: 1.3rem;
    position: relative;
  }
  .footer .fNav__top .fNav__list__item a::before{
    content: "";
    border-style: solid;
    border-width: 4.5px 0 4.5px 9px;
    border-color: transparent transparent transparent #fff;
    display: inline-block;
    margin-right: 7px;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .footer .fNav__top .fNav__list > li + li{
    margin: 38px 0 0;
  }
  .footer .fNav__top .fNav__list > li li + li{
    margin: 13px 0 0;
  }
  .footer .fNav__top .sns{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 42px 0 0;
  }
  .footer .fNav__top .sns li a{
    font-size: 1.5rem;
  }
  .footer .fNav__top .sns li + li{
    margin-left: 13px;
  }
  .footer .fNav__bottom{
    display: block;
    padding: 0 0 95px;
  }
  .footer .fNav__bottom .fNav__list{
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .footer .fNav__bottom .fNav__list a{
    font-size: 1rem;
  }
  .footer .fNav__bottom .fNav__list li + li{
    margin-left: 21px;
  }
  .footer .copy{
    font-size: .9rem;
    display: block;
    text-align: center;
    margin: 28px 0 0;
    padding-right: 0 !important;
  }
  .pageTop{
    right: 5px !important;
    bottom: 90px;
  }
  .pageTop .btn--pageTop{
    padding: 22px;
    opacity: .8;
  }
  .pageTop .btn--pageTop::before{
    border-width: 0 5.5px 9px 5.5px;
  }
  .mainWrap{
    margin-top: 40px;
  }

  /* =================================
    toppage
  ================================= */

  /*mv*/
  .mv{
    background: #dbeff8;
    padding: 10px 0 40px;
  }
  .mv .sliderCard__ttl{
    font-size: 1.4rem;
    line-height: 1.5833333;
    margin: 2px 0 0;
  }
  .mv .sliderCard__text{
    margin: 7px 0 0;
  }
  .mv .sliderCard__text time{
    font-size: 1.2rem;
  }
  .mv .sliderCard__text > span{
    font-size: 1.2rem;
    margin-left: 12px;
  }
  .mv .sliderCard__text > span span{
    font-size: 1rem;
  }
  .topSecWrap.reco{
    background: url(/fx/images/bg_geometry_l.png) no-repeat -155px 70px, url(/fx/images/bg_geometry_r.png) no-repeat right -140px top 70px, #fff;
    background-size: contain;
  }
  .topSecWrap.reco .reco__ttl{
    top: 0;
    margin: 0 0 35px;
  }
  .topSecWrap.reco .reco__ttlSub{
    font-size: 1.2rem;
    line-height: 1.75;
    margin: 16px 0 28px;
  }
  .topSecWrap.reco .reco__ttlSub span{
    display: block;
  }
  .topSecWrap.reco .recoList{
    margin: 28px auto 0;
    padding: 0 38px;
  }
  .topSecWrap.reco .recoList li{
    width: -webkit-calc(50% - 5px);
    width: calc(50% - 5px);
    height: 110px;
    margin: 0 0 10px 0;
  }
  .topSecWrap.reco .recoList li a{
    font-size: 1.2rem;
    padding: 0;
    bottom: 23px;
    width: 80%;
  }
  .topSecWrap.reco .recoList li a span::before {
    content: none;
  }
  .topSecWrap.reco .recoList li a::after{
    content: none;
  }
  .topSecWrap.reco .recoList li:nth-child(3n + 1){
    margin-left: 0;
  }
  .topSecWrap.reco .recoList li:nth-child(2n){
    margin-left: 10px;
  }
  .topSecWrap.reco .recoList li:nth-child(1) span::after{
    width: 19px;
    height: 25px;
    top: -28px;
  }
  .topSecWrap.reco .recoList li:nth-child(2) span::after{
    font-size: 2.5rem;
    top: -28px;
  }
  .topSecWrap.reco .recoList li:nth-child(3) span::after{
    font-size: 2.5rem;
    top: -20px;
  }
  .topSecWrap.reco .recoList li:nth-child(4) span::after{
    font-size: 2.5rem;
    top: -20px;
  }
  .topSecWrap.reco .recoList li:nth-child(5) span::after{
    font-size: 2.5rem;
    top: -20px;
  }
  .topSecWrap.reco .recoList li:nth-child(6) span::after{
    font-size: 2.5rem;
    top: -20px;
  }
  .topSecWrap.reco .recoList li::before{
    content: none;
  }
  .topSecWrap.brand{
    background: url(/fx/images/top_brandBg.jpg) no-repeat center bottom #eef4f6;
    background-size: auto 100%;
    padding: 38px 0 40px;
  }
  .topSecWrap.brand .brand__ttl{
    font-size: 2.3rem;
    background: none;
    padding: 0;
    text-align: center;
  }
  .topSecWrap.brand .brand__ttl span{
    font-size: 1.2rem;
    margin-left: 0;
  }
  .topSecWrap.brand .btn--base{
    font-size: 1.5rem;
    width: 65%;
  }
  .topSecWrap .brandList{
    margin: 25px auto 30px;
    padding: 0 38px;
  }
  .topSecWrap .brandList__item{
    width: -webkit-calc(50% - 5px);
    width: calc(50% - 5px);
    margin: 0;
    padding: 23px 5px 13px;
  }
  .topSecWrap .brandList__item:nth-child(5n + 1){
    margin-left: 0;
  }
  .topSecWrap .brandList__item:nth-child(2n){
    margin-left: 10px;
  }
  .topSecWrap .brandList__item:nth-child(n + 3){
    margin-top: 10px;
  }
  .topSecWrap .brandList__item a{
    font-size: 1.1rem;
    color: #0a4098;
    display: inline-block;
    margin-top: 8px;
  }
  .topSecWrap .brandList__item a::before{
    border-width: 4px 0 4px 8px;
    margin-right: 3px;
  }
  .topSecWrap.pickup{
    padding: 24px 38px 46px;
  }
  .topSecWrap.pickup .pickup__box{
    display: block;
  }
  .topSecWrap.pickup .pickup__box > *{
    width: 100%;
  }
  .topSecWrap.pickup .pickup__box .articleCard{
    padding: 10px 0;
    border-bottom: 1px solid #d9d9d9;
  }
  .topSecWrap.pickup .newpost .titleWrap{
    background: none;
    margin: 0 0 30px;
  }
  .topSecWrap.pickup .newpost .newpost__ttl{
    font-size: 2.5rem;
  }
  .topSecWrap.pickup .newpost .newpost__ttl::after{
    width: 2em;
    height: 3.5px;
  }
  .topSecWrap.pickup .popular{
    margin: 33px 0 0;
  }
  .topSecWrap.pickup .popular .titleWrap{
    background: none;
    margin: 0 0 30px;
  }
  .topSecWrap.pickup .popular .popular__ttl{
    font-size: 2.5rem;
  }
  .topSecWrap.pickup .popular .popular__ttl::after{
    width: 2em;
    height: 3.5px;
  }
  .topSecWrap.column{
    padding: 31px 0 35px;
  }
  .topSecWrap.column .titleWrap{
    margin: 0 0 15px;
  }
  .topSecWrap.column .column__ttl{
    font-size: 1.6rem;
  }
  .topSecWrap.singlePage {
    margin: 0 auto 46px;
  }
  .column__2col{
    display: block;
  }
  .column__2col .columnBox{
    width: 100%;
    margin: 23px 0 0;
    padding: 0 38px;
  }
  .column__2col .articleCard{
    margin: 11px 0 0;
  }
  .column__2col + .column__2col{
    margin: 0;
  }
  .articleCard__text{
    padding: 10px;
  }

  /* =================================
    article list
  ================================= */

  /*tab*/
  .ui-tabs .ui-tabs-panel{
    padding: 30px 0 0;
  }

  /*tabs Num*/
  #listNum.ui-tabs .ui-tabs-nav li a{
    font-size: 1.7rem;
  }
  .pageSummary{
    line-height: 1.6;
    margin: 25px 0 35px;
  }
  .articleList{
    margin: 26px 0 38px;
  }
  .articleList li{
    display: block;
  }
  .articleList li .thumb{
    width: 100%;
  }
  .articleList li + li{
    margin: 15px 0 0;
  }
  .articleList__item{
    width: 100%;
    padding: 10px 15px;
    background: #fff;
  }
  .articleList__item .articleList__ttl a{
    font-size: 1.7rem;
  }
  .articleList__item .articleList__text{
    font-size: 1.4rem;
    margin: 8px 0 0;
  }
  .pagenation{
    display: block;
    text-align: center;
  }
  .pagenation .pager{
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .pagenation .pager li{
    font-size: 1.7rem;
  }
  .pagenation .pager li a{
    padding: 10px 14px;
  }
  .pagenation .pager li span{
    padding: 10px 14px;
  }
  .pagenation .listCount{
    font-size: 1.4rem;
    margin: 5px 0 0;
  }

  /* =================================
    singlePage
  ================================= */
  .singlePage{
    width: 100%;
    border: none;
    margin: 0 0 40px;
  }
  .singlePage::before{
    width: 100%;
    height: 3px;
    margin-left: 0;
  }
  .singlePage .data{
    margin: 15px 0;
  }
  .singlePage .data .time{
    margin-left: 12px;
  }
  .singlePage .data .view{
    margin-left: 8px;
  }
  .singlePage .articleMv{
    width: 100%;
    margin: 15px auto 2px;
  }
  .singlePage .tocBox{
    margin: 30px 0 35px;
  }
  .singlePage .tocBox__ttl{
    font-size: 1.2rem;
    padding: 5px 8px 5px 10px;
  }
  .singlePage .tocBox__ttl::before{
    width: 10px;
    right: -4px;
  }
  .singlePage .tocBox .tocList{
    padding: 15px 15px 20px;
  }
  .singlePage .tocBox .tocList__item{
    padding: 0 0 0 30px;
  }
  .singlePage .tocBox .tocList__item a{
    font-size: 1.4rem;
  }
  .singlePage .tocBox .tocList__item + .tocList__item{
    margin: 10px 0 0;
  }
  .singlePage .tocBox .tocList__item::before{
    font-size: 1.5rem;
    font-weight: bold;
  }
  .singlePage__in{
    padding: 0 15px 0;
  }
  .singlePage__in > h1{
    font-size: 2.4rem;
    margin: 30px 0 15px;
  }
  .singlePage__in > h2{
    font-size: 2.3rem;
    line-height: 1.35;
    padding: 11px 15px;
    margin: 30px 0 25px;
  }
  .singlePage__in > h3{
    font-size: 2rem;
    line-height: 1.2;
    border-left: 4px solid #0d3781;
    padding: 5px 10px 10px;
    margin: 40px 0 25px;
  }
  .singlePage__in > h4{
    font-size: 1.8rem;
    line-height: 1.4;
    margin: 20px 0 25px;
    padding-bottom: 8px;
    border-bottom: 2px solid #969696;
  }
  .singlePage__in > h4::before{
    width: 100px;
    height: 2px;
  }
  .singlePage__in > img{
    display: block;
    margin: 20px auto;
  }
  .singlePage__in > .imgBox--r img, .singlePage__in > .imgBox--l img{
    float: none;
    max-width: 100%;
    margin: 0;
  }
  .singlePage__in > .imgBox--r p, .singlePage__in > .imgBox--l p{
    margin-top: 18px;
  }
  .singlePage__in > blockquote{
    padding: 20px 15px 5px 15px;
    border-left: 2px solid #0a4098;
  }
  .singlePage__in > blockquote:before{
    top: 5px;
    font-size: 20px;
  }
  .singlePage__in > blockquote p{
    padding: 0;
    margin: 8px 0;
    font-size: 1.4rem;
  }
  .singlePage__in > blockquote cite{
    font-size: 1.2rem;
  }
  .singlePage__in > ul{
    margin: 18px auto 35px;
  }
  .singlePage__in > ul li{
    font-size: 1.5rem;
    line-height: 1.5;
    padding-left: 30px;
  }
  .singlePage__in > ul li::before{
    width: 10px;
    height: 10px;
    top: 6px;
    left: 10px;
  }
  .singlePage__in > ul li + li{
    margin: 18px 0 0;
  }
  .singlePage__in > ol{
    margin: 18px auto 35px;
  }
  .singlePage__in > ol li{
    font-size: 1.5rem;
    line-height: 1.5;
    padding-left: 30px;
  }
  .singlePage__in > ol li::before{
    font-size: 1.6rem;
  }
  .singlePage__in > ol li + li{
    margin: 18px 0 0;
  }
  .singlePage__in > table{
    overflow-x: auto;
    white-space: nowrap;
    display: inline-block;
    margin: 40px 0 25px;
    border: 1px solid #dde3e4;
  }
  .singlePage__in > table tr + tr{
    border-top: 1px solid #fff;
  }
  .singlePage__in > table th{
    font-size: 1.4rem;
    min-width: initial;
    border: none;
    padding: 10px 8px;
  }
  .singlePage__in > table td{
    border: none;
    padding: 10px 8px;
  }
  .singlePage .related--sm{
    display: block;
    margin: 35px 0;
  }
  .singlePage .related--sm .related__ttl{
    font-size: 1.2rem;
    padding: 5px 5px 5px 8px;
    margin: 0 0 8px;
  }
  .singlePage .related--sm .related__ttl::before{
    width: 10px;
    right: -4px;
  }
  .singlePage .related--sm a{
    display: block;
    margin-left: 0;
  }
  .singlePage .related--md{
    padding: 33px 8px 5px;
    margin: 25px 0 20px;
  }
  .singlePage .related--md .related__ttl{
    font-size: 1.2rem;
    padding: 5px 5px 5px 9px;
  }
  .singlePage .related--md .related__ttl::before{
    content: "";
    width: 8px;
    left: -4px;
  }
  .singlePage .related--md .related__list__item .thumb{
    width: 120px;
  }
  .singlePage .related--md .related__list__item .related__txt{
    width: -webkit-calc(100% - 120px);
    width: calc(100% - 120px);
    margin-left: 0;
    padding: 0 10px;
  }
  .singlePage .related--md .related__list__item .related__txt a{
    font-size: 1.4rem;
    line-height: 1.5;
  }
  .singlePage .related--md .related__list__item .data{
    margin: 0 0 8px;
  }
  .singlePage .related--md .related__list__item .time{
    margin-left: 0;
  }
  .singlePage .related--md .related__list__item + .related__list__item{
    margin: 10px 0 0;
  }
  .singlePage .related--lg{
    padding: 30px 15px 36px;
    margin: 38px auto 0;
  }
  .singlePage .related--lg .related__ttl{
    font-size: 2.6rem;
    margin: 0 0 32px;
  }
  .singlePage .related--lg .related__list__item{
    display: block;
  }
  .singlePage .related--lg .related__list__item .thumb{
    width: 100%;
  }
  .singlePage .related--lg .related__list__item .related__txt{
    width: 100%;
    padding: 12px;
  }
  .singlePage .related--lg .related__list__item .related__txt a{
    font-size: 1.6rem;
    line-height: 1.5;
  }
  .singlePage .related--lg .related__list__item .data{
    margin: 0 0 10px;
  }
  .singlePage .related--lg .related__list__item + .related__list__item{
    margin: 20px 0 0;
  }
  .singlePage .pointBox{
    padding: 35px 15px 15px;
    margin: 30px 0 20px;
  }
  .singlePage .pointBox__ttl{
    font-size: 2rem;
    line-height: 1.2;
  }
  .singlePage .pointBox__ttl__sub{
    font-size: 1.2rem;
    padding: 5px 5px 5px 9px;
  }
  .singlePage .pointBox__ttl__sub::after{
    width: 8px;
    left: -4px;
  }
  .singlePage .pointBox p{
    margin: 15px 0 0;
  }
  .singlePage .pager{
    margin: 40px 0 30px;
    border-bottom: 1px dotted #363333;
  }
  .singlePage .pager .prev, .singlePage .pager .next{
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .singlePage .pager .prev span, .singlePage .pager .next span{
    font-size: 1.2rem;
    width: 100%;
    padding: 18px 0;
    display: block;
  }
  .singlePage .pager .prev a, .singlePage .pager .next a{
    width: 100%;
    font-size: 1.4rem;
    line-height: 1.5;
    padding: 10px;
    display: block;
  }
  .singlePage .pager .prev span::before{
    border-width: 4px 8px 4px 0;
    margin-right: 5px;
  }
  .singlePage .pager .next span::after{
    border-width: 4px 0 4px 8px;
    margin-left: 5px;
  }
  .singlePage .fbShareBox{
    display: block;
    margin: 30px 0 40px;
  }
  .singlePage .fbShareBox .thumb{
    display: none;
  }
  .singlePage .fbShareBox .text{
    width: 100%;
    padding: 18px 0 20px;
  }
  .singlePage .fbShareBox .text p{
    font-size: 1.8rem;
    line-height: 1.3;
    margin: 18px 0 0;
  }
  .singlePage .fbShareBox .fbBtnWrap{
    padding: 2px 3px;
    margin: 20px 0 0;
  }
  .outBox{
    width: -webkit-calc(100% + 30px);
    width: calc(100% + 30px);
    left: -15px;
  }

  /*おすすめ*/
  .recommend{
    padding: 35px 15px 30px;
  }
  .recommend ul li + li {
    margin-top: 30px;
    padding-top: 30px;
  }
  .recommend__ttl{
    font-size: 2.3rem;
    padding: 11px 15px;
    margin: 0 0 30px;
  }
  .recommend__ttl__sub{
    font-size: 2rem;
    margin: 0 0 23px;
  }
  .recommend .topParts{
    display: block;
  }
  .recommend .topParts .recommend__thumb{
    width: 100%;
    margin: 0 auto;
    display: block;
    text-align: center;
  }
  .recommend .topParts .recommend__table{
    width: 100%;
    margin: 20px 0 0;
  }
  .recommend .topParts .recommend__table table{
    width: 100%;
  }
  .recommend .topParts .recommend__table caption{
    font-size: 1.5rem;
    padding: 5px 0;
  }
  .recommend .topParts .recommend__table th{
    font-size: 1.2rem;
    padding: 5px 1px;
  }
  .recommend .topParts .recommend__table th + th{
    border-left: 1px solid #dedede;
  }
  .recommend .topParts .recommend__table td{
    font-size: 1.3rem;
    padding: 4px 1px;
  }
  .recommend .topParts .recommend__table td + td{
    border-left: 1px solid #dedede;
  }
  .recommend .summary{
    font-size: 1.4rem;
  }
  .recommend .campaign{
    padding: 33px 15px 15px;
  }
  .recommend .campaign__ttl{
    font-size: 1.2rem;
    padding: 5px 5px 5px 9px;
  }
  .recommend .campaign__ttl::after{
    width: 8px;
    left: -4px;
  }
  .recommend .campaign__ttl__sub{
    font-size: 2rem;
  }
  .recommend .campaign p{
    font-size: 1.5rem;
    line-height: 1.8;
    margin: 10px 0 0;
  }
  .recommend.rank ul li .recommend__ttl__sub a {
    padding-left: 50px;
  }
  .recommend.rank ul li .recommend__ttl__sub a::before {
    padding: 10px 15px;
    top: -10px;
  }
  .recommend.rank ul li:nth-child(1) .recommend__ttl__sub a {
    padding-left: 55px;
  }
  .recommend.rank ul li:nth-child(1) .recommend__ttl__sub a::before {
    padding: 24px 24px;
    top: -14px;
  }
  .recommend.rank ul li:nth-child(2) .recommend__ttl__sub a {
    padding-left: 55px;
  }
  .recommend.rank ul li:nth-child(2) .recommend__ttl__sub a::before {
    padding: 24px 24px;
    top: -14px;
  }
  .recommend.rank ul li:nth-child(3) .recommend__ttl__sub a {
    padding-left: 55px;
  }
  .recommend.rank ul li:nth-child(3) .recommend__ttl__sub a::before {
    padding: 24px 24px;
    top: -14px;
  }
  .underSecWrap{
    padding: 25px 0 35px;
  }
  .underSecWrap .titleWrap{
    margin: 0 0 40px;
  }
  .underSecWrap .column__ttl{
    font-size: 2.5rem;
  }
  .underSecWrap .column__ttl::after{
    height: 3.5px;
  }
  .underSecWrap .articleList--2col .articleCard{
    padding-bottom: 10px;
  }
  .underSecWrap .articleList--2col .articleCard .articleCard__text{
    padding: 0 5px 0px 10px;
  }
  .underSecWrap .column__2col .columnBox{
    padding: 0 15px;
  }
  .snsBarWrap{
    width: 100%;
    padding: 50px 15px 20px;
  }
  .snsBar{
    margin-top: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .snsBar li{
    width: 20%;
  }
  .snsBar li a{
    font-size: 1.5rem;
    padding: 5px 0;
  }
  .snsBar li + li{
    border-top: none;
  }

  /* =================================
    FX会社一覧
  ================================= */
  .clientListWrap{
    margin: 35px 0 40px;
  }
  .clientList{
    margin: 26px 0 38px;
  }
  .listCard{
    border-top: 3px solid #0d3781;
    padding: 40px 15px 15px;
  }
  .listCard__ttl{
    font-size: 2.4rem;
    margin: 0 0 20px;
  }
  .listCard__top{
    display: block;
  }
  .listCard__top .thumb{
    width: 100%;
    margin: 0 0 20px;
    display: block;
  }
  .listCard__top .table--feature{
    width: 100%;
    margin: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .listCard__top .table--feature li{
    font-size: 1.2rem;
    width: 33.33333%;
    height: 70px;
    padding: 38px 0 0;
    margin: 0;
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
  }
  .listCard__top .table--feature li .icon{
    font-size: 1.8rem;
    top: 13px;
  }
  .listCard__top .table--feature li .icon.sm{
    font-size: 2rem;
  }
  .listCard__top .table--feature li .icon.md{
    font-size: 2.2rem;
  }
  .listCard__top .table--feature li .icon.lg{
    font-size: 2.6rem;
  }
  .listCard__top .table--feature li:nth-child(3n+1){
    border-left: none;
  }
  .listCard .tableWrap{
    display: block;
    margin: 25px 0 20px;
  }
  .listCard .tableWrap table{
    border-bottom: 1px solid #dedede;
  }
  .listCard .tableWrap caption{
    font-size: 1.6rem;
    padding: 5px 0;
  }
  .listCard .tableWrap th{
    font-size: 1.2rem;
    padding: 5px 1px;
    border-left: 1px solid #dedede;
  }
  .listCard .tableWrap td{
    font-size: 1.3rem;
    padding: 4px 1px;
    border-left: 1px solid #dedede;
  }
  .listCard .tableWrap .table--basicinfo{
    width: 100%;
    border: 1px solid #dedede;
  }
  .listCard .tableWrap .table--spread{
    width: 100%;
    border: 1px solid #dedede;
  }
  .listCard .tableWrap .table--spread caption{
    border-left: none;
  }
  .listCard .desc{
    margin: 18px 0;
  }
  .listCard .campaign{
    padding: 20px 20px;
  }
  .listCard .campaign__ttl{
    font-size: 2rem;
    line-height: 1.2;
    margin: 0 0 15px;
  }
  .listCard + .listCard{
    margin: 20px 0 0;
  }
  .listCard .tag{
    font-size: 1.3rem;
    padding: 4px 20px;
    top: -3px;
  }
  .listCard .tag::before{
    width: 10px;
    left: -6px;
  }

  /* =================================
    FX会社詳細
  ================================= */
  .clientDetail{
    background: #fff;
  }
  .clientDetail__ttl{
    font-size: 3rem;
    margin: 42px 0 30px;
    text-shadow: 0px 0px 5px rgba(231, 235, 243, 0.9), 0px 0px 5px rgba(231, 235, 243, 0.9);
  }
  .clientDetailNav{
    margin: 0 0 20px;
  }
  .clientDetailNav li a{
    font-size: 1.3rem;
    padding: 7px 10px 7px 0;
  }
  .clientDetailNav li a::after{
    border-width: 8px 4px 0 4px;
    right: 10px;
  }
  .clientDetail .desc__top{
    display: block;
    margin: 0 0 20px;
  }
  .clientDetail .desc__top .thumb{
    width: 100%;
    margin: 0 0 10px;
  }
  .clientDetail .desc__top .thumb img{
    display: block;
    margin: 0 auto;
  }
  .clientDetail .desc__top .descTableWrap{
    width: 100%;
  }
  .clientDetail .desc__top .descTableWrap .table--feature{
    width: 100%;
    margin: 0 0 25px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .clientDetail .desc__top .descTableWrap .table--feature li{
    font-size: 1.2rem;
    width: 33.333333%;
    height: 70px;
    padding: 38px 0 0;
    margin: 0;
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
  }
  .clientDetail .desc__top .descTableWrap .table--feature li:nth-child(3n+1){
    border-left: none;
  }
  .clientDetail .desc__top .descTableWrap .table--feature li .icon{
    font-size: 1.8rem;
    top: 13px;
  }
  .clientDetail .desc__top .descTableWrap .table--feature li .icon.sm{
    font-size: 2rem;
  }
  .clientDetail .desc__top .descTableWrap .table--feature li .icon.md{
    font-size: 2.2rem;
  }
  .clientDetail .desc__top .descTableWrap .table--feature li .icon.lg{
    font-size: 2.6rem;
  }
  .clientDetail .desc__top .descTableWrap .descTable__ttl{
    font-size: 1.7rem;
    line-height: 25px;
    border-left: 3px solid #0d3781;
    padding-left: 5px;
    margin: 20px 0 10px;
  }
  .clientDetail .desc__top .descTableWrap .table--basicInfo{
    padding: 15px 10px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .clientDetail .desc__top .descTableWrap .table--basicInfo dl{
    width: -webkit-calc(33.333333% - 6px);
    width: calc(33.333333% - 6px);
    display: block;
    text-align: center;
  }
  .clientDetail .desc__top .descTableWrap .table--basicInfo dl + dl{
    padding-left: 3px;
  }
  .clientDetail .desc__top .descTableWrap .table--basicInfo dl + dl::before{
    font-size: 3rem;
    left: -8px;
  }
  .clientDetail .desc__top .descTableWrap .table--basicInfo dl dt{
    font-size: 1.3rem;
  }
  .clientDetail .desc__top .descTableWrap .table--basicInfo dl dd{
    font-size: 1.6rem;
    margin-left: 0;
  }
  .clientDetail .desc__top .descTableWrap .table--spread{
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .clientDetail .desc__top .descTableWrap .table--spread dl{
    width: -webkit-calc(33.333333% - 3.333333px);
    width: calc(33.333333% - 3.333333px);
    max-width: 93px;
    height: 93px;
  }
  .clientDetail .desc__top .descTableWrap .table--spread dl dt{
    font-size: 1.3rem;
  }
  .clientDetail .desc__top .descTableWrap .table--spread dl dt::before{
    width: 40px;
    height: 15px;
    margin: 15px auto 5px;
  }
  .clientDetail .desc__top .descTableWrap .table--spread dl dd{
    font-size: 2rem;
    line-height: 1.1;
  }
  .clientDetail .desc__top .descTableWrap .table--spread dl dd span{
    font-size: 1.3rem;
  }
  .clientDetail .desc__top .descTableWrap .table--spread dl + dl{
    margin-left: 5px;
  }
  .clientDetail .conclusion__table{
    border: 2px solid #ed3b3b;
    padding: 15px 15px 5px;
  }
  .clientDetail .conclusion dl{
    display: block;
  }
  .clientDetail .conclusion dl + dl{
    margin: 15px 0 0;
  }
  .clientDetail .conclusion dt{
    font-size: 1.4rem;
    display: inline-block;
    width: auto;
    width: initial;
    min-width: 100px;
    padding: 5px 5px 5px 25px;
    background: #ed3b3b;
    position: relative;
  }
  .clientDetail .conclusion dt::before{
    font-size: 1.4rem;
    left: 5px;
  }
  .clientDetail .conclusion dd{
    font-size: 1.5rem;
    width: 100%;
    padding: 5px 5px 9px;
  }
  .clientDetail .clientRecommend .recommend__list li{
    font-size: 1.8rem;
    padding: 10px 15px 10px 40px;
    position: relative;
  }
  .clientDetail .clientRecommend .recommend__list li::before{
    margin-right: 0;
    position: absolute;
    top: 12px;
    left: 8px;
  }
  .clientDetail .campaign{
    padding: 45px 15px 20px;
    margin: 50px 0 5px;
    display: block;
  }
  .clientDetail .campaign__ttl{
    font-size: 1.2rem;
    padding: 5px 5px 5px 8px;
  }
  .clientDetail .campaign__ttl::before{
    width: 10px;
    right: -4px;
  }
  .clientDetail .campaign .thumb{
    max-width: auto;
    max-width: initial;
    display: block;
    margin: 0 auto;
  }
  .clientDetail .campaign .campaign__text{
    margin: 25px 0 0;
  }
  .clientDetail .campaign .campaign__text .campaign__ttl__sub{
    font-size: 2.1rem;
  }
  .clientDetail .campaign .campaign__text p{
    margin: 12px 0 25px;
  }
  .spec{
    padding: 30px 0 36px;
  }
  .spec caption{
    font-size: 2rem;
    margin: 0 0 15px;
    text-align: left;
  }
  .spec .table--spec table{
    overflow-x: auto;
    white-space: nowrap;
    display: block;
    margin: 40px 0 12px;
  }
  .spec .table--spec th{
    font-size: 1.3rem;
    padding: 8px 5px;
  }
  .spec .table--spec td{
    font-size: 1.4rem;
    padding: 8px 5px;
  }
  .spec .table--spec .notes{
    font-size: 1.3rem;
    line-height: 1.2;
    text-align: left;
    padding-left: 1em;
    text-indent: -1em;
  }
  .spec .btnWrap{
    margin: 58px 0 0;
  }
  .contactForm table{
    margin: 0;
  }
  .contactForm input, .contactForm textarea{
    border-radius: 0;
    -webkit-appearance: none;
  }
  .contactForm tr{
    border-top: none;
  }
  .contactForm tr:last-child{
    border-bottom: none;
  }
  .contactForm th{
    font-size: 1.2rem;
    font-weight: bold;
    background: transparent;
    padding: 10px 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
  }
  .contactForm td{
    padding: 0;
    display: block;
    width: 100%;
  }
  .contactForm td textarea{
    min-height: 90px;
  }
  .contactForm .required{
    font-size: .9rem;
    padding: 3px 4px;
    margin-left: 6px;
  }
  .contactForm .confirmingTxt{
    font-size: 1.2rem;
    line-height: 1.65833;
    text-align: left;
    margin: 20px 0 18px;
  }
  .completedForm .completedMessage{
    font-size: 1.4rem;
    margin: 14px 0 0;
  }
  .completedForm p{
    font-size: 1.2rem;
    text-align: left;
    margin: 20px 0 0;
  }
  .completedForm table{
    width: 100%;
    margin: 40px auto 25px;
  }
  .completedForm th, .completedForm td{
    width: auto;
  }
  .completedForm th{
    font-size: 1.5rem;
    padding: 12px 10px;
    background: url(/fx/images/bg_border_green02.jpg) repeat left top;
  }
  .completedForm td{
    padding: 12px 10px;
    border-bottom: 1px dashed #dcd8d0;
  }
  .completedForm td .tel address{
    font-size: 2.7rem;
  }
  .completedForm td .tel address::before{
    width: 20px;
    height: 20px;
    margin-right: 10px;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-timing-function: liner;
    animation-timing-function: liner;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: vibrate02;
    animation-name: vibrate02;
  }
  .completedForm td .receptionTime{
    margin: 5px 0 0;
  }
  .completedForm td .receptionTime dt{
    font-size: 1.2rem;
    font-weight: bold;
    color: #0a4098;
  }
  .completedForm td .receptionTime dd{
    font-size: 1.2rem;
    margin-left: 0px;
  }
  .completedForm td .receptionTime dt, .completedForm td .receptionTime dd{
    display: block;
  }

  /* =================================
  side nav
================================= */
  .sideNav{

    /*---------------------------
    サイドナビ共通
  ---------------------------*/
    margin: 0;

    /*---------------------------
    検索
  ---------------------------*/

    /*---------------------------
    よく読まれている記事
  ---------------------------*/

    /*---------------------------
    カテゴリー
  ---------------------------*/

    /*---------------------------
    関連サービス
  ---------------------------*/

    /*---------------------------
    事務所詳細
  ---------------------------*/
  }
  .sideNav__inner{
    padding: 15px 20px;
  }
  .sideNav__ttl{
    font-size: 1.3rem;
    color: #0a4098;
    background: #faf9f6;
    border: 2px solid #0a4098;
    padding: 17px 15px 17px 13px;
    display: block;
    position: relative;
    top: 0;
  }
  .sideNav__ttl::before{
    width: 2px;
    height: 14px;
    background: #0a4098;
    position: absolute;
    top: 50%;
    left: initial;
    right: 18px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .sideNav__ttl::after{
    content: "";
    width: 14px;
    height: 2px;
    background: #0a4098;
    position: absolute;
    top: 50%;
    left: initial;
    right: 12px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .sideNav__sec{
    background: #fff;
  }
  .sideNav__sec + .sideNav__sec{
    margin: 0 0 10px;
  }
  .sideNav__sec.active .sideNav__ttl::before{
    content: none;
  }
  .sideNav .sideNav__search{
    display: none;
  }
  .sideNav .popular__list{
    padding: 0 15px 10px;
    margin: 10px 0 0;
    background: #faf9f6;
    display: none;
  }
  .sideNav .popular__list li{
    position: relative;
  }
  .sideNav .popular__list li a{
    font-size: 1.4rem;
    padding: 10px 6px 10px 45px;
  }
  .sideNav .popular__list li::before{
    font-size: 1.4rem;
    padding: 8px 5px;
  }
  .sideNav .sideNav__category .category__list{
    padding: 0 15px 10px;
    margin: 10px 0 0;
    background: #faf9f6;
    display: none;
  }
  .sideNav .sideNav__category .category__list li a{
    font-size: 1.5rem;
    padding: 20px 0;
  }
  .sideNav .sideNav__relation .sideNav__ttl{
    display: none;
  }
  .sideNav .sideNav__relation .relationBanner{
    padding: 0;
    margin: 20px 0 0;
  }
  .sideNav .sideNav__relation .relationBanner a{
    display: block;
  }
  .sideNav .sideNav__relation .relationBanner a img{
    width: 100%;
    height: auto;
  }
  .sideNav .sideNav__client{
    display: none;
    padding: 10px 14px 19px;
  }
  .sideNav .sideNav__client .clientTtl{
    width: -webkit-calc(100% + 25px);
    width: calc(100% + 25px);
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.66666;
    color: #fff;
    padding: 9px 20px;
    margin-bottom: 20px;
    background: #0a4098;
    position: relative;
    top: 0;
    left: -25px;
  }
  .sideNav .sideNav__client .clientTtl::after{
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 11px 7px 0;
    border-color: transparent #113216 transparent transparent;
    display: inline-block;
    position: absolute;
    left: 0;
    bottom: -7px;
  }
  .sideNav .sideNav__client .Thumb{
    display: block;
    margin: 0 auto;
  }
  .sideNav .sideNav__client .tel{
    border: 1px solid #0a4098;
    border-radius: 2px;
    background: #fff;
    padding: 15px 20px 12px 60px;
    margin: 24px 0 0;
    position: relative;
  }
  .sideNav .sideNav__client .tel address{
    font-size: 2.5rem;
    font-style: normal;
    color: #000;
  }
  .sideNav .sideNav__client .tel p{
    font-size: 1.2rem;
    line-height: 1.3;
    margin: 5px 0 0;
  }
  .sideNav .sideNav__client .tel::before{
    content: "";
    width: 25px;
    height: 25px;
    background: url(/fx/images/icon/icon_tel.png) no-repeat center center;
    background-size: contain;
    display: inline-block;
    vertical-align: baseline;
    position: absolute;
    top: 20px;
    left: 20px;
  }
  .sideNav .sideNav__client .tel:hover::before{
    -webkit-animation-duration: .3s;
    animation-duration: .3s;
    -webkit-animation-timing-function: liner;
    animation-timing-function: liner;
    -webkit-animation-name: vibrate;
    animation-name: vibrate;
  }
  .sideNav .sideNav__client .tel:hover address{
    color: #0a4098;
  }
  .sideNav .sideNav__client .btn--mailForm{
    font-size: 1.6rem;
    line-height: 1;
    text-shadow: 0px 1px 1px rgba(21, 15, 15, 0.21);
    color: #fff;
    padding: 14px 19px;
    display: block;
    background: #86c016;
    border-radius: 2px;
    text-align: center;
    margin: 14px 0 0;
  }
  .sideNav .sideNav__client .btn--mailForm::before{
    content: "";
    width: 16px;
    height: 13px;
    background: url(/fx/images/icon/icon_mail.png) no-repeat center center;
    background-size: contain;
    display: inline-block;
    margin-right: 17px;
  }
  .sideNav .sideNav__client .btn--mailForm:hover{
    opacity: .7;
  }
}

@media screen and (max-width: 1320px){
  .pageTop{
    right: 0;
  }
  .footer .copy{
    padding-right: 65px;
  }
}

/*追従メニュー 人気ランキング*/
@-webkit-keyframes light {
  0% {
    left: -180%;
    opacity: 0;
  }
  50% {
    left: -180%;
    opacity: 0;
  }
  70% {
    left: 60%;
    opacity: 1;
  }
  90% {
    left: 60%;
    opacity: 0;
  }
  100% {
    left: -180%;
    opacity: 0;
  }
}

@keyframes light {
  0% {
    left: -180%;
    opacity: 0;
  }
  50% {
    left: -180%;
    opacity: 0;
  }
  70% {
    left: 60%;
    opacity: 1;
  }
  90% {
    left: 60%;
    opacity: 0;
  }
  100% {
    left: -180%;
    opacity: 0;
  }
}

.fixed--ranking {
  position: fixed;
  bottom: 0;
  left: 0;
  background: url(/fx/images/bg_blue.png) repeat;
  right: 0;
  padding: 10px 3% 10px 0;
  z-index: 999;
  display: none;
}
.fixed--ranking .rankingTtl {
  font-size: 15px;
  line-height: 1;
  color: #fff;
  text-shadow: 0px 0px 5px rgba(16, 39, 76, 0.5), 0px 0px 5px rgba(16, 39, 76, 0.5), 0px 0px 5px rgba(16, 39, 76, 0.5);
  width: -webkit-calc(100% - 90px);
  width: calc(100% - 90px);
  margin: 0 0 7px auto;
  padding: 0 0 0 25px;
  position: relative;
}
.fixed--ranking .rankingTtl::before {
  content: "";
  width: 17px;
  height: 22px;
  background: url(/fx/images/icon/icon_beginner.png) no-repeat center center;
  background-size: contain;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.fixed--ranking .rankingBtn {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #fff;
  background: #f69126;
  text-decoration: none;
  display: block;
  width: -webkit-calc(100% - 90px);
  width: calc(100% - 90px);
  margin: 0 0 0 auto;
  padding: 5px 0 6px 6%;
  border-radius: 3px;
  box-shadow: 0px 2px 0px 1px #c56c1f;
  text-shadow: 2px 2px 0px rgba(191, 95, 39, 0.7);
  overflow: hidden;
  position: relative;
}
.fixed--ranking .rankingBtn::before {
  content: "";
  width: 200%;
  height: 200%;
  background: rgba(255, 255, 255, 0.5);
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  position: absolute;
  top: -10%;
  left: -180%;
  opacity: 0;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  -webkit-animation: light 3s infinite;
  animation: light 5s infinite;
}
.fixed--ranking .rankingBtn::after {
  content: "";
  border-style: solid;
  border-width: 4px 0 4px 10px;
  border-color: transparent transparent transparent #fff;
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  top: 50%;
  right: 3%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.fixed--ranking::after {
  content: "";
  background: url(/fx/images/deco_fixed.png) no-repeat center center;
  width: 76px;
  height: 96px;
  display: block;
  background-size: contain;
  position: absolute;
  left: 0;
  bottom: 0;
}

.mv__ttl {
  font-size: 3.4rem;
  font-weight: bold;
  font-style: italic;
  color: #0d3781;
  background: url(/fx/images/top_mainTtl.png) no-repeat right top;
  background-size: contain;
  padding: 14px 0 0;
  margin: 0 0 50px;
}
.mv__ttl span {
  font-size: 1.4rem;
  font-weight: normal;
  font-style: normal;
  color: #000;
  margin-left: 28px;
  display: inline-block;
  vertical-align: middle;
}
@media screen and (max-width: 1024px){
  .mv__ttl{
    font-size: 2.3rem;
    background: none;
    padding: 0;
    text-align: center;
    margin: 10px 20px 20px;
  }
  .mv__ttl span{
    font-size: 1.2rem;
    margin-left: 0;
  }
}
/*# sourceMappingURL=maps/style.css.map */
/* PR表記 */
.tooltip--float { /* ツールチップを設置する「親要素」に指定、そこを基準に右上に配置される */
  position: relative;
}
.tooltip--float .tooltipWrap {
  cursor: pointer;
  border-radius: 2px;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
.tooltip--float .js--tooltipTarget {
  font-size: 1rem;
  line-height: 1;
  letter-spacing: .05em;
  color: #fff;
  background: #6e7682;
  display: inline-block;
  padding: 6px 9px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 999;
}
.tooltip--float .js--tooltipItem {
  font-size: 0.9rem;
  padding: 10px;
  border-radius: 5px;
  color: #555;
  background: #d5d7d9;
  width: 50%;
  position: absolute;
  z-index: 1000;
  display: none;
}
.tooltip--float .tooltipWrap:hover .js--tooltipItem {
  display: inline-block;
  top: 32px;
  right: 5px;
  width: 300px;
}
.tooltip--float .js--tooltipItem::before {
  content: "";
  border-style: solid;
  border-width: 0 6px 12px 6px;
  border-color: transparent transparent #d5d7d9 transparent;
  position: absolute;
  top: -12px;
  right: 10px;
  z-index: 1000;
}

.tooltip--static {
  position: relative;
  text-align: right;
}
.tooltip--static .tooltipWrap {
  display: inline-block;
}
.tooltip--static .js--tooltipTarget {
  font-size: 1rem;
  line-height: 1;
  letter-spacing: .05em;
  color: #fff;
  background: #6e7682;
  display: inline-block;
  padding: 6px 9px;
  cursor: pointer;
  position: relative;
  z-index: 999;
}
.tooltip--static .js--tooltipItem {
  font-size: 0.9rem;
  padding: 10px;
  border-radius: 5px;
  color: #555;
  background: #d5d7d9;
  width: 50%;
  text-align: left;
  position: absolute;
  z-index: 1000;
  display: none;
}
.tooltip--static .tooltipWrap:hover .js--tooltipItem {
  display: inline-block;
  top: 35px;
  right: 5px;
  width: 300px;
}
.tooltip--static .js--tooltipItem::before {
  content: "";
  border-style: solid;
  border-width: 0 6px 12px 6px;
  border-color: transparent transparent #d5d7d9 transparent;
  position: absolute;
  top: -12px;
  right: 10px;
  z-index: 1000;
}
