@charset "UTF-8";
/* #base
   -------------------------------------------------------------------------- */
/**
  * JavaScriptでブレイクポイントを取得するために指定しています。
  * /assets/js/lib/breakpoint.js を参照してください。
  */
body:before {
  content: "";
  display: none;
}

@media print, screen and (min-width: 768px) {
  body:before {
    content: "md";
  }
}

@media print, screen and (min-width: 1024px) {
  body:before {
    content: "lg";
  }
}

@media print, screen and (min-width: 1440px) {
  body:before {
    content: "xl";
  }
}

html {
  font-size: 100%;
  line-height: 1.6;
}

body {
  color: #000;
  background-color: #fff;
}

/**
 * `dt`と`dd`の左端を揃えます。
 */
dd {
  margin-left: 0;
}

/* グローバルテンプレートのスタイル（/_assets/css/template.css）を上書きします。 */
@media print, screen and (min-width: 1024px) {
  .st-GlobalHeader_Logo {
    width: 288px;
  }
  .st-GlobalNav {
    width: calc(100% - 288px - 234px);
  }
}

@media print, screen and (min-width: 1024px) {
  .st-GlobalSiteNav_Link.st-GlobalSiteNav_Link-products + .st-GlobalSiteNav_SubArea .st-Grid_Item-9of12Lg .st-GlobalSiteNav_SubItem,
  .st-GlobalSiteNav_Link.st-GlobalSiteNav_Link-company + .st-GlobalSiteNav_SubArea .st-GlobalSiteNav_SubItem {
    width: 33.33333%;
  }
  .st-GlobalSiteNav_Link.st-GlobalSiteNav_Link-news + .st-GlobalSiteNav_SubArea .st-GlobalSiteNav_SubItem {
    width: 25%;
  }
  .st-GlobalSiteNav_Link.st-GlobalSiteNav_Link-inquiry + .st-GlobalSiteNav_SubArea .st-Grid_Item-6of12Lg:nth-of-type(2) .st-GlobalSiteNav_SubItem {
    width: 50%;
  }
}

/* #Icon
   -------------------------------------------------------------------------- */
/*doc
---
name: Icon
category: SiteWide
tag: Icon
---

アイコンフォントを使ったアイコンを表示します。デフォルトでは`:before`擬似要素で表示されます。

```jade
p More
  span.sw-Icon.sw-Icon-linkMore(aria-hidden="true")
```
*/
@font-face {
  font-family: "iconfont";
  font-weight: normal;
  font-style: normal;
}

/* 汎用的なアイコンフォントです。 */
.sw-Icon {
  display: inline-block;
}

.sw-Icon:before {
  font-family: "iconfont";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  vertical-align: middle;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-decoration: none;
  text-transform: none;
  speak: none;
}

.sw-Icon-arrow_drop_down:before {
  content: "\EA01";
}

.sw-Icon-chevron-down:before {
  content: "\EA02";
}

.sw-Icon-chevron-left:before {
  content: "\EA03";
}

.sw-Icon-chevron-right:before {
  content: "\EA04";
}

.sw-Icon-chevron-up:before {
  content: "\EA05";
}

.sw-Icon-close:before {
  content: "\EA06";
}

.sw-Icon-external-link:before {
  content: "\EA07";
}

.sw-Icon-file-pdf:before {
  content: "\EA08";
}

.sw-Icon-filter_none:before {
  content: "\EA09";
}

.sw-Icon-icon_map-marker:before {
  content: "\EA0A";
}

.sw-Icon-menu:before {
  content: "\EA0B";
}

.sw-Icon-pdf:before {
  content: "\EA0C";
}

.sw-Icon-search:before {
  content: "\EA0D";
}

.sw-Icon-sphere:before {
  content: "\EA0E";
}

@font-face {
  font-family: "Open Sans Condensed";
  font-style: normal;
  font-weight: 300;
}

@font-face {
  font-family: "Open Sans Condensed";
  font-style: normal;
  font-weight: 700;
}

/**
 * sw-(SiteWide)...サイト共通の小さなパーツ
 * st-(Structure)...サイト共通のレイアウト
 */
/* #Button
   -------------------------------------------------------------------------- */
/*doc
---
name: Button
category: SiteWide
tag: [Button, Link, Form]
---

ボタンのデフォルトスタイルです。

```jade
a.sw-Button(href="#") aタグボタン
a.sw-Button.sw-Button-disabled(href="#") aタグボタン
button.sw-Button(type="button") butotnタグボタン
button.sw-Button(disabled type="button") butotnタグボタン
input.sw-Button(type="button" value="inputボタン")
input.sw-Button(type="button" value="inputボタン" disabled)
```

`sw-Button()`mixinで他のボタンにもスタイルを継承することができます。

```scss
.AnotherButton {
  @include sw-Button();
}
```
*/
.sw-Button {
  display: inline-block;
  margin: 0;
  padding: 0.75em 2em;
  border: none;
  border: 1px solid #d0d0d0;
  border-radius: 3px;
  color: inherit;
  font-family: inherit;
  font-size: 1em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  background: transparent;
  background-color: #fff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}

.sw-Button[type=button], .sw-Button[type=reset], .sw-Button[type=submit] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.sw-Button:hover, .sw-Button:active, .sw-Button:focus {
  text-decoration: none;
}

.sw-Button:focus {
  outline: 0;
  box-shadow: 0 0 5px #1589ee;
}

.sw-Button:disabled, .sw-Button-disabled {
  opacity: 0.5;
  border-color: #ddd;
  background-color: #ddd;
  cursor: not-allowed;
}

.sw-Button-disabled {
  pointer-events: none;
}

/* #Embed
   -------------------------------------------------------------------------- */
/*doc
---
name: Embed
category: SiteWide
tag: ThirdPartyComponent
---

Youtubeなどをレスポンシブ対応させます。

```jade
.sw-Embed.
  <iframe width="560" height="315" src="https://www.youtube.com/embed/1OKZOV-iLj4"></iframe>
```
*/
.sw-Embed {
  display: block;
  overflow: hidden;
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
}

.sw-Embed_Item,
.sw-Embed iframe,
.sw-Embed embed,
.sw-Embed object,
.sw-Embed video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.sw-FootBanner {
  display: block;
  text-align: center;
  text-decoration: none;
  transition-duration: 0.3s;
}

.sw-FootBanner:hover {
  text-decoration: none;
}

.st-ContentsFooter_Item .sw-FootBanner {
  margin-bottom: 20px;
}

@media print, screen and (min-width: 768px) {
  .st-ContentsFooter_Item .sw-FootBanner {
    margin-bottom: 0;
  }
}

.sw-FootBanner_HeadImage {
  width: 100%;
  max-width: none;
}

.sw-FootBanner_Body {
  padding: 20px 22px 22px;
  background-color: #f5f5f5;
}

@media print, screen and (min-width: 768px) {
  .sw-FootBanner_Body {
    padding: 18px 24px 24px;
  }
}

.sw-FootBanner_Title {
  color: #000;
  font-size: 1.1875rem;
  font-weight: 600;
  line-height: 1.2;
  transition-duration: 0.3s;
}

@media print, screen and (min-width: 768px) {
  .sw-FootBanner_Title {
    font-size: 1.25rem;
  }
}

@media print, screen and (min-width: 1024px) {
  .sw-FootBanner:hover .sw-FootBanner_Title {
    color: #df0523;
  }
}

.sw-FootBanner_Text {
  margin-top: 8px;
  color: #333;
  font-size: 0.9375rem;
  line-height: 1.2;
  transition-duration: 0.3s;
}

@media print, screen and (min-width: 1024px) {
  .sw-FootBanner:hover .sw-FootBanner_Text {
    color: #df0523;
  }
}

.sw-Heading2 {
  color: #000;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 15px 0;
}

@media print, screen and (min-width: 768px) {
  .sw-Heading2 {
    font-size: 1.75rem;
  }
}

.sw-InquiryMenu_Item {
  display: block;
  padding: 20px 10px;
  color: #fff !important;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  background-color: #df0523;
  transition-duration: 0.3s;
}

@media print, screen and (min-width: 1024px) {
  .sw-InquiryMenu_Item:hover {
    background-color: #b80f26;
			text-decoration: none;
  }
}

.sw-InquiryMenu_Item:not(:first-of-type) {
  margin-top: 15px;
}

@media print, screen and (min-width: 768px) {
  .sw-InquiryMenu_Item {
    font-size: 1.0625rem;
  }
}

.sw-InquiryMenu_AdditionalText {
  display: block;
  color: #fff;
  font-size: 0.84375rem;
  line-height: 1.4;
}

.sw-Pagelink {
  margin-bottom: 20px;
  padding-left: 0;
  list-style-type: none;
}

.sw-Pagelink:after {
  content: "";
  display: block;
  clear: both;
}

@media print, screen and (min-width: 768px) {
  .sw-Pagelink {
			display: none;
   /* margin-bottom: 60px;*/
  }
}

.sw-Pagelink_Item {
  float: left;
  margin-right: 12px;
  margin-bottom: 12px;
}

@media print, screen and (min-width: 768px) {
  .sw-Pagelink_Item {
    margin-right: 0;
    margin-bottom: 10px;
    border-left: 1px solid #e6e6e6;
  }
  .sw-Pagelink_Item:last-of-type {
    border-right: 1px solid #e6e6e6;
  }
}

.sw-Pagelink_Link {
  display: inline-block;
  position: relative;
  padding: 8px 10px 10px 26px;
  border: 1px solid #e6e6e6;
  color: #333 !important;
  font-size: 0.875rem;
  line-height: 1.3;
  text-decoration: none;
  transition-duration: 0.3s;
}

.sw-Pagelink_Link[href="#InquiryForm"] {
  border-color: #df0523;
  color: #df0523;
}

.sw-Pagelink_Link:hover {
  text-decoration: underline;
  color: #df0523;
}

@media print, screen and (min-width: 768px) {
  .sw-Pagelink_Link {
    padding-right: 20px;
    padding-left: 38px;
    border: 0;
  }
}

.sw-Pagelink_Icon:before {
  font-family: "iconfont";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  vertical-align: middle;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-decoration: none;
  text-transform: none;
  speak: none;
  content: "▼";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 8px;
  height: 1em;
  margin: auto;
  color: #555;
	 font-size: 0.6rem;
  /*font-size: 1.625rem;*/
}

@media print, screen and (min-width: 768px) {
  .sw-Pagelink_Icon:before {
    left: 10px;
  }
}

.sw-Pagelink_Link[href="#InquryForm"] > .sw-Pagelink_Icon:before {
  color: #df0523;
}

.sw-SideLinks {
  margin-left: 16px;
  padding-left: 0;
  font-size: 0.9375rem;
  line-height: 1.2;
  list-style-type: none;
}

@media print, screen and (min-width: 768px) {
  .sw-SideLinks {
    line-height: 1.4;
  }
}

.sw-SideLinks_Item {
  position: relative;
}

.sw-SideLinks_Item:not(:last-of-type) {
  margin-bottom: 24px;
}

@media print, screen and (min-width: 768px) {
  .sw-SideLinks_Item:not(:last-of-type) {
    margin-bottom: 10px;
  }
}

.sw-SideLinks_Item:before {
  content: "";
  display: block;
  position: absolute;
  top: 0.25em;
  left: -16px;
  width: 0;
  height: 0;
  border-width: 5px 0 5px 8px;
  border-style: solid;
  border-color: transparent transparent transparent #df0523;
}

.sw-SideLinks_Link {
  color: #333;
  text-decoration: none;
  transition-duration: 0.3s;
}

.sw-SideLinks_Link:hover {
  text-decoration: underline;
  color: #df0523;
}

.sw-SideLinks_NavIconExternal:before,
.sw-SideLinks_NavIconInternal:before {
  font-family: "iconfont";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  vertical-align: middle;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-decoration: none;
  text-transform: none;
  speak: none;
  margin-top: -0.1em;
  margin-left: 3px;
  font-size: 1.3em;
  color: #888;
}

.sw-SideLinks_NavIconExternal:before {
  content: "";
}

.sw-SideLinks_NavIconInternal:before {
  content: "";
}

.sw-SideMenu {
  line-height: 1.4;
}

.sw-SideMenu_Parent {
  transition-duration: 0.3s;
  display: block;
  position: relative;
  padding: 18px;
  border-top: 2px solid #df0523;
  border-bottom: 1px solid #e6e6e6;
  color: #df0523;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  background-color: #f1f1f1;
}

@media print, screen and (min-width: 1024px) {
  .sw-SideMenu_Parent:hover {
    background-color: #fafafa;
  }
}

.sw-SideMenu_ParentIcon:before {
  transition-duration: 0.3s;
  font-family: "iconfont";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  vertical-align: middle;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-decoration: none;
  text-transform: none;
  speak: none;
  content: "";
  position: absolute;
  top: 0;
  right: 8px;
  bottom: 0;
  height: 16px;
  margin: auto;
  color: #818181;
  font-size: 1.3em;
}

@media print, screen and (min-width: 1024px) {
  .sw-SideMenu_Parent:hover .sw-SideMenu_ParentIcon:before {
    color: #df0523;
  }
}

.sw-SideMenu_Items {
  padding-left: 0;
  list-style-type: none;
}

.sw-SideMenu_Link {
  display: block;
  position: relative;
  padding: 20.5px 18px;
  border-bottom: 1px solid #e6e6e6;
  color: #000;
  text-decoration: none;
}

.sw-SideMenu_Link.sw-SideMenu_Link-current {
  color: #df0523;
}

@media print, screen and (min-width: 1024px) {
  .sw-SideMenu_Link {
    padding: 15px 18px;
  }
}

.sw-SideMenu_LinkIcon:before {
  transition-duration: 0.3s;
  font-family: "iconfont";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  vertical-align: middle;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-decoration: none;
  text-transform: none;
  speak: none;
  content: "";
  position: absolute;
  top: 0;
  right: 8px;
  bottom: 0;
  height: 16px;
  margin: auto;
  color: #818181;
  font-size: 1.3em;
}

@media print, screen and (min-width: 1024px) {
  .sw-SideMenu_Link:hover .sw-SideMenu_LinkIcon:before {
    color: #df0523;
  }
}

.sw-SubPageHero {
  display: block;
}

@media print, screen and (min-width: 768px) {
  .sw-SubPageHero {
    position: relative;
    padding-top: 25.83333%;
  }
}

@media print, screen and (min-width: 1200px) {
  .sw-SubPageHero {
    overflow: hidden;
    position: relative;
    height: 310px;
    padding-top: 0;
  }
}

@media (min-width: 1500px) {
  .sw-SubPageHero:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 310px;
    height: 310px;
    background-repeat: no-repeat;
    background-size: contain;
  }
}

