html {
  width: 100%;
  height: 100%;
}
body {
  height: 100%;
  font: 14px/1.231 'Lato', "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS P Gothic", sans-serif;
  *font-size: small;
  *font: x-small;
  letter-spacing: .08em;
  color:#333333;
  line-height:1.8;
  background: #f2f2f2;
  overflow-x: hidden;
  overflow-y:scroll;
  font-feature-settings: "palt";
  font-smoothing: antialiased;
}
body.site-vi,
body.site-vi *:not(i) { font-family: Arial, Tohama, Verdama; }
ol,ul { list-style: none; }
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
small { font-size: 86%; }
h1,h2,h3,h4 { line-height: 1.4; }

.fltLft { float: left; }
.fltRgt { float: right; }

.fltList { overflow: hidden; }
.fltList li { float: left; }

.tLft { text-align:left; }
.tRgt { text-align: right; }
.tCtr { text-align: center; }
.f10 { font-size: 72%; line-height: 1.5}
.f11 { font-size: 79%; line-height: 1.6}
.f12 { font-size: 86%; line-height: 1.6}
.f13 { font-size: 93%; line-height: 1.6}
.f15 { font-size: 108%; }
.f16 { font-size: 115%; }
.f18 { font-size: 129%; }
.f22 { font-size: 158%; }
.mgnBtm8 { margin-bottom: 8px; }
.mgnBtm10 { margin-bottom: 10px; }
.mgnBtm20 { margin-bottom: 20px; }
.mgnBtm30 { margin-bottom: 30px; }
.mgnBtm40 { margin-bottom: 40px; }
.mgnBtm50 { margin-bottom: 50px; }
.mgnBtm60 { margin-bottom: 60px; }
.mgnBtm70 { margin-bottom: 70px; }
.mgnBtm100 { margin-bottom: 100px; }

sup {
  vertical-align: super;
  font-size: 80%;
}
sub {
  vertical-align: sub;
  font-size: 80%;
}

*,
*:after,
*::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
a {
  text-decoration: none;
  color: #999;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.container {
  width: 1000px;
  margin: 0 auto;
}
.container-big {
  width: 1260px;
  margin: 0 auto;
}
.sectionPdg {
  padding: 50px 0;
}
.open { padding: 5px 0 0 !important; }
.img-ctr {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* --- pc or sp --- */
.pc-none,
.pc-none-inline,
.pc-none-table,
.pc-none-flex { display: none; }
.sp-none { display: block; }
.sp-none-inline { display: inline; }
.sp-none-table { display: table; }
.sp-none-flex {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {

  /* --- pc or sp --- */
  .sp-none,
  .sp-none-inline,
  .sp-none-table,
  .sp-none-flex { display: none; }
  .pc-none { display: block; }
  .pc-none-inline { display: inline; }
  .pc-none-table { display: table; }
  .pc-none-flex {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

/* flex
**************************************** */

  /* --- ブロック要素 --- */
  .flex {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  /* --- インライン要素 --- */
  .flex-inline {
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }

  /* --- 逆向き --- */
  .flex-reverse {
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }

  /* --- 縦並び --- */
  .flex-column {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  /* --- 水平方向揃え --- */
  .flex-j-start {
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .flex-j-end {
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .flex-j-ctr {
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .flex-j-between {
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .flex-j-around {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  /* --- 垂直方向揃え --- */
  .flex-a-start {
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .flex-a-end {
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .flex-a-ctr {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .flex-a-baseline {
    -webkit-align-items: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
  }
  .flex-a-stretch {
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }

  /* --- 子要素の折り返し設定 --- */
  .flex-c-nowrap {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .flex-c-wrap {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  /* --- 子要素の複数行設定 --- */
  .flex-c-reverse {
    -webkit-flex-wrap: wrap-reverse;
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
  }
  .flex-c-start {
    -webkit-align-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
  }
  .flex-c-start {
    -webkit-align-items: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
  }
  .flex-c-end {
    -webkit-align-content: flex-end;
    -ms-flex-line-pack: end;
    align-content: flex-end;
  }
  .flex-c-ctr {
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
  }
  .flex-c-baseline {
    -webkit-align-content: baseline;
    -ms-flex-line-pack: baseline;
    align-content: baseline;
  }
  .flex-c-stretch {
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
  }

  /* --- ざっくりflexレイアウト --- */
  .flex-col2,
  .flex-col3,
  .flex-col4 {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .flex-col2 > * {
    width: 48.5%;
    margin-right: 3%;
    margin-bottom: 3%;
  }
  .flex-col2 > *:nth-child(even) { margin-right: 0; }
  .flex-col2 > *:nth-last-child(-n+2) { margin-bottom: 0; }
  .flex-col3 > * {
    width: 31.33%;
    margin-right: 3%;
    margin-bottom: 3%;
  }
  .flex-col3 > *:nth-child(3n+3) { margin-right: 0; }
  .flex-col3 > *:nth-last-child(-n+3) { margin-bottom: 0; }
  .flex-col4 > * {
    width: 23.5%;
    margin-right: 2%;
    margin-bottom: 2%;
  }
  .flex-col4 > *:nth-child(4n+4) { margin-right: 0; }

  @media screen and (max-width: 767px) {

    /* --- 縦並び - sp --- */
    .flex-sp-block {
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
    }

    /* --- ざっくりflexレイアウト - sp --- */
    .flex-col2.flex-sp-block > *,
    .flex-col3.flex-sp-block > *,
    .flex-col4.flex-sp-block > * {
      width: 100%;
      margin-bottom: 16px;
      margin-right: 0;
    }
    .flex-col2.flex-sp-block > *:last-child,
    .flex-col3.flex-sp-block > *:last-child,
    .flex-col4.flex-sp-block > *:last-child {
      margin-bottom: 0;
    }
    .flex-sp-col2 > *,
    .flex-sp-col2.flex-col3 > *:nth-child(3n+3) {
      width: 48.5%;
      margin-right: 3%;
      margin-bottom: 3%;
    }
    .flex-sp-col2 > *:nth-child(even) { margin-right: 0; }
    .flex-sp-col3 > *,
    .flex-sp-col3.flex-col4 > *:nth-child(4n+4) {
      width: 31.33%;
      margin-right: 3%;
      margin-bottom: 3%;
    }
    .flex-sp-col3 > *:nth-child(3n+3) { margin-right: 0; }
  }

/* font
**************************************** */
  .font-kakumin_m,
  .font-kakumin_b,
  .font-kaimin_b,
  .font-reimin_b {
    transform: rotate(.04deg);
  }
  .font-kakumin_m { font-family: Kakumin Medium; }
  .font-kakumin_b { font-family: Kakumin Bold; }
  .font-kaimin_b { font-family: Kaimin Sora Bold; }
  .font-reimin_b { font-family: '黎ミンY10 B', Reimin Y10 Bold; }

/* txt
**************************************** */
  .ttl {
    font-size: 240%;
    line-height: 1.45;
  }
  .ttl-lg { font-size: 347%; }
  .ttl-sm { font-size: 208%; }
  .ttl-xs { font-size: 164%; }
  .txt-sm { font-size: 120%; }
  .ttl-ico {
    text-indent: -2em;
    padding-left: 2em;

  }
  .txt-brown { color: #6a4a17; }
  .txt-blue { color: #198dc6; }
  .ttl-lg small {
    font-size: 35%;
    vertical-align: middle;
    padding-left: 1em;
  }
  .ttl-ico img {
    margin-right: .7em;
    vertical-align: middle;
  }
  .ttl-ico + .txt-sm {
    padding-left: 3.5em;
  }

  @media only screen and (max-width: 768px) {
    .ttl { font-size: 174%; }
    .ttl-lg { font-size: 252%; }
    .ttl-sm { font-size: 151%; }
    .ttl-xs { font-size: 120%; }
    .txt-sm { font-size: 110%; }
    .ttl-ico img { width: 27px; }
  }

/* table
**************************************** */
  .table-basic {
    width: 100%;
    border: 2px solid #c5c5c5;
  }
  .table-basic th,
  .table-basic td {
    padding: 12px;
    border: 1px solid #c5c5c5;
  }
  .table-basic th {
    text-align: left;
    background-color: #e4e4e4;
    vertical-align: middle;
  }
  .table-basic td {
    background-color: #fff;
  }
  .table-basic td img {
    width: 100%;
    height: auto;
    vertical-align: middle;
  }
  .table-basic th.bg-gray,
  .table-basic td.bg-gray {
    background-color: #e9e9e9;
  }
  .table-basic th.tCtr,
  .table-basic td.tCtr {
    text-align: center;
  }
  .table-basic.blue th {
    background-color: #198dc6;
    color: #fff;
  }

/* btn
**************************************** */
  .btn {
    position: relative;
    display: table;
    background-color: #6a4c1d;
    color: #fff;
    font-family: Kaimin Sora Bold;
    transform: rotate(.04deg);
    letter-spacing: .2em;
    border-radius: 5px;
    padding: .2em 3em;
    font-size: 105%;
  }
  body:not(.site-jp) .btn {
    letter-spacing: .1em;
  }
  .btn:hover { opacity: .7; }
  .btn::before,
  .btn::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .btn::before {
    right: 1em;
    width: .6em;
    height: .6em;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .btn::after {
    right: 1em;
    width: .8em;
    height: 2px;
    background-color: #fff;
  }

/* -----------------------------------------------------------------------------------------------------------
  header
----------------------------------------------------------------------------------------------------------- */
  header {
    padding: 12px 0;
    background: #fff;
    position: fixed;
    z-index: 999;
    width: 100%;
    top: 0;
    left: 0;
    box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.1);
  }
  #headLogo {
    line-height: 37px;
    float: left;
    margin-right: 60px;
  }
  .head-language {
    font-size: 85%;
    position: absolute;
    margin-top: 40px;
    display: table;
  }
  .head-language dt {
    padding-right: 5px;
  }
  .head-language dt,
  .head-language dd {
    display: table-cell;
  }
  .head-language a {
    display: block;
    padding: 0 7px;
    font-size: 93%;
    line-height: 14px;
    border: 1px solid #4397c3;

  }
  .head-language a.current,
  .head-language a:hover {
    color: #fff;
    background: #4397c3;
  }
  #gnav,
  #gnav li {
    display: inline-block;
  }
  #gnav a {
    padding: 20px;
    display: inline-block;
    text-align: center;
    color: #222;
    font-size: 107%;
    line-height: 1.4;
  }
  .site-jp #gnav a { line-height: 1.15; }
  .site-vi #gnav a { font-size: 100%; }
  #gnav a small {
    color: #7f7f7f;
    font-size: 71%;
  }
  #gnav a:hover {
    background: #f2f2f2;
  }
  #gnav a i { margin-left: 2px; }
  #energy-list,
  #commodity-list,
  #company-list {
    display: none;
  }
  #headerIn {
    background: #f2f2f2;
    display: block;
    width: 280px;
    float: right;
    height: 85px;
    padding: 15px 20px;
    margin-top: -12px;
  }
  .header-contact {
    line-height: 14px;
    margin-bottom: 10px;
  }
  .header-contact li,
  .header-other li {
    display: inline-block;
  }
  .header-contact li a:hover, .header-other li a:hover { opacity: 0.6; }
  .header-contact .header-contact-tel {
    margin-right: 3px;
  }
  .header-other {
    float: left;
  }

/* ------------------------------------------------------------------------------
  helo-slider-area
------------------------------------------------------------------------------- */
  .helo-slider-area {
    position: relative;
    overflow: hidden;
    margin-top: 97px;
  }
  .helo-slider-area ul li {
    position: relative;
  }
  .helo-slider-area ul li img {
    width: 100%;
    height: auto;
  }
  .helo-slider-area ul li a {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    z-index: 100;
  }
  .helo-slider-area ul li a:hover {
    background: rgba(255,255,255,0.2);
  }
  .bx-viewport { position: static !important; }

/* .helo-slider ( bxslider )
---------------------------------------------*/
  .helo-slider-area .bx-viewport {
    z-index: -1;
  }
  .helo-slider-area .bx-prev,
  .helo-slider-area .bx-next {
    position: absolute;
    top: 50%;
    left: 5%;
    background: url(../images/bx-prev.png) no-repeat;
    width: 53px;
    height: 96px;
    font-size: 0;
    display: inline-block;
    margin-top: -48px;
    z-index: 10
  }
  .helo-slider-area .bx-next {
    left: auto;
    right: 5%;
    background: url(../images/bx-next.png) no-repeat;
  }


/* --------------------------------------------------------------------------------
  mainContent
-------------------------------------------------------------------------------- */
  #mainContent {
    position: relative;
    padding: 50px 0;
    background: #f9f9f9 url(../images/common/bg_sand.png) repeat;
    border-top: 1px solid #fff;
    overflow-x: hidden;
  }

/* --------------------------------------------------------------------------------
  sideSection
-------------------------------------------------------------------------------- */

  .sideSection a {
    line-height: 1.6;
    display: block;
    color: #6a4c1d;
    padding: 5px 0 5px;
  }
  .sideSection a:hover,
  .gas .gas,
  .orc .orc,
  .bouonheki .bouonheki,
  .suiryoku .suiryoku,
  .solar .solar,
  .list .list,
  .road .road,
  .wooden .wooden,
  .snow .snow,
  .facilities .facilities,
  .mountain .mountain,
  .river .river,
  .others .others {
    background: rgba(31, 140, 197, 0.1);
  }
  .sideSection .sectionTtl-bg {
    font-size: 129%;
    margin-bottom: 10px;
  }
  .sideSubNav {
    margin: 15px 0 -15px;
  }

  .suiryoku-list,
  .solar-list {
    display: none;
  }
  .suiryoku-list li, .solar-list li, .already-solar-list li, .already-suiryoku-list li {
    border-bottom: 1px dotted #6A4C1D;
    background: #F0F0F0;
  }
  .suiryoku-list li:last-child, .solar-list li:last-child, .already-solar-list li:last-child, .already-suiryoku-list li:last-child { border-bottom: none; }
  .suiryoku-list li a, .solar-list li a, .already-solar-list li a, .already-suiryoku-list li a { padding: 5px 0 5px 20px; }

  /* 日本語サイト改修 */
  #side-menu {
    width: 220px;
  }
  .side_menu {
    margin-bottom: 12px;
  }
  .side_menu--parent {
    margin-bottom: 0;
    font-size: 120%;
    color: #6a4c1d;
    background-color: #fff;
    padding: 16px 10px 0;
    border-radius: 8px 8px 0 0;
  }
  .side_menu--parent img { margin-right: .5em; }
  .side_menu--child {
    font-size: 94%;
    background-color: #fff;
    padding: 6px 14px 12px;
    border-radius: 0 0 8px 8px;
  }
  .side_menu--child li a {
    text-indent: -1.2em;
    padding-left: 1em;
  }
  .side_menu--child li a::before {
    content: '…';
    margin-right: 2px;
  }
  .side_menu li a.side_munu-etc {
    display: block;
    background-color: #fff;
    border-radius: 8px;
    padding: 10px;
  }
  .side_menu li a.side_munu-etc:hover {
    background-color: rgba(31, 140, 197, 0.1);
  }


/* --------------------------------------------------------------------------------
  footContact
-------------------------------------------------------------------------------- */
  .commodity-contact,
  .energy-contact {
    background-color: #fff;
  }

  .contact-tab { margin-bottom: 20px; }
  .contact-tab li {
    width: 100%;
    text-align: center;
    padding: 18px 16px;
    font-size: 149%;
    background: rgba(255,255,255,.8);
    line-height: 1.5;
    cursor: pointer;
    color: #1f8dc6;
    border: 2px solid #1f8dc6;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
  }
  .contact-tab li:hover {
    color: #fff;
    background-color: #1f8dc6;
  }
  .contact-tab li.select {
    color: #fff;
    background-color: #1f8dc6;
  }
  .contact-tab li:first-child { margin-right: 18px; }
  .contact-tab li a { 
    display: block;
    color: #1f8dc6;
  }
  .contact-tab li a:hover {
    color: #fff;
  }
  .contact-tab-wrap {
    padding-bottom: 80px;
  }
  .recaptcha_policy {
    padding: 0;
    margin: 14px 0 0;
    text-align: center;
    font-size: 11px !important;
    color: #444 !important;
  }
  .recaptcha_policy a {
    font-size: 11px !important;
    color: #111 !important;
  }
  .grecaptcha-badge { visibility: hidden; }

  #formy_form {
    position: relative;
    max-width: 1000px;
    background: #fff;
    padding: 50px;
    text-align: left;
    color: #000;
    margin: 0 auto 100px;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
  }
  #formy_form.inlineframe_formy {
    margin: 0;
    box-shadow: none;
  }
  #formy_form table {
    width:100%;
  }
  #formy_form th,
  #formy_form td {
    padding: 10px 20px;
    vertical-align: middle;
    border-bottom: 2px solid #eee;
  }
  #formy_form th {
    font-weight:normal;
    white-space: nowrap;
    text-align:left;
    width:42%;
  }
  #formy_form input[type="text"],
  #formy_form input[type="password"],
  #formy_form input[type="text"],
  #formy_form input[type="tel"],
  #formy_form input[type="date"],
  #formy_form input[type="password"],
  #formy_form textarea {
    width:100%;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    vertical-align:bottom;
  }
  #formy_form input[type="text"],
  #formy_form input[type="password"],
  #formy_form input[type="text"],
  #formy_form input[type="email"],
  #formy_form input[type="tel"],
  #formy_form input[type="date"],
  #formy_form input[type="password"],
  #formy_form select,
  #formy_form textarea {
    margin: 0;
    padding: 5px 15px;
    border: 1px solid #ccc;
    font: inherit;
    font-size:100%;
    width: 100%;
  }
  #formy_form textarea {
    height: 130px;
  }
  #formy_form ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  #formy_form input:hover { opacity:0.7; }
  #formy_form textarea:hover { opacity:0.7; }
  #formy_form input:focus {  background-color: #fff; }
  #formy_form .parsley-validated {  background-color: #eee; }
  #formy_form .parsley-error {  background-color: #fee; }
  #formy_form .parsley-success {  background-color: #fff; }
  .help_text {
    font-size: 85%;
    color: #999;
  }
  .hidden_help {  display: none; }
  .formy_privacy div {
    overflow-y: scroll;
    height: 140px;
    border: solid 1px #ccc;
    font-size: 85%;
    padding: 10px;
  }
  .requiredIcon {
    background: #f55;
    color: #fff;
    margin: 0 0 0 1em;
    font-size: 70%;
    padding: 2px 5px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    float: right;
  }
  body.site-en .formy_confirm {
    background-image: url(/wp/wp-content/themes/original_theme_en/images/formy/form_btn_confirm_en.png);
  }
  body.site-en .formy_submit_disabled {
    background-image: url(/wp/wp-content/themes/original_theme_en/images/formy/form_btn_unfinished_en.png);
  }
  body.site-en .autoConfirmBack {
    background-image: url(/wp/wp-content/themes/original_theme_en/images/formy/form_btn_edit_en.png);
  }
  body.site-en .formy_send {
    background-image: url(/wp/wp-content/themes/original_theme_en/images/formy/form_btn_send_en.png);
  }
  body.site-vi .formy_confirm {
    background-image: url(/wp/wp-content/themes/original_theme_vi/images/formy/form_btn_confirm_vi.png);
  }
  body.site-vi .formy_submit_disabled {
    background-image: url(/wp/wp-content/themes/original_theme_vi/images/formy/form_btn_unfinished_vi.png);
  }
  body.site-vi .autoConfirmBack {
    background-image: url(/wp/wp-content/themes/original_theme_vi/images/formy/form_btn_edit_vi.png);
  }
  body.site-vi .formy_send {
    background-image: url(/wp/wp-content/themes/original_theme_vi/images/formy/form_btn_send_vi.png);
  }
  /* バリデート文字非表示 */
  /*body:not(.site-jp) .formy_error,
  body:not(.site-jp) input + span:not(.help_text),
  body:not(.site-jp) .help_text + span,
  body:not(.site-jp) #total_required {
    display: none !important
  }*/
  #formy_btn {
    padding:30px 0 0;
    text-align:center;
  }
  #formy_btn input {
    border: none;
    cursor: pointer;
    text-indent: -9999px;
  }
  .formy_confirm {
    width: 324px;
    height: 59px;
    background: url(//entry-form.net/css/form-default/form_btn_confirm.png) no-repeat;
  }
  .formy_submit_disabled {
    width: 324px;
    height: 59px;
    background: url(//entry-form.net/css/form-default/form_btn_unfinished.png) no-repeat;
  }
  #formy_btn .formy_submit_disabled:hover {
    opacity:1;
    cursor: default;
  }
  .autoConfirmBack {
    width: 134px;
    height: 59px;
    background: url(//entry-form.net/css/form-default/form_btn_edit.png) no-repeat;
  }
  .formy_send {
    width: 324px;
    height: 59px;
    background: url(//entry-form.net/css/form-default/form_btn_send.png) no-repeat;
  }
  #total_required {
    padding: 16px;
    color: #f55555;
    text-align: center;
  }

  /* --- WPCF7 --- */
  span.wpcf7-list-item { display: block !important; }
  #wpcf7-submit_btn input[type="submit"] {
    display: block;
    text-align: center;
    width: 50%;
    padding: 18px 24px;
    font-size: 120%;
    margin: 30px auto 0;
    border: none;
    background-color: #1f8ec7;
    border-radius: 3px;
    color: #fff;
    letter-spacing: .1em;
    font-weight: bold;
    outline: 0;
  }

  #telSp {
    margin: 0px auto;
    width:800px;
    border-bottom: 1px solid #DDDDDD;
    padding-bottom: 30px;
    color: #09c;
    text-align: center;
  }
  .contactBtn a {
    display: inline-block;
    margin: 0 auto;
    padding: 15px 80px;
    text-decoration: none;
    border: 2px solid #28a7e1;
  }

