@charset "UTF-8";
@font-face {
  font-family: opensans;
  src: url("https://www.oriimec.co.jp//web_fonts/OpenSans-Regular.ttf") format("truetype");
}
/* [ font style ]
-------------------------------------------------*/
/* [ opacity ]
-------------------------------------------------*/
/* [ display style ]
-------------------------------------------------*/
/* [ easing style ]
-------------------------------------------------*/
/* [ link style ]
-------------------------------------------------*/
/* [ graphic style ]
-------------------------------------------------*/
/* [ background-image ]
-------------------------------------------------*/
/* -----------------------------------------------
common css [Scalable and Modular Architecture for CSS]
0. Normalize(ノーマライズ)
1. Reset(リセット) + Base(ベース)
2. Module(モジュール)
3. Layout(レイアウト)
-------------------------------------------------- */
/* -----------------------------------------------
 [0. Normalize(ノーマライズ)]
-------------------------------------------------- */
/* /common/css/normalize.css */
/* -----------------------------------------------
 [1. Reset(リセット) + Base(ベース)]
-------------------------------------------------- */
html * {
  /*-moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;*/
  outline: none;
}

::-moz-selection {
  background: #feff75;
  text-shadow: none;
}

::selection {
  background: #feff75;
  text-shadow: none;
}

html {
  -webkit-tap-highlight-color: transparent;
}

body {
  /* ゴシック */
  font-family: "Meiryo","メイリオ","ＭＳ Ｐゴシック",sans-serif;
  /* 明朝 */
  /*font-family: "Times New Roman","Hiragino Mincho ProN","ヒラギノ明朝 Pro W3","HGS明朝B","ＭＳ Ｐ明朝",serif,"Meiryo","メイリオ","ＭＳ Ｐゴシック",sans-serif;*/
  font-size: 13px;
  color: #313934;
  text-align: center;
  -webkit-text-size-adjust: 100%;
  /*line-height: 1;*/
  /* I found a bug in iOS 7. */
}
@media only screen and (max-width: 750px) {
  body{
    font-family: sans-serif;
  }
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, code, del, em, img, strong,
dl, dt, dd, ol, ul, li,
fieldset, form, label,
table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  font-style: normal;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
}

article, aside, figure, footer, header, hgroup, menu, nav, section {
  margin: 0;
  padding: 0;
  border: none;
  display: block;
  /*vertical-align: baseline;
  list-style: none;
  background-color: transparent;
  font-size: 100%;*/
  outline: none;
}

h1, h2, h3, h4, h5, h6, dt {
  line-height: 1;
}

p {
  line-height: 1.67;
  word-break: keep-all;
}

dd, li, th, td, input, textarea {
  line-height: 1.67;
  text-align: justify;
  text-justify: inter-ideograph;
}

ul, ol {
  list-style-type: none;
}

img {
  width: 100%;
  height: auto;
  vertical-align: top;
}