@media (min-width: 1920px) {
  .sw-SubPageHero {
    height: auto;
  }
  .sw-SubPageHero:after {
    display: none;
  }
}

.sw-SubPageHero img {
  width: 100%;
  max-width: none;
}

@media print, screen and (min-width: 768px) {
  .sw-SubPageHero img {
    position: absolute;
    top: 0;
    max-width: none;
    width: 160% !important;
    left: -30%;
  }
}

@media print, screen and (min-width: 1200px) {
  .sw-SubPageHero img {
    width: 1920px !important;
    margin-left: -960px;
    left: 50%;
  }
}

@media (min-width: 1920px) {
  .sw-SubPageHero img {
    position: static;
    width: 100% !important;
    margin-left: 0;
  }
}

.st-ContentsFooter {
  margin-top: 20px;
  background-color: #fff;
}

@media print, screen and (min-width: 768px) {
  .st-ContentsFooter {
    margin-top: 60px;
    padding: 50px 0;
    background-color: #e3e3e3;
  }
}

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

@media print, screen and (min-width: 768px) {
  .st-ContentsFooter_Inner {
    padding: 0 15px;
  }
}

.st-ContentsFooter_Items {
  display: block;
  margin-left: -30px;
  padding-left: 0;
  font-size: 0;
  list-style-type: none;
}

.st-ContentsFooter_Item {
  display: inline-block;
  width: 100%;
  padding-left: 30px;
  font-size: 1rem;
}

@media print, screen and (min-width: 768px) {
  .st-ContentsFooter_Item {
    width: 33.33333%;
  }
}

.st-Footer {
  background-color: #f5f5f5;
}

.st-Footer_Inner {
  max-width: 1200px;
  margin: auto;
}

@media print, screen and (min-width: 768px) {
  .st-Footer_Inner {
    padding: 60px 15px;
  }
}

.st-Footer_Items {
  border-top: 1px solid #e0e0e0;
}

@media print, screen and (min-width: 768px) {
  .st-Footer_Items {
    display: table;
    width: 100%;
    border-top: 0;
    table-layout: fixed;
  }
}

@media print, screen and (min-width: 768px) {
  .st-Footer_Item {
    display: table-cell;
    padding-right: 30px;
    vertical-align: top;
  }
}

.st-Footer_Heading {
  border-bottom: 1px solid #e0e0e0;
}

.st-Footer_Heading:last-child {
  border-bottom: 0;
}

@media print, screen and (min-width: 768px) {
  .st-Footer_Heading {
    margin-bottom: 22px;
    border-bottom: 0;
  }
  .st-Footer_Nav + .st-Footer_Heading {
    margin-top: 50px;
  }
}

.st-Footer_Heading > a {
  display: block;
  position: relative;
  padding: 20px 16px;
  padding-right: 38px;
  color: #000;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1;
  text-decoration: none;
  transition-duration: 0.3s;
}

@media print, screen and (min-width: 768px) {
  .st-Footer_Heading > a {
    padding: 0;
  }
}

@media print, screen and (min-width: 1024px) {
  .st-Footer_Heading > a:hover {
    text-decoration: underline;
    color: #df0523;
  }
}

.st-Footer_HeadingIcon:before {
  font-family: "iconfont";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  vertical-align: middle;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-decoration: none;
  text-transform: none;
  speak: none;
  content: "";
  position: absolute;
  top: 0;
  right: 18px;
  bottom: 0;
  height: 1.5rem;
  margin: auto;
  padding-top: 0.1em;
  color: #8e8e8e;
  font-size: 1.5rem;
}

@media print, screen and (min-width: 768px) {
  .st-Footer_HeadingIcon:before {
    position: static;
    height: auto;
    margin-top: -0.1em;
    padding: 0;
    color: #e00f2c;
    font-size: 1.3125rem;
  }
}

.st-Footer_Nav {
  display: none;
}

@media print, screen and (min-width: 768px) {
  .st-Footer_Nav {
    display: block;
    padding-left: 0;
    list-style-type: none;
  }
}

@media print, screen and (min-width: 768px) {
  .st-Footer_NavItem + .st-Footer_NavItem {
    margin-top: 17px;
  }
}

.st-Footer_NavLink {
  display: block;
  color: #666;
  font-size: 0.9375rem;
  line-height: 1.3;
  text-decoration: none;
}

.st-Footer_NavLink:hover {
  color: #df0523;
  text-decoration: underline;
  transition-duration: 0.3s;
}

.st-Footer_SmallLink {
  font-size: 0.8125rem;
  line-height: 1.5;
}

.st-Footer_NavIconExternal:before,
.st-Footer_NavIconInternal:before {
  font-family: "iconfont";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  vertical-align: middle;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-decoration: none;
  text-transform: none;
  speak: none;
  margin-top: -0.1em;
  margin-left: 3px;
  font-size: 1.3em;
  color: #888;
}

.st-Footer_NavIconExternal:before {
  content: "";
}

.st-Footer_NavIconInternal:before {
  content: "";
}

/* #Grid
   -------------------------------------------------------------------------- */
/*
---
name: Grid
category: Structure
tag: Global
---

グリッドシステムです。カラムごとに任意の値を指定したい場合に使います。
カラム間の余白は幅を`$st-grid-column-gap`で統一しています。

以下のような指定ができます。

- `.st-Grid_Item-8of12` カラム数の指定。
- `.st-Grid-reverse` カラムの反転。
- `.st-Grid-center` カラムのセンタリング。
- `.st-Grid-middle` カラムの垂直配置。

```jade
.st-Grid
  .st-Grid_Item.st-Grid_Item-8of12Md
    img(src="https://placehold.jp/1200x800.png" alt="")
  .st-Grid_Item.st-Grid_Item-4of12Md
    img(src="https://placehold.jp/600x400.png" alt="")

.st-Grid.st-Grid-reversMd
  .st-Grid_Item.st-Grid_Item-8of12Md
    img(src="https://placehold.jp/1200x800.png" alt="")
  .st-Grid_Item.st-Grid_Item-4of12Md
    img(src="https://placehold.jp/600x400.png" alt="")

.st-Grid.st-Grid-centerMd
  .st-Grid_Item.st-Grid_Item-8of12Md
    img(src="https://placehold.jp/1200x800.png" alt="")
```
*/
.st-Grid {
  margin-left: -15px;
  padding-left: 0;
  list-style-type: none;
  display: block;
  font-size: 0;
}

@media print, screen and (min-width: 768px) {
  .st-Grid {
    margin-left: -30px;
  }
}

.st-Grid_Item {
  display: inline-block;
  width: 100%;
  /*padding-left: 15px;*/
  font-size: medium;
  font-size: 1rem;
  vertical-align: top;
}

@media print, screen and (min-width: 768px) {
  .st-Grid_Item {
    /*padding-left: 30px;*/
  }
}

.st-Grid_Item-1of12 {
  width: 8.33333%;
}

.st-Grid_Item-2of12 {
  width: 16.66667%;
}

.st-Grid_Item-3of12 {
  width: 25%;
}

.st-Grid_Item-4of12 {
  width: 33.33333%;
}

.st-Grid_Item-5of12 {
  width: 41.66667%;
}

.st-Grid_Item-6of12 {
  width: 50%;
}

.st-Grid_Item-7of12 {
  width: 58.33333%;
}

.st-Grid_Item-8of12 {
  width: 66.66667%;
}

.st-Grid_Item-9of12 {
  width: 75%;
}

.st-Grid_Item-10of12 {
  width: 83.33333%;
}

.st-Grid_Item-11of12 {
  width: 91.66667%;
}

.st-Grid_Item-12of12 {
  width: 100%;
}

@media print, screen and (min-width: 768px) {
  .st-Grid_Item-1of12Md {
    width: 8.33333%;
  }
  .st-Grid_Item-2of12Md {
    width: 16.66667%;
  }
  .st-Grid_Item-3of12Md {
    width: 25%;
  }
  .st-Grid_Item-4of12Md {
    width: 33.33333%;
  }
  .st-Grid_Item-5of12Md {
    width: 41.66667%;
  }
  .st-Grid_Item-6of12Md {
    width: 50%;
  }
  .st-Grid_Item-7of12Md {
    /*width: 58.33333%;*/
			width: 65.33333%;
  }
  .st-Grid_Item-8of12Md {
    width: 66.66667%;
  }
  .st-Grid_Item-9of12Md {
    width: 75%;
  }
  .st-Grid_Item-10of12Md {
    width: 83.33333%;
  }
  .st-Grid_Item-11of12Md {
    width: 91.66667%;
  }
  .st-Grid_Item-12of12Md {
    width: 100%;
  }
}

@media print, screen and (min-width: 1024px) {
  .st-Grid_Item-1of12Lg {
    width: 8.33333%;
  }
  .st-Grid_Item-2of12Lg {
    width: 16.66667%;
  }
  .st-Grid_Item-3of12Lg {
    width: 25%;
  }
  .st-Grid_Item-4of12Lg {
    width: 33.33333%;
  }
  .st-Grid_Item-5of12Lg {
    width: 41.66667%;
  }
  .st-Grid_Item-6of12Lg {
    width: 50%;
  }
  .st-Grid_Item-7of12Lg {
    width: 58.33333%;
  }
  .st-Grid_Item-8of12Lg {
    width: 66.66667%;
  }
  .st-Grid_Item-9of12Lg {
    width: 75%;
  }
  .st-Grid_Item-10of12Lg {
    width: 83.33333%;
  }
  .st-Grid_Item-11of12Lg {
    width: 91.66667%;
  }
  .st-Grid_Item-12of12Lg {
    width: 100%;
  }
}