/* --------------------------------------------------------------------------------
  footer
-------------------------------------------------------------------------------- */
  footer {
    position: relative;
    background: url(../images/common/bg_blue.png) repeat;
    padding: 120px 0 0;
  }
  .footDescription {
    margin: 0 0 30px;
    font-size: 79%;
    color: #fff;
    padding: 10px 20px;
    background: rgba(0,0,0,.2);
  }
  .footer-under {
    padding-bottom: 50px;
    background: url(../images/common/foot_img.png) center top repeat-x;
    background-size: cover;
  }
  footer,
  #footNav a {
    color: #fff;
  }

  #footNav { margin-bottom: 20px; }
  #footNav ul {
    text-align: center;
    letter-spacing: .2em;
    font-size: 105%;
  }
  body:not(.site-jp) #footNav ul {
    letter-spacing: .1em;
    font-size: 95%;
  }
  #footNav li {
    display: inline-block;
    padding: 0 1em;
  }
  #footNav li a { padding: 0 0 5px; }
  .sub-foot-nav { margin-bottom: 20px; }
  .sub-foot-nav ul:nth-child(1), .sub-foot-nav ul:nth-child(2) {
    width: 80%;
    margin: 0 auto;
    text-align: center;
  }
  .sub-foot-nav ul:nth-child(2) li:nth-child(5) { clear: both; }
  .sub-foot-nav li { display:inline-block; }
  .sub-foot-nav li a { color: #fff; padding: 0 4px; }
  .sub-foot-nav li a:hover { color: #ddd; }
  .copyright {
    text-align: center;
    margin: 30px 0;
    line-height: 12px;
  }
  .footer-company {
    display: table;
    margin: 0 auto;
    font-size: 85%;
    letter-spacing: 2px;
  }
  .footer-company h3,
  .footer-company-txt {
    display: table-cell;
    padding: 0 20px;
    vertical-align: middle;
  }
  .footer-company-txt a {
    color: #fff;
    border-bottom: 1px dotted;
  }
  #pageTop {
    display: block;
    position: fixed;
    bottom: 10px;
    right: 10px;
    background: #628560;
    width: 50px;
    height: 50px;
    line-height: 45px;
    border-radius: 50%;
    text-align: center;
    color: #fff;
  }
  #pageTop:hover { opacity: 0.7; }

  #footer-contact h2 {
    font-size: 240%;
    line-height: 1.35;
  }
  #footer-contact h2 span {
    display: inline-block;
    font-size: 44%;
    border: 1px solid;
    padding: 6px 18px 6px 28px;
    font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS P Gothic", sans-serif;
    font-weight: normal;
  }

