@charset "UTF-8";
/*標準ボタン
---------------------------------------------------------------*/
/*鍵フックボタン
---------------------------------------------------------------*/
/*カーテンボタン
---------------------------------------------------------------*/
/*ラインダッシュボタン
---------------------------------------------------------------*/
/*IE対応のグラデーション
========================================================================*/
/* ブラウザのスクロールバーを常に表示させることでカクカクッとなるのを防ぐ */
@import url("https://fonts.googleapis.com/css?family=Noto+Serif+JP:400,600");
/*変数指定
=======================================================*/
/*メインカラー
--------------------------------------------*/
/*ローディング
=======================================================*/
/* ローディングの背景部分のCSS */
.loader {
  background: #1e1d1d;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100000;
}

/* ローディングのアニメーション部分のCSS (https://projects.lukehaas.me/css-loaders/) */
.loader-animation,
.loader-animation:before,
.loader-animation:after {
  background: #e9913b;
  animation: load1 1s infinite ease-in-out;
  width: 1em;
  height: 4em;
}

.loader-animation {
  height: 10px;
  left: 50%;
  margin: -5px 0 0 -5px;
  position: absolute;
  top: 50%;
  width: 10px;
  color: #e9913b;
  text-indent: -9999em;
  font-size: 10px;
  transform: translateZ(0);
  animation-delay: -0.16s;
}

.loader-animation:before, .loader-animation:after {
  position: absolute;
  top: 0;
  content: '';
}

.loader-animation:before {
  left: -1.5em;
  animation-delay: -0.32s;
}

.loader-animation:after {
  left: 1.5em;
}

@keyframes load1 {
  0%,
  80%,
  100% {
    box-shadow: 0 0;
    height: 4em;
  }
  40% {
    box-shadow: 0 -2em;
    height: 5em;
  }
}

/*フォント
--------------------------------------------*/
/*body以下
=======================================================*/
body {
  margin: auto;
  padding: 0;
  width: 100%;
  font-family: "Noto Serif JP", serif, "Noto Sans JP", sans-serif, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  font-size: 15px;
  color: #1e1d1d;
}

.left {
  float: left;
}

.right {
  float: right;
}

.text-c {
  text-align: center;
}

img {
  max-width: 100%;
  vertical-align: moddle;
}

/*更新画像
=================================================*/
/*更新イメージの調整
----------------------------------------------- */
.com-img {
  display: block;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.com-img img {
  position: absolute;
  top: 50% !important;
  left: 50% !important;
  width: 100%;
  object-fit: cover;
  font-family: "object-fit: cover; object-position: bottom";
  object-position: center;
  min-height: 100%;
  min-width: 100%;
  transform: translateX(-50%) translateY(-50%);
}

/*共通テキスト
----------------------------------------------- */
.common-txt p {
  margin-bottom: 25px;
}

.common-txt p:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .common-txt p br {
    display: none;
  }
}

/*display flexキッド 
=================================================*/
.flex {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  -js-display: flex;
  display: flex;
  width: 100%;
}

/*折り返し
-----------------------*/
.flx-wrp {
  flex-wrap: wrap;
}

/*逆順
-----------------------*/
.flx-rr {
  flex-direction: row-reverse;
}

/*水平方向の揃え
=================================================*/
/*並列で均等配置（左右隙間なし=space-between）
-----------------------*/
.flx-btw {
  justify-content: space-between;
}

/*並列で均等配置（左右隙間あり=space-around）
-----------------------*/
.flx-ard {
  justify-content: space-around;
}

/*水平揃え　末揃え
-----------------------*/
.flx-end {
  justify-content: flex-end;
}

/*水平揃え　中央揃え
-----------------------*/
.flx-center {
  justify-content: center;
}

/*垂直方向の揃え
=================================================*/
/*水平揃え　高さ揃え
-----------------------*/
.flx-alitem-strt {
  align-items: stretch;
}

/*水平揃え　縦・横の中央揃え
-----------------------*/
.flx-alitem-c {
  align-items: center;
}

/*水平揃え　上揃え
-----------------------*/
.flx-alitem-strt {
  align-items: flex-start;
}

/*水平揃え　下揃え
-----------------------*/
.flx-alitem-end {
  align-items: flex-end;
}

/*水平揃え　ベースライン揃え
-----------------------*/
.flx-alitem-base {
  align-items: baseline;
}

/*複数行にした揃え方
=================================================*/
/*初期値
-----------------------*/
.flx-alcont-strt {
  align-content: stretch;
}

/*親要素の開始位置から配置。上揃え
-----------------------*/
.flx-alcont-start {
  align-content: flex-start;
}

/*親要素の終点から配置。下揃え
-----------------------*/
.flx-alcont-end {
  align-content: flex-end;
}

/*中央揃え
-----------------------*/
.flx-alcont-c {
  align-content: center;
}

/*最初と最後の子要素を上下の端に配置し、残りの要素は均等に間隔をあけて配置
-----------------------*/
.flx-alcont-s-btw {
  align-content: space-between;
}

/*上下端にある子要素も含め、均等に間隔をあけて配置
-----------------------*/
.flx-alcont-s-ard {
  align-content: space-around;
}

/*=========================================================
	header
=========================================================*/
#header {
  padding-top: 20px;
}

#header h1 span {
  display: block;
}

#header .hd-l {
  width: 335px;
}

#header .hd-r {
  width: 700px;
}

#header .hd-r .hd-r-box {
  width: 440px;
}

#header .hd-r .hd-sns-list {
  width: 43px;
}

#header .hd-r .hd-contact {
  padding: 5px 0;
  line-height: 1;
  background: #e7e7e7;
  text-align: center;
  margin-bottom: 10px;
}

#header .hd-r .hd-worksday {
  text-align: center;
  line-height: 1;
  margin-bottom: 10px;
}

#header .hd-r .hd-tel-list {
  line-height: 1;
  font-size: 26px;
}

#header .hd-r .hd-tel-list li {
  margin-right: 10px;
}

#header .hd-r .hd-tel-list li:last-child {
  margin-right: 0;
}

#header .hd-r .hd-tel-list small {
  font-size: 16px;
}

#header .link {
  position: relative;
}

#header .link img {
  cursor: pointer;
}

#header .link .hd-sns-list {
  width: 160px;
  position: absolute;
  display: none;
  left: 50%;
  z-index: 1000;
  margin-left: -80px;
  padding: 15px 0;
  background: rgba(62, 62, 62, 0.9);
}

#header .link .hd-sns-list li {
  margin-right: 20px;
}

#header .link .hd-sns-list li:last-child {
  margin-right: 0;
}

#header .link:hover .hd-sns-list {
  display: block;
}

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

#nav {
  margin-top: 20px;
  background: #434343;
}

#nav > .inbox > ul {
  display: table;
  padding-left: 50px;
}

#nav > .inbox > ul > li {
  text-align: center;
  display: table-cell;
  margin-right: 2em;
  position: relative;
}

#nav > .inbox > ul > li:before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 0;
  width: 0;
  height: 60px;
  margin-top: -30px;
  border-left: dotted 1px #fff;
}

#nav > .inbox > ul > li:last-child:after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: 0;
  bottom: auto;
  left: auto;
  width: 0;
  height: 60px;
  margin-top: -30px;
  border-left: dotted 1px #fff;
}

#nav > .inbox > ul > li:hover {
  color: #fff;
  background-color: #19192b;
}

#nav > .inbox > ul > li:hover > a {
  color: #fff;
}

#nav > .inbox > ul > li:hover .menu {
  transition: max-height 1s ease-in;
  max-height: 9999px;
}

#nav > .inbox > ul > li > a {
  color: #fff;
  display: block;
  padding: 20px 1em;
  transition: all 0.2s ease-in;
}

#nav > .inbox > ul > li > a span {
  display: block;
}

#nav > .inbox > ul .menu {
  transition: max-height 0.5s ease-out;
  max-height: 0;
  overflow: hidden;
  left: 0;
  text-align: center;
  position: absolute;
  background-color: #19192b;
  z-index: 100000;
}

#nav > .inbox > ul .menu .menu_inner {
  position: relative;
  z-index: 10000;
  padding: 1em 0;
}

#nav > .inbox > ul .menu .menu_inner li {
  width: 200px;
  display: inline-block;
  margin-bottom: 10px;
}

#nav > .inbox > ul .menu .menu_inner li a {
  padding-bottom: 10px;
  display: block;
}

#nav > .inbox > ul .menu .menu_inner li:last-child {
  margin-bottom: 0;
}

#nav > .inbox > ul .menu .menu_inner li:hover span {
  padding-bottom: 3px;
  border-bottom: 1px solid #fff;
}

#nav > .inbox > ul .menu a {
  color: #fff;
}

/*Mainvisual
=========================================================*/
#slider {
  position: relative;
  background: #f0f0f0;
  padding: 30px 0;
}

#slider ul {
  margin-right: .5%;
}

#slider li {
  height: 680px;
  margin-right: .5%;
}

#slider li:last-child {
  margin-right: 0;
}

#slider li img {
  width: 100%;
}

#main-visual {
  position: relative;
}

#main-visual .catch {
  width: 90%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  z-index: 10000;
}

/*=========================================================
	トップページ
=========================================================*/
/*共通タイトル
=========================================================*/
/*共通ボタン
=========================================================*/
.more-btn01 {
  position: relative;
  text-align: center;
  display: block;
  letter-spacing: 1.2px;
  transition: all 0.3s;
  margin: 0 auto;
  font-size: 14px;
  border: solid #e9913b 1px;
  background: #e9913b;
  color: #fff;
  font-weight: bold;
  padding: 10px 0;
  overflow: hidden;
}

.more-btn01:before, .more-btn01:after {
  content: "";
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  box-sizing: border-box;
}

.more-btn01 span {
  position: relative;
  transition: all 0.3s;
  transform: scale(1, 1);
  z-index: 10;
}

.more-btn01 span {
  color: #fff;
}

@media screen and (max-width: 768px) {
  .more-btn01 {
    font-size: 3.5vw;
  }
}

.more-btn01:hover {
  background: #fff;
  border: solid #e9913b 1px;
}

.more-btn01:hover span {
  color: #e9913b;
}

.more-btn02 {
  position: relative;
  text-align: center;
  display: block;
  letter-spacing: 1.2px;
  transition: all 0.3s;
  margin: 0 auto;
  font-size: 14px;
  border: solid #e9913b 1px;
  background: #e9913b;
  color: #fff;
  font-weight: bold;
  padding: 10px 0;
  overflow: hidden;
}

.more-btn02:before, .more-btn02:after {
  content: "";
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  box-sizing: border-box;
}

.more-btn02 span {
  position: relative;
  transition: all 0.3s;
  transform: scale(1, 1);
  z-index: 10;
}

.more-btn02 span {
  color: #fff;
}

@media screen and (max-width: 768px) {
  .more-btn02 {
    font-size: 3.5vw;
  }
}

