@charset "UTF-8";
/* [ easing style ]
-------------------------------------------------*/
/* -----------------------------------------------
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;*/
}

html {
  -webkit-tap-highlight-color: transparent;
}

body {
 
   font-size: 12px;
  color: #313934;
  -webkit-text-size-adjust: 100%;
  /*line-height: 1;*/
  /* I found a bug in iOS 7. */
}

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;
}

dd, li, th, td, input, textarea {
  line-height: 1.67;
  text-align: justify;
  text-justify: inter-ideograph;
}

ul, ol {
  list-style-type: none;
}

img {
  vertical-align: top;
}

a {
  color: #313934;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

::-moz-selection {
  background: #979796;
  text-shadow: none;
}

::selection {
  background: #979796;
  text-shadow: none;
}

/* [1. Reset(リセット) + Base(ベース)] --> End */
/* -----------------------------------------------
 [2. Module(モジュール)]
-------------------------------------------------- */
/* Clearfix [ModernType]
-------------------------------------------------- */
.clearfix:after {
  display: block;
  clear: both;
  content: "";
}

/* Layout Module
-------------------------------------------------- */
.fll {
  float: left;
}

.flr {
  float: right;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb50 {
  margin-bottom: 50px;
}

.w50 {
  width: 50px;
}

.w100 {
  width: 100px;
}

.w150 {
  width: 150px;
}

.w200 {
  width: 200px;
}

.w250 {
  width: 250px;
}

.w300 {
  width: 300px;
}

.w350 {
  width: 350px;
}

.w400 {
  width: 400px;
}

.w450 {
  width: 450px;
}

.w500 {
  width: 500px;
}

/* Text Module
-------------------------------------------------- */
.superscript {
  font-size: 10px;
  position: relative;
  top: -3px;
}

.notes {
  font-size: 83.33%;
  /* 10px */
}

/* Link Module
-------------------------------------------------- */
.r_over:hover {
  -ms-filter: "alpha(opacity=80)";
  /* IE8 */
  opacity: 0.8;
  display: inline-block\9;
}

/* Button Module
-------------------------------------------------- */
.btn a {
  border: 2px solid #e75826;
  border-radius: 3px;
  display: block;
}

.btn_top {
  overflow: hidden;
  text-indent: -9999px;
  display: block;
  width: 204px;
  height: 54px;
  background: url("../images/btn_top.png") no-repeat left top;
}

.btn_top:hover {
  background-position: left bottom;
}

/* Bread List
-------------------------------------------------- */
.bread_list li {
  font-size: 91.67%;
  /* 11px */
  display: inline-block;
  margin-right: 11px;
}

.bread_list li a {
  color: #00b18a;
  text-decoration: underline;
}

.bread_list li a:hover {
  text-decoration: none;
}

.product_list li {
  width: 16.5%;
  margin-right: 4%;
  float: left;
}

.product_list li .img {
  width: 146px;
  margin: 0 auto 10px;
  text-align: center;
}

.product_list li dt, .product_list li dd {
  text-align: center;
}

.product_list li dt {
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 5px;
}

.product_list li:nth-child(5n) {
  margin-right: 0;
}

/* #Colorbox
-------------------------------------------------- */
/*
    Colorbox Core Style:
    The following CSS is consistent between example themes and should not be altered.
*/
#colorbox, #cboxOverlay, #cboxWrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
}

#cboxWrapper {
  max-width: none;
}

#cboxOverlay {
  position: fixed;
  width: 100%;
  height: 100%;
}

#cboxMiddleLeft, #cboxBottomLeft {
  clear: left;
}

#cboxContent {
  position: relative;
}

#cboxLoadedContent {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#cboxTitle {
  margin: 0;
}

#cboxLoadingOverlay, #cboxLoadingGraphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow {
  cursor: pointer;
}

.cboxPhoto {
  float: left;
  margin: auto;
  border: 0;
  display: block;
  max-width: none;
  -ms-interpolation-mode: bicubic;
}

.cboxIframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
}