/* --------------------------------------------------------------------------------
  トップページ
-------------------------------------------------------------------------------- */

  #top-first-area {
    background: url(../images/common/bg_sand.png) repeat;
    padding: 20px 0 60px;
  }
  #top-first-area {
    padding: 40px 0 60px;
  }
  .top-menu {
    display: table;
    margin-bottom: 65px;
    width: 900px;
  }
  .top-menu li {
    position: relative;
    display: table-cell;
    width: 16.6666%;
    height: 110px;
    padding: 0 30px;
    vertical-align: bottom;
    text-align: center;
  }
  .top-menu li a {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding-top: 100px;
    background-repeat: no-repeat;
    background-position: center;
  }
  .top-menu li:first-child a {background-image: url(../images/topmenu_biomass_img.png); }
  .top-menu li:nth-child(2) a {background-image: url(../images/topmenu_rankine_img.png); }
  .top-menu li:nth-child(3) a {background-image: url(../images/topmenu_soundproof_img.png); }
  .top-menu li:nth-child(4) a {background-image: url(../images/topmenu_hydrelectvic_img.png); }
  .top-menu li:nth-child(5) a {background-image: url(../images/topmenu_solar_img.png); }
  .top-menu li:nth-child(6) a {background-image: url(../images/topmenu_other_img.png); }

  .top-menu li:first-child a:hover {background-image: url(../images/common/anime-topmenu_biomass_img.gif); }
  .top-menu li:nth-child(2) a:hover {background-image: url(../images/common/anime-topmenu_rankine_img.gif); }
  .top-menu li:nth-child(3) a:hover {background-image: url(../images/common/anime-topmenu_soundproof_img.gif); }
  .top-menu li:nth-child(4) a:hover {background-image: url(../images/common/anime-topmenu_hydrelectvic_img.gif?20160307); }
  .top-menu li:nth-child(5) a:hover {background-image: url(../images/common/anime-topmenu_solar_img.gif); }
  .top-menu li:nth-child(6) a:hover {background-image: url(../images/common/anime-topmenu_other_img.gif); }

  /*   newsrelease
  ----------------------------------------- */
  .news-ttl {
    font-size: 115%;
    letter-spacing: .2em;
  }
  .site-en .news-ttl,
  .site-vi .news-ttl { letter-spacing: .1em; }
  .news-box {
    position: relative;
    background: #fff;
    padding: 30px 40px;
    width: 480px;
    min-height: 340px;
    font-size: 93%;
    line-height: 1.5;
    box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.1);
  }
  .news-box:first-child {
    margin-bottom: 25px;
  }
  .news-box h3 {
    line-height: 15px;
    margin: 0 0 25px -40px;
    padding-left: 40px;
  }
  .top-tw-box .twitter-timeline,
  .top-tw-box iframe { 
    width: 480px !important;
    height: 340px !important;
  }

  .news-box h3::before {
    content: " ";
    display: inline-block;
    width: 5px;
    height: 30px;
    position: absolute;
    left: 0;
    background: #2197d4 url(../images/common/bg_stripe.png)repeat;
    margin-top: -7px;
  }
  .news-box:first-child h3::before {
    background-color: #33cc33;
  }
  .news-box a {
    color: #000;
  }
  .news-box a:hover {
    color: #F55;
  }
  .newsList {
    margin: 32px 0 0;
  }
  .newsList dt {
    float: left;
  }
  .newsList dd {
    margin: 0 0 5px 110px;
  }
  .newsList .newIcon{
    background: #f55;
    color: #fff;
    margin: 0 0 0 2em;
    font-size: 85%;
    padding: 3px 4px;
  }

  /*   #top-message
  ----------------------------------------- */
  #top-message {
    position: relative;
    margin-top: -20px;
    padding: 140px 0 170px;
    background: url(../images/message_bg.png) center top repeat-x;
    text-align: center;
    line-height: 2;
    letter-spacing: 2px;
    font-size: 129%;
    color: #fff;
    text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
  }
  #top-message::before {
    content: " ";
    background: url(../images/squirrel.png) no-repeat;
    width: 140px;
    height: 73px;
    display: inline-block;
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  body:not(.site-jp) #top-message p {
    line-height: 1.5em;
    font-size: 90%;
  }
  #top-message h2,
  #top-message h3 {
    letter-spacing: .2em;
  }
  body:not(.site-jp) #top-message h2,
  body:not(.site-jp) #top-message h3 {
    letter-spacing: .1em;
  }
  #top-message p {
    margin-bottom: 1.8em;
  }
  .message-year {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 10
  }

  /*   .top-contents
  ----------------------------------------- */
  .top-contents {
    position: relative;
    font-size: 115%;
    line-height: 2;
    background: #fff;
  }
  .top-contents .sectionPdg {
    padding: 120px 0;
  }
  .top-contents h2 {
    margin-bottom: 30px;
  }
  .top-contents .more a {
    margin: 60px 0 0px;
    display: inline-block;
  }
  .more a:hover { opacity: 0.8; }
  .top-contents:nth-child(odd) .contents-img {
    float: left;
    clear: left;
    margin: 0 70px 0 -70px;
  }
  .top-contents:nth-child(even) .contents-img {
    float: right;
    clear: right;
    margin: 0 -70px 0 70px;
  }
  #top-biomass {
    padding: 140px 0 0;
    background: url(../images/common/bg_beige.png) repeat;
  }
  #top-biomass .more a {
    float: right;
    clear: right;
    margin: -130px 0 140px 0;
    position: relative;
  }
  #top-soundproof {
    background: url(../images/common/bg_gray.png) repeat;
  }
  #top-soundproof .contents-img,
  #top-hydroelectric .contents-img {
    margin-top: -20px;
  }
  #top-solar {
    background: url(../images/common/bg_beige.png) repeat;
  }
  #top-solar .contents-img {
    margin-top: -35px;
  }

  #top-other .more { float: right; }
  #top-other .more a { margin: 0 0; }
  #top-other.top-contents h2 { float: left; }

  #top-bousai {
    background: url(../images/common/bg_sand.png) repeat;
  }

  #top-recruit {
    position: relative;
    min-height: 297px;
    text-align: center;
    background: url(../images/common/bg_gray.png) repeat;
  }
  #top-recruit img {
    margin-top: -20px;
  }
  #top-recruit a {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
  }
  #top-recruit a:hover {
    background: url(../images/common/bg_beige.png);
  }

  #top-recruit {
    padding: 80px 0;
    min-height: auto;
  }
  #top-recruit a {
    position: static;
    font-size: 60%;
    color: #fff;
    background-color: #6a4c1d;
    padding: 4px 11px 4px 16px;
    display: inline-block;
    border-radius: 4px;
  }
  .top-recruit--ttl {
    position: relative;
    width: 530px;
    margin-right: -210px;
    padding: 60px 80px;
    background-color: rgba(255,255,255,.9);
    font-size: 200%;
    line-height: 1.4;
    z-index: 1;
  }
  .top-recruit--ttl h2 {
    margin-bottom: 14px;
  }
  .top-recruit--ttl h2 strong {
    font-size: 111%;
  }
  #top-recruit .bx-viewport {
    transform: translateX(8%);
  }
  #top-recruit ul {
    width: 720px !important;
    height: 480px;
  }

  #home_commodity {
    padding: 260px 0 80px;
    background: url(../images/common/bg_beige.png) repeat;
  }
  #home_commodity .bx-wrapper,
  #home_energy .bx-wrapper {
    position: relative;
  }
  #home_commodity .bx-wrapper { margin-right: -6% !important; }
  #home_energy .bx-wrapper { margin-left: -6% !important; }
  #home_commodity .bx-wrapper::after,
  #home_energy .bx-wrapper::after {
    content: "";
    position: absolute;
    z-index: 100;
  }
  #home_commodity .bx-wrapper::after {
    top: -5px;
    left: -7px;
    width: 530px;
    height: 401px;
    background-image: url(../images/home_commodity-cover.png);
  }
  #home_energy .bx-wrapper::after {
    top: -3px;
    left: 22px;
    width: 551px;
    height: 397px;
    background-image: url(../images/home_energy-cover.png);
  }
  #home_commodity #home_commodity_slide {
    width: 530px !important;
    height: 401px;
  }
  #home_energy {
    padding: 80px 0;
    background-color: #fff;
  }
  #home_energy #home_energy_slide {
    width: 541px !important;
    height: 388px;
  }
  .home_content .txt { flex: 1; }
  #home_commodity .txt { margin-right: 60px; }
  #home_energy .txt { margin-left: 60px; }
  .home_content--ttl {
    font-size: 380%;
    color: #6a4c1d;
    line-height: 0.8;
    margin-bottom: 36px;
  }
  body:not(.site-jp) .home_content--ttl {
    font-size: 280%;
    line-height: 1.4;
  }
  .home_content--ttl small {
    font-size: 40%;
    padding-left: 4px;
  }
  .home_content .txt p {
    margin-bottom: 38px;
  }