.more-btn02:before {
  opacity: 0;
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1, 0.1);
}

.more-btn02:after {
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.more-btn02:hover:before {
  opacity: 1;
  transform: scale(1, 1);
}

.more-btn02:hover:after {
  opacity: 0;
  transform: scale(1, 0.1);
}

.more-btn03 {
  position: relative;
  text-align: center;
  display: block;
  letter-spacing: 1.2px;
  transition: all 0.3s;
  margin: 0 auto;
  font-size: 14px;
  border: solid #e9913b 1px;
  background: #e9913b;
  color: #fff;
  font-weight: bold;
  padding: 10px 0;
  overflow: hidden;
}

.more-btn03:before, .more-btn03:after {
  content: "";
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  box-sizing: border-box;
}

.more-btn03 span {
  position: relative;
  transition: all 0.3s;
  transform: scale(1, 1);
  z-index: 10;
}

.more-btn03 span {
  color: #fff;
}

@media screen and (max-width: 768px) {
  .more-btn03 {
    font-size: 3.5vw;
  }
}

.more-btn03:before {
  opacity: 0;
  background: rgba(255, 255, 255, 0.5);
  transform: scale(0.1, 0.1);
}

.more-btn03:hover:before {
  opacity: 1;
  transform: scale(1, 1);
}

.more-btn03:hover:after {
  transform: scale(0, 0);
  opacity: 0;
}

.more-btn04 {
  position: relative;
  text-align: center;
  display: block;
  letter-spacing: 1.2px;
  transition: all 0.3s;
  margin: 0 auto;
  font-size: 14px;
  border: solid #e9913b 1px;
  background: #e9913b;
  color: #fff;
  font-weight: bold;
  padding: 10px 0;
  overflow: hidden;
}

.more-btn04:before, .more-btn04:after {
  content: "";
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  box-sizing: border-box;
}

.more-btn04 span {
  position: relative;
  transition: all 0.3s;
  transform: scale(1, 1);
  z-index: 10;
}

.more-btn04 span {
  color: #fff;
}

@media screen and (max-width: 768px) {
  .more-btn04 {
    font-size: 3.5vw;
  }
}

.more-btn05 {
  position: relative;
  text-align: center;
  display: block;
  letter-spacing: 1.2px;
  transition: all 0.3s;
  margin: 0 auto;
  font-size: 14px;
  border: solid #e9913b 1px;
  background: #e9913b;
  color: #fff;
  font-weight: bold;
  padding: 10px 0;
  overflow: hidden;
}

.more-btn05:before, .more-btn05:after {
  content: "";
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  box-sizing: border-box;
}

.more-btn05 span {
  position: relative;
  transition: all 0.3s;
  transform: scale(1, 1);
  z-index: 10;
}

.more-btn05 span {
  color: #fff;
}

@media screen and (max-width: 768px) {
  .more-btn05 {
    font-size: 3.5vw;
  }
}

.more-btn02 {
  background: #e9913b;
  width: 230px;
}

.more-btn02 span {
  position: relative;
  padding-left: 15px;
}

.more-btn02 span:before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 0;
  width: 5px;
  height: 7px;
  background: url("../img/common/more-btn02-arrow.png") no-repeat center/contain;
  margin-top: -3.5px;
}

.mail-btn {
  display: block;
  background: #e9913b;
  text-align: center;
  width: 180px;
  padding: 10px 0;
  transition: 0.3s all ease;
}

.mail-btn span {
  position: relative;
  padding-left: 35px;
  color: #fff;
}

.mail-btn span:before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 0;
  width: 20px;
  height: 14px;
  background: url("../img/common/mail-icon.png") no-repeat center/contain;
  margin-top: -7px;
}

.mail-btn:hover {
  opacity: .8;
}

.mail-btn:hover span {
  color: #fff;
}

.more-btn-line-start {
  width: 100%;
  color: #11a983;
  background: transparent;
  border-width: 2px;
  border-style: solid;
  border-color: #11a983;
  position: relative;
  display: inline-block;
  padding: 0.5em 1em;
  transition: all 0.3s ease-in-out;
  text-align: center;
  font-family: comfortaa;
  font-weight: bold;
  box-sizing: border-box;
}

.more-btn-line-start:before, .more-btn-line-start:after {
  content: "";
  position: absolute;
  display: block;
  box-sizing: border-box;
  border-color: #11a983;
  border-style: solid;
  width: 1em;
  height: 1em;
  transition: all 0.3s ease-in-out;
}

.more-btn-line-start:before {
  top: -6px;
  left: -6px;
  border-width: 2px 0 0 2px;
  z-index: 5;
}

.more-btn-line-start:after {
  bottom: -6px;
  right: -6px;
  border-width: 0 2px 2px 0;
}

.more-btn-line-start:hover {
  color: #fff;
  background-color: #11a983;
  border-color: #11a983;
}

.more-btn-line-start:hover:before, .more-btn-line-start:hover:after {
  width: calc(100% + 12px);
  height: calc(100% + 12px);
  border-color: #11a983;
}

.more-btn-line-turn {
  width: 100%;
  color: #11a983;
  background: transparent;
  border-width: 2px;
  border-style: solid;
  border-color: #11a983;
  position: relative;
  display: inline-block;
  padding: 0.5em 1em;
  transition: all 0.3s ease-in-out;
  text-align: center;
  font-family: comfortaa;
  font-weight: bold;
  box-sizing: border-box;
}

.more-btn-line-turn:before, .more-btn-line-turn:after {
  content: "";
  position: absolute;
  display: block;
  box-sizing: border-box;
  border-color: #11a983;
  border-style: solid;
  width: 1em;
  height: 1em;
  transition: all 0.3s ease-in-out;
}

.more-btn-line-turn:before {
  top: -6px;
  left: -6px;
  border-width: 2px 0 0 2px;
  z-index: 5;
}

.more-btn-line-turn:after {
  bottom: -6px;
  right: -6px;
  border-width: 0 2px 2px 0;
}

.more-btn-line-turn:hover {
  color: #fff;
  background-color: #11a983;
  border-color: #11a983;
}

.more-btn-line-turn:hover:before, .more-btn-line-turn:hover:after {
  width: calc(100% + 12px);
  height: calc(100% + 12px);
  border-color: #11a983;
  transform: rotateY(180deg);
}

.more-btn-line-turn {
  width: 100%;
  color: #11a983;
  background: transparent;
  border-width: 2px;
  border-style: solid;
  border-color: #11a983;
  position: relative;
  display: inline-block;
  padding: 0.5em 1em;
  transition: all 0.3s ease-in-out;
  text-align: center;
  font-family: comfortaa;
  font-weight: bold;
  box-sizing: border-box;
}

.more-btn-line-turn:before, .more-btn-line-turn:after {
  content: "";
  position: absolute;
  display: block;
  box-sizing: border-box;
  border-color: #11a983;
  border-style: solid;
  width: 1em;
  height: 1em;
  transition: all 0.3s ease-in-out;
}

.more-btn-line-turn:before {
  top: -6px;
  left: -6px;
  border-width: 2px 0 0 2px;
  z-index: 5;
}

.more-btn-line-turn:after {
  bottom: -6px;
  right: -6px;
  border-width: 0 2px 2px 0;
}

.more-btn-line-turn:hover {
  color: #fff;
  background-color: #11a983;
  border-color: #11a983;
}

.more-btn-line-turn:hover:before, .more-btn-line-turn:hover:after {
  width: calc(100% + 12px);
  height: calc(100% + 12px);
  border-color: #11a983;
  transform: rotateY(180deg);
}

.curtn-btn-top {
  padding: 15px 0;
  font-weight: bold;
  display: block;
  position: relative;
  text-align: center;
  z-index: 10;
  background: #e9913b;
  overflow: hidden;
}

.curtn-btn-top:before {
  content: "";
  position: absolute;
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  background: #51370d;
  transition: all 0.3s ease-in-out;
}

.curtn-btn-top span {
  position: relative;
  z-index: 100;
}

.curtn-btn-top:before {
  left: 0;
  top: -100%;
}

.curtn-btn-top:hover:before {
  top: 0;
}

.curtn-btn-right {
  padding: 15px 0;
  font-weight: bold;
  display: block;
  position: relative;
  text-align: center;
  z-index: 10;
  background: #e9913b;
  overflow: hidden;
}

.curtn-btn-right:before {
  content: "";
  position: absolute;
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  background: #51370d;
  transition: all 0.3s ease-in-out;
}

.curtn-btn-right span {
  position: relative;
  z-index: 100;
}

.curtn-btn-right:before {
  right: -100%;
  top: 0;
}

.curtn-btn-right:hover:before {
  right: 0;
}

.curtn-btn-bottom {
  padding: 15px 0;
  font-weight: bold;
  display: block;
  position: relative;
  text-align: center;
  z-index: 10;
  background: #e9913b;
  overflow: hidden;
}

.curtn-btn-bottom:before {
  content: "";
  position: absolute;
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  background: #51370d;
  transition: all 0.3s ease-in-out;
}

.curtn-btn-bottom span {
  position: relative;
  z-index: 100;
}

.curtn-btn-bottom:before {
  left: 0;
  bottom: -100%;
}

.curtn-btn-bottom:hover:before {
  bottom: 0;
}

.curtn-btn-left {
  padding: 15px 0;
  font-weight: bold;
  display: block;
  position: relative;
  text-align: center;
  z-index: 10;
  background: #e9913b;
  overflow: hidden;
}

.curtn-btn-left:before {
  content: "";
  position: absolute;
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  background: #51370d;
  transition: all 0.3s ease-in-out;
}

.curtn-btn-left span {
  position: relative;
  z-index: 100;
}

.curtn-btn-left:before {
  left: -100%;
  top: 0;
}

.curtn-btn-left:hover:before {
  left: 0;
}

.line-dash-btn-01 {
  text-align: center;
  display: block;
  position: relative;
  background: none;
  border: none;
  color: #fff;
  font-weight: bold;
  font-size: 15px;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.9);
}

.line-dash-btn-01:before, .line-dash-btn-01:after {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  transition: all 0.2s linear;
  background: #e9913b;
}

.line-dash-btn-01:before {
  right: 0;
  top: 0;
}

.line-dash-btn-01:after {
  left: 0;
  bottom: 0;
}

.line-dash-btn-01 span {
  color: #fff;
  display: block;
  padding: 15px 0;
}

.line-dash-btn-01 span:before, .line-dash-btn-01 span:after {
  content: "";
  width: 2px;
  height: 0;
  position: absolute;
  transition: all 0.2s linear;
  background: #e9913b;
}

.line-dash-btn-01 span:before {
  right: 0;
  bottom: 0;
}

.line-dash-btn-01 span:after {
  left: 0;
  top: 0;
}

.line-dash-btn-01:hover:before, .line-dash-btn-01:hover:after {
  transition-delay: 0s;
  width: 100%;
}

