@charset "UTF-8";
/* -------------------------------------------------------------------------

		reset.sass
		
		要素のデフォルトスタイル、フォントサイズのリセット
		
------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------

		style reset
		
------------------------------------------------------------------------- */
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video, main {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section main {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

input, textarea {
  margin: 0;
  padding: 0;
}

small {
  font-size: smaller;
}

sup {
  font-size: 0.7em;
  vertical-align: top;
}

sub {
  font-size: 0.7em;
  vertical-align: baseline;
}

/* -------------------------------------------------------------------------

		font styles
		
------------------------------------------------------------------------- */
/* YUI 3.9.1 (build 5852) Copyright 2013 Yahoo! Inc. http://yuilibrary.com/license/ */
/**
 * Percents could work for IE, but for backCompat purposes, we are using keywords.
 * x-small is for IE6/7 quirks mode.
 */
body {
  font: 13px/1.231 arial,sans-serif;
  *font-size: small;
  /* for IE */
  *font: x-small;
  /* for IE in quirks mode */
}

/**
 * Nudge down to get to 13px equivalent for these form elements
 */
select,
input,
button,
textarea {
  font: 99% arial,sans-serif;
}

/**
 * To help tables remember to inherit
 */
table {
  font-size: inherit;
  font: 100%;
}

/**
 * Bump up IE to get to 13px equivalent for these fixed-width elements
 */
pre,
code,
kbd,
samp,
tt {
  font-family: monospace;
  *font-size: 108%;
  line-height: 100%;
}

/* YUI CSS Detection Stamp */
#yui3-css-stamp.cssfonts {
  display: none;
}

/* -------------------------------------------------------------------------

		vars.sass
		
		scssファイル内で使う変数を定義
		
------------------------------------------------------------------------- */
/* font size
------------------------------------------------- */
/* width
------------------------------------------------- */
/* color
------------------------------------------------- */
/* text color
------------------------------------------------- */
/*
$color_link : #35c1fe;

$color_link_visited : #fff;

$color_link_hover : #fff;

$color_link_active : #fff;
*/
/*

brakepoints

*/
/*

メディアクエリ

ブレークポイント定義
```sass
$breakpoints:(
	tablet: 959px,
	sp: 679px
);
```

● max-widthで指定する
```sass
@include mq(sp) {
	height:40px;
}
```
```output css
@media all and (max-width: 679px) {
	height: 40px;
}
```

● 範囲指定する場合は、引数に2つ入れる
```sass
@include mq(sp tablet) {
	height:40px;
}
```
```output css
@media all and (min-width: 680px) and (max-width: 959px) {
	height: 40px;
}
```

● min-widthで指定する場合は第2引数をtrueにする
```sass
@include mq(tablet, true) {
	height:40px;
}
```
```output css
@media all and (min-width: 960px) {
	height: 40px;
}
```

*/
.btn {
  position: relative;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 50px;
  padding: 15px 40px;
  box-sizing: border-box;
  border: 1px solid #fff;
  outline: none;
  box-shadow: none;
  cursor: pointer;
  background-color: transparent;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  transition: .4s ease-out;
}
@media all and (max-width: 679px) {
  .btn {
    min-height: 40px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.btn::after {
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 50%;
  right: 5px;
  content: "\e909";
  font-size: 1.5em;
  -webkit-transform: translateY(-50%) rotate(180deg);
      -ms-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
.btn:hover {
  color: #333333;
  text-decoration: none;
  background-color: #fff;
}

/*

display用クラス

PC向け
.none
.block
.inline_block
.inline
.table
.table_cell

タブレット向け
.tablet_none
.tablet_block
.tablet_inline_block
.tablet_inline
.tablet_table
.tablet_table_cell

スマホ向け
.sp_none
.sp_block
.sp_inline_block
.sp_inline
.sp_table
.sp_table_cell

*/
.none {
  display: none !important;
}

.block {
  display: block !important;
}

.inline_block {
  display: inline-block  !important;
}

.inline {
  display: inline !important;
}

.table {
  display: table !important;
}

.table_cell {
  display: table-cell !important;
}

.flex {
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

@media all and (max-width: 1199px) {
  .liquid_none {
    display: none !important;
  }

  .liquid_block {
    display: block !important;
  }

  .liquid_inline_block {
    display: inline-block !important;
  }

  .liquid_inline {
    display: inline !important;
  }

  .liquid_table {
    display: table !important;
  }

  .liquid_cell {
    display: table-cell !important;
  }

  .liquid_flex {
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
@media all and (max-width: 679px) {
  .sp_none {
    display: none !important;
  }

  .sp_block {
    display: block !important;
  }

  .sp_inline_block {
    display: inline-block !important;
  }

  .sp_inline {
    display: inline !important;
  }

  .sp_table {
    display: table !important;
  }

  .sp_cell {
    display: table-cell !important;
  }

  .sp_flex {
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
@media all and (max-width: 374px) {
  .sp_sm_none {
    display: none !important;
  }

  .sp_sm_block {
    display: block !important;
  }

  .sp_sm_inline_block {
    display: inline-block !important;
  }

  .sp_sm_inline {
    display: inline !important;
  }

  .sp_sm_table {
    display: table !important;
  }

  .sp_sm_cell {
    display: table-cell !important;
  }

  .sp_sm_flex {
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
/* -------------------------------------------------------------------------

		util.sass
		
		案件に依存せず汎用的に使うClassを定義
		
------------------------------------------------------------------------- */
/* float clear
------------------------------------------------- */
/*for modern browser*/
.clear_fix:after, .grid_system_12:after, .grid_system_2:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  font-size: 0;
  line-height: 0;
  visibility: hidden;
}

/*for IE 5.5-7*/
.clear_fix, .grid_system_12, .grid_system_2 {
  zoom: 1;
}

.clear_both {
  clear: both;
  height: 1px;
  font-size: 1px;
  text-align: center;
  line-height: 0;
}

.clear {
  clear: both;
}

/* float
------------------------------------------------- */
.float_r {
  float: right;
  display: inline;
}

.float_l {
  float: left;
  display: inline;
}

/* margin + padding （0から5刻みでクラスを定義 ex: mb0, mb5, mb10...）
------------------------------------------------- */
.mb0 {
  margin-bottom: 0px !important;
}

.mt0 {
  margin-top: 0px !important;
}

.mr0 {
  margin-right: 0px !important;
}

.ml0 {
  margin-left: 0px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mr5 {
  margin-right: 5px !important;
}

.ml5 {
  margin-left: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mr15 {
  margin-right: 15px !important;
}

.ml15 {
  margin-left: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mr25 {
  margin-right: 25px !important;
}

.ml25 {
  margin-left: 25px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mr35 {
  margin-right: 35px !important;
}

.ml35 {
  margin-left: 35px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.mr45 {
  margin-right: 45px !important;
}

.ml45 {
  margin-left: 45px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mr50 {
  margin-right: 50px !important;
}

.ml50 {
  margin-left: 50px !important;
}

.mb55 {
  margin-bottom: 55px !important;
}

.mt55 {
  margin-top: 55px !important;
}

.mr55 {
  margin-right: 55px !important;
}

.ml55 {
  margin-left: 55px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mr60 {
  margin-right: 60px !important;
}

.ml60 {
  margin-left: 60px !important;
}

.mb65 {
  margin-bottom: 65px !important;
}

.mt65 {
  margin-top: 65px !important;
}

.mr65 {
  margin-right: 65px !important;
}

.ml65 {
  margin-left: 65px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mr70 {
  margin-right: 70px !important;
}

.ml70 {
  margin-left: 70px !important;
}

.mb75 {
  margin-bottom: 75px !important;
}

.mt75 {
  margin-top: 75px !important;
}

.mr75 {
  margin-right: 75px !important;
}

.ml75 {
  margin-left: 75px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mr80 {
  margin-right: 80px !important;
}

.ml80 {
  margin-left: 80px !important;
}

@media all and (max-width: 1199px) {
  .liquid_mb0 {
    margin-bottom: 0px !important;
  }

  .liquid_mt0 {
    margin-top: 0px !important;
  }

  .liquid_mr0 {
    margin-right: 0px !important;
  }

  .liquid_ml0 {
    margin-left: 0px !important;
  }

  .liquid_mb5 {
    margin-bottom: 5px !important;
  }

  .liquid_mt5 {
    margin-top: 5px !important;
  }

  .liquid_mr5 {
    margin-right: 5px !important;
  }

  .liquid_ml5 {
    margin-left: 5px !important;
  }

  .liquid_mb10 {
    margin-bottom: 10px !important;
  }

  .liquid_mt10 {
    margin-top: 10px !important;
  }

  .liquid_mr10 {
    margin-right: 10px !important;
  }

  .liquid_ml10 {
    margin-left: 10px !important;
  }

  .liquid_mb15 {
    margin-bottom: 15px !important;
  }

  .liquid_mt15 {
    margin-top: 15px !important;
  }

  .liquid_mr15 {
    margin-right: 15px !important;
  }

  .liquid_ml15 {
    margin-left: 15px !important;
  }

  .liquid_mb20 {
    margin-bottom: 20px !important;
  }

  .liquid_mt20 {
    margin-top: 20px !important;
  }

  .liquid_mr20 {
    margin-right: 20px !important;
  }

  .liquid_ml20 {
    margin-left: 20px !important;
  }

  .liquid_mb25 {
    margin-bottom: 25px !important;
  }

  .liquid_mt25 {
    margin-top: 25px !important;
  }

  .liquid_mr25 {
    margin-right: 25px !important;
  }

  .liquid_ml25 {
    margin-left: 25px !important;
  }

  .liquid_mb30 {
    margin-bottom: 30px !important;
  }

  .liquid_mt30 {
    margin-top: 30px !important;
  }

  .liquid_mr30 {
    margin-right: 30px !important;
  }

  .liquid_ml30 {
    margin-left: 30px !important;
  }

  .liquid_mb35 {
    margin-bottom: 35px !important;
  }

  .liquid_mt35 {
    margin-top: 35px !important;
  }

  .liquid_mr35 {
    margin-right: 35px !important;
  }

  .liquid_ml35 {
    margin-left: 35px !important;
  }

  .liquid_mb40 {
    margin-bottom: 40px !important;
  }

  .liquid_mt40 {
    margin-top: 40px !important;
  }

  .liquid_mr40 {
    margin-right: 40px !important;
  }

  .liquid_ml40 {
    margin-left: 40px !important;
  }

  .liquid_mb45 {
    margin-bottom: 45px !important;
  }

  .liquid_mt45 {
    margin-top: 45px !important;
  }

  .liquid_mr45 {
    margin-right: 45px !important;
  }

  .liquid_ml45 {
    margin-left: 45px !important;
  }

  .liquid_mb50 {
    margin-bottom: 50px !important;
  }

  .liquid_mt50 {
    margin-top: 50px !important;
  }

  .liquid_mr50 {
    margin-right: 50px !important;
  }

  .liquid_ml50 {
    margin-left: 50px !important;
  }

  .liquid_mb55 {
    margin-bottom: 55px !important;
  }

  .liquid_mt55 {
    margin-top: 55px !important;
  }

  .liquid_mr55 {
    margin-right: 55px !important;
  }

  .liquid_ml55 {
    margin-left: 55px !important;
  }

  .liquid_mb60 {
    margin-bottom: 60px !important;
  }

  .liquid_mt60 {
    margin-top: 60px !important;
  }

  .liquid_mr60 {
    margin-right: 60px !important;
  }

  .liquid_ml60 {
    margin-left: 60px !important;
  }

  .liquid_mb65 {
    margin-bottom: 65px !important;
  }

  .liquid_mt65 {
    margin-top: 65px !important;
  }

  .liquid_mr65 {
    margin-right: 65px !important;
  }

  .liquid_ml65 {
    margin-left: 65px !important;
  }

  .liquid_mb70 {
    margin-bottom: 70px !important;
  }

  .liquid_mt70 {
    margin-top: 70px !important;
  }

  .liquid_mr70 {
    margin-right: 70px !important;
  }

  .liquid_ml70 {
    margin-left: 70px !important;
  }

  .liquid_mb75 {
    margin-bottom: 75px !important;
  }

  .liquid_mt75 {
    margin-top: 75px !important;
  }

  .liquid_mr75 {
    margin-right: 75px !important;
  }

  .liquid_ml75 {
    margin-left: 75px !important;
  }

  .liquid_mb80 {
    margin-bottom: 80px !important;
  }

  .liquid_mt80 {
    margin-top: 80px !important;
  }

  .liquid_mr80 {
    margin-right: 80px !important;
  }

  .liquid_ml80 {
    margin-left: 80px !important;
  }
}
@media all and (max-width: 679px) {
  .sp_mb0 {
    margin-bottom: 0px !important;
  }

  .sp_mt0 {
    margin-top: 0px !important;
  }

  .sp_mr0 {
    margin-right: 0px !important;
  }

  .sp_ml0 {
    margin-left: 0px !important;
  }

  .sp_mb5 {
    margin-bottom: 5px !important;
  }

  .sp_mt5 {
    margin-top: 5px !important;
  }

  .sp_mr5 {
    margin-right: 5px !important;
  }

  .sp_ml5 {
    margin-left: 5px !important;
  }

  .sp_mb10 {
    margin-bottom: 10px !important;
  }

  .sp_mt10 {
    margin-top: 10px !important;
  }

  .sp_mr10 {
    margin-right: 10px !important;
  }

  .sp_ml10 {
    margin-left: 10px !important;
  }

  .sp_mb15 {
    margin-bottom: 15px !important;
  }

  .sp_mt15 {
    margin-top: 15px !important;
  }

  .sp_mr15 {
    margin-right: 15px !important;
  }

  .sp_ml15 {
    margin-left: 15px !important;
  }

  .sp_mb20 {
    margin-bottom: 20px !important;
  }

  .sp_mt20 {
    margin-top: 20px !important;
  }

  .sp_mr20 {
    margin-right: 20px !important;
  }

  .sp_ml20 {
    margin-left: 20px !important;
  }

  .sp_mb25 {
    margin-bottom: 25px !important;
  }

  .sp_mt25 {
    margin-top: 25px !important;
  }

  .sp_mr25 {
    margin-right: 25px !important;
  }

  .sp_ml25 {
    margin-left: 25px !important;
  }

  .sp_mb30 {
    margin-bottom: 30px !important;
  }

  .sp_mt30 {
    margin-top: 30px !important;
  }

  .sp_mr30 {
    margin-right: 30px !important;
  }

  .sp_ml30 {
    margin-left: 30px !important;
  }

  .sp_mb35 {
    margin-bottom: 35px !important;
  }

  .sp_mt35 {
    margin-top: 35px !important;
  }

  .sp_mr35 {
    margin-right: 35px !important;
  }

  .sp_ml35 {
    margin-left: 35px !important;
  }

  .sp_mb40 {
    margin-bottom: 40px !important;
  }

  .sp_mt40 {
    margin-top: 40px !important;
  }

  .sp_mr40 {
    margin-right: 40px !important;
  }

  .sp_ml40 {
    margin-left: 40px !important;
  }

  .sp_mb45 {
    margin-bottom: 45px !important;
  }

  .sp_mt45 {
    margin-top: 45px !important;
  }

  .sp_mr45 {
    margin-right: 45px !important;
  }

  .sp_ml45 {
    margin-left: 45px !important;
  }

  .sp_mb50 {
    margin-bottom: 50px !important;
  }

  .sp_mt50 {
    margin-top: 50px !important;
  }

  .sp_mr50 {
    margin-right: 50px !important;
  }

  .sp_ml50 {
    margin-left: 50px !important;
  }

  .sp_mb55 {
    margin-bottom: 55px !important;
  }

  .sp_mt55 {
    margin-top: 55px !important;
  }

  .sp_mr55 {
    margin-right: 55px !important;
  }

  .sp_ml55 {
    margin-left: 55px !important;
  }

  .sp_mb60 {
    margin-bottom: 60px !important;
  }

  .sp_mt60 {
    margin-top: 60px !important;
  }

  .sp_mr60 {
    margin-right: 60px !important;
  }

  .sp_ml60 {
    margin-left: 60px !important;
  }

  .sp_mb65 {
    margin-bottom: 65px !important;
  }

  .sp_mt65 {
    margin-top: 65px !important;
  }

  .sp_mr65 {
    margin-right: 65px !important;
  }

  .sp_ml65 {
    margin-left: 65px !important;
  }

  .sp_mb70 {
    margin-bottom: 70px !important;
  }

  .sp_mt70 {
    margin-top: 70px !important;
  }

  .sp_mr70 {
    margin-right: 70px !important;
  }

  .sp_ml70 {
    margin-left: 70px !important;
  }

  .sp_mb75 {
    margin-bottom: 75px !important;
  }

  .sp_mt75 {
    margin-top: 75px !important;
  }

  .sp_mr75 {
    margin-right: 75px !important;
  }

  .sp_ml75 {
    margin-left: 75px !important;
  }

  .sp_mb80 {
    margin-bottom: 80px !important;
  }

  .sp_mt80 {
    margin-top: 80px !important;
  }

  .sp_mr80 {
    margin-right: 80px !important;
  }

  .sp_ml80 {
    margin-left: 80px !important;
  }
}
@media all and (max-width: 374px) {
  .sp_sm_mb0 {
    margin-bottom: 0px !important;
  }

  .sp_sm_mt0 {
    margin-top: 0px !important;
  }

  .sp_sm_mr0 {
    margin-right: 0px !important;
  }

  .sp_sm_ml0 {
    margin-left: 0px !important;
  }

  .sp_sm_mb5 {
    margin-bottom: 5px !important;
  }

  .sp_sm_mt5 {
    margin-top: 5px !important;
  }

  .sp_sm_mr5 {
    margin-right: 5px !important;
  }

  .sp_sm_ml5 {
    margin-left: 5px !important;
  }

  .sp_sm_mb10 {
    margin-bottom: 10px !important;
  }

  .sp_sm_mt10 {
    margin-top: 10px !important;
  }

  .sp_sm_mr10 {
    margin-right: 10px !important;
  }

  .sp_sm_ml10 {
    margin-left: 10px !important;
  }

  .sp_sm_mb15 {
    margin-bottom: 15px !important;
  }

  .sp_sm_mt15 {
    margin-top: 15px !important;
  }

  .sp_sm_mr15 {
    margin-right: 15px !important;
  }

  .sp_sm_ml15 {
    margin-left: 15px !important;
  }

  .sp_sm_mb20 {
    margin-bottom: 20px !important;
  }

  .sp_sm_mt20 {
    margin-top: 20px !important;
  }

  .sp_sm_mr20 {
    margin-right: 20px !important;
  }

  .sp_sm_ml20 {
    margin-left: 20px !important;
  }

  .sp_sm_mb25 {
    margin-bottom: 25px !important;
  }

  .sp_sm_mt25 {
    margin-top: 25px !important;
  }

  .sp_sm_mr25 {
    margin-right: 25px !important;
  }

  .sp_sm_ml25 {
    margin-left: 25px !important;
  }

  .sp_sm_mb30 {
    margin-bottom: 30px !important;
  }

  .sp_sm_mt30 {
    margin-top: 30px !important;
  }

  .sp_sm_mr30 {
    margin-right: 30px !important;
  }

  .sp_sm_ml30 {
    margin-left: 30px !important;
  }

  .sp_sm_mb35 {
    margin-bottom: 35px !important;
  }

  .sp_sm_mt35 {
    margin-top: 35px !important;
  }

  .sp_sm_mr35 {
    margin-right: 35px !important;
  }

  .sp_sm_ml35 {
    margin-left: 35px !important;
  }

  .sp_sm_mb40 {
    margin-bottom: 40px !important;
  }

  .sp_sm_mt40 {
    margin-top: 40px !important;
  }

  .sp_sm_mr40 {
    margin-right: 40px !important;
  }

  .sp_sm_ml40 {
    margin-left: 40px !important;
  }

  .sp_sm_mb45 {
    margin-bottom: 45px !important;
  }

  .sp_sm_mt45 {
    margin-top: 45px !important;
  }

  .sp_sm_mr45 {
    margin-right: 45px !important;
  }

  .sp_sm_ml45 {
    margin-left: 45px !important;
  }

  .sp_sm_mb50 {
    margin-bottom: 50px !important;
  }

  .sp_sm_mt50 {
    margin-top: 50px !important;
  }

  .sp_sm_mr50 {
    margin-right: 50px !important;
  }

  .sp_sm_ml50 {
    margin-left: 50px !important;
  }

  .sp_sm_mb55 {
    margin-bottom: 55px !important;
  }

  .sp_sm_mt55 {
    margin-top: 55px !important;
  }

  .sp_sm_mr55 {
    margin-right: 55px !important;
  }

  .sp_sm_ml55 {
    margin-left: 55px !important;
  }

  .sp_sm_mb60 {
    margin-bottom: 60px !important;
  }

  .sp_sm_mt60 {
    margin-top: 60px !important;
  }

  .sp_sm_mr60 {
    margin-right: 60px !important;
  }

  .sp_sm_ml60 {
    margin-left: 60px !important;
  }

  .sp_sm_mb65 {
    margin-bottom: 65px !important;
  }

  .sp_sm_mt65 {
    margin-top: 65px !important;
  }

  .sp_sm_mr65 {
    margin-right: 65px !important;
  }

  .sp_sm_ml65 {
    margin-left: 65px !important;
  }

  .sp_sm_mb70 {
    margin-bottom: 70px !important;
  }

  .sp_sm_mt70 {
    margin-top: 70px !important;
  }

  .sp_sm_mr70 {
    margin-right: 70px !important;
  }

  .sp_sm_ml70 {
    margin-left: 70px !important;
  }

  .sp_sm_mb75 {
    margin-bottom: 75px !important;
  }

  .sp_sm_mt75 {
    margin-top: 75px !important;
  }

  .sp_sm_mr75 {
    margin-right: 75px !important;
  }

  .sp_sm_ml75 {
    margin-left: 75px !important;
  }

  .sp_sm_mb80 {
    margin-bottom: 80px !important;
  }

  .sp_sm_mt80 {
    margin-top: 80px !important;
  }

  .sp_sm_mr80 {
    margin-right: 80px !important;
  }

  .sp_sm_ml80 {
    margin-left: 80px !important;
  }
}
.pb0 {
  padding-bottom: 0px !important;
}

.pt0 {
  padding-top: 0px !important;
}

.pr0 {
  padding-right: 0px !important;
}

.pl0 {
  padding-left: 0px !important;
}

.pb5 {
  padding-bottom: 5px !important;
}

.pt5 {
  padding-top: 5px !important;
}

.pr5 {
  padding-right: 5px !important;
}

.pl5 {
  padding-left: 5px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pr10 {
  padding-right: 10px !important;
}

.pl10 {
  padding-left: 10px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pr15 {
  padding-right: 15px !important;
}

.pl15 {
  padding-left: 15px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pr20 {
  padding-right: 20px !important;
}

.pl20 {
  padding-left: 20px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pr25 {
  padding-right: 25px !important;
}

.pl25 {
  padding-left: 25px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pr30 {
  padding-right: 30px !important;
}

.pl30 {
  padding-left: 30px !important;
}

.pb35 {
  padding-bottom: 35px !important;
}

.pt35 {
  padding-top: 35px !important;
}

.pr35 {
  padding-right: 35px !important;
}

.pl35 {
  padding-left: 35px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pr40 {
  padding-right: 40px !important;
}

.pl40 {
  padding-left: 40px !important;
}

.pb45 {
  padding-bottom: 45px !important;
}

.pt45 {
  padding-top: 45px !important;
}

.pr45 {
  padding-right: 45px !important;
}

.pl45 {
  padding-left: 45px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pr50 {
  padding-right: 50px !important;
}

.pl50 {
  padding-left: 50px !important;
}

.pb55 {
  padding-bottom: 55px !important;
}

.pt55 {
  padding-top: 55px !important;
}

.pr55 {
  padding-right: 55px !important;
}

.pl55 {
  padding-left: 55px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pr60 {
  padding-right: 60px !important;
}

.pl60 {
  padding-left: 60px !important;
}

.pb65 {
  padding-bottom: 65px !important;
}

.pt65 {
  padding-top: 65px !important;
}

.pr65 {
  padding-right: 65px !important;
}

.pl65 {
  padding-left: 65px !important;
}

.pb70 {
  padding-bottom: 70px !important;
}

.pt70 {
  padding-top: 70px !important;
}

.pr70 {
  padding-right: 70px !important;
}

.pl70 {
  padding-left: 70px !important;
}

.pb75 {
  padding-bottom: 75px !important;
}

.pt75 {
  padding-top: 75px !important;
}

.pr75 {
  padding-right: 75px !important;
}

.pl75 {
  padding-left: 75px !important;
}

.pb80 {
  padding-bottom: 80px !important;
}

.pt80 {
  padding-top: 80px !important;
}

.pr80 {
  padding-right: 80px !important;
}

.pl80 {
  padding-left: 80px !important;
}

@media all and (max-width: 1199px) {
  .liquid_pb0 {
    padding-bottom: 0px !important;
  }

  .liquid_pt0 {
    padding-top: 0px !important;
  }

  .liquid_pr0 {
    padding-right: 0px !important;
  }

  .liquid_pl0 {
    padding-left: 0px !important;
  }

  .liquid_pb5 {
    padding-bottom: 5px !important;
  }

  .liquid_pt5 {
    padding-top: 5px !important;
  }

  .liquid_pr5 {
    padding-right: 5px !important;
  }

  .liquid_pl5 {
    padding-left: 5px !important;
  }

  .liquid_pb10 {
    padding-bottom: 10px !important;
  }

  .liquid_pt10 {
    padding-top: 10px !important;
  }

  .liquid_pr10 {
    padding-right: 10px !important;
  }

  .liquid_pl10 {
    padding-left: 10px !important;
  }

  .liquid_pb15 {
    padding-bottom: 15px !important;
  }

  .liquid_pt15 {
    padding-top: 15px !important;
  }

  .liquid_pr15 {
    padding-right: 15px !important;
  }

  .liquid_pl15 {
    padding-left: 15px !important;
  }

  .liquid_pb20 {
    padding-bottom: 20px !important;
  }

  .liquid_pt20 {
    padding-top: 20px !important;
  }

  .liquid_pr20 {
    padding-right: 20px !important;
  }

  .liquid_pl20 {
    padding-left: 20px !important;
  }

  .liquid_pb25 {
    padding-bottom: 25px !important;
  }

  .liquid_pt25 {
    padding-top: 25px !important;
  }

  .liquid_pr25 {
    padding-right: 25px !important;
  }

  .liquid_pl25 {
    padding-left: 25px !important;
  }

  .liquid_pb30 {
    padding-bottom: 30px !important;
  }

  .liquid_pt30 {
    padding-top: 30px !important;
  }

  .liquid_pr30 {
    padding-right: 30px !important;
  }

  .liquid_pl30 {
    padding-left: 30px !important;
  }

  .liquid_pb35 {
    padding-bottom: 35px !important;
  }

  .liquid_pt35 {
    padding-top: 35px !important;
  }

  .liquid_pr35 {
    padding-right: 35px !important;
  }

  .liquid_pl35 {
    padding-left: 35px !important;
  }

  .liquid_pb40 {
    padding-bottom: 40px !important;
  }

  .liquid_pt40 {
    padding-top: 40px !important;
  }

  .liquid_pr40 {
    padding-right: 40px !important;
  }

  .liquid_pl40 {
    padding-left: 40px !important;
  }

  .liquid_pb45 {
    padding-bottom: 45px !important;
  }

  .liquid_pt45 {
    padding-top: 45px !important;
  }

  .liquid_pr45 {
    padding-right: 45px !important;
  }

  .liquid_pl45 {
    padding-left: 45px !important;
  }

  .liquid_pb50 {
    padding-bottom: 50px !important;
  }

  .liquid_pt50 {
    padding-top: 50px !important;
  }

  .liquid_pr50 {
    padding-right: 50px !important;
  }

  .liquid_pl50 {
    padding-left: 50px !important;
  }

  .liquid_pb55 {
    padding-bottom: 55px !important;
  }

  .liquid_pt55 {
    padding-top: 55px !important;
  }

  .liquid_pr55 {
    padding-right: 55px !important;
  }

  .liquid_pl55 {
    padding-left: 55px !important;
  }

  .liquid_pb60 {
    padding-bottom: 60px !important;
  }

  .liquid_pt60 {
    padding-top: 60px !important;
  }

  .liquid_pr60 {
    padding-right: 60px !important;
  }

  .liquid_pl60 {
    padding-left: 60px !important;
  }

  .liquid_pb65 {
    padding-bottom: 65px !important;
  }

  .liquid_pt65 {
    padding-top: 65px !important;
  }

  .liquid_pr65 {
    padding-right: 65px !important;
  }

  .liquid_pl65 {
    padding-left: 65px !important;
  }

  .liquid_pb70 {
    padding-bottom: 70px !important;
  }

  .liquid_pt70 {
    padding-top: 70px !important;
  }

  .liquid_pr70 {
    padding-right: 70px !important;
  }

  .liquid_pl70 {
    padding-left: 70px !important;
  }

  .liquid_pb75 {
    padding-bottom: 75px !important;
  }

  .liquid_pt75 {
    padding-top: 75px !important;
  }

  .liquid_pr75 {
    padding-right: 75px !important;
  }

  .liquid_pl75 {
    padding-left: 75px !important;
  }

  .liquid_pb80 {
    padding-bottom: 80px !important;
  }

  .liquid_pt80 {
    padding-top: 80px !important;
  }

  .liquid_pr80 {
    padding-right: 80px !important;
  }

  .liquid_pl80 {
    padding-left: 80px !important;
  }
}
@media all and (max-width: 679px) {
  .sp_pb0 {
    padding-bottom: 0px !important;
  }

  .sp_pt0 {
    padding-top: 0px !important;
  }

  .sp_pr0 {
    padding-right: 0px !important;
  }

  .sp_pl0 {
    padding-left: 0px !important;
  }

  .sp_pb5 {
    padding-bottom: 5px !important;
  }

  .sp_pt5 {
    padding-top: 5px !important;
  }

  .sp_pr5 {
    padding-right: 5px !important;
  }

  .sp_pl5 {
    padding-left: 5px !important;
  }

  .sp_pb10 {
    padding-bottom: 10px !important;
  }

  .sp_pt10 {
    padding-top: 10px !important;
  }

  .sp_pr10 {
    padding-right: 10px !important;
  }

  .sp_pl10 {
    padding-left: 10px !important;
  }

  .sp_pb15 {
    padding-bottom: 15px !important;
  }

  .sp_pt15 {
    padding-top: 15px !important;
  }

  .sp_pr15 {
    padding-right: 15px !important;
  }

  .sp_pl15 {
    padding-left: 15px !important;
  }

  .sp_pb20 {
    padding-bottom: 20px !important;
  }

  .sp_pt20 {
    padding-top: 20px !important;
  }

  .sp_pr20 {
    padding-right: 20px !important;
  }

  .sp_pl20 {
    padding-left: 20px !important;
  }

  .sp_pb25 {
    padding-bottom: 25px !important;
  }

  .sp_pt25 {
    padding-top: 25px !important;
  }

  .sp_pr25 {
    padding-right: 25px !important;
  }

  .sp_pl25 {
    padding-left: 25px !important;
  }

  .sp_pb30 {
    padding-bottom: 30px !important;
  }

  .sp_pt30 {
    padding-top: 30px !important;
  }

  .sp_pr30 {
    padding-right: 30px !important;
  }

  .sp_pl30 {
    padding-left: 30px !important;
  }

  .sp_pb35 {
    padding-bottom: 35px !important;
  }

  .sp_pt35 {
    padding-top: 35px !important;
  }

  .sp_pr35 {
    padding-right: 35px !important;
  }

  .sp_pl35 {
    padding-left: 35px !important;
  }

  .sp_pb40 {
    padding-bottom: 40px !important;
  }

  .sp_pt40 {
    padding-top: 40px !important;
  }

  .sp_pr40 {
    padding-right: 40px !important;
  }

  .sp_pl40 {
    padding-left: 40px !important;
  }

  .sp_pb45 {
    padding-bottom: 45px !important;
  }

  .sp_pt45 {
    padding-top: 45px !important;
  }

  .sp_pr45 {
    padding-right: 45px !important;
  }

  .sp_pl45 {
    padding-left: 45px !important;
  }

  .sp_pb50 {
    padding-bottom: 50px !important;
  }

  .sp_pt50 {
    padding-top: 50px !important;
  }

  .sp_pr50 {
    padding-right: 50px !important;
  }

  .sp_pl50 {
    padding-left: 50px !important;
  }

  .sp_pb55 {
    padding-bottom: 55px !important;
  }

  .sp_pt55 {
    padding-top: 55px !important;
  }

  .sp_pr55 {
    padding-right: 55px !important;
  }

  .sp_pl55 {
    padding-left: 55px !important;
  }

  .sp_pb60 {
    padding-bottom: 60px !important;
  }

  .sp_pt60 {
    padding-top: 60px !important;
  }

  .sp_pr60 {
    padding-right: 60px !important;
  }

  .sp_pl60 {
    padding-left: 60px !important;
  }

  .sp_pb65 {
    padding-bottom: 65px !important;
  }

  .sp_pt65 {
    padding-top: 65px !important;
  }

  .sp_pr65 {
    padding-right: 65px !important;
  }

  .sp_pl65 {
    padding-left: 65px !important;
  }

  .sp_pb70 {
    padding-bottom: 70px !important;
  }

  .sp_pt70 {
    padding-top: 70px !important;
  }

  .sp_pr70 {
    padding-right: 70px !important;
  }

  .sp_pl70 {
    padding-left: 70px !important;
  }

  .sp_pb75 {
    padding-bottom: 75px !important;
  }

  .sp_pt75 {
    padding-top: 75px !important;
  }

  .sp_pr75 {
    padding-right: 75px !important;
  }

  .sp_pl75 {
    padding-left: 75px !important;
  }

  .sp_pb80 {
    padding-bottom: 80px !important;
  }

  .sp_pt80 {
    padding-top: 80px !important;
  }

  .sp_pr80 {
    padding-right: 80px !important;
  }

  .sp_pl80 {
    padding-left: 80px !important;
  }
}
@media all and (max-width: 374px) {
  .sp_sm_pb0 {
    padding-bottom: 0px !important;
  }

  .sp_sm_pt0 {
    padding-top: 0px !important;
  }

  .sp_sm_pr0 {
    padding-right: 0px !important;
  }

  .sp_sm_pl0 {
    padding-left: 0px !important;
  }

  .sp_sm_pb5 {
    padding-bottom: 5px !important;
  }

  .sp_sm_pt5 {
    padding-top: 5px !important;
  }

  .sp_sm_pr5 {
    padding-right: 5px !important;
  }

  .sp_sm_pl5 {
    padding-left: 5px !important;
  }

  .sp_sm_pb10 {
    padding-bottom: 10px !important;
  }

  .sp_sm_pt10 {
    padding-top: 10px !important;
  }

  .sp_sm_pr10 {
    padding-right: 10px !important;
  }

  .sp_sm_pl10 {
    padding-left: 10px !important;
  }

  .sp_sm_pb15 {
    padding-bottom: 15px !important;
  }

  .sp_sm_pt15 {
    padding-top: 15px !important;
  }

  .sp_sm_pr15 {
    padding-right: 15px !important;
  }

  .sp_sm_pl15 {
    padding-left: 15px !important;
  }

  .sp_sm_pb20 {
    padding-bottom: 20px !important;
  }

  .sp_sm_pt20 {
    padding-top: 20px !important;
  }

  .sp_sm_pr20 {
    padding-right: 20px !important;
  }

  .sp_sm_pl20 {
    padding-left: 20px !important;
  }

  .sp_sm_pb25 {
    padding-bottom: 25px !important;
  }

  .sp_sm_pt25 {
    padding-top: 25px !important;
  }

  .sp_sm_pr25 {
    padding-right: 25px !important;
  }

  .sp_sm_pl25 {
    padding-left: 25px !important;
  }

  .sp_sm_pb30 {
    padding-bottom: 30px !important;
  }

  .sp_sm_pt30 {
    padding-top: 30px !important;
  }

  .sp_sm_pr30 {
    padding-right: 30px !important;
  }

  .sp_sm_pl30 {
    padding-left: 30px !important;
  }

  .sp_sm_pb35 {
    padding-bottom: 35px !important;
  }

  .sp_sm_pt35 {
    padding-top: 35px !important;
  }

  .sp_sm_pr35 {
    padding-right: 35px !important;
  }

  .sp_sm_pl35 {
    padding-left: 35px !important;
  }

  .sp_sm_pb40 {
    padding-bottom: 40px !important;
  }

  .sp_sm_pt40 {
    padding-top: 40px !important;
  }

  .sp_sm_pr40 {
    padding-right: 40px !important;
  }

  .sp_sm_pl40 {
    padding-left: 40px !important;
  }

  .sp_sm_pb45 {
    padding-bottom: 45px !important;
  }

  .sp_sm_pt45 {
    padding-top: 45px !important;
  }

  .sp_sm_pr45 {
    padding-right: 45px !important;
  }

  .sp_sm_pl45 {
    padding-left: 45px !important;
  }

  .sp_sm_pb50 {
    padding-bottom: 50px !important;
  }

  .sp_sm_pt50 {
    padding-top: 50px !important;
  }

  .sp_sm_pr50 {
    padding-right: 50px !important;
  }

  .sp_sm_pl50 {
    padding-left: 50px !important;
  }

  .sp_sm_pb55 {
    padding-bottom: 55px !important;
  }

  .sp_sm_pt55 {
    padding-top: 55px !important;
  }

  .sp_sm_pr55 {
    padding-right: 55px !important;
  }

  .sp_sm_pl55 {
    padding-left: 55px !important;
  }

  .sp_sm_pb60 {
    padding-bottom: 60px !important;
  }

  .sp_sm_pt60 {
    padding-top: 60px !important;
  }

  .sp_sm_pr60 {
    padding-right: 60px !important;
  }

  .sp_sm_pl60 {
    padding-left: 60px !important;
  }

  .sp_sm_pb65 {
    padding-bottom: 65px !important;
  }

  .sp_sm_pt65 {
    padding-top: 65px !important;
  }

  .sp_sm_pr65 {
    padding-right: 65px !important;
  }

  .sp_sm_pl65 {
    padding-left: 65px !important;
  }

  .sp_sm_pb70 {
    padding-bottom: 70px !important;
  }

  .sp_sm_pt70 {
    padding-top: 70px !important;
  }

  .sp_sm_pr70 {
    padding-right: 70px !important;
  }

  .sp_sm_pl70 {
    padding-left: 70px !important;
  }

  .sp_sm_pb75 {
    padding-bottom: 75px !important;
  }

  .sp_sm_pt75 {
    padding-top: 75px !important;
  }

  .sp_sm_pr75 {
    padding-right: 75px !important;
  }

  .sp_sm_pl75 {
    padding-left: 75px !important;
  }

  .sp_sm_pb80 {
    padding-bottom: 80px !important;
  }

  .sp_sm_pt80 {
    padding-top: 80px !important;
  }

  .sp_sm_pr80 {
    padding-right: 80px !important;
  }

  .sp_sm_pl80 {
    padding-left: 80px !important;
  }
}
/* align
------------------------------------------------- */
.align_l {
  text-align: left !important;
}

.align_r {
  text-align: right !important;
}

.align_c {
  text-align: center !important;
}

/* font
------------------------------------------------- */
.smaller {
  font-size: smaller !important;
}

.larger {
  font-size: larger !important;
}

.bold {
  font-weight: bold !important;
}

/* fluid image
------------------------------------------------- */
.fluid_img {
  max-width: 100%;
  height: auto;
  width: auto\9;
  /* IE8 */
}

/* display
------------------------------------------------- */
.block {
  display: block !important;
}

.inline {
  display: inline !important;
}

/* justify layout
Usage:
<ul class="just_layout">
	<li class ="just_item"></li>
</ul>
------------------------------------------------- */
.just_layout {
  text-align: justify;
  text-justify: distribute-all-lines;
  zoom: 1;
  display: block;
  line-height: 0;
}
.just_layout:after {
  line-height: 0;
  visibility: hidden;
  content: "";
  display: inline-block;
  width: 100%;
}
.just_layout .just_item {
  display: inline-block;
  text-align: left;
  vertical-align: top;
  line-height: normal;
}

* html .just_layout .just_item {
  display: inline;
  zoom: 1;
}

*:first-child + html .just_layout .just_item {
  display: inline;
  zoom: 1;
}

/* list
------------------------------------------------- */
.list_disc {
  margin-left: 1.2em;
  list-style: disc;
}

.list_square {
  margin-left: 1.2em;
  list-style: square;
}

.list_decimal {
  margin-left: 1.7em;
  list-style: decimal;
}

.list_decimal_zero {
  margin-left: 2.3em;
  list-style: decimal-leading-zero;
}

/* list style (IE8以上)
------------------------------------------------- */
/* ---- ※ ---- */
.list_asterisk li {
  text-indent: -1.3em;
  margin-left: 1.3em;
}
.list_asterisk li:before {
  content: "※ ";
}
.list_asterisk li > * {
  text-indent: 0;
}

/* ---- ・ ---- */
.list_dot li {
  text-indent: -1em;
  margin-left: 1em;
}
.list_dot li:before {
  content: "・";
}
.list_dot li > * {
  text-indent: 0;
}

/* ---- 1. ---- */
.list_decimal_01 li {
  counter-increment: decimal_01;
  margin-left: 1.4em;
  text-indent: -1.4em;
}
.list_decimal_01 li:before {
  content: counter(decimal_01) ". ";
}
.list_decimal_01 li > * {
  text-indent: 0;
}

/* ---- (1) ---- */
.list_decimal_02 li {
  counter-increment: decimal_02;
  margin-left: 1.9em;
  text-indent: -1.9em;
}
.list_decimal_02 li:before {
  content: "(" counter(decimal_02) ") ";
}
.list_decimal_02 li > * {
  text-indent: 0;
}

/* ---- [1] ---- */
.list_decimal_03 li {
  counter-increment: decimal_03;
  margin-left: 1.9em;
  text-indent: -1.9em;
}
.list_decimal_03 li:before {
  content: "[" counter(decimal_03) "] ";
}
.list_decimal_03 li > * {
  text-indent: 0;
}

/* ---- 丸数字 ---- */
.list_decimal_04 li {
  counter-increment: decimal_04;
  margin-left: 1.7em;
  text-indent: -1.7em;
}
.list_decimal_04 li:before {
  content: counter(decimal_04);
  border: 1px solid #000;
  padding: 0 3px;
  font-size: 10px;
  margin-right: 5px;
  text-align: center;
  line-height: 1;
  border-radius: 50%;
}
.list_decimal_04 li > * {
  text-indent: 0;
}

/* ---- upper alpha ---- */
.list_upper_alpha_01 li {
  counter-increment: upper_alpha_01;
  margin-left: 1.5em;
  text-indent: -1.5em;
}
.list_upper_alpha_01 li:before {
  content: counter(upper_alpha_01,upper-alpha) ") ";
}
.list_upper_alpha_01 li > * {
  text-indent: 0;
}

/* 注釈 (IE8以上)
------------------------------------------------- */
/* ---- ※（注釈） ---- */
.notes {
  margin-left: 1.3em;
  text-indent: -1.3em;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.notes:before {
  content: "※ ";
}
.notes > * {
  text-indent: 0;
}

/* ---- ※n （番号付き注釈）---- */
.notes_num {
  counter-increment: decimal_notes;
  margin-left: 2em;
  text-indent: -2em;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.notes_num:before {
  content: "※" counter(decimal_notes) " ";
}
.notes_num > * {
  text-indent: 0;
}

/* 章番号用mixin (IE8以上)
usage:
■キャプションに章番号をつける場合
$counterName: oreoreCounter;
.parent-section {
	@include resetCounter($counterName);
	h2 {
		@include addCounter($counterName, '第', '章');
	}
}
■入れ子になってるリストに通し番号(1-1-1など）を付ける場合
$counterName: listCounter;
ol {
	@include resetCounter($counterName);
	li {
		@include addCounters($counterName, '-');
	}
}
------------------------------------------------- */
/* グリッドレイアウト用mixin (IE8以上)
usage:
■12分割で間隔が20pxのグリッドのクラスを作る場合
・SASS
@include grid_system(12, 20px);
・HTML
<div class="grid_system_12">  ← このdivへの幅指定はNG
	<div class="grid_6"></div> ┐
	<div class="grid_3"></div> ├ 子要素は合計が12になるようにクラス名を付ける
	<div class="grid_3"></div> ┘
</div>
------------------------------------------------- */
/*
 Miscellaneous
*/
.no_scroll {
  overflow: hidden;
}

.no_wrap {
  white-space: nowrap;
}

.invisible {
  visibility: hidden;
}

@font-face {
  font-family: 'icomoon';
  src: url("fonts/icomoon.eot?bb2zgi");
  src: url("fonts/icomoon.eot?bb2zgi#iefix") format("embedded-opentype"), url("fonts/icomoon.ttf?bb2zgi") format("truetype"), url("fonts/icomoon.woff?bb2zgi") format("woff"), url("fonts/icomoon.svg?bb2zgi#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}
[class^="font_icon_"]:before,
[class*=" font_icon_"]:before,
[class^="font_icon_"]:after,
[class*=" font_icon_"]:after {
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.font_icon_arrow_right_02:before {
  content: "\e900";
}

.font_icon_blank:before {
  content: "\e901";
}

.font_icon_document:before {
  content: "\e902";
}

.font_icon_download:before {
  content: "\e903";
}

.font_icon_link:before {
  content: "\e904";
}

.font_icon_movie:before {
  content: "\e905";
}

.font_icon_pagetop:before {
  content: "\e906";
}

.font_icon_anchor:before {
  content: "\e907";
}

.font_icon_arrow_down:before {
  content: "\e908";
}

.font_icon_arrow_left:before {
  content: "\e909";
}

.font_icon_arrow_preview:before {
  content: "\e90a";
}

.font_icon_arrow_right:after {
  content: "\e90b";
}

/* -------------------------------------------------------------------------

		module.sass
		
		見出し、ボタン、表など繰り返し使うパーツ（モジュール）のスタイルを定義
		
------------------------------------------------------------------------- */
.grid_system_12 {
  margin-left: -3%;
  width: auto !important;
}
.grid_system_12 > .grid_1 {
  float: left;
  box-sizing: border-box;
  padding-left: 3%;
  width: 8.33333%;
}
.grid_system_12 > .grid_2 {
  float: left;
  box-sizing: border-box;
  padding-left: 3%;
  width: 16.66667%;
}
.grid_system_12 > .grid_3 {
  float: left;
  box-sizing: border-box;
  padding-left: 3%;
  width: 25%;
}
.grid_system_12 > .grid_4 {
  float: left;
  box-sizing: border-box;
  padding-left: 3%;
  width: 33.33333%;
}
.grid_system_12 > .grid_5 {
  float: left;
  box-sizing: border-box;
  padding-left: 3%;
  width: 41.66667%;
}
.grid_system_12 > .grid_6 {
  float: left;
  box-sizing: border-box;
  padding-left: 3%;
  width: 50%;
}
.grid_system_12 > .grid_7 {
  float: left;
  box-sizing: border-box;
  padding-left: 3%;
  width: 58.33333%;
}
.grid_system_12 > .grid_8 {
  float: left;
  box-sizing: border-box;
  padding-left: 3%;
  width: 66.66667%;
}
.grid_system_12 > .grid_9 {
  float: left;
  box-sizing: border-box;
  padding-left: 3%;
  width: 75%;
}
.grid_system_12 > .grid_10 {
  float: left;
  box-sizing: border-box;
  padding-left: 3%;
  width: 83.33333%;
}
.grid_system_12 > .grid_11 {
  float: left;
  box-sizing: border-box;
  padding-left: 3%;
  width: 91.66667%;
}
.grid_system_12 > .grid_12 {
  float: left;
  box-sizing: border-box;
  padding-left: 3%;
  width: 100%;
}

.grid_system_2 {
  margin-left: -3%;
  width: auto !important;
}
.grid_system_2 > .grid_1 {
  float: left;
  box-sizing: border-box;
  padding-left: 3%;
  width: 50%;
}
.grid_system_2 > .grid_2 {
  float: left;
  box-sizing: border-box;
  padding-left: 3%;
  width: 100%;
}

.page_content h1 {
  margin-bottom: 20px;
  font-size: 197%;
}
.page_content h2 {
  margin-bottom: 20px;
  font-size: 138.5%;
  border-left: 3px solid #a50000;
  padding-left: 10px;
}
.page_content h3 {
  margin-top: 20px;
  margin-bottom: 20px;
  color: #a50000;
}
.page_content p, .page_content li, .page_content dt, .page_content dd {
  line-height: 1.7;
}
.page_content ul, .page_content ol {
  margin-top: 20px;
  margin-bottom: 20px;
}
.page_content hr {
  margin-bottom: 30px;
  border-color: #e5e5e5;
}
.page_content * + hr {
  margin-top: 30px;
}
.page_content .panels .panel_item {
  background-color: #eee;
  border: 1px solid #ccc;
  padding: 20px;
  border-radius: 3px;
}
.page_content .panels + .panels {
  margin-top: 20px;
}

/* text link
------------------------------------------------- */
a {
  color: #35c1fe;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* btn_box
------------------------------------------------- */
.btn_box,
.wp-block-button a {
  background: #a50000;
  color: #fff;
  display: block;
  border-radius: 3px;
  text-align: center;
  transition: 0.4s;
  border: 1px solid #a50000;
  box-sizing: border-box;
}
.btn_box:hover,
.wp-block-button a:hover {
  text-decoration: none;
  background: #621111;
  border-color: #621111;
}
.btn_box:before,
.wp-block-button a:before {
  vertical-align: middle;
  margin-right: 10px;
}

/* font_icon_
------------------------------------------------- */
.font_icon_link:before {
  font-size: 77%;
}

.font_icon_blank:before {
  font-size: 116%;
}

/* section_box
------------------------------------------------- */
.section_box {
  padding: 60px 0;
  width: 100%;
}
@media all and (min-width: 680px) {
  .section_box {
    min-width: 960px;
  }
}
@media all and (max-width: 679px) {
  .section_box {
    padding-top: 35px;
    padding-bottom: 35px;
  }
}
.section_box.gray_bg {
  background-color: #eee;
}
.section_box > .wp-block-group__inner-container,
.section_box > .inner {
  width: 960px;
  margin: 0 auto;
  margin-right: auto;
  margin-left: auto;
}
@media all and (max-width: 679px) {
  .section_box > .wp-block-group__inner-container,
  .section_box > .inner {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
  }
}

hr.dot_line,
hr.wp-block-separator {
  width: 100%;
  height: 1px;
  display: block;
  border: none;
  background: url("/resource/hp_img_common/bg_dot_line.gif") repeat-x;
  opacity: 1;
  margin: 0 auto;
}
@media all and (min-width: 680px) {
  hr.dot_line,
  hr.wp-block-separator {
    min-width: 960px;
  }
}
@media all and (min-width: 680px) {
  hr.dot_line,
  hr.wp-block-separator {
    width: 960px;
  }
}
hr.dot_line.is-style-wide, hr.dot_line--wide,
hr.wp-block-separator.is-style-wide,
hr.wp-block-separator--wide {
  width: 100%;
}

/* intro
------------------------------------------------- */
.intro p {
  text-align: center;
  font-size: 108%;
}

/* article_title
------------------------------------------------- */
.article_title {
  background: url("/resource/hp_img_common/bg_title_border.gif") left bottom no-repeat;
}
.article_title h3 {
  padding-left: 20px;
  font-size: 189%;
  line-height: 1.5em;
  margin-bottom: 20px;
  font-weight: normal;
}
@media all and (max-width: 679px) {
  .article_title h3 {
    font-size: 153.9%;
    margin-bottom: 30px;
  }
}

.gray_title {
  font-size: 189%;
  font-weight: normal;
  line-height: 1.5em;
  margin-bottom: 20px;
}

/* label_gray
------------------------------------------------- */
.label_gray {
  background-color: #888;
  border-radius: 3px;
  color: #fff;
  padding: 5px;
  margin-right: 5px;
}

.label_gray02 {
  background-color: #ebebeb;
  text-align: center;
  vertical-align: middle;
}

/* tab
------------------------------------------------- */
.tab {
  border-bottom: 1px solid #ccc;
  margin-bottom: 35px;
}
.tab ul {
  width: 100%;
  margin: 0 auto;
}
.tab ul li {
  border-right: 1px solid #ccc;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  float: left;
  padding: 15px;
  box-sizing: border-box;
  text-align: center;
  font-size: 131%;
  cursor: pointer;
  background-color: #e2e2e2;
  position: relative;
  top: 1px;
}
.tab ul li:first-child {
  border-left: 1px solid #ccc;
}
.tab ul li.active {
  background-color: #eeeeee;
  border-bottom: 1px solid transparent;
}
.tab.two_tab li {
  width: 50%;
}

.tab_content {
  width: 100%;
  margin: 0 auto;
}
.tab_content img {
  max-width: 100%;
  height: auto;
}

/* lower_breadcrumbs
------------------------------------------------- */
.lower_breadcrumbs,
.index_breadcrumbs {
  background: #eee;
  height: 29px;
  text-align: right;
}
@media all and (max-width: 679px) {
  .lower_breadcrumbs,
  .index_breadcrumbs {
    display: none;
  }
}
.lower_breadcrumbs ul,
.index_breadcrumbs ul {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.lower_breadcrumbs ul li,
.index_breadcrumbs ul li {
  display: inline-block;
  line-height: 29px;
  font-size: 85%;
}
.lower_breadcrumbs ul li + li:before,
.index_breadcrumbs ul li + li:before {
  content: ">";
  margin-right: 5px;
  margin-left: 5px;
}
.lower_breadcrumbs ul li a,
.index_breadcrumbs ul li a {
  text-decoration: underline;
  color: #333333;
}
.lower_breadcrumbs ul li a:hover,
.index_breadcrumbs ul li a:hover {
  text-decoration: none;
}

.index_breadcrumbs {
  position: relative;
  z-index: 1;
  width: 100%;
  background-color: transparent;
  color: #fff;
  float: left;
}
.index_breadcrumbs ul li a {
  color: #fff;
}

/* link
------------------------------------------------- */
.link:before {
  display: inline-block;
  vertical-align: top;
  line-height: 1.5;
  color: #a50000;
  padding-right: 3px;
}
.link a {
  color: #a50000;
  font-weight: bold;
  display: inline-block;
  width: 160px;
}

/* 導入事例詳細下部の数字アイコン
------------------------------------------------- */
.number_01:before,
.number_02:before,
.number_03:before,
.number_04:before,
.number_05:before {
  display: inline-block;
  background: #a50000;
  border-radius: 17px;
  width: 17px;
  height: 15px;
  color: #fff;
  text-align: center;
  margin-right: 7px;
  font-size: 77%;
  font-weight: normal;
  vertical-align: middle;
  padding-top: 2px;
}
.number_01 .break,
.number_02 .break,
.number_03 .break,
.number_04 .break,
.number_05 .break {
  display: inline-block;
  vertical-align: top;
}

.number_01:before {
  content: "1";
}

.number_02:before {
  content: "2";
}

.number_03:before {
  content: "3";
}

.number_04:before {
  content: "4";
}

.number_05:before {
  content: "5";
}

/* 特定のサイズの箱
------------------------------------------------- */
.w300 {
  width: 300px;
}

.w660 {
  width: 660px;
}

.w355 {
  width: 355px;
}

.w580 {
  width: 580px;
}

.w960 {
  width: 960px;
}

.warning {
  display: table;
  margin-left: -30px;
}
.warning .text {
  display: table-cell;
  vertical-align: middle;
  font-weight: bold;
  padding-left: 10px;
}
.warning:before {
  content: "";
  width: 127px;
  height: 66px;
  background: url("/resource/hp_img_common/bg_warning.gif") left top no-repeat;
  display: table-cell;
}

/* page_title
------------------------------------------------- */
.page_title {
  height: 140px;
}
.page_title h2 {
  padding-top: 44px;
  text-align: center;
}

/* case_label
------------------------------------------------- */
.case_label {
  color: #fff;
}
.case_label .number {
  background: #a50000;
}

sup {
  vertical-align: bottom;
}

.arrow_text {
  position: absolute;
  top: 25%;
  font-size: 85%;
  color: #333333;
  font-size: 11px;
}

.font_icon_arrow_right_02 {
  color: #663c58;
  font-size: 64px;
}
.font_icon_arrow_right_02:before {
  position: absolute;
}

.va_t {
  vertical-align: top;
}

.va_b {
  vertical-align: bottom;
}

/* anchor_nav
------------------------------------------------- */
.anchor_nav {
  width: 100%;
  padding-top: 45px;
  padding-bottom: 30px;
  margin: 0 auto;
}
@media all and (min-width: 680px) {
  .anchor_nav {
    min-width: 960px;
  }
}
@media all and (min-width: 680px) {
  .anchor_nav {
    width: 960px;
  }
}
@media all and (max-width: 679px) {
  .anchor_nav {
    padding: 35px 15px 10px;
    box-sizing: border-box;
  }
}
.anchor_nav.wp-block-table {
  margin: 0 auto;
}
.anchor_nav ul {
  letter-spacing: -0.4em;
  border-right: 1px solid #ccc;
  box-sizing: border-box;
}
.anchor_nav ul .anchor_link {
  display: inline-block;
  border-left: 1px solid #ccc;
  box-sizing: border-box;
  letter-spacing: normal;
  width: 137px;
  text-align: center;
}
.anchor_nav ul .anchor_link a {
  display: inline-block;
  color: #333333;
  padding: 5px 0;
  margin: 0 auto;
}
.anchor_nav ul .anchor_link a:before {
  display: inline-block;
  vertical-align: top;
  padding-right: 5px;
  font-size: 77%;
  padding-top: 2px;
}
.anchor_nav table {
  display: block;
  width: 100%;
  letter-spacing: -0.4em;
  box-sizing: border-box;
}
.anchor_nav table tbody {
  display: block;
  width: 100%;
}
.anchor_nav table tr {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  width: 100%;
  margin-bottom: -15px;
}
@media all and (min-width: 680px) {
  .anchor_nav table tr {
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.anchor_nav table td {
  display: block;
  -webkit-flex: 0 1 auto;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  width: calc(14.28%);
  margin-bottom: 15px;
  padding: 0;
  border: none;
  border-right: 1px solid #ccc;
  box-sizing: border-box;
  letter-spacing: normal;
  text-align: center;
}
@media all and (min-width: 680px) {
  .anchor_nav table td {
    margin-right: -1px;
    border-left: 1px solid #ccc;
  }
}
@media all and (max-width: 679px) {
  .anchor_nav table td {
    width: 50%;
  }
}
@media all and (max-width: 679px) {
  .anchor_nav table td:nth-child(odd) {
    border-left: 1px solid #ccc;
  }
}
.anchor_nav table a {
  display: inline-block;
  color: #333333;
  padding: 5px 0;
  margin: 0 auto;
}
.anchor_nav table a:before {
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e907";
  display: inline-block;
  vertical-align: top;
  padding-right: 5px;
  font-size: 77%;
  padding-top: 2px;
}

.wp-block-image img {
  height: auto;
}

/* -------------------------------------------------------------------------

		layout.sass
		
		ヘッダー、フッター、サイドバー等のサイトの構造に関わるスタイルを定義
		
------------------------------------------------------------------------- */
/* body
------------------------------------------------- */
body {
  font-family: arial,'ヒラギノ角ゴ ProN W3','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
  -webkit-text-size-adjust: 100%;
}

img {
  vertical-align: middle;
}

p {
  line-height: 1.5em;
}
@media all and (max-width: 679px) {
  p {
    line-height: 1.75;
  }
}

/* noscript
------------------------------------------------- */
.noscript {
  background-color: #fff9d7;
  padding: 10px 0;
  text-align: center;
  font-weight: bold;
}

/* site header
------------------------------------------------- */
@media all and (min-width: 680px) {
  .site_header {
    display: none;
  }
}
@media all and (max-width: 679px) {
  .site_header {
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    box-sizing: border-box;
    background-color: #000;
  }
}
.site_header__inner {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  box-sizing: border-box;
}
@media all and (max-width: 679px) {
  .site_header__inner {
    padding: 15px 60px 15px 15px;
    background-color: #000;
  }
}
.site_header__nav_toggle {
  position: fixed;
  top: 0;
  right: 0;
  width: 60px;
  height: 80px;
  padding: 0;
  background-color: transparent;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 0;
}
@media all and (min-width: 680px) {
  .site_header__nav_toggle {
    display: none;
  }
}
.site_header__nav_toggle:focus {
  outline: none;
}
.site_header__nav_toggle_bar {
  content: '';
  position: absolute;
  right: 15px;
  display: block;
  height: 3px;
  width: 35px;
  background: #fff;
}
.site_header__nav_toggle_bar--top {
  top: 26px;
}
.site_header__nav_toggle_bar--middle {
  top: 39px;
}
.site_header__nav_toggle_bar--bottom {
  top: 52px;
}
.site_header__nav {
  position: fixed;
  top: 100%;
  left: 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  opacity: 0;
}
@media all and (min-width: 680px) {
  .site_header__nav {
    display: none;
    height: calc(var(--vh, 1vh) * 100);
  }
}
.site_header__nav_list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.site_header__nav_item:not(:last-child) {
  margin-bottom: 40px;
}
.site_header__language {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.site_header__language li {
  padding-right: 8px;
}
.site_header__language li a {
  display: inline-block;
  border-bottom: 1px solid #000;
  color: #fff;
  transition: 0.4s;
}
.site_header__language li a:hover {
  border-color: #fff;
}
.site_header__language li .nav_active {
  border-bottom: 1px solid #fff;
}
.site_header__language li + li {
  padding-left: 10px;
  background: url(/resource/hp_img_common/bg_localize_border.svg) no-repeat center left;
}
.site_header .corp_logo {
  margin-left: auto;
  transition: opacity .4s;
}
.site_header .corp_logo:hover {
  opacity: .7;
}
.site_header .corp_logo a {
  display: block;
  width: 100%;
  height: 100%;
}
.site_header .corp_logo img {
  width: 67px;
  height: auto;
}

@media all and (max-width: 679px) {
  .site_header_placeholder {
    height: 80px;
  }
}

.gnav_container {
  width: 100%;
  height: 100px;
}
@media all and (min-width: 680px) {
  .gnav_container {
    min-width: 960px;
  }
}
@media all and (max-width: 679px) {
  .gnav_container {
    display: none;
  }
}

/* global navi
------------------------------------------------- */
.global_nav {
  position: fixed;
  top: 0;
  z-index: 10000;
  width: 100% !important;
  height: 100px;
  background-image: url(/resource/hp_img_common/bg_shadow.png) repeat-x;
  background-color: #000000;
  box-sizing: border-box;
}
.global_nav.-static {
  position: static;
}
.global_nav .site_id {
  float: left;
}
.global_nav .inner {
  padding: 25px 0;
  margin: 0 auto;
  width: 960px;
  height: 100%;
  box-sizing: border-box;
}
.global_nav .localize_nav {
  float: right;
  margin: 30px 0 0 10px;
}
.global_nav .localize_nav li {
  float: left;
  padding-right: 5px;
}
.global_nav .localize_nav li a {
  display: inline-block;
  border-bottom: 1px solid #000;
  transition: 0.4s;
  color: #fff;
}
.global_nav .localize_nav li a:hover {
  border-color: #fff;
}
.global_nav .localize_nav li .nav_active {
  border-bottom: 1px solid #fff;
}
.global_nav .localize_nav li + li {
  padding-left: 10px;
  background: url(/resource/hp_img_common/bg_localize_border.png) no-repeat center left;
}
.global_nav .main_nav {
  float: left;
  margin: 10px auto 0;
}
.global_nav .main_nav li {
  float: left;
}
.global_nav .main_nav li a {
  display: inline-block;
  padding: 5px 0;
  border-width: 0;
  border-bottom: 1px solid #000;
  transition: 0.4s;
}
.global_nav .main_nav li a:hover {
  border-color: #fff;
}
.global_nav .main_nav li .nav_active {
  border-bottom: 1px solid #fff;
}
.global_nav .main_nav li + li {
  margin-left: 30px;
}
.global_nav .corp_logo {
  float: right;
  margin: 8px 0 0 30px;
  transition: opacity .4s;
}
.global_nav .corp_logo:hover {
  opacity: .7;
}
.global_nav .corp_logo a {
  display: block;
  width: 100%;
  height: 100%;
}

.features .global_nav .main_nav .gnav_features a,
.products .global_nav .main_nav .gnav_products a,
.cases .global_nav .main_nav .gnav_cases a,
.topics .global_nav .main_nav .gnav_topics a,
.contact .global_nav .main_nav .gnav_contact a {
  border-color: #fff;
}

/* container
------------------------------------------------- */
.content_box {
  width: 100%;
  margin-bottom: 60px;
}
@media all and (min-width: 680px) {
  .content_box {
    min-width: 960px;
  }
}
@media all and (max-width: 679px) {
  .content_box {
    margin-bottom: 30px;
  }
}

.inner {
  width: 960px;
  margin: 0 auto;
  margin-right: auto;
  margin-left: auto;
}
@media all and (max-width: 679px) {
  .inner {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
  }
}

/* breadcrumbs
------------------------------------------------- */
.breadcrumbs {
  width: 100%;
  background-color: #a50000;
  height: 40px;
}
@media all and (min-width: 680px) {
  .breadcrumbs {
    min-width: 960px;
  }
}
.breadcrumbs ul {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-right: 60px;
  box-sizing: border-box;
}
@media all and (max-width: 679px) {
  .breadcrumbs ul {
    padding-right: 45px;
  }
}
.breadcrumbs li {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  font-size: 85%;
  line-height: 40px;
  color: #fff;
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
}
.breadcrumbs li:before {
  content: ">";
  margin-right: 5px;
  margin-left: 5px;
}
.breadcrumbs li:first-child:before {
  content: "";
  margin: 0;
}
.breadcrumbs li:last-child {
  -webkit-flex-shrink: 1;
      -ms-flex-negative: 1;
          flex-shrink: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.breadcrumbs li a {
  color: #fff;
}

/* main column
------------------------------------------------- */
@media all and (min-width: 680px) {
  .main_column {
    width: 690px;
    float: left;
  }
}
.main_column .page_content {
  margin-top: 40px;
  margin-left: 40px;
  margin-bottom: 60px;
}

@media all and (min-width: 680px) {
  .sub_column {
    width: 230px;
    float: right;
  }
}
@media all and (max-width: 679px) {
  .sub_column {
    margin-top: 35px;
  }
}

.contact_box h3 {
  text-align: center;
  margin-bottom: 50px;
}
@media all and (max-width: 679px) {
  .contact_box h3 {
    margin-bottom: 30px;
  }
}
.contact_box .clear_fix, .contact_box .grid_system_12, .contact_box .grid_system_2 {
  width: 631px;
  margin: 0 auto 60px;
}
@media all and (max-width: 679px) {
  .contact_box .clear_fix, .contact_box .grid_system_12, .contact_box .grid_system_2 {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    margin-bottom: 50px;
  }
}
.contact_box .phone_num {
  float: left;
  margin-right: 40px;
}
@media all and (max-width: 679px) {
  .contact_box .phone_num {
    float: none;
    margin: 0 auto 30px;
  }
}
.contact_box .phone_num p {
  margin-bottom: 15px;
  line-height: 1.25em;
}
@media all and (max-width: 679px) {
  .contact_box .phone_num p {
    text-align: center;
  }
}
.contact_box .document {
  float: left;
}
@media all and (max-width: 679px) {
  .contact_box .document {
    float: none;
    margin: 0 auto;
    width: 100%;
    max-width: 320px;
  }
}
.contact_box .document .btn_box {
  font-size: 131%;
  width: 320px;
  line-height: 60px;
}
@media all and (max-width: 679px) {
  .contact_box .document .btn_box {
    width: 100%;
  }
}
.contact_box .document .btn_box:before {
  content: "";
  display: inline-block;
  margin-bottom: 3px;
  width: 29px;
  height: 20px;
  background-image: url("/resource/hp_img_common/ico_mail.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

/* footer
------------------------------------------------- */
.footer_link {
  position: relative;
  width: 100%;
  background-color: #333333;
  border-bottom: 1px solid #444444;
}
@media all and (min-width: 680px) {
  .footer_link {
    min-width: 960px;
  }
}
.footer_link .inner {
  padding: 50px 0;
  margin-right: auto;
  margin-left: auto;
}
@media all and (max-width: 679px) {
  .footer_link .inner {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
  }
}
@media all and (max-width: 679px) {
  .footer_link .inner {
    padding-top: 50px;
    padding-bottom: 30px;
  }
}
.footer_link .footer_logo {
  transition: opacity .4s;
}
.footer_link .footer_logo:hover {
  opacity: .7;
}
.footer_link .footer_logo a {
  display: block;
  width: 100%;
  height: 100%;
}
@media all and (min-width: 680px) {
  .footer_link .footer_logo {
    float: left;
    line-height: 104px;
  }
}
@media all and (max-width: 679px) {
  .footer_link .footer_logo {
    margin-bottom: 50px;
  }
}
@media all and (max-width: 679px) {
  .footer_link .footer_logo img {
    display: block;
    margin-right: auto;
    margin-left: auto;
  }
}
@media all and (min-width: 680px) {
  .footer_link .link_box {
    float: right;
    margin-right: -80px;
  }
}
@media all and (min-width: 680px) {
  .footer_link .link_box dl {
    float: left;
    margin-right: 80px;
  }
}
@media all and (max-width: 679px) {
  .footer_link .link_box dl:not(:last-child) {
    margin-bottom: 30px;
  }
}
.footer_link .link_box dl.selected .link_box__icon {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.footer_link .link_box dl.selected .link_box__icon::before {
  opacity: 0;
}
.footer_link .link_box dl a {
  color: #999;
}
.footer_link .link_box dl dt {
  font-weight: bold;
}
.footer_link .link_box dl dt:not(:first-child) {
  margin-top: 20px;
}
@media all and (min-width: 680px) {
  .footer_link .link_box dl dd {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 20px;
  }
}
@media all and (max-width: 679px) {
  .footer_link .link_box dl dd ul {
    padding-top: 20px;
    padding-left: 20px;
  }
}
@media all and (min-width: 680px) {
  .footer_link .link_box dl dd ul:not(:first-child) {
    margin-left: 60px;
  }
}
.footer_link .link_box dl dd ul li:not(:first-child) {
  margin-top: 10px;
}
@media all and (max-width: 679px) {
  .footer_link .link_box dl dd ul li:not(:first-child) {
    margin-top: 20px;
  }
}
.footer_link .link_box__icon {
  position: relative;
  top: -2px;
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-left: 20px;
  vertical-align: middle;
  transition: -webkit-transform .3s ease-out;
  transition: transform .3s ease-out;
  transition: transform .3s ease-out, -webkit-transform .3s ease-out;
}
@media all and (min-width: 680px) {
  .footer_link .link_box__icon {
    display: none;
  }
}
.footer_link .link_box__icon::before, .footer_link .link_box__icon::after {
  top: 50%;
  left: 50%;
  position: absolute;
  content: "";
  display: block;
  background-color: #999;
  transition: opacity .3s ease-out;
}
.footer_link .link_box__icon::before {
  width: 15px;
  height: 1px;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 1;
}
.footer_link .link_box__icon::after {
  width: 1px;
  height: 15px;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.site_footer {
  width: 100%;
  background-color: #333333;
}
@media all and (min-width: 680px) {
  .site_footer {
    min-width: 960px;
  }
}
.site_footer > .inner {
  width: 960px;
  margin: 0 auto;
  padding: 20px 0;
  margin-right: auto;
  margin-left: auto;
}
@media all and (max-width: 679px) {
  .site_footer > .inner {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
  }
}
.site_footer > .inner .footer_nav {
  float: left;
}
@media all and (max-width: 679px) {
  .site_footer > .inner .footer_nav {
    float: none;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 15px;
  }
}
.site_footer > .inner .footer_nav li {
  float: left;
}
.site_footer > .inner .footer_nav li + li {
  margin-left: 25px;
}
.site_footer > .inner .footer_nav li a {
  color: #999;
}
.site_footer > .inner .copyright {
  text-align: right;
  font-family: Arial, sans-serif;
  font-size: 85%;
  color: #999;
}
@media all and (max-width: 679px) {
  .site_footer > .inner .copyright {
    text-align: center;
  }
}

.page_top {
  position: fixed;
  z-index: 9999;
  right: 0;
  bottom: 30px;
  height: 40px;
  opacity: 0;
  transition: opacity .3s ease-out;
}
.page_top.visible {
  opacity: 1;
}
.page_top.sticky {
  position: absolute;
  bottom: 100%;
}
.page_top a {
  display: block;
  padding: 0px 10px;
  text-align: center;
  color: #fff;
  background-color: #333333;
  transition: background-color 0.4s ease;
  -webkit-transition: background-color 0.4s ease;
  -moz-transition: background-color 0.4s ease;
}
.page_top a:hover {
  background-color: #a50000;
  text-decoration: none;
}
.page_top a:before {
  font-size: 300%;
  margin-top: -10px;
  line-height: 1;
}

/* -------------------------------------------------------------------------

		contents.sass
		
		各ページ固有のスタイルを定義
		
------------------------------------------------------------------------- */
/* top page
------------------------------------------------- */
body.top .site_header_placeholder {
  display: none;
}
body.top .content_box {
  overflow: hidden;
}
body.top .main_height {
  width: 100%;
  overflow-x: hidden;
  background-color: #000;
}
@media all and (min-width: 680px) {
  body.top .main_height {
    min-width: 960px;
  }
}
body.top .top_hero {
  width: 100%;
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: 100vh;
}
@media all and (min-width: 680px) {
  body.top .top_hero {
    min-width: 960px;
  }
}
@media all and (max-width: 679px) {
  body.top .top_hero {
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    height: calc((var(--vh, 1vh) * 100) - 80px);
    margin-top: 80px;
    background-color: #000;
  }
}
body.top .top_hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
body.top .top_hero__foreground {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px;
  box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0.7);
}
@media all and (min-width: 680px) {
  body.top .top_hero__foreground {
    width: 400px;
    height: 100%;
  }
}
@media all and (max-width: 679px) {
  body.top .top_hero__foreground {
    width: 100%;
    padding: 20px 15px;
  }
}
body.top .top_hero__img_slideshow {
  height: 100%;
}
body.top .top_hero__img_slideshow .slick-list,
body.top .top_hero__img_slideshow .slick-track {
  height: 100%;
}
body.top .top_hero__img_slideshow_item {
  height: 100%;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}
body.top .top_hero__img_slideshow_item--01 {
  background-image: url("/resource/hp_img_top/hero_slideshow_01.jpg");
}
@media all and (max-width: 679px) {
  body.top .top_hero__img_slideshow_item--01 {
    background-image: url("/resource/hp_img_top/hero_slideshow_01_sp.jpg");
  }
}
body.top .top_hero__img_slideshow_item--02 {
  background-image: url("/resource/hp_img_top/hero_slideshow_02.jpg");
}
@media all and (max-width: 679px) {
  body.top .top_hero__img_slideshow_item--02 {
    background-image: url("/resource/hp_img_top/hero_slideshow_02_sp.jpg");
  }
}
body.top .top_hero__img_slideshow_item--03 {
  background-image: url("/resource/hp_img_top/hero_slideshow_03.jpg");
}
@media all and (max-width: 679px) {
  body.top .top_hero__img_slideshow_item--03 {
    background-image: url("/resource/hp_img_top/hero_slideshow_03_sp.jpg");
  }
}
body.top .top_hero__content_slideshow {
  color: #fff;
  text-align: center;
}
body.top .top_hero__content_slideshow_heading_1, body.top .top_hero__content_slideshow_heading_2, body.top .top_hero__content_slideshow_heading_3 {
  text-align: center;
  font-weight: normal;
}
body.top .top_hero__content_slideshow_heading_1 img, body.top .top_hero__content_slideshow_heading_2 img, body.top .top_hero__content_slideshow_heading_3 img {
  display: inline-block;
}
body.top .top_hero__content_slideshow_heading_1 {
  margin-bottom: 55px;
  font-size: 52px;
  line-height: 1;
}
@media all and (max-width: 679px) {
  body.top .top_hero__content_slideshow_heading_1 {
    display: none;
  }
}
body.top .top_hero__content_slideshow_heading_2 {
  display: inline-block;
  margin-bottom: 25px;
  padding-bottom: 5px;
  border-bottom: 1px solid #fff;
  font-size: 20px;
}
@media all and (max-width: 679px) {
  body.top .top_hero__content_slideshow_heading_2 {
    margin-bottom: 20px;
  }
}
body.top .top_hero__content_slideshow_heading_3 {
  margin-top: 0;
  margin-bottom: 25px;
  font-size: 21px;
  line-height: 1.5;
}
@media all and (max-width: 679px) {
  body.top .top_hero__content_slideshow_heading_3 {
    margin-bottom: 15px;
  }
}
body.top .top_hero__content_slideshow_heading_3 img {
  width: auto;
  height: 51px;
}
@media all and (max-width: 679px) {
  body.top .top_hero__content_slideshow_heading_3 img {
    height: 47px;
  }
}
body.top .top_hero__content_slideshow_desc {
  font-size: 14px;
  line-height: 1.7;
  font-weight: 200;
}
@media all and (max-width: 679px) {
  body.top .top_hero__content_slideshow_desc {
    font-size: 13px;
  }
}
body.top .top_hero__content_slideshow_btn {
  margin-top: 50px;
  font-size: 14px;
}
@media all and (max-width: 679px) {
  body.top .top_hero__content_slideshow_btn {
    margin-top: 15px;
  }
}
body.top .top_hero__slideshow_nav {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
  margin-top: 50px;
}
@media all and (max-width: 679px) {
  body.top .top_hero__slideshow_nav {
    margin-top: 20px;
  }
}
body.top .top_hero__slideshow_nav .slick-dots {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
body.top .top_hero__slideshow_nav .slick-dots li:not(:last-child) {
  margin-right: 20px;
}
body.top .top_hero__slideshow_nav .slick-dots li.slick-active button {
  background-color: #fff;
}
body.top .top_hero__slideshow_nav .slick-dots li:not(.slick-active) button {
  cursor: pointer;
}
body.top .top_hero__slideshow_nav .slick-dots button {
  display: block;
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid #fff;
  border-radius: 13px;
  background-color: transparent;
  font-size: 0;
  line-height: 1;
}
body.top .top_hero__slideshow_nav .slick-dots button:focus {
  outline: none;
}
body.top .top_hero .btn_arrow {
  position: absolute;
  bottom: 20px;
  left: 30px;
  opacity: 0;
  -webkit-transform: translateY(-500px);
      -ms-transform: translateY(-500px);
          transform: translateY(-500px);
}
@media all and (max-width: 679px) {
  body.top .top_hero .btn_arrow {
    bottom: 10px;
    left: 15px;
  }
}
body.top .top_hero .btn_arrow .scale0 {
  -ms-transform: scale(0.01, 1);
  -webkit-transform: scale(0.01, 1);
  transform: scale(0.01, 1);
}
body.top .top_hero .btn_arrow .scale03 {
  -ms-transform: scale(0.03, 1);
  -webkit-transform: scale(0.03, 1);
  transform: scale(0.03, 1);
}
body.top .top_hero .btn_arrow .scale06 {
  -ms-transform: scale(0.06, 1);
  -webkit-transform: scale(0.06, 1);
  transform: scale(0.06, 1);
}
body.top .top_hero .btn_arrow .scale1 {
  -ms-transform: scale(0.1, 1);
  -webkit-transform: scale(0.1, 1);
  transform: scale(0.1, 1);
}
body.top .top_hero .btn_arrow .scale15 {
  -ms-transform: scale(0.15, 1);
  -webkit-transform: scale(0.15, 1);
  transform: scale(0.15, 1);
}
body.top .top_hero .btn_arrow .scale2 {
  -ms-transform: scale(0.2, 1);
  -webkit-transform: scale(0.2, 1);
  transform: scale(0.2, 1);
}
body.top .top_hero .btn_arrow .scale25 {
  -ms-transform: scale(0.25, 1);
  -webkit-transform: scale(0.25, 1);
  transform: scale(0.25, 1);
}
body.top .top_hero .btn_arrow .scale3 {
  -ms-transform: scale(0.3, 1);
  -webkit-transform: scale(0.3, 1);
  transform: scale(0.3, 1);
}
body.top .top_hero .btn_arrow .scale4 {
  -ms-transform: scale(0.4, 1);
  -webkit-transform: scale(0.4, 1);
  transform: scale(0.4, 1);
}
body.top .top_hero .btn_arrow .scale5 {
  -ms-transform: scale(0.5, 1);
  -webkit-transform: scale(0.5, 1);
  transform: scale(0.5, 1);
}
body.top .top_hero .btn_arrow .scale6 {
  -ms-transform: scale(0.6, 1);
  -webkit-transform: scale(0.6, 1);
  transform: scale(0.6, 1);
}
body.top .top_hero .btn_arrow .scale7 {
  -ms-transform: scale(0.7, 1);
  -webkit-transform: scale(0.7, 1);
  transform: scale(0.7, 1);
}
body.top .top_hero .btn_arrow .scale8 {
  -ms-transform: scale(0.8, 1);
  -webkit-transform: scale(0.8, 1);
  transform: scale(0.8, 1);
}
body.top .top_hero .btn_arrow .scale9 {
  -ms-transform: scale(0.9, 1);
  -webkit-transform: scale(0.9, 1);
  transform: scale(0.9, 1);
}
body.top .top_hero .scroll_arrow {
  display: block;
  color: #fff;
  transition: 0.4s;
}
body.top .top_hero .scroll_arrow:hover {
  text-decoration: none;
  -webkit-transform: scale(1.5);
  -ms-transform: scale(1.5);
  transform: scale(1.5);
}
body.top .top_hero .scroll_arrow:before {
  font-size: 400%;
}
@media all and (max-width: 679px) {
  body.top .top_hero .scroll_arrow:before {
    font-size: 200%;
  }
}
body.top .topics_area {
  height: 55px;
  border-bottom: 1px solid #dddddd;
  padding: 0 15px;
  position: relative;
  box-sizing: border-box;
  width: 100%;
}
@media all and (min-width: 680px) {
  body.top .topics_area {
    min-width: 960px;
  }
}
@media all and (max-width: 679px) {
  body.top .topics_area {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 50px;
    padding-right: 30px;
  }
}
body.top .topics_area .topics_title {
  float: left;
  line-height: 55px;
  margin-right: 10px;
}
@media all and (max-width: 679px) {
  body.top .topics_area .topics_title {
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    line-height: 50px;
  }
}
body.top .topics_area .ticker {
  float: left;
  width: 90%;
}
@media all and (max-width: 679px) {
  body.top .topics_area .ticker {
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    width: auto;
  }
}
@media all and (max-width: 679px) {
  body.top .topics_area .ticker ul {
    width: 100%;
  }
}
body.top .topics_area .ticker li {
  line-height: 55px;
}
@media all and (max-width: 679px) {
  body.top .topics_area .ticker li {
    line-height: 50px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
  }
}
body.top .topics_area .ticker li a {
  text-decoration: underline;
}
body.top .topics_area .ticker li a:hover {
  text-decoration: none;
}
body.top .topics_area .ticker li .label_category {
  background-color: #999;
  padding: 5px;
  display: inline-block;
  margin-right: 10px;
  line-height: 0;
}
body.top .topics_area .more {
  float: right;
  line-height: 55px;
  position: absolute;
  right: 10px;
}
@media all and (max-width: 679px) {
  body.top .topics_area .more {
    right: 0;
    width: 30px;
    height: 100%;
  }
}
@media all and (max-width: 679px) {
  body.top .topics_area .more a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    background-color: #a50000;
    font-size: 0;
  }
}
@media all and (max-width: 679px) {
  body.top .topics_area .more a::before {
    font-family: 'icomoon';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e909";
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    font-size: 20px;
    color: #fff;
    -webkit-transform: translate(-50%, -50%) rotate(180deg);
        -ms-transform: translate(-50%, -50%) rotate(180deg);
            transform: translate(-50%, -50%) rotate(180deg);
  }
}
body.top .topics_area a {
  color: #666666;
}
body.top .inner {
  width: 960px;
  margin: 0 auto;
}
@media all and (max-width: 679px) {
  body.top .inner {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    box-sizing: border-box;
  }
}
body.top .inner .top_banner li {
  margin: 10px;
  height: 60px;
  background-color: #999;
}
body.top h3 {
  text-align: center;
  margin: 80px 0 50px;
}
@media all and (max-width: 679px) {
  body.top h3 {
    margin: 35px auto 30px;
  }
}
body.top .intro {
  margin-bottom: 60px;
}
@media all and (max-width: 679px) {
  body.top .intro {
    margin-bottom: 30px;
  }
}
body.top .intro .notes {
  margin-top: 25px;
  font-size: 77%;
}
body.top .intro .banner {
  width: 750px;
  margin: 35px auto 0;
}
@media all and (max-width: 679px) {
  body.top .intro .banner {
    width: 100%;
    margin-top: 25px;
  }
}
body.top .intro .banner__link:hover .banner__img {
  opacity: 0.7;
}
body.top .intro .banner__img {
  display: block;
  width: 100%;
  transition: opacity 0.4s;
}
body.top .feature_box > div {
  float: left;
  height: 300px;
  position: relative;
}
@media all and (max-width: 679px) {
  body.top .feature_box > div {
    float: none;
    width: 100%;
    height: auto;
    min-height: 320px;
  }
}
body.top .feature_box > div .mask {
  width: 100%;
  height: 100%;
  transition: 0.4s;
  display: block;
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
}
body.top .feature_box > div .mask:hover {
  text-decoration: none;
  background: rgba(98, 17, 17, 0.6);
}
body.top .feature_box > div .box_inner {
  position: absolute;
  width: 240px;
  margin-top: 70px;
  left: 50%;
  margin-left: -120px;
}
body.top .feature_box > div .box_inner .feature_num {
  text-align: center;
}
body.top .feature_box > div .box_inner .feature_num img {
  border-bottom: 1px solid #fff;
  padding-bottom: 10px;
}
body.top .feature_box > div .box_inner .feature_title {
  text-align: center;
  margin: 30px 0;
}
body.top .feature_box > div .box_inner p {
  color: #fff;
  font-size: 108%;
}
body.top .feature_box .feature_01 {
  width: 33.4%;
}
body.top .feature_box .feature_02 {
  width: 33.3%;
}
body.top .feature_box .feature_03 {
  width: 33.3%;
}
@media all and (max-width: 679px) {
  body.top .feature_box .feature_01,
  body.top .feature_box .feature_02,
  body.top .feature_box .feature_03 {
    width: 100%;
  }
}
body.top .problem {
  overflow: hidden;
}
@media all and (max-width: 679px) {
  body.top .problem .example {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-right: -25px;
    margin-bottom: -25px;
  }
}
@media all and (min-width: 680px) {
  body.top .problem .example li {
    float: left;
  }
}
@media all and (max-width: 679px) {
  body.top .problem .example li {
    width: calc(50% - 25px);
    margin-right: 25px;
    margin-bottom: 25px;
  }
}
@media all and (min-width: 680px) {
  body.top .problem .example li + li {
    margin-left: 40px;
  }
}
@media all and (max-width: 679px) {
  body.top .problem .example li:nth-child(1) {
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media all and (max-width: 679px) {
  body.top .problem .example li:nth-child(2) {
    -webkit-order: 4;
        -ms-flex-order: 4;
            order: 4;
  }
}
@media all and (max-width: 679px) {
  body.top .problem .example li:nth-child(3) {
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media all and (max-width: 679px) {
  body.top .problem .example li:nth-child(4) {
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
  }
}
@media all and (max-width: 679px) {
  body.top .problem .example li:nth-child(5) {
    -webkit-order: 5;
        -ms-flex-order: 5;
            order: 5;
  }
}
body.top .problem .example li img {
  width: 160px;
  height: auto;
}
@media all and (max-width: 679px) {
  body.top .problem .example li img {
    display: block;
    width: 100%;
  }
}
@media all and (min-width: 680px) {
  body.top .case_box .inner {
    padding-bottom: 60px;
  }
}
body.top .case_box h3 {
  padding-top: 60px;
}
@media all and (max-width: 679px) {
  body.top .case_box h3 {
    padding-top: 30px;
  }
}
body.top .case_box .slider {
  position: relative;
}
@media all and (max-width: 679px) {
  body.top .case_box .slider {
    padding: 0 15px 40px;
  }
}
body.top .case_box .slider .slick-track {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
body.top .case_box .slider .slick-arrow {
  position: absolute;
  top: calc((100% - 40px) / 2);
  display: block;
  padding: 0;
  border: none;
  background-color: transparent;
  font-size: 0;
  line-height: 1;
}
body.top .case_box .slider .slick-arrow:focus {
  outline: none;
}
body.top .case_box .slider .slick-arrow::before {
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e909";
  display: block;
  font-size: 30px;
  color: #fff;
}
body.top .case_box .slider .slick-arrow.slick-prev {
  left: 0;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
body.top .case_box .slider .slick-arrow.slick-next {
  right: 0;
  -webkit-transform: translate(50%, -50%) rotate(180deg);
      -ms-transform: translate(50%, -50%) rotate(180deg);
          transform: translate(50%, -50%) rotate(180deg);
}
body.top .case_box .slide {
  width: 310px;
  float: left;
  box-sizing: border-box;
  /* + .slide {
  	margin-left: 15px;
  } */
}
@media all and (min-width: 680px) {
  body.top .case_box .slide {
    margin-bottom: 70px;
  }
}
@media all and (max-width: 679px) {
  body.top .case_box .slide {
    height: auto;
  }
}
body.top .case_box .slide a {
  padding: 20px;
  display: block;
  background: #fff;
  color: #333333;
  transition: 0.4s;
  min-height: 230px;
}
@media all and (max-width: 679px) {
  body.top .case_box .slide a {
    min-height: unset;
    height: 100%;
  }
}
body.top .case_box .slide a:hover {
  text-decoration: none;
  color: #a50000;
}
body.top .case_box .slide a:hover .case_img {
  opacity: 0.7;
}
body.top .case_box .slide a .category_label,
body.top .case_box .slide a .number_label {
  color: #fff;
  padding: 3px 5px;
  margin-bottom: 5px;
  display: inline-block;
  font-size: 93%;
}
@media all and (max-width: 679px) {
  body.top .case_box .slide a .category_label,
  body.top .case_box .slide a .number_label {
    padding-top: 0;
    padding-bottom: 0;
    font-size: 10px;
  }
}
body.top .case_box .slide a .category_label {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  background: #a50000;
}
body.top .case_box .slide a .number_label {
  background-color: #a50000;
}
body.top .case_box .slide a .target_object {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  padding-top: 3px;
  font-size: 93%;
}
@media all and (max-width: 679px) {
  body.top .case_box .slide a .target_object {
    padding-top: 1px;
  }
}
body.top .case_box .slide .case_detail {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
body.top .case_box .slide .case_title {
  margin-top: 15px;
  font-size: 116%;
}
body.top .case_box .slide .case_img {
  transition: 0.4s;
  position: relative;
  margin-bottom: 10px;
  width: 100%;
  height: 110px;
  overflow: hidden;
}
body.top .case_box .slide .case_img .portrait {
  position: absolute;
  right: 5px;
  bottom: -32px;
}
body.top .contact_box h3 {
  text-align: center;
}
@media all and (min-width: 680px) {
  body.top .contact_box h3 {
    margin: 0 0 50px 0;
  }
}
body.top .bx-wrapper {
  position: relative;
}
body.top .bx-prev,
body.top .bx-next {
  position: absolute;
  top: 50%;
  display: block;
  color: #fff;
  font-size: 0;
  text-decoration: none;
}
body.top .bx-prev:hover,
body.top .bx-next:hover {
  text-decoration: none;
}
body.top .bx-prev::before,
body.top .bx-next::before {
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e909";
  display: block;
  font-size: 30px;
  color: #fff;
}
body.top .bx-prev {
  right: 100%;
  margin-right: 15px;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
body.top .bx-next {
  left: 100%;
  margin-left: 15px;
  -webkit-transform: translate(0, -50%) rotate(180deg);
      -ms-transform: translate(0, -50%) rotate(180deg);
          transform: translate(0, -50%) rotate(180deg);
}

/* -------------------------------------------------------------------------

		contents.sass
		
		各ページ固有のスタイルを定義
		
------------------------------------------------------------------------- */
/* products page
------------------------------------------------- */
body.products {
  /*-------------------------------------------------
  	Gutenberg column
  -------------------------------------------------*/
  /*-------------------------------------------------
  	Gutenberg tab
  -------------------------------------------------*/
}
body.products .section_box {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media all and (min-width: 680px) {
  body.products .section_box {
    min-width: 960px;
  }
}
@media all and (min-width: 680px) {
  body.products .section_box {
    width: 960px;
  }
}
body.products .section_box.gray_bg .gray_title {
  text-align: center;
}
@media all and (max-width: 679px) {
  body.products .section_box.gray_bg .gray_title {
    margin-bottom: 30px;
  }
}
body.products .img_box {
  position: relative;
  -webkit-flex-basis: auto !important;
      -ms-flex-preferred-size: auto !important;
          flex-basis: auto !important;
  width: 50%;
  height: 370px;
  overflow: hidden;
}
@media all and (max-width: 679px) {
  body.products .img_box {
    width: 100%;
    height: auto;
  }
}
body.products .img_box figure {
  margin: 0;
}
@media all and (min-width: 680px) {
  body.products .img_box img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: 100%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
body.products .img_box img.vertical {
  width: 100%;
  height: auto;
}
body.products .img_box .float_l {
  width: 38%;
  height: 100%;
}
body.products .img_box .float_l .img_grid_01 {
  width: 100%;
  height: 50%;
}
body.products .img_box .float_l .img_grid_02 {
  width: 62%;
  height: 100%;
}
body.products .img_box .float_r {
  width: 62%;
  height: 100%;
}
body.products .img_box .float_r .img_grid_02 {
  width: 100%;
  height: 100%;
}
body.products .img_box .float_l.half,
body.products .img_box .float_r.half {
  width: 50%;
}
body.products .img_box .float_l.half .img_grid_03,
body.products .img_box .float_r.half .img_grid_03 {
  width: 100%;
  height: 50%;
}
body.products .article_box {
  -webkit-flex-basis: auto !important;
      -ms-flex-preferred-size: auto !important;
          flex-basis: auto !important;
  width: 50%;
}
@media all and (max-width: 679px) {
  body.products .article_box {
    width: 100%;
    margin-top: 40px;
  }
}
body.products .article_box .inner {
  width: 480px;
  box-sizing: border-box;
}
@media all and (max-width: 679px) {
  body.products .article_box .inner {
    width: 100%;
  }
}
body.products .article_box.float_l .inner {
  margin-left: 0;
  padding-left: 70px;
}
@media all and (max-width: 679px) {
  body.products .article_box.float_l .inner {
    padding: 0;
  }
}
body.products .article_box.float_r .inner {
  margin-right: 0;
  padding-right: 70px;
}
@media all and (max-width: 679px) {
  body.products .article_box.float_r .inner {
    padding: 0;
  }
}
body.products .article_box .specs {
  margin-bottom: 35px;
}
body.products .article_box .specs dl {
  margin-bottom: 5px;
}
body.products .article_box .specs .label_gray {
  font-size: 85%;
  display: inline-block;
}
body.products .article_box .specs dd {
  font-size: 108%;
  display: inline-block;
}
body.products .article_box .article_text {
  margin-bottom: 25px;
}
@media all and (max-width: 679px) {
  body.products .article_box .article_text {
    font-size: 108%;
  }
}
body.products .article_box .case_example {
  display: table;
  table-layout: fixed;
  margin-bottom: 40px;
  font-size: 93%;
}
body.products .article_box .case_example .label_gray02 {
  display: table-cell;
  width: 90px;
}
body.products .article_box .case_example dd {
  display: table-cell;
  padding: 5px 0 5px 15px;
  line-height: 1.5em;
}
body.products .article_box .more,
body.products .article_box .wp-block-button {
  width: 230px;
  position: relative;
  margin-bottom: 0;
}
@media all and (max-width: 679px) {
  body.products .article_box .more,
  body.products .article_box .wp-block-button {
    width: 100%;
  }
}
body.products .article_box .more a,
body.products .article_box .more .btn_box,
body.products .article_box .wp-block-button a,
body.products .article_box .wp-block-button .btn_box {
  padding: 15px 0;
  vertical-align: top;
  font-size: 100%;
}
@media all and (max-width: 679px) {
  body.products .article_box .more a,
  body.products .article_box .more .btn_box,
  body.products .article_box .wp-block-button a,
  body.products .article_box .wp-block-button .btn_box {
    padding-top: 11px;
    padding-bottom: 11px;
  }
}
body.products .article_box .more a:after,
body.products .article_box .more .btn_box:after,
body.products .article_box .wp-block-button a:after,
body.products .article_box .wp-block-button .btn_box:after {
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e90b";
  position: absolute;
  font-size: 153.9%;
  right: 0;
  top: 11px;
  line-height: 1.1;
}
body.products .specs_table {
  margin-bottom: 35px;
}
@media all and (max-width: 679px) {
  body.products .specs_table {
    margin-bottom: 30px;
  }
}
body.products .specs_table table {
  display: block;
}
body.products .specs_table tr {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
body.products .specs_table tr:not(:last-child) {
  margin-bottom: 5px;
}
body.products .specs_table td {
  display: block;
  border: none;
}
body.products .specs_table td:first-child {
  background-color: #888;
  border-radius: 3px;
  color: #fff;
  padding: 5px;
  margin-right: 5px;
  font-size: 85%;
}
body.products .specs_table td:last-child {
  padding: 0;
  font-size: 108%;
}
body.products .case_example_table {
  margin-bottom: 40px;
}
@media all and (max-width: 679px) {
  body.products .case_example_table {
    margin-bottom: 25px;
  }
}
body.products .case_example_table td {
  border: none;
  font-size: 93%;
}
body.products .case_example_table td:first-child {
  width: 90px;
  padding: 0;
  background-color: #ebebeb;
  text-align: center;
  vertical-align: middle;
}
body.products .case_example_table td:last-child {
  padding: 5px 0 5px 15px;
  line-height: 1.5em;
}
@media all and (max-width: 679px) {
  body.products .case_example_table td:last-child {
    padding-top: 0;
    padding-bottom: 0;
  }
}
body.products .tab_wrap {
  padding-right: 40px;
  padding-left: 40px;
}
@media all and (max-width: 679px) {
  body.products .tab_wrap {
    padding: 0;
  }
}
body.products .wp-block-columns {
  margin-bottom: 0;
}
@media all and (max-width: 679px) {
  body.products .wp-block-columns.sp_reverse {
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media all and (min-width: 680px) {
  body.products .wp-block-columns.sp_reverse .article_box .inner {
    padding-right: 70px;
  }
}
body.products .wp-block-column:not(:first-child) {
  margin-left: 0 !important;
}
body.products ul.advgb-tabs-panel {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 35px !important;
}
@media all and (max-width: 679px) {
  body.products ul.advgb-tabs-panel {
    margin-bottom: 40px !important;
  }
}
body.products ul.advgb-tabs-panel li {
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0;
  border-right: 1px solid #ccc !important;
  border-top: 1px solid #ccc !important;
  border-bottom: 1px solid #ccc !important;
  float: left;
  padding: 15px;
  box-sizing: border-box;
  text-align: center;
  font-size: 131%;
  cursor: pointer;
  background-color: #e2e2e2;
  position: relative;
  top: 1px;
}
@media all and (max-width: 679px) {
  body.products ul.advgb-tabs-panel li {
    padding-right: 10px;
    padding-left: 10px;
  }
}
body.products ul.advgb-tabs-panel li:first-child {
  border-left: 1px solid #ccc !important;
}
body.products ul.advgb-tabs-panel li.advgb-tab-active {
  background-color: #eeeeee;
}
body.products ul.advgb-tabs-panel li.advgb-tab.advgb-tab-active {
  border-color: #ccc #ccc transparent #ccc !important;
}
body.products ul.advgb-tabs-panel li.advgb-tab > a {
  padding: 0;
}
@media all and (max-width: 679px) {
  body.products ul.advgb-tabs-panel li.advgb-tab > a {
    font-size: 14px;
  }
}
body.products .advgb-tabs-wrapper.advgb-tab-vert-tablet {
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
body.products .advgb-tabs-wrapper.advgb-tab-vert-tablet ul.advgb-tabs-panel {
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  min-width: 100%;
  max-width: 100%;
}
@media all and (max-width: 679px) {
  body.products .advgb-tabs-wrapper.advgb-tab-vert-tablet ul.advgb-tabs-panel {
    margin-right: -15px !important;
    margin-left: -15px !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    border-bottom: 1px solid #ccc;
  }
}
body.products .advgb-tabs-wrapper.advgb-tab-vert-tablet .advgb-tab-body-wrapper {
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  max-width: 100%;
}
body.products .advgb-tabs-wrapper.advgb-tab-stack-mobile ul.advgb-tabs-panel {
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
body.products .advgb-tabs-wrapper.advgb-tab-stack-mobile .advgb-tab-body-header {
  display: none;
}
@media all and (max-width: 679px) {
  body.products .advgb-tabs-wrapper.advgb-tab-stack-mobile .advgb-tab-body-wrapper {
    overflow: auto;
    margin-right: -15px;
    margin-left: -15px;
    max-width: none;
  }
}
body.products .advgb-tabs-wrapper.advgb-tab-stack-mobile .advgb-tab-body-wrapper .advgb-tab-body-container {
  margin-bottom: 0;
}
@media all and (max-width: 679px) {
  body.products .advgb-tabs-wrapper.advgb-tab-stack-mobile .advgb-tab-body-wrapper img {
    width: 880px;
    height: auto;
    max-width: none;
    padding-right: 15px;
    padding-left: 15px;
  }
}
body.products .advgb-tab-body {
  padding: 0;
}
body.products .advgb-tab-body figure {
  margin-bottom: 0;
}

/* -------------------------------------------------------------------------

		products.sass
		
		products detail固有のスタイルを定義

------------------------------------------------------------------------- */
/* products detail page
------------------------------------------------- */
body.products.detail .movie_section {
  margin-top: 60px;
  background: #eee;
  padding: 40px 0;
}
@media all and (max-width: 679px) {
  body.products.detail .movie_section {
    margin: 30px -15px 0 -15px;
    padding: 35px 15px;
  }
}
body.products.detail .two_column {
  width: 473px;
}
body.products.detail .three_column {
  width: 732px;
}
body.products.detail .movie_area {
  margin-left: -17px;
}
body.products.detail .movie {
  width: 228px;
  float: left;
  margin-left: 17px;
}
body.products.detail .movie .thumbnail {
  margin-bottom: 10px;
  transition: 0.4s;
}
body.products.detail .movie .thumbnail:hover {
  opacity: 0.7;
}
body.products.detail .movie .btn_box {
  padding: 10px 0;
  color: #ffffff;
  background: #a50000;
  border: 1px solid #a50000;
  box-sizing: border-box;
}
body.products.detail .movie .btn_box:before {
  font-size: 22px;
  vertical-align: bottom;
}
body.products.detail .movie .btn_box:hover {
  text-decoration: none;
  background: #621111;
  border-color: #621111;
}
body.products.detail .movie_list {
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media all and (max-width: 679px) {
  body.products.detail .movie_list {
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
body.products.detail .movie_list__item {
  max-width: 228px;
  -webkit-flex-basis: auto;
      -ms-flex-preferred-size: auto;
          flex-basis: auto;
}
@media all and (max-width: 679px) {
  body.products.detail .movie_list__item {
    width: 100%;
    max-width: none;
  }
}
body.products.detail .movie_list__item:not(:last-child) {
  margin-right: 17px;
}
@media all and (max-width: 679px) {
  body.products.detail .movie_list__item:not(:last-child) {
    margin-right: 0;
    margin-bottom: 30px;
  }
}
body.products.detail .movie_list__media {
  text-decoration: none;
}
body.products.detail .movie_list__media:hover {
  text-decoration: none;
}
body.products.detail .movie_list__media:hover .movie_list__thumbnail {
  opacity: 0.7;
}
body.products.detail .movie_list__media:hover .movie_list__btn {
  background: #621111;
  border-color: #621111;
}
body.products.detail .movie_list__thumbnail {
  padding-bottom: 10px;
  transition: 0.4s;
}
@media all and (max-width: 679px) {
  body.products.detail .movie_list__thumbnail {
    margin-bottom: 15px;
  }
}
body.products.detail .movie_list__thumbnail img {
  width: 100%;
  height: auto;
}
body.products.detail .movie_list__btn {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 0;
  color: #ffffff;
  background: #a50000;
  border: 1px solid #a50000;
  box-sizing: border-box;
  font-size: 100%;
}
@media all and (max-width: 679px) {
  body.products.detail .movie_list__btn {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
body.products.detail .movie_list__btn::before {
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e905";
  font-size: 22px;
  vertical-align: bottom;
}
@media all and (max-width: 679px) {
  body.products.detail .main_section {
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
body.products.detail .img_gallery {
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 480px;
}
@media all and (max-width: 679px) {
  body.products.detail .img_gallery {
    width: 100%;
  }
}
@media all and (max-width: 679px) {
  body.products.detail .img_gallery figure img {
    height: auto;
  }
}
body.products.detail .main_article {
  -webkit-flex: 1 1 auto;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 50%;
  float: left;
  padding-left: 50px;
  box-sizing: border-box;
}
@media all and (max-width: 679px) {
  body.products.detail .main_article {
    width: 100%;
    padding-left: 0;
    margin-top: 35px;
  }
}
body.products.detail .main_article .article_title {
  background: none;
  font-family: 'ヒラギノ明朝 ProN W3', 'Hiragino Mincho ProN', 'ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', 'ＭＳ Ｐ明朝', 'MS PMincho', serif;
}
body.products.detail .main_article .article_title h3 {
  line-height: 1.5;
  padding: 0;
  font-size: 30px;
  margin-bottom: 40px;
}
@media all and (max-width: 679px) {
  body.products.detail .main_article .article_title h3 {
    font-size: 167%;
    margin-bottom: 25px;
  }
}
body.products.detail .main_article p {
  font-size: 108%;
  margin-bottom: 40px;
}
@media all and (max-width: 679px) {
  body.products.detail .main_article p {
    margin-bottom: 0;
  }
}
body.products.detail .main_article .more {
  width: 180px;
  float: left;
}
body.products.detail .main_article .btn_box {
  padding: 10px 0;
}
body.products.detail .main_article .btn_box:before {
  font-size: 22px;
  vertical-align: middle;
  line-height: 1em;
  margin-right: 5px;
  top: 2px;
}
@media all and (max-width: 679px) {
  body.products.detail .article_title h3 {
    margin-bottom: 25px;
  }
}
body.products.detail .lineup {
  background: none;
}
body.products.detail .lineup .item_list {
  display: table;
  table-layout: fixed;
  width: 960px;
  margin-bottom: 30px;
}
body.products.detail .lineup .item_list .item {
  width: 210px;
  display: table-cell;
  padding: 0 19px 0 19px;
  line-height: 1.5em;
}
body.products.detail .lineup .item_list .item + .item {
  border-left: 1px solid #ccc;
  margin-left: 20px;
}
body.products.detail .lineup .item_list .item + .first_child {
  border: none;
  padding: 0 19px 0 0;
  margin-left: 0;
}
body.products.detail .lineup .item_list .item .name {
  margin: 20px 0;
  font-size: 116%;
}
body.products.detail .lineup .item_list .item .list_dot li {
  margin-left: 0.5em;
}
body.products.detail .lineup .item_list .item .btn_box {
  padding: 10px 0;
  margin-top: 20px;
}
body.products.detail .lineup .item_list .item .btn_box:before {
  font-size: 18px;
}
body.products.detail .lineup .item_list .first_child {
  padding: 0 19px 0 0;
  margin-left: 0;
}
body.products.detail .lineup_list {
  margin-right: -20px;
  margin-left: -20px;
}
@media all and (max-width: 679px) {
  body.products.detail .lineup_list {
    display: block;
    margin-right: 0;
    margin-left: 0;
  }
}
body.products.detail .lineup_list:not(:last-child) {
  margin-bottom: 35px;
}
body.products.detail .lineup_list__item {
  padding: 0 20px;
  box-sizing: border-box;
  line-height: 1.5;
}
@media all and (max-width: 679px) {
  body.products.detail .lineup_list__item {
    padding: 0;
  }
}
@media all and (min-width: 680px) {
  body.products.detail .lineup_list__item:not(:last-child) {
    border-right: 1px solid #ccc;
  }
}
@media all and (max-width: 679px) {
  body.products.detail .lineup_list__item:not(:last-child) {
    margin-bottom: 30px;
  }
}
body.products.detail .lineup_list__item figure {
  margin-bottom: 0;
}
@media all and (max-width: 679px) {
  body.products.detail .lineup_list__item img {
    width: 100%;
    max-width: none;
  }
}
body.products.detail .lineup_list__item_name {
  margin: 20px 0;
  font-size: 116%;
}
@media all and (max-width: 679px) {
  body.products.detail .lineup_list__item_name {
    margin-top: 15px;
    margin-bottom: 15px;
  }
}
body.products.detail .mechanism {
  width: 100%;
  margin: 60px auto 0;
  padding: 60px 0;
  background: #eee;
}
@media all and (max-width: 679px) {
  body.products.detail .mechanism {
    margin-top: 35px;
    padding-top: 35px;
    padding-bottom: 35px;
  }
}
body.products.detail .mechanism > .wp-block-group__inner-container,
body.products.detail .mechanism .inner {
  position: relative;
  width: auto;
  padding-right: 40px;
  padding-left: 40px;
}
@media all and (max-width: 679px) {
  body.products.detail .mechanism > .wp-block-group__inner-container,
  body.products.detail .mechanism .inner {
    padding-right: 15px;
    padding-left: 15px;
  }
}
body.products.detail .mechanism > .wp-block-group__inner-container .title_box,
body.products.detail .mechanism .inner .title_box {
  margin-bottom: 30px;
}
@media all and (max-width: 679px) {
  body.products.detail .mechanism > .wp-block-group__inner-container .title_box,
  body.products.detail .mechanism .inner .title_box {
    margin-bottom: 20px;
  }
}
body.products.detail .mechanism > .wp-block-group__inner-container .title_box h3,
body.products.detail .mechanism .inner .title_box h3 {
  font-size: 189%;
  font-weight: normal;
}
body.products.detail .mechanism > .wp-block-group__inner-container p,
body.products.detail .mechanism .inner p {
  font-size: 108%;
}
body.products.detail .mechanism > .wp-block-group__inner-container .notes,
body.products.detail .mechanism .inner .notes {
  font-size: 93%;
  color: #666;
}
body.products.detail .mechanism > .wp-block-group__inner-container .img_label,
body.products.detail .mechanism .inner .img_label {
  margin: 30px 0;
}
body.products.detail .mechanism > .wp-block-group__inner-container .img_label > img,
body.products.detail .mechanism .inner .img_label > img {
  display: block;
  max-width: 100%;
  height: auto;
}
@media all and (max-width: 679px) {
  body.products.detail .mechanism > .wp-block-group__inner-container .img_label > img,
  body.products.detail .mechanism .inner .img_label > img {
    width: 100%;
  }
}
body.products.detail .mechanism > .wp-block-group__inner-container .tech_balloon,
body.products.detail .mechanism .inner .tech_balloon {
  position: absolute;
  top: 0;
  right: 0;
}
body.products.detail .mechanism .leaflet-container {
  background-color: #eee;
}
body.products.detail .use p {
  font-size: 108%;
  line-height: 1.75em;
}
body.products.detail .use .example_title {
  font-size: 138.5%;
  color: #a50000;
  margin: 40px 0 20px;
  font-weight: normal;
}
@media all and (max-width: 679px) {
  body.products.detail .use .example_title {
    margin-top: 25px;
  }
}
body.products.detail .use .example .example_list {
  margin: 0 0 10px 16px;
  display: inline-block;
}
body.products.detail .use .example .first_child {
  margin-left: 0px;
}
body.products.detail .use .example .label_gray02 {
  font-size: 116%;
  font-weight: bold;
  line-height: 1.5;
}
body.products.detail .use .example .example_item {
  display: table;
  width: 176px;
}
body.products.detail .use .example .example_item dd {
  display: table-cell;
  padding: 15px 0 0 20px;
}
body.products.detail .use .example .example_item dd .link {
  margin: 10px 0;
}
body.products.detail .use .example .example_item dd .link span {
  display: inline-block;
  font-weight: bold;
}
body.products.detail .use .example .example_item dd p {
  line-height: 1.25em;
}
body.products.detail .use .example .example_item .first_child {
  padding-left: 0;
}
body.products.detail .use .example_list {
  margin-right: -30px;
}
@media all and (max-width: 679px) {
  body.products.detail .use .example_list {
    margin-right: -15px;
    margin-bottom: -25px;
  }
}
body.products.detail .use .example_list:not(:last-child) {
  margin-bottom: 40px;
}
@media all and (max-width: 679px) {
  body.products.detail .use .example_list:not(:last-child) {
    margin-bottom: 10px;
  }
}
body.products.detail .use .example_list__item {
  -webkit-flex-grow: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -webkit-flex-basis: auto !important;
      -ms-flex-preferred-size: auto !important;
          flex-basis: auto !important;
  width: calc((100% - (30px * 4)) / 4);
  margin-right: 30px;
}
@media all and (max-width: 679px) {
  body.products.detail .use .example_list__item {
    width: calc((100% - (15px * 2)) / 2);
    margin-right: 15px;
    margin-bottom: 25px;
  }
}
body.products.detail .use .example_list__category {
  font-size: 116%;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  background-color: #ebebeb;
}
@media all and (max-width: 679px) {
  body.products.detail .use .example_list__category {
    padding: 2px;
  }
}
body.products.detail .use .example_list__figure {
  margin-top: 15px;
  margin-bottom: 10px;
}
@media all and (max-width: 679px) {
  body.products.detail .use .example_list__figure {
    margin-bottom: 15px;
  }
}
body.products.detail .use .example_list__figure img {
  display: block;
  width: 100%;
}
body.products.detail .use .example_list__link {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-weight: bold;
  line-height: 1.5;
  margin-top: 10px;
}
body.products.detail .use .example_list__link:not(:last-child) {
  margin-bottom: 10px;
}
body.products.detail .use .example_list__link:not(.example_list__link--no_link)::before {
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e904";
  font-size: 77%;
  line-height: 1.5;
  display: inline-block;
  vertical-align: top;
  padding-top: 1px;
  padding-right: 3px;
  color: #a50000;
}
body.products.detail .use .example_list__link a {
  color: #a50000;
  font-size: 13px;
  display: inline-block;
}
body.products.detail .use .example_list__text {
  line-height: 1.25;
}
body.products.detail .slider-pro {
  margin-left: 0;
}
body.products.detail .sp-right-thumbnails {
  right: -18px;
}
body.products.detail .sp-right-thumbnails.sp-has-pointer .sp-thumbnail {
  left: 0;
}
body.products.detail .sp-right-thumbnails.sp-has-pointer .sp-selected-thumbnail::before {
  z-index: 1;
  margin-left: 0;
}
body.products.detail .sp-right-thumbnails.sp-has-pointer .sp-selected-thumbnail::after {
  display: none;
}
body.products.detail .sp-right-thumbnails.sp-has-pointer .sp-selected-thumbnail img {
  filter: none;
  -webkit-filter: grayscale(0%);
}
body.products.detail .sp-right-thumbnails .sp-thumbnail-container {
  margin-top: 0;
  margin-bottom: 0;
}
body.products.detail .sp-right-thumbnails .sp-thumbnail-container img {
  filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
  -webkit-filter: grayscale(100%);
}
body.products.detail .sp-right-thumbnails .sp-thumbnail-container img:hover {
  cursor: pointer;
}
body.products.detail .sp-horizontal .sp-arrows {
  margin-top: -14px;
}
@media all and (min-width: 680px) {
  body.products.detail .sp-horizontal .sp-arrows {
    display: none;
  }
}
body.products.detail .sp-horizontal .sp-previous-arrow,
body.products.detail .sp-horizontal .sp-next-arrow {
  width: 12px;
  height: 28px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
body.products.detail .sp-horizontal .sp-previous-arrow::before, body.products.detail .sp-horizontal .sp-previous-arrow::after,
body.products.detail .sp-horizontal .sp-next-arrow::before,
body.products.detail .sp-horizontal .sp-next-arrow::after {
  display: none;
}
body.products.detail .sp-horizontal .sp-previous-arrow {
  left: 15px;
  background-image: url("/resource/hp_img_common/slider_arrow_prev.png");
}
body.products.detail .sp-horizontal .sp-next-arrow {
  right: 15px;
  background-image: url("/resource/hp_img_common/slider_arrow_next.png");
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}
@media all and (min-width: 680px) {
  body.products.detail .about_columns {
    margin-right: -20px;
  }
}
@media all and (min-width: 680px) {
  body.products.detail .about_column {
    margin-right: 20px;
    -webkit-flex-basis: auto;
        -ms-flex-preferred-size: auto;
            flex-basis: auto;
  }
}
@media all and (min-width: 680px) {
  body.products.detail .about_column:first-child {
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    -webkit-flex-grow: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
  }
}
@media all and (max-width: 679px) {
  body.products.detail .about_column:not(:first-child) {
    margin-top: 20px;
  }
}
@media all and (max-width: 679px) {
  body.products.detail .about_column figure img {
    width: 100%;
    height: auto;
  }
}
@media all and (min-width: 680px) {
  body.products.detail .performance_columns {
    margin-right: -40px;
  }
}
body.products.detail .performance_columns:not(:last-child) {
  margin-bottom: 25px;
}
@media all and (min-width: 680px) {
  body.products.detail .performance_column {
    margin-right: 40px;
  }
}
@media all and (max-width: 679px) {
  body.products.detail .performance_column:not(:first-child) {
    margin-top: 25px;
  }
}
@media all and (min-width: 680px) {
  body.products.detail .performance_sub_columns {
    margin-right: -20px;
  }
}
@media all and (min-width: 680px) {
  body.products.detail .performance_sub_column {
    margin-right: 20px;
    -webkit-flex-basis: auto;
        -ms-flex-preferred-size: auto;
            flex-basis: auto;
  }
}
@media all and (min-width: 680px) {
  body.products.detail .performance_sub_column:first-child {
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    -webkit-flex-grow: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
  }
}
@media all and (max-width: 679px) {
  body.products.detail .performance_sub_column:not(:first-child) {
    margin-top: 20px;
  }
}
@media all and (max-width: 679px) {
  body.products.detail .performance_sub_column figure img {
    width: 100%;
    height: auto;
  }
}
body.products.detail .performance_sub_column h4 {
  font-size: 138.5%;
  color: #a50000;
}
body.products.detail .performance_sub_column h4:not(:last-child) {
  margin-bottom: 20px;
}
body.products.detail .leaflet-image-layer {
  padding: 15px;
  box-sizing: border-box;
}

body.movie .content_box {
  min-width: auto;
  width: 780px;
  margin: 0 auto 20px;
}
body.movie .content_box h3 {
  margin-top: 20px;
}

/* -------------------------------------------------------------------------

		contents.sass
		
		各ページ固有のスタイルを定義
		
------------------------------------------------------------------------- */
/* cases page
------------------------------------------------- */
body.cases.index .article_title h3 {
  line-height: 1;
}
@media all and (max-width: 679px) {
  body.cases.index .article_title h3 {
    margin-bottom: 20px;
  }
}
body.cases.index .section_box {
  padding-top: 35px;
  padding-bottom: 35px;
}
body.cases.index .section_box .category_list {
  margin-left: -30px;
  margin-top: -40px;
}
body.cases.index .section_box .category_list .photo {
  position: relative;
}
body.cases.index .section_box .category_list .photo .case_label {
  position: absolute;
  display: inline-block;
  top: 0;
  left: 0;
}
body.cases.index .section_box .category_list .photo .case_label .number {
  padding: 7px 10px;
}
body.cases.index .section_box .category_list .link {
  font-size: 116%;
  margin: 15px 0;
}
body.cases.index .section_box .category_list .link a {
  width: 280px;
}
body.cases.index .section_box .category_list .link:before {
  font-size: 10px;
  padding-right: 5px;
}
body.cases.index .section_box .category_list .category_item {
  width: 300px;
  float: left;
  margin-left: 30px;
  margin-top: 40px;
}
body.cases.index .section_box .category_list .spec {
  display: table;
}
body.cases.index .section_box .category_list .spec .spec_th,
body.cases.index .section_box .category_list .spec .spec_td {
  display: table-cell;
  font-size: 93%;
}
body.cases.index .section_box .category_list .spec .spec_th {
  padding-right: 10px;
  border-right: 1px solid #ccc;
}
body.cases.index .section_box .category_list .spec .spec_td {
  padding-left: 10px;
}
body.cases.index .section_other {
  margin-top: -60px;
}
body.cases.index .section_other .otner_container {
  margin-left: -30px;
}
body.cases.index .section_other .otner_container .other_box {
  width: 300px;
  float: left;
  margin-left: 30px;
}
body.cases.index .section_other .otner_container .other_box .article_title {
  width: 300px;
}
body.cases.index .aluminum,
body.cases.index .ceramics,
body.cases.index .concrete {
  margin-top: -60px;
}

.case_list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-right: -30px;
  margin-bottom: -40px;
}
@media all and (max-width: 679px) {
  .case_list {
    margin-right: 0;
    margin-bottom: -35px;
  }
}
.case_list__item {
  width: calc(33.33% - 30px);
  margin-right: 30px;
  margin-bottom: 40px;
}
@media all and (max-width: 679px) {
  .case_list__item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 35px;
  }
}
.case_list__photo {
  position: relative;
}
.case_list__photo img {
  display: block;
  width: 100%;
  max-width: 100%;
}
.case_list__number {
  position: absolute;
  top: 0;
  left: 0;
  padding: 7px 10px;
  color: #fff;
  background-color: #a50000;
}
.case_list__link {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 15px 0 0;
  font-size: 116%;
  line-height: inherit;
  white-space: pre-line;
}
@media all and (max-width: 679px) {
  .case_list__link {
    margin-top: 20px;
  }
}
.case_list__link:before {
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e904";
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  display: block;
  padding-top: 1px;
  padding-right: 5px;
  color: #a50000;
  font-size: 10px;
  line-height: 1.5;
}
.case_list__link a {
  color: #a50000;
  font-weight: bold;
  display: inline-block;
}
.case_list__spec {
  margin-top: 15px;
}
@media all and (max-width: 679px) {
  .case_list__spec {
    margin-top: 10px;
  }
}
.case_list__spec th {
  padding-right: 10px;
  border-right: 1px solid #ccc;
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
}
.case_list__spec td {
  padding-left: 10px;
  border: none;
  font-size: 93%;
  line-height: 1.5em;
  white-space: pre-line;
}

/* -------------------------------------------------------------------------

		contents.sass
		
		各ページ固有のスタイルを定義
		
------------------------------------------------------------------------- */
/* case_detail page
------------------------------------------------- */
body.cases.detail {
  /* aluminum
  ------------------------------------------------- */
}
@media all and (max-width: 679px) {
  body.cases.detail .content_box {
    margin-bottom: 15px;
  }
}
@media all and (max-width: 679px) {
  body.cases.detail .article_title h3 {
    margin-bottom: 20px;
  }
}
body.cases.detail .case_main_title {
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}
@media all and (max-width: 679px) {
  body.cases.detail .case_main_title {
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 35px;
  }
}
body.cases.detail .case_main_title__label {
  -webkit-flex-basis: auto;
      -ms-flex-preferred-size: auto;
          flex-basis: auto;
  -webkit-flex-grow: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  height: 100%;
  color: #fff;
  font-family: 'ヒラギノ角ゴ Pro W3' , 'Hiragino Kaku Gothic Pro';
}
@media all and (max-width: 679px) {
  body.cases.detail .case_main_title__label {
    height: auto;
  }
}
body.cases.detail .case_main_title__label figure {
  margin: 0;
}
body.cases.detail .case_main_title__label table {
  font-size: 116%;
  height: 77px;
}
@media all and (max-width: 679px) {
  body.cases.detail .case_main_title__label table {
    height: 45px;
  }
}
body.cases.detail .case_main_title__label td {
  height: 100%;
  padding: 0 15px;
  border: none;
  vertical-align: middle;
}
body.cases.detail .case_main_title__label td:last-child {
  background-color: #a50000;
}
body.cases.detail .case_main_title__heading {
  margin-left: 25px;
}
@media all and (max-width: 679px) {
  body.cases.detail .case_main_title__heading {
    margin-top: 15px;
    margin-left: 0;
  }
}
body.cases.detail .case_main_title__heading h3 {
  line-height: 1.5;
  font-size: 30px;
  font-weight: normal;
  font-family: 'ヒラギノ明朝 ProN W3', 'Hiragino Mincho ProN', 'ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', 'ＭＳ Ｐ明朝', 'MS PMincho';
}
@media all and (max-width: 679px) {
  body.cases.detail .case_main_title__heading h3 {
    font-size: 167%;
  }
}
body.cases.detail .case_main_content {
  margin-bottom: 0;
}
body.cases.detail .case_main_content__img .wp-block-image {
  margin-bottom: 0;
}
body.cases.detail .case_main_content__detail {
  font-family: 'ヒラギノ角ゴ Pro W3' , 'Hiragino Kaku Gothic Pro', sans-serif;
  margin-left: 50px;
}
@media all and (max-width: 679px) {
  body.cases.detail .case_main_content__detail {
    margin-top: 30px;
    margin-left: 0;
  }
}
body.cases.detail .case_table {
  width: 430px;
  text-align: left;
  margin-bottom: 40px;
}
@media all and (max-width: 679px) {
  body.cases.detail .case_table {
    width: 100%;
  }
}
body.cases.detail .case_table tr {
  border-bottom: 1px #ddd solid;
}
body.cases.detail .case_table td:first-child,
body.cases.detail .case_table th {
  width: 110px;
  background: #eee;
  font-weight: normal;
  padding: 10px 0 10px 10px;
}
body.cases.detail .case_table td {
  width: 320px;
  padding: 10px 0 10px 10px;
  border-right: none;
  border-left: none;
  border-top: 1px #ddd solid;
  border-bottom: 1px #ddd solid;
}
body.cases.detail .case_table td a {
  display: inline-block;
  margin-right: 10px;
  color: #a50000;
  font-weight: bold;
}
body.cases.detail .case_table td a::before {
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e904";
  font-size: 77%;
}
body.cases.detail .voice {
  display: table;
  table-layout: fixed;
  margin-bottom: 0;
}
body.cases.detail .voice .balloon {
  display: table-cell;
  background: #ffffff;
  border: 1px solid #b9a4b2;
  position: relative;
  border-radius: 5px;
  padding: 33px 20px 20px 20px;
}
@media all and (max-width: 679px) {
  body.cases.detail .voice .balloon {
    padding: 35px 15px 15px;
  }
}
body.cases.detail .voice .balloon:after {
  content: "";
  display: block;
  height: 19px;
  width: 16px;
  background: url("/resource/hp_img_common/voice_balloon_triangle.gif") left top no-repeat;
  position: absolute;
  top: 23px;
  right: -16px;
}
body.cases.detail .voice .balloon .voice_title {
  position: absolute;
  top: -13px;
  left: 10px;
  padding: 6px 8px;
  background-color: #663c58;
  color: #fff;
  font-size: 108%;
  line-height: 1;
}
body.cases.detail .voice .balloon .voice_title img {
  width: 100%;
  height: auto;
}
@media all and (max-width: 679px) {
  body.cases.detail .voice .balloon .balloon_text {
    font-size: 123.1%;
  }
}
body.cases.detail .voice .icon {
  vertical-align: top;
  padding-left: 28px;
  display: table-cell;
  width: 75px;
}
body.cases.detail .voice .icon figure {
  margin-bottom: 0;
}
body.cases.detail .voice .icon img {
  width: 100%;
  height: auto;
}
body.cases.detail .main_article .article_title {
  display: table;
  table-layout: fixed;
  background: none;
  margin-bottom: 30px;
}
body.cases.detail .main_article .article_title .case_tag {
  font-family: 'ヒラギノ角ゴ Pro W3' , 'Hiragino Kaku Gothic Pro';
  display: table-cell;
  vertical-align: middle;
  height: 100%;
}
body.cases.detail .main_article .article_title .case_tag .case_label {
  display: table;
  table-layout: fixed;
  font-size: 116%;
  height: 77px;
}
body.cases.detail .main_article .article_title .case_tag .case_label .category {
  display: table-cell;
  background: #333333;
  vertical-align: middle;
  height: 100%;
  padding: 0 10px;
}
body.cases.detail .main_article .article_title .case_tag .case_label .number {
  display: table-cell;
  vertical-align: middle;
  height: 100%;
  padding: 0 10px;
}
body.cases.detail .main_article .article_title h3 {
  display: table-cell;
  vertical-align: middle;
  line-height: 1.5;
  padding: 0 0 0 25px;
  font-size: 30px;
  margin-bottom: 40px;
  font-family: 'ヒラギノ明朝 ProN W3', 'Hiragino Mincho ProN', 'ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', 'ＭＳ Ｐ明朝', 'MS PMincho';
}
body.cases.detail .main_article .main_image {
  float: left;
}
body.cases.detail .main_article .case_detail {
  font-family: 'ヒラギノ角ゴ Pro W3' , 'Hiragino Kaku Gothic Pro', sans-serif;
  float: right;
}
body.cases.detail .example_content {
  display: table;
  border-collapse: separate;
}
body.cases.detail .example_content .photo {
  margin-bottom: 8px;
  position: relative;
}
body.cases.detail .example_content .example_box {
  display: table-cell;
  vertical-align: top;
}
body.cases.detail .example_content .example_box .item_parent {
  margin-right: -30px;
}
body.cases.detail .example_content .example_box .item_parent.mr-105 {
  margin-right: -105px;
}
body.cases.detail .example_content .example_box .example_item {
  float: left;
}
body.cases.detail .example_content .example_box .example_item .example_title {
  font-size: 123.1%;
}
body.cases.detail .none_table {
  display: block;
}
body.cases.detail .management .example_box.w960 {
  display: table;
}
body.cases.detail .management .example_box.w960 .w250 {
  width: 250px;
  float: none;
  display: table-cell;
}
body.cases.detail .management .example_box.w960 .arrow {
  width: 105px;
  float: none;
  vertical-align: middle;
  text-align: center;
}
body.cases.detail .management .example_box.w960 .arrow .arrow_copy {
  text-align: left;
  padding-left: 15px;
  padding-bottom: 10px;
  font-size: 11px;
}
body.cases.detail .management .example_box.w960 .arrow .text_none {
  padding-top: 40px;
}
body.cases.detail .management .example_box.w960 .example_copy {
  font-weight: bold;
  font-size: 123.1%;
}
body.cases.detail .management .example_box {
  margin-right: -30px;
  margin-bottom: 70px;
}
@media all and (max-width: 679px) {
  body.cases.detail .management .example_box {
    margin-right: -10px;
    margin-bottom: 35px;
  }
}
body.cases.detail .management .example_box:last-child {
  margin-bottom: 0;
}
body.cases.detail .management .example_box .leaflet-container {
  background-color: #fff;
}
body.cases.detail .management .example_item {
  margin-right: 30px;
  margin-left: 0;
  -webkit-flex-basis: auto !important;
      -ms-flex-preferred-size: auto !important;
          flex-basis: auto !important;
  -webkit-flex-grow: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}
@media all and (max-width: 679px) {
  body.cases.detail .management .example_item {
    width: calc(50% - 10px);
    margin-right: 10px;
    margin-bottom: 35px;
  }
}
body.cases.detail .management .example_item--size_full {
  width: 100%;
}
body.cases.detail .management .example_item--size_full .photo img {
  margin-right: auto;
  margin-left: auto;
}
@media all and (max-width: 679px) {
  body.cases.detail .management .example_item--sp_full {
    width: 100%;
    margin-right: 0;
  }
}
@media all and (max-width: 679px) {
  body.cases.detail .management .example_item--sp_full .example_title.invisible {
    display: none;
  }
}
@media all and (max-width: 679px) {
  body.cases.detail .management .example_item--sp_full .photo img {
    margin-right: auto;
    margin-left: auto;
  }
}
body.cases.detail .management .example_item .photo {
  margin-bottom: 0;
}
body.cases.detail .management .example_item .photo:not(:last-child) {
  margin-bottom: 15px;
}
body.cases.detail .management .example_item .photo img {
  display: block;
}
body.cases.detail .management .example_item .example_text {
  font-size: 108%;
}
body.cases.detail .management .example_item_arrow {
  margin-right: 30px;
  margin-left: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
@media all and (max-width: 679px) {
  body.cases.detail .management .example_item_arrow {
    text-align: center;
    margin-right: 0;
    margin-bottom: 35px;
  }
}
body.cases.detail .management .example_item_arrow figure {
  text-align: center;
}
@media all and (max-width: 679px) {
  body.cases.detail .management .example_item_arrow figure {
    height: 33px;
  }
}
body.cases.detail .management .example_item_arrow figure:not(:first-child) {
  margin-top: 10px;
}
@media all and (max-width: 679px) {
  body.cases.detail .management .example_item_arrow figure img {
    -webkit-transform: rotate(90deg) translateX(-12px);
        -ms-transform: rotate(90deg) translateX(-12px);
            transform: rotate(90deg) translateX(-12px);
  }
}
body.cases.detail .management .example_title {
  margin-bottom: 15px;
  text-indent: -0.7em;
  padding-left: 1em;
  font-size: 123.1%;
}
body.cases.detail .management .example_title:before {
  content: "●";
  font-size: 77%;
  vertical-align: text-top;
  display: inline-block;
  padding-right: 0.4em;
  text-indent: 0;
}
body.cases.detail .management .problem_box {
  background: #eee;
  position: relative;
  padding: 0 40px 40px 40px;
  box-sizing: border-box;
}
@media all and (max-width: 679px) {
  body.cases.detail .management .problem_box {
    margin-right: -15px;
    margin-left: -15px;
    padding: 0 15px 35px;
  }
}
body.cases.detail .management .problem_box .problem_title {
  font-size: 189%;
  font-weight: normal;
  background: url("/resource/hp_img_common/ico_problem.png") left bottom no-repeat;
  background-size: 28.5px auto;
  padding: 50px 20px 5px 30px;
  border-bottom: 1px solid #333333;
  text-align: center;
  width: 80px;
  margin: 0 auto;
}
body.cases.detail .management .problem_box .list_disc {
  margin-top: 30px;
}
body.cases.detail .management .problem_box .list_disc li {
  margin-bottom: 10px;
  font-size: 138.5%;
}
body.cases.detail .management .problem_box .fs18 li {
  font-size: 18px;
  margin-top: -5px;
}
body.cases.detail .management .problem_box:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 19px 19px 0 19px;
  border-color: #333333 transparent transparent transparent;
  position: absolute;
  bottom: calc(100% + 35px);
  left: 50%;
  -webkit-transform: translate(-50%, 50%);
      -ms-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
}
body.cases.detail .management .problem_box figure {
  margin: 15px auto 0;
}
body.cases.detail .management .problem_box figure img {
  display: block;
  margin-right: auto;
  margin-left: auto;
}
@media all and (max-width: 679px) {
  body.cases.detail .management .problem_box figure img {
    height: auto;
  }
}
body.cases.detail .management .problem_box .solution_grid__item figure {
  margin-top: 0;
}
body.cases.detail .management .problem_box .solution_grid__item figure img {
  margin-left: 0;
}
body.cases.detail .management .problem_box .leaflet-container {
  background-color: #eee;
}
body.cases.detail .management .v17:before {
  top: 17%;
}
body.cases.detail .management .problem_box.w960 {
  margin-top: 50px;
  display: block;
}
body.cases.detail .management .problem_box.w960:before {
  border-style: solid;
  border-width: 19px 19px 0 19px;
  border-color: #333 transparent transparent transparent;
  top: -30px;
  left: 50%;
  margin-left: -19px;
}
body.cases.detail .management .problem_box.w960 .problem_item {
  margin-top: 30px;
  margin-right: -84px;
}
body.cases.detail .management .problem_box.w960 .problem_item .item {
  float: left;
  margin-right: 84px;
}
body.cases.detail .management .problem_box.w960 .problem_item .font_icon_arrow_right_02 {
  position: relative;
}
body.cases.detail .management .problem_box.w960 .problem_item .font_icon_arrow_right_02:before {
  top: 50%;
  font-size: 64px;
  margin-top: -27px;
  left: -72px;
}
body.cases.detail .management .problem_box.w960 .problem_item .font_icon_arrow_right_02 .arrow_text {
  left: -72px;
}
body.cases.detail .solution .text_red {
  margin-top: 10px;
  color: #a50000;
}
body.cases.detail .solution .example_supplement {
  margin-top: 10px;
}
body.cases.detail .solution .inner {
  position: relative;
}
body.cases.detail .solution .inner .point {
  position: absolute;
  top: -20px;
  right: 0;
}
body.cases.detail .solution .solution_detail {
  position: relative;
  padding: 40px;
  background: #f8f3eb;
}
@media all and (max-width: 679px) {
  body.cases.detail .solution .solution_detail {
    margin: 80px -15px 0;
    padding: 30px 15px 30px;
    box-sizing: border-box;
  }
}
body.cases.detail .solution .solution_detail .item {
  border-bottom: 1px solid #ccc;
  margin: 17px 0;
}
body.cases.detail .solution .solution_detail .item .title {
  font-size: 123.1%;
  font-weight: bold;
  margin-bottom: 17px;
}
body.cases.detail .solution .solution_detail .item dd {
  margin-bottom: 17px;
}
body.cases.detail .solution .solution_detail .item .indent {
  padding-left: 23px;
}
body.cases.detail .solution .solution_detail .last {
  margin-bottom: 0;
}
body.cases.detail .solution .solution_detail .leaflet-container {
  background-color: #f8f3eb;
}
body.cases.detail .solution .example_box .example_item {
  width: 300px;
  margin-right: 30px;
}
body.cases.detail .solution .example_box .after .photo {
  position: relative;
}
body.cases.detail .solution .example_box .after .photo:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 13px 0 13px 13px;
  border-color: transparent transparent transparent #333333;
  position: absolute;
  top: 50%;
  left: -20px;
  margin-top: -13px;
}
body.cases.detail .solution .example_box .w250 {
  width: 250px;
  margin-right: 105px;
}
body.cases.detail .solution .example_box .w250 .font_icon_arrow_right_02:before {
  content: "\e900";
  border: 0;
  margin-top: -27px;
  left: -85px;
}
body.cases.detail .solution .example_box .w250 .font_icon_arrow_right_02 .arrow_text {
  left: -88px;
}
body.cases.detail .solution_item {
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid #ccc;
}
body.cases.detail .solution_item:last-child {
  border-bottom: 1px solid #ccc;
}
body.cases.detail .solution_item__heading {
  font-size: 123.1%;
  font-weight: bold;
}
body.cases.detail .solution_item__heading:last-child {
  margin-bottom: 0;
}
body.cases.detail .solution_item__heading table {
  display: block;
}
body.cases.detail .solution_item__heading tr {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
body.cases.detail .solution_item__heading td {
  padding: 0;
  border: none;
}
body.cases.detail .solution_item__heading td:first-child {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 17px;
  height: 17px;
  background: #a50000;
  border-radius: 50%;
  color: #fff;
  margin-right: 7px;
  font-size: 77%;
  font-weight: normal;
  line-height: 1;
  margin-top: 0.4em;
}
body.cases.detail .solution_item__heading td:last-child {
  line-height: 1.75;
}
body.cases.detail .solution_item__text {
  margin-top: 12px;
  font-size: 108%;
}
@media all and (max-width: 679px) {
  body.cases.detail .solution_item figure img {
    height: auto;
  }
}
body.cases.detail .solution_grid {
  margin: 15px calc((33.33% - 275px) * -1) -30px 0;
}
@media all and (max-width: 679px) {
  body.cases.detail .solution_grid {
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-right: 0;
  }
}
body.cases.detail .solution_grid__item {
  -webkit-flex-basis: auto !important;
      -ms-flex-preferred-size: auto !important;
          flex-basis: auto !important;
  -webkit-flex-grow: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  width: 275px;
  margin: 0 calc(33.33% - 275px) 30px 0;
}
@media all and (max-width: 679px) {
  body.cases.detail .solution_grid__item {
    width: 100%;
    margin-right: 0;
  }
}
body.cases.detail .solution_grid__item--size_full {
  width: 100%;
}
body.cases.detail .solution_grid__item figure {
  margin-bottom: 0;
}
body.cases.detail .solution_grid__item figure:not(:last-child) {
  margin-bottom: 10px;
}
@media all and (max-width: 679px) {
  body.cases.detail .solution_grid__item figure img {
    width: 100%;
    height: auto;
  }
}
body.cases.detail .solution_grid__item h5 {
  margin-top: 15px;
  margin-bottom: 10px;
  font-size: 123.1%;
  color: #a50000;
}
@media all and (max-width: 679px) {
  body.cases.detail .solution_grid__item h5 {
    margin-top: 20px;
  }
}
body.cases.detail .solution_grid__item p {
  font-size: 108%;
}
body.cases.detail .solution_balloon {
  position: absolute;
  right: 0;
  bottom: calc(100% + 6px);
  margin-bottom: 0;
}
@media all and (max-width: 679px) {
  body.cases.detail .solution_balloon {
    right: 15px;
  }
}
body.cases.detail.aluminum .management_box {
  width: 100%;
}
body.cases.detail.aluminum .management_box .example_title {
  font-size: 123.1%;
}
body.cases.detail.aluminum .management_box > * {
  display: table-cell;
}
body.cases.detail.aluminum .management_box .left_box {
  width: 550px;
  vertical-align: top;
  padding-right: 20px;
}
body.cases.detail.aluminum .management_box .right_box {
  width: 330px;
  padding-left: 60px;
  vertical-align: middle;
}
body.cases.detail.aluminum .management_box .right_box > .box_inner {
  background: #eee;
  border-top: 5px solid #999;
  position: relative;
  padding: 0 20px 20px 20px;
}
body.cases.detail.aluminum .management_box .right_box > .box_inner:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 19px 0 19px 19px;
  border-color: transparent transparent transparent #333333;
  position: absolute;
  top: 50%;
  left: -45px;
  margin-top: -8px;
}
body.cases.detail.aluminum .management_box .right_box .problem_title {
  font-size: 189%;
  font-weight: normal;
  background: url("/resource/hp_img_common/ico_problem.png") left bottom no-repeat;
  background-size: 28.5px auto;
  padding: 50px 20px 5px 30px;
  border-bottom: 1px solid #333333;
  text-align: center;
  width: 80px;
  margin: 0 auto;
}
body.cases.detail .leaflet-image-layer {
  padding: 15px;
  box-sizing: border-box;
}

/* -------------------------------------------------------------------------

		contents.sass
		
		各ページ固有のスタイルを定義
		
------------------------------------------------------------------------- */
/* features
------------------------------------------------- */
@media all and (min-width: 680px) {
  body.features .feature_box {
    margin-top: 20px;
  }
}
@media all and (min-width: 680px) {
  body.features .main_article {
    float: left;
    width: 460px;
  }
}
body.features .main_article .article_title {
  background: none;
  font-family: 'ヒラギノ明朝 ProN W3', 'Hiragino Mincho ProN', 'ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', 'ＭＳ Ｐ明朝', 'MS PMincho', serif;
}
body.features .main_article .article_title h3 {
  line-height: 1.5;
  padding: 0;
  font-size: 30px;
  margin-bottom: 40px;
}
@media all and (max-width: 679px) {
  body.features .main_article .article_title h3 {
    margin-bottom: 30px;
    font-size: MIN(22px, 6vw);
  }
}
body.features .main_article .article_text {
  font-size: 108%;
}
@media all and (min-width: 680px) {
  body.features .main_image {
    float: right;
    width: 460px;
  }
}
@media all and (max-width: 679px) {
  body.features .main_image {
    margin-top: 30px;
  }
  body.features .main_image img {
    display: block;
    width: 100%;
  }
}
body.features .feature_content {
  margin-top: 50px;
  margin-left: -15px;
}
@media all and (min-width: 680px) {
  body.features .feature_content {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
@media all and (max-width: 679px) {
  body.features .feature_content {
    margin-top: 35px;
    margin-left: 0;
  }
}
@media all and (min-width: 680px) {
  body.features .feature_content .item {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 310px;
    margin-left: 15px;
  }
}
@media all and (max-width: 679px) {
  body.features .feature_content .item:not(:first-child) {
    margin-top: 35px;
  }
}
body.features .feature_content .item .feature_num {
  text-align: center;
  margin-bottom: 20px;
}
body.features .feature_content .item .feature_num img {
  border-bottom: 1px solid #333333;
  padding-bottom: 10px;
}
body.features .feature_content .item .title {
  margin: 20px 0;
  text-align: center;
}
@media all and (max-width: 679px) {
  body.features .feature_content .item .title {
    margin-bottom: 16px;
  }
}
body.features .feature_content .item .photo img {
  display: block;
  width: 100%;
}
@media all and (max-width: 679px) {
  body.features .feature_content .item .copy {
    font-size: 14px;
  }
}
body.features .feature_content .item .btn_bottom {
  margin-top: auto;
}
body.features .feature_content .item .btn_bottom .more {
  margin-top: 20px;
}
body.features .feature_content .item .btn_bottom .more .btn_box {
  position: relative;
  padding: 10px;
}
body.features .feature_content .item .btn_bottom .more .btn_box::before, body.features .feature_content .item .btn_bottom .more .btn_box::after {
  position: absolute;
  font-size: 153.9%;
  right: 0;
  top: 7px;
  line-height: 1.1;
}
@media all and (max-width: 679px) {
  body.features .feature_content .item .btn_bottom .more .btn_box::before, body.features .feature_content .item .btn_bottom .more .btn_box::after {
    top: 50%;
    right: 6px;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
body.features .products_box .article_title h3 {
  margin-bottom: 30px;
}
@media all and (max-width: 679px) {
  body.features .products_box .article_title h3 {
    margin-bottom: 20px;
    font-size: 153.9%;
  }
}
@media all and (min-width: 680px) {
  body.features .products_box .item_list {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
body.features .products_box .item_list:not(:last-child) {
  margin-bottom: 60px;
}
@media all and (max-width: 679px) {
  body.features .products_box .item_list:not(:last-child) {
    margin-bottom: 35px;
  }
}
body.features .products_box .item_list .item:not(:first-child) {
  margin-left: 40px;
}
@media all and (max-width: 679px) {
  body.features .products_box .item_list .item:not(:first-child) {
    margin-top: 35px;
    margin-left: 0;
  }
}
body.features .products_box .item_list .item .item_title h4 {
  margin-bottom: 30px;
  color: #a50000;
  font-size: 138.5%;
}
@media all and (max-width: 679px) {
  body.features .products_box .item_list .item .item_title h4 {
    margin-bottom: 20px;
  }
}
body.features .products_box .item_list .item .detail_container:not(:last-child) {
  margin-bottom: 30px;
}
@media all and (min-width: 680px) {
  body.features .products_box .item_list .item .detail_container {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
@media all and (min-width: 680px) {
  body.features .products_box .item_list .item .detail_container .photo {
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    width: 160px;
  }
}
@media all and (max-width: 679px) {
  body.features .products_box .item_list .item .detail_container .photo {
    margin-bottom: 20px;
  }
  body.features .products_box .item_list .item .detail_container .photo img {
    display: block;
    width: 100%;
  }
}
@media all and (min-width: 680px) {
  body.features .products_box .item_list .item .detail_container .detail_box {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    width: 270px;
    padding-left: 20px;
  }
}
body.features .products_box .item_list .item .detail_container .detail_box .text {
  vertical-align: top;
  font-size: 108%;
}
@media all and (max-width: 679px) {
  body.features .products_box .item_list .item .detail_container .detail_box .text {
    font-size: 14px;
  }
}
@media all and (min-width: 680px) {
  body.features .products_box .item_list .item .detail_container .detail_box .btn_bottom {
    margin-top: auto;
  }
}
body.features .products_box .item_list .item .detail_container .detail_box .btn_bottom .more {
  margin-top: 20px;
  position: relative;
}
@media all and (min-width: 680px) {
  body.features .products_box .item_list .item .detail_container .detail_box .btn_bottom .more {
    width: 270px;
  }
}
body.features .products_box .item_list .item .detail_container .detail_box .btn_bottom .more .btn_box {
  padding: 10px 0;
  vertical-align: top;
}
@media all and (max-width: 679px) {
  body.features .products_box .item_list .item .detail_container .detail_box .btn_bottom .more .btn_box {
    padding-top: 11px;
    padding-bottom: 11px;
  }
}
body.features .products_box .item_list .item .detail_container .detail_box .btn_bottom .more .btn_box:after {
  position: absolute;
  font-size: 153.9%;
  right: 0;
  top: 7px;
  line-height: 1.1;
}
@media all and (max-width: 679px) {
  body.features .products_box .item_list .item .detail_container .detail_box .btn_bottom .more .btn_box:after {
    top: 50%;
    right: 6px;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
body.features .products_box .item_list .item .product_system .system_title {
  font-size: 116%;
  font-weight: bold;
  line-height: 1;
}
body.features .products_box .item_list .item .product_system .system_title .small {
  vertical-align: middle;
  font-size: 12px;
  font-weight: normal;
  display: inline-block;
  padding-left: 10px;
}
@media all and (max-width: 679px) {
  body.features .products_box .item_list .item .product_system .system_title .small {
    margin-top: 10px;
    padding-left: 0;
  }
}
@media all and (min-width: 680px) {
  body.features .products_box .item_list .item .product_system .system_table {
    display: table;
    table-layout: fixed;
  }
}
@media all and (max-width: 679px) {
  body.features .products_box .item_list .item .product_system .system_table {
    margin-bottom: -5px;
  }
}
@media all and (min-width: 680px) {
  body.features .products_box .item_list .item .product_system .system_table .table_left {
    display: table-cell;
  }
}
@media all and (min-width: 680px) {
  body.features .products_box .item_list .item .product_system .system_table .table_right {
    display: table-cell;
  }
}
body.features .products_box .item_list .item .product_system .system_table .system_list {
  display: table;
  table-layout: fixed;
  margin-bottom: 5px;
}
body.features .products_box .item_list .item .product_system .system_table .system_list dt,
body.features .products_box .item_list .item .product_system .system_table .system_list dd {
  display: table-cell;
  box-sizing: border-box;
  vertical-align: middle;
  font-size: 85%;
}
body.features .products_box .item_list .item .product_system .system_table .system_list dt {
  width: 85px;
  padding: 10px;
}
body.features .products_box .item_list .item .product_system .system_table .system_list dd {
  padding: 0 10px 0 5px;
}
@media all and (max-width: 679px) {
  body.features .products_box .item_list .item .product_system .system_table .system_list dd {
    padding-left: 15px;
  }
}

/* -------------------------------------------------------------------------

		contents.sass
		
		各ページ固有のスタイルを定義
		
------------------------------------------------------------------------- */
/* topics common
------------------------------------------------- */
body.topics .label_list {
  color: #fff;
  display: table;
  font-size: 85%;
}
@media all and (min-width: 680px) {
  body.topics .label_list {
    float: right;
  }
}
body.topics .label_list .label_category {
  background: #663c58;
  display: table-cell;
  padding: 9px 12px;
  line-height: 0;
  vertical-align: middle;
}
@media all and (max-width: 679px) {
  body.topics .label_list .label_category {
    padding-top: 8px;
    padding-bottom: 8px;
  }
}
body.topics .label_list .label_gray02 {
  color: #333;
  display: table-cell;
  padding: 9px 12px;
}
@media all and (max-width: 679px) {
  body.topics .label_list .label_gray02 {
    padding-top: 8px;
    padding-bottom: 8px;
  }
}
body.topics .sub_navi_title {
  background: #000;
  height: 80px;
  text-align: center;
  line-height: 80px;
}
@media all and (max-width: 679px) {
  body.topics .sub_navi_title {
    height: 50px;
    line-height: 50px;
  }
}
body.topics .sub_navi {
  border-left: 1px solid #ddd;
  padding-top: 10px;
}
@media all and (max-width: 679px) {
  body.topics .sub_navi {
    padding-top: 15px;
    padding-bottom: 15px;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
  }
}
body.topics .sub_navi li a {
  width: 100%;
  padding: 10px 20px;
  display: inline-block;
  color: #333333;
  background: #ffffff;
  transition: background-color 0.4s ease;
  -webkit-transition: background-color 0.4s ease;
  -moz-transition: background-color 0.4s ease;
  box-sizing: border-box;
}
@media all and (max-width: 679px) {
  body.topics .sub_navi li a {
    padding-left: 25px;
    line-height: 1.4;
  }
}
body.topics .sub_navi li a:hover {
  background: #ddd;
  text-decoration: none;
}

/* topics index
------------------------------------------------- */
body.topics.index .topics_list {
  margin-top: 25px;
  border-top: 1px #ddd solid;
}
@media all and (max-width: 679px) {
  body.topics.index .topics_list {
    margin-top: 30px;
  }
}
body.topics.index .topics_list li {
  padding: 25px 0 20px;
  border-bottom: 1px #ddd solid;
}
@media all and (max-width: 679px) {
  body.topics.index .topics_list li {
    padding-top: 30px;
    padding-bottom: 25px;
  }
}
body.topics.index .topics_list li .topics_title {
  margin-bottom: 20px;
}
body.topics.index .topics_list li .topics_title h3 {
  color: #a50000;
  font-size: 138.5%;
}
@media all and (min-width: 680px) {
  body.topics.index .topics_list li .topics_title h3 {
    float: left;
    width: 430px;
    padding-top: 5px;
  }
}
@media all and (max-width: 679px) {
  body.topics.index .topics_list li .topics_title h3 {
    margin-bottom: 15px;
  }
}
body.topics.index .topics_list li .topics_title h3 a {
  color: #a50000;
}
@media all and (max-width: 679px) {
  body.topics.index .topics_list li .topics_text {
    line-height: 1.75;
  }
}
body.topics.index .topics_list li .link {
  text-align: right;
}
@media all and (max-width: 679px) {
  body.topics.index .topics_list li .link {
    margin-top: 10px;
  }
}
body.topics.index .pager_box {
  margin-top: 20px;
}
@media all and (max-width: 679px) {
  body.topics.index .pager_box {
    margin-top: 25px;
  }
}
body.topics.index .pager_box .Pagenation.Links {
  text-align: center;
}
@media all and (max-width: 679px) {
  body.topics.index .pager_box .Pagenation.Links {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
body.topics.index .pager_box .Pagenation.Links li {
  display: inline-block;
}
body.topics.index .pager_box .Pagenation.Links li.selected a, body.topics.index .pager_box .Pagenation.Links li.unselected a {
  display: inline-block;
  background: #666;
  border-radius: 100px;
  background-color: #666;
  width: 2em;
  height: 2em;
  line-height: 2em;
  color: #fff;
  text-decoration: none;
  margin: 0 3px;
}
@media all and (max-width: 679px) {
  body.topics.index .pager_box .Pagenation.Links li.selected a, body.topics.index .pager_box .Pagenation.Links li.unselected a {
    margin-right: 5px;
    margin-left: 5px;
  }
}
@media all and (max-width: 374px) {
  body.topics.index .pager_box .Pagenation.Links li.selected a, body.topics.index .pager_box .Pagenation.Links li.unselected a {
    margin-right: 2px;
    margin-left: 2px;
  }
}
body.topics.index .pager_box .Pagenation.Links li.selected a:hover, body.topics.index .pager_box .Pagenation.Links li.unselected a:hover {
  background-color: #a50000;
}
body.topics.index .pager_box .Pagenation.Links li.selected a {
  background-color: #a50000;
}
body.topics.index .pager_box .Pagenation.Links li.previous a, body.topics.index .pager_box .Pagenation.Links li.next a {
  color: #333;
  text-decoration: none;
}
body.topics.index .pager_box .Pagenation.Links li.previous a:hover, body.topics.index .pager_box .Pagenation.Links li.next a:hover {
  color: #a50000;
}
body.topics.index .pager_box .Pagenation.Links li.previous a:before, body.topics.index .pager_box .Pagenation.Links li.previous a:after, body.topics.index .pager_box .Pagenation.Links li.next a:before, body.topics.index .pager_box .Pagenation.Links li.next a:after {
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  top: 1px;
  display: inline-block;
}
body.topics.index .pager_box .Pagenation.Links li.previous {
  text-align: left;
  margin-right: 15px;
}
@media all and (max-width: 374px) {
  body.topics.index .pager_box .Pagenation.Links li.previous {
    margin-right: 0;
  }
}
body.topics.index .pager_box .Pagenation.Links li.previous a:before {
  content: "\e90a";
  padding-right: 2px;
}
body.topics.index .pager_box .Pagenation.Links li.next {
  text-align: right;
  margin-left: 15px;
}
@media all and (max-width: 374px) {
  body.topics.index .pager_box .Pagenation.Links li.next {
    margin-left: 0;
  }
}
body.topics.index .pager_box .Pagenation.Links li.next a:after {
  content: "\e904";
  padding-left: 2px;
}
@media all and (max-width: 679px) {
  body.topics.index .pager_box .Pagenation.Links li.first {
    display: none;
  }
}
body.topics.index .pager_box .Pagenation.Links li.last {
  display: none;
}

/* topics detail page
------------------------------------------------- */
body.topics.detail .topics_title_wrapper {
  background: url(/resource/hp_img_topics/topics_title_bg_top.gif) no-repeat;
  padding-top: 30px;
}
body.topics.detail .topics_title {
  margin-bottom: 20px;
  background: url(/resource/hp_img_topics/topics_title_bg_bottom.gif) repeat-x left bottom;
  padding-bottom: 21px;
}
@media all and (max-width: 679px) {
  body.topics.detail .topics_title {
    margin-bottom: 30px;
    padding-bottom: 20px;
  }
}
body.topics.detail .topics_title h3 {
  color: #333333;
  font-size: 182%;
}
@media all and (min-width: 680px) {
  body.topics.detail .topics_title h3 {
    float: left;
    width: 430px;
  }
}
@media all and (max-width: 679px) {
  body.topics.detail .topics_title h3 {
    margin-bottom: 15px;
  }
}
body.topics.detail .topics_content {
  color: #333333;
  font-size: 108%;
}
body.topics.detail .topics_content > p:first-child {
  line-height: 1.5;
}
@media all and (min-width: 680px) {
  body.topics.detail .topics_content p {
    margin: 10px 0;
  }
}
body.topics.detail .topics_content a {
  color: #a50000;
}
@media all and (max-width: 679px) {
  body.topics.detail .topics_content img {
    max-width: 100%;
    height: auto !important;
  }
}

/* -------------------------------------------------------------------------

		print.sass
		
		印刷用のスタイルを定義
		
------------------------------------------------------------------------- */
@media print {
  /* IE zoom
  ------------------------------------------------- */
  /* for IE6 or older */
  * html body {
    zoom: 0.7;
  }

  /* for IE7 */
  * + html body {
    zoom: 1;
  }
}

/*# sourceMappingURL=style.css.map */