/* --------------------------------------------------------------------------------

  anime and icon

-------------------------------------------------------------------------------- */
  /* top-message */
  .anime {
    position: absolute;
    z-index: 10;
  }

  /* top-anime-message */
  .top-anime-message .leafs {
    top: -30px;
    right: 10%;
  }
  .top-anime-message .leaf01 {
    right: 8%;
    top: 62%;
  }
  .top-anime-message .leaf02 {
    right: 3%;
    top: 50%;
    background-color: transparent;
  }
  .top-anime-message .leaf03 {
    right: 0;
    top: 27%;
    background-color: transparent;
  }
  .top-anime-message .leaf04 {
    top: 27%;
    left: 16%;
    background-color: transparent;
  }
  .top-anime-message .leaf05 {
    left: 10%;
    top: 33%;
    background-color: transparent;
  }
  .top-anime-message .leaf06 {
    left: 18%;
    top: 16%;
    background-color: transparent;
  }

  .animate-leaf02 {
    -webkit-animation: 7s ease-in-out 0s infinite normal animate-leaf02;
    -moz-animation: 7s ease-in-out 0s infinite normal animate-leaf02;
    -o-animation: 7s ease-in-out 0s infinite normal animate-leaf02;
    animation: 7s ease-in-out 0s infinite normal animate-leaf02;
  }
  .animate-leaf03 {
    -webkit-animation: 6s ease-in-out 0s infinite normal animate-leaf03;
    -moz-animation: 6s ease-in-out 0s infinite normal animate-leaf03;
    -o-animation: 6s ease-in-out 0s infinite normal animate-leaf03;
    animation: 6s ease-in-out 0s infinite normal animate-leaf03;
  }
  .animate-leaf04 {
    -webkit-animation: 5.8s ease-in-out 0s infinite normal animate-leaf04;
    -moz-animation: 5.8s ease-in-out 0s infinite normal animate-leaf04;
    -o-animation: 5.8s ease-in-out 0s infinite normal animate-leaf04;
    animation: 5.8s ease-in-out 0s infinite normal animate-leaf04;
  }
  .animate-leaf05 {
    -webkit-animation: 5s ease-in-out 0s infinite normal animate-leaf05;
    -moz-animation: 5s ease-in-out 0s infinite normal animate-leaf05;
    -o-animation: 5s ease-in-out 0s infinite normal animate-leaf05;
    animation: 5s ease-in-out 0s infinite normal animate-leaf05;
  }
  .animate-leaf06 {
    -webkit-animation: 7s ease-in-out 0s infinite normal animate-leaf06;
    -moz-animation: 7s ease-in-out 0s infinite normal animate-leaf06;
    -o-animation: 7s ease-in-out 0s infinite normal animate-leaf06;
    animation: 7s ease-in-out 0s infinite normal animate-leaf06;
  }

  @-webkit-keyframes animate-leaf02 { 0% { right: 3%; top: 50%; opacity: 0; } 30% { opacity: 1; } 50% { top: 65%; opacity: 0.9; } 100% { right: 30%; top: 80%; opacity: 0; }}
  @-moz-keyframes animate-leaf02 { 0% { right: 3%; top: 50%; opacity: 0; } 30% { opacity: 1; } 50% { top: 65%; opacity: 0.9; } 100% { right: 30%; top: 80%; opacity: 0; }}
  @-o-keyframes animate-leaf02 { 0% { right: 3%; top: 50%; opacity: 0; } 30% { opacity: 1; } 50% { top: 65%; opacity: 0.9; } 100% { right: 30%; top: 80%; opacity: 0; }}
  @keyframes animate-leaf02 { 0% { right: 3%; top: 50%; opacity: 0; } 30% { opacity: 1; } 50% { top: 65%; opacity: 0.9; } 100% { right: 30%; top: 80%; opacity: 0; }}

  @-webkit-keyframes animate-leaf03 { 0% { right: 0%; top: 27%; opacity: 0; } 30% { opacity: 1; } 50% { top: 40%; opacity: 0.9; } 100% { right: 25%; top: 55%; opacity: 0; }}
  @-moz-keyframes animate-leaf03 { 0% { right: 0%; top: 27%; opacity: 0; } 30% { opacity: 1; } 50% { top: 40%; opacity: 0.9; } 100% { right: 25%; top: 55%; opacity: 0; }}
  @-o-keyframes animate-leaf03 { 0% { right: 0%; top: 27%; opacity: 0; } 30% { opacity: 1; } 50% { top: 40%; opacity: 0.9; } 100% { right: 25%; top: 55%; opacity: 0; }}
  @keyframes animate-leaf03 { 0% { right: 0%; top: 27%; opacity: 0; } 30% { opacity: 1; } 50% { top: 40%; opacity: 0.9; } 100% { right: 25%; top: 55%; opacity: 0; }}

  @-webkit-keyframes animate-leaf04 { 0% { left: 16%; top: 10%; opacity: 0; } 20% { opacity: 1; } 50% { top: 45%; opacity: 0.9; } 100% { left: 0; top: 50%; opacity: 0; }}
  @-moz-keyframes animate-leaf04 { 0% { left: 16%; top: 10%; opacity: 0; } 20% { opacity: 1; } 50% { top: 45%; opacity: 0.9; } 100% { left: 0; top: 50%; opacity: 0; }}
  @-o-keyframes animate-leaf04 { 0% { left: 16%; top: 10%; opacity: 0; } 20% { opacity: 1; } 50% { top: 45%; opacity: 0.9; } 100% { left: 0; top: 50%; opacity: 0; }}
  @keyframes animate-leaf04 { 0% { left: 16%; top: 10%; opacity: 0; } 20% { opacity: 1; } 50% { top: 45%; opacity: 0.9; } 100% { left: 0; top: 50%; opacity: 0; }}

  @-webkit-keyframes animate-leaf05 { 0% { left: 10%; top: 33%; opacity: 0; } 30% { opacity: 1; } 50% { top: 45%; opacity: 0.9; } 100% { left: 0; top: 60%; opacity: 0; }}
  @-moz-keyframes animate-leaf05 { 0% { left: 10%; top: 33%; opacity: 0; } 30% { opacity: 1; } 50% { top: 45%; opacity: 0.9; } 100% { left: 0; top: 60%; opacity: 0; }}
  @-o-keyframes animate-leaf05 { 0% { left: 10%; top: 33%; opacity: 0; } 30% { opacity: 1; } 50% { top: 45%; opacity: 0.9; } 100% { left: 0; top: 60%; opacity: 0; }}
  @keyframes animate-leaf05 { 0% { left: 10%; top: 33%; opacity: 0; } 30% { opacity: 1; } 50% { top: 45%; opacity: 0.9; } 100% { left: 0; top: 60%; opacity: 0; }}

  @-webkit-keyframes animate-leaf06 { 0% { left: 23%; top: -1%; opacity: 0; } 20% { opacity: 1; } 50% { top: 35%; opacity: 0.8; } 100% { left: 0; top: 45%; opacity: 0; }}
  @-moz-keyframes animate-leaf06 { 0% { left: 23%; top: -1%; opacity: 0; } 20% { opacity: 1; } 50% { top: 35%; opacity: 0.8; } 100% { left: 0; top: 45%; opacity: 0; }}
  @-o-keyframes animate-leaf06 { 0% { left: 23%; top: -1%; opacity: 0; } 20% { opacity: 1; } 50% { top: 35%; opacity: 0.8; } 100% { left: 0; top: 45%; opacity: 0; }}
  @keyframes animate-leaf06 { 0% { left: 23%; top: -1%; opacity: 0; } 20% { opacity: 1; } 50% { top: 35%; opacity: 0.8; } 100% { left: 0; top: 45%; opacity: 0; }}

  .top-anime-message .leaf07 {
    right: 25%;
    bottom: 1%;
  }
  .top-anime-message .wood01 {
    right: 13%;
    bottom: 12%;
  }
  .top-anime-message .wood02 {
    right: 6%;
    bottom: 3%;
  }
  .top-anime-message .wood03 {
    right: 11%;
    bottom: -6%;
  }

  /* top-contents */
  .top-anime-rankine {
    top: 40px;
    margin-left: 210px;
    background-image: url(../images/common/frame_anime-rankine.png);
    background-repeat: repeat-x;
    width: 106px;
    height: 92px;
    overflow: hidden;
  }
  .top-anime-bouonheki {
    top: -65px;
    margin-left: 805px;
    background-image: url(../images/common/frame_anime-bouonheki.png);
    background-repeat: repeat-x;
    width: 295px;
    height: 214px;
    overflow: hidden;
  }
  .top-anime-hydro {
    bottom: 130px;
    margin-left: -230px;
    background-image: url(../images/common/frame_anime-hydro.png);
    background-repeat: repeat-x;
    width: 126px;
    height: 259px;
    overflow: hidden;
  }
  .top-anime-sun {
    top: -60px;
    margin-left: 120px;
  }
  .top-anime-wood {
    left: 0;
    bottom: -100px;
  }
  .top-anime-biomass {
    top: 30px;
    right: 90%;
    background-image: url(../images/common/frame_anime-biomass.png);
    background-repeat: repeat-x;
    width: 354px;
    height: 180px;
    overflow: hidden;
  }

  /* page */
  .page-anime-wood {
    top: 400px;
    left: 0;
  }
  .page-anime-bird01 {
    top: -10px;
    right: -90px;
  }
  .page-anime-bird02 {
    top: 250px;
    right: 5%;
  }
  .page-anime-bird03 {
    top: 5%;
    right: 90%;
  }
  .page-anime-bird02-frame {
    right: -212px;
    background-image: url(../images/common/frame_anime-bird.png);
    background-repeat: repeat-x;
    width: 212px;
    height: 169px;
    overflow: hidden;
    z-index: 0;
  }
  .page-anime-bird03-frame {
    left: -135px;
    background-image: url(../images/common/frame_anime-bard_02.png);
    background-repeat: repeat-x;
    width: 135px;
    height: 103px;
    overflow: hidden;
    z-index: 0;
  }

  .page-anime-bird02-keyframe {
    -webkit-animation: 8s ease 0s 1 normal forwards page-anime-bird02-keyframe;
    -moz-animation: 8s ease 0s 1 normal forwards page-anime-bird02-keyframe;
    -o-animation: 8s ease 0s 1 normal forwards page-anime-bird02-keyframe;
    animation: 8s ease 0s 1 normal forwards page-anime-bird02-keyframe;
  }
  @-webkit-keyframes page-anime-bird02-keyframe { 0% { right: 0; top: 5%; opacity: 0; } 30% { opacity: 1; } 100% { right: 100%; top: 40%; opacity: 0; display: none; }}
  @-moz-keyframes page-anime-bird02-keyframe { 0% { right: 0; top: 5%; opacity: 0; } 30% { opacity: 1; } 100% { right: 100%; top: 40%; opacity: 0; display: none; }}
  @-o-keyframes page-anime-bird02-keyframe { 0% { right: 0; top: 5%; opacity: 0; } 30% { opacity: 1; } 100% { right: 100%; top: 40%; opacity: 0; display: none; }}
  @keyframes page-anime-bird02-keyframe { 0% { right: 0; top: 5%; opacity: 0; } 30% { opacity: 1; } 100% { right: 100%; top: 40%; opacity: 0; display: none; }}

  .page-anime-bird03-keyframe {
    -webkit-animation: 8s ease 0s 1 normal forwards page-anime-bird03-keyframe;
    -moz-animation: 8s ease 0s 1 normal forwards page-anime-bird03-keyframe;
    -o-animation: 8s ease 0s 1 normal forwards page-anime-bird03-keyframe;
    animation: 8s ease 0s 1 normal forwards page-anime-bird03-keyframe;
  }
  @-webkit-keyframes page-anime-bird03-keyframe { 0% { left: 0; top: 40%; opacity: 0; } 30% { opacity: 1; } 100% { left: 100%; top: 60%; opacity: 0; display: none; }}
  @-moz-keyframes page-anime-bird03-keyframe { 0% { left: 0; top: 40%; opacity: 0; } 30% { opacity: 1; } 100% { left: 100%; top: 60%; opacity: 0; display: none; }}
  @-o-keyframes page-anime-bird03-keyframe { 0% { left: 0; top: 40%; opacity: 0; } 30% { opacity: 1; } 100% { left: 100%; top: 60%; opacity: 0; display: none; }}
  @keyframes page-anime-bird03-keyframe { 0% { left: 0; top: 40%; opacity: 0; } 30% { opacity: 1; } 100% { left: 100%; top: 60%; opacity: 0; display: none; }}

  /* footer */
  footer .wood01 {
    top: 1%;
    right: 12%;
  }
  footer .wood02 {
    top: -2%;
    right: 6%;
  }


/* --------------------------------------------------------------------------------

  下層ページ共通

-------------------------------------------------------------------------------- */
  .sideColumn {
    width: 220px;
    float: left;
  }
  .side-tw-box { margin: 30px 0 0; }
  .side-tw-box iframe {
    width: 220px !important;
    height: 340px !important;
    flex-grow: inherit !important;
  }
  .mainColumn {
    width: 725px;
    float: right;
    position: relative;
  }
  .sideSection {
    margin: 0 0 20px;
  }
  .sectionTtl {
    font-size: 200%;
    color: #1f8cc5;
    font-weight: normal;
  }
  .sectionPdg .sectionTtl-bg a {
    display: block;
    text-decoration: none;
  }
  .sectionPdg .sectionTtl-bg a:hover {
    text-decoration: underline;
  }
  .sectionTtl-bg {
    font-size: 180%;
    color: #1f8cc5;
    font-weight: normal;
    margin-bottom: 30px;
  }
  .subTtl {
    margin: 30px 0 10px;
    color: #1f8cc5;
    background-color: rgba(51, 119, 187,.05);
    font-size: 122%;
    font-weight: normal;
    padding: 5px 10px;
    clear: both;
  }
  .sectionPdg p {
    margin: 15px 0 10px;
  }
  .sectionPdg table {
    width: auto;
    max-width: 100%;
    height: auto !important;
    font-size: 93%;
    margin: 15px 0 10px;
    border: solid 2px #ccc;
    line-height: 1.65;
  }
  .sectionPdg th,
  .sectionPdg td {
    padding: 5px 10px;
    border: 1px solid #ccc;
    vertical-align: middle;
  }
  .sectionPdg th {
    background: #eee;
    white-space: nowrap;
  }