#colorbox, #cboxContent, #cboxLoadedContent {
  box-sizing: content-box;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
}

/*
    User Style:
    Change the following styles to modify the appearance of Colorbox.  They are
    ordered & tabbed in a way that represents the nesting of the generated HTML.
*/
#cboxOverlay {
  background: url(../images/overlay.png) repeat 0 0;
  opacity: 0.9;
  filter: alpha(opacity=90);
}

#colorbox {
  outline: 0;
}

#cboxTopLeft {
  width: 21px;
  height: 21px;
  background: url(../images/controls.png) no-repeat -101px 0;
}

#cboxTopRight {
  width: 21px;
  height: 21px;
  background: url(../images/controls.png) no-repeat -130px 0;
}

#cboxBottomLeft {
  width: 21px;
  height: 21px;
  background: url(../images/controls.png) no-repeat -101px -29px;
}

#cboxBottomRight {
  width: 21px;
  height: 21px;
  background: url(../images/controls.png) no-repeat -130px -29px;
}

#cboxMiddleLeft {
  width: 21px;
  background: url(../images/controls.png) left top repeat-y;
}

#cboxMiddleRight {
  width: 21px;
  background: url(../images/controls.png) right top repeat-y;
}

#cboxTopCenter {
  height: 21px;
  background: url(../images/border.png) 0 0 repeat-x;
}

#cboxBottomCenter {
  height: 21px;
  background: url(../images/border.png) 0 -29px repeat-x;
}

#cboxContent {
  background: #fff;
}

.cboxIframe {
  background: #fff;
}

#cboxError {
  padding: 50px;
  border: 1px solid #ccc;
}

/* #cboxLoadedContent{margin-bottom:28px;} */
#cboxTitle {
  position: absolute;
  bottom: 4px;
  left: 0;
  text-align: center;
  width: 100%;
  color: #949494;
}

#cboxCurrent {
  position: absolute;
  bottom: 4px;
  left: 58px;
  color: #949494;
  display: none !important;
}

#cboxLoadingOverlay {
  background: url(../images/loading_background.png) no-repeat center center;
}

#cboxLoadingGraphic {
  background: url(../images/loading.gif) no-repeat center center;
}

/* these elements are buttons, and may need to have additional styles reset to avoid unwanted base styles */
#cboxPrevious, #cboxNext, #cboxSlideshow, #cboxClose {
  border: 0;
  padding: 0;
  margin: 0;
  overflow: visible;
  width: auto;
  background: none;
}

/* avoid outlines on :active (mouseclick), but preserve outlines on :focus (tabbed navigating) */
#cboxPrevious:active, #cboxNext:active, #cboxSlideshow:active, #cboxClose:active {
  outline: 0;
}

#cboxSlideshow {
  position: absolute;
  bottom: 4px;
  right: 30px;
  color: #0092ef;
}

#cboxPrevious {
  position: absolute;
  bottom: 0;
  left: 0;
  background: url(../images/controls.png) no-repeat -75px 0;
  width: 25px;
  height: 25px;
  text-indent: -9999px;
}

#cboxPrevious:hover {
  background-position: -75px -25px;
}

#cboxNext {
  position: absolute;
  bottom: 0;
  left: 27px;
  background: url(../images/controls.png) no-repeat -50px 0;
  width: 25px;
  height: 25px;
  text-indent: -9999px;
}

#cboxNext:hover {
  background-position: -50px -25px;
}

#cboxClose {
  position: absolute;
  bottom: 0;
  right: 0;
  background: url(../images/controls.png) no-repeat -25px 0;
  width: 25px;
  height: 25px;
  text-indent: -9999px;
}

#cboxClose:hover {
  background-position: -25px -25px;
}

/*
  The following fixes a problem where IE7 and IE8 replace a PNG's alpha transparency with a black fill
  when an alpha filter (opacity change) is set on the element or ancestor element.  This style is not applied to or needed in IE9.
  See: http://jacklmoore.com/notes/ie-transparency-problems/
*/
.cboxIE #cboxTopLeft,
.cboxIE #cboxTopCenter,
.cboxIE #cboxTopRight,
.cboxIE #cboxBottomLeft,
.cboxIE #cboxBottomCenter,
.cboxIE #cboxBottomRight,
.cboxIE #cboxMiddleLeft,
.cboxIE #cboxMiddleRight {
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF);
}