@media print, screen and (min-width: 1440px) {
  .st-Grid_Item-1of12Xl {
    width: 8.33333%;
  }
  .st-Grid_Item-2of12Xl {
    width: 16.66667%;
  }
  .st-Grid_Item-3of12Xl {
    width: 25%;
  }
  .st-Grid_Item-4of12Xl {
    width: 33.33333%;
  }
  .st-Grid_Item-5of12Xl {
    width: 41.66667%;
  }
  .st-Grid_Item-6of12Xl {
    width: 50%;
  }
  .st-Grid_Item-7of12Xl {
    width: 58.33333%;
  }
  .st-Grid_Item-8of12Xl {
    width: 66.66667%;
  }
  .st-Grid_Item-9of12Xl {
    width: 75%;
  }
  .st-Grid_Item-10of12Xl {
    width: 83.33333%;
  }
  .st-Grid_Item-11of12Xl {
    width: 91.66667%;
  }
  .st-Grid_Item-12of12Xl {
    width: 100%;
  }
}

/**
 * 要素の垂直位置を真ん中寄せ。
 */
.st-Grid-middle > .st-Grid_Item {
  vertical-align: middle;
}

@media print, screen and (min-width: 768px) {
  .st-Grid-middleMd > .st-Grid_Item {
    vertical-align: middle;
  }
}

@media print, screen and (min-width: 1024px) {
  .st-Grid-middleLg > .st-Grid_Item {
    vertical-align: middle;
  }
}

@media print, screen and (min-width: 1440px) {
  .st-Grid-middleXl > .st-Grid_Item {
    vertical-align: middle;
  }
}

/**
 * 要素の垂直位置を下寄せ。
 */
.st-Grid--bottom > .st-Grid_Item {
  vertical-align: bottom;
}

@media print, screen and (min-width: 768px) {
  .st-Grid-bottomMd > .st-Grid_Item {
    vertical-align: bottom;
  }
}

@media print, screen and (min-width: 1024px) {
  .st-Grid-bottomLg > .st-Grid_Item {
    vertical-align: bottom;
  }
}

@media print, screen and (min-width: 1440px) {
  .st-Grid-bottomXl > .st-Grid_Item {
    vertical-align: bottom;
  }
}

/**
 * 要素を中央寄せ、要素内は左寄せ。
 */
.st-Grid-center {
  text-align: center;
}

.st-Grid-center > .st-Grid_Item {
  text-align: left;
}

@media print, screen and (min-width: 768px) {
  .st-Grid-centerMd {
    text-align: center;
  }
  .st-Grid-centerMd > .st-Grid_Item {
    text-align: left;
  }
}

@media print, screen and (min-width: 1024px) {
  .st-Grid-centerLg {
    text-align: center;
  }
  .st-Grid-centerLg > .st-Grid_Item {
    text-align: left;
  }
}

@media print, screen and (min-width: 1440px) {
  .st-Grid-centerXl {
    text-align: center;
  }
  .st-Grid-centerXl > .st-Grid_Item {
    text-align: left;
  }
}

/**
 * 要素を右寄せ、要素内は左寄せ。
 */
.st-Grid-right {
  text-align: right;
}

.st-Grid-right > .st-Grid_Item {
  text-align: left;
}

@media print, screen and (min-width: 768px) {
  .st-Grid-rightMd {
    text-align: right;
  }
  .st-Grid-rightMd > .st-Grid_Item {
    text-align: left;
  }
}

@media print, screen and (min-width: 1024px) {
  .st-Grid-rightLg {
    text-align: right;
  }
  .st-Grid-rightLg > .st-Grid_Item {
    text-align: left;
  }
}

@media print, screen and (min-width: 1440px) {
  .st-Grid-rightXl {
    text-align: right;
  }
  .st-Grid-rightXl > .st-Grid_Item {
    text-align: left;
  }
}

/**
 * 要素の反転。
 */
.st-Grid-reverse {
  text-align: left;
  direction: rtl;
}

.st-Grid-reverse > .st-Grid_Item {
  text-align: left;
  direction: ltr;
}

@media print, screen and (min-width: 768px) {
  .st-Grid-reversMd {
    text-align: left;
    direction: rtl;
  }
  .st-Grid-reversMd > .st-Grid_Item {
    text-align: left;
    direction: ltr;
  }
}

@media print, screen and (min-width: 1024px) {
  .st-Grid-reverseLg {
    text-align: left;
    direction: rtl;
  }
  .st-Grid-reverseLg > .st-Grid_Item {
    text-align: left;
    direction: ltr;
  }
}

@media print, screen and (min-width: 1440px) {
  .st-Grid-reverseXl {
    text-align: left;
    direction: rtl;
  }
  .st-Grid-reverseXl > .st-Grid_Item {
    text-align: left;
    direction: ltr;
  }
}

.st-Inner {
  padding: 0 15px;
}

.company-company {
  margin-bottom: 40px;
  font-size: 1rem;
  line-height: 1.7;
}

@media print, screen and (min-width: 768px) {
  .company-company {
    margin-bottom: 20px;
    line-height: 1.6;
  }
}

.company-company_Title {
  color: #000;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 20px;
}

@media print, screen and (min-width: 768px) {
  .company-company_Title {
    font-size: 1.75rem;
  }
}

.company-company_Name {
  position: relative;
  margin: 20px 0;
  padding-top: 13px;
  font-size: 1.1875rem;
  font-weight: 600;
  line-height: 1.3;
}

.company-company_Name:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #cdcdcd;
}

.company-company_Name:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 46px;
  height: 1px;
  background-color: #df0523;
}

.company-company_Products {
  margin-bottom: 5px;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 600;
}

@media print, screen and (min-width: 768px) {
  .company-company_Products {
    line-height: 1.3;
  }
}

.company-company_ProductsText {
  color: #333;
  margin-bottom: 5px;
}

.company-company_Website {
  margin-bottom: 5px;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 600;
}

@media print, screen and (min-width: 768px) {
  .company-company_Website {
    line-height: 1.3;
  }
}

.company-company_WebsiteLink a {
  color: #0071c8 !important;
  text-decoration: underline !important;
}

.company-company_WebsiteLink a:hover {
  text-decoration: none !important;
}

@media print, screen and (min-width: 768px) {
  .company-company_WebsiteLink {
    margin-bottom: 20px;
  }
}

.company-company_IconExternal:before {
  font-family: "iconfont";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  vertical-align: middle;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-decoration: none;
  text-transform: none;
  speak: none;
  content: "";
  margin-top: -0.1em;
  margin-left: 3px;
  font-size: 1.5em;
}

.company-Items {
  display: block;
  margin-bottom: 20px;
  border: 1px solid #dadada;
  text-decoration: none;
}

@media print, screen and (min-width: 768px) {
  .company-Items {
    margin-bottom: 30px;
  }
}

.company-Items_HeadImage {
  width: 100%;
  max-width: none;
}

.company-Items_Body {
  position: relative;
  padding: 12px 12px 12px 18px;
}

@media print, screen and (min-width: 768px) {
  .company-Items_Body {
    padding: 22px 22px 22px 28px;
  }
}

.company-Items_Text {
  color: #000;
  font-size: 0.9375rem;
  line-height: 1.3;
  text-decoration: none;
}

.company-Items_TextIcon:before {
  font-family: "iconfont";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  vertical-align: middle;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-decoration: none;
  text-transform: none;
  speak: none;
  content: "";
  position: relative;
  top: -0.1em;
  left: 0;
  margin-left: -15px;
  color: #df0523;
  font-size: 1.3em;
}

.company-Items_IconExternal:before,
.company-Items_IconInternal:before {
  margin-top: -0.1em;
  margin-left: 3px;
  color: #a4a4a4;
  font-size: 1.3em;
}

.company-Items_IconExternal:before {
  font-family: "iconfont";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  vertical-align: middle;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-decoration: none;
  text-transform: none;
  speak: none;
  content: "";
}

.company-Items_IconInternal:before {
  font-family: "iconfont";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  vertical-align: middle;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-decoration: none;
  text-transform: none;
  speak: none;
  content: "";
}

.company-List {
  margin-bottom: 20px;
}

.company-List_Lists {
  margin-left: 20px;
  padding-left: 0;
  font-size: 0.9375rem;
  line-height: 1.3;
  list-style-type: none;
}

@media print, screen and (min-width: 768px) {
  .company-List_Lists {
    font-size: 1rem;
  }
}

.company-List_Item {
  position: relative;
}

.company-List_Item + .company-List_Item {
  margin-top: 18px;
}

@media print, screen and (min-width: 768px) {
  .company-List_Item + .company-List_Item {
    margin-top: 20px;
  }
}

.company-List_Item:before {
  content: "";
  display: block;
  position: absolute;
  top: 0.25em;
  left: -16px;
  width: 0;
  height: 0;
  border-width: 5px 0 5px 8px;
  border-style: solid;
  border-color: transparent transparent transparent #df0523;
}

.company-List_Link {
  color: #000;
  text-decoration: none;
}

.company-List_Link:hover {
  text-decoration: underline;
}

.company-List_IconExternal:before,
.company-List_IconInternal:before {
  font-family: "iconfont";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  vertical-align: middle;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-decoration: none;
  text-transform: none;
  speak: none;
  color: #8f8f8f;
  font-size: 1.3em;
}

.company-List_IconExternal:before {
  content: "";
}

.company-List_IconInternal:before {
  content: "";
}

.company-TopList_Grid {
  margin-left: -30px;
  padding-left: 0;
  list-style-type: none;
  display: block;
  font-size: 0;
}

@media print, screen and (min-width: 768px) {
  .company-TopList_Grid + .company-TopList_Grid {
    margin-top: 60px;
  }
}

.company-TopList_GridItem {
  display: inline-block;
  width: 100%;
  padding-left: 30px;
  font-size: medium;
  font-size: 1rem;
  vertical-align: top;
}

@media print, screen and (min-width: 768px) {
  .company-TopList_GridItem {
    width: 33.33333%;
  }
}

@media print, screen and (min-width: 768px) {
  .company-TopList_List {
    padding: 0 15px;
  }
}

.editor-Area {
  /**
   * 個別の余白調整
   */
}

.editor-Area:after {
  content: "";
  display: block;
  clear: both;
}

.editor-Area > :first-child:not([class]) {
  padding-top: 0;
}

.editor-Area h2:not([class]) {
  color: #000;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  padding-top: 20px;
}

@media print, screen and (min-width: 768px) {
  .editor-Area h2:not([class]) {
    font-size: 1.75rem;
  }
}

@media print, screen and (min-width: 768px) {
  .editor-Area h2:not([class]) {
    clear: both;
    padding-top: 60px;
  }
}

@media print, screen and (min-width: 768px) {
  .editor-Area .small + h2:not([class]) {
    padding-top: 40px;
  }
}

.editor-Area h2:not([class]) + h3:not([class]) {
  margin-top: 40px;
}

.editor-Area .table-Standard + h3:not([class]) {
  margin-top: 40px;
}

.editor-Area h3:not([class]) {
  position: relative;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-top: 13px;
  color: #000;
  font-size: 1.1875rem;
  font-weight: 600;
  line-height: 1.3;
}

.editor-Area h3:not([class]):before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #cdcdcd;
}

.editor-Area h3:not([class]):after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 46px;
  height: 1px;
  background-color: #df0523;
}

.editor-Area p:not([class]) {
  margin-bottom: 20px;
  color: #333;
  line-height: 1.625;
}

.editor-Area ul:not([class]),
.editor-Area ol:not([class]) {
  margin-bottom: 20px;
  color: #333;
  line-height: 1.625;
}

.editor-Area ul:not([class]) {
  margin-left: 15px;
  padding-left: 0;
  list-style-type: none;
}