.line-dash-btn-01:hover span:before, .line-dash-btn-01:hover span:after {
  transition-delay: 0.2s;
  height: 100%;
}

.line-dash-btn-02 {
  text-align: center;
  display: block;
  position: relative;
  background: none;
  border: none;
  color: #fff;
  font-weight: bold;
  font-size: 15px;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.9);
}

.line-dash-btn-02:before, .line-dash-btn-02:after {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  transition: all 0.2s linear;
  background: #e9913b;
}

.line-dash-btn-02:before {
  right: 0;
  top: 0;
}

.line-dash-btn-02:after {
  left: 0;
  bottom: 0;
}

.line-dash-btn-02 span {
  color: #fff;
  display: block;
  padding: 15px 0;
}

.line-dash-btn-02 span:before, .line-dash-btn-02 span:after {
  content: "";
  width: 2px;
  height: 0;
  position: absolute;
  transition: all 0.2s linear;
  background: #e9913b;
}

.line-dash-btn-02 span:before {
  right: 0;
  bottom: 0;
}

.line-dash-btn-02 span:after {
  left: 0;
  top: 0;
}

.line-dash-btn-02:hover:before, .line-dash-btn-02:hover:after {
  transition-delay: 0s;
  width: 100%;
}

.line-dash-btn-02:hover span:before, .line-dash-btn-02:hover span:after {
  transition-delay: 0s;
  height: 100%;
}

.line-dash-btn-03 {
  text-align: center;
  display: block;
  position: relative;
  background: none;
  border: none;
  color: #fff;
  font-weight: bold;
  font-size: 15px;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.9);
}

.line-dash-btn-03:before, .line-dash-btn-03:after {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  transition: all 0.2s linear;
  background: #e9913b;
}

.line-dash-btn-03:before {
  right: 0;
  top: 0;
}

.line-dash-btn-03:after {
  left: 0;
  bottom: 0;
}

.line-dash-btn-03 span {
  color: #fff;
  display: block;
  padding: 15px 0;
}

.line-dash-btn-03 span:before, .line-dash-btn-03 span:after {
  content: "";
  width: 2px;
  height: 0;
  position: absolute;
  transition: all 0.2s linear;
  background: #e9913b;
}

.line-dash-btn-03 span:before {
  right: 0;
  top: 0;
}

.line-dash-btn-03 span:after {
  left: 0;
  bottom: 0;
}

.line-dash-btn-03:hover:before, .line-dash-btn-03:hover:after {
  transition-delay: 0s;
  width: 100%;
}

.line-dash-btn-03:hover span:before, .line-dash-btn-03:hover span:after {
  transition-delay: 0s;
  height: 100%;
}

/*top-greeting
=========================================================*/
#top-greeting {
  padding: 100px 0;
  text-align: center;
  color: #fff;
  font-size: 16px;
  background: url(../img/top/top-greeting-bg.jpg) no-repeat center/cover;
}

#top-greeting p {
  line-height: 2.5;
}

/*top-car
=========================================================*/
#top-car {
  position: relative;
  padding: 110px 0 150px;
  background: url(../img/top/top-car-bg-l.png) no-repeat left top, #3c3c3c url(../img/top/top-car-bg-r.png) no-repeat right top;
  color: #fff;
}

#top-car .car-l {
  width: 550px;
}

#top-car .car-l .top-ttl {
  padding-bottom: 10px;
  margin-bottom: 30px;
  position: relative;
  letter-spacing: .2rem;
}

#top-car .car-l .top-ttl:before {
  content: "";
  position: absolute;
  display: block;
  top: auto;
  right: auto;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 1px;
  background: #fff;
}

#top-car .car-l .top-ttl .ja {
  font-size: 38px;
  margin-right: 10px;
}

#top-car .car-l .top-ttl .eng {
  font-size: 20px;
}

#top-car .car-r {
  width: 460px;
  position: relative;
}

#top-car .car-r:before {
  content: "";
  position: absolute;
  display: block;
  top: auto;
  right: -15px;
  bottom: -15px;
  left: auto;
  width: 100%;
  height: 100%;
  background: url("../img/top/car-box-bg.png") no-repeat center/contain;
}

#top-car .car-r ul li {
  position: relative;
  z-index: 10;
  border-right: #3b3b3a dashed 1px;
  border-bottom: #3b3b3a dashed 1px;
  box-sizing: border-box;
  text-align: center;
  width: 230px;
  height: 190px;
}

#top-car .car-r ul li:nth-child(2n) {
  border-right: none;
}

#top-car .car-r ul li:nth-child(3), #top-car .car-r ul li:nth-child(4) {
  border-bottom: none;
}

#top-car .car-r ul li a {
  background: #656565;
  height: 100%;
  color: #fff;
  font-size: 22px;
  transition: .3s all ease;
}

#top-car .car-r ul li a .car-list-txt {
  margin-bottom: 20px;
  position: relative;
  padding-left: 30px;
}

#top-car .car-r ul li a .car-list-txt:before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 0;
  width: 20px;
  height: 20px;
  background: url("../img/top/top-car-arrow.png") no-repeat center/contain;
  margin-top: -10px;
}

#top-car .car-r ul li a:hover {
  background: #333;
}

#top-car .top-car-link {
  position: absolute;
  text-align: right;
  width: 50%;
  box-sizing: border-box;
  left: 0;
  bottom: 100px;
  color: #fff;
}

#top-car .top-car-link a {
  background: url(../img/top/top-car-mre-btn-arrow.png) no-repeat right 20px bottom 10px, url(../img/top/top-car-more-btn.png) no-repeat right center/cover;
  height: 70px;
  padding-right: 65px;
  font-size: 18px;
  color: #fff;
}

#top-car .top-car-link:hover {
  opacity: .8;
}

/*top-shipping
=========================================================*/
#top-shipping,
#top-baseball {
  position: relative;
  height: 560px;
}

#top-shipping .inbox,
#top-shipping .top-shipping-baseball-box,
#top-baseball .inbox,
#top-baseball .top-shipping-baseball-box {
  height: 100%;
  text-align: center;
  color: #fff;
}

#top-shipping .top-shippingbaseball-ttl,
#top-baseball .top-shippingbaseball-ttl {
  margin-bottom: 40px;
}

#top-shipping .top-shippingbaseball-ttl .eng,
#top-baseball .top-shippingbaseball-ttl .eng {
  position: relative;
}

#top-shipping .top-shippingbaseball-ttl .eng:before,
#top-baseball .top-shippingbaseball-ttl .eng:before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: auto;
  bottom: auto;
  left: -30px;
  width: 20px;
  height: 1px;
  background: #fff;
}

#top-shipping .top-shippingbaseball-ttl .eng:after,
#top-baseball .top-shippingbaseball-ttl .eng:after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: -30px;
  bottom: auto;
  left: auto;
  width: 20px;
  height: 1px;
  background: #fff;
}

#top-shipping .top-shippingbaseball-ttl .ja,
#top-baseball .top-shippingbaseball-ttl .ja {
  letter-spacing: .5rem;
  display: block;
  font-size: 36px;
}

#top-shipping .shipping-txt,
#top-shipping .baseball-txt,
#top-baseball .shipping-txt,
#top-baseball .baseball-txt {
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 30px;
}

#top-shipping .shipping-baseball-btn li,
#top-baseball .shipping-baseball-btn li {
  margin-right: 30px;
}

#top-shipping .shipping-baseball-btn li:last-child,
#top-baseball .shipping-baseball-btn li:last-child {
  margin-right: 0;
}

#top-shipping {
  background: url(../img/top/shipping-bg-r.png) no-repeat right center;
}

#top-baseball {
  background: url(../img/top/baseball-bg-l.png) no-repeat left center;
}

.shipping-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background: url(../img/top/shipping-bg-l.png) no-repeat right top;
}

.baseball-bg {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background: url(../img/top/baseball-bg-r.png) no-repeat left top;
}

/*top-others-sec
=========================================================*/
.top-others-sec {
  padding: 90px 3% 80px;
  box-sizing: border-box;
  background: url(../img/top/top-others-bg.jpg) no-repeat center/cover;
}

.top-others-sec section {
  width: 35%;
  height: 380px;
  text-align: center;
  box-sizing: border-box;
  margin-right: 5%;
  transition: .3s all ease;
}

.top-others-sec section:last-child {
  margin-right: 0;
}

.top-others-sec section a {
  transition: .3s all ease;
  height: 100%;
  color: #fff;
}

.top-others-sec section a .common-others-box {
  transition: .3s all ease;
  width: 80%;
  padding: 50px 0 50px;
  background: url(../img/top/common-others-box.png);
}

.top-others-sec section a .common-others-ttl {
  margin-bottom: 25px;
}

.top-others-sec section a .common-others-ttl .eng {
  position: relative;
}

.top-others-sec section a .common-others-ttl .eng:before, .top-others-sec section a .common-others-ttl .eng:after {
  transition: .3s all ease;
}

.top-others-sec section a .common-others-ttl .eng:before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: auto;
  bottom: auto;
  left: -30px;
  width: 20px;
  height: 1px;
  background: #fff;
}

.top-others-sec section a .common-others-ttl .eng:after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: -30px;
  bottom: auto;
  left: auto;
  width: 20px;
  height: 1px;
  background: #fff;
}

.top-others-sec section a .common-others-ttl .ja {
  display: block;
  font-size: 36px;
  letter-spacing: .5rem;
}

.top-others-sec section:hover {
  box-shadow: 10px 10px 0 0 rgba(0, 0, 0, 0.4);
}

.top-others-sec section:hover a {
  color: #e9913b;
}

.top-others-sec section:hover a .common-others-box {
  box-sizing: border-box;
  box-shadow: 10px 10px 0 0 rgba(0, 0, 0, 0.4);
}

.top-others-sec section:hover a .common-others-ttl {
  margin-bottom: 25px;
}

.top-others-sec section:hover a .common-others-ttl .eng:before, .top-others-sec section:hover a .common-others-ttl .eng:after {
  background: #e9913b;
}

.top-others-sec #top-recruit {
  background: url(../img/top/top-recruit-bg.jpg) no-repeat center/cover;
}

.top-others-sec #top-qa {
  background: url(../img/top/top-qa-bg.jpg) no-repeat center/cover;
}

.top-others-sec #top-company {
  background: url(../img/top/top-company-bg.jpg) no-repeat center/cover;
}

.top-others-sec #top-npo {
  text-align: left;
  width: 1030px;
  height: 280px;
  margin: 70px auto 0;
  padding-left: 30px;
  box-sizing: border-box;
  position: relative;
  background: #3d3d3d url(../img/top/top-npo-bg.png) no-repeat right center;
}

.top-others-sec #top-npo:hover {
  box-shadow: 10px 10px 0 0 #e9913b;
}

.top-others-sec #top-npo:hover a {
  color: #fff;
}

.top-others-sec #top-npo .inbox {
  height: 100%;
}

.top-others-sec #top-npo .top-npo-wrp {
  width: 510px;
}