/* -----------------------------------------------
 [3. Layout(レイアウト)]
-------------------------------------------------- */
/* #document
-------------------------------------------------- */
main {
  display: block;
}

#document {
  position: relative;
  overflow: hidden;
  display: none;
}

.inner {
  max-width: 1440px;
  min-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.section_wrap, #footer {
  min-width: 1080px;
}

/* 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: #e75826;
  position: fixed;
  z-index: 2000;
  top: 0;
  right: 100%;
  width: 100%;
  height: 2px;
}

/* #header
-------------------------------------------------- */
#header {
  position: relative;
  background: none !important;
  min-width: 1080px;
}

#header_inner {
  padding: 30px 30px 0;
}

#header_inner h1 {
  width: 209px;
  float: left;
}

#header_inner #global_navi {
  width: 770px;
  float: right;
  padding-top: 7px;
}

#header_inner #global_navi .site_navi {
  float: left;
}

#header_inner #global_navi .site_navi > li {
  float: left;
  margin-right: 56px;
  position: relative;
}

#header_inner #global_navi .site_navi > li > ul {
  padding-top: 10px;
  position: absolute;
  left: 50%;
  top: 26px;
  margin-left: -100px;
  width: 200px;
  display: none;
  z-index: 500;
}

#header_inner #global_navi .site_navi > li > ul > li {
  line-height: 40px;
  text-align: center;
  border-top: 1px solid #535353;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#B3000000,endColorstr=#B3000000);
  background: rgba(0, 0, 0, 0.7);
  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 .site_navi > li > ul > li a {
  color: #ffffff;
  display: block;
  line-height: 1.52;
  padding: 15px 0;
}

#header_inner #global_navi .site_navi > li > ul > li a:hover {
  text-decoration: none;
}

#header_inner #global_navi .site_navi > li > ul > li:hover {
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#FFe75826,endColorstr=#FFe75826);
  background: #e75826;
}

#header_inner #global_navi .site_navi > li > ul > li:first-child {
  border-top: none;
}

#header_inner #global_navi .site_navi > li:last-child {
  margin-right: 0;
}

#header_inner #global_navi .language_navi {
  float: right;
}

#header_inner #global_navi .language_navi li {
  width: 50px;
  float: left;
  margin-right: -1px;
}

#header_inner #global_navi .language_navi li a, #header_inner #global_navi .language_navi li span {
  width: 48px;
  height: 24px;
  display: block;
  border: 1px solid #595959;
  overflow: hidden;
  text-indent: -9999px;
}

#header_inner #global_navi .language_navi .en a, #header_inner #global_navi .language_navi .en span {
  background: url("../images/language_navi01.png") no-repeat left top;
}

#header_inner #global_navi .language_navi .jp a, #header_inner #global_navi .language_navi .jp span {
  background: url("../images/language_navi02.png") no-repeat left top;
}

#header_inner #global_navi .language_navi .ch a, #header_inner #global_navi .language_navi .ch span {
  background: url("../images/language_navi03.png") no-repeat left top;
}

#header_inner #global_navi .language_navi li a:hover, #header_inner #global_navi .language_navi li .active {
  border-color: #e75826;
  background-position: left bottom !important;
  position: relative;
  z-index: 1;
}

#header_inner #global_navi .language_navi li:last-child {
  margin-right: 0px;
}

#header .search_wrap .icon {
  color: #ffffff;
}

#lowlayer_header .search_wrap .icon {
  color: #313934;
}

.search_wrap {
  position: relative;
  width: 50px;
  height: 47px;
  float: right;
  top: -11px;
}

.search_wrap.open .icon {
  background-color: #e75826 !important;
  color: #ffffff !important;
}