a {
  color: #313934;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

::-moz-selection {
  /*background: transparent;*/
}

::selection {
  /*background: transparent;*/
}

/* [1. Reset(リセット) + Base(ベース)] --> End */
/* -----------------------------------------------
 [2. Module(モジュール)]
-------------------------------------------------- */
/* Clearfix [ModernType]
-------------------------------------------------- */
.clearfix:after {
  display: block;
  clear: both;
  content: "";
}

/* Layout Module
-------------------------------------------------- */
.fll {
  float: left;
}

.flr {
  float: right;
}

/* Text Module
-------------------------------------------------- */
.superscript {
  font-size: 10px;
  position: relative;
  top: -3px;
}

.notes {
  font-size: 83.33%;
  /* 10px */
}

strong {
  font-weight: bold;
}

.red {
  color: #e3120d;
}

.notice_list {
  padding-top: 20px;
}
.notice_list li {
  margin-bottom: 5px;
}

/* Link Module
-------------------------------------------------- */
.link_text {
  padding-right: 20px;
  text-align: left;
}
.link_text {
  display: block;
  position: relative;
}
.link_text:after {
  width: 7px;
  height: 11px;
  content: "";
  display: block;
  background: url("../img/link_arrow_green.svg") no-repeat left top;
  background-size: contain;
  position: absolute;
  top: 46%;
  right: 4px;
  transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
}
.link_text:hover:after {
  right: 6px;
}

.link_text_black {
  display: block;
  position: relative;
}
.link_text_black:after {
  width: 7px;
  height: 11px;
  content: "";
  display: block;
  background: url("../img/link_arrow_black.svg") no-repeat left top;
  background-size: contain;
  position: absolute;
  top: 46%;
  right: 9px;
  transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
}
.link_text_black:hover:after {
  right: 6px;
}

.link_color {
  color: #18ddb6;
  text-decoration: underline;
}
.link_color:hover {
  text-decoration: none;
}

.ex_link {
  position: relative;
}
.ex_link:after {
  content: "";
  position: absolute;
  right: -16px;
  top: 4px;
  width: 11px;
  height: 11px;
  display: block;
  background: url("../img/link_ex_black.svg") no-repeat left top;
  background-size: contain;
}

.r_over:hover {
  -ms-filter: "alpha(opacity=80)";
  /* IE8 */
  opacity: 0.8;
  display: inline-block\9;
}

.section_wrap a {
  text-decoration: underline;
}
.section_wrap a:hover {
  text-decoration: none;
}

/* Button Module
-------------------------------------------------- */
.btn a, .btn span, .btn input, .btn button {
  height: 48px;
  line-height: 48px;
  text-align: center;
  vertical-align: middle;
  display: block;
  font-weight: bold;
  text-decoration: none;
  position: relative;
  background: none;
  border: none;
  width: 100%;
  /*&:after,&:before{
  	width: 100%; height: 38px;
  	content:"";
  	display: block;
  	position: absolute;
  }
  &:before{
  	border-top: 1px solid #202524;
  	border-left: 1px solid #202524;
  	top: 0; left: -1px;
  }
  &:after{
  	border-right: 1px solid #202524;
  	border-bottom: 1px solid #202524;
  	bottom: -1px; right: -1px;
  }*/
}
.btn.mt {
  margin-top: 40px;
}
@media only screen and (max-width: 750px) {
  .btn.mt {
    margin-top: 20px;
  }
}

.btn.clear,
.btn.ex_clear {
  border: 1px solid #202524;
  transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
}
.btn.clear:hover,
.btn.ex_clear:hover {
  background-color: #000;
}
.btn.clear:hover a, .btn.clear:hover span, .btn.clear:hover input, .btn.clear:hover button,
.btn.ex_clear:hover a,
.btn.ex_clear:hover span,
.btn.ex_clear:hover input,
.btn.ex_clear:hover button {
  color: #fff;
}

.btn.ex_clear {
  display: block;
  position: relative;
}
.btn.ex_clear:after {
  width: 11px !important;
  height: 11px !important;
  content: "";
  display: block;
  background: url("../img/link_ex_black.svg") no-repeat left top;
  background-size: contain;
  position: absolute;
  top: 50%;
  margin-top: -5px;
  right: 9px;
  transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
}
.btn.ex_clear:hover {
  display: block;
  position: relative;
}
.btn.ex_clear:hover:after {
  width: 11px !important;
  height: 11px !important;
  content: "";
  display: block;
  background: url("../img/link_ex_white.svg") no-repeat left top;
  background-size: contain;
  position: absolute;
  top: 50%;
  margin-top: -5px;
  right: 9px;
  transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
}

.btn.clear {
  display: block;
  position: relative;
}
.btn.clear:after {
  width: 7px;
  height: 11px;
  content: "";
  display: block;
  background: url("../img/link_arrow_black.svg") no-repeat left top;
  background-size: contain;
  position: absolute;
  top: 50%;
  margin-top: -5px;
  right: 9px;
  transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
}
.btn.clear:hover:after {
  right: 6px;
}
.btn.clear:hover {
  display: block;
  position: relative;
}
.btn.clear:hover:after {
  width: 7px;
  height: 11px;
  content: "";
  display: block;
  background: url("../img/link_arrow_white.svg") no-repeat left top;
  background-size: contain;
  position: absolute;
  top: 50%;
  margin-top: -5px;
  right: 9px;
  transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
}
.btn.clear:hover:hover:after {
  right: 6px;
}

.btn.clear.back {
  display: block;
  position: relative;
}
.btn.clear.back:after {
  width: 7px;
  height: 11px;
  content: "";
  display: block;
  background: url("../img/link_arrow_black.svg") no-repeat left top;
  background-size: contain;
  position: absolute;
  top: 50%;
  margin-top: -5px;
  right: 9px;
  transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  right: initial;
  left: 9px;
  -webkit-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  -moz-transform: scaleX(-1);
  transform: scaleX(-1);
  filter: FlipH;
  -ms-filter: "FlipH";
}
.btn.clear.back:hover:after {
  right: initial;
  left: 6px;
  right: 6px;
}
.btn.clear.back:hover {
  display: block;
  position: relative;
}
.btn.clear.back:hover:after {
  width: 7px;
  height: 11px;
  content: "";
  display: block;
  background: url("../img/link_arrow_white.svg") no-repeat left top;
  background-size: contain;
  position: absolute;
  top: 50%;
  margin-top: -5px;
  right: 9px;
  transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  right: initial;
  left: 9px;
  -webkit-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  -moz-transform: scaleX(-1);
  transform: scaleX(-1);
  filter: FlipH;
  -ms-filter: "FlipH";
}
.btn.clear.back:hover:hover:after {
  right: initial;
  left: 6px;
  right: 6px;
}

.btn.clear_white {
  border: 1px solid rgba(255,255,255,0.5);
  background-color: rgba(32, 37, 36, 0.5);
}
.btn.clear_white {
  display: block;
  position: relative;
}
.btn.clear_white:after {
  width: 7px;
  height: 11px;
  content: "";
  display: block;
  background: url("../img/link_arrow_white.svg") no-repeat left top;
  background-size: contain;
  position: absolute;
  top: 50%;
  margin-top: -5px;
  right: 9px;
  transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
}
.btn.clear_white:hover:after {
  right: 6px;
}
.btn.clear_white a, .btn.clear_white span, .btn.clear_white input, .btn.clear_white button {
  color: #fff;
}
.btn.clear_white:hover {
  background-color: #fff;
}
.btn.clear_white:hover {
  display: block;
  position: relative;
}
.btn.clear_white:hover:after {
  width: 7px;
  height: 11px;
  content: "";
  display: block;
  background: url("../img/link_arrow_black.svg") no-repeat left top;
  background-size: contain;
  position: absolute;
  top: 50%;
  margin-top: -5px;
  right: 9px;
  transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
}
.btn.clear_white:hover:hover:after {
  right: 6px;
}
.btn.clear_white:hover a, .btn.clear_white:hover span, .btn.clear_white:hover input, .btn.clear_white:hover button {
  color: #000;
}

.btn.dl_black,
.btn.black {
  border: 1px solid #202524;
  background-color: #202524;
  transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
}
.btn.dl_black a, .btn.dl_black span, .btn.dl_black input, .btn.dl_black button,
.btn.black a,
.btn.black span,
.btn.black input,
.btn.black button {
  color: #fff;
}
.btn.dl_black:hover,
.btn.black:hover {
  background-color: transparent;
}
.btn.dl_black:hover a, .btn.dl_black:hover span, .btn.dl_black:hover input, .btn.dl_black:hover button,
.btn.black:hover a,
.btn.black:hover span,
.btn.black:hover input,
.btn.black:hover button {
  color: #202524;
}

.btn.gray {
  border: 1px solid #b8b8b8;
  background-color: #b8b8b8;
  transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
}
.btn.gray a, .btn.gray span, .btn.gray input, .btn.gray button {
  color: #ffffff;
}
.btn.gray:hover {
  background-color: transparent;
}
.btn.gray:hover a, .btn.gray:hover span, .btn.gray:hover input, .btn.gray:hover button {
  color: #b8b8b8;
}

.btn.black {
  display: block;
  position: relative;
}
.btn.black:after {
  width: 7px;
  height: 11px;
  content: "";
  display: block;
  background: url("../img/link_arrow_white.svg") no-repeat left top;
  background-size: contain;
  position: absolute;
  top: 50%;
  margin-top: -5px;
  right: 9px;
  transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
}
.btn.black:hover:after {
  right: 6px;
}
.btn.black:hover {
  display: block;
  position: relative;
}
.btn.black:hover:after {
  width: 7px;
  height: 11px;
  content: "";
  display: block;
  background: url("../img/link_arrow_black.svg") no-repeat left top;
  background-size: contain;
  position: absolute;
  top: 50%;
  margin-top: -5px;
  right: 9px;
  transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
}
.btn.black:hover:hover:after {
  right: 6px;
}

.btn.black.back {
  display: block;
  position: relative;
}
.btn.black.back:after {
  width: 7px;
  height: 11px;
  content: "";
  display: block;
  background: url("../img/link_arrow_white.svg") no-repeat left top;
  background-size: contain;
  position: absolute;
  top: 50%;
  margin-top: -5px;
  right: 9px;
  transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  right: initial;
  left: 9px;
  -webkit-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  -moz-transform: scaleX(-1);
  transform: scaleX(-1);
  filter: FlipH;
  -ms-filter: "FlipH";
}
.btn.black.back:hover:after {
  right: initial;
  left: 6px;
  right: 6px;
}
.btn.black.back:hover {
  display: block;
  position: relative;
}
.btn.black.back:hover:after {
  width: 7px;
  height: 11px;
  content: "";
  display: block;
  background: url("../img/link_arrow_black.svg") no-repeat left top;
  background-size: contain;
  position: absolute;
  top: 50%;
  margin-top: -5px;
  right: 9px;
  transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  right: initial;
  left: 9px;
  -webkit-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  -moz-transform: scaleX(-1);
  transform: scaleX(-1);
  filter: FlipH;
  -ms-filter: "FlipH";
}
.btn.black.back:hover:hover:after {
  right: initial;
  left: 6px;
  right: 6px;
}

.btn.dl_black {
  display: block;
  position: relative;
}
.btn.dl_black:after {
  width: 11px !important;
  height: 11px !important;
  content: "";
  display: block;
  background: url("../img/link_dl_white.svg") no-repeat left top;
  background-size: contain;
  position: absolute;
  top: 50%;
  margin-top: -5px;
  right: 9px;
  transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
}
.btn.dl_black:hover {
  display: block;
  position: relative;
}
.btn.dl_black:hover:after {
  width: 11px !important;
  height: 11px !important;
  content: "";
  display: block;
  background: url("../img/link_dl_black.svg") no-repeat left top;
  background-size: contain;
  position: absolute;
  top: 50%;
  margin-top: -5px;
  right: 9px;
  transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
}

.btn.icon_none:after {
  display: none !important;
}

.btn.h50 a, .btn.h50 span, .btn.h50 input, .btn.h50 button {
  height: 50px;
  line-height: 50px;
}
.btn.h50:after {
  top: 19px !important;
}

.btn.center {
  margin-right: auto;
  margin-left: auto;
}

.btn.w278 {
  width: 278px;
}

.btn.w248 {
  width: 248px;
}

.btn.w220 {
  width: 220px;
}

.btn.w178 {
  width: 178px;
}

.btn.w150 {
  width: 150px;
}

.btn.w118 {
  width: 118px;
}


@media only screen and (min-width: 751px) {
  .btn.small{
    margin-top: 30px;
  }
  .btn.small a,
  .btn.small input,
  .btn.small span,
  .btn.small button
  {
    font-size: 12px;
    height: 38px;
    line-height: 38px;
  }
}
@media only screen and (max-width: 750px) {
  .btn.small{
    margin-top: 20px;
  }
  .btn.small a,
  .btn.small input,
  .btn.small span,
  .btn.small button
  {
    font-size: 12px;
    height: 28px;
    line-height: 28px;
  }
}

/* form parts
-------------------------------------------------- */
@media only screen and (min-width: 751px) {
  .search_bar .search_bar_inner {
    width: 960px !important;
    margin-left: auto;
    margin-right: auto;
  }
  .search_bar .search_bar_inner ul {
    float: left;
    width: 718px;
    display: table;
  }
  .search_bar .search_bar_inner ul > * {
    display: table-cell;
    vertical-align: middle;
  }
  .search_bar .search_bar_inner ul li {
    width: 280px;
  }
  .search_bar .search_bar_inner ul li dl dt {
    width: 80px;
  }
  .search_bar .search_bar_inner ul li dl dd .select, .search_bar .search_bar_inner ul li dl dd .customSelectInner {
    width: 235px !important;
  }
  .search_bar .notice_list {
    width: 960px;
  }
  .search_bar .btn {
    width: 240px;
    float: right;
  }
  .search_bar .btn input {
    width: 240px;
    height: 28px;
    line-height: 28px;
  }
  .search_bar .btn:hover {
    display: table-cell;
  }
}
@media only screen and (max-width: 750px) {
  .search_bar .search_bar_inner {
    min-width: 290px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .search_bar ul li {
    width: 100%;
    margin-bottom: 10px;
  }
  .search_bar ul li dl {
    width: 100%;
  }
  .search_bar ul li dl dd {
    width: 79.2%;
  }
  .search_bar ul li dl dd .select, .search_bar ul li dl dd .customSelectInner {
    width: 100% !important;
  }
}
.search_bar {
  background-color: #e1e6eb;
  padding-top: 15px;
  padding-bottom: 15px;
}
.search_bar .search_bar_inner .btn a {
  height: 28px;
  line-height: 28px;
}
.search_bar .search_bar_inner .btn a:before, .search_bar .search_bar_inner .btn a:after {
  height: 28px;
}
.search_bar ul li dl {
  display: table;
}
.search_bar ul li dl > * {
  display: table-cell;
  vertical-align: middle;
}

.select_wrap {
  position: relative;
  background-color: #fff;
}
.select_wrap:before {
  width: 11px;
  height: 6px;
  background: url("../img/link_arrow_black_vertical.svg") no-repeat center center;
  background-size: 11px 6px;
  content: "";
  display: block;
  position: absolute;
  top: 13px;
  right: 8px;
  float: right;
}

.customSelect {
  z-index: 1;
}
.customSelect .customSelectInner {
  height: 30px;
  line-height: 30px;
  vertical-align: middle;
  background-color: #fff;
  text-indent: 13px;
  background-size: 30px 6px;
}

/* table parts
-------------------------------------------------- */
table {
  border-top: 1px solid #d7dfdc;
  width: 100%;
}
table tr th, table tr td {
  border-bottom: 1px solid #d7dfdc;
  border-left: 1px solid #d7dfdc;
  text-align: center;
}
table tr th {
  background: #f2f5f8;
  word-break: break-all;
}
table tr th .subject {
  display: inline;
}
table tr th:first-child {
  border-left: none;
}
table tr .title {
  border-left: 1px solid #d7dfdc;
}
table tr td {
  word-break: break-all;
  white-space: normal;
}

.caption {
  text-align: left;
}

@media only screen and (min-width: 751px) {
  table {
    table-layout: auto;
  }
  table th, table td {
    vertical-align: middle;
    padding: 20px 0;
  }
  table th {
    width: 140px;
  }

  .caption {
    margin-top: 10px;
  }

  #main, x:-moz-any-link {
    background: red;
  }

  @-moz-document url-prefix( ) {
    table {
      table-layout: fixed;
    }
  }
}
@media only screen and (min-width: 751px) and (-webkit-min-device-pixel-ratio: 0) {
  table {
    table-layout: fixed;
  }
}
/* -----------------------------------------------
 [3. Layout(レイアウト)]
-------------------------------------------------- */
/* page loader
-------------------------------------------------- */
.pace {
  -webkit-pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.pace-inactive {
  display: none;
}

.pace .pace-progress {
  background: #18ddb6;
  position: fixed;
  z-index: 2000;
  top: 0;
  right: 100%;
  width: 100%;
  height: 2px;
}

/* #document
-------------------------------------------------- */
@media only screen and (min-width: 751px) {
  .sp {
    display: none !important;
  }

  #document {
    min-width: 960px;
  }

  .inner,
  .inner_fixed {
    margin-left: auto;
    margin-right: auto;
  }
  .inner .inner_section,
  .inner_fixed .inner_section {
    margin-bottom: 40px;
  }
  .inner .inner_section:last-child,
  .inner_fixed .inner_section:last-child {
    margin-bottom: 0;
  }

  .inner {
    max-width: 1200px;
    min-width: 1080px;
  }

  .inner_fixed {
    width: 1080px;
  }
}
@media only screen and (max-width: 750px) {
  .pc {
    display: none !important;
  }

  #document {
    overflow: hidden;
  }

  .inner,
  .inner_fixed {
    min-width: 290px;
    margin-left: 15px;
    margin-right: 15px;
  }
  .inner .inner_section,
  .inner_fixed .inner_section {
    margin-bottom: 22px;
  }
  .inner .inner_section:last-child,
  .inner_fixed .inner_section:last-child {
    margin-bottom: 0;
  }
}
#document {
  position: relative;
  -ms-filter: "alpha(opacity=$num)";
  /* IE8 */
  opacity: 0;
}

.inner,
.inner_fixed {
  position: relative;
}

/* #header
-------------------------------------------------- */
@media only screen and (min-width: 751px) {
  #header {
    height: 61px;
  }

  #header_inner {
    min-width: 1080px;
    height: 60px;
    padding: 0 0 0 20px;
  }
  #header_inner #site_name {
    width: 293px;
    height: 26px;
    margin-right: 27px;
    padding-top: 16px;
    padding-bottom: 16px;
  }
  #header_inner #global_navi {
    overflow: hidden;
  }
  #header_inner #global_navi #navi_ul li a{
    padding-top: 19px;
    padding-bottom: 23px;
  }
}
@media only screen and (max-width: 750px) {
  #header {
    height: 45px;
  }

  #header_inner #site_name {
    width: 143px;
    padding: 11px 0 8px 10px;
  }
  #header_inner #gnavi_trigger {
    width: 45px;
    height: 45px;
    background-color: #18ddb6;
    position: relative;
    float: right;
  }
  #header_inner #gnavi_trigger div, #header_inner #gnavi_trigger:before, #header_inner #gnavi_trigger:after {
    width: 20px;
    height: 1px;
    background-color: #fff;
    position: absolute;
    left: 13px;
  }
  #header_inner #gnavi_trigger:before, #header_inner #gnavi_trigger:after {
    content: "";
    display: block;
  }
  #header_inner #gnavi_trigger div {
    top: 22px;
  }
  #header_inner #gnavi_trigger:before {
    top: 15px;
  }
  #header_inner #gnavi_trigger:after {
    top: 28px;
  }
}
#header {
  position: relative;
  z-index: 200;
}

