@charset "UTF-8";
/* CSS Document */
/*---------------------------------
  
  0.ボタン

  1.header

  2.index.html（HOME）
    2.1メインビジュアル-スライド
    2.2
    2.3
    2.4
    2.5

  3.common
    3.1ページタイトル
    3.2パンくずリスト
    3.3見出しデザイン
    3.4セクション中身（ul/ol/dl/table）

  4.レイアウト
    4.1内容大枠
    4.2メニューリスト
    4.3
    4.4
    4.5

---------------------------------*/
.sp_none {
  display: none;
}
/*---------------------------------

  0.ボタン

---------------------------------*/
.btn a {
  min-width: 200px;
  display: inline-block;
  padding: 15px 50px;
  color: #fff;
  background: #009245;
  border: 1px solid #009245;
  text-align: center;
}
.btn a span {
  display: inline-block;
  padding-left: 1em;
  position: relative;
}
.btn a span::before {
  content: '';
  display: block;
  width: 8px;
  height: 10px;
  background: url("../images/arrow.svg") no-repeat center;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: all .3s;
}
.btn a:hover span::before {
  background: url("../images/arrow_w.svg") no-repeat center;
}
/*---------------------------------

  1.header

---------------------------------*/
header {
  width: 100%;
  padding: 0 20px;
  background: #fff;
  transition: all .3s;
}
header .wrap {
  width: 100%;
  margin: 10px auto 0;
}
header .wrap #logo {
  width: 80%;
  margin-bottom: 30px;
}
header .wrap #logo img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
/*  
  tel blog
---------------------------------*/
header .tel {
  padding-left: 50px;
  border-left: 2px solid #000;
  transition: all .3s;
}
header .tel p {
  font-size: 2em;
  font-weight: bold;
  margin-bottom: .3em;
}
header .tel span {
  display: block;
  font-weight: normal;
}
/*  
  1070px〜トグルメニュー
---------------------------------*/
@media screen and (max-width: 1070px) {
  header {
    position: fixed;
    top: 0;
    z-index: 2;
    height: 90px;
  }
  header .wrap #gnav_main .pc_none {
    display: block;
  }
  header .wrap #gnav_main {
    width: 100%;
    display: block;
  }
  header #gnav #navTgl {
    display: none;
  }
  header #gnav .open {
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 100;
    display: block;
    width: 50px;
    height: 50px;
    background: #009245;
    -moz-transition: all 0.6s;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
  }
  header #gnav .open span {
    content: '';
    display: block;
    position: absolute;
    left: 10px;
    width: 30px;
    height: 2.2px;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    background-color: #fff;
  }
  header #gnav .open span:nth-of-type(1) {
    top: 15px;
  }
  header #gnav .open span:nth-of-type(2) {
    width: 23px;
    top: 25px;
  }
  header #gnav .open span:nth-of-type(3) {
    width: 15px;
    top: 35px;
  }
  header #gnav #navTgl:checked + .open span:nth-of-type(1) {
    display: none;
  }
  header #gnav #navTgl:checked + .open span:nth-of-type(2) {
    width: 30px;
    -moz-transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
    top: 25px;
    right: 0;
  }
  header #gnav #navTgl:checked + .open span:nth-of-type(3) {
    width: 30px;
    -moz-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    top: 25px;
    right: 0;
  }
  header #gnav label.close {
    cursor: pointer;
    position: fixed;
    top: 0px;
    right: 0;
  }
  header #gnav .close {
    pointer-events: none;
    z-index: 6;
    width: 100%;
    transition: background-color .3s;
  }
  header #navTgl:checked ~ .close {
    height: 100vh;
    position: fixed;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    pointer-events: auto;
    background-color: rgba(0, 0, 0, .4);
  }
  /* :::::: drawer menu :::::: */
  header #gnav .gnav {
    margin: 0;
    padding-bottom: 20px;
    z-index: 10;
    position: absolute;
    top: 70px;
    right: 20px;
    max-width: 500px;
    width: 91%;
    height: auto;
    background: rgba(0, 146, 69, 0.9);
    display: none;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: -webkit-transform .6s;
    transition: transform .6s;
  }
  header #gnav #navTgl:checked ~ .gnav {
    display: block;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  header #gnav .gnav ul {
    padding: 30px 20px 0;
    list-style-type: none;
    display: block;
  }
  header #gnav .gnav ul li {
    width: 100%;
    margin-bottom: 10px;
  }
  header #gnav .gnav ul li a {
    display: block;
    width: 100%;
    padding: 0.3em 1em;
    color: #fff;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid #fff;
    border-radius: 5px;
    position: relative;
    font-size: 1em;
  }
  header #gnav .gnav ul li a {
    line-height: 40px;
    margin-right: 10px;
  }
  header #gnav .gnav ul li a span {
    display: none;
  }
  header #gnav .gnav ul li a:hover {
    opacity: 1;
  }
  header #gnav .gnav .navtel {
    display: block;
    margin-top: 20px;
    text-align: center;
    color: #fff;
  }
  header #gnav .gnav .navtel p {
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  header .navinsta {
    margin: 20px auto 0;
    padding: 10px;
    width: 90%;
  }
  header .navinsta p {
    text-align: center;
  }
  header .navinsta p a {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  header .navinsta p img {
    margin-right: 10px;
    width: 50px;
  }
  header .tel, header .insta {
    display: none;
  }
  .home #mainVisual, .page #headVisual {
    margin-top: 90px;
  }
}
/*==================================================================
	2.index.html（HOME）
==================================================================*/
/*---------------------------------

	2.1 メインビジュアル-スライド

---------------------------------*/
.home #mainVisual {
  position: relative;
  padding: 0 5%;
}
.home #mainVisual .catchcopy {
  width: 80%;
  height: 300px;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
}
.home #mainVisual .catchcopy p {
  width: 100%;
  height: 50px;
  color: #fff;
  text-align: center;
  font-size: 20px;
  line-height: 1.7;
  letter-spacing: 8px;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.home #mainVisual .slider {
  overflow: hidden;
}
.home #mainVisual .slider div.img {
  width: 100%;
  height: 300px;
}
.home #mainVisual .slider div.img01 {
  background: url("../images/top.jpg") no-repeat center;
  background-size: cover;
}
.home #mainVisual .slider div.img02 {
  background: url("../images/top2.jpg") no-repeat center;
  background-size: cover;
}
.home #mainVisual .slider div.img03 {
  background: url("../images/top3.jpg") no-repeat center;
  background-size: cover;
}
.home #mainVisual .slider div.img04 {
  background: url("../images/top4.jpg") no-repeat center;
  background-size: cover;
}
/*---------------------------------

	2.3 leadtxt

---------------------------------*/
#leadtxt {
  width: 90%;
  margin: 30px auto;
  text-align: center;
}
#leadtxt p {
  margin: 1.5em 0;
  line-height: 1.8;
}
#leadtxt p br {
  display: none;
}
/*---------------------------------

	2.4 ContentBlock

---------------------------------*/
#ContentBlock {
  width: 100%;
  margin: 30px auto;
}
#ContentBlock .wrap {
  width: 100%;
  margin: 0 auto;
}
#ContentBlock .wrap .box {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}
#ContentBlock .wrap .box a {
  display: block;
}
#ContentBlock .wrap .box figure {
  width: 100%;
}
#ContentBlock .wrap .box figure figcaption {
  display: block;
  margin: 20px 0;
  color: #000;
}
#ContentBlock .wrap .box a .btn {
  width: 90%;
  display: inline-block;
  padding: 10px 50px;
  color: #fff;
  background: #009245;
  text-align: center;
  transition: all .3s;
}
#ContentBlock .wrap .box a .btn span {
  display: inline-block;
  padding-left: 1em;
  position: relative;
}
#ContentBlock .wrap .box a .btn span::before {
  content: '';
  display: block;
  width: 8px;
  height: 10px;
  background: url("../images/arrow_w.svg") no-repeat center;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: all .3s;
}
/*---------------------------------

	2.5 InfoBlock

---------------------------------*/
#InfoBlock {
  width: 100%;
  margin: 50px auto;
}
#InfoBlock .wrap {
  width: 90%;
  margin: 0 auto;
  text-align: center;
}
#InfoBlock .wrap h2 {
  margin-bottom: 30px;
  display: inline-block;
  font-size: 30px;
  color: #009245;
}
#InfoBlock .wrap h2 span {
  margin-top: .8em;
  display: block;
  font-size: 16px;
  font-weight: normal;
  color: #000;
}
#InfoBlock .wrap .box {
  width: 100%;
  text-align: left;
  border-top: 2px solid #000;
}
#InfoBlock .wrap .box dl {
  padding: 20px 0;
  border-bottom: 1px dashed #000;
}
#InfoBlock .wrap .box dl dt {
  width: 100%;
  min-width: 180px;
  font-size: 14px;
  display: block;
}
#InfoBlock .wrap .box dl dd {
  width: 100%;
  font-weight: bold;
}
#InfoBlock .wrap .box dl dd span {
  margin-top: .5em;
  font-weight: normal;
  display: block;
  font-size: 14px;
}
/*==================================================================
	3.common
==================================================================*/
/*---------------------------------

	3.1 ヘッドビジュアル

---------------------------------*/
.page #headVisual {}
.page #headVisual .visual {
  position: relative;
}
.page #headVisual .visual::before, .page #headVisual .visual::after {
  content: '';
  width: 2px;
  height: 30px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
}
.page #headVisual .visual::before {
  content: '';
  background: #fff;
  bottom: 0;
  margin: auto;
}
.page #headVisual .visual::after {
  content: '';
  background: #009245;
  bottom: -30px;
  margin: auto;
}
.page #headVisual .visual .img {
  height: 140px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.page #headVisual h2 {
  margin: 50px 2.5%;
  text-align: center;
  font-size: 25px;
  color: #009245;
}
.page #headVisual h2 span {
  margin-top: 0.8em;
  display: block;
  font-size: 12px;
  font-weight: normal;
  color: rgb(0, 0, 0);
}
/*---------------------------------

	3.2 共通スタイル

---------------------------------*/
.page h3.ttl {
  margin: 0 0 30px;
  text-align: center;
  font-size: 25px;
}
/*---------------------------------

	3.1 パンくず

---------------------------------*/
.page .breadcrumb {
  background: #fff;
  border-top: 1px solid #f2f2f2;
}
.page .breadcrumb ul {
  width: 90%;
  margin: 10px auto;
  list-style: none;
}
.page .breadcrumb ul li {
  display: inline-block;
  font-size: 14px;
}
.page .breadcrumb ul li::after {
  content: '›';
  margin: 0 3px;
  color: #ccc;
}
.page .breadcrumb ul li:last-of-type::after {
  content: none;
}
.page .breadcrumb ul li a {
  color: #009245;
}
/*==================================================================
	4. company
==================================================================*/
.page.company main section .wrap {
  max-width: 850px;
  width: 90%;
  margin: 0 auto;
}
/*---------------------------------

	3.1 会社概要

---------------------------------*/
.page.company main .greeting-block {
  margin: 70px auto;
}
.page.company main .greeting-block figure {
  margin: 2rem 0;
}
.page.company main .greeting-block figure img {
  height: auto;
}
.page.company main .greeting-block .txt {
  text-align: justify;
}
.page.company main .greeting-block .txt p + p {
  margin-top: .8rem;
}
.page.company main .greeting-block .txt .name {
  text-align: right;
}
.page.company main .greeting-block .txt .name strong {
  font-size: 120%;
}
.page.company main .outline-block {
  margin: 70px auto;
}
.page.company main .outline-block .wrap table {
  width: 100%;
}
.page.company main .outline-block .wrap table th, .page.company main .outline-block .wrap table td {
  padding: 20px 5px 20px 10px;
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
  line-height: 1.8;
}
.page.company main .outline-block .wrap table th {
  width: 25%;
  border-top: 2px solid #009245;
  border-bottom: 2px solid #009245;
}
.page.company main .outline-block .wrap table td {
  border-top: 2px solid #ccc;
  border-bottom: 2px solid #ccc;
}
.page.company main .outline-block .wrap .privacy h2 {
  margin: 10px 0px;
  font-size: 140%;
}
.page.company main .outline-block .wrap .privacy h3 {
  margin: 10px 0px;
  font-size: 120%;
}
.page.company main .outline-block .wrap .privacy ol {
  margin-left: 30px;
}
.page.company main .outline-block .wrap .privacy ol li {
  line-height: 200%;
}
.page.company main .outline-block .wrap .privacy p.underline {
  text-decoration: underline;
  margin-bottom: 5px;
}
.page.company main .outline-block .wrap .privacy table {
  width: 100%;
  margin: 10px 0px;
}
.page.company main .outline-block .wrap .privacy table th, .page.company main .outline-block .wrap .privacy table td {
  padding: 5px;
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
  line-height: 1.8;
}
.page.company main .outline-block .wrap .privacy table th {
  border-top: 0;
  border-bottom: 0;
  text-align: center;
  border-bottom: 1px solid #009245;
}
.page.company main .outline-block .wrap .privacy table td {
  border-top: 0;
  border-bottom: 0;
  border-bottom: 1px solid #ccc;
}
/*---------------------------------

	3.1 沿革

---------------------------------*/
.page.company main .history-block {
  padding: 70px 0;
  background: #eee;
}
.page.company main .history-block .wrap ul {
  padding: 5px 0;
  position: relative;
  list-style: none;
}
.page.company main .history-block .wrap ul::before {
  content: '';
  width: 5px;
  height: 100%;
  background: #ccc;
  position: absolute;
  top: 0;
  left: 150px;
}
.page.company main .history-block .wrap ul li {
  margin: 20px 0 40px;
  position: relative;
  z-index: 1;
}
.page.company main .history-block .wrap ul li div {
  display: flex;
  line-height: 1;
  margin-bottom: 20px;
}
.page.company main .history-block .wrap ul li .y {
  min-width: 85px;
  font-weight: bold;
}
.page.company main .history-block .wrap ul li .m {
  min-width: 50px;
  font-weight: bold;
  color: #888;
}
.page.company main .history-block .wrap ul li .mark {
  display: block;
  margin: 0 20px 0 10px;
  min-width: 15px;
  height: 15px;
  background: #009245;
  border: 2px solid #eee;
  border-radius: 50%;
}
.page.company main .history-block .wrap ul li .ev {
  line-height: 1.3;
}
/*---------------------------------

	3.1 所在地

---------------------------------*/
.page.company main .location-block {
  margin: 50px auto;
}
.page.company main .location-block .wrap {}
.page.company main .location-block .wrap .h_office a span {
  display: inline-block;
  padding: 15px 30px;
  color: #fff;
  border: 1px solid;
}
.page.company main .location-block .wrap .item {
  width: 100%;
  margin-bottom: 10px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.page.company main .location-block .wrap .item a {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
}
.page.company main .location-block .wrap .item a span {
  display: inline-block;
  padding: 15px 30px;
  color: #fff;
  border: 1px solid;
}
/*---------------------------------

	3.1 各事業所詳細

---------------------------------*/
.page.office #headVisual .visual .img {
  height: 200px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.page.office main section {
  margin-bottom: 70px;
}
.page.office main section .wrap.address {
  padding: 30px 20px;
  background: #eee;
  text-align: center;
  margin-bottom: 70px;
}
.page.office main section .wrap dl {
  margin-bottom: 20px;
}
.page.office main section .wrap dl dt {
  margin-bottom: 10px;
  font-weight: bold;
  color: #009245;
}
.page.office main section .wrap dl dd {}
.page.office main section .wrap iframe {
  width: 100%;
  height: 350px;
  margin: 30px 0 0;
}
.page.office main section .wrap table {
  width: 100%;
  margin: 0 auto 15px;
  border-top: 1px solid #aaa;
}
.page.office main section .wrap table th, .page.office main section .wrap table td {
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid #aaa;
  display: block;
}
.page.office main section .wrap table th {
  width: 100%;
  padding: 10px 10px 10px 10px;
  border-bottom: 1px dashed #ccc;
  background: #eee;
  color: #555;
}
.page.office main section .wrap table td {
  padding: 20px 10px;
}
.page.office main section .wrap table td ul {
  margin-left: 1.3em;
}
.page.office main section .wrap table + p {
  text-align: left;
}
/*
事業所メニュー
-----------*/
.page.office main .location-block-menu {
  background: #eee;
  padding: 50px 0;
  margin: 70px auto 0;
}
.page.office main .location-block-menu .wrap {}
.page.office main .location-block-menu .wrap .item {
  width: 100%;
  margin: 10px auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.page.office main .location-block-menu .wrap .item a {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
}
.page.office main .location-block-menu .wrap .item a span {
  display: inline-block;
  color: #fff;
}
/*---------------------------------

	3.1 採用

---------------------------------*/
.page.company main .recruit-block {
  margin: 70px auto;
}
.page.company main .recruit-block .wrap table {
  width: 100%;
}
.page.company main .recruit-block .wrap table th, .page.company main .recruit-block .wrap table td {
  padding: 20px 5px 20px 10px;
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
  line-height: 1.8;
}
.page.company main .recruit-block .wrap table th {
  width: 25%;
  border-top: 2px solid #009245;
  border-bottom: 2px solid #009245;
}
.page.company main .recruit-block .wrap table td {
  border-top: 2px solid #ccc;
  border-bottom: 2px solid #ccc;
}
.page.company main .recruit-block .wrap .privacy h2 {
  margin: 10px 0px;
  font-size: 140%;
}
.page.company main .recruit-block .wrap .privacy h3 {
  margin: 10px 0px;
  font-size: 120%;
}
.page.company main .recruit-block .wrap .privacy ol {
  margin-left: 30px;
}
.page.company main .recruit-block .wrap .privacy ol li {
  line-height: 200%;
}
.page.company main .recruit-block .wrap .privacy p.underline {
  text-decoration: underline;
  margin-bottom: 5px;
}
.page.company main .recruit-block .wrap .privacy table {
  width: 100%;
  margin: 10px 0px;
}
.page.company main .recruit-block .wrap .privacy table th, .page.company main .recruit-block .wrap .privacy table td {
  padding: 5px;
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
  line-height: 1.8;
}
.page.company main .recruit-block .wrap .privacy table th {
  border-top: 0;
  border-bottom: 0;
  text-align: center;
  border-bottom: 1px solid #009245;
}
.page.company main .recruit-block .wrap .privacy table td {
  border-top: 0;
  border-bottom: 0;
  border-bottom: 1px solid #ccc;
}
/*==================================================================
	5. business
==================================================================*/
/*---------------------------------

	5.1 ContentBlock

---------------------------------*/
.page.business .ContentBlock {
  width: 100%;
  margin: 70px auto;
}
.page.business .ContentBlock .wrap {
  width: 100%;
  margin: 0 auto;
}
.page.business .ContentBlock .wrap .box {
  width: 100%;
  text-align: center;
  margin-bottom: 50px;
}
.page.business .ContentBlock .wrap .box a {
  display: block;
}
.page.business .ContentBlock .wrap .box figure {
  width: 100%;
}
.page.business .ContentBlock .wrap .box figure figcaption {
  display: block;
  margin: 20px 0;
  color: #000;
}
.page.business .ContentBlock .wrap .box .txtbox {
  width: 90%;
  margin: 10px auto 0;
  color: #000;
  text-align: center;
}
.page.business .ContentBlock .wrap .box .txtbox h3 {
  font-size: 25px;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 10px;
  color: #009245;
}
.page.business .ContentBlock .wrap .box a .btn {
  width: 100%;
  max-width: 350px;
  display: block;
  margin: 20px 0 0;
  padding: 10px 50px;
  color: #009245;
  border: 1px solid #009245;
  text-align: center;
  transition: all .3s;
}
.page.business .ContentBlock .wrap .box a .btn span {
  display: inline-block;
  padding-left: 1em;
  position: relative;
}
.page.business .ContentBlock .wrap .box a .btn span::before {
  content: '';
  display: block;
  width: 8px;
  height: 10px;
  background: url("../images/arrow.svg") no-repeat center;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: all .3s;
}
.page.business .ContentBlock .wrap .box a:hover .btn {
  color: #fff;
  background: #009245;
  border: 1px solid #009245;
}
.page.business .ContentBlock .wrap .box a:hover .btn span::before {
  background: url("../images/arrow_w.svg") no-repeat center;
}
/*==================================================================
	6. アッセンブリー&ピッキング
==================================================================*/
.page.bu-sabpage .ContentBlock {
  width: 100%;
  margin: 70px auto;
}
.page.bu-sabpage .ContentBlock .wrap {
  width: 90%;
  max-width: 850px;
  margin: 0 auto 70px;
}
/*---------------------------------

	6.1 assembly

---------------------------------*/
/*
 物流加工 / 業務請負
---------------------------------*/
.page.assembly .ContentBlock .wrap.con1 ul {
  margin: 30px 0;
  list-style: none;
}
.page.assembly .ContentBlock .wrap.con1 ul li {
  width: 100%;
  padding: 20px;
  margin-bottom: 2%;
  border: 3px double #009245;
}
.page.assembly .ContentBlock .wrap.con1 ul li strong {
  display: inline-block;
  background: #009245;
  color: #fff;
  padding: 2px 10px;
  margin-bottom: 5px;
}
.page.assembly .ContentBlock .wrap.con1 dl {
  width: 100%;
  padding: 25px 20px 20px;
  margin-top: 5%;
  border: 2px solid #009245;
  position: relative;
  text-align: center;
  color: #009245;
}
.page.assembly .ContentBlock .wrap.con1 dl dt {
  font-weight: bold;
  font-size: 18px;
  width: 300px;
  background: #fff;
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  margin: auto;
}
/*
 生産体制
---------------------------------*/
.page.assembly .ContentBlock .wrap.con2 .inner {
  margin: 30px 0;
  list-style: none;
}
.page.assembly .ContentBlock .wrap.con2 .inner .box {
  margin-bottom: 20px;
}
.page.assembly .ContentBlock .wrap.con2 .inner .box ul {
  margin-left: 1em;
}
.page.assembly .ContentBlock .wrap.con2 .inner .box h4 {
  background: #009245;
  color: #fff;
  padding: 5px 10px;
  margin-bottom: 10px;
}
.page.assembly .ContentBlock .wrap.con2 .inner .box figure {
  width: 100%;
  margin-top: 20px;
}
.page.assembly .ContentBlock .wrap.con2 .flow {
  margin: 50px auto 0;
}
/*
 所有設備
---------------------------------*/
.page.assembly .ContentBlock .wrap.con3 div {
  margin-bottom: 40px;
}
.page.assembly .ContentBlock .wrap.con3 h4 {
  font-weight: bold;
  font-size: 20px;
  padding-left: 1em;
  margin-bottom: 20px;
  position: relative;
  line-height: 1.5;
}
.page.assembly .ContentBlock .wrap.con3 h4::before, .page.assembly .ContentBlock .wrap.con3 h4::after {
  content: '';
  width: 5px;
  height: 30px;
  background: #009245;
  position: absolute;
  top: 0;
  left: 0;
}
.page.assembly .ContentBlock .wrap.con3 h4::after {
  background: #8CC63F;
  left: 5px;
}
.page.assembly .ContentBlock .wrap.con3 table {
  width: 100%;
  margin-bottom: 20px;
}
.page.assembly .ContentBlock .wrap.con3 table th, .page.assembly .ContentBlock .wrap.con3 table td {
  padding: 10px 10px;
  border: 1px solid #aaa;
  vertical-align: middle;
}
.page.assembly .ContentBlock .wrap.con3 table th {
  background: #eee;
  color: #555;
}
.page.assembly .ContentBlock .wrap.con3 table th:nth-child(odd) {
  width: 23%;
}
.page.assembly .ContentBlock .wrap.con3 table th:nth-child(even) {
  width: 85px;
}
.page.assembly .ContentBlock .wrap.con3 table td {}
.page.assembly .ContentBlock .wrap.con3 table td:nth-child(even) {
  text-align: center;
}
/*tableをスクロールさせる*/
/*tableのセル内にある文字の折り返しを禁止*/
.page.assembly .ContentBlock .wrap.con3 table {
  overflow: auto;
  white-space: nowrap;
  display: block;
  width: auto;
}
.page.assembly .ContentBlock .wrap.con3 table tbody {
  width: 100%;
  display: table;
}
/*tableにスクロールバーを追加*/
.page.assembly .ContentBlock .wrap.con3 table::-webkit-scrollbar {
  height: 5px;
}
/*tableにスクロールバーを追加*/
.page.assembly .ContentBlock .wrap.con3 table::-webkit-scrollbar-track {
  background: #F1F1F1;
}
/*tableにスクロールバーを追加*/
.page.assembly .ContentBlock .wrap.con3 table::-webkit-scrollbar-thumb {
  background: #BCBCBC;
}
/*
 一連の工程を自社内で管理。
一括管理により細かい指定も可能。
---------------------------------*/
.page.assembly .ContentBlock .wrap.con4 div {
  margin-bottom: 40px;
}
.page.assembly .ContentBlock .wrap.con4 h3 {
  line-height: 1.5;
}
.page.assembly .ContentBlock .wrap.con4 h4 {
  font-weight: bold;
  font-size: 18px;
  padding-left: 1em;
  margin-bottom: 20px;
  position: relative;
  line-height: 1.5;
}
.page.assembly .ContentBlock .wrap.con4 h4::before, .page.assembly .ContentBlock .wrap.con4 h4::after {
  content: '';
  width: 5px;
  height: 30px;
  background: #009245;
  position: absolute;
  top: 0;
  left: 0;
}
.page.assembly .ContentBlock .wrap.con4 h4::after {
  background: #8CC63F;
  left: 5px;
}
.page.assembly .ContentBlock .wrap.con4 ul {
  list-style: none;
}
.page.assembly .ContentBlock .wrap.con4 ul li {
  width: 100%;
  text-align: center;
  padding: 10px;
  margin-bottom: 5px;
  border: 3px double #009245;
}
/*---------------------------------

	6.2 picking

---------------------------------*/
.page.picking .ContentBlock .wrap h3 {
  font-size: 20px;
  padding: 0 0 10px 70px;
  border-bottom: 2px solid #ccc;
  margin-bottom: 30px;
  position: relative;
}
.page.picking .ContentBlock .wrap h3::before {
  content: '';
  width: 60px;
  height: 35px;
  background: url("../images/ttl_deco.png") no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  bottom: 0;
}
.page.picking .ContentBlock .wrap figure {
  margin-bottom: 20px;
}
.page.picking .ContentBlock .wrap figure div {
  width: 100%;
  height: 0;
  padding-top: 50%;
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
}
.page.picking .ContentBlock .wrap .inner {}
.page.picking .ContentBlock .wrap .inner .txtbox {
  width: 100%;
  margin-bottom: 20px;
}
.page.picking .ContentBlock .wrap .inner .txtbox .btn, .page.picking .ContentBlock .wrap .inner .txtbox .btn a {
  margin-top: 20px;
  width: 100%;
  display: block;
}
.page.picking .ContentBlock .wrap .inner table {
  width: 100%;
  border-top: 1px solid #aaa;
}
.page.picking .ContentBlock .wrap .inner table th, .page.picking .ContentBlock .wrap .inner table td {
  padding: 10px 10px 10px 10px;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid #aaa;
  display: block;
}
.page.picking .ContentBlock .wrap .inner table th {
  width: 100%;
  background: #eee;
  color: #555;
  border-bottom: 1px dashed #ccc;
}
.page.picking .ContentBlock .wrap .inner table td {
  padding: 15px 10px;
}
.page.picking .ContentBlock .wrap .inner table td ul {
  margin-left: 20px;
}
/*==================================================================
	7. Flower
==================================================================*/
.page.flower main section .wrap {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
}
/*---------------------------------

	7.1 カテゴリーメニュー

---------------------------------*/
.page.flower main .cat-menu-block {
  margin: 70px auto;
}
.page.flower main .cat-menu-block .wrap ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.page.flower main .cat-menu-block .wrap ul li {
  width: 31%;
  margin: 0 1% 20px;
}
.page.flower main .cat-menu-block .wrap ul li a {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 20px 15px;
  background: #eee;
  color: #000;
}
@media screen and (max-width: 896px) {
  .page.flower main .cat-menu-block .wrap ul li {
    width: 48%;
    margin: 0 1% 2%;
  }
}
/*---------------------------------

	7.2 商品一覧

---------------------------------*/
.page.flower main .contens-block {
  margin: 70px auto 70px;
}
.page.flower main .contens-block .con1 {
  width: 90%;
  margin: 0 auto 70px;
}
.page.flower main .contens-block .con1 h3 {
  line-height: 1.5;
}
.page.flower main .contens-block .con1 h4 {
  font-weight: bold;
  font-size: 20px;
  padding-left: 1em;
  margin: 30px 0 20px;
  position: relative;
  line-height: 1.5;
}
.page.flower main .contens-block .con1 h4::before, .page.flower main .contens-block .con1 h4::after {
  content: '';
  width: 5px;
  height: 30px;
  background: #009245;
  position: absolute;
  top: 0;
  left: 0;
}
.page.flower main .contens-block .con1 h4::after {
  background: #8CC63F;
  left: 5px;
}
.page.flower main .contens-block .con1 p {
  text-align: justify;
}
.page.flower main .contens-block .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.page.flower main .contens-block .wrap .item {
  width: 49%;
  margin: 0 0 5% 0;
}
.page.flower main .contens-block .wrap .item a {
  display: block;
}
.page.flower main .contens-block .wrap .item a .figure-img {
  width: 100%;
  height: 0;
  padding-top: 80%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.page.flower main .contens-block .wrap .item a p.ttl {
  margin-top: 10px;
  color: #000;
  font-size: 14px;
  text-align: center;
  font-weight: bold;
  word-wrap: break-word;
}
.page.flower main .contens-block .wrap .item a:hover p.ttl {
  text-decoration: underline;
}
/*フラワー事業部メイン画面*/
.page.flower main .contens-block .wrap .business_box {
  width: 100%;
  text-align: center;
  margin-bottom: 50px;
}
.page.flower main .contens-block .wrap .business_box a {
  display: block;
}
.page.flower main .contens-block .wrap .business_box figure {
  width: 100%;
}
.page.flower main .contens-block .wrap .business_box figure figcaption {
  display: block;
  margin: 20px 0;
  color: #000;
}
.page.flower main .contens-block .wrap .business_box .txtbox {
  width: 90%;
  margin: 10px auto 0;
  color: #000;
  text-align: center;
}
.page.flower main .contens-block .wrap .business_box .txtbox h3 {
  font-size: 25px;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 10px;
  color: #009245;
}
.page.flower main .contens-block .wrap .business_box a .btn {
  width: 100%;
  max-width: 350px;
  display: block;
  margin: 20px 0 0;
  padding: 10px 50px;
  color: #009245;
  border: 1px solid #009245;
  text-align: center;
  transition: all .3s;
}
.page.flower main .contens-block .wrap .business_box a .btn span {
  display: inline-block;
  padding-left: 1em;
  position: relative;
}
.page.flower main .contens-block .wrap .business_box a .btn span::before {
  content: '';
  display: block;
  width: 8px;
  height: 10px;
  background: url("../images/arrow.svg") no-repeat center;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: all .3s;
}
.page.flower main .contens-block .wrap .business_box a:hover .btn {
  color: #fff;
  background: #009245;
  border: 1px solid #009245;
}
.page.flower main .contens-block .wrap .business_box a:hover .btn span::before {
  background: url("../images/arrow_w.svg") no-repeat center;
}
/* モーダルを表示させたらスクロールバーを消す */
body.no-scroll {
  overflow: hidden;
}
.page.flower main .modal {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
}
/* 背景 */
.page.flower .remodal {
  max-width: 1000px;
  padding: 60px 20px 30px;
}
.page.flower .remodal h3 {
  padding: 20px 10px;
  margin-bottom: 20px;
  font-size: 20px;
  background: #eee;
  text-align: left;
}
.page.flower .remodal .wrap {}
.page.flower .remodal figure {
  width: 100%;
}
.page.flower .remodal figure .img {
  width: 100%;
  height: 300px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.page.flower .remodal .txtbox {
  width: 100%;
  margin-top: 20px;
}
.page.flower .remodal .txt {
  font-size: 16px;
  text-align: justify;
  line-height: 1.7;
}
.page.flower .remodal table {
  width: 100%;
  margin-top: 20px;
  text-align: left;
}
.page.flower .remodal table th, .page.flower .remodal table td {
  padding: 15px 10px;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  vertical-align: middle;
}
.page.flower .remodal table th {
  width: 30%;
  min-width: 110px;
  border-right: 1px solid #ccc;
}
.page.flower .remodal .close {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0px;
  right: 0px;
  background: #2B2E38;
}
.page.flower .remodal .close a {
  display: block;
  width: 100%;
  height: 100%;
  background: url("../images/903_x_f.svg") no-repeat;
}
/* ページャー */
section #info_number {
  list-style: none;
  text-align: center;
  margin-top: 50px;
}
section #info_number li {
  display: inline-block;
  min-width: 45px;
}
section #info_number li .page-numbers.current {
  background: #eee;
  border-radius: 50%;
  color: #009344;
  font-weight: 600;
}
section #info_number li .page-numbers {
  color: #999;
  display: block;
  padding: 10px;
}
/*==================================================================
	8.ContactBlock
==================================================================*/
#ContactBlock {
  width: 100%;
}
#ContactBlock .box {
  width: 100%;
  text-align: center;
}
#ContactBlock .box.tel {
  background: url("../images/contact_1.jpg") no-repeat center;
  background-size: cover;
}
#ContactBlock .box.mail {
  background: url("../images/contact_2.jpg") no-repeat center;
  background-size: cover;
}
#ContactBlock .box .wrap {
  height: 100%;
  padding: 50px 0;
  color: #fff;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
  background: rgba(0, 0, 0, 0.3);
}
#ContactBlock .box .wrap h2 {
  font-size: 20px;
  margin-bottom: 40px;
  position: relative;
}
#ContactBlock .box .wrap h2::after {
  content: '';
  width: 50px;
  height: 5px;
  background: #fff;
  border-radius: 20px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -20px;
  margin: auto;
}
#ContactBlock .box .wrap span {
  font-size: .8em;
}
#ContactBlock .box .wrap .mailbtn a {
  display: inline-block;
  width: 200px;
  padding: 10px;
  background: #fff;
  color: #000;
  border: 1px solid #fff;
  text-shadow: none;
}
/*==================================================================
	8.footer
==================================================================*/
/*---------------------------------

	8.1

---------------------------------*/
footer .wrap {
  width: 90%;
  max-width: 1100px;
  margin: 50px auto;
}
footer .wrap .inner {
  padding: 0 0 20px;
  align-items: center;
  border-bottom: 1px solid #000;
}
footer .wrap .inner .F-block-L {
  width: 100%;
}
footer .wrap .inner .F-block-L .logo {
  display: block;
  width: 200px;
  margin-right: 30px;
}
footer .wrap .inner .F-block-L .logo img {
  width: 100%;
}
footer .wrap .inner .F-block-L p {
  display: block;
}
#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
}
#page-top a {
  background: #009245;
  text-decoration: none;
  color: #fff;
  width: 50px;
  height: 50px;
  text-align: center;
  display: block;
  border-radius: 50%;
  position: relative;
  font-size: 10px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
#page-top a::before {
  content: '';
  width: 10px;
  height: 6px;
  background: url("../images/pagetop_arrow.svg") no-repeat;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transition: all .3s;
}
#page-top a:hover {
  opacity: 1;
  text-decoration: none;
  background: #1E5A82;
}
#page-top a:hover::before {
  top: -10px;
}
footer .wrap .copy {
  padding: 30px 0 0;
}
footer .wrap .copy small {
  font-size: 12px;
}

/* additional */
.rec_dl__item {
  margin-bottom: 1rem;
}
.rec_dl__item:last-child {
  margin-bottom: 0;
}
.page.company main .recruit-block .wrap table th {
  vertical-align: top;
}
.img_heigh_sp {
  height: 35vw !important;
}
@media screen and (max-width: 1070px) {
.img_heigh_sp {
  height: 45vw !important;
}
}