.top-others-sec #top-npo .top-npo-wrp .more-btn02 {
  width: 100%;
}

.top-others-sec #top-npo .top-npo-ttl {
  padding-bottom: 10px;
  margin-bottom: 10px;
  font-size: 28px;
  background: url(../img/top/top-npo-ttl-line.png) repeat-x bottom left;
}

.top-others-sec #top-npo .top-npo-txt {
  margin-bottom: 20px;
}

/*top-news
=========================================================*/
#top-news {
  padding: 130px 0 145px;
  height: 490px;
  box-sizing: border-box;
  background: url(../img/top/top-news-ttl-bg.png) no-repeat left top 70px, url(../img/top/top-news-post-bg.png) no-repeat right top 120px, url(../img/top/top-news-bg.jpg) no-repeat center/cover;
}

#top-news .inbox {
  height: 100%;
  position: relative;
}

#top-news .inbox .more-btn02 {
  position: absolute;
  left: 0;
  bottom: 55px;
  width: 260px;
  margin-left: 20px;
}

#top-news .top-news-ttl {
  width: 320px;
  text-align: center;
  height: 110px;
  color: #fff;
}

#top-news .top-news-ttl .eng {
  position: relative;
}

#top-news .top-news-ttl .eng:before, #top-news .top-news-ttl .eng:after {
  transition: .3s all ease;
}

#top-news .top-news-ttl .eng:before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: auto;
  bottom: auto;
  left: -30px;
  width: 20px;
  height: 1px;
  background: #fff;
}

#top-news .top-news-ttl .eng:after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: -30px;
  bottom: auto;
  left: auto;
  width: 20px;
  height: 1px;
  background: #fff;
}

#top-news .top-news-ttl .ja {
  display: block;
  font-size: 36px;
  letter-spacing: .5rem;
}

#top-news .top-news-post {
  width: 760px;
  margin-top: 10px;
}

#top-news .top-news-post article {
  border-bottom: 1px solid #fff;
}

#top-news .top-news-post article:last-child {
  border-bottom: none;
}

#top-news .top-news-post article a {
  transition: .3s all ease;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  padding: 25px 30px;
  box-sizing: border-box;
}

#top-news .top-news-post article a time {
  margin-right: 30px;
}

#top-news .top-news-post article a:hover {
  color: #e9913b;
}

/*=========================================================
	footer
=========================================================*/
#pagetop {
  position: fixed;
  right: 2.5%;
  bottom: 5%;
  z-index: 100;
}

#footer {
  color: #fff;
  padding: 40px 0 0;
  background: #2e2e2e;
}

#footer .ft-logo {
  text-align: center;
  margin-bottom: 40px;
}

#footer .ft-l {
  width: 470px;
}

#footer .ft-l .worksday {
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  background: #4e4e4e;
  margin-bottom: 10px;
}

#footer .ft-l .ft-tel-fax {
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 15px;
}

#footer .ft-l .ft-tel-fax a {
  color: #fff;
}

#footer .ft-l .ft-tel-fax small {
  font-size: 16px;
}

#footer .ft-l .ft-tel-fax .ft-tel {
  margin-right: 25px;
}

#footer .ft-l .ft-address {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
}

#footer .ft-l .ft-address .in-dl {
  margin-bottom: 5px;
}

#footer .ft-l .ft-address .in-dl:last-child {
  margin-bottom: 0;
}

#footer .ft-l .ft-address .in-dl dt {
  background: #4e4e4e;
  width: 80px;
  text-align: center;
  margin-right: 10px;
}

#footer .ft-l .ft-address .in-dl dd {
  width: 390px;
}

#footer .ft-r {
  width: 520px;
}

#footer .ft-r a {
  font-size: 11px;
  color: #fff;
}

#footer .ft-r > ul {
  width: 130px;
  letter-spacing: 0;
}

#footer .ft-r > ul:last-child {
  margin-right: 0;
}

#footer .ft-r > ul > li {
  line-height: 1;
  margin-bottom: 20px;
}

#footer .ft-r > ul > li:last-child {
  margin-bottom: 0;
}

#footer .ft-r > ul .ft-innav li {
  margin-bottom: 8px;
  padding-left: 15px;
  box-sizing: border-box;
  position: relative;
}

#footer .ft-r > ul .ft-innav li:before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 0;
  width: 7px;
  height: 12px;
  background: url("../img/common/ft-nav-icon.png") no-repeat center/contain;
  margin-top: -3px;
}

#footer .ft-r > ul .ft-innav li:first-child {
  margin-top: 8px;
}

#footer .ft-r > ul .ft-innav li:last-child:before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 0;
  width: 6px;
  height: 7px;
  background: url("../img/common/ft-nav-last-icon.png") no-repeat center/contain;
}

#footer .ft-info {
  margin-bottom: 30px;
}

#footer #copyright {
  background: #4d4d4d;
  text-align: center;
  padding: 5px 0;
}

#footer #copyright small {
  color: #fff;
  font-size: 12px;
}

#footer #copyright small a {
  color: #fff;
}

/*=========================================================
	下層ページ
=========================================================*/
#contents-u {
  padding: 100px 0 110px;
  background: #3c3c3c;
  color: #fff;
}

/*下層サブビジュアル
=========================================================*/
#ma {
  height: 380px;
  background: url(../img/common/ma-bg.jpg) no-repeat center/cover;
}

#ma {
  background: url(../img/common/ma-bg.png) no-repeat center/cover;
}

#ma .ma-inbox {
  line-height: 1;
  text-align: center;
  color: #fff;
  width: 580px;
  height: 220px;
  background: url(../img/common/ma-ttl-box.png);
}

#ma .ma-inbox .eng {
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 30px;
  position: relative;
  font-size: 22px;
}

#ma .ma-inbox .eng:before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: auto;
  bottom: auto;
  left: -40px;
  width: 20px;
  height: 1px;
  background: #fff;
}

#ma .ma-inbox .eng:after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: -40px;
  bottom: auto;
  left: auto;
  width: 20px;
  height: 1px;
  background: #fff;
}

#ma .ma-inbox .ja {
  display: block;
  font-size: 45px;
}

.common-tel .tel {
  font-size: 36px;
  color: #fff;
  line-height: 1;
}

.common-tel .tel small {
  font-size: 16px;
}

/*下層共通タイトル
=========================================================*/
.ttl01 {
  text-align: center;
  color: #fff;
  font-size: 36px;
  line-height: 1.5;
  padding-bottom: 20px;
  margin-bottom: 40px;
  position: relative;
}

.ttl01:before {
  content: "";
  position: absolute;
  display: block;
  top: auto;
  right: auto;
  bottom: 0;
  left: 50%;
  width: 40px;
  height: 1px;
  background: #fff;
  margin-left: -20px;
}

.ttl01-02 {
  font-size: 42px;
  padding-bottom: 15px;
  margin-bottom: 40px;
  text-align: center;
  color: #fff;
  background: url(../img/common/ttl01-02-line.png) repeat-x bottom left;
}

.ttl01-03 {
  font-size: 32px;
  margin-bottom: 60px;
  text-align: center;
  color: #fff;
}

.ttl01-03 span {
  position: relative;
  padding: 0 60px;
}

.ttl01-03 span:before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 0;
  width: 40px;
  height: 1px;
  background: #fff;
}

.ttl01-03 span:after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: 0;
  bottom: auto;
  left: auto;
  width: 40px;
  height: 1px;
  background: #fff;
}

.ttl01-04 {
  padding-bottom: 30px;
  position: relative;
  margin-bottom: 40px;
  font-size: 42px;
}

.ttl01-04:before {
  content: "";
  position: absolute;
  display: block;
  top: auto;
  right: auto;
  bottom: 0;
  left: 50%;
  width: 50px;
  height: 5px;
  background: url("../img/common/ttl01-04-line.png") no-repeat center/contain;
  margin-left: -25px;
}

.ttl02 {
  font-size: 28px;
  margin-bottom: 25px;
  line-height: 1.5;
  padding-bottom: 15px;
  background: url(../img/common/ttl02-line.png) repeat-x bottom left;
}

.ttl03 {
  font-size: 32px;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 40px;
}

.ttl03:before {
  content: "";
  position: absolute;
  display: block;
  top: auto;
  right: auto;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 1px;
  background: #fff;
}

.ttl04 {
  margin-bottom: 20px;
  font-size: 24px;
}

.ttl04 span {
  position: relative;
  padding-right: 50px;
}

.ttl04 span:before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: 0;
  bottom: auto;
  left: auto;
  width: 40px;
  height: 1px;
  background: #fff;
}

.ttl05 {
  font-size: 24px;
  margin-bottom: 40px;
}

.ttl05 span {
  position: relative;
}

.ttl05 span:before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: auto;
  bottom: auto;
  left: -50px;
  width: 40px;
  height: 1px;
  background: #fff;
}

.ttl05 span:after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: -50px;
  bottom: auto;
  left: auto;
  width: 40px;
  height: 1px;
  background: #fff;
}

.ttl06 {
  letter-spacing: .3rem;
  font-size: 24px;
  line-height: 1.5;
  padding-bottom: 15px;
  margin-bottom: 20px;
  border-bottom: 1px solid #fff;
}

.preparation-ttl {
  padding: 35px 0;
  line-height: 1;
  text-align: center;
  font-size: 42px;
  margin-bottom: 35px;
  background: url(../img/common/preparation-ttl-line.png) no-repeat top center/940px, url(../img/common/preparation-ttl-line.png) no-repeat bottom center/940px;
}

.arrow-ttl span {
  padding-left: 30px;
  position: relative;
}

.arrow-ttl span:before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 0;
  width: 18px;
  height: 17px;
  background: url("../img/common/arrow-ttl-icon.png") no-repeat center/contain;
  margin-top: -8.5px;
}

/*下層共通パーツ
=========================================================*/
/*パンくず
=========================================================*/
#bread-clumb {
  width: 100%;
  position: absolute;
  margin: 0 auto;
  padding: 10px 0 50px;
}

#bread-clumb li {
  color: #fff;
  position: relative;
  font-size: 14px;
  float: left;
  margin-right: 20px;
}

#bread-clumb li:after {
  content: ">";
  position: absolute;
  display: block;
  right: -15px;
  top: 0;
}

#bread-clumb li:last-child {
  margin-right: 0;
}

#bread-clumb li:last-child:after {
  display: none;
}

#bread-clumb li a {
  color: #fff;
}

/*共通テーブル
=========================================================*/
.com-dl .in-dl,
.com-dl dd,
.com-dl dt {
  box-sizing: border-box;
}

.com-dl > .in-dl {
  border-bottom: 1px solid #626262;
}

.com-dl > .in-dl:last-child {
  border-bottom: none;
}

.com-dl > .in-dl > dt,
.com-dl > .in-dl > dd {
  display: table-cell;
  vertical-align: top;
  padding: 15px 20px;
  font-size: 15px;
}