#header_inner {
  background-color: #fff;
  border-bottom: 1px solid #dfe6e4;
  position: relative;
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 0;
  /* #global Navi
  -------------------------------------------------- */
}
#header_inner #site_name {
  float: left;
}
@media only screen and (min-width: 751px) {
  #header_inner #global_navi #navi_ul a, #header_inner #global_navi #navi_ul span {
    font-size: 13px;
    cursor: pointer;
    top: 0px;
  }
}
#header_inner #global_navi {
  float: left;
  position: absolute;
  right: 275px;
}
#header_inner #global_navi #navi_ul {
  //padding-top: 2px;
}
#header_inner #global_navi .list {
  display: inline-block;
  margin-right: 15px;
}
#header_inner #global_navi .list.mn_trigger a, #header_inner #global_navi .list.mn_trigger > span {
  position: relative;
}
#header_inner #global_navi .list.mn_trigger a:after, #header_inner #global_navi .list.mn_trigger > span:after {
  width: 14px;
  height: 14px;
  content: "";
  display: block;
  background: url("../img/link_arrow_green_vertical.svg") no-repeat center center;
  background-size: contain;
  transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  position: absolute;
  top: 5px;
  right: 0px;
}
#header_inner #global_navi .list.mn_trigger a.active:after, #header_inner #global_navi .list.mn_trigger > span.active:after {
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}
#header_inner #global_navi .list.mn_trigger a:after, #header_inner #global_navi .list.mn_trigger > span:after {
  width: 10px !important;
  height: 10px !important;
  top: 0; bottom: 0;
  right: 4px;
  margin: auto;
}
#header_inner #global_navi .list.mn_trigger a:hover, #header_inner #global_navi .list.mn_trigger > span:hover {
  position: relative;
}
#header_inner #global_navi .list.mn_trigger a:hover:after,
#header_inner #global_navi .list.mn_trigger.active a:after,
#header_inner #global_navi .list.mn_trigger > span:hover:after,
#header_inner #global_navi .list.mn_trigger.active > span:after {
  width: 14px;
  height: 14px;
  content: "";
  display: block;
  background: url("../img/link_arrow_green_vertical.svg") no-repeat center center;
  background-size: contain;
  transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  position: absolute;
  top: 5px;
  right: 5px;
}
#header_inner #global_navi .list.mn_trigger a:hover.active:after, #header_inner #global_navi .list.mn_trigger > span:hover.active:after {
  transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
}
#header_inner #global_navi .list.mn_trigger.active a, #header_inner #global_navi .list.mn_trigger.active >span{
  color: #18ddb6;
}
#header_inner #global_navi .list.mn_trigger.active a:after, #header_inner #global_navi .list.mn_trigger.active >span:after{
  top: 0; bottom: 0;
  margin: auto;
}
#header_inner #global_navi .list.mn_trigger.active span, #header_inner #global_navi .list.mn_trigger.active >span span{
  opacity: 0 !important;
}
#header_inner #global_navi .list.mn_trigger:hover span.hover,
#header_inner #global_navi .list.mn_trigger.active span.hover{
              top: -21px !important;
              opacity: 1 !important;

}
#header_inner #global_navi .list a {
          display: block;
          overflow: hidden;
}
#header_inner #global_navi .list a,
#header_inner #global_navi .list > span {
  height: 18px;
  padding-right: 25px;
  display: inline-block;
  font-size: 11px;
  font-family: opensans, 'Open Sans', sans-serif;
  font-style: italic;
  letter-spacing: 0.15em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
}
#header_inner #global_navi .list a:after,
#header_inner #global_navi .list > span:after {
  width: 10px;
  height: 10px;
}
#header_inner #global_navi .list a span,
#header_inner #global_navi .list > span span {
  height: 21px;
  font-family: opensans, 'Open Sans', sans-serif;
  font-style: italic;
  letter-spacing: 0.15em;
  font-weight: bold;
  display: block;
  overflow: hidden;
  position: relative;
  top: 0;
  transition: all 0.1s ease-in;
  -moz-transition: all 0.1s ease-in;
  -webkit-transition: all 0.1s ease-in;
  -ms-transition: all 0.1s ease-in;
}
#header_inner #global_navi .list a span.hover,
#header_inner #global_navi .list > span span.hover {
  opacity: 0 !important;
}
#header_inner #global_navi .list a:hover span,
#header_inner #global_navi .list > span:hover span {
  opacity: 0 !important;
}
#header_inner #global_navi .list a:hover span.hover,
#header_inner #global_navi .list > span:hover span.hover {
  top: -21px !important;
              opacity: 1 !important;
}
#header_inner #global_navi .list span {
  cursor: default;
}
#header_inner #global_navi .list:hover a, #header_inner #global_navi .list:hover span {
  color: #18ddb6;
}
#header_inner #global_navi .list:last-child {
  margin-right: 0;
}
#header_inner #global_navi .list:last-child a {
  padding-right: 0;
}
#header_inner #lang_wrap {
  width: 180px;
  float: right;
  position: relative;
}
#header_inner #lang_wrap li {
  width: 181px;
  height: 60px;
  text-align: center;
  border-left: 1px solid #d7dfdc;
  border-bottom :1px solid #d7dfdc;
  position: absolute;
  right: 0;
  background-color: #fff;
  cursor: pointer;
}
#header_inner #lang_wrap li a, #header_inner #lang_wrap li span {
  display: inline-block;
  padding-top: 21px;
  font-family: opensans, 'Open Sans';
  font-style: italic;
  font-size: 12px;
  font-weight: bold;
}
#header_inner #lang_wrap li.trigger {
  width: 180px;
  height: 60px;
  position: relative;
  top: 0;
  right: 0;
  background-color: transparent;
  transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
}
#header_inner #lang_wrap li.trigger a, #header_inner #lang_wrap li.trigger span {
  position: relative;
  padding-left: 28px;
  transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
}
#header_inner #lang_wrap li.trigger a:after, #header_inner #lang_wrap li.trigger span:after {
  width: 17px;
  height: 17px;
  content: "";
  display: block;
  background: url("../img/icon_green_global2.svg") no-repeat center center;
  background-size: contain;
  transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  position: absolute;
  top: 22px;
  left: 0px;
}
#header_inner #lang_wrap li.trigger a.active:after, #header_inner #lang_wrap li.trigger span.active:after {
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}
#header_inner #lang_wrap li.trigger a:after, #header_inner #lang_wrap li.trigger span:after {
  width: 17px !important;
  height: 17px !important;
}
#header_inner #lang_wrap li:hover {
  background-color: #18ddb6;
}
#header_inner #lang_wrap li:hover.trigger a, #header_inner #lang_wrap li:hover.trigger span {
  position: relative;
}
#header_inner #lang_wrap li:hover.trigger a:after, #header_inner #lang_wrap li:hover.trigger span:after {
  width: 17px;
  height: 17px;
  content: "";
  display: block;
  background: url("../img/icon_white_global.svg") no-repeat center center;
  background-size: contain;
  transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  position: absolute;
  top: 22px;
  left: 0px;
}
#header_inner #lang_wrap li:hover.trigger a.active:after, #header_inner #lang_wrap li:hover.trigger span.active:after {
  transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
}
#header_inner #lang_wrap li:hover a, #header_inner #lang_wrap li:hover span {
  color: #fff;
  text-decoration: none;
}
#header_inner #lang_wrap li:nth-child(2),
#header_inner #lang_wrap li:nth-child(3),
#header_inner #lang_wrap li:nth-child(4){
  display: none;
  border-bottom :1px solid #d7dfdc;

}
#header_inner #lang_wrap li:nth-child(2) {
  top: 61px;
}
#header_inner #lang_wrap li:nth-child(3) {
  top: 122px;
}
#header_inner #lang_wrap li:nth-child(4) {
  top: 183px;
}


#header_inner #search_wrap {
  width: 60px;
  /*float: right;*/
  position: absolute;
  right: 180px;
}
#header_inner #search_wrap li {
  width: 332px;
  height: 60px;
  text-align: center;
  border-left: 1px solid #d7dfdc;
  border-bottom :1px solid #d7dfdc;
  position: absolute;
  right: -1px;
  background-color: #fff;
}
#header_inner #search_wrap li a, #header_inner #search_wrap li span {
  display: inline-block;
  padding-top: 21px;
  font-family: opensans, 'Open Sans';
  font-style: italic;
  font-size: 12px;
  font-weight: bold;
}
#header_inner #search_wrap li.trigger {
  width: 60px;
  height: 60px;
  cursor: pointer;
  position: relative;
  top: 0;
  right: 0;
  background-color: transparent;
  transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
}
#header_inner #search_wrap li.trigger a, #header_inner #search_wrap li.trigger span {
  position: relative;
  text-indent: -9999px;
  overflow: hidden;
  width: 17px;
  transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
}
#header_inner #search_wrap li.trigger a:after, #header_inner #search_wrap li.trigger span:after {
  width: 17px;
  height: 17px;
  content: "";
  display: block;
  background: url("../img/icon_green_search.svg") no-repeat center center;
  background-size: contain;
  transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  position: absolute;
  top: 22px;
  left: 0px;
}
#header_inner #search_wrap li.trigger a.active:after, #header_inner #search_wrap li.trigger span.active:after {
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}
#header_inner #search_wrap li.trigger a:after, #header_inner #search_wrap li.trigger span:after {
  width: 17px !important;
  height: 17px !important;
}
#header_inner #search_wrap li.trigger:hover {
  background-color: #18ddb6;
}
#header_inner #search_wrap li:hover.trigger a, #header_inner #search_wrap li:hover.trigger span {
  position: relative;
}
#header_inner #search_wrap li:hover.trigger a:after, #header_inner #search_wrap li:hover.trigger span:after {
  width: 17px;
  height: 17px;
  content: "";
  display: block;
  background: url("../img/icon_white_search.svg") no-repeat center center;
  background-size: contain;
  transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  position: absolute;
  top: 22px;
  left: 0px;
}
#header_inner #search_wrap li:hover.trigger a.active:after, #header_inner #search_wrap li:hover.trigger span.active:after {
  transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
}
#header_inner #search_wrap li.trigger:hover a, #header_inner #search_wrap li:hover span {
  color: #fff;
  text-decoration: none;
}
#header_inner #search_wrap li:nth-child(2){
  display: none;
  border-bottom :1px solid #d7dfdc;
  border-right :1px solid #d7dfdc;

}
#header_inner #search_wrap li:nth-child(2) {
  top: 61px;
  height: 70px;
}
#header_inner #search_wrap form{
  display: block;
  margin: 10px;
  border: 1px solid #d7dfdc;
  border-radius: 2px;
  overflow: hidden;
}
#header_inner #search_wrap form input[type="text"]{
  display: block;
  float: left;
  border: none !important;
  padding: 0 10px;
  margin: 0;
  width: 250px;
  height: 48px;
}
#header_inner #search_wrap form button{
  display: block;
  float: left;
  border: none;
  padding: 0;
  margin: 0;
  width: 40px;
  height: 48px;
  text-indent: -9999px;
  overflow: hidden;
  background: url("../img/icon_green_search.svg") no-repeat center center;
  background-size: 17px 17px;
}