.editor-Area ul:not([class]) li {
  position: relative;
}

.editor-Area ul:not([class]) li:not(:first-of-type) {
  margin-top: 5px;
}

.editor-Area ul:not([class]) li:after {
  content: "";
  display: block;
  position: absolute;
  top: 0.6em;
  left: -15px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #df0523;
}

.editor-Area a:not([class]) {
  color: #0071c8;
  text-decoration: none;
  transition-duration: 0.3s;
}

.editor-Area a:not([class]):hover {
  color: #df0523 !important;
  text-decoration: underline !important;
}

.editor-Area .small {
  margin-bottom: 20px;
  font-size: 0.875rem;
}

@media print, screen and (min-width: 768px) {
  .editor-Area .col2 {
    float: left;
    width: 50%;
    padding-right: 30px;
  }
}

.editor-Area .col2 + *:not(.col2) {
  clear: both;
}

.home-Hero {
  overflow: hidden;
  position: relative;
  width: 100%;
  min-width: 100%;
  height: auto;
  margin: 0 auto;
}

.home-Hero_Inner {
  height: 130px;
}

@media print, screen and (min-width: 375px) {
  .home-Hero_Inner {
    height: 152px;
  }
}

@media print, screen and (min-width: 768px) {
  .home-Hero_Inner {
    height: 300px;
  }
}

@media print, screen and (min-width: 1024px) {
  .home-Hero_Inner {
    height: 350px;
  }
}

.home-Hero_Main {
  position: relative;
  height: 105px;
}

@media print, screen and (min-width: 375px) {
  .home-Hero_Main {
    height: 152px;
  }
}

@media print, screen and (min-width: 768px) {
  .home-Hero_Main {
    height: 300px;
  }
}

@media print, screen and (min-width: 1024px) {
  .home-Hero_Main {
    height: 350px;
  }
}

.home-Hero_Main ul {
  padding-left: 0;
  list-style-type: none;
}

/* ページロード時に最初のテキストだけが表示されるようにする。 */
.home-Hero_Main li + li {
  display: none;
}

.home-Hero_Main img {
  display: block;
  width: 100%;
  min-width: 828px;
  min-height: 336px;
}

@media print, screen and (min-width: 768px) {
  .home-Hero_Main img {
    min-width: 1920px;
    min-height: 350px;
    position: relative;
    margin-left: -960px;
    left: 50%;
  }
}

@media print, screen and (min-width: 1024px) {
  .home-Hero_SlideImageInner:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 350px;
    height: 350px;
    background-repeat: no-repeat;
    background-size: cover;
  }
}

.home-Hero_TextArea {
  display: table;
  position: absolute;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  width: 100%;
  height: 105px;
  text-align: center;
}

@media print, screen and (min-width: 375px) {
  .home-Hero_TextArea {
    height: 123px;
  }
}

@media print, screen and (min-width: 768px) {
  .home-Hero_TextArea {
    height: 233px;
  }
}

@media print, screen and (min-width: 1024px) {
  .home-Hero_TextArea {
    height: 284px;
  }
}

.home-Hero_TextAreaInner {
  display: table-cell;
  vertical-align: middle;
}

.home-Hero_TextArea .bx-viewport {
  height: 130px !important;
}

@media print, screen and (min-width: 375px) {
  .home-Hero_TextArea .bx-viewport {
    height: 152px !important;
  }
}

@media print, screen and (min-width: 768px) {
  .home-Hero_TextArea .bx-viewport {
    height: 300px !important;
  }
}

@media print, screen and (min-width: 1024px) {
  .home-Hero_TextArea .bx-viewport {
    height: 350px !important;
  }
}

.home-Hero_MainText {
  color: #fff;
  font-family: "Open Sans Condensed", sans-serif;
  font-size: 1.8125rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
}

@media print, screen and (min-width: 768px) {
  .home-Hero_MainText {
    font-size: 3.875rem;
  }
}

@media print, screen and (min-width: 1024px) {
  .home-Hero_MainText {
    font-size: 4.625rem;
  }
}

.home-Hero_SubText {
  margin-top: 6px;
  color: #fff;
  font-family: "Open Sans Condensed", sans-serif;
  font-size: 0.96875rem;
  font-weight: 300;
  line-height: 1;
}

@media print, screen and (min-width: 768px) {
  .home-Hero_SubText {
    margin-top: 8px;
    font-size: 1.75rem;
  }
}

@media print, screen and (min-width: 1024px) {
  .home-Hero_SubText {
    margin-top: 14px;
    font-size: 1.9375rem;
  }
}

.home-Hero_ThumbailArea {
  position: absolute;
  z-index: 100;
  bottom: 4px;
  left: 0;
  width: 100%;
  text-align: center;
}

@media print, screen and (min-width: 768px) {
  .home-Hero_ThumbailArea {
    bottom: 20px;
  }
}

.home-Hero_ThumbailAreaInner {
  display: inline-block;
  position: relative;
  padding: 0 80px;
}

.home-Hero_Keyword {
  display: none;
}

@media print, screen and (min-width: 768px) {
  .home-Hero_Keyword {
    display: block;
    position: absolute;
    top: 3px;
    left: 0;
  }
}

.home-Hero_Thumbail {
  opacity: 0.4;
  display: inline-block;
  position: relative;
  width: 10px;
  height: 10px;
  margin: 0 10px 4px;
  border-radius: 5px;
  background: #fff;
}

.home-Hero_Thumbail.active {
  opacity: 1;
}

@media print, screen and (min-width: 768px) {
  .home-Hero_Thumbail {
    opacity: 1;
    width: 64px;
    height: 40px;
    margin: 0 5px;
    border-radius: 0;
    background-color: transparent;
  }
}

.home-Hero_ThumbailSummary {
  opacity: 1;
  display: none;
  position: absolute;
  top: -54px;
  left: -50%;
  width: 130px;
  max-width: none;
  height: 50px;
}

.home-Hero_ThumbailImage {
  display: none;
  border: #fff 1px solid;
}

@media print, screen and (min-width: 768px) {
  .home-Hero_ThumbailImage {
    display: block;
    width: 64px;
    height: 40px;
  }
  .home-Hero_ThumbailImage:hover {
    opacity: 0.6;
  }
  .home-Hero_Thumbail.active .home-Hero_ThumbailImage {
    border: 1px solid #e23d52;
  }
}

.layout-Home_Network:after {
  content: "";
  display: block;
  clear: both;
}

.home-Network_About {
  position: relative;
  background-color: #f47585;
  height: 180px;
}

@media print, screen and (min-width: 768px) {
  .home-Network_About {
    float: left;
    width: 30.72917%;
  }
}

@media print, screen and (min-width: 1024px) {
  .home-Network_About {
    width: 31.62393%;
  }
}

.home-Network_About:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 200px auto;
}

@media print, screen and (min-width: 768px) {
  .home-Network_About:before {
    background-size: 122% auto;
  }
}

@media print, screen and (min-width: 768px) {
  .home-Network_About:before {
    background-size: 65% auto;
  }
}

.home-Network_Other {
  background-color: #f5f5f5;
}

@media print, screen and (min-width: 768px) {
  .home-Network_Other {
    float: left;
    width: 69.27083%;
  }
}

@media print, screen and (min-width: 1024px) {
  .home-Network_Other {
    width: 68.37607%;
  }
}

.home-Network_AboutInner {
  display: table;
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
}

.home-Network_AboutBox {
  display: table-cell;
  vertical-align: middle;
}

.home-Network_AboutText {
  margin-bottom: 18px;
  color: #fff;
  font-size: 1.6875rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.01em;
}

@media print, screen and (min-width: 768px) {
  .home-Network_AboutText {
    font-size: 1.375rem;
    letter-spacing: 0;
  }
}

@media print, screen and (min-width: 1024px) {
  .home-Network_AboutText {
    font-size: 1.75rem;
  }
}

.home-Network_OtherLink {
  display: block;
  margin-bottom: 15px;
  color: #000;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-decoration: none;
}

@media print, screen and (min-width: 768px) {
  .home-Network_OtherLink {
    font-size: 0.875rem;
  }
}

@media print, screen and (min-width: 1024px) {
  .home-Network_OtherLink {
    margin-bottom: 16px;
    font-size: 1.125rem;
  }
}

.home-Network_OtherLink:hover {
  text-decoration: underline;
}

.home-Network_OtherLinkIcon:before {
  font-family: "iconfont";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  vertical-align: middle;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-decoration: none;
  text-transform: none;
  speak: none;
  content: "";
  position: relative;
  top: -0.05em;
  left: 0;
  color: #df0523;
  font-size: 1.1875rem;
}

.home-Network_AboutMore {
  display: block;
  width: 120px;
  height: 37px;
  margin: auto;
  color: #df0523;
  font-size: 0.9375rem;
  line-height: 37px;
  text-decoration: none;
  background-color: #fff;
  transition-duration: 0.3s;
}

@media print, screen and (min-width: 768px) {
  .home-Network_AboutMore {
    width: 122px;
    height: 34px;
    line-height: 34px;
  }
}

@media print, screen and (min-width: 1024px) {
  .home-Network_AboutMore {
    width: 120px;
    height: 32px;
    font-size: 0.875rem;
    line-height: 32px;
  }
  .home-Network_AboutMore:hover {
    color: #fff;
    background-color: #df0523;
  }
}

.home-Network_AboutMoreIcon:before {
  font-family: "iconfont";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  vertical-align: middle;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-decoration: none;
  text-transform: none;
  speak: none;
  content: "";
  position: relative;
  top: -0.05em;
  left: 0;
  font-size: 1.1875rem;
}

.home-Network_OtherInner {
  padding: 20px 15px;
}

@media print, screen and (min-width: 768px) {
  .home-Network_OtherInner {
    padding: 16px;
  }
}

@media print, screen and (min-width: 1024px) {
  .home-Network_OtherInner {
    padding: 20px 24px 24px;
  }
}

.home-Network_OtherNetworks {
  padding-left: 0;
  background-color: #f5f5f5;
  list-style-type: none;
}

.home-Network_OtherNetworks:after {
  content: "";
  display: block;
  clear: both;
}

.home-Network_OtherNetwork {
  float: left;
  width: 50%;
  background-color: #fff;
  box-shadow: 1px 0 0 0 #dadada, 0 1px 0 0 #dadada, 1px 1px 0 0 #dadada, 1px 1px 0 0 #dadada inset;
}

@media print, screen and (min-width: 768px) {
  .home-Network_OtherNetwork {
    width: 33.33333%;
  }
}

@media print, screen and (min-width: 1024px) {
  .home-Network_OtherNetwork {
    width: 25%;
  }
}

.home-Network_OtherNetworkLink {
  display: block;
  padding: 14px 10px;
  color: #df0523;
  font-size: 1rem;
  white-space: nowrap;
  text-decoration: none;
}

@media print, screen and (min-width: 768px) {
  .home-Network_OtherNetworkLink {
    padding: 10px 20px;
  }
}

.home-Network_OtherNetworkIcon:before {
  font-family: "iconfont";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  vertical-align: middle;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-decoration: none;
  text-transform: none;
  speak: none;
  content: "";
  position: relative;
  top: -0.1em;
  left: 0;
  margin-right: 4px;
  font-size: 1.25rem;
}

.home-NewsFeature {
  position: relative;
  display: block;
  text-decoration: none;
}

.home-NewsFeature + .home-NewsFeature {
  margin-top: 20px;
}

@media print, screen and (min-width: 768px) {
  .home-NewsFeature + .home-NewsFeature {
    margin-top: 30px;
  }
}

@media print, screen and (min-width: 1024px) {
  .home-NewsFeature + .home-NewsFeature {
    margin-top: 40px;
  }
}

.home-NewsFeature_Head {
  position: relative;
  display: block;
}

.home-NewsFeature_HeadImage {
  width: 100%;
  display: block;
}

.home-NewsFeature_HeadLink {
  position: absolute;
  bottom: 10%;
  left: 46.875%;
  font-size: 4.375vw;
  line-height: 1;
  color: #000;
}