.com-dl > .in-dl > dt {
  width: 300px;
}

.com-dl > .in-dl > dd {
  width: 780px;
}

.com-dl > .in-dl > dd a {
  color: #fff;
}

/*共通バナー
=========================================================*/
.common-banner {
  position: relative;
  height: 445px;
  background: url(../img/aside/common-banner-bg.jpg) no-repeat left center;
}

.common-banner .inbox,
.common-banner .common-banner-wrp {
  height: 100%;
  color: #fff;
}

.common-banner .common-banner-wrp {
  width: 450px;
}

.common-banner .common-banner-img {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 55%;
  background: url(../img/aside/common-banner-img.png) no-repeat left center/cover;
}

.common-banner .common-banner-ttl {
  font-size: 42px;
  padding-bottom: 10px;
  margin-bottom: 20px;
  background: url(../img/aside/common-banner-ttl-line.png) repeat-x bottom left;
}

.common-banner .common-banner-txt {
  margin-bottom: 25px;
}

.common-banner .common-banner-tel {
  margin-bottom: 23px;
}

.common-banner .common-banner-tel a {
  font-size: 30px;
  color: #fff;
}

.common-banner .common-banner-tel small {
  font-size: 18px;
}

.common-banner .common-banner-link li {
  margin-right: 20px;
}

.common-banner .common-banner-link li:last-child {
  margin-right: 0;
}

/*自動車
=========================================================*/
#car {
  color: #fff;
  text-align: center;
  padding-bottom: 50px;
}

#about-business {
  color: #fff;
  padding: 50px 0;
}

#about-business .about-business-info article {
  margin-bottom: 60px;
}

#about-business .about-business-info article .ttl03 span {
  position: relative;
}

#about-business .about-business-info article:last-child {
  margin-bottom: 0;
}

#about-business .about-business-info article:nth-child(even) {
  flex-direction: row-reverse;
}

#about-business .about-business-info article .about-business-img {
  width: 535px;
}

#about-business .about-business-info article .about-business-img-box {
  width: 460px;
}

#about-business .about-business-info article .about-business-txt {
  margin-bottom: 25px;
}

#about-business .about-business-info article .more-btn02 {
  margin: 0;
}

#about-business .about-business-info .about-business01 .ttl03 span:before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: -65px;
  bottom: auto;
  left: auto;
  width: 49px;
  height: 46px;
  background: url("../img/car/about-business-img01-icon.png") no-repeat center/contain;
  margin-top: -23px;
}

#about-business .about-business-info .about-business02 .ttl03 span:before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: -70px;
  bottom: auto;
  left: auto;
  width: 54px;
  height: 43px;
  background: url("../img/car/about-business-img02-icon.png") no-repeat center/contain;
  margin-top: -21.5px;
}

#about-business .about-business-info .about-business03 .ttl03 span:before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: -75px;
  bottom: auto;
  left: auto;
  width: 57px;
  height: 46px;
  background: url("../img/car/about-business-img03-icon.png") no-repeat center/contain;
  margin-top: -23px;
}

#about-business .about-business-info .about-business04 .ttl03 span:before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: -100px;
  bottom: auto;
  left: auto;
  width: 81px;
  height: 39px;
  background: url("../img/car/about-business-img04-icon.png") no-repeat center/contain;
  margin-top: -19.5px;
}

#about-business .about-business-info .about-business05 .ttl03 span:before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: -90px;
  bottom: auto;
  left: auto;
  width: 79px;
  height: 47px;
  background: url("../img/car/about-business-img05-icon.png") no-repeat center/contain;
  margin-top: -23px;
}

#permit .permit-post article {
  margin: 40px 60px 0 0;
}

#permit .permit-post article:nth-child(3n) {
  margin-right: 0;
}

#permit .permit-post article:nth-child(-n + 3) {
  margin-top: 0;
}

#permit .permit-post article a {
  display: block;
  position: relative;
}

#permit .permit-post article a .com-img {
  width: 320px;
  height: 310px;
}

#permit .permit-post article a .permit-ttl {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  padding: 20px;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  opacity: 0;
  transition: .3s all ease;
}

#permit .permit-post article a:hover .permit-ttl {
  opacity: 1;
}

/*板金塗装・保険
=========================================================*/
#feature {
  padding: 50px 0 70px;
}

#feature .feature-list .in-dl {
  width: 320px;
  margin-right: 60px;
}

#feature .feature-list .in-dl:last-child {
  margin-right: 0;
}

#feature .feature-list .in-dl dt {
  border-bottom: 1px solid #fff;
  padding-bottom: 10px;
  line-height: 1.5;
  margin-bottom: 20px;
}

#feature .feature-list .in-dl dt .point {
  color: #e9913b;
  display: block;
}

#feature .feature-list .in-dl dt .catch {
  font-size: 21px;
}

#feature .feature-list .in-dl dd {
  line-height: 1.8;
  font-family: "Noto Sans JP", sans-serif;
}

#repair {
  padding: 70px 0 60px;
}

#repair .repair-info {
  padding: 0 20px;
  box-sizing: border-box;
  margin-bottom: 60px;
}

#repair .repair-info article {
  margin-bottom: 60px;
}

#repair .repair-info article:last-child {
  margin-bottom: 0;
}

#repair .repair-info .repair-img {
  width: 310px;
}

#repair .repair-info .repair-box {
  width: 690px;
}

#repair .coution-txt {
  text-align: center;
}

#repair .coution-txt .big {
  font-size: 28px;
  margin-bottom: 20px;
}

#safety {
  padding: 50px 0 120px;
}

#safety .safety-wrp .safety-info {
  width: 600px;
  margin-right: 80px;
}

#safety .safety-wrp .products {
  position: relative;
  width: 370px;
  height: 140px;
  border: solid 1px #fff;
  box-sizing: border-box;
}

#safety .safety-wrp .products .products-ttl {
  font-size: 28px;
  width: 310px;
  text-align: center;
  background: #3c3c3c;
  position: absolute;
  left: 0;
  top: -25px;
  right: 0;
  margin: 0 auto;
}

#safety .safety-wrp .more-btn02 {
  display: block;
}

.contact-banner {
  width: 1250px;
  padding: 80px 0 70px;
  margin: 0 auto;
  background: url(../img/aside/contact-banner-bg.png);
  position: relative;
}

.contact-banner:before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  width: 1180px;
  height: 310px;
  border: solid 1px #9e9e9e;
  margin: -155px 0 0 -590px;
}

.contact-banner .contact-banner-ttl {
  padding-left: 50px;
  width: 355px;
  font-size: 42px;
  line-height: 1.5;
}

.contact-banner .contact-banner-info {
  width: 570px;
}

.contact-banner .contact-banner-info .contact-banner-works {
  width: 330px;
  text-align: center;
}

.contact-banner .contact-banner-info .contact-banner-works .tel {
  color: #fff;
  font-size: 36px;
}

.contact-banner .contact-banner-info .contact-banner-works .tel small {
  font-size: 20px;
}

.contact-banner .contact-banner-info .mail-btn {
  padding: 20px 0;
  width: 220px;
}

.contact-banner .contact-banner-info .mail-btn span {
  font-size: 20px;
}

/*一般整備・車検
=========================================================*/
#accessories {
  margin-bottom: 125px;
}

#accessories .accessories-txt {
  margin-bottom: 40px;
}

#accessories .accessories-link li {
  width: 255px;
  margin-right: 60px;
}

#accessories .accessories-link li span {
  font-size: 16px;
}

#accessories .accessories-link li:last-child {
  margin-right: 0;
}

/*レンタカー
=========================================================*/
.about-rental-txt {
  margin-bottom: 85px;
}

#rental-flow {
  margin-bottom: 90px;
}

#rental-flow .flow-info article {
  width: 320px;
  margin-right: 60px;
}

#rental-flow .flow-info article:first-child, #rental-flow .flow-info article:last-child {
  margin-right: 0;
}

#rental-flow .flow-info article .flow-img {
  margin-bottom: 15px;
}

#rental-flow .flow-info article .flow-box {
  text-align: center;
}

#rental-flow .flow-info article .flow-box .flow-ttl {
  padding-bottom: 20px;
  margin-bottom: 20px;
  line-height: 1;
  background: url(../img/common/ttl02-line.png) repeat-x bottom left;
}

#rental-flow .flow-info article .flow-box .flow-ttl span {
  display: block;
}

#rental-flow .flow-info article .flow-box .flow-ttl .num {
  color: #e9913b;
  font-size: 14px;
  margin-bottom: 8px;
}

#rental-flow .flow-info article .flow-box .flow-ttl .main {
  font-size: 30px;
}

#rental-flow .flow-info article .flow-txt {
  font-family: "Noto Sans JP", sans-serif;
}

#rental-flow .flow-info article:first-child {
  width: 100%;
  margin-bottom: 75px;
}

#rental-flow .flow-info article:first-child .flow-img {
  width: 420px;
  margin-bottom: 0;
}

#rental-flow .flow-info article:first-child .flow-box {
  width: 625px;
  text-align: left;
}

#rental-flow .flow-info article:first-child .flow-box .flow-txt {
  margin-bottom: 20px;
}

#rental-flow .flow-info article .check-list-box p {
  font-size: 18px;
  margin-bottom: 10px;
}

#rental-flow .flow-info article .check-list-box .check-list {
  padding: 20px 50px;
  margin-bottom: 20px;
  box-sizing: border-box;
  background: #535353;
}

#rental-flow .flow-info article .check-list-box .check-list li {
  position: relative;
  box-sizing: border-box;
}

#rental-flow .flow-info article .check-list-box .check-list li:before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: auto;
  bottom: auto;
  left: -20px;
  width: 13px;
  height: 13px;
  background: url("../img/common/check.png") no-repeat center/contain;
  margin-top: -6.5px;
}

#rental-flow .flow-info article .flow-contact dt {
  font-size: 16px;
  width: 230px;
  padding: 15px 0;
  line-height: 1;
  margin-right: 10px;
  text-align: center;
  background: url(../img/rental/flow-contact-dt-bg.png) no-repeat right center/cover;
}

#rental-flow .flow-info article .flow-contact .tel a {
  color: #fff;
  font-size: 26px;
}

#rental-flow .flow-info article .flow-contact .tel a small {
  font-size: 16px;
}

#rental-coution {
  margin-bottom: 100px;
}

#rental-coution .rental-coution-wrp article {
  width: 50%;
}

#rental-coution .rental-coution-wrp article .ttl01 {
  font-size: 24px;
}

#rental-coution .rental-coution-wrp article p {
  font-family: "Noto Sans JP", sans-serif;
}

#rental-coution .rental-coution-wrp article:nth-child(1), #rental-coution .rental-coution-wrp article:nth-child(2) {
  margin-bottom: 70px;
}

#rental-coution .rental-coution-wrp article:nth-child(3), #rental-coution .rental-coution-wrp article:nth-child(4) {
  width: 100%;
}