#header_inner #sns_wrap {
  width: 60px;
  position: absolute;
  right: 120px;
}
#header_inner #sns_wrap li {
  width: 100px;
  height: 60px;
  text-align: center;
  border-left: 1px solid #d7dfdc;
  position: absolute;
  right: -1px;
  background-color: #fff;
  cursor: pointer;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom :1px solid #d7dfdc;
}
#header_inner #sns_wrap li a, #header_inner #sns_wrap li span {
  display: inline-block;
  padding-top: 21px;
  font-family: opensans, 'Open Sans';
  font-style: italic;
  font-size: 12px;
  font-weight: bold;
}
#header_inner #sns_wrap li.trigger {
  width: 60px;
  height: 60px;
  position: relative;
  top: 0;
  right: 0;
  background-color: transparent;
  transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
}
#header_inner #sns_wrap li.trigger a, #header_inner #sns_wrap li.trigger span {
  position: relative;
  text-indent: -9999px;
  overflow: hidden;
  width: 16px;
  transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
}
#header_inner #sns_wrap li.trigger a:after, #header_inner #sns_wrap li.trigger span:after {
  width: 16px;
  height: 19px;
  content: "";
  display: block;
  background: url("../img/icon_green_sns.svg") no-repeat center center;
  background-size: contain;
  transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  position: absolute;
  top: 22px;
  left: 0px;
}
#header_inner #sns_wrap li.trigger a.active:after, #header_inner #sns_wrap li.trigger span.active:after {
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}
#header_inner #sns_wrap li.trigger a:after, #header_inner #sns_wrap li.trigger span:after {
  width: 16px !important;
  height: 19px !important;
}
#header_inner #sns_wrap li:hover {
  background-color: #18ddb6;
}
#header_inner #sns_wrap li:hover.trigger a, #header_inner #sns_wrap li:hover.trigger span {
  position: relative;
}
#header_inner #sns_wrap li:hover.trigger a:after, #header_inner #sns_wrap li:hover.trigger span:after {
  width: 16px;
  height: 19px;
  content: "";
  display: block;
  background: url("../img/icon_white_sns.svg") no-repeat center center;
  background-size: contain;
  transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  position: absolute;
  top: 22px;
  left: 0px;
}
#header_inner #sns_wrap li:hover.trigger a.active:after, #header_inner #sns_wrap li:hover.trigger span.active:after {
  transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
}
#header_inner #sns_wrap li:hover a, #header_inner #sns_wrap li:hover span {
  color: #fff;
  text-decoration: none;
}
#header_inner #sns_wrap li:nth-child(2),
#header_inner #sns_wrap li:nth-child(3),
#header_inner #sns_wrap li:nth-child(4){
  display: none;
  border-right :1px solid #d7dfdc;
}
#header_inner #sns_wrap li:nth-child(2) a,
#header_inner #sns_wrap li:nth-child(3) a,
#header_inner #sns_wrap li:nth-child(4) a{
  overflow: hidden;
  text-indent: -9999px;
}
#header_inner #sns_wrap li:nth-child(2) {
  top: 61px;
  background-image: url("../img/icon_youtube.png");
  background-position: center 5px;
}
#header_inner #sns_wrap li:nth-child(2) a {
}
#header_inner #sns_wrap li:nth-child(2):after {
  content: 'Press Room Automation';
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  font-size: 10px;
  line-height: 12px;
}
#header_inner #sns_wrap li:nth-child(3) {
  top: 122px;
  background-image: url("../img/icon_youtube.png");
  background-position: center 9px;
}
#header_inner #sns_wrap li:nth-child(3) a {
}
#header_inner #sns_wrap li:nth-child(3):after {
  content: 'Spring Machine';
  position: absolute;
  left: 0;
  bottom: 9px;
  width: 100%;
  font-size: 10px;
  line-height: 12px;
}
#header_inner #sns_wrap li:nth-child(4) {
  top: 183px;
  background-image: url("../img/icon_linkedin.png");
}
#header_inner #sns_wrap li:nth-child(4) a {
}

/* Meganavi
-------------------------------------------------- */
#dd_navi_contents_wrap {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