@media print, screen and (min-width: 768px) {
  .home-NewsFeature_HeadLink {
    font-size: 0.9375rem;
  }
}

.home-NewsFeature_HeadIcon:before {
  content: "";
  font-family: "iconfont";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  vertical-align: middle;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-decoration: none;
  text-transform: none;
  speak: none;
  position: relative;
  top: -0.05em;
  left: 0;
}

.home-NewsFeature_Body {
  padding: 20px 15px;
}

@media print, screen and (min-width: 1024px) {
  .home-NewsFeature_Body {
    padding: 20px 0;
  }
}

.home-NewsFeature_BodyList {
  margin-bottom: 10px;
  padding-left: 0;
  font-size: 0.9375rem;
  list-style-type: none;
}

@media print, screen and (min-width: 768px) {
  .home-NewsFeature_BodyList {
    font-size: 1rem;
    line-height: 1.5;
  }
}

.home-NewsFeature_BodyDate {
  display: inline-block;
  color: #000;
  vertical-align: middle;
}

.home-NewsFeature_BodyDate:after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 1em;
  margin-right: 10px;
  margin-left: 10px;
  vertical-align: middle;
  border-left: 1px solid #ccc;
}

.home-NewsFeature_BodySource {
  display: inline-block;
  color: #777;
  vertical-align: middle;
}

@media print, screen and (min-width: 768px) {
  .home-NewsFeature_BodySource {
    font-size: 0.875rem;
    line-height: 1.8;
  }
}

.home-NewsFeature_BodyLink {
  color: #0071c8;
  text-decoration: none;
  transition-duration: 0.3s;
}

.home-NewsFeature_BodyLink:hover {
  color: #df0523;
  text-decoration: underline;
}

.home-NewsFeature_BodyIconInternal:before,
.home-NewsFeature_BodyIconExternal:before,
.home-NewsFeature_BodyIconPdf:before {
  font-family: "iconfont";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  vertical-align: middle;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-decoration: none;
  text-transform: none;
  speak: none;
  margin-top: -0.1em;
  font-size: 1.5em;
}

.home-NewsItems_IconInternal:before {
  content: "";
}

.home-NewsItems_IconExternal:before {
  content: "";
}

.home-NewsItems_IconPdf:before {
  content: "";
  color: #df0523;
}

.home-NewsItems_Item {
  padding: 20px 15px;
  border-bottom: 1px solid #e6e6e6;
}

@media print, screen and (min-width: 768px) {
  .home-NewsItems_Item {
    padding: 20px 0;
  }
}

.home-NewsItems_List {
  margin-bottom: 10px;
  padding-left: 0;
  font-size: 0.9375rem;
  list-style-type: none;
}

@media print, screen and (min-width: 768px) {
  .home-NewsItems_List {
    font-size: 1rem;
    line-height: 1.5;
  }
}

.home-NewsItems_Date {
  display: inline-block;
  color: #000;
  vertical-align: middle;
}

.home-NewsItems_Date:after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 1em;
  margin-right: 10px;
  margin-left: 10px;
  vertical-align: middle;
  background-color: #ccc;
}

.home-NewsItems_Source {
  display: inline-block;
  color: #777;
  vertical-align: middle;
}

@media print, screen and (min-width: 768px) {
  .home-NewsItems_Source {
    font-size: 0.875rem;
    line-height: 1.8;
  }
}

.home-NewsItems_Link {
  color: #0071c8;
  text-decoration: none;
  transition-duration: 0.3s;
}

.home-NewsItems_Link:hover {
  color: #df0523;
  text-decoration: underline;
}

.home-NewsItems_IconInternal:before,
.home-NewsItems_IconExternal:before,
.home-NewsItems_IconPdf:before {
  font-family: "iconfont";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  vertical-align: middle;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-decoration: none;
  text-transform: none;
  speak: none;
  margin-top: -0.1em;
  font-size: 1.5em;
}

.home-NewsItems_IconInternal:before {
  content: "";
}

.home-NewsItems_IconExternal:before {
  content: "";
}

.home-NewsItems_IconPdf:before {
  content: "";
  color: #df0523;
}

.home-NewsItems_More {
  display: block;
  width: 200px;
  height: 39px;
  margin: 20px auto 40px;
  border: 1px solid #df0523;
  color: #df0523;
  font-size: 0.9375rem;
  line-height: 37px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition-duration: 0.3s;
}

.product-Intro_Grid-secondary .home-NewsItems_More {
  width: 120px;
}

.home-NewsItems_More:hover {
  text-decoration: none;
}

@media print, screen and (min-width: 768px) {
  .home-NewsItems_More {
    width: 268px;
    height: 40px;
    margin-top: 30px;
    margin-bottom: 0;
    line-height: 38px;
  }
}

@media print, screen and (min-width: 1024px) {
  .home-NewsItems_More:hover {
    color: #fff;
    background-color: #df0523;
  }
}

.home-NewsItems_MoreIcon:before {
  content: "";
  font-family: "iconfont";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  vertical-align: middle;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-decoration: none;
  text-transform: none;
  speak: none;
  font-size: 1.1875rem;
  position: relative;
  left: 0;
  top: -0.05em;
}

@media print, screen and (min-width: 768px) {
  .home-NewsItems_MoreIcon:before {
    top: 0;
  }
}

.home-ProductsList {
  display: block;
  padding-left: 0;
  font-size: 0;
  list-style-type: none;
}

.home-ProductsList:after {
  content: "";
  display: block;
  clear: both;
}

@media print, screen and (min-width: 768px) {
  .home-ProductsList {
    margin-left: -30px;
  }
}

.home-ProductsList_Item {
  display: inline-block;
  width: 100%;
  font-size: 0.8125rem;
  line-height: 1.3;
  vertical-align: top;
}

.home-ProductsList_Item:not(:first-of-type) {
  border-top: 1px solid #e0e0e0;
}

@media print, screen and (min-width: 768px) {
  .home-ProductsList_Item:not(:first-of-type) {
    border-top: 0;
  }
}

@media print, screen and (min-width: 768px) {
  .home-ProductsList_Item {
    width: 33.33333%;
    padding-left: 30px;
    font-size: 0.9375rem;
  }
}

@media print, screen and (min-width: 1024px) {
  .home-ProductsList_Item {
    width: 25%;
  }
}

.home-ProductsList_Link {
  display: block;
  padding: 17px 1em 13px 20px;
  color: #000;
  text-decoration: none;
  transition-duration: 0.3s;
}

.home-ProductsList_Link:hover {
  color: #df0523;
  text-decoration: underline;
}

@media print, screen and (min-width: 768px) {
  .home-ProductsList_Link {
    padding: 10px 1em 10px 20px;
  }
}

.home-ProductsList_Icon:before {
  font-family: "iconfont";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  vertical-align: middle;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-decoration: none;
  text-transform: none;
  speak: none;
  content: "";
  position: relative;
  top: -0.1em;
  left: 0;
  margin-left: -13px;
  color: #df0523;
  font-size: 1rem;
}

.home-ProductsList_IconExternal:before,
.home-ProductsList_IconInternal:before {
  font-family: "iconfont";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  vertical-align: middle;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-decoration: none;
  text-transform: none;
  speak: none;
  margin-top: -0.1em;
  color: #888;
  font-size: 1.5em;
}

.home-ProductsList_IconExternal:before {
  content: "";
}

.home-ProductsList_IconInternal:before {
  content: "";
}

.home-ProductsThumb {
  display: block;
  margin-bottom: 15px;
  background-color: #fff;
  text-decoration: none;
  box-shadow: 1px 1px 0px 0px rgba(0, 0, 0, 0.12);
}

@media print, screen and (min-width: 768px) {
  .home-ProductsThumb {
    margin-bottom: 30px;
  }
}

.home-ProductsThumb:hover {
  text-decoration: none;
}

.home-ProductsThumb_Body {
  position: relative;
  padding: 10px 12px 12px 22px;
  font-size: 1rem;
}

@media print, screen and (min-width: 768px) {
  .home-ProductsThumb_Body {
    padding: 16px 12px 16px 22px;
  }
}

.home-ProductsThumb_Text {
  font-size: 0.9375rem;
  line-height: 1.3;
  color: #000;
}

.home-ProductsThumb_TextIcon:before {
  font-family: "iconfont";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  vertical-align: middle;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-decoration: none;
  text-transform: none;
  speak: none;
  content: "";
  position: relative;
  top: -0.1em;
  left: 0;
  margin-left: -15px;
  color: #df0523;
}

.home-NewsTitle {
  padding: 0 15px;
  color: #000;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.2;
}

@media print, screen and (min-width: 768px) {
  .home-NewsTitle {
    padding: 0;
    font-size: 1.75rem;
  }
}

/* #Detail - 下層ページにある詳細ページのレイアウト
   -------------------------------------------------------------------------- */
.layout-Detail_Hero {
  margin-bottom: 6.25vw;
}

@media print, screen and (min-width: 768px) {
  .layout-Detail_Hero {
    margin-bottom: 60px;
  }
}

.layout-Detail_Wrapper {
  max-width: 950px;
	 margin: 0 auto 50px;
}

.layout-Detail_Wrapper:after {
  content: "";
  display: block;
  clear: both;
}

.layout-Detail_Main {
  /*width: 100%;*/
  padding: 0 15px;
}

@media print, screen and (min-width: 1024px) {
  .layout-Detail_Main {
    float: left;
    width: 76.25%;
			padding: 0;
  }
}

.layout-Detail_Main.layout-Detail_Main-news {
  padding: 0;
}

@media print, screen and (min-width: 1024px) {
  .layout-Detail_Main.layout-Detail_Main-news {
    float: left;
    width: 76.25%;
    padding: 0 15px;
  }
}

.layout-Detail_Sidebar {
  /*width: 100%;*/
  margin-top: 20px;
  padding: 20px 15px 0;
}

@media print, screen and (min-width: 1024px) {
  .layout-Detail_Sidebar {
    float: left;
    width: 23.75%;
    margin-top: 0;
    padding-top: 0;
			padding: 0;
    /*padding-left: 30px;*/
  }
}

.layout-Detail_Sidebar_Item {
  margin-bottom: 34px;
}

/* #HomePage - サイトのホームページ（トップページ）のレイアウト
   -------------------------------------------------------------------------- */
.layout-Home_Inner {
  max-width: 1200px;
  margin: auto;
}

@media print, screen and (min-width: 1024px) {
  .layout-Home_Inner {
    padding: 0 15px;
  }
}

.layout-Home_Products {
  padding: 25px 15px 30px;
  background-color: #f5f5f5;
}

@media print, screen and (min-width: 1024px) {
  .layout-Home_Products {
    padding-right: 0;
    padding-left: 0;
  }
}

.layout-Home_News {
  padding: 38px 0 40px;
}

@media print, screen and (min-width: 768px) {
  .layout-Home_News {
    padding: 60px 15px;
  }
}

@media print, screen and (min-width: 1024px) {
  .layout-Home_News {
    padding: 54px 0;
  }
}

.layout-Home_Network {
  margin-bottom: 20px;
}

@media print, screen and (min-width: 768px) {
  .layout-Home_Network {
    margin-bottom: 30px;
    padding: 0 15px;
  }
}

@media print, screen and (min-width: 1024px) {
  .layout-Home_Network {
    margin-bottom: 86px;
    padding: 0;
  }
}

/* #Top - 下層ページのトップ（扉）ページのレイアウト
   -------------------------------------------------------------------------- */
.layout-Top_Hero {
  margin-bottom: 6.25vw;
}

@media print, screen and (min-width: 768px) {
  .layout-Top_Hero {
    margin-bottom: 60px;
  }
}

.layout-Top_Inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.layout-Top_Inner.layout-Top_Inner-result {
  padding: 0;
}

@media print, screen and (min-width: 768px) {
  .layout-Top_Inner.layout-Top_Inner-result {
    padding: 0 15px;
  }
}

.news-Footer {
  border-bottom: 1px solid #e6e6e6;
}