#rental-coution .rental-coution-wrp article:nth-child(3) {
  margin-bottom: 65px;
}

.about-cancel .cancel-wrp section {
  position: relative;
  width: 340px;
  border: solid 1px #fff;
  padding: 35px 35px 30px;
  box-sizing: border-box;
  margin-right: 60px;
}

.about-cancel .cancel-wrp section:last-child {
  margin-right: 0;
}

.about-cancel .cancel-wrp section .cancel-box-ttl {
  font-size: 20px;
  width: 200px;
  position: absolute;
  z-index: 100;
  left: 0;
  right: 0;
  top: -20px;
  background: #3c3c3c;
  margin: 0  auto;
}

.about-cancel .cancel-wrp section .cancel-dl .in-dl {
  margin-bottom: 10px;
}

.about-cancel .cancel-wrp section .cancel-dl .in-dl:last-child {
  margin-bottom: 0;
}

.about-cancel .cancel-wrp section .cancel-dl dt, .about-cancel .cancel-wrp section .cancel-dl dd {
  display: table-cell;
  vertical-align: middle;
  width: 140px;
  text-align: left;
}

#rectal-price .rental-price-post article {
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid #7d7d7d;
  position: relative;
}

#rectal-price .rental-price-post article:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

#rectal-price .rental-price-post article .rental-price-post-box {
  width: 670px;
  margin-left: auto;
}

#rectal-price .rental-price-post article .rental-price-post-box .num-dl {
  margin-bottom: 20px;
  background: #535353;
  padding: 10px 15px;
  box-sizing: border-box;
  font-size: 17px;
  line-height: 1.5;
}

#rectal-price .rental-price-post article .rental-price-post-box .num-dl dt {
  margin-right: 15px;
}

#rectal-price .rental-price-post article .rental-price-post-box .price-info .in-dl {
  border-bottom: 1px solid #a0a0a0;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

#rectal-price .rental-price-post article .rental-price-post-box .price-info .in-dl:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

#rectal-price .rental-price-post article .rental-price-post-box .price-info dt, #rectal-price .rental-price-post article .rental-price-post-box .price-info dd {
  text-align: center;
  width: 225px;
  display: table-cell;
  vertical-align: middle;
}

#rectal-price .rental-price-post article .rental-price-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 360px;
  height: 260px;
}

/*在庫一覧
=========================================================*/
.post-arrow-ttl {
  font-size: 18px;
  padding: 0 0 5px 15px;
  border-bottom: 1px solid #5b5b5b;
  margin-bottom: 10px;
  line-height: 1.5;
  box-sizing: border-box;
  position: relative;
}

.post-arrow-ttl:before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 0;
  width: 0;
  height: 0;
  border: solid 6px transparent;
  border-left: solid #e9913b 6px;
  margin-top: -9px;
}

#all-inventory .inventory-coution-txt {
  margin-bottom: 90px;
}

#all-inventory .inventory-post article {
  width: 260px;
  margin: 40px 13px 0 0;
  background: #fff;
  transition: .3s all ease;
}

#all-inventory .inventory-post article:nth-child(4n) {
  margin-right: 0;
}

#all-inventory .inventory-post article:nth-child(-n + 4) {
  margin-top: 0;
}

#all-inventory .inventory-post article:hover {
  opacity: .8;
}

#all-inventory .inventory-post article a {
  display: block;
}

#all-inventory .inventory-post article .com-img {
  width: 100%;
  height: 230px;
}

#all-inventory .inventory-post article .inventory-post-box {
  padding: 15px;
  box-sizing: border-box;
}

#all-inventory .inventory-post article .inventory-post-dl {
  margin-bottom: 10px;
}

#all-inventory .inventory-post article .inventory-post-dl .in-dl {
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
}

#all-inventory .inventory-post article .inventory-post-dl .in-dl dt {
  width: 90px;
}

#all-inventory .inventory-post article .inventory-post-dl .in-dl dd {
  width: 140px;
}

#all-inventory .inventory-post article .price {
  text-align: right;
  color: #e9913b;
  font-size: 20px;
  font-weight: 700;
}

/*在庫詳細
=========================================================*/
#s-inventory {
  margin-bottom: 100px;
}

#s-inventory .s-inventory-wrp #viewer {
  width: 500px;
}

#s-inventory .s-inventory-wrp #viewer .inventory-main-img {
  height: 360px;
  margin-bottom: 15px;
}

#s-inventory .s-inventory-wrp #viewer .inventory-thumb li {
  width: 115px;
  height: 85px;
  margin: 15px 13px 0 0;
  box-sizing: border-box;
}

#s-inventory .s-inventory-wrp #viewer .inventory-thumb li:nth-child(4n) {
  margin-right: 0;
}

#s-inventory .s-inventory-wrp #viewer .inventory-thumb li:nth-child(-n + 4) {
  margin-top: 0;
}

#s-inventory .s-inventory-wrp .inventory-info {
  width: 535px;
}

#s-inventory .s-inventory-wrp .inventory-info .price {
  font-size: 28px;
  margin-bottom: 20px;
}

#s-inventory .s-inventory-wrp .inventory-info .inventory-dl {
  margin-bottom: 25px;
}

#s-inventory .s-inventory-wrp .inventory-info .inventory-dl .in-dl {
  margin-bottom: 5px;
}

#s-inventory .s-inventory-wrp .inventory-info .inventory-dl .in-dl:last-child {
  margin-bottom: 0;
}

#s-inventory .s-inventory-wrp .inventory-info .inventory-dl dt, #s-inventory .s-inventory-wrp .inventory-info .inventory-dl dd {
  padding: 5px;
  box-sizing: border-box;
}

#s-inventory .s-inventory-wrp .inventory-info .inventory-dl dt {
  width: 90px;
  margin-right: 25px;
  background: #696969;
}

#s-inventory .s-inventory-wrp .inventory-info .inventory-dl dd {
  width: 420px;
}

#s-inventory .s-inventory-wrp .inventory-info .s-inventory-txt {
  margin-bottom: 30px;
}

.post-contact-banner {
  width: 860px;
  text-align: center;
  padding: 60px 0;
  margin: 0 auto;
  background: url(../img/common/common-line-box.png);
}

.post-contact-banner .post-contact-banner-ttl {
  font-size: 26px;
  padding-bottom: 20px;
  margin-bottom: 30px;
  line-height: 1.5;
  background: url(../img/common/post-contact-banner-ttl-line.png) no-repeat center bottom;
}

.post-contact-banner .post-contact-banner-box .post-contact-banner-l {
  margin-right: 40px;
}

.post-contact-banner .post-contact-banner-box .tel {
  font-size: 36px;
  color: #fff;
}

.post-contact-banner .post-contact-banner-box .tel small {
  font-size: 20px;
}

.post-contact-banner .post-contact-banner-box .works {
  display: block;
}

/*一般貨物事業01
=========================================================*/
.freight-txt {
  margin-bottom: 75px;
  font-family: "Noto Sans JP", sans-serif;
}

#initiatives {
  margin-bottom: 90px;
}

#initiatives .initiatives-info article {
  text-align: center;
  width: 520px;
}

#initiatives .initiatives-info article .initiatives-ttl {
  margin-bottom: 25px;
  text-align: center;
}

#initiatives .initiatives-info article .initiatives-ttl .eng {
  font-size: 16px;
  position: relative;
}

#initiatives .initiatives-info article .initiatives-ttl .eng:before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: auto;
  bottom: auto;
  left: -30px;
  width: 20px;
  height: 1px;
  background: #fff;
}

#initiatives .initiatives-info article .initiatives-ttl .eng:after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: -30px;
  bottom: auto;
  left: auto;
  width: 20px;
  height: 1px;
  background: #fff;
}

#initiatives .initiatives-info article .initiatives-ttl .ja {
  font-size: 28px;
  display: block;
}

#initiatives .initiatives-info article .initiatives-img {
  margin-bottom: 35px;
}

#initiatives .initiatives-info .initiatives-list {
  margin-bottom: 50px;
}

#initiatives .initiatives-info .initiatives-list figure {
  width: calc(100%/3);
}

#initiatives .initiatives-info .initiatives-list figure img {
  margin-bottom: 15px;
}

#initiatives .initiatives-info .initiatives-list figure figcaption {
  font-size: 18px;
}

#initiatives .initiatives-info .initiatives-txt {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
}

.freight-permit {
  margin-bottom: 120px;
}

.recruit-banner .recruit-banner-wrp .recruit-banner-box {
  width: 480px;
  text-align: center;
}

.recruit-banner .recruit-banner-wrp .recruit-banner-txt {
  margin-bottom: 30px;
}

.recruit-banner .recruit-banner-wrp .recruit-banner-img {
  width: 560px;
}

.driver-recruit {
  text-align: center;
  padding: 80px 0;
  color: #fff;
  background: url(../img/common/common-line-box.png);
}

.driver-recruit .driver-recruit-txt {
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 40px;
}

.driver-recruit .driver-recruit-banner-tel {
  margin-right: 20px;
}

.driver-recruit .driver-recruit-banner-tel .tel {
  line-height: 1;
  color: #fff;
  font-size: 36px;
}

.driver-recruit .driver-recruit-banner-tel .tel small {
  font-size: 20px;
}

.driver-recruit .driver-recruit-banner-tel .works {
  font-size: 18px;
}

.driver-recruit .mail-btn {
  width: 230px;
  padding: 15px 0;
}

.driver-recruit .mail-btn span {
  font-size: 18px;
}

/*一般貨物事業02
=========================================================*/
#contents-u.freight02 {
  padding-top: 30px;
}

#recruit-partner {
  padding: 85px 0 80px;
  background: url(../img/freight02/recruit-partner-l.png) no-repeat left bottom, url(../img/freight02/recruit-partner-r.png) no-repeat right bottom;
}

#recruit-partner .recruit-banner-tel {
  margin-right: 25px;
}

#owned {
  padding: 80px 0;
}

#owned .owned-dl {
  width: 1025px;
  margin: 0 auto;
}

#owned .owned-dl .in-dl {
  border-bottom: 1px solid #fff;
}

#owned .owned-dl .in-dl:last-child {
  border-bottom: none;
}

#owned .owned-dl .in-dl dt, #owned .owned-dl .in-dl dd {
  display: table-cell;
  vertical-align: middle;
  padding: 25px 20px;
  border-right: 1px dotted #fff;
}

#owned .owned-dl .in-dl dt:last-child, #owned .owned-dl .in-dl dd:last-child {
  border-right: none;
}

#owned .owned-dl .in-dl dt {
  width: 470px;
}

#owned .owned-dl .in-dl .num, #owned .owned-dl .in-dl .others {
  width: 280px;
}

#owned .owned-dl .in-dl:first-child {
  background: #696969;
  border-bottom: none !important;
}

#owned .owned-dl .in-dl:first-child dt, #owned .owned-dl .in-dl:first-child dd {
  padding: 15px 20px;
  border-right: 1px solid #3c3c3c;
}