#dd_navi_contents {
  position: relative;
}
#dd_navi_contents .dd_navi_wrap {
  background-color: #fff;
  position: absolute;
  top: -100px;
  left: 0;
  border-bottom: 1px solid #d7dfdc;
  display: none;
}
#dd_navi_contents .dd_navi_wrap .dd_inner {
  max-width: 1200px;
  min-width: 1080px;
  margin: 0 auto;
  padding-left: 20px;
  /*[ news ]
  -----------------------------------*/
  /*[ technical ]
  -----------------------------------*/
  /*[ products ]
  -----------------------------------*/
  /*[ company ]
  -----------------------------------*/
  /*[ recruit ]
  -----------------------------------*/
}
#dd_navi_contents .dd_navi_wrap .dd_inner .info_wrap, #dd_navi_contents .dd_navi_wrap .dd_inner .dd_content {
  position: relative;
  top: -30px;
  -ms-filter: "alpha(opacity=$num)";
  /* IE8 */
  opacity: 0;
}
#dd_navi_contents .dd_navi_wrap .dd_inner .info_wrap {
  width: 28%;
  float: left;
  padding: 41px 0 40px;
}
#dd_navi_contents .dd_navi_wrap .dd_inner .close_btn{
  width: 40px; height: 40px;
  background: url(../img/mn_close_btn.svg) no-repeat center center;
  background-size: cover;
  position: absolute;
  left: 0; right: 0;
  margin: auto;
  bottom: -80px;
  overflow: hidden;
  text-indent: -9999px;
}
#dd_navi_contents .dd_navi_wrap .dd_inner .info_wrap dt {
  padding-bottom: 10px;
  margin-bottom: 30px;
  position: relative;
}
#dd_navi_contents .dd_navi_wrap .dd_inner .info_wrap dt span {
  display: block;
}
#dd_navi_contents .dd_navi_wrap .dd_inner .info_wrap dt .en {
  font-family: opensans, 'Open Sans', sans-serif;
  font-style: italic;
  font-weight: bold;
  letter-spacing: 0.15em;
  font-size: 21px;
}
#dd_navi_contents .dd_navi_wrap .dd_inner .info_wrap dt .jp {
  font-size: 15px;
}
#dd_navi_contents .dd_navi_wrap .dd_inner .info_wrap dt:after {
  width: 50px;
  height: 1px;
  content: "";
  display: block;
  background-color: #09c585;
  position: absolute;
  left: 0;
  bottom: 0;
}
#dd_navi_contents .dd_navi_wrap .dd_inner .info_wrap dd {
  margin-right: 60px;
}
#dd_navi_contents .dd_navi_wrap .dd_inner .info_wrap dd.text {
  margin-bottom: 45px;
  word-break: keep-all;
}
#dd_navi_contents .dd_navi_wrap .dd_inner .dd_content {
  width: 71.67%;
  float: right;
  border-left: 1px solid #d7dfdc;
}
#dd_navi_contents .dd_navi_wrap .dd_inner .dd_content .link_text:after {
  top: 50%;
  margin-top: -4px;
}
#dd_navi_contents .dd_navi_wrap .dd_inner .dd_content.technical_list .link_text:after {
  top: 0;
  margin-top: 43px;
}
#dd_navi_contents .dd_navi_wrap .dd_inner .dd_content .box_link {
  width: 50%;
  float: left;
}
#dd_navi_contents .dd_navi_wrap .dd_inner .dd_content .box_link .list_inner {
  width: 90.7%;
  border-right: 1px solid #d7dfdc;
  padding: 148px 4.65%;
  display: table;
}
#dd_navi_contents .dd_navi_wrap .dd_inner .dd_content .box_link .list_inner.icon_orii {
  background: url(../img/logo_orii.png) no-repeat right bottom;
}
#dd_navi_contents .dd_navi_wrap .dd_inner .dd_content .box_link .list_inner.icon_mec {
  background: url(../img/logo_mec.png) no-repeat right bottom;
}
#dd_navi_contents .dd_navi_wrap .dd_inner .dd_content .box_link .list_inner > * {
  display: table-cell;
  vertical-align: middle;
}
#dd_navi_contents .dd_navi_wrap .dd_inner .dd_content .box_link .list_inner .photo {
  width: 175px;
  height: 100px;
  display: block;
  overflow: hidden;
}
#dd_navi_contents .dd_navi_wrap .dd_inner .dd_content .box_link .list_inner .text_wrap {
  width: 47.1%;
  padding-left: 20px;
}
#dd_navi_contents .dd_navi_wrap .dd_inner .dd_content .box_link .list_inner .text_wrap dt {
  font-size: 18px;
}
#dd_navi_contents .dd_navi_wrap .dd_inner .dd_content .box_link:nth-child(2n) {
  float: right;
}
#dd_navi_contents .dd_navi_wrap .dd_inner .dd_content .box_link:nth-child(3) .list_inner, #dd_navi_contents .dd_navi_wrap .dd_inner .dd_content li:nth-child(4) .list_inner {
  border-bottom: 0;
}
#dd_navi_contents .dd_navi_wrap .dd_inner .news_list {
  display: table;
}
#dd_navi_contents .dd_navi_wrap .dd_inner .news_list > * {
  display: table-cell;
  vertical-align: middle;
}
#dd_navi_contents .dd_navi_wrap .dd_inner .news_list li {
  width: 33.33%;
}
#dd_navi_contents .dd_navi_wrap .dd_inner .news_list li dl {
  padding: 49px 18px 45px;
  border-right: 1px solid #d7dfdc;
}
#dd_navi_contents .dd_navi_wrap .dd_inner .news_list li dl dt {
  height: 210px;
  overflow: hidden;
  position: relative;
  background-color: #0c6e5b;
  background-size: cover !important;
  transition: all 0.15s ease-in;
  -moz-transition: all 0.15s ease-in;
  -webkit-transition: all 0.15s ease-in;
  -ms-transition: all 0.15s ease-in;
  /*&:after{
  	content: "";
  	display: block;
  	width: 100%; height: 210px;
  	background-size: cover !important;
  	position: absolute;
  	top: 0; left: 0;
  }*/
}
#dd_navi_contents .dd_navi_wrap .dd_inner .news_list li dl dt:hover {
  -ms-filter: "alpha(opacity=$num)";
  /* IE8 */
  opacity: 0.7;
}
#dd_navi_contents .dd_navi_wrap .dd_inner .news_list li dl dt a {
  height: 115px;
  text-align: center;
  padding-top: 95px;
  display: block;
  color: #18ddb6;
  font-size: 16px;
  text-decoration: none;
  font-family: opensans, 'Open Sans';
  font-style: italic;
  letter-spacing: 0.15em;
  font-weight: bold;
}
#dd_navi_contents .dd_navi_wrap .dd_inner .news_list li dl dd {
  /*height: 13px;*/
  margin-top: 18px;
  display: inline-block;
  padding-right: 30px;
}
#dd_navi_contents .dd_navi_wrap .dd_inner .news_list li dl dd.link_text {
  line-height: 21px;
  min-height: 42px;
  display: block;
}
#dd_navi_contents .dd_navi_wrap .dd_inner .news_list .news01 dl dt {
  background: url("../img/navi/img_news01.jpg") no-repeat center center;
}
#dd_navi_contents .dd_navi_wrap .dd_inner .news_list .news02 dl dt {
  background: url("../img/navi/img_news02.jpg") no-repeat center center;
}
#dd_navi_contents .dd_navi_wrap .dd_inner .news_list .news03 dl dt {
  background: url("../img/navi/img_news03.jpg") no-repeat center center;
}
#dd_navi_contents .dd_navi_wrap .dd_inner .technical_list li .text_wrap {
  height: 22px;
}
#dd_navi_contents .dd_navi_wrap .dd_inner .products_list .products_list_inner {
  border-right: 1px solid #d7dfdc;
  padding-top: 45px;
  padding-bottom: 40px;
  padding-left: 60px;
  display: table;
}
#dd_navi_contents .dd_navi_wrap .dd_inner .products_list .products_list_inner > * {
  display: table-cell;
  vertical-align: middle;
}
#dd_navi_contents .dd_navi_wrap .dd_inner .products_list .products_list_inner li {
  width: 20%;
  padding-right: 5%;
  padding-top: 153px;
  vertical-align: top;
  background-size: 148px 130px !important;
}
#dd_navi_contents .dd_navi_wrap .dd_inner .products_list .products_list_inner li dt {
  font-size: 13px;
  font-weight: bold;
  text-align: left;
  line-height: 36px;
  margin-bottom: 23px;
}
#dd_navi_contents .dd_navi_wrap .dd_inner .products_list .products_list_inner li dt.twoline {
  line-height: 18px;
}
#dd_navi_contents .dd_navi_wrap .dd_inner .products_list .products_list_inner li dd {
  width: 90%;
  margin-bottom: 8px;
}
#dd_navi_contents .dd_navi_wrap .dd_inner .products_list .products_list_inner li dd.parent1 {
  margin-bottom: 10px;
}
#dd_navi_contents .dd_navi_wrap .dd_inner .products_list .products_list_inner li dd.parent1:after {
  top: 9px;
}
#dd_navi_contents .dd_navi_wrap .dd_inner .products_list .products_list_inner li dd.parent2 {
  padding-top: 10px;
  margin-bottom: 10px;
}
#dd_navi_contents .dd_navi_wrap .dd_inner .products_list .products_list_inner li dd.parent2:after {
  top: 14px;
}
#dd_navi_contents .dd_navi_wrap .dd_inner .products_list .products_list_inner li dd .sub {
  padding-left: 12px;
  font-size: 11px;
}
#dd_navi_contents .dd_navi_wrap .dd_inner .products_list .products_list_inner li dd a {
  line-height: 1.47;
}
#dd_navi_contents .dd_navi_wrap .dd_inner .products_list .products_list_inner li dd:after {
  top: 7px;
}
#dd_navi_contents .dd_navi_wrap .dd_inner .products_list .products_list_inner .product05 {
    background: url("../img/navi/products_photo06.png") no-repeat left top;
}
#dd_navi_contents .dd_navi_wrap .dd_inner .products_list .products_list_inner .product01 {
  background: url("../img/navi/products_photo01.png") no-repeat left top;
}
#dd_navi_contents .dd_navi_wrap .dd_inner .products_list .products_list_inner .product02 {
  background: url("../img/navi/products_photo02.png") no-repeat left top;
}
#dd_navi_contents .dd_navi_wrap .dd_inner .products_list .products_list_inner .product03 {
  background: url("../img/navi/products_photo04.png") no-repeat left top;
  position: relative;
  top: -1px;
}
#dd_navi_contents .dd_navi_wrap .dd_inner .products_list .products_list_inner .product04 {
  background: url("../img/navi/products_photo05.png") no-repeat left top;
}
#dd_navi_contents .dd_navi_wrap .dd_inner .company_list {
  border-top: 1px solid #d7dfdc;
  border-left: 1px solid #d7dfdc;
}
#dd_navi_contents .dd_navi_wrap .dd_inner .company_list li {
  width: 50%;
  height: 285px;
  float: left;
}
#dd_navi_contents .dd_navi_wrap .dd_inner .company_list li.company_area{
  height: 291px;
}
#dd_navi_contents .dd_navi_wrap .dd_inner .company_list li a {
  height: 110px;
  display: block;
  padding-top: 175px;
  text-align: center;
  transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  text-decoration: none;
  border-right: 1px solid #d7dfdc;
  border-bottom: 1px solid #d7dfdc;
}
#dd_navi_contents .dd_navi_wrap .dd_inner .company_list li a.company-link{
  height: 116px;
}
#dd_navi_contents .dd_navi_wrap .dd_inner .company_list li a:hover {
  background-color: #f2f5f8;
}
#dd_navi_contents .dd_navi_wrap .dd_inner .company_list .company_link01 a {
  background: url("../img/icon_green_company_about.png") no-repeat center 99px;
  background-size: 42px 59px;
}
#dd_navi_contents .dd_navi_wrap .dd_inner .company_list .company_link06 a {
  background: url("../img/icon_green_global_network.png") no-repeat center 99px;
  background-size: 97px 51px;
}
#dd_navi_contents .dd_navi_wrap .dd_inner .recruit_list {
  display: table;
}
#dd_navi_contents .dd_navi_wrap .dd_inner .recruit_list > * {
  display: table-cell;
  vertical-align: middle;
}
#dd_navi_contents .dd_navi_wrap .dd_inner .recruit_list li {
  width: 50%;
}
#dd_navi_contents .dd_navi_wrap .dd_inner .recruit_list li dl {
  padding: 49px 18px 45px;
}
#dd_navi_contents .dd_navi_wrap .dd_inner .recruit_list li dl dt {
  height: 210px;
  overflow: hidden;
  position: relative;
  background-size: cover !important;
  transition: all 0.15s ease-in;
  -moz-transition: all 0.15s ease-in;
  -webkit-transition: all 0.15s ease-in;
  -ms-transition: all 0.15s ease-in;
  /*&:after{
  	content: "";
  	display: block;
  	width: 100%; height: 210px;
  	background-size: cover !important;
  	position: absolute;
  	top: 0; left: 0;
  }*/
}
#dd_navi_contents .dd_navi_wrap .dd_inner .recruit_list li dl dt:hover {
  -ms-filter: "alpha(opacity=$num)";
  /* IE8 */
  opacity: 0.7;
}
#dd_navi_contents .dd_navi_wrap .dd_inner .recruit_list li dl dt a {
  height: 115px;
  text-align: center;
  padding-top: 95px;
  display: block;
  color: #18ddb6;
  font-size: 16px;
  text-decoration: none;
  font-family: opensans, 'Open Sans';
  font-style: italic;
  letter-spacing: 0.15em;
  font-weight: bold;
}
#dd_navi_contents .dd_navi_wrap .dd_inner .recruit_list li dl dd {
  height: 13px;
  margin-top: 18px;
  display: inline-block;
  padding-right: 30px;
}
#dd_navi_contents .dd_navi_wrap .dd_inner .recruit_list li:first-child dl {
  border-right: 1px solid #d7dfdc;
}
#dd_navi_contents .dd_navi_wrap .dd_inner .recruit_list .recruit01 dl dt {
  background: url("../img/navi/recruit_photo01.jpg?2") no-repeat center center;
}
#dd_navi_contents .dd_navi_wrap .dd_inner .recruit_list .recruit02 dl dt {
  background: url("../img/navi/recruit_photo02.jpg?2") no-repeat center center;
}

#overlay {
  background-color: #202524;
  -ms-filter: "alpha(opacity=$num)";
  /* IE8 */
  opacity: 0.9;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: none;
}

/* #footer
-------------------------------------------------- */
@media only screen and (min-width: 751px) {
  #footer_inner {
    padding-top: 40px;
    padding-bottom: 70px;
  }
  #footer_inner .list {
    width: 18.666%;
    float: left;
    padding-right: 10px;
  }
  #footer_inner .list dl dt {
    font-size: 13px;
    margin-bottom: 35px;
    text-align: left !important;
  }
  #footer_inner .list dl dd {
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 10px;
    text-align: left !important;
  }
  #footer_inner .list dl dd .s_trigger {
    margin-bottom: 12px;
    display: block;
  }
  #footer_inner .list dl dd .ac_wrap li {
    margin-bottom: 12px;
  }
  #footer_inner .list dl dd .ac_wrap li:before {
    content: "-";
    margin-right: 5px;
  }
  #footer_inner .list dl dd .ac_wrap li:last-child {
    margin-bottom: 0;
  }
  #footer_inner .specon_banner{
    width: 199px;
  }
}
@media only screen and (max-width: 750px) {
  #footer_inner {
    border-top: 1px solid #51565c;
  }
  #footer_inner .inner_fixed {
    margin-left: 0;
    margin-right: 0;
  }
  #footer_inner .specon_banner{
    padding: 30px 20px;
  }

  .sp_ac_navi .list dl dt, .sp_ac_navi .list dl dd a {
    display: block;
    padding-top: 17px;
    padding-bottom: 17px;
    border-bottom: 1px solid #51565c;
  }
  .sp_ac_navi .list dl dt {
    background-color: #202524;
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
  }
  .sp_ac_navi .list dl dt:before, .sp_ac_navi .list dl dt:after {
    content: "";
    display: block;
    position: absolute;
    background-color: #fff;
  }
  .sp_ac_navi .list dl dt:before {
    width: 2px;
    height: 12px;
    top: 16px;
    right: 18px;
    transition: all 0.15s ease-in;
    -moz-transition: all 0.15s ease-in;
    -webkit-transition: all 0.15s ease-in;
    -ms-transition: all 0.15s ease-in;
  }
  .sp_ac_navi .list dl dt:after {
    width: 12px;
    height: 2px;
    top: 21px;
    right: 13px;
  }
  .sp_ac_navi .list dl dt.active:before {
    width: 12px;
    height: 2px;
    top: 21px;
    right: 13px;
  }
  .sp_ac_navi .list dl dd {
    height: 0;
    overflow: hidden;
  }
  .sp_ac_navi .list dl dd > a {
    padding-left: 30px;
    padding-right: 30px;
  }
  .sp_ac_navi .list dl dd {
    display: block;
    position: relative;
  }
  .sp_ac_navi .list dl dd.big {
    height: 200px;
  }
  .sp_ac_navi .list dl dd:after {
    width: 7px;
    height: 11px;
    content: "";
    display: block;
    background: url("../img/link_arrow_white.svg") no-repeat left top;
    background-size: contain;
    position: absolute;
    top: 20px;
    right: 15px;
    transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
  }
  .sp_ac_navi .list dl dd:hover:after {
    right: 12px;
  }
  .sp_ac_navi .list dl dd .s_trigger {
    border-bottom: 1px solid #51565c;
    padding: 17px 30px;
    display: block;
  }
  .sp_ac_navi .list dl dd .ac_wrap li {
    border-bottom: 1px solid #51565c;
    padding: 17px 45px;
  }
  .sp_ac_navi .list dl dd .ac_wrap li {
    display: block;
    position: relative;
  }
  .sp_ac_navi .list dl dd .ac_wrap li:after {
    width: 7px;
    height: 11px;
    content: "";
    display: block;
    background: url("../img/link_arrow_white.svg") no-repeat left top;
    background-size: contain;
    position: absolute;
    top: 20px;
    right: 15px;
    transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
  }
  .sp_ac_navi .list dl dd .ac_wrap li:hover:after {
    right: 12px;
  }
  .sp_ac_navi .list dl dd .ac_wrap li:before {
    content: "-";
    margin-right: 10px;
  }
  .sp_ac_navi .list dl .s_trigger_wrap {
    padding: 0;
  }

  #sp_gnavi_wrap {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
  }
  #sp_gnavi_wrap .close_btn {
    width: 12%;
    height: 45px;
    float: left;
    background: url("../img/close_btn_white.svg") no-repeat center center #202524;
    background-size: 15px 15px;
    position: relative;
    right: -100%;
  }
  #sp_gnavi_wrap #sp_gnavi {
    width: 88%;
    float: left;
    position: relative;
    right: -88%;
  }
  #sp_gnavi_wrap #sp_gnavi * {
    color: #fff;
  }
  #sp_gnavi_wrap #sp_gnavi dt {
    font-weight: normal;
  }
  #sp_gnavi_wrap #sp_gnavi dt a {
    font-weight: normal;
  }
  #sp_gnavi_wrap #sp_gnavi dd {
    background: #2d3433;
  }
  #sp_gnavi_wrap #sp_gnavi .inner_fixed {
    min-width: 0px;
    margin-right: 0;
    margin-left: 0;
  }
  #sp_gnavi_wrap #sp_gnavi .sp_gnavi_robot dt.active + dd {
    min-height: 80px;
  }
  #sp_gnavi_wrap #sp_gnavi .sp_gnavi_robot dt.active + dd:after {
    top: 32px;
  }
}
#footer {
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 751px) {
  #footer #page_top_wrap {
    background-color: #212524;
    padding-top: 26px;
    padding-bottom: 26px;
  }
  #footer #page_top_wrap #page_top {
    width: 37px;
    margin: 0 auto;
  }
  #footer #page_top_wrap #page_top a {
    height: 19px;
    display: block;
    background: url("../img/page_top.svg") no-repeat center center;
    transition: all 0.15s ease-in;
    -moz-transition: all 0.15s ease-in;
    -webkit-transition: all 0.15s ease-in;
    -ms-transition: all 0.15s ease-in;
    position: relative;
    top: 0;
  }
  #footer #page_top_wrap #page_top a:hover {
    top: -5px;
  }
}
@media only screen and (max-width: 750px) {
  #footer #page_top_wrap {
    background-color: #212524;
  }
  #footer #page_top_wrap #page_top {
    width: 40px;
    margin: 0 auto;
  }
  #footer #page_top_wrap #page_top a {
    height: 11px;
    padding-top: 25px;
    padding-bottom: 25px;
    display: block;
    background: url("../img/page_top_smp.png") no-repeat center center;
    background-size: 16px auto;
    transition: all 0.15s ease-in;
    -moz-transition: all 0.15s ease-in;
    -webkit-transition: all 0.15s ease-in;
    -ms-transition: all 0.15s ease-in;
    position: relative;
    top: 0;
  }
  #footer #page_top_wrap #page_top a:hover {
    top: -5px;
  }
}