/*   pageTtl
----------------------------------------- */
  .pageTtl {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
    background-color: #1F8FC9;
    height: 210px;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-top: 97px;
  }
  .pageTtlIn,
  .pageTtlIn img {
    color: #fff;
    letter-spacing: .25em;
  }
  .pageTtlIn .txt {
    display: block;
    font-size: 300%;
  }
  .pageTtlIn small {
    display: inline-block;
    border: 1px solid;
    margin-top: 1em;
    padding: .25em 4em;
  }
  .commodity .pageTtl,
  .category-list .commodity::before {
    background-image: url(../images/commodity/commodity_bg.png);
  }
  .facilities .pageTtl,
  .category-list .facilities::before {
    background-image: url(../images/commodity/facilities/facilities_bg.png);
  }
  .road .pageTtl,
  .category-list .road::before {
    background-image: url(../images/commodity/road/road_bg.png);
  }
  .river .pageTtl,
  .category-list .river::before {
    background-image: url(../images/commodity/river/river_bg.png);
  }
  .mountain .pageTtl,
  .category-list .mountain::before {
    background-image: url(../images/commodity/mountain/mountain_bg.png);
  }
  .snow .pageTtl,
  .category-list .snow::before {
    background-image: url(../images/commodity/snow/snow_bg.png);
  }
  .wooden .pageTtl,
  .category-list .wooden::before {
    background-image: url(../images/commodity/wooden/wooden_bg.png);
  }
  .others .pageTtl,
  .category-list .others::before {
    background-image: url(../images/commodity/others/others_bg.png);
  }
  .energy .pageTtl,
  .category-list .energy::before {
    background-image: url(../images/energy/energy_bg.png);
  }
  .gas .pageTtl,
  .category-list .gas::before,
  .gas-small .pageTtl, .supply .pageTtl {
    background-image: url(../images/energy/gas/gas_bg.png);
  }
  .orc .pageTtl,
  .category-list .orc::before {
    background-image: url(../images/energy/orc/orc_bg.png);
  }
  .suiryoku .pageTtl,
  .category-list .suiryoku::before {
    background-image: url(../images/energy/suiryoku/suiryoku_bg.png);
  }
  .solar .pageTtl,
  .category-list .solar::before {
    background-image: url(../images/energy/solar/solar_bg.png);
    background-position: center bottom;
  }
  .bouonheki .pageTtl,
  .category-list .bouonheki::before {
    background-image: url(../images/energy/bouonheki/bouonheki_bg.png);
  }
  .list .pageTtl,
  .category-list .list::before {
    background-image: url(../images/energy/list/list_bg.png);
  }
  .bousai .pageTtl,
  .category-list .bousai::before {
    background-image: url(../images/energy/bousai/bousai_bg.png);
  }
  .anchor .pageTtl {
    background-image: url(../images/energy/anchor/anchor_bg.png);
  }
  .battery .pageTtl {
    background-image: url(../images/energy/battery/battery_bg.png);
  }
  .nereda .pageTtl {
    background-image: url(../images/energy/nereda/nereda_bg.png);
  }

  @media (min-width: 1400px) and (max-width: 1700px) { .top-anime-wood, .page-anime-wood { left: -5%; }}
  @media (max-width: 1400px) { .top-anime-wood, .page-anime-wood { display: none; }}

  @media (min-width: 769px) and (max-width: 1400px) {
    .pageTtl {
    background-size: auto 210px;
    }
  }

/*   sectionPdg
----------------------------------------- */
  .sectionPdg ol {
    list-style-type: decimal;
  }
  .sectionPdg ul {
    list-style-type: disc;
  }
  .sectionPdg ol,
  .sectionPdg ul {
    margin: 0 0 0 2em;
  }
  .sectionPdg img {
    max-width: 100%;
    height: auto;
  }
  .sectionPdg iframe {
    max-width: 100%;
  }

/*  土木・建設 commodity
----------------------------------------- */
  .commodity .wysiwyg img {
    margin: 8px 0 4px;
  }

/*  ブログ（news,list）
----------------------------------------- */
  .blog-postlist-box {
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
    font-size: 93%;
    line-height: 1.7;
    background: rgba(255, 255, 255, 0.9);
    padding: 30px 20px;
  }
  .blog-postlist-box h2 {
    margin-bottom: 10px;
  }
  #blogPostList img {
    display: block;
    float: left;
    margin: 0 30px 0 0;
  }
  #blogPostList .textArea {
    margin: 0 0 0 250px;
  }

  #pageNav {
    font-size: 85%;
    text-align: center;
  }
  #pageNav li {
    display: inline;
  }
  .linkArea {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
  .linkArea:hover{
    background: #F1F0F0;
    filter:alpha(opacity=30);
    -moz-opacity: 0.3;
    opacity: 0.3;
  }
  .postInfo {
    margin-bottom: 20px;
  }
  .postInfo .date {
    display: inline;
    font-size: 93%;
    color: #999;
    margin: 0 0 0 20px;
    float: right;
  }
  .catLink a {
    position: relative;
    z-index: 100;
    color: #fff;
    background: #1f8cc5;
    padding: 5px;
    font-size: 85%;
    border-radius: 3px;
    text-decoration: none;
  }
  .eyecatch {
    height: 300px;
    background-position: center;
    background-size: cover;
  }

  /*news サイドバー*/
  .post .sideSection .sectionTtl-bg {
    font-size: 115%;
    border-left: 5px solid;
    color: #1F8FC9;
    padding-left: 10px;
    line-height: 1;
  }
  /*投稿詳細ページ*/
  .post-content {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px 30px;
    margin: 0 0 30px;
  }
  .post-content h2 {
    font-size: 172%;
    color: #1f8cc5;
    margin-bottom: 15px;
  }
  .post-content .eyecatch { margin-bottom: 15px; }

/*  ページ送り
----------------------------------------- */
  .wp-pagenavi {
    margin: 0 0 15px;
  }
  .wp-pagenavi a,
  .wp-pagenavi span {
    margin: 0 5px 0 0;
    box-shadow: 0 2px 1px 0 rgba(0,0,0,.15);
    padding: 10px 10px;
    background: #fff;
  }

/*  ビジュアルエディタ
    Wysiwyg editor
------------------------------------------ */
  .wysiwyg {
    font-size: 108%;
  }
  .wysiwyg ul:not(.flex):not(.category-list),
  .wysiwyg ol:not(.flex):not(.category-list) {
    margin: 1em 0;
  }
  .wysiwyg ul:not(.flex):not(.category-list) li,
  .wysiwyg ol:not(.flex):not(.category-list) li,
  .list-basic li {
    margin: 0;
    border-bottom: none;
    padding: 0;
    margin-left: 2em;
    position: relative;
  }
  .wysiwyg ul:not(.flex):not(.category-list) li:not(:last-child),
  .wysiwyg ol:not(.flex):not(.category-list) li:not(:last-child),
  .list-basic li:not(:last-child) {
    margin-bottom: 12px;
  }
  .wysiwyg ul:not(.flex):not(.category-list) li,
  .list-basic li {
    margin: 0;
    padding-left: 2em;
  }
  .wysiwyg ul:not(.flex):not(.category-list) li::before,
  .list-basic li::before {
    content: "\f141";
    position: absolute;
    left: 5px;
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 14px;
    padding-top: 4px;
    font-weight: normal;
  }
  .wysiwyg ul.fltList li {
    padding-left: 0;
    margin-right: 5px;
  }
  .wysiwyg ul.fltList li:before {
    display: none;
  }
  .wysiwyg ul.fltList img {
    margin: 5px 0 0;
  }
  .wysiwyg ol li {
    list-style-type: decimal;
  }
  .wysiwyg img {
    margin: 20px 0;
    max-width: 100%;
    height: auto;
  }
  .wysiwyg ul img,
  .wysiwyg ol img {
    margin: 0;
  }
  .alignleft,
  .wysiwyg .alignleft {
    float: left;
    clear: left;
    margin: 0 30px 5px 0;
  }
  .alignright,
  .wysiwyg .alignright {
    float: right;
    clear: right;
    margin: 0 0 5px 30px;
  }
  .aligncenter,
  .wysiwyg .aligncenter {
    display: block;
    margin: 20px auto;
  }
  .wysiwyg table {
    border: 2px solid #ccc;
    max-width: 100%;
    margin: 20px 0;
    line-height: 1.6;
  }
  .wysiwyg table th,
  .wysiwyg table td {
    padding: 1em;
    border: 1px solid #ccc;
    font-size: 93%;
    vertical-align: middle;
  }
  .wysiwyg table th {
    white-space: nowrap;
  }/*
  .wysiwyg h1,
  .wysiwyg h2,
  .wysiwyg h3,
  .wysiwyg h4,
  .wysiwyg h5 {
    font-weight: normal;
    border-left: .3em solid;
    color: #1F8FC9;
    padding-left: 1em;
    line-height: 1;
    margin-bottom: 1em;
  }*/
  .wysiwyg h1 {
    font-size: 172%;
  }
  .wysiwyg h2 {
    font-size: 158%;
  }
  .wysiwyg h3 {
    font-size: 143%;
  }
  .wysiwyg h4 {
    font-size: 129%;
  }
  .wysiwyg h5 {
    font-size: 115%;
    font-weight: bold;
  }
  .wysiwyg h3.ttl {
    font-size: 240%;
    line-height: 1.45;
  }
  .wysiwyg h3.ttl-sm { font-size: 208%; }
  .wysiwyg h3.ttl-xs { font-size: 164%; }
  .wysiwyg h3.txt-sm { font-size: 120%; }

  .wysiwyg p:not(:last-child) {
    margin-bottom: 1em;
  }
  .wysiwyg .product_ttl,
  .item-list .product_ttl {
    font-size: 138%;
    color: #1f8fc9;
    margin-bottom: 9px;
  }
  .wysiwyg .product_ttl::before,
  .item-list .product_ttl::before {
    content: "\f141";
    font: normal normal normal 14px/1 FontAwesome;
    margin-right: 6px;
    transform: translateY(-3px);
    display: inline-block;
  }
  .wysiwyg .link-txt,
  .item-list .link-txt {
    color: #1f8fc9;
    text-decoration: underline;
  }
  .wysiwyg .link-txt:hover {
    opacity: .7;
  }
  .wysiwyg blockquote {
    margin: 10px 0;
    padding: 15px 40px;
    border-radius: 3px;
    position: relative;
    display: inline-block;
    font-style: oblique;
  }
  .wysiwyg blockquote:before,
  .wysiwyg blockquote:after {
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translate(0, 0);
    font-size: 100%;
    position: absolute;
    width: 1em;
    height: 1em;
    color: #1F8FC9;
    }
  .wysiwyg blockquote:before {
    content: "\f10d";
    top: 13px;
    left: 10px;
  }
  .wysiwyg blockquote:after {
    content: "\f10e";
    bottom: 13px;
    right: 10px;
  }
  .indent-list {
    text-indent: -1em;
    padding-left: 1em;
  }

  @media only screen and (max-width: 768px) {
    .wysiwyg h3.ttl { font-size: 174%; }
    .wysiwyg h3.ttl-sm {
      font-size: 160%;
      line-height: 1.5;
    }
  }

/* =====================================================================================

  page

===================================================================================== */

/* 下層共通
------------------------------------------ */
  .contents-box {
    margin-bottom: 50px;
  }
  .contents-box-border {
    border: 3px solid #fff;
    padding: 30px 40px 40px;
    margin-bottom: 50px;
  }
  .contents-box-white {
    background: #fff;
    padding: 30px 40px 40px;
    margin-bottom: 50px;
  }
  .contents-box-border table,
  .contents-box-white table {
    width: 100%;
    border: none;
  }
  .contents-box-border th,
  .contents-box-white th {
    background: #f2f2f2;

  }
  .box-graybg p:last-child {
    margin: 0;
  }

/* 一覧ページ
------------------------------------------ */
  .category-list li {
    width: 100%;
    margin: 0 0 10px 0;
    min-height: 160px;
    padding: 40px 0;
    position: relative;
    background-size: cover;
    background-position: center;
    text-align: center;
    background-color: #1F8BC3;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
  }
  .category-list li::before {
    content: " ";
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0.9;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
  }
  .site-vi .category-list li:hover::before {
    opacity: 0.2;
  }
  .category-list a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    display: block;
  }
  .category-list img {
    position: relative;
  }
  .category-list li.category-list--parent {
    display: flex;
    align-items: center;
    min-height: 170px;
    padding: 10px 48px 16px;
    text-align: left;
    background-color: #062f44;
  }
  .category-list li::before { opacity: .75; }
  .category-list--wrap { width: 100%; }
  .category-list .category-list--child {
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .category-list .category-list--child li {
    width: 49%;
    min-height: auto;
    padding: 0;
    margin-bottom: 4px;
    background-color: transparent;
    box-shadow: none;
    text-align: left;
  }
  .category-list .category-list--child li a { color: #fff; }
  .category-list .category-list--child li::before { display: none; }
  .category-list .category-list--parent:not(.list) a {
    position: static;
    width: auto;
    height: auto;
  }
  .category-list--child a:hover {
    opacity: .5;
  }
  .category-list--ttl {
    font-size: 186%;
    color: #fff;
    position: relative;
    margin-bottom: 12px;
  }

/* =====================================================================================

  環境エネルギー

===================================================================================== */

/* gas 木質バイオマス
------------------------------------------ */
  .catch {
    font-size: 154%;
    line-height: 1.5;
    margin: 2em 0 1em;
    -webkit-font-smoothing: antialiased;
    border-bottom: 1px solid;
    padding-bottom: 1em;
    padding-top: 1em;
    border-top: 1px solid;
  }
  .aboutlist {
      background: #fff;
      padding: 5px 20px;
  }
  .aboutlist li {
      line-height: 1.3;
      font-size: 116%;
      margin-bottom: 16px !important;
  }
  .wysiwyg .contents-box h3 {
    border-left: none;
    padding-left: 0;
    margin-bottom: 30px;
  }
  .wysiwyg .contents-box h3 img {
    margin: 0;
  }
  .tokucho,
  .wysiwyg .tokucho {
    border: 2px solid #6a4c1d;
    text-align: left;
    margin: 0 0 50px;
    width: 100%;
  }
  .tokucho th,
  .wysiwyg .tokucho th,
  .tokucho td,
  .wysiwyg .tokucho td {
    vertical-align: top;
    padding: .5em 1em;
  }
  .tokucho th,
  .wysiwyg .tokucho th {
    background-color: #6a4c1d;
    color: #fff;
    font-size: 128%;
    width: 5em;
  }
  .site-en .tokucho th,
  .site-en .wysiwyg .tokucho th { width: 7em; }
  .site-vi .tokucho th,
  .site-vi .wysiwyg .tokucho th { width: 8em; }
  .site-vi .case-table th { min-width: 13em; }
  .gas-hikaku table {
    width: 49%;
    background: #fff;
    border: none;
    margin: 0 0 20px;
  }
  .gas-hikaku table th {
    background: #1F90CA;
    color: #fff;
    font-weight: normal;
    font-size: 108%;
  }
  .gas-system table {
    border: 2px solid #6a4c1d;
    width: 100%;
  }
  .gas-system table th,
  .gas-system table td {
    border: 1px solid #6a4c1d;
    background-color: #fff;
    text-align: left;
  }
  .gas-system table th {
    background-color: #f5f1e8;
  }
  .big-number {
    font-size: 143%;
    display: inline-block;
    margin: 0 3px;
    font-weight: normal;
  }

/* bouonheki 防音壁
------------------------------------------ */
  .faq dt,
  .faq dd {
    padding-left: 30px;
    position: relative;
    line-height: 1.6
  }
  .faq dt {
    padding-top: 15px;
    margin-top: 20px;
    border-top: 1px dotted #ccc;
    font-size: 123%;
    margin-bottom: 5px;
  }
  .faq dt:first-child {
    padding-top: 0;
    margin-top: 0;
    border: none;
  }
  .faq dt::before,
  .faq dd::before {
    content: "Q.";
    left: 0;
    position: absolute;
    font-size: 16px;
    letter-spacing: 3px;
  }
  .faq dd::before {
    content: "A.";
  }

/* solar 太陽光
------------------------------------------ */
  .luz-solar-link {
    margin: 0 0 30px;
    padding: 10px;
    border: 2px solid #fff;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
   .luz-solar-link a {
    width: calc(100% / 2.05);
    background: #1F91CA;
    text-align: center;
    color: #fff;
    padding: 15px 0;
    border-radius: 3px;
  }
  .luz-solar-link a:hover {
    background: #357ebd;
  }
  .about-roof dl {
    display: table-cell;
    width: 50%;
    padding: 0 10px;
  }
  .about-roof dt {
    font-size: 116%;
  }
  .about-roof dd {
      font-size: 93%;
      line-height: 1.6;
  }
  .solar-dokodemo dl {
    display: table;
    width: 100%;
  }
  .solar-dokodemo dt,
  .solar-dokodemo dd {
    padding-right: 20px;
    display: table-cell;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
    text-align: left;
  }

/* プラティパスアンカー
------------------------------------------ */
  .kit_imgs li {
    width: calc(100%/3 - (8px*2/3));
  }
  .kit_imgs li p {
    margin-top: 4px;
    font-size: 94%;
    line-height: 1.5;
  }
  .kit_pay h4 {
    font-size: 146%;
  }
  .kit_pay .list-basic li {
    margin-bottom: 6px;
  }


/* =====================================================================================

  土木

===================================================================================== */
  .item-list {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    z-index: 100;
  }
  .item-list h3 {
    font-size: 156%;
    font-weight: normal;
    margin-bottom: 15px;
    line-height: 1;
  }
  .detail-box {
    display: table;
    line-height: 1.6;
    font-size: 93%;
    padding: 1.5em;
    background: #eee;
  }


/* =====================================================================================

  company

===================================================================================== */
  #aisatsu {
    line-height: 2;
    background-color: rgba(255,255,232,1) !important;
  }
  .table-company { width: 100%; }
  .company-list + h4 {
    margin-top: 20px;
  }
  .company-list li {
    width: calc(50% - 5px);
    margin-bottom: 10px;
    margin-right: 10px;
    padding: 30px;
    float: left;
    background: #fff;
    font-size: 93%;
    line-height: 1.6;
    box-shadow: 0 0 3px -1px rgba(0, 0, 0, 0.2);
  }
  .company-list li:nth-child(2n) {
    margin-right: 0;
  }
  .company-list li:before {
    display: none !important;
  }
  .company-list li p {
    margin: 0;
  }
  .table-dl {
    font-size: 93%;
    line-height: 1.6;
    background: #fff;
  }
  .table-dl dt {
    float: left;
    clear: left;
    padding: 5px 20px;
  }
  .table-dl dd {
    padding: 5px 20px 5px 130px;
    border-bottom: 3px solid #F2F2F2;
  }
  body:not(.site-jp) .table-dl dd {
    padding-left: 160px;
    word-break: break-all;
  }
  #tokuyaku .table-dl dd {
    padding-left: 270px;
  }

  @media screen and (max-width: 767px) {
    .company-list li {
      width: 100%;
      margin-right: 0;
    }
  }


/* =====================================================================================

  recruit 採用情報

===================================================================================== */
#recruit-first-message,
#recruit-type-craft,
#recruit-flow { background: #fff; }
.recruit .sectionPdg,
#requirements .container { padding: 120px 0; }
.recruit-wrapper p { font-size: 115%; }
.recruit-ttl {
  float: left;
  clear: left;
  display: inline-block;
  width: 400px;
  margin: -160px 0 0 0;
  padding: 10px 0;
  font-size: 271.5%;
  text-align: center;
  letter-spacing: 2px;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  background: rgba(31, 143, 201, 0.9);
}
.recruit-catch {
  font-size: 257.2%;
  color: #1f8fc9;
  line-height: 1.55;
  margin-bottom: 30px;
  -webkit-font-smoothing: antialiased;
}

/* recruit-pageTtl ( helo-area )
============================================================ */
.recruit .pageTtl {
  height: 400px;
  background-color: #fff;
  background-image: url(../images/recruit/helo.jpg);
  background-size: auto 390px;
}

/* header
============================================================ */
#recruit-menu {
  background: #1f8fc9;
  display: block;
  width: 100%;
  border-top: 1px solid #fff;
}
#recruit-menu ul {
  display: table;
  width:1000px;
  margin: 0 auto;
}
#recruit-menu li {
  display: table-cell;
  width: 16.66%;
}
#recruit-menu li a {
  display: block;
  padding: 15px 0;
  text-align: center;
  color: #fff;
  font-size: 115%;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