.search_wrap .icon {
  text-align: center;
  line-height: 47px;
}

.search_wrap .input_wrap {
  padding: 10px;
  display: none;
  position: absolute;
  bottom: -62px;
  right: 0;
  background-color: #e65826;
  z-index: 50;
}

.search_wrap .input_wrap input[type="text"] {
  width: 210px;
  height: 40px;
  padding-left: 10px;
  padding-right: 80px;
  border: 0;
  color: #fff;
  background-color: #d04f22;
}

.search_wrap .input_wrap button {
  padding: 15px;
  font-size: 15px;
  line-height: 1;
  position: absolute;
  top: 12px;
  right: 10px;
  display: block;
  background: none;
  border: 0;
  color: #de8465;
}

/* #global Navi
-------------------------------------------------- */
/* #footer
-------------------------------------------------- */
#footer {
  background-color: #fff;
  position: relative;
  z-index: 100;
}

#footer #page_top_wrap {
  height: 50px;
  border-top: 1px solid #dfdfdf;
  border-bottom: 1px solid #dfdfdf;
}

#footer #page_top_wrap #page_top_inner {
  width: 1080px;
  margin: 0 auto;
}

#footer #page_top_wrap #page_top_inner h1 {
  float: left;
  padding-top: 16px;
}

#footer #page_top_wrap #page_top_inner .page_top {
  float: right;
}

#footer #footer_sitemap_wrap {
  width: 1080px;
  margin: 0 auto;
  border-right: 1px solid #dfdfdf;
}

#footer #footer_sitemap_wrap li {
  width: 240px;
  height: 310px;
  padding: 40px 0 0 27px;
  border-left: 1px solid #dfdfdf;
  float: left;
}

#footer #footer_sitemap_wrap li dl {
  margin-bottom: 13px;
}

#footer #footer_sitemap_wrap li dt {
  margin-bottom: 8px;
  font-weight: bold;
  color: #e75826;
}

#footer #footer_sitemap_wrap li dt a {
  font-weight: bold;
  color: #e75826;
}

#footer #footer_sitemap_wrap li dd {
  line-height: 1.47;
  margin-bottom: 8px;
}

#footer #footer_sitemap_wrap li .btn_contact {
  text-indent: -9999px;
  overflow: hidden;
  display: block;
  background: url("../images/btn_contact.png") no-repeat left top;
  width: 104px;
  height: 34px;
}

#footer #footer_sitemap_wrap li .btn_contact:hover {
  opacity: 0.7;
}

#footer #copy_right {
  border-top: 1px solid #dfdfdf;
  padding: 34px 0 37px;
  display: block;
  text-align: center;
}

#other_contents_wrap {
  position: relative;
  z-index: 1000;
  display: none;
}

#other_contents_wrap .posi {
  position: relative;
  width: 1380px;
  margin: 0 auto;
  padding-top: 72px;
}

#other_contents_wrap .posi .special_title {
  margin: 0 auto 42px;
  text-align: center;
}

#other_contents_wrap .posi .close_btn {
  width: 37px;
  height: 38px;
  background-color: none;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
}

#other_contents_wrap .posi .close_btn:hover {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}

#other_contents_wrap .special_banner_list {
  margin: 0 auto 68px;
  width: 1080px;
}

#other_contents_wrap .special_banner_list li {
  float: left;
  margin-right: 15px;
}

#other_contents_wrap .special_banner_list li:last-child {
  margin-right: 0;
}

/* #container
-------------------------------------------------- */
#container {
  position: relative;
}

/* #main
-------------------------------------------------- */
#solution_list {
  width: 982px;
  margin: 0 auto;
}

#solution_list li {
  width: 308px;
  padding-bottom: 6px;
  background: url("../images/section02_banner_bg_bottom.png") no-repeat left bottom;
  float: left;
  margin-right: 29px;
}

#solution_list li .bg_body {
  background: url("../images/section02_banner_bg_body.png") repeat-y left top;
  padding: 20px 35px 15px;
}

#solution_list li:last-child {
  margin-right: 0;
}