#footer_inner {
  background-color: #2d3433;
}
#footer_inner * {
  color: #e8f2ec;
}
#footer_inner .list dl dt {
  font-family: opensans, 'Open Sans';
  font-style: italic;
  letter-spacing: 0.1em;
  font-size: 13px;
}
#footer_inner .list dl dt a {
  font-family: opensans, 'Open Sans';
  font-style: italic;
  letter-spacing: 0.1em;
  font-size: 13px;
  text-decoration: none;
}
#footer_inner .list dl dt a:hover {
  text-decoration: underline;
}
#footer_inner .sp_gnavi_robot dt.active + dd {
  min-height: 80px;
}
#footer_inner .sp_gnavi_robot dt.active + dd:after {
  top: 36px;
}
@media only screen and (min-width: 751px) {
  #copy_right {
    height: 9px;
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: #212524;
    color: #929b98;
    font-size: 9px;
  }
  #footer_inner .banner-area{
  overflow: hidden;
  width: 420px;
  margin: 40px auto 0;
  }
  #footer_inner .banner-area ul li{
    width: 170px;
    float: left;
    margin-right: 20px;
  }
  #footer_inner .banner-area ul li:last-child{
    width: 230px;
    margin-right: 0;
  }
}
@media only screen and (max-width: 750px) {
  #copy_right {
    height: 8px;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #fff;
    font-size: 7px;
    letter-spacing: -0.05em;
    transform: scale(0.8);
    -moz-transform: scale(0.8);
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
  }
  #footer_inner .banner-area{
  width: 100%;
  padding-bottom: 15px;
  padding-top: 15px;
  }
  #footer_inner .banner-area ul{
    margin: 0 4%;
    overflow: hidden;
  }
  #footer_inner .banner-area ul li{
    width: 40%;
    float: left;
    margin-right: 4%;
  }
  #footer_inner .banner-area ul li:last-child{
    width: 55%;
    margin-right: 0;
  }
}
#copy_right {
  line-height: 1;
  font-family: opensans, 'Open Sans';
  font-style: italic;
  letter-spacing: 0.1em;
  text-align: center;
}

/* special banner
-------------------------------------------------- */
@media only screen and (min-width: 751px) {
  #special_banner .link_wrap {
    width: 1080px;
    margin-right: auto;
    margin-left: auto;
  }
  #special_banner .link_wrap li {
    width: 254px;
    margin-left: 20px;
    float: left;
  }
  #special_banner .link_wrap li dt {
    margin-bottom: 15px;
  }
  #special_banner .link_wrap li:first-child {
    margin-left: 0;
  }
}
#special_banner {
  position: relative;
  z-index: 1;
  background-color: #2d3433;
}
#special_banner .link_wrap {
  padding-top: 58px;
  padding-bottom: 48px;
  border-bottom: 1px solid #383e3d;
}
#special_banner .link_wrap li dt {
  padding-top: 34px;
  padding-bottom: 25px;
  background-size: cover !important;
}
#special_banner .link_wrap li dt .num, #special_banner .link_wrap li dt .text {
  display: block;
}
#special_banner .link_wrap li dt .text {
  text-align: center;
  font-family: opensans, 'Open Sans', sans-serif;
  font-style: italic;
  font-weight: bold;
  letter-spacing: 0.2em;
  color: #18ddb6;
}
#special_banner .link_wrap li dt .num {
  width: 75px;
  height: 75px;
  line-height: 75px;
  text-align: center;
  vertical-align: middle;
  position: relative;
  font-size: 15px;
  color: #18ddb6;
  font-family: opensans, 'Open Sans', sans-serif;
  font-style: italic;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: -22px;
  position: relative;
  top: -22px;
}
#special_banner .link_wrap li dt .num:after {
  width: 75px;
  height: 75px;
  content: "";
  background: url("../../img/top/diagram_green.svg") no-repeat center center;
  background-size: contain;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  transform: scale(0);
  -moz-transform: scale(0);
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
}
#special_banner .link_wrap li dt .num.show:after {
  transform: scale(1);
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
}
#special_banner .link_wrap li dt a:hover {
  text-decoration: none;
}
#special_banner .link_wrap li dd {
  font-size: 12px;
  text-align: center;
  color: #e8f2ec;
}
#special_banner .link_wrap .sp_banner01 dt {
  background: url("../img/sp_img01.jpg") no-repeat center center;
}
#special_banner .link_wrap .sp_banner02 dt {
  background: url("../img/sp_img02.jpg") no-repeat center center;
}
#special_banner .link_wrap .sp_banner03 dt {
  background: url("../img/sp_img03.jpg") no-repeat center center;
}
#special_banner .link_wrap .sp_banner04 dt {
  background: url("../img/sp_img04.jpg") no-repeat center center;
}

/* #container
-------------------------------------------------- */
#container {
  position: relative;
}