#owned .owned-dl .in-dl:first-child dd:last-child {
  border-right: none;
}

/*硬式野球チーム
=========================================================*/
#preparation {
  margin-bottom: 90px;
}

#member-recruit {
  padding: 60px 0 50px;
  margin-bottom: 70px;
  background: url(../img/common/common-line-box.png);
}

#member-recruit .member-recruit-ttl {
  margin-bottom: 50px;
}

#member-recruit .member-recruit-ttl small {
  display: block;
  line-height: 1;
  font-size: 30px;
}

#member-recruit .member-recruit-ttl span {
  font-size: 46px;
  position: relative;
}

#member-recruit .member-recruit-ttl span:before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: auto;
  bottom: 0;
  left: -60px;
  width: 1px;
  height: 50px;
  transform: rotate(-30deg);
  background: #e9913b;
  margin-top: -20px;
}

#member-recruit .member-recruit-ttl span:after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: -60px;
  bottom: 0;
  left: auto;
  width: 1px;
  height: 50px;
  background: #e9913b;
  margin-top: -20px;
  transform: rotate(30deg);
}

#member-recruit .member-recruit-dl {
  width: 510px;
  margin: 0 auto 25px;
  background: #595959;
}

#member-recruit .member-recruit-dl dt, #member-recruit .member-recruit-dl dd {
  line-height: 1;
  padding: 10px 0;
}

#member-recruit .member-recruit-dl dt {
  font-size: 20px;
  width: 150px;
  background: url(../img/baseball/member-recruit-dt-bg.png) no-repeat right center;
}

#member-recruit .member-recruit-dl dd {
  font-size: 17px;
  width: 360px;
}

#member-recruit .member-recruit-txt {
  margin-bottom: 25px;
}

#member-recruit .more-btn02 {
  width: 310px;
  padding: 15px 0;
}

#member-recruit .more-btn02 span {
  font-size: 18px;
}

.activityrecord-banner {
  border: solid 1px #fff;
  box-sizing: border-box;
  width: 920px;
  height: 280px;
  padding-left: 50px;
  box-sizing: border-box;
  position: relative;
  margin: 0 auto;
  background: #313131;
}

.activityrecord-banner .activityrecord-banner-box {
  width: 470px;
}

.activityrecord-banner .activityrecord-banner-box .activityrecord-banner-txt {
  margin-bottom: 20px;
}

.activityrecord-banner .activityrecord-banner-img {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 380px;
  background: url(../img/baseball/activityrecord-banner-img.png) no-repeat left bottom/cover;
}

.activityrecord-banner .more-btn02 {
  width: 100%;
}

.activityrecord-banner .more-btn02 span {
  font-size: 16px;
}

/*活動記録
=========================================================*/
.common-tab {
  margin-bottom: 110px;
}

.common-tab li {
  text-align: center;
  margin-right: 20px;
}

.common-tab li:last-child {
  margin-right: 0;
}

.common-tab li a {
  padding: 10px 0;
  min-width: 210px;
  display: block;
  color: #fff;
  background: #e9913b;
}

.record-post article a {
  padding: 60px;
  box-sizing: border-box;
  border-bottom: 1px solid #898989;
}

.record-post article a .ttl02 {
  font-size: 24px;
}

.record-post article a .com-img {
  background: #000;
  width: 270px;
  height: 220px;
  margin-right: 40px;
}

.record-post article a .record-box {
  width: 600px;
  color: #fff;
}

.record-post article a p {
  margin-bottom: 30px;
}

.record-post article a .more-btn02 {
  margin: 0 0 0 auto !important;
}

.record-post article:first-child a {
  padding-top: 0;
}

/*求人情報
=========================================================*/
.recruit-coution-txt {
  margin-bottom: 100px;
}

#recruit-feature {
  margin-bottom: 110px;
  text-align: center;
}

#recruit-feature .recruit-feature-list article {
  width: 340px;
  margin-right: 30px;
  padding: 30px 0;
}

#recruit-feature .recruit-feature-list article:last-child {
  margin-right: 0;
}

#recruit-feature .recruit-feature-list article .recruit-feature-subttl {
  font-size: 22px;
  margin-bottom: 20px;
  line-height: 1.5;
}

#recruit-feature .recruit-feature-list article .recruit-feature-subttl span {
  display: inline-block;
  position: relative;
  padding: 0 30px;
}

#recruit-feature .recruit-feature-list article .recruit-feature-subttl span:before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 0;
  width: 20px;
  height: 1px;
  background: #fff;
}

#recruit-feature .recruit-feature-list article .recruit-feature-subttl span:after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: 0;
  bottom: auto;
  left: auto;
  width: 20px;
  height: 1px;
  background: #fff;
}

#recruit-feature .recruit-feature-list article p {
  font-size: 14px;
  letter-spacing: 0;
}

#recruit-feature .recruit-feature-list .recruit-feature01 {
  background: url(../img/recruit/recruit-feature01.jpg) no-repeat center/cover;
}

#recruit-feature .recruit-feature-list .recruit-feature02 {
  background: url(../img/recruit/recruit-feature02.jpg) no-repeat center/cover;
}

#recruit-feature .recruit-feature-list .recruit-feature03 {
  background: url(../img/recruit/recruit-feature03.jpg) no-repeat center/cover;
}

#recruit-hope {
  padding: 70px 0;
  background: url(../img/common/common-line-box.png);
}

#recruit-hope .recruit-hope-info {
  text-align: center;
}

#recruit-hope .recruit-hope-info figure {
  width: 220px;
  margin-right: 70px;
}

#recruit-hope .recruit-hope-info figure img {
  margin-bottom: 12px;
}

#recruit-hope .recruit-hope-info figure:last-child {
  margin-right: 0;
}

#recruit-hope .recruit-hope-info figure figcaption {
  font-size: 21px;
}

#requirements {
  padding: 70px 0;
}

#requirements .requirements-post {
  margin-bottom: 60px;
}

#requirements article {
  margin-bottom: 80px;
}

#requirements article:last-child {
  margin-bottom: 0;
}

#requirements .requirements-banner .post-contact-banner-ttl {
  font-size: 40px;
}

/*NPOエコキャップ運動
=========================================================*/
.npo-coution-txt {
  margin-bottom: 130px;
  font-size: 18px;
}

#about-npo {
  padding: 60px 0 80px;
  background: url(../img/common/common-line-box.png);
}

#about-npo .inbox {
  position: relative;
}

#about-npo .about-npo-ttl {
  margin-bottom: 35px;
  font-size: 42px;
}

#about-npo .about-npo-img {
  position: absolute;
  left: -215px;
  top: -120px;
}

#about-npo .about-npo-box {
  width: 615px;
  margin-left: auto;
}

#npo-info {
  padding: 130px 0 0;
}

#npo-info .npo-info-list article {
  margin-bottom: 70px;
}

#npo-info .npo-info-list article:nth-child(even) {
  flex-direction: row-reverse;
}

#npo-info .npo-info-list article:last-child {
  margin-bottom: 0;
}

#npo-info .npo-info-list article .npo-info-img {
  width: 520px;
}

#npo-info .npo-info-list article .npo-info-box {
  width: 525px;
}

#npo-info .npo-info-list article .npo-info-box .ttl03 {
  line-height: 1.5;
}

#npo-info .npo-info-list article .more-btn02 {
  width: 100%;
}

/*よくある質問
=========================================================*/
.qa-tab {
  width: 850px;
  margin: 0 auto 100px;
}

.qa-tab .qa-tab-txt {
  font-size: 20px;
  margin-bottom: 10px;
}

.qa-tab .qa-tag-list {
  background: #313131;
  border: solid 1px #fff;
  padding: 30px 25px;
  box-sizing: border-box;
}

.qa-tab li {
  padding-left: 20px;
  position: relative;
  margin-right: 30px;
}

.qa-tab li:before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 0;
  width: 0;
  height: 0;
  border: transparent solid 5px;
  border-left: #e9913b solid 5px;
  margin-top: -5px;
}

.qa-tab li a {
  color: #fff;
  transition: .3s all ease;
}

.qa-tab li a:hover {
  color: #e9913b;
}

.qa-post {
  width: 1000px;
  margin: 0 auto;
}

.qa-post .in-dl {
  margin-bottom: 50px;
  padding: 0 0 50px 25px;
  border-bottom: 1px solid #fff;
}

.qa-post .in-dl:last-child {
  border-bottom: none;
}

.qa-post .in-dl dt, .qa-post .in-dl dd {
  position: relative;
  padding-left: 75px;
}

.qa-post .in-dl dt {
  cursor: pointer;
  font-size: 28px;
  margin-bottom: 25px;
  padding: 0 70px 0 75px;
}

.qa-post .in-dl dt:before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  width: 54px;
  height: 54px;
  background: url("../img/qa/q-icon.png") no-repeat center/contain;
}

.qa-post .in-dl dt:after {
  content: "";
  position: absolute;
  right: 25px;
  top: 38%;
  transition: all 0.2s ease-in-out;
  display: block;
  width: 8px;
  height: 8px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(135deg);
}

.qa-post .in-dl .current:after {
  transform: rotate(-45deg);
  top: 45%;
}

.qa-post .in-dl dd:before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  right: auto;
  bottom: auto;
  left: 20px;
  width: 20px;
  height: 22px;
  background: url("../img/qa/a-icon.png") no-repeat center/contain;
}

/*会社概要
=========================================================*/
#contents-u.company {
  padding-bottom: 0;
}

#ceo-message {
  margin-bottom: 60px;
}

#ceo-message .company-img {
  width: 490px;
}

#ceo-message .message-box {
  width: 510px;
}

#company-info .company-dl {
  margin-bottom: 60px;
}

#company-info .company-dl dt {
  width: 160px;
}

#company-info .company-dl dd {
  width: 920px;
}

#company-info .map .map-icon span:before {
  margin-right: 5px;
  color: #e9913b;
}

/*お知らせ一覧
=========================================================*/
@media screen and (min-width: 768px) {
  .post-wrp .tag-change {
    margin-bottom: 50px;
  }
  .post-wrp .tag-change li {
    text-align: center;
    width: 19%;
    margin: 2% 1% 0 0;
  }
  .post-wrp .tag-change li:nth-child(5n) {
    margin-right: 0;
  }
  .post-wrp .tag-change li:nth-child(-n + 5) {
    margin-top: 0;
  }
  .post-wrp .tag-change li a {
    border: solid 1px #e9913b;
    padding: 10px 0;
    display: block;
    color: #e9913b;
    background: #fff;
  }
  .post-wrp .tag-change .current a {
    background: #e9913b;
  }
  .post-wrp .tag-change .current a span {
    color: #fff;
  }
}