#recruit-menu li a:hover { background: #357ebd; }
#recruit-menu.fixed {
  position: fixed;
  top: 97px;
  z-index: 999;
}

#recruit-menu.fixed li a { padding: 10px; }

/* recruit-first-message
============================================================ */
#recruit-first-message .container-big { position: relative; }
#recruit-first-message .page-anime-bird01 { top: 80px; right: 0; }
#recruit-first-message .page-anime-bird02 { top: 180px; right: 12%; }
#recruit-first-message .page-anime-bird03 { top: 515px; right: 120%; }
#recruit-first-message .recruit-catch { margin-bottom: 60px; }
#recruit-first-message p {
  font-size: 121.4285%;
  line-height: 1.9;
  margin: 0 0 30px;
}


/* recruit-type
============================================================ */
#recruit-type-sales {
  background: url(../images/common/bg_sand.png) repeat;
}
#recruit-type-sales .container-big { position: relative; }
#recruit-type-sales .leaf-01 { top: 0; right: 0; }
#recruit-type-sales .leaf-02 { top: 100px; right: 0; }
#recruit-type-sales .leaf-03 { bottom: 60px; right: 370px; }
#recruit-type-sales .wood01 { bottom: 80px; left: 0; }
#recruit-type-sales .wood02 { bottom: -40px; left: -70px; }
#recruit-type-sales .container-big::after {
  content: "";
  background: url(../images/recruit/business_after_arror.png) no-repeat;
  width: 117px;
  height: 108px;
  position: absolute;
  right: 105px;
  bottom: -45px;
}
.type-category {
  display: inline-block;
  border-bottom: 5px solid;
  font-size: 200%;
  letter-spacing: 3px;
  float: left;
  margin-right: 40px;
}
.type-txt-area {
  display: inline-block;
  width: 610px;
}
.img-area img:first-child {
  margin-right: 10px;
}
#recruit-type-craft { overflow-x: hidden; }
#recruit-type-craft .container-big { position: relative; }
#recruit-type-craft .technical-flow { margin-right: 40px; }
#recruit-type-craft .anime-wood1 { position: absolute; right: -100px; bottom: 25px; }

@media (min-width: 769px) and (max-width: 1450px) {
  #recruit-first-message .container-big, #recruit-type-sales .container-big,
  #staff-message .container-big, #recruit-flow .container-big,
  #requirements .container-big, #recruit-type-craft .container-big { width: 90%; }
  #recruit-type-sales .container-big::after { right: 4%; }
  #recruit-type-sales .type-txt-area, #recruit-type-craft .type-txt-area { width: 52%; }
  #recruit-type-sales .img-area img, #recruit-type-craft .img-area img { max-width: 48%; }
  .business-img03 { max-width: 28% !important; margin: 40px 0 0 0; }
  .technical-flow { max-width: 28% !important; margin-right: 0 !important; }
  .staff-message-list h4 { float: none; clear: both; padding-top: 0; margin: 0 0 30px; }
  #staff-message .sectionPdg ul { margin: 0 0 0 0; }
  .recruit-flow-left { width: 100% !important; }
  .recruit-flow-left h3 { float: left; margin: 0 40px 50px 0; }
  .recruit-flow-right { float: none !important; width: 100% !important; }
}

/* message
============================================================ */
#staff-message {
  background: url(../images/common/bg_gray.png) repeat;
}
/* staff-message-list */
.staff-message-list {
  margin-bottom: 40px;
}
.staff-message-list h4 {
  width: 102px;
  font-size: 123%;
  letter-spacing: 3px;
  color: #1F91CA;
  float: left;
  clear: left;
  padding-top: 28px;
  line-height: 1;
}
.staff-message-list ul {
  display: inline-block;
  width: 1080px;
  list-style: none;
}
.staff-message-list li {
  margin: 0 10px 10px 0;
  float: left;
}
.staff-message-list li a {
  position: relative;
  display: table-cell;
  width: 350px;
  height: 80px;
  background: #1F91CA;
  padding: 8px 20px;
  color: #fff;
  text-decoration: none;
  border-radius: 3px;
}
.staff-message-list li a:hover {
  background: #357ebd;
}
.staff-message-list li img {
  border-radius: 50px;
  overflow: hidden;
  margin-right: 15px;
}
.staff-message-list .category {
    border: 1px solid;
    display: inline-block;
    width: 115px;
    height: 25px;
    line-height: 23px;
    text-align: center;
    position: absolute;
    top: 27px;
    font-size: 93%;
}
.staff-message-list strong {
    position: absolute;
    font-size: 129%;
    top: 23px;
    left: 226px;
    font-weight: normal;
    letter-spacing: 2px;
}
/* message-box */
.message-box {
  margin-bottom: 70px;
  background: #fff;
  padding: 60px 100px;
  position: relative;
  font-size: 88%;
}
.message-box .img-area {
  float: left;
  width: 300px;
}
.message-box .img-area .name {
  font-size: 143%;
  letter-spacing: 3px;
  -webkit-font-smoothing: antialiased;
  line-height: 1;
  margin: 20px 0;
}
.message-box .img-area p {
  line-height: 1.5;
  font-size: 100%;
}
.message-box .message-area {
  float: right;
  width: 430px;
}