/* #main
-------------------------------------------------- */
@media only screen and (min-width: 751px) {
  #main_wrap, #footer {
    min-width: 1080px;
  }

  .section_wrap {
    margin-bottom: 100px;
  }
  #main_wrap .section_wrap.history_wrap{
    margin-bottom: 0;
  }
  #main_wrap .section_wrap#access{
    padding-top: 100px;
  }
  .section_wrap:last-child {
    margin-bottom: 0;
  }

  .section_title {
    margin-bottom: 50px;
  }
  .section_title:before {
    height: 5px;
    content: "";
    display: block;
    background: url("../img/bg_section_title_pc.png") repeat-x left top;
    bottom: 91%;
    left: 0;
    z-index: 0;
  }
  .section_title:after {
    width: 50px;
    margin: 16px auto 0;
  }
  .section_title .title_inner {
    z-index: 1;
  }
  .section_title .jp {
    padding-left: 22px;
    padding-right: 22px;
    background-color: #fff !important;
    margin: 0 auto;
    margin-bottom: 12px;
    overflow: hidden;
    text-indent: -9999px;
    z-index: 2;
  }
  .section_title .en {
    font-size: 10px;
  }
  .section_title.h3, .section_title.h4, .section_title.en_none {
    padding-bottom: 10px;
  }
  .section_title.h3 .jp, .section_title.h4 .jp, .section_title.en_none .jp {
    line-height: 1.3;
    font-weight: bold;
    margin-bottom: 0;
  }
  .section_title.h3:after, .section_title.h4:after, .section_title.en_none:after {
    width: 100px;
    margin-top: 0px;
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -50px;
  }
  .section_title.h3:before, .section_title.h4:before {
    z-index: 0;
  }
  .section_title.h3 .jp, .section_title.h4 .jp {
    text-indent: 0 !important;
  }
  .section_title.h3 {
    font-size: 18px;
  }
  .section_title.h3:before {
    bottom: 0px;
  }
  .section_title.h4 {
    max-width: 300px;
    min-width: 300px;
    margin-left: auto;
    margin-right: auto;
    font-size: 15px;
    margin-bottom: 25px;
  }
  .section_title.h4:before {
    bottom: 0;
  }

  .section_title.min {
    margin-bottom: 15px;
  }
  .section_title.min:after {
    display: none;
  }
  .section_title.min .title_inner .jp {
    background-color: #f2f5f8 !important;
    text-indent: 0;
  }
  .section_title.min .title_inner .en {
    color: #18ddb6;
  }

  .section_title.en_none {
    margin-bottom: 35px;
  }
  .section_title.en_none .title_inner .jp {
    text-indent: 0;
  }
  .section_title.en_none:after {
    display: none;
  }

  .section_title2 {
    padding-bottom: 8px;
    margin-bottom: 25px;
  }
  .section_title2 .jp {
    font-size: 15px;
  }
  .section_title2:after {
    width: 100px;
  }
  .section_title2 a {
    margin-top: 3px;
    font-size: 10px;
    padding-right: 15px;
    background-size: 7px 11px;
  }

  .page_info_text {
    margin-bottom: 60px;
    font-size: 15px;
  }
}
@media only screen and (max-width: 750px) {
  .section_wrap {
    margin-bottom: 30px;
  }
  .section_wrap:last-child {
    margin-bottom: 0;
  }

  .section_title {
    padding-top: 25px;
    padding-bottom: 25px;
    border-top: 1px solid #d7dfdc;
    border-bottom: 1px solid #d7dfdc;
    margin-bottom: 15px;
  }
  .section_title:before {
    width: 80%;
    height: 4px;
    content: "";
    display: block;
    position: absolute;
    background: url("../img/bg_section_title_sp.png") repeat-x left top;
    background-size: 1px 4px;
    bottom: 80%;
    left: 0;
    z-index: 0;
  }
  .section_title:after {
    width: 25px;
    margin: 6px auto 0;
  }
  .section_title .title_inner {
    z-index: 1;
    position: relative;
  }
  .section_title .jp {
    font-size: 14px;
    margin: 0 auto 10px;
    z-index: 2;
    display: table;
    overflow: hidden;
    padding-left: 27px;
    padding-right: 27px;
    background-color: #fff;
  }
  .section_title .en {
    font-size: 8px;
  }
  .section_title.en_none {
    margin-bottom: 0;
  }
  .section_title.h3, .section_title.h4 {
    padding-top: 0;
    border-top: 0;
    border-bottom: 0;
    overflow: hidden;
    padding-bottom: 10px;
    background-color: transparent;
  }
  .section_title.h3 .jp, .section_title.h4 .jp {
    margin-bottom: 0;
    text-indent: 0 !important;
    padding-left: 10px;
    padding-right: 10px;
  }
  .section_title.h3:before, .section_title.h4:before {
    position: absolute;
    left: 50%;
    margin-left: -75px;
    width: 150px;
  }
  .section_title.h3:after, .section_title.h4:after {
    margin-top: 0px;
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -12.5px;
  }
  .section_title.h3 {
    font-size: 18px;
  }
  .section_title.h3:before {
    bottom: 0;
  }
  .section_title.h4 {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .section_title.h4:before {
    bottom: 0;
  }
  .section_title.min .en {
    color: #18ddb6;
  }
  .section_title.min:after {
    display: none;
  }

  .section_title_mod {
    border-top: none;
  }

  .section_title2 {
    padding-bottom: 5px;
    margin-bottom: 15px;
  }
  .section_title2 .jp {
    font-size: 15px;
  }
  .section_title2:after {
    width: 75px;
  }
  .section_title2 a {
    margin-top: 3px;
    font-size: 10px;
    padding-right: 15px;
    background-size: 6px 9px;
  }

  .page_info_text {
    text-align: left;
    margin-bottom: 20px;
    font-size: 13px;
    margin-left: 15px;
    margin-right: 15px;
  }
}
.section_title {
  position: relative;
  text-align: center;
}
.section_title.h3:before, .section_title.h4:before {
  height: 1px;
  content: "";
  display: block;
}
.section_title:after {
  height: 1px;
  content: "";
  display: block;
}
.section_title:before {
  width: 100%;
  position: absolute;
}
.section_title:after {
  background-color: #18ddb6;
  position: relative;
}
.section_title.en_none:after {
  display: none;
}
.section_title span {
  display: block;
  text-align: center;
  position: relative;
  font-weight: bold;
  letter-spacing: 0.1em;
}
.section_title .title_inner {
  display: inline-block;
}
.section_title .en {
  font-family: opensans, 'Open Sans';
  font-style: italic;
  letter-spacing: 0.15em;
  font-weight: bold;
}

.section_title2 {
  text-align: left;
  position: relative;
}
.section_title2 .jp {
  float: left;
}
.section_title2:before {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  background: #d7dfdc;
  position: absolute;
  left: 0;
  bottom: 0;
}
.section_title2:after {
  content: "";
  height: 1px;
  display: block;
  background: #18ddb6;
  position: absolute;
  left: 0;
  bottom: 0;
}
.section_title2 a {
  float: right;
  text-decoration: none;
  display: block;
  background: url("../img/link_arrow_green.svg") no-repeat right center;
}

/* carusel style
-------------------------------------------------- */
@media only screen and (min-width: 751px) {
  .bx-controls-direction .bx-prev, .bx-controls-direction .bx-next {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 130px;
    background-color: #18ddb6;
    cursor: pointer;
    display: block;
    overflow: hidden;
    text-indent: -9999px;
  }
  .bx-controls-direction .bx-prev {
    left: 0;
  }
  .bx-controls-direction .bx-prev:after {
    left: 0;
    width: 7px;
    height: 11px;
    content: "";
    display: block;
    background: url("../img/link_arrow_white_reverse.svg") no-repeat center center;
    margin: 0 auto;
    position: relative;
    top: -5px;
    transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
  }
  .bx-controls-direction .bx-next {
    right: 0;
  }
  .bx-controls-direction .bx-next:after {
    right: 0;
    width: 7px;
    height: 11px;
    content: "";
    display: block;
    background: url("../img/link_arrow_white.svg") no-repeat center center;
    margin: 0 auto;
    position: relative;
    top: -5px;
    transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
  }
  .bx-controls-direction .bx-prev:hover:after {
    left: -5px;
  }
  .bx-controls-direction .bx-next:hover:after {
    right: -5px;
  }

  .bx-pager {
    height: 6px;
  }
  .bx-pager > div {
    width: 6px;
    height: 6px;
    border-radius: 3px;
    margin-right: 20px;
  }
  .bx-pager > div a {
    height: 6px;
  }

  .sp_slider_wrap .bx-controls {
    display: none;
  }
}
@media only screen and (max-width: 750px) {
  .bx-controls-direction {
    display: none;
  }

  .bx-pager {
    height: 16px;
  }
  .bx-pager > div {
    width: 12px;
    height: 12px;
    border-radius: 6px;
    margin-right: 20px;
  }
  .bx-pager > div a {
    height: 12px;
  }
}
.slide_wrap, .sp_slider_wrap {
  position: relative;
}
.slide_wrap .slide .list, .sp_slider_wrap .slide .list {
  float: left;
}

.sp_slider_wrap .bx-wrapper, .sp_slider_wrap .bx-viewport {
  overflow: visible !important;
}
.sp_slider_wrap .bx-wrapper {
  min-width: 100%;
}

.bx-pager {
  text-align: center;
}
.bx-pager > div {
  display: inline-block;
  overflow: hidden;
}
.bx-pager > div a {
  display: block;
  background-color: #838d98;
  transition: all 0.15s ease-in;
  -moz-transition: all 0.15s ease-in;
  -webkit-transition: all 0.15s ease-in;
  -ms-transition: all 0.15s ease-in;
  overflow: hidden;
  text-indent: -9999px;
}
.bx-pager > div a.active {
  background-color: #18ddb6;
}
.bx-pager > div:last-child {
  margin-right: 0;
}

/* News style
-------------------------------------------------- */
/*
@media only screen and (min-width: 751px) {
  .information_list_wrap {
    margin-bottom: 40px;
  }
  .information_list_wrap li {
    height: 20px;
    padding: 20px;
  }
  .information_list_wrap li:after {
    width: 7px;
    height: 11px;
    top: 24px;
    right: 20px;
  }
  .information_list_wrap li:hover:after {
    right: 15px;
  }
  .information_list_wrap li .date {
    width: 10.78%;
    font-size: 15px;
    float: left;
  }
  .information_list_wrap li dl {
    float: right;
    width: 89%;
  }
  .information_list_wrap li dl dt {
    width: 13.6%;
    height: 20px;
    float: left;
    font-size: 10px;
    line-height: 22px;
  }
  .information_list_wrap li dl dd {
    width: 85.9%;
    float: right;
  }
  .information_list_wrap li dl dd a {
    text-decoration: none;
  }
  .information_list_wrap li dl dd.new:after {
    width: 40px;
    height: 20px;
    line-height: 20px;
    margin-left: 20px;
  }
}
@media only screen and (max-width: 750px) {
  #news .inner_fixed {
    margin-right: 0;
    margin-left: 0;
  }

  .information_list_wrap {
    margin-bottom: 20px;
  }
  .information_list_wrap li {
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 10px;
  }
  .information_list_wrap li:after {
    width: 9px;
    height: 14px;
    top: 31px;
    right: 15px;
  }
  .information_list_wrap li:hover:after {
    right: 15px;
  }
  .information_list_wrap li .date, .information_list_wrap li dt {
    font-size: 12px;
  }
  .information_list_wrap li .date {
    font-weight: bold;
    margin-bottom: -18px;
    display: block;
  }
  .information_list_wrap li dl dt {
    height: 15px;
    padding: 0 10px;
    display: inline-block;
    margin-bottom: 7px;
    font-size: 8px;
    line-height: 15px;
    margin-left: 85px;
  }
  .information_list_wrap li dl dd a {
    font-size: 12px;
  }
  .information_list_wrap li dl dd.new:after {
    width: 35px;
    height: 15px;
    line-height: 15px;
    margin-left: 10px;
    margin-top: -1px;
  }
}
.information_list_wrap li {
  position: relative;
  border-bottom: 1px solid #d7dfdc;
  transition: all 0.15s ease-in;
  -moz-transition: all 0.15s ease-in;
  -webkit-transition: all 0.15s ease-in;
  -ms-transition: all 0.15s ease-in;
}
.information_list_wrap li:first-child {
  border-top: 1px solid #d7dfdc;
}
.information_list_wrap li:after {
  content: "";
  display: block;
  background: url("../img/link_arrow_green.svg") no-repeat center center;
  background-size: contain;
  position: absolute;
  transition: all 0.15s ease-in;
  -moz-transition: all 0.15s ease-in;
  -webkit-transition: all 0.15s ease-in;
  -ms-transition: all 0.15s ease-in;
}
.information_list_wrap li:hover {
  background-color: #f2f5f8;
}
.information_list_wrap li dl dt {
  background-color: #a1b1ae;
  color: #fff;
  vertical-align: middle;
  text-align: center;
}
.information_list_wrap li dl dd.new:after {
  vertical-align: middle;
  content: "New";
  background-color: #18ddb6;
  display: inline-block;
  text-indent: center;
  text-align: center;
  font-family: opensans, 'Open Sans', sans-serif;
  font-style: italic;
  color: #fff;
  font-size: 10px;
  font-weight: bold;
}
*/
@media only screen and (min-width: 751px) {
.information_list_wrap:after {
  content: '';
  display: block;
  clear: both;
}
.information_list_wrap li {
  float: left;
  width: 270px;
  border-bottom: 1px solid #d7dfdc;
  border-right: 1px solid #d7dfdc;
  background: #fff;
  box-sizing:border-box;
}
.information_list_wrap li .photo {
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
  /*border-right: 1px solid #d7dfdc;*/
  border-bottom: 1px solid #d7dfdc;
  height: 180px;
  background-image: url(../img/default-photo.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.information_list_wrap li:nth-child(-n+4){
  border-top: 1px solid #d7dfdc;
}
.information_list_wrap li .photo:before, .information_list_wrap li .photo:after {
  width: 100%;
  height: 0;
  content: "";
  display: block;
  background-color: rgba(72, 224, 182, 0.2);
  position: absolute;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  -moz-transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  -webkit-transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  -ms-transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 10;
}
.information_list_wrap li .photo:before {
  top: -100%;
  left: -100%;
}
.information_list_wrap li .photo:after {
  right: -100%;
  bottom: -100%;
}
.information_list_wrap li .information_content {
  /*border-right: 1px solid #d7dfdc;*/
  padding: 11px 19px 23px;
}
.information_list_wrap li .information_content .date {
  font-size: 11px;
  line-height: 19px;
}
.information_list_wrap li .information_content .new {
  font-size: 10px;
  font-style: italic;
  color: #fff;
  display: inline-block;
  background: #48e0b6;
  line-height: 19px;
  text-align: center;
  width: 40px;
  vertical-align: middle;
}
.information_list_wrap li .information_content .category_name {
  margin-top: 8px;
  width: 140px;
  height: 18px;
  line-height: 18px;
  text-align: center;
  font-size: 10px;
  color: #fff;
  background: #838d98;
}
.information_list_wrap li .information_content .title {
  margin-top: 10px;
}
.information_list_wrap li .information_content .title a {
  font-size: 13px;
  line-height: 20px;
  font-weight: bold;
  text-decoration: none;
}
.information_list_wrap li .information_content .text {
  margin-top: 10px;
  font-size: 13px;
  line-height: 20px;
}
.information_list_wrap li:nth-child(4n+1) {
  border-left: 1px solid #d7dfdc;
}
/*.information_list_wrap li:nth-child(4n+1) .photo {
  border-left: 1px solid #d7dfdc;
}*/
/*.information_list_wrap li:nth-child(4n+1) .information_content {
  border-left: 1px solid #d7dfdc;
}*/
.information_list_wrap li:hover .photo:before,
.information_list_wrap li:hover .photo:after {
  height: 100%;
}
.information_list_wrap li:hover .photo:before {
  top: 0;
  left: 0;
}
.information_list_wrap li:hover .photo:after {
  right: 0;
  bottom: 0;
}

}
@media only screen and (max-width: 750px) {
#news {
  margin-bottom: 0;
}
#news .section_content {
  background: #f2f5f8;
  padding: 25px 15px 30px;
}
.information_list_wrap:after {
  content: '';
  display: block;
  clear: both;
}
.information_list_wrap li {
  float: left;
  width: 50%;
  box-sizing: border-box;
  border-bottom: 1px solid #d7dfdc;
  background: #fff;
  margin-bottom: 15px;
}
.information_list_wrap li .photo {
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
  border-right: 1px solid #fff;
  height: 115px;
  background-image: url(../img/default-photo.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.information_list_wrap li .photo:before, .information_list_wrap li .photo:after {
  width: 100%;
  height: 0;
  content: "";
  display: block;
  background-color: rgba(72, 224, 182, 0.2);
  position: absolute;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  -moz-transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  -webkit-transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  -ms-transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 10;
}
.information_list_wrap li .photo:before {
  top: -100%;
  left: -100%;
}
.information_list_wrap li .photo:after {
  right: -100%;
  bottom: -100%;
}
.information_list_wrap li .information_content {
  border-right: 1px solid #d7dfdc;
  padding: 5px 12px 17px;
  text-align: left;
}
.information_list_wrap li .information_content .date {
  font-size: 10px;
  line-height: 17px;
}
.information_list_wrap li .information_content .new {
  font-size: 10px;
  font-style: italic;
  color: #fff;
  display: inline-block;
  background: #48e0b6;
  line-height: 17px;
  text-align: center;
  font-weight: bold;
  width: 37px;
  vertical-align: middle;
}
.information_list_wrap li .information_content .category_name {
  margin-top: 10px;
  width: 127px;
  height: 17px;
  line-height: 17px;
  text-align: center;
  font-size: 10px;
  color: #fff;
  background: #838d98;
}
.information_list_wrap li .information_content .title {
  margin-top: 10px;
  text-align: left;
  /*word-break: break-all;*/
}
.information_list_wrap li .information_content .title a {
  font-size: 13px;
  line-height: 18px;
  font-weight: bold;
  text-decoration: none;
}
.information_list_wrap li .information_content .text {
  margin-top: 10px;
  font-size: 13px;
  line-height: 20px;
  text-align: left;
}
.information_list_wrap li:nth-child(odd) .photo {
  border-left: 1px solid #fff;
}
.information_list_wrap li:nth-child(odd) .information_content {
  border-left: 1px solid #d7dfdc;
}
.information_list_wrap li:hover .photo:before,
.information_list_wrap li:hover .photo:after {
  height: 100%;
}
.information_list_wrap li:hover .photo:before {
  top: 0;
  left: 0;
}
.information_list_wrap li:hover .photo:after {
  right: 0;
  bottom: 0;
}
}


/* Modal style
-------------------------------------------------- */
@media only screen and (min-width: 751px) {
  #colorbox #cboxClose {
    width: 73px;
    height: 73px;
    top: -105px;
    right: 0;
  }

  .modal_contents {
    width: 700px;
    padding: 50px;
  }
}
@media only screen and (max-width: 750px) {
  #colorbox #cboxClose {
    width: 30px;
    height: 30px;
    top: -50px;
    right: 0;
  }

  .modal_contents {
    padding: 15px;
  }
  .modal_contents .btn_wrap li:first-child {
    margin-bottom: 15px;
  }
}
#cboxOverlay {
  background-color: #373737 !important;
}