@media print, screen and (min-width: 768px) {
  .news-Footer {
    margin-top: 60px;
    border-bottom: 0;
  }
}

.news-Footer_Inner {
  margin: auto;
  text-align: center;
}

@media print, screen and (min-width: 768px) {
  .news-Footer_Inner {
    max-width: 470px;
  }
}

.news-Items_Item {
  padding: 20px 15px;
  border-bottom: 1px solid #e6e6e6;
}

@media print, screen and (min-width: 1024px) {
  .news-Items_Item {
    padding: 20px 0;
  }
}

.news-Items_List {
  margin-bottom: 10px;
  padding-left: 0;
  font-size: 0.9375rem;
  list-style-type: none;
}

@media print, screen and (min-width: 768px) {
  .news-Items_List {
    font-size: 1rem;
    line-height: 1.5;
  }
}

.news-Items_Date {
  display: inline-block;
  color: #000;
  vertical-align: middle;
}

.news-Items_Date:after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 1em;
  margin-right: 10px;
  margin-left: 10px;
  vertical-align: middle;
  background-color: #ccc;
}

.news-Items_Source {
  display: inline-block;
  color: #777;
  vertical-align: middle;
}

@media print, screen and (min-width: 768px) {
  .news-Items_Source {
    font-size: 0.875rem;
    line-height: 1.8;
  }
}

.news-Items_Link {
  color: #0071c8;
  text-decoration: none;
  transition-duration: 0.3s;
}

.news-Items_Link:hover {
  color: #df0523;
  text-decoration: underline;
}

.news-Items_IconInternal:before,
.news-Items_IconExternal:before,
.news-Items_IconPdf:before {
  font-family: "iconfont";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  vertical-align: middle;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-decoration: none;
  text-transform: none;
  speak: none;
  margin-top: -0.1em;
  font-size: 1.5em;
}

.news-Items_IconInternal:before {
  content: "";
}

.news-Items_IconExternal:before {
  content: "";
}

.news-Items_IconPdf:before {
  content: "";
  color: #df0523;
}

.news-SmallPager {
  text-align: center;
}

.news-SmallPager:after {
  content: "";
  display: block;
  clear: both;
}

@media print, screen and (min-width: 768px) {
  .news-SmallPager {
    display: none;
  }
}

.news-SmallPager_Prev,
.news-SmallPager_Location,
.news-SmallPager_Next {
  float: left;
  height: 60px;
  line-height: 60px;
}

.news-SmallPager_Prev > a,
.news-SmallPager_Prev > .news-SmallPager_Disabled,
.news-SmallPager_Location > a,
.news-SmallPager_Location > .news-SmallPager_Disabled,
.news-SmallPager_Next > a,
.news-SmallPager_Next > .news-SmallPager_Disabled {
  display: block;
}

.news-SmallPager_Disabled {
  opacity: 0.3;
}

.news-SmallPager_Disabled:hover {
  text-decoration: none;
}

.news-SmallPager_Prev,
.news-SmallPager_Next {
  position: relative;
}

.news-SmallPager_Prev {
  width: 27.14286%;
}

.news-SmallPager_Location {
  width: 45.71429%;
  border-right: 1px solid #e6e6e6;
  border-left: 1px solid #e6e6e6;
  font-size: 1.0625rem;
}

.news-SmallPager_Location > span:nth-of-type(2) {
  padding: 0 0.5em;
}

.news-SmallPager_Location > span:nth-of-type(3) {
  color: #0071c8;
}

.news-SmallPager_Next {
  width: 27.14286%;
}

.news-SmallPager_PrevIcon:before,
.news-SmallPager_NextIcon:before {
  font-family: "iconfont";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  vertical-align: middle;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-decoration: none;
  text-transform: none;
  speak: none;
  color: #444;
  font-size: 2em;
}

.news-SmallPager_PrevIcon:before {
  content: "";
}

.news-SmallPager_NextIcon:before {
  content: "";
}

.news-LargePager {
  display: none;
  margin: auto;
  line-height: 1;
  text-align: center;
}

.news-LargePager:after {
  content: "";
  display: block;
  clear: both;
}

@media print, screen and (min-width: 768px) {
  .news-LargePager {
    display: inline-block;
  }
}

.news-LargePager_Disabled {
  opacity: 0.3;
}

.news-LargePager_Disabled:hover {
  text-decoration: none !important;
}

.news-LargePager_Prev {
  float: left;
  width: 110px;
  height: 46px;
  border: 1px solid #e6e6e6;
  border-radius: 3px 0 0 3px;
  font-size: 0.875rem;
  line-height: 46px;
}

.news-LargePager_Prev > a,
.news-LargePager_Prev > .news-LargePager_Disabled {
  display: block;
  color: #444;
  text-decoration: none;
}

.news-LargePager_Prev > a:hover,
.news-LargePager_Prev > .news-LargePager_Disabled:hover {
  text-decoration: underline;
}

.news-LargePager_Next {
  float: left;
  width: 110px;
  height: 46px;
  border: 1px solid #e6e6e6;
  border-radius: 0 3px 3px 0;
  font-size: 0.875rem;
  line-height: 46px;
}

.news-LargePager_Next > a,
.news-LargePager_Next > .news-LargePager_Disabled {
  display: block;
  color: #444;
  text-decoration: none;
}

.news-LargePager_Next > a:hover,
.news-LargePager_Next > .news-LargePager_Disabled:hover {
  text-decoration: underline;
}

.news-LargePager_PrevIcon:before,
.news-LargePager_NextIcon:before {
  font-family: "iconfont";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  vertical-align: middle;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-decoration: none;
  text-transform: none;
  speak: none;
  position: relative;
  color: #444;
  font-size: 1.6em;
}

.news-LargePager_PrevIcon:before {
  content: "";
  left: -2px;
}

.news-LargePager_NextIcon:before {
  content: "";
  left: 4px;
}

.news-LargePager_List {
  float: left;
  overflow: hidden;
  height: 46px;
  padding-left: 0;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  line-height: 46px;
  text-align: center;
  list-style-type: none;
}

.news-LargePager_Item {
  float: left;
  width: 50px;
}

.news-LargePager_Item + .news-LargePager_Item {
  border-left: 1px solid #e6e6e6;
}

.news-LargePager_Link {
  display: block;
  color: #0071c8;
  text-decoration: none;
}

.news-LargePager_Link:hover {
  text-decoration: underline;
}

.news-LargePager_Link.news-LargePager_Link-current {
  color: #444;
  font-weight: 700;
}

.news-Title {
  padding: 0 15px;
  color: #000;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.2;
}

@media print, screen and (min-width: 768px) {
  .news-Title {
    font-size: 1.75rem;
  }
}

@media print, screen and (min-width: 1024px) {
  .news-Title {
    padding: 0;
  }
}

.product-Heading2 {
  color: #000;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 15px 0;
}

@media print, screen and (min-width: 768px) {
  .product-Heading2 {
    font-size: 1.75rem;
  }
}

@media print, screen and (min-width: 768px) {
  .product-Heading2 {
    margin: 20px 0;
  }
}

.product-Intro_Grid {
  display: block;
  margin-left: -10px;
  font-size: 0;
}

@media print, screen and (min-width: 768px) {
  .product-Intro_Grid {
    margin-left: -30px;
  }
}

.product-Intro_GridItem {
  display: inline-block;
  width: 100%;
  padding-left: 10px;
  font-size: 1rem;
  vertical-align: top;
}

@media print, screen and (min-width: 768px) {
  .product-Intro_GridItem.product-Intro_Grid-primary {
    padding-left: 30px;
  }
}

@media print, screen and (min-width: 768px) {
  .product-Intro_GridItem.product-Intro_Grid-secondary {
    width: 50%;
    padding-left: 30px;
  }
}

.product-Intro_Title {
  position: relative;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-top: 13px;
  color: #000;
  font-size: 1.1875rem;
  font-weight: 600;
  line-height: 1.3;
}

.product-Intro_Title:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #cdcdcd;
}

.product-Intro_Title:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 46px;
  height: 1px;
  background-color: #df0523;
}

.product-Intro_Item:after {
  content: "";
  display: block;
  clear: both;
}

@media print, screen and (min-width: 768px) {
  .product-Intro_Grid-primary .product-Intro_Item {
    margin-left: -30px;
  }
}

.product-Intro_Grid-secondary .product-Intro_Item {
  margin-left: -10px;
}

@media print, screen and (min-width: 768px) {
  .product-Intro_Grid-secondary .product-Intro_Item {
    margin-left: -15px;
  }
}

.product-Intro_ImageArea {
  margin-bottom: 20px;
}

@media print, screen and (min-width: 768px) {
  .product-Intro_ImageArea {
    float: left;
  }
}

@media print, screen and (min-width: 768px) {
  .product-Intro_Grid-primary .product-Intro_ImageArea {
    width: 41.66667%;
    padding-left: 30px;
  }
}

.product-Intro_Grid-secondary .product-Intro_ImageArea {
  float: left;
  width: 50%;
  padding-left: 10px;
}

@media print, screen and (min-width: 768px) {
  .product-Intro_Grid-secondary .product-Intro_ImageArea {
    padding-left: 15px;
  }
}

@media print, screen and (min-width: 768px) {
  .product-Intro_Body {
    float: left;
  }
}

@media print, screen and (min-width: 768px) {
  .product-Intro_Grid-primary .product-Intro_Body {
    width: 58.33333%;
    padding-left: 30px;
  }
}

.product-Intro_Grid-secondary .product-Intro_Body {
  float: left;
  width: 50%;
  padding-left: 10px;
}

@media print, screen and (min-width: 768px) {
  .product-Intro_Grid-secondary .product-Intro_Body {
    padding-left: 15px;
  }
}

@media print, screen and (min-width: 768px) {
  .product-Intro_BodyOnly {
    float: left;
  }
}

@media print, screen and (min-width: 768px) {
  .product-Intro_Grid-primary .product-Intro_BodyOnly {
    width: 100%;
    padding-left: 30px;
  }
}

.product-Intro_Grid-secondary .product-Intro_BodyOnly {
  float: left;
  width: 100%;
  padding-left: 10px;
}

@media print, screen and (min-width: 768px) {
  .product-Intro_Grid-secondary .product-Intro_BodyOnly {
    padding-left: 15px;
  }
}

.product-Intro_Text {
  color: #333;
}

.product-Intro_More {
  display: block;
  width: 200px;
  height: 37px;
  margin: 20px auto;
  border: 1px solid #df0523;
  color: #df0523;
  font-size: 0.9375rem;
  line-height: 35px;
  text-align: center;
  text-decoration: none;
  transition-duration: 0.3s;
}

.product-Intro_Grid-secondary .product-Intro_More {
  width: 120px;
}

.product-Intro_More:hover {
  text-decoration: none;
}

@media print, screen and (min-width: 768px) {
  .product-Intro_More {
    width: 120px;
    height: 34px;
    margin-left: 0;
    line-height: 32px;
  }
}

@media print, screen and (min-width: 1024px) {
  .product-Intro_More:hover {
    color: #fff;
    background-color: #df0523;
  }
}

.product-Intro_IconExternal:before,
.product-Intro_IconInternal:before {
  font-family: "iconfont";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  vertical-align: middle;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-decoration: none;
  text-transform: none;
  speak: none;
  position: relative;
  top: -0.1em;
  left: 4px;
  font-size: 1.2em;
}

.product-Intro_IconExternal:before {
  content: "";
}

.product-Intro_IconInternal:before {
  content: "";
}

.product-Items {
  display: block;
  margin-bottom: 20px;
  border: 1px solid #dadada;
  text-decoration: none;
}

@media print, screen and (min-width: 768px) {
  .product-Items {
    margin-bottom: 30px;
  }
}

.product-Items_HeadImage {
  width: 100%;
  max-width: none;
}

.product-Items_Body {
  position: relative;
  padding: 12px 12px 12px 18px;
}

@media print, screen and (min-width: 768px) {
  .product-Items_Body {
    padding: 22px 22px 22px 28px;
  }
}