@media screen and (max-width: 767px) {
  .post-wrp .tag-change {
    text-align: center;
    flex-wrap: nowrap;
    overflow-x: scroll;
    margin-bottom: 30px;
    justify-content: start;
  }
  .post-wrp .tag-change li {
    flex: 0 0 30%;
    margin: 2% 1% 0 0;
  }
  .post-wrp .tag-change li a {
    border: solid 1px #e9913b;
    padding: 5px 0;
    display: block;
    color: #e9913b;
    background: #fff;
    font-size: 3vw;
  }
  .post-wrp .tag-change .current a {
    background: #e9913b;
  }
  .post-wrp .tag-change .current a span {
    color: #fff;
  }
}

.post-wrp .all-post-list article {
  margin-bottom: 25px;
  border-bottom: 1px solid #e9913b;
}

.post-wrp .all-post-list article a {
  padding: 0 0 25px;
  display: block;
  color: #fff;
  box-sizing: border-box;
}

.post-wrp .all-post-list article a .tag-time {
  margin-bottom: 15px;
}

.post-wrp .all-post-list article a .tag-name,
.post-wrp .all-post-list article a time {
  width: 125px;
  line-height: 1;
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  padding: 10px 20px;
  box-sizing: border-box;
  margin-right: 1%;
  font-size: 12px;
}

.post-wrp .all-post-list article a .tag-name {
  border: solid 1px #e9913b;
}

.post-wrp .all-post-list article a .tag-name span {
  color: #e9913b;
}

.post-wrp .all-post-list article a time {
  display: block;
  background: #e9913b;
}

.post-wrp .all-post-list article a time span {
  padding-left: 10px;
  color: #fff;
  position: relative;
}

.post-wrp .all-post-list article a time span:before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 0;
  width: 0;
  height: 0;
  border: transparent solid 5px;
  border-left: #fff solid 5px;
  margin-top: -5px;
}

.post-wrp .all-post-list article a .com-img {
  width: 180px;
  height: 130px;
}

.post-wrp .all-post-list article a .post-thumb-text {
  width: 875px;
}

.post-wrp .all-post-list article a h4 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}

@media screen and (max-width: 767px) {
  .post-wrp .all-post-list article {
    /*　画面サイズが767pxまではここを読み込む　*/
  }
  .post-wrp .all-post-list article .tag-name,
  .post-wrp .all-post-list article time {
    padding: 5px 10px !important;
    font-size: 3vw !important;
  }
  .post-wrp .all-post-list article .com-img {
    width: 23% !important;
    height: 10vh !important;
  }
  .post-wrp .all-post-list article .post-thumb-text {
    width: 70% !important;
  }
  .post-wrp .all-post-list article h4 {
    font-size: 5vw !important;
    font-weight: bold !important;
    margin-bottom: 10px !important;
  }
}

/*お知らせ個別
=========================================================*/
#contents-u.post .sb-post-body h1,
#contents-u.post .sb-post-body h2,
#contents-u.post .sb-post-body h3,
#contents-u.post .sb-post-body h4,
#contents-u.post .sb-post-body h5,
#contents-u.post .sb-post-body h6 {
  box-sizing: border-box;
  line-height: 1.5;
  font-weight: 700;
}

#contents-u.post .sb-post-body h1 {
  padding: 0 5px;
  font-size: 28px;
  border-bottom: 1px solid #e9913b;
  padding-bottom: 8px;
  margin-bottom: 15px;
}

#contents-u.post .sb-post-body h2 {
  padding-left: 10px;
  font-size: 26px;
  border-left: 5px solid #e9913b;
  margin-bottom: 15px;
}

#contents-u.post .sb-post-body h3 {
  background: #e9913b;
  font-size: 24px;
  padding: 5px 10px;
  color: #fff;
  margin-bottom: 15px;
}

#contents-u.post .sb-post-body h4 {
  padding-bottom: 8px;
  margin-bottom: 15px;
  font-size: 20px;
  position: relative;
}

#contents-u.post .sb-post-body h4:before {
  content: "";
  position: absolute;
  display: block;
  top: auto;
  right: auto;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background: #e9913b;
}

#contents-u.post .sb-post-body h5 {
  background: #f2f2f2;
  font-size: 18px;
  padding: 5px 10px;
  margin-bottom: 10px;
}

#contents-u.post .sb-post-body h6 {
  font-size: 16px;
  color: #e9913b;
}

@media screen and (max-width: 767px) {
  #contents-u.post .sb-post-body h1 {
    padding: 0 5px;
    font-size: 6vw;
    border-bottom: 1px solid #e9913b;
    padding-bottom: 8px;
    margin-bottom: 15px;
  }
  #contents-u.post .sb-post-body h2 {
    padding-left: 10px;
    font-size: 5.5vw;
    border-left: 5px solid #e9913b;
    margin-bottom: 15px;
  }
  #contents-u.post .sb-post-body h3 {
    background: #e9913b;
    font-size: 5vw;
    padding: 5px 10px;
    color: #fff;
    margin-bottom: 15px;
  }
  #contents-u.post .sb-post-body h4 {
    padding-bottom: 8px;
    margin-bottom: 15px;
    font-size: 4.8vw;
    position: relative;
  }
  #contents-u.post .sb-post-body h4:before {
    content: "";
    position: absolute;
    display: block;
    top: auto;
    right: auto;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: #e9913b;
  }
  #contents-u.post .sb-post-body h5 {
    background: #f2f2f2;
    font-size: 4.5vw;
    padding: 5px 10px;
    margin-bottom: 10px;
  }
  #contents-u.post .sb-post-body h6 {
    font-size: 4.2vw;
    color: #e9913b;
  }
}

#contents-u.post .s-time-tag {
  text-align: right;
  margin-top: 100px;
  padding-top: 10px;
  border-top: 1px solid #e9913b;
}

#contents-u.post .s-time-tag time {
  width: 130px;
  color: #e9913b;
  font-weight: bold;
}

#contents-u.post .s-time-tag .tag-name {
  min-width: 130px;
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  padding: 5px 20px;
  box-sizing: border-box;
  border: solid 1px #e9913b;
  margin-right: 1%;
  line-height: 1;
  color: #e9913b;
}

#contents-u.post .s-time-tag .tag-name span {
  color: #e9913b;
}

/*お問い合わせ
=========================================================*/
.cont-dl {
  margin-bottom: 40px;
}

.cont-dl .in-dl dt {
  width: 320px;
  position: relative;
  vertical-align: top;
}

.cont-dl .in-dl dt .hissu {
  line-height: 1;
  padding: 2px 8px;
  position: absolute;
  right: 0;
  background: #e9913b;
  font-size: 13px;
  color: #fff;
}

.cont-dl .in-dl dd {
  width: 760px;
}

.cont-dl .in-dl dd input[type="text"],
.cont-dl .in-dl dd input[type="num"] {
  width: 100%;
  padding: 5px;
  border: solid #ccc 1px;
  background: #fff;
  box-sizing: border-box;
}

.cont-dl .in-dl dd textarea {
  border: solid #ccc 1px;
  width: 100%;
  height: 200px;
  background: #fff;
}

.cont-dl .in-dl dd #pc01,
.cont-dl .in-dl dd #pc02 {
  margin-bottom: 10px;
}

.cont-dl .in-dl dd #pc01 {
  width: 60px !important;
}

.cont-dl .in-dl dd #pc02 {
  width: 80px !important;
}

.cont-dl .in-dl .error-text {
  color: #f44336;
}

.contact-btn ul {
  text-align: center;
}

.contact-btn ul li {
  display: inline-block;
  position: relative;
  margin-right: 40px;
  border: solid 1px #e9913b;
}

.contact-btn ul li #form-btn {
  width: 340px;
  color: #fff;
  font-size: 18px;
  letter-spacing: 3px;
  border: none;
  cursor: pointer;
  padding: 25px 0;
  background-color: #e9913b;
  transition: 0.3s;
  font-weight: bold;
}

.contact-btn ul li:last-child {
  margin-right: 0;
}

.contact-btn ul li:hover #form-btn {
  color: #e9913b;
  background: #fff;
}

/*pagenation---------------*/
ul.pagenation {
  margin-top: 20px;
  text-align: center;
  margin-bottom: 30px;
}

ul.pagenation li {
  display: inline-block;
  margin: 0 5px;
}

ul.pagenation li a {
  font-size: 17px;
  color: #fff;
}

ul.pagenation li.current {
  font-size: 20px;
  color: #fff;
  background-color: #e9913b;
  padding: 5px 8px;
}

/*page-btn
--------------------------------------------*/
.page-btn {
  position: relative;
  margin-top: 30px;
}

.page-btn a {
  color: #fff;
  position: relative;
  font-weight: bold;
}

.page-btn .right,
.page-btn .left {
  position: absolute;
}

.page-btn .right a,
.page-btn .left a {
  font-size: 16px;
}

.page-btn .right a:before,
.page-btn .left a:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  width: 5px;
  height: 5px;
  margin-top: -5px;
  box-sizing: border-box;
}

.page-btn .left {
  left: 0;
}

.page-btn .left a {
  position: relative;
  padding-left: 20px;
}

.page-btn .left a:before {
  left: 0;
  border: solid 5px transparent;
  border-right: solid #e9913b 5px;
}

.page-btn .right {
  right: 0;
}

.page-btn .right a {
  position: relative;
  padding-right: 20px;
}

.page-btn .right a:before {
  right: 0;
  border: solid 5px transparent;
  border-left: solid #e9913b 5px;
}

/*サイトマップ
=========================================================*/
#site-map ul li {
  border-bottom: 1px solid #e9913b;
}

#site-map ul li a {
  box-sizing: border-box;
  display: block;
  padding: 15px 0 15px 35px;
  color: #fff;
  position: relative;
  font-weight: bold;
  transition: 0.3s;
}

#site-map ul li a:before {
  content: "";
  display: block;
  position: absolute;
  left: 5px;
  top: 50%;
  margin-top: -8px;
  border: solid 8px transparent;
  border-left: 8px solid #e9913b;
  transition: 0.3s;
}

#site-map ul li a:hover {
  color: #e9913b;
}

#site-map ul li a:hover:before {
  left: 10px;
}

/*プライバシーポリシー
=========================================================*/
#contents-u.privacy .privacy-box {
  margin-bottom: 50px;
}

#contents-u.privacy .privacy-box:last-child {
  margin-bottom: 0;
}

/*404
=========================================================*/
.not-found-txt {
  text-align: center;
}

.not-found-txt p {
  font-size: 16px;
  line-height: 1.8;
}

.not-found-txt p a {
  font-weight: bold;
  color: #e9913b;
}

/*リキャプチャ---------------*/
#recap-id {
  padding: 20px 0;
}

.recap-inwrap {
  width: 300px;
  margin: 0 auto 50px;
}

/*送信完了---------------*/
.send-comp {
  color: #fff;
  text-align: center;
}

.send-comp p {
  color: #fff;
  line-height: 1.5em;
}

.send-comp-ttl {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 30px;
}

/*ドロワーメニュー
------------------------------------------------------*/
