@charset "UTF-8";
/* Scss Document */
/* Scss Document */
/*

HTML5 Reset Stylesheetを使用

変更点

- line-heightは1.5に変更
- list-style:none;はulのみだったが、olも追加
- bodyに-webkit-text-size-adjust: 100%;を追加(iosのsafari横向きで自動的にフォントサイズが大きくなるのを防ぐ)http://www.webdlab.com/labs/iphone-font-size/
*/
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ul, ol {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/*--------------------------------

 共通

--------------------------------*/
body {
  margin: 0;
  padding: 0;
  font-family: 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,Helvetica,'MS Pゴシック','MS PGothic',sans-serif;
  font-size: 15px;
  color: #333;
}

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.clearfix {
  display: inline-table;
}

/* Hides from IE-mac */
* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

alink, avisited {
  color: inherit;
}

/* 省略記号（３点リーダー） */
.ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media screen and (min-width: 768px) {
  .display_pc {
    display: block !important;
  }
  .display_sp {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .display_pc {
    display: none !important;
  }
  .display_sp {
    display: block !important;
  }
}

/*========= 改行(メディアクエリによる分岐) =========*/
@media screen and (min-width: 768px) {
  .br_pc {
    display: block;
  }
  .br_sp {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .br_pc {
    display: none;
  }
  .br_sp {
    display: block;
  }
}

/* Scss Document */
.load_mask {
  background-color: #fff;
  z-index: 1000;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
}

.load_mask .loader {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  display: inline-block;
  width: 50px;
  height: 50px;
  border: 2px solid #bc1b21;
  border-radius: 50%;
  -webkit-animation: spin 0.75s infinite linear;
          animation: spin 0.75s infinite linear;
  border-top-width: 0;
}

.load_mask .loader::before, .load_mask .loader::after {
  left: -2px;
  top: -2px;
  display: none;
  position: absolute;
  content: '';
  width: inherit;
  height: inherit;
  border: inherit;
  border-radius: inherit;
}

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

/* ==================================
 ヘッダー
================================== */
@-webkit-keyframes disp {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes disp {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.header {
  height: 100%;
  height: 100vh;
  position: relative;
}

.header .area_main {
  background: url(../img/main_bg.jpg) center center no-repeat;
  background-size: cover;
  width: 100%;
  position: relative;
  height: 100%;
  height: 100vh;
}

@media (max-width: 767px) {
  .header .area_main {
    position: relative;
    top: 60px;
  }
}

.header .area_main .main_copy,
.header .area_main .main_copy_sp {
  opacity: 0;
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
}

.header .area_main .main_copy.wide {
  height: 60%;
  top: -11%;
  bottom: 0;
  max-height: 540px;
}

.header .area_main .main_copy.high {
  top: -10%;
  bottom: 0;
  min-width: 180px;
  width: 47%;
}

.header .area_main .main_copy_sp.wide {
  height: 60%;
  top: 9%;
}

.header .area_main .main_copy_sp.high {
  top: -10%;
  bottom: 0;
  min-width: 180px;
  width: 47%;
}

.header .area_main .main_parts01 {
  opacity: 0;
  position: absolute;
  margin: auto;
}

.header .area_main .main_parts01.wide {
  top: 8%;
  left: 15%;
  height: 12%;
  max-height: 100px;
}

.header .area_main .main_parts01.high {
  width: 10%;
  top: 8%;
  left: 12%;
  min-width: 50px;
}

.header .area_main .main_parts02 {
  opacity: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

.header .area_main .main_parts02.wide {
  left: 5%;
  height: 15%;
  max-height: 130px;
}

.header .area_main .main_parts02.high {
  left: 3%;
  width: 14%;
  min-width: 65px;
}

.header .area_main .main_parts03 {
  opacity: 0;
  position: absolute;
  margin: auto;
}

.header .area_main .main_parts03.wide {
  height: 11%;
  top: 84%;
  left: 32%;
  max-height: 100px;
}

.header .area_main .main_parts03.high {
  width: 10%;
  top: 84%;
  left: 30%;
  min-width: 50px;
}

.header .area_main .main_parts04 {
  opacity: 0;
  position: absolute;
  margin: auto;
}

.header .area_main .main_parts04.wide {
  top: 16%;
  right: 13%;
  height: 12%;
  max-height: 100px;
}

.header .area_main .main_parts04.high {
  width: 10%;
  right: 10%;
  top: 13%;
  min-width: 50px;
}

.header .area_main .main_parts05 {
  opacity: 0;
  position: absolute;
  margin: auto;
}

.header .area_main .main_parts05.wide {
  height: 16%;
  top: 70%;
  right: 5%;
  max-height: 130px;
}

.header .area_main .main_parts05.high {
  width: 12%;
  right: 7%;
  top: 70%;
  min-width: 65px;
}

.header .area_main .main_parts_disp {
  -webkit-animation: disp 0.6s linear forwards;
          animation: disp 0.6s linear forwards;
}

.header .fixd_header {
  width: 100%;
  background-color: #fff;
  z-index: 100;
  width: 100%;
}

.header .fixd_header.fixed {
  position: fixed;
  top: -70px;
  left: 0;
  right: 0;
  -webkit-box-shadow: 0px 0px 3px 0 rgba(102, 102, 102, 0.5);
          box-shadow: 0px 0px 3px 0 rgba(102, 102, 102, 0.5);
}

@media (max-width: 767px) {
  .header .fixd_header {
    display: none;
  }
}

.header .fixd_header .fixd_header_inner {
  padding: 30px 10px;
  max-width: 1195px;
  margin: 0 auto;
}

@media (min-width: 1130px) {
  .header .fixd_header .fixd_header_inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media (max-width: 1129px) {
  .header .fixd_header .fixd_header_inner {
    padding: 15px 10px;
  }
}

.header .fixd_header .fixd_header_inner .logo {
  width: 215px;
}

@media (max-width: 1129px) {
  .header .fixd_header .fixd_header_inner .logo {
    margin: 0 auto;
  }
}

.header .fixd_header .fixd_header_inner .logo img {
  width: 100%;
  preserveAspectRatio: none;
}

.header .fixd_header .fixd_header_inner .nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.header .fixd_header .fixd_header_inner .nav ul {
  max-width: 875px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
}

@media (max-width: 1129px) {
  .header .fixd_header .fixd_header_inner .nav ul {
    margin: 0 auto;
    margin-top: 10px;
  }
}

.header .fixd_header .fixd_header_inner .nav ul li {
  padding: 0px 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-left: 1px solid #bc1b21;
  float: left;
}

@media (max-width: 1129px) {
  .header .fixd_header .fixd_header_inner .nav ul li {
    padding: 3px 3px;
  }
}

.header .fixd_header .fixd_header_inner .nav ul li:last-of-type {
  border-right: 1px solid #bc1b21;
}

.header .fixd_header .fixd_header_inner .nav ul li a {
  padding: 3px 10px 3px 38px;
  height: 16px;
  display: block;
  position: relative;
  overflow: hidden;
}

.header .fixd_header .fixd_header_inner .nav ul li a:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #fef7f2;
  -webkit-transform: translateX(-101%);
          transform: translateX(-101%);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.header .fixd_header .fixd_header_inner .nav ul li a .icon {
  width: 18px;
  height: 12px;
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
}

.header .fixd_header .fixd_header_inner .nav ul li a .text {
  height: 16px;
  position: relative;
  z-index: 1;
}

@media (max-width: 1129px) {
  .header .fixd_header .fixd_header_inner .nav ul li a .text {
    height: 15px;
  }
}

.header .fixd_header .fixd_header_inner .nav ul li a:hover:before {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.header .fixd_header_sp {
  background-color: #fff;
  width: 100%;
  z-index: 1000;
  height: 60px;
  position: fixed;
}

@media (min-width: 768px) {
  .header .fixd_header_sp {
    display: none;
  }
}

.header .fixd_header_sp .logo {
  width: 194px;
  height: 18px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.header .fixd_header_sp .logo img {
  width: 100%;
  height: 100%;
}

.header .fixd_header_sp .menu {
  width: 44px;
  height: 44px;
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  background-color: #bc1b21;
  cursor: pointer;
}

.header .fixd_header_sp .menu .text {
  width: 27px;
  height: 7px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  margin: auto;
}

.header .fixd_header_sp .nav {
  background-color: #fff;
  width: 100%;
  z-index: -1;
  position: fixed;
  top: 60px;
  display: none;
}

.header .fixd_header_sp .nav ul li:first-of-type {
  border-top: 1px solid #bc1b21;
}

.header .fixd_header_sp .nav ul li a {
  display: block;
  padding: 20px;
  border-bottom: 1px solid #bc1b21;
  position: relative;
  padding-left: 40px;
}

.header .fixd_header_sp .nav ul li a .icon {
  display: inline-block;
  width: 18px;
  height: 12px;
}

.header .fixd_header_sp .nav ul li a .text {
  height: 16px;
  display: inline-block;
}

.main_copy_sp02 {
  display: block;
  width: 90%;
  margin: 0 auto;
  padding: 50px 0;
  max-width: 500px;
}

/* ==================================
 ごあいさつ
================================== */
.area_gree {
  position: relative;
}

@media (min-width: 768px) {
  .area_gree {
    background: url(../img/gree_bg.svg) top center no-repeat;
    background-size: 1390px auto;
  }
}

@media (max-width: 767px) {
  .area_gree {
    background: url(../img/gree_bg_sp.svg) top center no-repeat;
    background-size: 375px auto;
  }
}

.area_gree .area_gree_inner {
  max-width: 1210px;
  margin: 0 auto;
  padding: 0 10px;
  position: relative;
}

.area_gree .area_gree_inner .sec_title {
  width: 172px;
  margin: 0 auto;
  padding-top: 150px;
}

@media (max-width: 767px) {
  .area_gree .area_gree_inner .sec_title {
    width: 91px;
    padding-top: 40px;
  }
}

.area_gree .area_gree_inner .sec_title img {
  width: 100%;
}

.area_gree .area_gree_inner .text {
  text-align: center;
  line-height: 2.33em;
  margin-top: 80px;
  letter-spacing: 0.07em;
}

@media (max-width: 767px) {
  .area_gree .area_gree_inner .text {
    margin-top: 40px;
    font-size: 12px;
    line-height: 1.91em;
  }
}

.area_gree .area_gree_inner .ceo_name {
  display: block;
  width: 240px;
  margin: 0 auto;
  margin-top: 50px;
}

@media (min-width: 768px) {
  .area_gree .area_gree_inner .ceo_name {
    padding-bottom: 160px;
  }
}

@media (max-width: 767px) {
  .area_gree .area_gree_inner .ceo_name {
    margin-top: 40px;
    width: 171px;
  }
}

@media (min-width: 768px) {
  .area_gree .area_gree_inner .ceo_pic {
    max-width: 400px;
    width: 30%;
    position: absolute;
    right: 0;
    bottom: 0;
  }
}

@media (max-width: 767px) {
  .area_gree .area_gree_inner .ceo_pic {
    display: block;
    width: 57%;
    margin: 0 auto;
    margin-top: 30px;
    max-width: 290px;
  }
}

/* ==================================
 従業員一同ごあいさつ
================================== */
.area_gree_staff {
  background: url(../img/gree_staff_bg.svg) left top repeat;
  background-size: 5px 5px;
  margin-bottom: 75px;
}

@media (max-width: 767px) {
  .area_gree_staff {
    margin-bottom: 50px;
  }
}

.area_gree_staff .sec_title {
  width: 383px;
  margin: 0 auto;
  padding-top: 150px;
}

@media (max-width: 767px) {
  .area_gree_staff .sec_title {
    width: 191px;
    padding-top: 95px;
  }
}

.area_gree_staff .sec_title img {
  width: 100%;
}

.area_gree_staff .text {
  line-height: 2.33em;
  text-align: center;
  margin-top: 80px;
  letter-spacing: 0.07em;
}

@media (max-width: 767px) {
  .area_gree_staff .text {
    font-size: 12px;
    margin-top: 50px;
    line-height: 1.91em;
    padding: 0 10px;
  }
}

.area_gree_staff .staff_all {
  width: 100%;
  display: block;
  margin: 0 auto;
  margin-top: 20px;
  max-width: 1390px;
}

/* ==================================
 春日井燃料の歴史
================================== */
.area_history {
  padding-top: 75px;
  margin-bottom: 75px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .area_history {
    max-width: 540px;
    margin: 0 auto;
    padding-top: 50px;
    margin-bottom: 75px;
  }
}

.area_history .sec_title {
  width: 330px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .area_history .sec_title {
    width: 158px;
  }
}

.area_history .sec_title img {
  width: 100%;
}

.area_history .his_wrap {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  margin-top: 150px;
  width: calc(100% - 40px);
  /*真ん中のグレーのライン*/
  /*歴史リスト*/
}

@media (max-width: 767px) {
  .area_history .his_wrap {
    margin-top: 50px;
  }
}

.area_history .his_wrap .line_center {
  position: absolute;
  left: 0;
  right: 0;
  top: 22px;
  margin: auto;
  width: 2px;
  background-color: #c5c5c5;
  height: calc(100% - 22px);
}

@media (max-width: 767px) {
  .area_history .his_wrap .line_center {
    right: auto;
    left: calc(2.5% + 1px);
  }
}

.area_history .his_wrap .his_list {
  width: 50%;
  /*赤とドットのライン*/
  /*年号、テキスト*/
  /*写真*/
  /*リストの左側*/
  /*リストの右側*/
}

@media (max-width: 767px) {
  .area_history .his_wrap .his_list {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

@media (max-width: 767px) {
  .area_history .his_wrap .his_list {
    padding-bottom: 50px;
  }
  .area_history .his_wrap .his_list li {
    margin-top: 50px;
  }
}

.area_history .his_wrap .his_list .line {
  position: relative;
  margin-top: 10px;
  /*赤丸*/
}

.area_history .his_wrap .his_list .line .line_solid {
  display: block;
  width: 80%;
  background-color: #bc1b21;
  height: 1px;
}

@media (max-width: 767px) {
  .area_history .his_wrap .his_list .line .line_solid {
    float: right;
    width: 85%;
  }
}

.area_history .his_wrap .his_list .line .line_dot {
  display: block;
  width: 20%;
  background: url(../img/his_line_dot.svg) top left repeat;
  background-size: 2px 1px;
  height: 1px;
}

@media (max-width: 767px) {
  .area_history .his_wrap .his_list .line .line_dot {
    float: right;
    width: 15%;
  }
}

.area_history .his_wrap .his_list .line .point {
  position: absolute;
  width: 6%;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
}

.area_history .his_wrap .his_list .year,
.area_history .his_wrap .his_list .text {
  margin-left: 20px;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: calc(80% + 20px);
}

@media (max-width: 767px) {
  .area_history .his_wrap .his_list .year,
  .area_history .his_wrap .his_list .text {
    margin-left: calc(15% + 20px);
  }
}

.area_history .his_wrap .his_list .text {
  margin-top: 30px;
}

.area_history .his_wrap .his_list .pic {
  width: 67%;
  margin-left: 20px;
  margin-top: 10px;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (max-width: 767px) {
  .area_history .his_wrap .his_list .pic {
    margin-left: calc(15% + 20px);
  }
}

.area_history .his_wrap .his_list.his_list_l {
  float: left;
}

.area_history .his_wrap .his_list.his_list_l .line_solid,
.area_history .his_wrap .his_list.his_list_l .line_dot {
  float: left;
}

.area_history .his_wrap .his_list.his_list_l .point {
  right: -3%;
}

.area_history .his_wrap .his_list.his_list_r {
  float: right;
}

.area_history .his_wrap .his_list.his_list_r .line_solid,
.area_history .his_wrap .his_list.his_list_r .line_dot {
  float: right;
}

.area_history .his_wrap .his_list.his_list_r .point {
  left: -3%;
}

.area_history .his_wrap .his_list.his_list_r .year,
.area_history .his_wrap .his_list.his_list_r .text,
.area_history .his_wrap .his_list.his_list_r .pic {
  margin-left: calc(20% + 20px);
}

@media (min-width: 768px) {
  .area_history .s22,
  .area_history .s30,
  .area_history .s36,
  .area_history .s41,
  .area_history .s43,
  .area_history .s46,
  .area_history .s56,
  .area_history .s58,
  .area_history .s59,
  .area_history .h01,
  .area_history .h03,
  .area_history .h09,
  .area_history .h11,
  .area_history .h19,
  .area_history .h20,
  .area_history .h27 {
    margin-top: 10%;
  }
  .area_history .s62 {
    margin-top: 13%;
  }
  .area_history .s53 {
    margin-top: 19%;
  }
  .area_history .s09,
  .area_history .h08 {
    margin-top: 14%;
  }
  .area_history .h25 {
    margin-top: 20%;
  }
  .area_history .h17 {
    margin-top: 22%;
  }
  .area_history .h02 {
    margin-top: 24%;
  }
  .area_history .h21 {
    margin-top: 27%;
  }
  .area_history .h28 {
    margin-top: 10%;
    padding-bottom: 14%;
  }
  .area_history .s34,
  .area_history .s48 {
    margin-top: 33%;
  }
}

.area_history .his_now {
  background-color: #bc1b21;
  border-radius: 5px;
  width: 300px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .area_history .his_now {
    width: calc(100% - 40px);
  }
}

.area_history .his_now img {
  width: 226px;
  display: block;
  margin: 0 auto;
  padding: 20px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (max-width: 767px) {
  .area_history .his_now img {
    width: 55%;
    padding: 15px 0;
  }
}

.area_history .pics {
  margin-top: 150px;
  overflow: hidden;
}

.area_history .pics img {
  display: block;
  float: left;
  width: 32.83%;
}

.area_history .pics img:nth-of-type(n + 2) {
  margin-left: 0.75%;
}

.area_history .pics_sp {
  margin-top: 100px;
}

.area_history .pics_sp img {
  width: 100%;
  display: block;
  margin-top: 3px;
}

/* ==================================
 60周年ロゴマーク
================================== */
.area_logo {
  padding-top: 75px;
  margin-bottom: 75px;
}

.area_logo .sec_title {
  width: 320px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .area_logo .sec_title {
    width: 161px;
  }
}

.area_logo .logo_wrap {
  max-width: 1040px;
  width: 100%;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
  margin-top: 100px;
}

@media (min-width: 768px) {
  .area_logo .logo_wrap {
    display: table;
    width: 100%;
    table-layout: fixed;
  }
}

@media (max-width: 767px) {
  .area_logo .logo_wrap {
    margin-top: 50px;
  }
}

.area_logo .logo_wrap .logo_60th {
  height: auto;
  display: block;
}

@media (max-width: 1020px) {
  .area_logo .logo_wrap .logo_60th {
    text-align: center;
  }
}

@media (min-width: 768px) {
  .area_logo .logo_wrap .logo_60th {
    display: table-cell;
    vertical-align: middle;
    width: 45.5%;
  }
}

.area_logo .logo_wrap .logo_60th img {
  max-width: 286px;
  width: 70%;
}

@media (max-width: 767px) {
  .area_logo .logo_wrap .logo_60th img {
    width: 160px;
  }
}

.area_logo .logo_wrap .text {
  line-height: 2.33em;
  text-align: justify;
  letter-spacing: 0.07em;
}

@media (max-width: 979px) {
  .area_logo .logo_wrap .text {
    margin-top: 50px;
  }
}

@media (min-width: 768px) {
  .area_logo .logo_wrap .text {
    width: 54.5%;
    display: table-cell;
  }
}

@media (max-width: 767px) {
  .area_logo .logo_wrap .text {
    max-width: 500px;
    margin: 0 auto;
    margin-top: 50px;
    font-size: 12px;
    line-height: 1.91em;
  }
}

/* ==================================
 事業紹介
================================== */
.area_business {
  padding-top: 75px;
  margin-bottom: 100px;
}

@media (max-width: 767px) {
  .area_business {
    margin-bottom: 75px;
  }
}

.area_business .sec_title {
  width: 160px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .area_business .sec_title {
    width: 77px;
  }
}

.area_business .copy {
  background-color: #e58000;
  padding: 20px 0;
  margin-top: 80px;
}

@media (max-width: 767px) {
  .area_business .copy {
    margin-top: 50px;
  }
}

.area_business .copy img {
  display: block;
  max-width: 650px;
  margin: 0 auto;
  width: 90%;
}

.area_business .busi_list {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.area_business .busi_list > li {
  margin-top: 100px;
  position: relative;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", 'メイリオ' , Meiryo , Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

@media (max-width: 767px) {
  .area_business .busi_list > li {
    margin-top: 50px;
  }
}

.area_business .busi_list > li ol {
  margin-top: 30px;
}

@media (max-width: 767px) {
  .area_business .busi_list > li ol {
    margin-top: 40px;
  }
}

.area_business .busi_list > li ol > li {
  padding-left: 23px;
  text-indent: -23px;
  line-height: 2.33em;
}

@media (max-width: 767px) {
  .area_business .busi_list > li ol > li {
    margin: 2.5px 0;
    line-height: 1.91em;
  }
}

.area_business .busi_list > li ol > li .num {
  display: inline-block;
  background-color: #7ea838;
  border-radius: 50%;
  color: #fff;
  width: 15px;
  height: 15px;
  text-align: right;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-right: 8px;
  padding-right: 4px;
  font-size: 12px;
  line-height: 15px;
}

@media (min-width: 768px) {
  .area_business .busi_list > li .item_l {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

@media (min-width: 768px) and (min-width: 768px) {
  .area_business .busi_list > li .item_l {
    float: left;
  }
}

@media (min-width: 768px) {
  .area_business .busi_list > li .item_r {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

@media (min-width: 768px) and (min-width: 768px) {
  .area_business .busi_list > li .item_r {
    float: right;
  }
}

@media (min-width: 768px) {
  .area_business .busi_list > li .item_text {
    top: 50%;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
    position: absolute;
  }
  .area_business .busi_list > li .item_text img {
    width: 100%;
  }
  .area_business .busi_list > li .item_illust .illust {
    display: block;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .area_business .busi_list > li .item_text {
    font-size: 12px;
  }
  .area_business .busi_list > li .item_text img {
    width: 100%;
    min-width: 280px;
    max-width: 440px;
  }
  .area_business .busi_list > li .item_illust {
    max-width: 400px;
    margin: 0 auto;
    margin-top: 35px;
  }
  .area_business .busi_list > li .item_illust .illust {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .area_business .busi_list > li.carlife {
    border-bottom: 1px solid #d86b0f;
  }
  .area_business .busi_list > li.carlife .item_l {
    width: 47%;
  }
  .area_business .busi_list > li.carlife .item_r {
    width: 49%;
  }
  .area_business .busi_list > li.carlife .illust {
    margin-bottom: -1%;
  }
}

.area_business .busi_list > li.carlife .num {
  background-color: #d86b0f;
}

@media (min-width: 768px) {
  .area_business .busi_list > li.homelife {
    border-bottom: 1px solid #7ea838;
  }
  .area_business .busi_list > li.homelife .item_l {
    width: 42%;
  }
  .area_business .busi_list > li.homelife .item_r {
    width: 53%;
    right: 0;
  }
  .area_business .busi_list > li.homelife .illust {
    margin-bottom: -8%;
  }
}

@media (max-width: 767px) {
  .area_business .busi_list > li.homelife {
    margin-top: 120px;
  }
}

@media (min-width: 768px) {
  .area_business .busi_list > li.betterlife {
    border-bottom: 1px solid #95232d;
  }
  .area_business .busi_list > li.betterlife .item_l {
    width: 47.5%;
  }
  .area_business .busi_list > li.betterlife .item_r {
    width: 43.5%;
  }
}

@media (max-width: 767px) {
  .area_business .busi_list > li.betterlife {
    margin-top: 100px;
  }
}

@media (min-width: 768px) {
  .area_business .busi_list > li.newenergy {
    border-bottom: 1px solid #ee9b22;
  }
  .area_business .busi_list > li.newenergy .item_l {
    width: 44%;
  }
  .area_business .busi_list > li.newenergy .item_r {
    width: 46%;
    right: 0;
  }
}

@media (max-width: 767px) {
  .area_business .busi_list > li.newenergy {
    margin-top: 80px;
  }
}

.area_business .copy02 {
  width: 100%;
  margin: 0 auto;
  display: block;
  margin-top: 200px;
}

@media (max-width: 767px) {
  .area_business .copy02 {
    margin-top: 100px;
  }
}

.area_business .all_illust {
  width: 100%;
  max-width: 1390px;
  margin: 0 auto;
  display: block;
  margin-top: 15px;
}

/* ==================================
 スタッフメッセージ
================================== */
.area_msg {
  padding-top: 100px;
}

@media (max-width: 767px) {
  .area_msg {
    padding-top: 75px;
  }
}

.area_msg .sec_title {
  width: 176px;
  margin: 0 auto;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .area_msg .sec_title {
    width: 85px;
    margin-bottom: 50px;
  }
}

.area_msg .copy {
  width: 100%;
}

.area_msg .staff_list {
  background-color: #fce4d6;
  overflow: hidden;
  padding-top: 20%;
  margin-top: -10%;
  padding-bottom: 65px;
}

@media (max-width: 767px) {
  .area_msg .staff_list {
    padding-bottom: 30px;
  }
}

.area_msg .staff_list .list_wrap {
  background-color: #fce4d6;
  position: relative;
}

.area_msg .staff_list ul {
  max-width: 1020px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  height: 225px;
  padding: 0 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #fce4d6;
}

@media (max-width: 767px) {
  .area_msg .staff_list ul {
    width: calc(100% - 100px);
    height: 0;
    padding-top: 230px;
    max-width: 400px;
  }
}

@media (max-width: 500px) {
  .area_msg .staff_list ul {
    padding-top: 40%;
  }
}

@media (max-width: 400px) {
  .area_msg .staff_list ul {
    padding-top: 32%;
  }
}

.area_msg .staff_list ul li {
  position: absolute;
  left: 0;
  bottom: -60px;
  cursor: pointer;
  -webkit-transition: -webkit-transform .2s;
  transition: -webkit-transform .2s;
  transition: transform .2s;
  transition: transform .2s, -webkit-transform .2s;
}

@media (min-width: 768px) {
  .area_msg .staff_list ul li:hover {
    -webkit-transform: translateY(-18px);
            transform: translateY(-18px);
  }
}

@media (max-width: 767px) {
  .area_msg .staff_list ul li {
    bottom: -50px;
  }
}

.area_msg .staff_list ul li img {
  width: 100%;
}

.area_msg .staff_list .line {
  width: 100%;
  clear: left;
  height: 60px;
  background-color: #fce4d6;
  position: relative;
}

.area_msg .staff_list .line .dot {
  background: url(../img/his_line_dot.svg) left top repeat;
  background-size: 2px 1px;
  float: left;
  width: calc((100% - 1060px) / 2);
  height: 1px;
}

@media (max-width: 767px) {
  .area_msg .staff_list .line .dot {
    width: 46px;
  }
}

.area_msg .staff_list .line .solid {
  background-color: #bc1b21;
  float: left;
  height: 1px;
  max-width: 1060px;
  width: 100%;
}

@media (max-width: 767px) {
  .area_msg .staff_list .line .solid {
    width: calc(100% - 46px);
  }
}

.area_msg .staff_list .line .space {
  float: left;
  width: calc((100% - 1060px) / 2);
  height: 1px;
}

@media (max-width: 767px) {
  .area_msg .staff_list .line .space {
    width: 0;
  }
}

@media (min-width: 768px) {
  .area_msg .staff_list .staff_01 {
    width: 23%;
    left: -2%;
  }
  .area_msg .staff_list .staff_02 {
    width: 21%;
    left: 22%;
  }
  .area_msg .staff_list .staff_03 {
    width: 23%;
    left: 43%;
  }
  .area_msg .staff_list .staff_04 {
    width: 16%;
    left: 63%;
  }
  .area_msg .staff_list .staff_05 {
    width: 22%;
    left: 78%;
  }
  .area_msg .staff_list .staff_06 {
    width: 25%;
    left: -2%;
  }
  .area_msg .staff_list .staff_07 {
    width: 15%;
    left: 23%;
  }
  .area_msg .staff_list .staff_08 {
    width: 19.5%;
    left: 38%;
  }
  .area_msg .staff_list .staff_09 {
    width: 22%;
    left: 57%;
  }
  .area_msg .staff_list .staff_10 {
    width: 23%;
    left: 77%;
  }
  .area_msg .staff_list .staff_11 {
    width: 20%;
    left: 0%;
  }
  .area_msg .staff_list .staff_12 {
    width: 22.5%;
    left: 20%;
  }
  .area_msg .staff_list .staff_13 {
    width: 23%;
    left: 40%;
  }
  .area_msg .staff_list .staff_14 {
    width: 15%;
    left: 63%;
  }
  .area_msg .staff_list .staff_15 {
    width: 21.6%;
    left: 80%;
  }
  .area_msg .staff_list .staff_16 {
    width: 19%;
    left: 4%;
  }
  .area_msg .staff_list .staff_17 {
    width: 16.4%;
    left: 24%;
  }
  .area_msg .staff_list .staff_18 {
    width: 22.4%;
    left: 40%;
  }
  .area_msg .staff_list .staff_19 {
    width: 17.8%;
    left: 64%;
  }
  .area_msg .staff_list .staff_20 {
    width: 16.8%;
    left: 84%;
  }
  .area_msg .staff_list .staff_21 {
    width: 23%;
    left: 7%;
  }
  .area_msg .staff_list .staff_22 {
    width: 17%;
    left: 32%;
  }
  .area_msg .staff_list .staff_23 {
    width: 21.8%;
    left: 54%;
  }
  .area_msg .staff_list .staff_24 {
    width: 23.5%;
    left: 77%;
  }
}

@media (max-width: 767px) {
  .area_msg .staff_list .staff_01 {
    width: 55%;
    left: -2%;
  }
  .area_msg .staff_list .staff_02 {
    width: 50%;
    left: 55%;
  }
  .area_msg .staff_list .staff_03 {
    width: 60%;
    left: 0%;
  }
  .area_msg .staff_list .staff_04 {
    width: 44%;
    left: 55%;
  }
  .area_msg .staff_list .staff_05 {
    width: 54%;
    left: -5%;
  }
  .area_msg .staff_list .staff_06 {
    width: 63%;
    left: 47%;
  }
  .area_msg .staff_list .staff_07 {
    width: 43%;
    left: 0%;
  }
  .area_msg .staff_list .staff_08 {
    width: 56%;
    left: 48%;
  }
  .area_msg .staff_list .staff_09 {
    width: 55%;
    left: 0%;
  }
  .area_msg .staff_list .staff_10 {
    width: 55%;
    left: 50%;
  }
  .area_msg .staff_list .staff_11 {
    width: 53%;
    left: -6%;
  }
  .area_msg .staff_list .staff_12 {
    width: 59%;
    left: 50%;
  }
  .area_msg .staff_list .staff_13 {
    width: 57%;
    left: -9%;
  }
  .area_msg .staff_list .staff_14 {
    width: 38%;
    left: 56%;
  }
  .area_msg .staff_list .staff_15 {
    width: 54%;
    left: -6%;
  }
  .area_msg .staff_list .staff_16 {
    width: 49%;
    left: 50%;
  }
  .area_msg .staff_list .staff_17 {
    width: 42%;
    left: 2%;
  }
  .area_msg .staff_list .staff_18 {
    width: 56%;
    left: 46%;
  }
  .area_msg .staff_list .staff_19 {
    width: 46%;
    left: 0%;
  }
  .area_msg .staff_list .staff_20 {
    width: 46%;
    left: 53%;
  }
  .area_msg .staff_list .staff_21 {
    width: 62%;
    left: 0%;
  }
  .area_msg .staff_list .staff_22 {
    width: 43%;
    left: 61%;
  }
  .area_msg .staff_list .staff_23 {
    width: 56%;
    left: -6%;
  }
  .area_msg .staff_list .staff_24 {
    width: 61%;
    left: 50%;
  }
}

/* ==================================
 フッター
================================== */
.footer {
  background-color: #f1f1f0;
}

.footer .logo {
  display: block;
  width: 157px;
  margin: 0 auto;
  padding-top: 25px;
}

@media (max-width: 767px) {
  .footer .logo {
    width: 114px;
  }
}

.footer .nav_wrap {
  overflow: hidden;
  font-size: 13px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  line-height: 1em;
  max-width: 1335px;
  width: 100%;
  padding: 0 10px;
  margin: 0 auto;
  margin-top: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  letter-spacing: 0.05em;
}

.footer .nav_wrap .address {
  margin-bottom: 10px;
}

.footer .nav_wrap .address .space {
  width: 10px;
  display: inline-block;
}

@media (max-width: 767px) {
  .footer .nav_wrap .address {
    line-height: 2em;
    text-align: center;
  }
}

.footer .nav_wrap .nav {
  margin-bottom: 10px;
  margin-left: 10px;
}

@media (max-width: 767px) {
  .footer .nav_wrap .nav {
    width: 100%;
    margin-bottom: 45px;
    margin-left: 0;
    margin-top: 45px;
  }
}

.footer .nav_wrap .nav li {
  padding: 0 17px;
}

@media (min-width: 768px) {
  .footer .nav_wrap .nav li {
    float: left;
    border-left: 1px solid #333;
  }
  .footer .nav_wrap .nav li:last-of-type {
    border-right: 1px solid #333;
  }
}

@media (max-width: 767px) {
  .footer .nav_wrap .nav li {
    border-top: 1px solid #333;
  }
  .footer .nav_wrap .nav li:last-of-type {
    border-bottom: 1px solid #333;
  }
}

.footer .nav_wrap .nav li a {
  position: relative;
  overflow: hidden;
  display: block;
}

@media (min-width: 768px) {
  .footer .nav_wrap .nav li a {
    padding-bottom: 3px;
  }
  .footer .nav_wrap .nav li a:before {
    content: '';
    position: absolute;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background-color: #335210;
    -webkit-transform: translateX(-101%);
            transform: translateX(-101%);
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .footer .nav_wrap .nav li a:hover:before {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@media (max-width: 767px) {
  .footer .nav_wrap .nav li a {
    display: block;
    padding: 15px;
    text-align: center;
  }
}

.footer .copyright {
  font-size: 10px;
  text-align: center;
  padding-bottom: 20px;
  widows: 100%;
  display: block;
}

.footer .totop {
  width: 40px;
  height: auto;
  position: fixed;
  bottom: -200px;
  right: 15px;
  z-index: 100;
}

@media (min-width: 768px) {
  .footer .totop {
    width: 50px;
    right: 30px;
  }
}

.footer .totop img {
  width: 100%;
}

/* ==================================
 春日井燃料の歴史ーフェードプラグイン用
================================== */
.invisible {
  -webkit-transition: opacity 0.8s;
  transition: opacity 0.8s;
  opacity: 0.0;
}

.visible {
  -webkit-transition: opacity 0.8s;
  transition: opacity 0.8s;
  opacity: 1.0;
}