.product-Items_Text {
  color: #000;
  font-size: 0.9375rem;
  line-height: 1.3;
  text-decoration: none;
}

.product-Items_TextIcon:before {
  font-family: "iconfont";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  vertical-align: middle;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-decoration: none;
  text-transform: none;
  speak: none;
  content: "";
  position: relative;
  top: -0.1em;
  left: 0;
  margin-left: -15px;
  color: #df0523;
}

.product-Items_IconExternal:before,
.product-Items_IconInternal:before {
  font-family: "iconfont";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  vertical-align: middle;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-decoration: none;
  text-transform: none;
  speak: none;
  margin-top: -0.1em;
  margin-left: 3px;
  color: #888;
  font-size: 1.3em;
}

.product-Items_IconExternal:before {
  content: "";
}

.product-Items_IconInternal:before {
  content: "";
}

.product-Office {
  font-size: 1rem;
  line-height: 1.7;
}

@media print, screen and (min-width: 768px) {
  .product-Office {
    line-height: 1.6;
  }
}

.product-Office_Country {
  position: relative;
  margin: 40px 0 20px;
  padding-top: 13px;
  font-size: 1.1875rem;
  font-weight: 600;
  line-height: 1.3;
}

.product-Office_Country:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #cdcdcd;
}

.product-Office_Country:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 46px;
  height: 1px;
  background-color: #df0523;
}

.product-Office_Name {
  margin-bottom: 5px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.7;
}

@media print, screen and (min-width: 768px) {
  .product-Office_Name {
    line-height: 1.3;
  }
}

.product-Office_Tell a {
  margin-left: 0.5em !important;
  color: #0071c8 !important;
  text-decoration: underline !important;
}

.product-Office_Tell a:hover {
  text-decoration: none !important;
}

.product-Office_Tell span {
  margin-left: 0.5em;
}

.product-Office_Email a {
  margin-left: 0.5em !important;
  color: #0071c8 !important;
  text-decoration: underline !important;
}

.product-Office_Email a:hover {
  text-decoration: none !important;
}

.product-Office_Email span {
  margin-left: 0.5em;
}

.result-Contents {
  padding-top: 15px;
}

@media print, screen and (min-width: 768px) {
  .result-Contents {
    padding-top: 22px;
  }
}

.result-Contents_Item {
  padding: 15px;
}

.result-Contents_Item:after {
  content: "";
  display: block;
  clear: both;
}

@media print, screen and (min-width: 768px) {
  .result-Contents_Item {
    padding: 38px 0;
  }
}

.result-Contents_Item + .result-Contents_Item {
  border-top: 1px solid #e6e6e6;
}

.result-Contents_Image {
  display: none;
}

@media print, screen and (min-width: 768px) {
  .result-Contents_Image {
    display: block;
    float: left;
    width: 210px;
    margin-right: 30px;
  }
  .result-Contents_Image img {
    width: 100%;
    max-width: none;
    border: 1px solid #e6e6e6;
    box-shadow: 2px 2px 4px 1px #ededed;
  }
}

@media print, screen and (min-width: 768px) {
  .result-Contents_body {
    display: block;
    overflow: hidden;
  }
}

.result-Contents_body .SS_lastModified {
  color: #444;
}

.result-Contents_Title {
  margin-bottom: 10px;
  color: #000;
  font-size: 1.1875rem;
  font-weight: 600;
  line-height: 1.4;
}