/* link-btn */
.link-btn {
  text-align: center;
  padding: 0 0 160px;
}
.link-btn a {
  -webkit-font-smoothing: antialiased;
  font-weight: bold;
  font-size: 257.2%;
  letter-spacing: 4px;
  display: inline-block;
  border: 4px solid;
  padding: 5px 100px;
  color: #1F8FC9;
}
.link-btn a:hover {
  background: #1F8FC9;
  color: #fff;
  border-color: #1F8FC9;
}



/* flow
============================================================ */
.recruit-flow-left {
  float: left;
  display: inline-block;
  width: 390px;
}
.recruit-flow-right {
  float: right;
  display: inline-block;
  width: 780px;
}
.recruit-flow-right dl {
  position: relative;
  margin-bottom: 30px;
  line-height: 1.6;
  background: #f2f2f2;
  border: 1px solid #1f8fc9;
  border-radius: 3px;
}
.recruit-flow-right dl::after {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f078";
  position: absolute;
  left: 82px;
  font-size: 24px;
  bottom: -26px;
  color: #1F8FC9;
}
.recruit-flow-right .last::after {
  display: none;
}
.recruit-flow-right dt,
.recruit-flow-right dd {
  display: table-cell;
  vertical-align: middle;
  padding: 25px;
}
.recruit-flow-right dt {
  width: 190px;
  background: #1f8fc9;
  text-align: center;
  white-space: nowrap;
  font-size: 116%;
  color: #fff;
  letter-spacing: 2px;
}
.recruit-flow-right dt span {
  font-size: 123%;
}
.seido-box {
  position: relative;
  margin: 70px 0 0;
  padding: 40px;
  background: #f2f2f2;
}
.seido-box .recruit-catch {
  position: absolute;
  top: -30px;
  right: 0;
}
.seido-box .seido-ttl {
  font-size: 158%;
  letter-spacing: 5px;
  margin-bottom: 30px;
}
.seido-box img {
  float: right;
  margin-left: 60px;
}
.seido-box p {
  font-size: 100%;
}



/* rewuirements
============================================================ */
#requirements {
  position: relative;
  background: url(../images/common/bg_sand.png) repeat;
  padding: 120px 0;
}
#requirements::after {
  position: absolute;
  left: 50%;
  content: "";
  display: block;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 30px 40px 0px;
  border-color: #EBEBEB transparent transparent transparent;
  bottom: -30px;
  z-index: 1;
  margin-left: -40px;
}
.requirements-table {
  width: 800px;
  margin: 0 auto 60px;
  padding: 30px;
  vertical-align: middle;
  background: #fff;
  font-size: 108%;
  line-height: 1.6;
}
.requirements-table th {
  right: 10px;
  width: 120px;
  text-align: right;
  font-weight: normal;
  color: #999;
}
.requirements-table th,
.requirements-table td {
  padding: 10px 20px;
  border-bottom: 5px solid #F1F1F0;
}
.requirements-table tr:last-child th,
.requirements-table tr:last-child td {
    border: none;
}
.requirements-catch {
  font-size: 143% !important;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  text-align: center;
  line-height: 2;
}

.recruit-contact-ttl {
  font-size: 257.2%;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 5px;
}