#colorbox {
  z-index: 100000;
}
#colorbox #cboxContent {
  position: relative;
}
#colorbox #cboxClose {
  background: url("../img/modal_close_btn.svg") no-repeat center center;
  background-size: cover;
  position: absolute;
  border: 0;
  overflow: hidden;
  text-indent: -9999px;
}

.modal_wrap {
  display: none;
}

.modal_contents {
  background-color: #fff;
  text-align: left;
}
.modal_contents .section_title .jp {
  text-indent: 0;
  margin-bottom: 0;
}
.modal_contents .section_title:before, .modal_contents .section_title:after {
  display: none;
}
.modal_contents .photo {
  margin-bottom: 25px;
}
.modal_contents .text {
  margin-bottom: 50px;
}
.modal_contents .btn_wrap {
  text-align: center;
}
.modal_contents .btn_wrap li {
  display: inline-block !important;
}
.modal_contents .btn_wrap li:first-child {
  margin-right: 25px;
}
.modal_contents .btn.close {
  margin-top: 40px;
}

@media only screen and (max-width: 750px) {
  .modal_contents .text {
    margin-bottom: 25px;
  }
  .modal_contents .btn_wrap li:first-child {
    margin-right: 0px;
  }
  .modal_contents .btn.close {
    margin-top: 20px;
  }
}
/* modify for en */
.h1Title01 {
  color: #fff;
  font-size: 26px;
}

.titleen {
  position: relative;
  background: #fff;
  top: -14px;
  padding: 0 20px;
  font-size: 17px;
}

.gray .titleen {
  background-color: #f2f5f8;
}

.title_sonic {
  background: #f2f5f8;
  font-size: 14px;
  padding: 2px 10px 10px 10px;
}

@media only screen and (max-width: 750px) {
  .h1Title01 {
    color: #fff;
    font-size: 17px;
  }

  .titleen {
    font-size: 14px;
  }

  .showpc {
    display: none;
  }

  .aleft li {
    text-align: left !important;
  }
}
/* Modal style
-------------------------------------------------- */
@media only screen and (min-width: 751px) {
  #colorbox #cboxClose {
    width: 73px;
    height: 73px;
    top: -105px;
    right: 0;
  }
  #colorbox #cboxPrevious {
    position: absolute;
    bottom: 50%;
    margin-bottom: -20px;
    left: -65px;
    background: #18ddb6;
    width: 40px;
    height: 40px;
    text-indent: -9999px;
  }
  #colorbox #cboxPrevious:after {
    content: '';
    display: block;
    position: absolute;
    width: 6px;
    height: 6px;
    border-left: 2px solid #fff;
    border-top: 2px solid #fff;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    left: 50%;
    top: 50%;
    margin-top: -3px;
    margin-left: -3px;
  }
  #colorbox #cboxPrevious:hover {
    opacity: 0.7;
  }
  #colorbox #cboxNext {
    position: absolute;
    bottom: 50%;
    margin-bottom: -20px;
    right: -65px;
    background: #18ddb6;
    width: 40px;
    height: 40px;
    text-indent: -9999px;
  }
  #colorbox #cboxNext:after {
    content: '';
    display: block;
    position: absolute;
    width: 6px;
    height: 6px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    right: 50%;
    bottom: 50%;
    margin-bottom: -4px;
    margin-right: -4px;
  }
  #colorbox #cboxNext:hover {
    opacity: 0.7;
  }

  .modal_contents {
    width: 700px;
    padding: 50px;
  }
}
@media only screen and (max-width: 750px) {
  #colorbox #cboxClose {
    width: 30px;
    height: 30px;
    top: -50px;
    right: 0;
  }
  #colorbox #cboxPrevious {
    position: absolute;
    bottom: 50%;
    margin-bottom: -15px;
    left: -21px;
    background: #18ddb6;
    width: 30px;
    height: 30px;
    text-indent: -9999px;
  }
  #colorbox #cboxPrevious:after {
    content: '';
    display: block;
    position: absolute;
    width: 6px;
    height: 6px;
    border-left: 2px solid #fff;
    border-top: 2px solid #fff;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    left: 50%;
    top: 50%;
    margin-top: -3px;
    margin-left: -3px;
  }
  #colorbox #cboxPrevious:hover {
    opacity: 0.7;
  }
  #colorbox #cboxNext {
    position: absolute;
    bottom: 50%;
    margin-bottom: -15px;
    right: -21px;
    background: #18ddb6;
    width: 30px;
    height: 30px;
    text-indent: -9999px;
  }
  #colorbox #cboxNext:after {
    content: '';
    display: block;
    position: absolute;
    width: 6px;
    height: 6px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    right: 50%;
    bottom: 50%;
    margin-bottom: -4px;
    margin-right: -4px;
  }
  #colorbox #cboxNext:hover {
    opacity: 0.7;
  }

  .modal_contents {
    padding: 15px;
  }
  .modal_contents .btn_wrap li:first-child {
    margin-bottom: 15px;
  }
}
#cboxOverlay {
  background-color: #373737 !important;
}

#colorbox {
  z-index: 100000;
}
#colorbox #cboxContent {
  position: relative;
}
#colorbox #cboxClose {
  background: url("../img/modal_close_btn.svg") no-repeat center center;
  background-size: cover;
  position: absolute;
  border: 0;
  overflow: hidden;
  text-indent: -9999px;
}

.modal_wrap {
  display: none;
}

.modal_contents {
  background-color: #fff;
  text-align: left;
}
.modal_contents .section_title .jp {
  text-indent: 0;
  margin-bottom: 0;
}
.modal_contents .section_title:before, .modal_contents .section_title:after {
  display: none;
}
.modal_contents .photo {
  margin-bottom: 25px;
}
.modal_contents .text {
  margin-bottom: 50px;
}
.modal_contents .btn_wrap {
  text-align: center;
}
.modal_contents .btn_wrap li {
  display: inline-block !important;
}
.modal_contents .btn_wrap li:first-child {
  margin-right: 25px;
}
.modal_contents .btn.close {
  margin-top: 40px;
}

@media only screen and (max-width: 750px) {
  .modal_contents .text {
    margin-bottom: 25px;
  }
  .modal_contents .btn_wrap li:first-child {
    margin-right: 0px;
  }
  .modal_contents .btn.close {
    margin-top: 20px;
  }
}