.result-Contents_Link {
  margin-bottom: 10px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media print, screen and (min-width: 768px) {
  .result-Contents_Link {
    line-height: 1.8;
  }
}

.result-Contents_Link a {
  color: #0071c8;
  text-decoration: underline;
}

.result-Contents_Link a[href*=".pdf"]:after {
  font-family: "iconfont";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  vertical-align: middle;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-decoration: none;
  text-transform: none;
  speak: none;
  content: "";
  color: #df0523;
  margin-top: -0.1em;
  font-size: 1.5em;
}

.result-Contents_Summary {
  margin-bottom: 10px;
  color: #444;
}

.result-Contents_LastModified {
  color: #444;
}

@media print, screen and (min-width: 768px) {
  .result-Contents_LastModified {
    display: inline-block;
    line-height: 1.7;
    vertical-align: top;
  }
}

.result-Contents_Company > span {
  display: inline-block;
  padding: 4px;
  color: #fff;
  font-size: 0.875rem;
  line-height: 1;
  background-color: #5b98e1;
}

@media print, screen and (min-width: 768px) {
  .result-Contents_Company > span {
    display: inline-block;
    margin-left: 5px;
    padding: 6px;
    vertical-align: top;
  }
}

.result-Contents_IconPdf:before,
.result-Contents_IconInternal:before,
.result-Contents_IconExternal:before {
  font-family: "iconfont";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  vertical-align: middle;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-decoration: none;
  text-transform: none;
  speak: none;
  margin-top: -0.1em;
  font-size: 1.5em;
}

.result-Contents_IconPdf:before {
  content: "";
  color: #df0523;
}

.result-Contents_IconInternal:before {
  content: "";
}

.result-Contents_IconExternal:before {
  content: "";
}

.result-Footer {
  margin-top: 15px;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
}

@media print, screen and (min-width: 768px) {
  .result-Footer {
    margin-top: 0;
    padding-top: 60px;
    border-top: 1px solid #e6e6e6;
    border-bottom: 0;
  }
}

.result-Footer_Inner {
  margin: auto;
}

@media print, screen and (min-width: 768px) {
  .result-Footer_Inner {
    max-width: 470px;
    text-align: center;
  }
}

.results-Header {
  max-width: 1200px;
  margin: auto;
}

@media print, screen and (min-width: 768px) {
  .results-Header {
    padding: 0 15px;
  }
}

.results-Highlight,
.SS_highlight {
  background-color: #ffcc00;
}

.result-NotFound {
  max-width: 770px;
  margin: 40px auto;
  color: #000;
  font-size: 1.1875rem;
  font-weight: 600;
  line-height: 1.5;
}

@media print, screen and (min-width: 768px) {
  .result-NotFound {
    margin: 30px auto;
  }
}

.result-NotFound em {
  font-style: normal;
}

.result-NotFound_Suggestions {
  max-width: 400px;
  margin: 0 auto 14px;
  font-weight: 600;
  line-height: 1;
}

@media print, screen and (min-width: 768px) {
  .result-NotFound_Suggestions {
    margin-bottom: 8px;
  }
}

.result-NotFound_Message {
  max-width: 400px;
  margin: 0 auto;
  padding-left: 15px;
  list-style-type: none;
}

@media print, screen and (min-width: 768px) {
  .result-NotFound_Message {
    line-height: 1.7;
  }
}

.result-NotFound_MessageItem {
  position: relative;
}

@media print, screen and (min-width: 768px) {
  .result-NotFound_MessageItem {
    line-height: 1.7;
  }
}

.result-NotFound_MessageItem + .result-NotFound_MessageItem {
  margin-top: 6px;
}

@media print, screen and (min-width: 768px) {
  .result-NotFound_MessageItem + .result-NotFound_MessageItem {
    margin-top: 3px;
  }
}

.result-NotFound_MessageItem:after {
  content: "";
  display: block;
  position: absolute;
  top: 0.6em;
  left: -15px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #df0523;
}

.result-SmallPager {
  text-align: center;
}

.result-SmallPager:after {
  content: "";
  display: block;
  clear: both;
}

@media print, screen and (min-width: 768px) {
  .result-SmallPager {
    display: none;
  }
}

.result-SmallPager_Disabled {
  opacity: 0.3;
}

.result-SmallPager_Disabled:hover {
  text-decoration: none !important;
}

.result-SmallPager_Prev,
.result-SmallPager_Location,
.result-SmallPager_Next {
  float: left;
  height: 60px;
  line-height: 60px;
}

.result-SmallPager_Prev > a,
.result-SmallPager_Prev > .result-SmallPager_Disabled,
.result-SmallPager_Location > a,
.result-SmallPager_Location > .result-SmallPager_Disabled,
.result-SmallPager_Next > a,
.result-SmallPager_Next > .result-SmallPager_Disabled {
  display: block;
}

.result-SmallPager_Prev {
  width: 27.14286%;
}

.result-SmallPager_Location {
  width: 45.71429%;
  border-right: 1px solid #e6e6e6;
  border-left: 1px solid #e6e6e6;
  font-size: 1.0625rem;
}

.result-SmallPager_Location > span:nth-of-type(2) {
  padding: 0 0.5em;
}

.result-SmallPager_Location > span:nth-of-type(3) {
  color: #0071c8;
}

.result-SmallPager_Location > span:nth-of-type(3) > a {
  text-decoration: none;
}

.result-SmallPager_Next {
  width: 27.14286%;
}

.result-SmallPager_Prev > span > a,
.result-SmallPager_Next > span > a,
.result-SmallPager_Prev > .result-SmallPager_Disabled,
.result-SmallPager_Next > .result-SmallPager_Disabled {
  display: block;
  width: 100%;
  font-size: 0;
}

.result-SmallPager_Prev > span > a:before,
.result-SmallPager_Next > span > a:before,
.result-SmallPager_Prev > .result-SmallPager_Disabled:before,
.result-SmallPager_Next > .result-SmallPager_Disabled:before {
  font-family: "iconfont";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  vertical-align: middle;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-decoration: none;
  text-transform: none;
  speak: none;
  color: #444;
  font-size: 2rem;
}

.result-SmallPager_Prev > span > a:before,
.result-SmallPager_Prev > .result-SmallPager_Disabled:before {
  content: "";
}

.result-SmallPager_Next > span > a:before,
.result-SmallPager_Next > .result-SmallPager_Disabled:before {
  content: "";
}

.result-LargePager {
  display: none;
  margin: auto;
  line-height: 1;
  text-align: center;
}

.result-LargePager:after {
  content: "";
  display: block;
  clear: both;
}

@media print, screen and (min-width: 768px) {
  .result-LargePager {
    display: inline-block;
  }
}

.result-LargePager_Disabled {
  opacity: 0.3;
}

.result-LargePager_Disabled:hover {
  text-decoration: none !important;
}

.result-LargePager_Prev {
  float: left;
  width: 110px !important;
  height: 46px;
  border: 1px solid #e6e6e6;
  border-right: 0;
  border-radius: 3px 0 0 3px;
  font-size: 0.875rem;
  line-height: 46px;
}

@media print, screen and (min-width: 768px) {
  .result-LargePager_Prev {
    border-top: 0;
  }
}

.result-LargePager_Prev > a,
.result-LargePager_Prev > .result-LargePager_Disabled {
  display: block;
  color: #444;
  text-decoration: none;
}

.result-LargePager_Prev > a:hover,
.result-LargePager_Prev > .result-LargePager_Disabled:hover {
  text-decoration: underline;
}

.result-LargePager_Next {
  float: left;
  width: 110px !important;
  height: 46px;
  border: 1px solid #e6e6e6;
  border-radius: 0 3px 3px 0;
  font-size: 0.875rem;
  line-height: 46px;
}

.result-LargePager_Next > a,
.result-LargePager_Next > .result-LargePager_Disabled {
  display: block;
  color: #444;
  text-decoration: none;
}

.result-LargePager_Next > a:hover,
.result-LargePager_Next > .result-LargePager_Disabled:hover {
  text-decoration: underline;
}

@media print, screen and (min-width: 768px) {
  .result-LargePager_Next {
    border-left: 0;
    border-top: 0;
  }
}

.result-LargePager_Prev a:before,
.result-LargePager_Prev span:before {
  font-family: "iconfont";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  vertical-align: middle;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-decoration: none;
  text-transform: none;
  speak: none;
  position: relative;
  color: #444;
  font-size: 1.6em;
}

.result-LargePager_Next a:after,
.result-LargePager_Next span:after {
  font-family: "iconfont";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  vertical-align: middle;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-decoration: none;
  text-transform: none;
  speak: none;
  position: relative;
  color: #444;
  font-size: 1.6em;
}

.result-LargePager_Prev a:before,
.result-LargePager_Prev span:before {
  content: "";
  left: -2px;
}

.result-LargePager_Next a:after,
.result-LargePager_Next span:after {
  content: "";
  left: 4px;
}

.result-LargePager_List {
  float: left;
  overflow: hidden;
  height: 46px;
  padding-left: 0;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  line-height: 46px;
  text-align: center;
  list-style-type: none;
}

@media print, screen and (min-width: 768px) {
  .result-LargePager_List > li:first-child {
    border-left: 1px solid #e6e6e6;
  }
  .result-LargePager_List > li:last-child {
    border-right: 1px solid #e6e6e6;
  }
}

.result-LargePager_List > li {
  float: left;
  width: 50px;
}

.result-LargePager_List > li + li {
  border-left: 1px solid #e6e6e6;
}

.result-LargePager_List > li.current {
  color: #444;
  font-weight: 700;
}

.result-LargePager_List a {
  display: block;
  color: #0071c8;
  text-decoration: none;
}

.result-LargePager_List a:hover {
  text-decoration: underline;
}

.results-Result {
  margin-top: 10px;
  padding: 20px 15px;
  line-height: 1;
  text-align: center;
  background-color: #f5f5f5;
}

.results-Result:after {
  content: "";
  display: block;
  clear: both;
}

.results-Result_Hits {
  color: #444;
  font-weight: 600;
}

@media print, screen and (min-width: 768px) {
  .results-Result_Hits {
    float: left;
  }
}

.results-Result_Sort {
  margin-top: 14px;
  color: #444;
}

@media print, screen and (min-width: 768px) {
  .results-Result_Sort {
    float: right;
    margin-top: 0;
  }
}

.results-Result_Sort [id="border"] {
  margin: 0 15px;
}

@media print, screen and (min-width: 768px) {
  .results-Result_Sort [id="border"] {
    margin: 0 12px;
  }
}

.results-Result_Sort a {
  color: #0071c8;
  text-decoration: underline;
}

.results-Search {
  padding: 20px 15px;
  background-color: #f5f5f5;
}

@media print, screen and (min-width: 768px) {
  .results-Search {
    padding: 35px 15px 30px;
  }
}

.results-Search_Query {
  position: relative;
  max-width: 770px;
  margin: 0 auto 26px;
}

@media print, screen and (min-width: 768px) {
  .results-Search_Query {
    margin-bottom: 20px;
  }
}

.results-Search_Query > input {
  box-sizing: border-box;
  width: 100%;
  height: 39px;
  padding: 12px;
  border: 1px solid #dadada;
  border-radius: 0;
  font-size: 16px;
  vertical-align: middle;
  background-color: #fff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  /**
     * Normalize.cssのリセットをします。
     */
}

@media print, screen and (min-width: 768px) {
  .results-Search_Query > input {
    height: 58px;
    font-size: 1.375rem;
  }
}

.results-Search_Query > input[type="search"] {
  box-sizing: border-box;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.results-Search_Query > input:focus {
  outline: 0;
  box-shadow: 0 0 5px #1589ee;
}

.results-Search_Query > input:disabled {
  opacity: 0.5;
  background-color: #ddd;
  cursor: not-allowed;
}

.results-Search_Submit {
  position: absolute;
  top: 1px;
  right: 1px;
}

.results-Search_Submit button {
  display: inline-block;
  width: 44px;
  height: 37px;
  margin: 0;
  padding: 0;
  border: none;
  border: 0;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 1em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  background: transparent;
  border: 1px solid #4b4b4b;
  background-color: #4b4b4b;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}

@media print, screen and (min-width: 768px) {
  .results-Search_Submit button {
    width: 69px;
    height: 56px;
  }
}

.results-Search_Submit button[type=button], .results-Search_Submit button[type=reset], .results-Search_Submit button[type=submit] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.results-Search_Submit button:hover, .results-Search_Submit button:active, .results-Search_Submit button:focus {
  text-decoration: none;
}

.results-Search_Submit button:focus {
  outline: 0;
  box-shadow: 0 0 5px #1589ee;
}

.results-Search_Submit button:disabled {
  opacity: 0.5;
  background-color: #ddd;
  cursor: not-allowed;
}

.results-Search_Submit span:before {
  font-family: "iconfont";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  vertical-align: middle;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-decoration: none;
  text-transform: none;
  speak: none;
  content: "";
  color: #fff;
  font-size: 1.8em;
}

@media print, screen and (min-width: 768px) {
  .results-Search_Submit span:before {
    font-size: 3em;
  }
}

.results-Search_Category {
  font-size: 0.9375rem;
  line-height: 1;
  text-align: center;
}

@media print, screen and (min-width: 768px) {
  .results-Search_Category {
    font-size: 1rem;
  }
}

.results-Search_Category input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  overflow: hidden;
  padding: 0;
  clip: rect(0, 0, 0, 0);
}

.results-Search_Category input + label {
  display: inline-block;
  position: relative;
  cursor: pointer;
}

.results-Search_Category input + label:not(:last-of-type) {
  margin-right: 14px;
}

.results-Search_Category input + label:before {
  content: "";
  display: inline-block;
  position: relative;
  top: -0.1em;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  border: 1px solid #dadada;
  border-radius: 50%;
  vertical-align: middle;
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: contain;
}

@media print, screen and (min-width: 768px) {
  .results-Search_Category input + label:before {
    width: 18px;
    height: 18px;
    margin-right: 10px;
  }
}

.results-Search_Category input:focus + label:before {
  border-color: #0071c8;
  border-radius: 50%;
  box-shadow: 0 0 5px #1589ee;
}

.results-Search_Category input:checked + label:before {
  border: 0;
}

.results-Search_Category input:disabled,
.results-Search_Category input + label[disabled] {
  cursor: not-allowed;
  opacity: 0.5;
}

.sitemap-Area_Items + .sitemap-Area_Items {
  margin-top: 30px;
}

@media print, screen and (min-width: 768px) {
  .sitemap-Area_Items + .sitemap-Area_Items {
    margin-top: 0;
  }
}

.sitemap-Category {
  margin-bottom: 25px;
  font-size: 1.5625rem;
  line-height: 1.3;
  font-weight: 700;
}

.sitemap-Pages + .sitemap-Category {
  margin-top: 30px;
}

@media print, screen and (min-width: 768px) {
  .sitemap-Category {
    font-size: 1.75rem;
  }
  .sitemap-Pages + .sitemap-Category {
    margin-top: 30px;
  }
}

.sitemap-Category_Link {
  color: #000;
  text-decoration: none;
}

.sitemap-Category_Icon:before {
  font-family: "iconfont";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  vertical-align: middle;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-decoration: none;
  text-transform: none;
  speak: none;
  content: "";
  font-size: 1.3em;
}

.sitemap-Pages {
  font-size: 0.9375rem;
  margin-left: 20px;
  padding-left: 0;
  list-style-type: none;
  line-height: 1.3;
}

@media print, screen and (min-width: 768px) {
  .sitemap-Pages {
    font-size: 1rem;
  }
}

.sitemap-Pages_Item {
  position: relative;
}

.sitemap-Pages_Item + .sitemap-Pages_Item {
  margin-top: 18px;
}

@media print, screen and (min-width: 768px) {
  .sitemap-Pages_Item + .sitemap-Pages_Item {
    margin-top: 20px;
  }
}

.sitemap-Pages_Item:before {
  content: "";
  display: block;
  position: absolute;
  top: 0.25em;
  left: -16px;
  width: 0;
  height: 0;
  border-width: 5px 0 5px 8px;
  border-style: solid;
  border-color: transparent transparent transparent #df0523;
}

.sitemap-Pages_Link {
  color: #000;
  text-decoration: none;
  transition-duration: 0.3s;
}

.sitemap-Pages_Link:hover {
  color: #df0523;
  text-decoration: underline;
}

.sitemap-Pages_IconExternal:before,
.sitemap-Pages_IconInternal:before {
  font-family: "iconfont";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  vertical-align: middle;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-decoration: none;
  text-transform: none;
  speak: none;
  margin-top: -0.1em;
  color: #888;
  font-size: 1.5em;
}

.sitemap-Pages_IconExternal:before {
  content: "";
}

.sitemap-Pages_IconInternal:before {
  content: "";
}

.sitemap-SubCategory {
  margin-top: 30px;
  margin-bottom: 20px;
  font-size: 1.125rem;
  line-height: 1.3;
  font-weight: 700;
}

@media print, screen and (min-width: 768px) {
  .sitemap-SubCategory {
    margin-top: 20px;
  }
  .sitemap-Pages + .sitemap-SubCategory {
    margin-top: 40px;
  }
}

.sitemap-SubCategory_Link {
  color: #df0523;
  text-decoration: none;
}

.sitemap-SubCategory_Icon:before {
  font-family: "iconfont";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  vertical-align: middle;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-decoration: none;
  text-transform: none;
  speak: none;
  content: "";
  font-size: 1.3em;
}

.support-Heading2 {
  color: #000;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 15px 0;
}

@media print, screen and (min-width: 768px) {
  .support-Heading2 {
    font-size: 1.75rem;
  }
}

@media print, screen and (min-width: 768px) {
  .support-Heading2 {
    margin: 20px 0;
  }
}

.support-Items {
  display: block;
  margin-bottom: 20px;
  border: 1px solid #dadada;
  text-decoration: none;
}

@media print, screen and (min-width: 768px) {
  .support-Items {
    margin-bottom: 30px;
  }
}

.support-Items_HeadImage {
  width: 100%;
  max-width: none;
}

.support-Items_Body {
  position: relative;
  padding: 12px 12px 12px 18px;
}

@media print, screen and (min-width: 768px) {
  .support-Items_Body {
    padding: 22px 22px 22px 28px;
  }
}

.support-Items_Text {
  color: #000;
  font-size: 0.9375rem;
  line-height: 1.3;
  text-decoration: none;
}

.support-Items_TextIcon:before {
  font-family: "iconfont";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  vertical-align: middle;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-decoration: none;
  text-transform: none;
  speak: none;
  content: "";
  position: relative;
  top: -0.1em;
  left: 0;
  margin-left: -15px;
  color: #df0523;
}

.support-Icon-external:before,
.support-Icon-internal:before {
  font-family: "iconfont";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  vertical-align: middle;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-decoration: none;
  text-transform: none;
  speak: none;
  margin-top: -0.1em;
  margin-left: 3px;
  font-size: 1.3em;
  color: #888;
}

.support-Icon-external:before {
  content: "";
}

.support-Icon-internal:before {
  content: "";
}

.support-Text {
  margin-bottom: 20px;
  color: #333;
}

.table-Standard {
  margin-bottom: 20px;
  color: #333;
}

.table-Standard table {
  width: 100%;
  table-layout: fixed;
}

.table-Standard tr {
  border: 1px solid #e6e6e6;
}

.table-Standard th,
.table-Standard td {
  padding: 20px;
  border: 1px solid #e6e6e6;
}

.table-Standard th {
  width: 37.93103%;
  font-weight: 400;
  text-align: left;
  background-color: #f5f5f5;
}

.table-Standard td {
  width: 62.06897%;
}

/*FINESIA*/

.finsia-link {
	padding-left: 0;
	/*margin-top: -30px;*/
	margin-bottom: 40px;
	clear: both;
}

.finsia-link li {
	display: inline-block;
	list-style: none;
}

.finsia-link li:first-of-type {
	margin-right: 10px;
	margin-bottom: 20px;
}

.finsia-link li a {
	margin: 0 auto 20px;
	padding: 10px;
	border: 1px solid #df0523;
	color: #df0523 !important;
	font-size: 0.9375rem;
	line-height: 35px;
	text-align: center;
	text-decoration: none;
	transition-duration: 0.3s;
}

.finsia-link li a:hover {
	 color: #fff !important;
		background-color: #df0523;
}

.finsia-blue {
	color: blue;
	padding: 10px;
	border: 1px solid blue;
	margin-top: -30px;
	margin-bottom: 40px;
}


/*# sourceMappingURL=site.css.map */