/* =====================================================================================

  その他

===================================================================================== */
#request {
  padding: 30px;
  background: #fff;
}
#request #formyForm {
  box-shadow: none;
  margin: 0 auto;
  padding: 10px;
}
#request .request-ttl {
  text-align: center;
  font-size: 160%;
  margin-bottom: 20px;
  font-weight: normal;
}
.request-btn {
  text-align: center;
  margin: 30px 0;
}
.request-btn a {
  display: inline-block;
  position: relative;
  z-index: 10;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.request-btn a::before {
  display: block;
  content: " ";
  width: 705px;
  height: 120px;
  background: #fff;
  position: absolute;
  left: 10px;
  top: 40px;
  z-index: -1;
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  border-radius: 5px;
}
.request-btn a:hover::before {
  opacity: 0.7;
}
/* =====================================================================================

  SP

===================================================================================== */
@media (min-width: 769px) and (max-width: 1000px) {
  .body {
    overflow-x: hidden;
  }
  img {
    max-width: 100%;
    height: auto;
  }
  .container {
    width: 90%;
  }
  header .container {
    width: 98%;
  }
  #headLogo {
    margin-right: 0;
  }
}
@media (max-width: 768px) {
  img {
    max-width: 100%;
    height: auto;
  }
  .container {
    width: 90%;
  }
  #mainContent {
    padding: 30px 0;
    display: block;
    width: 100%;
  }
  .sideColumn {
    display: block;
    width: 100%;
    float: none;
  }
  .mainColumn {
    display: block;
    width: 100%;
    float: none;
  }

  header {
    position: fixed;
    width: 100%;
    z-index: 999;
    padding: 5px 0;
    top: 0;
    background: #fff;
  }
  #headLogo {
    float: left;
    margin-top: 15px;
    line-height: 1;
  }
  #headLogo img {
    padding: 0;
    height: auto;
    width: 180px;
  }
  .head-language {
    display: none;
  }
  #headSearch,
  #headTel {
    display: none;
  }
  .helo-slider-area { margin-top: 62px; }
  .helo-slider-area ul li {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
@media (max-width: 320px) {
  .helo-slider-area ul li {
    height: 240px;
  }
}

  /*gnav*/
  #gnav {
    text-align: center;
    height: 45px;
  }
  #gnavBtn {
    display: inline-block;
    z-index: 200;
    position: fixed;
    right: 16px;
    top: 10px;
    font-size: 21px;
  }
  #gnav span {
    border: 0;
    display: table;
    width: 100%;
  }
  #gnav span.pc-none-inline {
    display: inline;
  }
  #gnavMenu {
    display: none;
    margin: 0;
    height: 100%;
    width: 100%;
    padding: 60px 10px 15px;
    position: fixed;
    top: 45px;
    top: 0;
    left: 0;
    background: rgba(31, 140, 197, 0.8);
    z-index: 300;
    overflow: scroll;
  }
  #gnavBtnClose {
    position: absolute;
    top: 15px;
    right: 10px;
    display: inline-block;
    width: 30px;
    background: #fff;
    color: #444;
    font-weight: bold;
    line-height: 30px;
  }
  .gnavSubToggle {
    color: #FFF;
    font-size: 10px;
    display: inline-block;
    width: 40px;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 0 4px 4px 0;
    padding: 11px 0 0;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    right: 0;
  }
  #gnavMenu li {
    margin: 0;
    box-sizing: border-box;
    position: relative;
    width: 100%;
    display: table;
  }

  #gnavMenu li:nth-child(4) .company-trigger span,
  #gnavMenu li:nth-child(1) .commodity-trigger span,
  #gnavMenu li:nth-child(2) .energy-trigger span { transition: all 5s; }

  #gnavMenu li:nth-child(1), #gnavMenu li:nth-child(2), #gnavMenu li:nth-child(4) { position: relative; }
  #gnavMenu li:nth-child(4) .company-trigger,
  #gnavMenu li:nth-child(1) .commodity-trigger,
  #gnavMenu li:nth-child(2) .energy-trigger {
    background: #8BBFDA;
    height: 30px;
    width: 30px;
    position: absolute;
    top: 10px;
    right: 10px;
    border-radius: 5px;
    font-size: 116%;
    color: #F2F2F2;
    font-weight: bold;
    box-shadow: 0 0 5px rgba(100,100,100,0.2) inset;
  }
  #gnavMenu li:nth-child(4) .company-trigger span:first-child,
  #gnavMenu li:nth-child(1) .commodity-trigger span:first-child,
  #gnavMenu li:nth-child(2) .energy-trigger span:first-child {
    width: 15px;
    height: 2px;
    background: #fff;
    display: block;
    padding: 0;
    position: absolute;
    margin: 13px 0 0 7px;
  }
  #gnavMenu li:nth-child(4) .company-trigger span:last-child,
  #gnavMenu li:nth-child(1) .commodity-trigger span:last-child,
  #gnavMenu li:nth-child(2) .energy-trigger span:last-child {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
    margin: 14px 0 0 7px;
    width: 15px;
    height: 2px;
    background: #fff;
    display: block;
    position: absolute;
  }
  #gnavMenu li:nth-child(4) .company-trigger.active span:last-child,
  #gnavMenu li:nth-child(1) .commodity-trigger.active span:last-child,
  #gnavMenu li:nth-child(2) .energy-trigger.active span:last-child { display: none; }

  #company-list li a, #commodity-list li a, #energy-list li a {
    padding: 15px 0;
    height: auto;
    background: #FFFFFF;
    color: #48A1CF;
    border-radius: 0;
  }

  #gnavMenu .gnavMenuIcon {
    margin: 0;
  }
  #gnavMenu a {
    padding: 8px 40px 8px;
    color: #000;
    background: #F2F2F2;
    position: relative;
    height: 50px;
    display: table-cell;
    vertical-align: middle;
    line-height: 16px;
    border-bottom: 1px solid #7ABDE0;
  }
  #gnavMenu a img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
  #gnavMenu .headSubNav {
    margin: 0;
    width: 100%;
    position: relative;
    background-color: transparent;
  }
  #gnavMenu .headSubNav li {
    border: none;
    border-radius: 4px;
  }
  #gnav #gnavMenu .headSubNav a {
    padding: 10px;
    border-radius: 4px;
    background: #fff;
    color: #444;
    text-align: center;
  }
  #gnav .current a {
    background: rgba(0,0,0,.5) !important;
  }
  .nav-language {
    margin-top: 10px;
    border: solid 1px #f2f2f2;
    padding: 5px 5px 10px;
  }
  .nav-language dt {
    color: #F2F2F2;
  }
  .nav-language dd {
    width: 31.3333%;
    font-size: 85%;
    float: left;
    margin: 0 1%;
  }
  #gnavMenu .nav-language a {
    height: auto;
    color: #4397c3;
    display: block;
    padding: 8px;
  }

  .sideSection {
    margin: 0 0 10px;
    border-top: 1px dotted #aaa;
    padding: 20px 10px 0;
  }

  .sectionPdg {
    padding: 10px;
    margin: 0 auto;
  }
  .sectionPdg .sectionTtl-bg {
    margin: 0 0 10px;
    font-size: 120%;
    line-height: 1.5;
  }
  .subTtl {
    margin: 10px 0 10px;
  }
  .sectionPdg table {
    width: 100%;
  }
  .sectionPdg th, .sectionPdg td {
    display: block;
    width: auto !important;
  }
  .sectionPdg .tableScroll {
    width: 270px;
    overflow-x: scroll;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .sectionPdg .tableScroll th,
  .sectionPdg .tableScroll td {
    display: table-cell;
  }

  .sectionPdg img,
  #blogPostList img {
    float: none;
    display: block;
    margin: 0 auto;
  }

  .pageTtl { margin-top: 62px; background-size: cover; }
  .page-anime-wood, .page-anime-bird01, .page-anime-bird02, .page-anime-bird03 { display: none !important; }

  #colorbox {
    width: 100% !important;
    right: 0px;
    margin: 0 auto;
  }
  #cboxWrapper { width: 100% !important; }
  #cboxContent { width: 100% !important; }
  #cboxLoadedContent { width: 100% !important; -webkit-overflow-scrolling: touch; }

  /* formy */
  #formyForm,
  #formy_form {
    width: auto;
    padding: 10px 20px;
    margin: 0 auto 70px;
  }
  #formyForm th,
  #formyForm td,
  #formy_form th,
  #formy_form td {
    display: block;
    width: auto;
    padding: 0 0 10px;
  }
  #formyForm th,
  #formy_form th {
    border-bottom:none;
    padding-bottom: 0;
    white-space: normal;
    font-weight: bold;
    padding: 10px 0 0;
    border: none;
  }
  #formyForm td,
  #formy_form td {
    border-bottom: 1px solid #eee;
  }
  #formy_btn {
    height: 155px;
    position: relative;
  }
  #formy_btn input {
    width: 100%;
    background-size: contain;
    background-position: center;
  }
  #formy_btn input.autoConfirmBack {
    position: absolute;
    top: 95px;
  }
  #total_required {
    top: 10px;
    left: 0;
    right: 0;
    position: relative;
    display: block;
    text-align: center;
    margin: 0 auto;
    padding: 10px 0;
  }
  .confirm-message { margin: 20px 0 0; }

  /* Top */
  .newsList dt {
    float: none;
  }
  .newsList dd {
    margin: 0;
  }
  .newsList .newIcon {
    margin: 0 0 0 1em;
  }
  #top-recruit { min-height: 110px; }

  .notice-board {
    float: none;
    margin-right: 0;
    width: 100%;
  }

  .top-tw-box {
    width: 100%;
    margin: 0 auto;
  }

  /* top-content */
  .request-btn a::before {
    width: 100%;
    height: 84%;
    left: 0;
    top: 15px;
  }
  .top-menu {
    display: block;
    width: 85% !important;
  }
  .top-menu li {
    display: block;
    width: 25%;
    padding: 0 0;
    float: left;
    margin: 0 12% 0 0;
    height: 90px;
  }
  .top-menu li a { padding-top: 79px; background-size: 65%; }
  .top-menu li a img { max-width: 75%; }
  .top-menu li:nth-child(3n) { margin: 0 0 20px; }
  body:not(.site-jp) .top-menu li {
    height: 120px;
  }
  body:not(.site-jp) .top-menu li a {
    padding-top: 80%;
    background-position: top;
  }
  .news-box { width: 100%; margin: 0 0 20px; padding: 25px 20px; min-height: auto; }
  .top-contents .sectionPdg { padding: 55px 0 90%; }
  #top-biomass .sectionPdg, #top-other .sectionPdg { padding: 55px 0; }
  #top-bousai .sectionPdg { padding: 55px 0 63%; }
  .top-contents:nth-child(even) .contents-img, .top-contents:nth-child(odd) .contents-img {
    float: none;
    margin: 0 auto 0;
    position: absolute;
    z-index: 0;
    left: 0;
    right: 0;
    bottom: 60px;
    width: 95%;
  }
  .sectionPdg p.more {
    margin: 0 0 0;
    position: absolute;
    right: 15px;
    bottom: 30px;
  }
  .top-contents .more a { margin: 30px 0 0px; }
  .top-anime-rankine, .top-anime-bouonheki, .top-anime-hydro, .top-anime-sun, .top-anime-biomass { display: none !important; }
  .top-anime-wood { display: none; }

  #top-message { background-size: cover; padding: 140px 10px 240px; }
  .message-year { bottom: -150px; }
  #top-message p br { display: none; }
  #top-message p { padding: 0 10px; line-height: 1.7; font-size: 86%; margin-bottom: 1em; }

  #top-biomass { padding: 120px 0 50px; }
  #top-biomass .sectionPdg p.more { left: 0; right: 0; bottom: -95px; }
  #top-biomass .more a {
    float: none;
    clear: both;
    margin: -130px auto 140px;
    display: block;
    text-align: center;
  }

  #home_commodity {
    padding: 190px 0 60px;
  }
  #home_commodity .txt,
  #home_energy .txt {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 44px;
    text-align: center;
  }
  #home_commodity .bx-wrapper::after,
  #home_energy .bx-wrapper::after {
    width: 100%;
    background-size: 100%;
    background-repeat: no-repeat;
  }
  #home_commodity .bx-wrapper,
  #home_energy .bx-wrapper {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  #home_commodity .bx-wrapper ul,
  #home_energy .bx-wrapper ul {
    margin: 0;
  }
  .home_content--ttl { font-size: 270%; }
  #home_energy { padding: 60px 0; }
  #home_energy .bx-wrapper::after { left: 7px; }
  #home_energy .flex { flex-direction: column-reverse; }
  #top-recruit { padding: 40px 0; }
  #top-recruit .flex { display: block; }
  .top-recruit--ttl {
    width: 100%;
    margin-right: 0;
    padding: 32px 0;
    font-size: 160%;
  }
  #top-recruit .bx-viewport {
    transform: translateX(0);
    margin-top: 20px;
  }
  .contact-in iframe {
    width: 100%;
    height: 1360px;
  }
  body.site-vi .contact-in iframe { height: 1400px; }
  .contact-in:first-child iframe { height: 896px !important; }
  .contact-tab { display: block; }
  .contact-tab li { font-size: 138%; }
  .contact-tab li:first-child {
    margin-right: 0;
    margin-bottom: 12px;
  }

  #footNav { margin-bottom: 30px; }
  .sub-foot-nav { margin-bottom: 30px; }
  .sub-foot-nav ul:nth-child(1), .sub-foot-nav ul:nth-child(2) { width: 100%; }
  .footer-under { padding: 0 0 20px; }
  .footer-company h3, .footer-company-txt { display: block; padding: 0 0; text-align: center; }
  .footer-company h3 { margin: 0 0 20px -10px; }

  /*資料請求バナー*/
  .request-btn { margin: 20px 0 10px; }

  /*投稿詳細ページ news news-energy*/
  .post-content { padding: 10px 15px; }

  /* --- 下層 --- */
  .aboutlist { padding: 5px 15px; }
  .box-graybg { padding: 15px !important; }
  .catch { font-size: 150%; margin: 1em 0 1em; padding-bottom: 0.5em; padding-top: 0.5em; }
  .wysiwyg .contents-box h3 { margin-bottom: 15px; }
  .tokucho, .wysiwyg .tokucho { margin-bottom: 30px; }
  .item-list { padding: 20px 15px; }
  .contents-box { margin-bottom: 30px; }
  .contents-box-border { padding: 30px 15px 20px; }
  .contents-box-white { padding: 25px 13px 15px; }
  .sp_table_area { overflow-x: scroll; width: 100%; }
  .solar .wysiwyg img, .orc .wysiwyg img, .suiryoku .wysiwyg img, .bouonheki .wysiwyg img { margin: 5px 0; }
  /*下層ヘッダー*/
  .pageTtlIn, .pageTtlIn img { padding: 0 15px 0; }
  /*company*/
  .company .wysiwyg ul.fltList li { width: 100%}
  .company .wysiwyg table th, .wysiwyg table td { padding: 10px 15px; }
  .company2 #saikatsu li { width: 100%; }
  .company2 .table-dl dt { float: none; clear: both; padding: 10px 20px 0; }
  .company2 #tokuyaku .table-dl dd { padding-left: 0; padding: 0 20px 10px; }
  /*　gas orc　*/
  .gas-system table th, .gas-system table td { display: block; padding: 5px 10px; }
  .gas-hikaku table { width: 100%; margin: 0 auto 10px; float: none; }
  .gas-hikaku table th { padding: 10px 5px; }
  /*suiryoku*/
  .suiryoku .wysiwyg iframe { width: 100% !important; }
  /*suiryoku*/
  .nereda .wysiwyg iframe { width: 100% !important; }
  /*solar*/
  .luz-solar-link a { width: 100%; margin: 0 0 10px; }
  .luz-solar-link a:last-child { margin: 0 0 0; }
  .about-roof dl {
    display: block;
    width: 100%;
    padding: 0 10px;
    margin: 0 0 30px;
  }
  .tokucho th,
  .wysiwyg .tokucho th,
  .tokucho td,
  .wysiwyg .tokucho td { display: block; }
  .solar .solar-dokodemo ul li,
  .solar .tokucho ul:nth-child(2) li,
  .solar-sechi li { width: 33%; }
  /* その他 */
  .alignright,
  .wysiwyg .alignright { float: none; clear: both; margin: 0 0 15px 0; }
  .list .item-list span { float: none; clear: both; margin: 0 0 15px 0; display: block; }

  /* 会社概要 company2 */
  .company-list-another { margin: 25px 0 0 -5px !important; }
  .company-list-another li { float: none; }
  .company-list-another li:nth-child(1) {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .company-list-another li h4 { margin-left: 0; }
  .company-list-another li p { width: 100%; }

  @media (max-width: 320px) {
    .solar .solar-dokodemo ul li, .solar .tokucho ul:nth-child(2) li, .solar-sechi li { width: 100%; }
    .solar .wysiwyg ul.fltList li {
      margin-right: 0;
      float: none;
      display: block;
      text-align: center;
    }
  }
  /* 採用情報 */
  .recruit .pageTtl {
    background-image: url(../images/recruit/ttl-saiyo_sp.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 185px;
  }
  .recruit-ttl { width: 100%; margin: -70px 0 30px 0; font-size: 186%; }
  .recruit-catch { margin: 20px 0 10px 0; font-size: 186%; }
  #recruit-first-message .container-big { width: 90%; }
  .recruit .sectionPdg { padding: 50px 0; }
  .container-big { width: 90%; }
  #recruit-first-message .container-big { padding: 20px 0 50px; }
  #recruit-first-message .recruit-catch { margin: 0 0 20px; }
  #recruit-first-message p { margin: 0 0 20px; }
  .recruit .img-area { width: 100%; text-align: center; margin: 25px auto; }
  .recruit .img-area h3, .recruit .img-area p { text-align: left; }
  .recruit .img-area img:first-child { margin-right: 0; margin: 10px auto; }
  /*募集職種*/
  .type-txt-area { width: 100%; }
  #recruit-type-craft .technical-flow { margin-right: 0; margin: 0 auto; }
  #recruit-type-sales .container-big::after { right: 20%; }
  /*先輩社員*/
  .staff-message-list ul { width: 100%; }
  .message-box { padding: 20px 20px; margin-bottom: 20px; }
  .message-box .img-area { float: none; margin: 0 auto; }
  .message-box .message-area { float: none; width: 100%; }
  .link-btn { padding: 0 0 70px; }
  .link-btn a { width: 90%; font-size: 143%; padding: 5px 0; }
  .staff-message-list { margin-bottom: 10px; }
  .staff-message-list h4 { width: 100%; float: none; text-align: center; font-size: 158%; padding: 15px 0; }
  .staff-message-list ul { width: 94%; margin: 0 auto; display: block; }
  .staff-message-list li { margin: 0 0 10px 0; float: none; }
  .staff-message-list li a { padding: 8px 15px 8px 15px; }
  .staff-message-list strong { left: 43%; font-size: 115%; top: 25px; }
  @media (max-width: 320px) {
    .staff-message-list li a { padding: 8px 20px; }
    .staff-message-list .category { top: 12px; }
    .staff-message-list strong {
      left: 8%;
      display: block;
      width: 114px;
      text-align: center;
      top: 40px;
      font-size: 115%;
    }
  }
  .staff-message-list li img { margin-right: 0; }
  /*採用後の流れ*/
  .recruit-flow-left { float: none; width: 100%; }
  .recruit-flow-right { width: 100%; float: none; }
  .seido-box { padding: 25px 10px 10px; }
  .seido-box .seido-ttl { line-height: 1.4; margin: 10px 0 0; }
  .seido-box .recruit-catch { top:-40px; left: 0; right: auto; }
  .recruit-flow-right dl::after { left: 47%; }
  .recruit-flow-right dt { width: 100%; display: block; padding: 10px 0; }
  /*募集要項*/
  #requirements { padding: 120px 0 40px; }
  .requirements-table { width: 100%; padding: 0 10px 10px; margin: 0 0 30px; }
  .requirements-table th, .requirements-table td {
    padding: 10px 10px;
    border-bottom: 2px solid #F1F1F0;
    display: block;
    width: 100%;
  }
  .requirements-table th {
    text-align: left;
    border-bottom: none !important;
    padding: 15px 10px 0 !important;
  }
  .requirements-catch { line-height: 1.6; }
  /*記事詳細*/
  #mainContent.post { display: table; }
  .post .sideColumn { display: table-row-group; }
  .post .mainColumn { display: table-header-group; }
  .post #pageNav { margin: 0 0 30px; }

  /* Blog */
  #blogPostList .textArea {
    margin: 0;
  }

  /* page_ttl */
  .pageTtlIn .txt {
    font-size: 200%;
  }

  /* 土木・建設 */
  .commodity .item-list {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
  }
  .commodity .item-list h3,
  .commodity .item-list .commodity_img_list,
  .commodity .item-list p {
    width: 100%;
  }
  .commodity_img_list {
    display: block;
    order: 3;
  }
  .commodity_img_list > * {
    margin-top: 16px;
  }
  .commodity .item-list p {
    order: 2;
  }

  /* 環境・エネルギー */
  .category-list li.category-list--parent {
    padding: 10px 20px 16px;
  }
  .category-list .category-list--child li {
    width: 100%;
  }
  .category-list li::before {
    background-size: cover;
  }
  .table-basic.flow th,
  .table-basic.flow td {
    display: table-cell;
  }
  .table-basic.block th,
  .table-basic.block td {
    display: block;
  }
}