@charset "UTF-8";

/*==========================================
PC共通
===========================================*/
html {
  font-size: 62.5%;
}

body {
  width: 100%;
  margin: 0 auto;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  color: #333;
  line-height: 1.8;
  text-align: center;
  letter-spacing: .08em;
  font-size: 1.6rem;
  word-break: break-all;
  background: #dcdcdc;
}

#wrapper {
  min-width: 1200px;
}

/*==========================================
PC表示で電話番号リンクを無効
===========================================*/
a[href^="tel:"] {
  pointer-events: none;
}

/*==========================================
サイトの標準横幅と内部余白
===========================================*/
.inbox {
  width: 1080px;
  margin: 0 auto;
}

.com-pd {
  padding: 115px 0;
}

.com-pt {
  padding-top: 115px;
}

.com-pb {
  padding-bottom: 115px;
}

.com-mb {
  margin-bottom: 115px;
}

/*==========================================
PC非表示
===========================================*/
.pc-none {
  display: none !important;
}

/*==========================================
パンくずリスト
===========================================*/
div .bread {
  font-size: 10px;
  text-align: left;
  position: relative;
  z-index: 1;
}
div .bread .breadcrumbs {
  position: absolute;
  width: 1080px;
  margin: 0 auto;
  left: 0;
  top: 10px;
}
div .bread li {
  display: inline-block;
  color: #fff;
  text-shadow: 1px 1px #000;
}
div .bread li:after {
  content: " > ";
  padding: 0 2px;
  color: #fff;
}
div .bread li:last-child:after {
  content: "";
}
div .bread li a {
  color: #fff;
}

/*==========================================
float
===========================================*/
.fl-l {
  float: left;
}

.fl-r {
  float: right;
}

/*==========================================
Flexbox
===========================================*/
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/*折り返し
-----------------------*/
.flx-wrp {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

/*逆順
-----------------------*/
.flx-rr {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

/*水平方向の揃え
=================================================*/
/*初期値
-----------------------*/
.flx-strt {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}

/*並列で均等配置（左右隙間なし=space-between）
-----------------------*/
.flx-btw {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/*並列で均等配置（左右隙間あり=space-around）
-----------------------*/
.flx-ard {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

/*水平揃え　末揃え
-----------------------*/
.flx-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

/*水平揃え　中央揃え
-----------------------*/
.flx-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/*垂直方向の揃え
=================================================*/
/*水平揃え　上揃え
-----------------------*/
.flx-alitem-strt {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

/*水平揃え　高さ揃え
-----------------------*/
.flx-alitem-strch {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

/*水平揃え　縦・横の中央揃え
-----------------------*/
.flx-alitem-c {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/*水平揃え　下揃え
-----------------------*/
.flx-alitem-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

/*水平揃え　ベースライン揃え
-----------------------*/
.flx-alitem-base {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

/*複数行にした揃え方
=================================================*/
/*初期値
-----------------------*/
.flx-alcont-strt {
  -ms-flex-line-pack: start;
      align-content: flex-start;
}

/*親要素の開始位置から配置。上揃え
-----------------------*/
.flx-alcont-strch {
  -ms-flex-line-pack: stretch;
      align-content: stretch;
}

/*親要素の終点から配置。下揃え
-----------------------*/
.flx-alcont-end {
  -ms-flex-line-pack: end;
      align-content: flex-end;
}

/*中央揃え
-----------------------*/
.flx-alcont-c {
  -ms-flex-line-pack: center;
      align-content: center;
}

/*最初と最後の子要素を上下の端に配置し、残りの要素は均等に間隔をあけて配置
-----------------------*/
.flx-alcont-s-btw {
  -ms-flex-line-pack: justify;
      align-content: space-between;
}

/*上下端にある子要素も含め、均等に間隔をあけて配置
-----------------------*/
.flx-alcont-s-ard {
  -ms-flex-line-pack: distribute;
      align-content: space-around;
}

.flex-order-1 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.flex-order-2 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

/*==========================================
スマホ用ドロワー無効
===========================================*/
.drawer_menu {
  display: none;
}

#nav-toggle,
#global-nav {
  display: none;
}

.drawer_menu {
  display: none;
}

/*==========================================
header
===========================================*/
#header {
  padding: 0 0 10px 30px;
}
#header h1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 165px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#header .hd-right {
  width: 735px;
}
#header .hd-right .hd-right_l {
  width: 605px;
  padding: 15px 0 0 0px;
}
#header .hd-right .hd-right_l .num {
  font-size: 2.6rem;
  color: #007634;
  display: block;
  text-align: right;
}
#header .hd-right .hd-right_l .num small {
  font-size: 1.8rem;
  margin-right: 5px;
}
#header .hd-right .entry-btn {
  display: block;
  width: 100px;
  height: 100px;
  background: url(../img/common/hd-mail_icon.png) top 20px center no-repeat, #007634;
  color: #fff;
  font-size: 2rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 55px 0 0 0;
}

/*==========================================
nav
===========================================*/
nav > ul li {
  font-size: 1.4rem;
  font-weight: 700;
}
nav > ul li a {
  padding: 5px 31.5px;
  display: block;
}
nav > ul > li:nth-child(1) a {
  padding-left: 0;
}
nav > ul > li:nth-child(5) a {
  padding-right: 0;
}
nav > ul > li > a:hover {
  color: #007634;
  opacity: 1;
}
nav .parent-nav {
  position: relative;
}
nav .parent-nav .child-nav {
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -70px;
  background: #007634;
  opacity: 0;
  -webkit-transition: all .3s;
  transition: all .3s;
  z-index: 100;
}
nav .parent-nav .child-nav li a {
  color: #fff;
  padding: 5px;
}
nav .parent-nav:hover > a {
  background: #007634;
  color: #fff;
  position: relative;
}
nav .parent-nav:hover > a:after {
  width: 10px;
  height: 1px;
  background: #fff;
  position: absolute;
  content: '';
  right: 15px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  z-index: 1;
}
nav .parent-nav:hover .child-nav {
  opacity: 1;
}

/*==========================================
メインビジュアル
===========================================*/
#mv {
  position: relative;
  height: 42.708vw;
  max-height: 820px;
  z-index: 1;
}
#mv:before {
  position: absolute;
  content: '';
  width: 77.60416%;
  height: 36.979vw;
  max-height: 710px;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#60ad82+0,007634+100 */
  background: #60ad82;
  /* Old browsers */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, right top, from(#60ad82), to(#007634));
  background: linear-gradient(to right, #60ad82 0%, #007634 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#60ad82', endColorstr='#007634',GradientType=1 );
  /* IE6-9 */
  left: 0;
  bottom: 0;
  z-index: -1;
}
#mv #top-slider {
  height: 37.4995vw;
  position: relative;
}
#mv #top-slider li {
  height: 100%;
}
#mv #top-slider li:nth-child(1) {
  background: url(../img/top/mv/slide01.png) center no-repeat;
  background-size: cover;
}
#mv #top-slider li:nth-child(2) {
  background: url(../img/top/mv/slide02.png) center no-repeat;
  background-size: cover;
}
#mv #top-slider li:nth-child(3) {
  background: url(../img/top/mv/slide03.png) center no-repeat;
  background-size: cover;
}
#mv #top-slider li:nth-child(4) {
  background: url(../img/top/mv/slide04.png) center no-repeat;
  background-size: cover;
}
#mv .bx-wrapper {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
#mv .bx-viewport {
  overflow: visible !important;
  margin: auto;
  text-align: center;
}
#mv .bx-pager {
  display: none;
}
#mv .bx-wrapper {
  width: 88.4375%;
  margin: 0 0 0 auto;
}
#mv .bx-wrapper .bx-viewport {
  height: 37.4995vw;
}
#mv h2 {
  width: 60.8333%;
  position: absolute;
  left: 2.6041%;
  bottom: 11.7vw;
  z-index: 100;
}

/*==========================================
共通ブロック・要素
===========================================*/
.txt-blc {
  text-align: left;
}
.txt-blc p {
  margin-bottom: 30px;
  line-height: 1.8;
}
.txt-blc p:last-child {
  margin-bottom: 0;
}

#g-map h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}
#g-map h4 span {
  padding-left: 20px;
}
#g-map .map {
  height: 400px;
}
#g-map .map iframe {
  width: 100%;
  height: 100%;
}

.more-btn {
  display: block;
  background: #151515;
  border: 1px solid #151515;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff;
  text-align: center;
  position: relative;
  padding: 12px 5px;
  font-weight: 700;
}
.more-btn:after {
  position: absolute;
  content: '';
  width: 60px;
  height: 1px;
  background: #fff;
  right: -30px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  z-index: 1;
}
.more-btn:hover {
  opacity: 1;
  background: #fff;
  color: #151515;
}
.more-btn:hover:after {
  right: 0;
}

/*==========================================
テーブルレイアウト
===========================================*/
.com-dl > dl {
  margin-bottom: 10px;
  padding: 15px 0;
}
.com-dl > dl:last-child {
  margin-bottom: 0;
}
.com-dl > dl:nth-child(odd) {
  background: #f0f7f3;
}
.com-dl > dl:nth-child(even) {
  background: #d7ebe0;
}
.com-dl > dl > dt, .com-dl > dl > dd {
  display: table-cell;
  vertical-align: middle;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
}
.com-dl > dl > dt {
  padding: 0 10px;
  width: 235px;
  text-align: center;
  vertical-align: top;
}
.com-dl > dl > dd {
  padding: 0 20px;
}
.com-dl > dl > dd a[href^="mailto:"] {
  text-decoration: underline;
}

/*==========================================
トップページ
===========================================*/
/*----------------------------
街づくりの一歩となる仕事を始めよう
-----------------------------*/
#top-greeting {
  padding: 135px 0 110px 0;
  position: relative;
  z-index: 1;
  background: url(../img/top/greeting.png) top 2.5vw right 2.343%/45.5729% no-repeat;
}
#top-greeting .txt-blc {
  width: 745px;
  margin-bottom: 85px;
  background: url(../img/top/greeting-box_deco.png) left top no-repeat, #fff;
  padding: 61px 40px 71px 75px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-left: auto;
  position: relative;
  z-index: 1;
  font-weight: 500;
}
#top-greeting .txt-blc:before {
  position: absolute;
  content: '';
  background: url('../img/top/greeting-box_bdr.png?1682493556');
  width: 522px;
  height: 20px;
  background-size: 100%;
  top: auto;
  right: auto;
  bottom: -20px;
  left: 0;
  background-repeat: no-repeat;
  -webkit-transition: all .3s;
  transition: all .3s;
  width: 553px;
}
#top-greeting .txt-blc:after {
  position: absolute;
  content: '';
  background: url('../img/top/greeting-box_bg.png?1682493557');
  width: 561px;
  height: 780px;
  background-size: 100%;
  top: 0;
  right: -369px;
  bottom: auto;
  left: auto;
  background-repeat: no-repeat;
  -webkit-transition: all .3s;
  transition: all .3s;
  z-index: -1;
}
#top-greeting .txt-blc h3 {
  font-size: 5rem;
  color: #007634;
  font-weight: 700;
  position: relative;
  line-height: 1.5;
  letter-spacing: .1em;
  padding-bottom: 25px;
  margin-bottom: 30px;
}
#top-greeting .txt-blc h3:after {
  width: 40px;
  height: 1px;
  background: #007634;
  left: 0;
  bottom: 0;
  position: absolute;
  content: '';
}
#top-greeting .txt-blc h3 span {
  position: absolute;
  font-size: 3rem;
  background: #151515;
  color: #fff;
  padding: 0 15px;
  top: -70px;
  left: -105px;
}
#top-greeting .txt-blc p span {
  font-weight: 700;
  font-size: 2.4rem;
}
#top-greeting .more-btn {
  width: 275px;
  margin: 0 auto;
}
#top-greeting .img-blc {
  position: absolute;
  width: 48.64583%;
  left: 0;
  top: 5vw;
  z-index: -1;
}

/*----------------------------
働き方を知る
数字で見るSSC
-----------------------------*/
#top-data {
  padding: 80px 0 105px 0;
  background: url(../img/top/work.png) right 5.2083% top 80px/8.8541% no-repeat, url(../img/top/work-shape.png) right top/10.26041% no-repeat, url(../img/top/work-bg.png) center/cover no-repeat;
}
#top-data h3 {
  margin-bottom: 80px;
  color: #fff;
  font-size: 5rem;
  font-weight: 700;
  letter-spacing: .1em;
  background: url(../img/top/work-ttl_bdr.png) left top 42px no-repeat, url(../img/top/work-ttl_bdr.png) right top 42px no-repeat;
}
#top-data h3 span {
  background: #004e22;
  color: #fff;
  font-size: 3.6rem;
  padding: 5px 25px;
}
#top-data .more-btn {
  width: 275px;
  margin: 80px auto 0 auto;
}

.data-wrp li {
  position: relative;
  margin-bottom: 25px;
}
.data-wrp li:last-child {
  margin-bottom: 0;
}
.data-wrp li:before {
  position: absolute;
  content: '';
  background: url('../img/top/work-box_shape.png?1682493564');
  width: 56px;
  height: 56px;
  background-size: 100%;
  top: -8px;
  right: -8px;
  bottom: auto;
  left: auto;
  background-repeat: no-repeat;
  -webkit-transition: all .3s;
  transition: all .3s;
}

/*----------------------------
採用情報 / 会社概要
-----------------------------*/
#recruit-company {
  padding: 105px 0;
  background: url(../img/top/recruit-company-bg.png) left center no-repeat;
}
#recruit-company .wrp li {
  width: 530px;
}
#recruit-company .wrp li a {
  height: 295px;
  display: block;
  position: relative;
}
#recruit-company .wrp li:first-child a {
  background: url(../img/top/recruit.png) left 20px bottom 30px no-repeat, url(../img/top/recruit-img.png) center/cover no-repeat;
}
#recruit-company .wrp li:last-child a {
  background: url(../img/top/company.png) left 20px bottom 30px no-repeat, url(../img/top/company-img.png) center/cover no-repeat;
}
#recruit-company .wrp li span {
  width: 250px;
  background: #007634;
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  letter-spacing: .1em;
}
#recruit-company .wrp li span:before {
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 9px;
  border-color: transparent transparent transparent #fff;
  top: 0;
  bottom: 0;
  right: 25px;
  margin: auto 0;
}

/*----------------------------
お知らせ
-----------------------------*/
#top-news {
  padding: 75px 0;
  background: url(../img/top/news.png) left 5.72916% top 70px/21.875% no-repeat, url(../img/top/news-shape.png) right top no-repeat;
}
#top-news .inbox {
  position: relative;
}
#top-news .news-wrp {
  min-height: 295px;
}
#top-news .news-wrp h3 {
  text-align: left;
  font-size: 5rem;
  font-weight: 700;
  letter-spacing: .1em;
}
#top-news .news-wrp .news-lists {
  width: 760px;
}
#top-news .news-wrp .news-lists article {
  text-align: left;
  border-bottom: 1px solid #acacac;
}
#top-news .news-wrp .news-lists article:last-child {
  border-bottom: none;
}
#top-news .news-wrp .news-lists a {
  padding: 15px 0;
  background: #dcdcdc;
}
#top-news .news-wrp .news-lists time {
  width: 110px;
  color: #acacac;
  font-weight: 500;
}
#top-news .news-wrp .news-lists .category-label {
  width: 645px;
}
#top-news .news-wrp .news-lists .category-label li {
  background: #151515;
  color: #fff;
  margin: 0 5px 5px 0;
  padding: 0 15px;
}
#top-news .news-wrp .news-lists h4 {
  width: 100%;
  font-weight: 500;
  margin-top: 5px;
}
#top-news .more-btn {
  width: 245px;
  position: absolute;
  left: 0;
  top: 225px;
}

/*==========================================
footer
===========================================*/
#footer {
  background: url(../img/common/ft-bg.png) center/cover no-repeat;
}
#footer .side-fixed {
  width: 120px;
  height: 120px;
  padding: 3px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#151515+0,9f9f9f+100 */
  background: #151515;
  /* Old browsers */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(135deg, #151515 0%, #9f9f9f 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#151515', endColorstr='#9f9f9f',GradientType=1 );
  /* IE6-9 fallback on horizontal gradient */
  color: #fff;
  font-size: 2.7rem;
  border-radius: 50%;
  display: block;
  position: fixed;
  right: 0;
  bottom: 185px;
  z-index: 100;
}
#footer .side-fixed span {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 50%;
  border: 1px solid #fff;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#footer .inbox {
  position: relative;
}
#footer .ft-wrp {
  padding: 75px 0 85px 0;
}
#footer .ft-wrp .ft-left {
  width: 480px;
  text-align: left;
}
#footer .ft-wrp .ft-left .ft-logo {
  margin-bottom: 35px;
}
#footer .ft-wrp .ft-left address {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 45px;
}
#footer .ft-wrp .ft-left address dt {
  width: 60px;
  background: #004e22;
  color: #fff;
  text-align: center;
  margin-right: 10px;
}
#footer .ft-wrp .ft-left .num {
  font-size: 2.6rem;
  color: #007634;
}
#footer .ft-wrp .ft-left .num small {
  font-size: 1.8rem;
  margin-right: 10px;
}
#footer .ft-wrp .ft-left .ft-contact {
  margin-top: 10px;
}
#footer .ft-wrp .ft-left .ft-contact .entry-btn {
  width: 130px;
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
  background: #151515;
  padding: 5px 0;
}
#footer .ft-wrp .ft-left .ft-contact .official {
  width: 275px;
  display: block;
  border-bottom: 1px solid;
  text-align: center;
  font-weight: 500;
  padding-bottom: 5px;
  background: url(../img/common/ft-arr.png) right center no-repeat;
}
#footer .ft-wrp .ft-right {
  width: 500px;
  text-align: left;
  font-size: 1.4rem;
  font-weight: 500;
}
#footer .ft-wrp .ft-right li {
  margin-bottom: 25px;
}
#footer .ft-wrp .ft-right li:last-child {
  margin-bottom: 0;
}
#footer .ft-wrp .ft-right li .child-nav {
  margin-top: 25px;
}
#footer .ft-wrp .ft-right li .child-nav li a {
  padding-left: 25px;
  position: relative;
}
#footer .ft-wrp .ft-right li .child-nav li a:before {
  width: 15px;
  height: 1px;
  background: #007634;
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  margin: auto 0;
}

#copyright {
  position: absolute;
  right: 0;
  bottom: 85px;
  font-size: 10px;
  word-break: normal;
}

/*==========================================
ページトップ
===========================================*/
.pagetop {
  position: fixed;
  bottom: 8%;
  right: 3%;
  z-index: 999;
}

/*==========================================
サブビジュアル
===========================================*/
.lower-vis {
  position: relative;
  height: 29.166vw;
  max-height: 560px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 3.9062%;
}
.lower-vis h2 {
  width: 1035px;
  border-bottom: 1px solid #fff;
  font-size: 8rem;
  text-align: left;
  color: #fff;
  font-weight: 900;
  letter-spacing: .1em;
  text-shadow: 1px 2px 10px rgba(21, 21, 21, 0.2), -1px 2px 10px rgba(21, 21, 21, 0.2), 1px -2px 10px rgba(21, 21, 21, 0.2), -1px -2px 10px rgba(21, 21, 21, 0.2);
}

#about-sv {
  background: url(../img/sv/sv-shape.png) left top/49.13541% no-repeat, url(../img/sv/about-sv.png) center/cover no-repeat;
}

#environment-sv {
  background: url(../img/sv/sv-shape.png) left top/49.13541% no-repeat, url(../img/sv/environment-sv.png) center/cover no-repeat;
}

#recruit-sv {
  background: url(../img/sv/sv-shape.png) left top/49.13541% no-repeat, url(../img/sv/recruit-sv.png) center/cover no-repeat;
}

#info-sv {
  background: url(../img/sv/sv-shape.png) left top/49.13541% no-repeat, url(../img/sv/info-sv.png) center/cover no-repeat;
}

#news-sv {
  background: url(../img/sv/sv-shape.png) left top/49.13541% no-repeat, url(../img/sv/news-sv.png) center/cover no-repeat;
}

#contact-sv {
  background: url(../img/sv/sv-shape.png) left top/49.13541% no-repeat, url(../img/sv/contact-sv.png) center/cover no-repeat;
}

#complete-sv {
  background: url(../img/sv/sv-shape.png) left top/49.13541% no-repeat, url(../img/sv/complete-sv.png) center/cover no-repeat;
}

#privacy-sv {
  background: url(../img/sv/sv-shape.png) left top/49.13541% no-repeat, url(../img/sv/privacy-sv.png) center/cover no-repeat;
}

#site-sv {
  background: url(../img/sv/sv-shape.png) left top/49.13541% no-repeat, url(../img/sv/site-sv.png) center/cover no-repeat;
}

#e404-sv {
  background: url(../img/sv/sv-shape.png) left top/49.13541% no-repeat, url(../img/sv/e404-sv.png) center/cover no-repeat;
}
#e404-sv h2 {
  font-size: 6.7rem;
}

/*==========================================
共通タイトル
===========================================*/
.ttl01 {
  font-size: 5rem;
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1.6;
  margin-bottom: 60px;
}

.ttl02 {
  font-size: 2.5rem;
  letter-spacing: .1em;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: left;
}

/*==========================================
SSCについて
===========================================*/
/*-------------------------
コンセプト
あなたの技術力が街づくりを支える
--------------------------*/
#concept {
  background: url(../img/top/work-shape.png) right top/10.26041% no-repeat, url(../img/about/concept-bg.png) center/cover no-repeat;
}
#concept .concept-wrp {
  position: relative;
  background: url(../img/about/concept-box_deco01.png) left top no-repeat, url(../img/about/concept-box_deco02.png) right bottom no-repeat, #fff;
  padding: 65px 0 70px 0;
}
#concept .concept-wrp h3 {
  padding-bottom: 40px;
  margin-bottom: 35px;
  position: relative;
  font-weight: 700;
  color: #007634;
  font-size: 5rem;
  letter-spacing: .1em;
}
#concept .concept-wrp h3:before {
  width: 45px;
  height: 1px;
  position: absolute;
  content: '';
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: 0;
  background: #007634;
}
#concept .concept-wrp h3 span {
  width: 220px;
  margin: 0 auto;
  color: #fff;
  background: #151515;
  position: absolute;
  left: 0;
  right: 0;
  top: -90px;
  font-size: 3rem;
}
#concept .concept-wrp p {
  font-weight: 500;
  margin-bottom: 40px;
}
#concept .concept-wrp p:last-child {
  margin-bottom: 0;
}
#concept .concept-wrp p span {
  font-size: 2rem;
  position: relative;
  z-index: 1;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#fff+30,caf1db+30 */
  background: white;
  /* Old browsers */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40%, #ffffff), color-stop(40%, #caf1db));
  background: linear-gradient(to bottom, #ffffff 40%, #caf1db 40%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fff', endColorstr='#caf1db',GradientType=0 );
  /* IE6-9 */
}
#concept .concept-wrp p em {
  font-size: 2.2rem;
  font-weight: 700;
  color: #007634;
}

/*-------------------------
業務内容
--------------------------*/
#service {
  background: url(../img/about/service-shape.png) left bottom/29.42708% no-repeat;
}
#service h3 {
  width: 1080px;
  margin: 0 auto 90px auto;
  font-size: 5rem;
  font-weight: 700;
  letter-spacing: .1em;
  background: url(../img/about/service-ttl_bdr.png) left center no-repeat, url(../img/about/service-ttl_bdr.png) right center no-repeat;
}
#service .service-type {
  margin-bottom: 90px;
  position: relative;
  z-index: 1;
}
#service .service-type:last-child {
  margin-bottom: 0;
}
#service .service-type .txt-blc {
  width: 615px;
  background: rgba(0, 118, 52, 0.9);
  color: #fff;
  position: relative;
  padding: 40px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#service .service-type .txt-blc:before {
  width: 420px;
  height: 100%;
  background: rgba(0, 118, 52, 0.9);
  position: absolute;
  content: '';
  top: 0;
}
#service .service-type .txt-blc:after {
  position: absolute;
  content: '';
  top: -7px;
  width: 0;
  height: 0;
  border-style: solid;
}
#service .service-type .txt-blc h4 {
  font-size: 3.6rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: .1em;
  position: relative;
  margin-bottom: 15px;
  padding-bottom: 10px;
}
#service .service-type .txt-blc h4:before {
  width: 950px;
  height: 1px;
  background: #fff;
  position: absolute;
  content: '';
  bottom: 0;
}
#service .service-type .img-blc {
  position: absolute;
  width: 51.97916%;
  top: -20px;
  z-index: -1;
}
#service .service-type:nth-child(odd) .txt-blc {
  margin-left: auto;
  padding-left: 75px;
}
#service .service-type:nth-child(odd) .txt-blc:before {
  right: -420px;
}
#service .service-type:nth-child(odd) .txt-blc:after {
  left: -7px;
  border-width: 55px 55px 0 0;
  border-color: #004e22 transparent transparent transparent;
}
#service .service-type:nth-child(odd) .txt-blc h4:before {
  left: 0;
}
#service .service-type:nth-child(odd) .img-blc {
  left: 0;
}
#service .service-type:nth-child(even) .txt-blc {
  padding-right: 75px;
}
#service .service-type:nth-child(even) .txt-blc:before {
  left: -420px;
}
#service .service-type:nth-child(even) .txt-blc:after {
  right: -7px;
  border-width: 0 55px 55px 0;
  border-color: transparent #004e22 transparent transparent;
}
#service .service-type:nth-child(even) .txt-blc h4:before {
  right: 0;
}
#service .service-type:nth-child(even) .img-blc {
  right: 0;
}
#service .attractive {
  width: 1080px;
  margin: 100px auto 0 auto;
}
#service .attractive .txt-blc {
  width: 635px;
  padding: 55px 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
  -webkit-box-shadow: 5px 5px #007634;
          box-shadow: 5px 5px #007634;
  margin-left: -30px;
  position: relative;
}
#service .attractive .txt-blc h4 {
  font-size: 3rem;
  letter-spacing: .1em;
  position: absolute;
  left: 30px;
  top: -30px;
  font-weight: 700;
}
#service .attractive .txt-blc h4 span {
  padding: 5px 20px;
  background: #151515;
  color: #fff;
}
#service .attractive .txt-blc li {
  border-bottom: 1px dashed #cfcfcf;
  text-align: left;
  padding: 15px 15px 15px 45px;
  font-size: 2rem;
  font-weight: 700;
  background: url(../img/about/check_icon.png) left center no-repeat;
}
#service .attractive .txt-blc li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
#service .attractive .img-blc {
  margin-right: -30px;
}

/*==========================================
働く環境を知る
===========================================*/
/*-------------------------
株式会社SSCでは、
型枠大工・型枠解体として
共に働く仲間を募集しております。
--------------------------*/
#recruiting .ttl01 {
  margin-bottom: 0;
  color: #fff;
  background: url(../img/environment/recruit-bg.png) center/cover no-repeat;
}
#recruiting .ttl01 span {
  background: #007634;
}
#recruiting .recruiting-wrp {
  background: url(../img/environment/ideal-candidate-deco01.png) left top no-repeat, url(../img/environment/ideal-candidate-deco02.png) right bottom no-repeat, #fff;
}
#recruiting .recruiting-wrp .inbox {
  width: 1280px;
}
#recruiting .recruiting-wrp .txt-blc {
  text-align: center;
  margin-bottom: 55px;
}
#recruiting .recruiting-wrp .ideal-candidate {
  padding: 40px 100px 50px 100px;
  color: #fff;
  background: url(../img/environment/ideal-candidate-bg.png) center/cover no-repeat;
}
#recruiting .recruiting-wrp .ideal-candidate h4 {
  font-size: 4rem;
  letter-spacing: .1em;
  padding-bottom: 20px;
  margin-bottom: 20px;
  position: relative;
  font-weight: 700;
}
#recruiting .recruiting-wrp .ideal-candidate h4:before {
  width: 45px;
  height: 1px;
  background: #fff;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  content: '';
  margin: 0 auto;
}
#recruiting .recruiting-wrp .ideal-candidate .ideal-candidate-wrp {
  width: 835px;
  margin: 0 auto;
}
#recruiting .recruiting-wrp .ideal-candidate .ideal-candidate-wrp li {
  text-align: left;
  padding-left: 30px;
  position: relative;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}
#recruiting .recruiting-wrp .ideal-candidate .ideal-candidate-wrp li:last-child {
  margin-bottom: 0;
}
#recruiting .recruiting-wrp .ideal-candidate .ideal-candidate-wrp li:before {
  width: 17px;
  height: 17px;
  background: #007634;
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
}

/*-------------------------
SSCで働く魅力
--------------------------*/
#attractive {
  background: url(../img/environment/attractive-shape.png) left bottom/14.8958% no-repeat;
}
#attractive .inbox {
  max-width: 1400px;
  width: 72.9166%;
  min-width: 1180px;
}
#attractive .ttl01 span {
  color: #007634;
}
#attractive .attractive-wrp {
  padding: 10px;
  background: #fff;
}
#attractive .attractive-wrp .frame {
  border: 1px solid #007634;
  padding: 50px 0;
}
#attractive .attractive-wrp .frame ul {
  width: 1080px;
  margin: 0 auto;
}
#attractive .attractive-wrp .frame li {
  width: 335px;
  margin-bottom: 25px;
  padding-top: 280px;
}
#attractive .attractive-wrp .frame li:nth-child(3n+1):nth-last-child(-n+3), #attractive .attractive-wrp .frame li:nth-child(3n+1):nth-last-child(-n+3) ~ li {
  margin-bottom: 0;
}
#attractive .attractive-wrp .frame li:nth-child(1) {
  background: url(../img/environment/attractive01-icon.png) top center no-repeat;
}
#attractive .attractive-wrp .frame li:nth-child(2) {
  background: url(../img/environment/attractive02-icon.png) top center no-repeat;
}
#attractive .attractive-wrp .frame li:nth-child(3) {
  background: url(../img/environment/attractive03-icon.png) top center no-repeat;
}
#attractive .attractive-wrp .frame li:nth-child(4) {
  background: url(../img/environment/attractive04-icon.png) top center no-repeat;
}
#attractive .attractive-wrp .frame li:nth-child(5) {
  background: url(../img/environment/attractive05-icon.png) top center no-repeat;
}
#attractive .attractive-wrp .frame li:nth-child(6) {
  background: url(../img/environment/attractive06-icon.png) top center no-repeat;
}
#attractive .attractive-wrp .frame li dt {
  font-size: 2.2rem;
  font-weight: 700;
  color: #007634;
  border-bottom: 1px dotted #007634;
  margin-bottom: 10px;
}

/*-------------------------
数字で見るSSC
--------------------------*/
#data {
  background: url(../img/top/work-shape.png) right top/10.26041% no-repeat, url(../img/environment/data-bg.png) center/cover no-repeat;
}
#data .ttl01 {
  color: #fff;
  background: url(../img/top/work-ttl_bdr.png) left center/310px 12px no-repeat, url(../img/top/work-ttl_bdr.png) right center/310px 12px no-repeat;
}

.bnr-wrp {
  background: #fff;
  padding: 115px 0;
}

/*==========================================
採用情報
===========================================*/
/*-------------------------
よあるご質問
--------------------------*/
#faq {
  background: url(../img/recruit/faq-shape.png) right top/9.2708% no-repeat;
}
#faq .faq-wrp > li {
  text-align: left;
  margin-bottom: 30px;
}
#faq .faq-wrp > li:last-child {
  margin-bottom: 0;
}
#faq .faq-wrp > li dt, #faq .faq-wrp > li dd {
  font-size: 1.8rem;
  padding: 15px 85px;
  position: relative;
}
#faq .faq-wrp > li dt:before, #faq .faq-wrp > li dd:before {
  position: absolute;
  left: 35px;
  top: 0;
  font-size: 3rem;
}
#faq .faq-wrp > li dt {
  background: #151515;
  color: #fff;
  font-weight: 500;
  margin-bottom: 10px;
}
#faq .faq-wrp > li dt:before {
  content: 'Q';
}
#faq .faq-wrp > li dd {
  background: #fff;
}
#faq .faq-wrp > li dd:before {
  content: 'A';
  color: #007634;
}

/*-------------------------
募集要項
--------------------------*/
#requirements {
  background: url(../img/about/service-shape.png) left bottom/29.427% no-repeat, url(../img/recruit/recruitment-deco01.png) left top/20.5729% no-repeat, url(../img/recruit/recruitment-deco02.png) right bottom/30.3125% no-repeat, #fff;
}
#requirements .rec-wrp {
  margin-bottom: 70px;
}
#requirements .rec-wrp:last-child {
  margin-bottom: 0;
}
#requirements .rec-wrp h4 {
  text-align: left;
  padding-left: 35px;
  position: relative;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 25px;
}
#requirements .rec-wrp h4:before {
  position: absolute;
  content: '';
  width: 17px;
  height: 17px;
  left: 0;
  bottom: 0;
  top: 0;
  margin: auto 0;
  background: #007634;
}

/*-------------------------
選考の流れ
--------------------------*/
#steps {
  background: url(../img/recruit/steps-bg.png) center/cover no-repeat;
}
#steps .ttl01 {
  color: #fff;
}
#steps .steps-wrp li {
  width: 220px;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #151515;
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
  position: relative;
}
#steps .steps-wrp li:after {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 27.5px 0 27.5px 17px;
  border-color: transparent transparent transparent #ffe13e;
  position: absolute;
  content: '';
  bottom: 0;
  top: 0;
  right: -41px;
  margin: auto 0;
}
#steps .steps-wrp li:last-child:after {
  border: none;
}
#steps .steps-wrp li span {
  border: 1px solid #fff;
  height: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#steps .steps-wrp li:last-child {
  color: #ffe13e;
  font-size: 4.6rem;
}

/*==========================================
会社概要
===========================================*/
/*-------------------------
代表からの一言
--------------------------*/
#message {
  padding: 100px 0;
  background: url(../img/info/message-shape.png) right bottom no-repeat, url(../img/info/message-bg.png) center/cover no-repeat;
}
#message .inbox {
  position: relative;
  z-index: 1;
}
#message .ttl01 {
  text-align: left;
  color: #fff;
}
#message .ttl01 span {
  color: #007634;
}
#message .img-blc {
  position: absolute;
  right: 0;
  bottom: -25px;
  z-index: -1;
}
#message .txt-blc {
  width: 765px;
  background: url(../img/info/message-box_bg.png) right bottom no-repeat, #fff;
  padding: 50px 10px 50px 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 8px 8px #007634;
          box-shadow: 8px 8px #007634;
}
#message .txt-blc .name {
  font-size: 2rem;
  font-weight: 500;
  color: #007634;
}

/*-------------------------
会社情報
--------------------------*/
#info {
  background: url(../img/info/info-left_deco.png) left top no-repeat, url(../img/info/info-shape.png) right bottom 400px no-repeat, #fff;
}
#info .com-dl {
  margin-bottom: 95px;
}

/*==========================================
一覧ぺージ用カテゴリ(セレクトボックス)
===========================================*/
.category-select {
  overflow: hidden;
  width: 300px;
  margin-left: auto;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  border-radius: 2px;
  border: 2px solid #2e2e2e;
  background: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.category-select:before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  /* Safari用 */
  transform: translateY(-50%);
  z-index: 10;
  right: .8em;
  width: 0;
  height: 0;
  padding: 0;
  content: '';
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #2e2e2e;
  pointer-events: none;
}
.category-select select {
  width: 100%;
  padding-right: 1em;
  cursor: pointer;
  text-indent: .01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 10px 38px 10px 8px;
  color: #2e2e2e;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.category-select select::-ms-expand {
  display: none;
}

/*==========================================
お知らせ
===========================================*/
.post-wrap .column-lists > li {
  margin-bottom: 25px;
  border-bottom: 1px solid #ccc;
}
.post-wrap .column-lists > li a {
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  box-sizing: border-box;
}
.post-wrap .column-lists > li a:hover .more-btn {
  background: #fff;
  color: #007634;
}
.post-wrap .column-lists > li:last-child {
  margin-bottom: 0;
  border-bottom: none;
}
.post-wrap .column-lists .post-ttl {
  text-align: left;
  margin-bottom: 15px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.post-wrap .column-lists .post-ttl time {
  color: #007634;
  text-align: left;
  padding: 4px 0;
  width: 65px;
}
.post-wrap .column-lists .post-ttl time,
.post-wrap .column-lists .post-ttl .category-label {
  font-weight: normal;
  font-size: 10px;
}
.post-wrap .column-lists .post-ttl .category-label {
  width: 720px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.post-wrap .column-lists .post-ttl .category-label li {
  border: 1px solid #007634;
  color: #fff;
  background: #007634;
  padding: 2px 10px;
  margin-right: 5px;
  margin-bottom: 5px;
}
.post-wrap .column-lists .post-ttl .category-label li:last-child {
  margin-right: 0;
}
.post-wrap .column-lists .post-ttl .column-ttl {
  width: 100%;
  margin-top: 10px;
  font-size: 18px;
  font-weight: 500;
}
.post-wrap .column-lists .post-body {
  text-align: left;
  margin-bottom: 20px;
}
.post-wrap .column-lists .more-btn {
  width: 125px;
  font-size: 14px;
  margin: inherit;
  margin-left: auto;
  font-weight: bold;
  background: #007634;
  border: 1px solid #007634;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 5px 0;
  display: block;
  color: #fff;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.post-wrap .column-lists .thumb {
  width: 210px;
  height: 200px;
}
.post-wrap .column-lists .post-area {
  width: 800px;
}
.post-wrap .post-content {
  padding: 0 20px 5px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
}
.post-wrap .post-content img {
  max-width: 100%;
}

/*----------------------------------
詳細ページのカテゴリー表示(タイトル下部)
----------------------------------*/
.single-meta {
  margin-bottom: 20px;
}
.single-meta time {
  font-size: 11px;
  text-align: left;
  width: 85px;
  padding: 3px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.single-meta .category-label {
  width: 950px;
  font-size: 10px;
  margin-left: 10px;
}
.single-meta .category-label li {
  margin-right: 10px;
  margin-bottom: 10px;
}
.single-meta .category-label li:last-child {
  margin-right: 0;
}
.single-meta .category-label li a {
  border: 1px solid #007634;
  color: #007634;
  padding: 3px 10px;
  border-radius: 25px;
  display: block;
}
.single-meta .category-label li a:hover {
  opacity: 1;
  color: #fff;
  background: #007634;
}

/*----------------------------------
詳細ページのカテゴリー表示(テキストエリア下部)
----------------------------------*/
.single-category {
  max-width: 250px;
  min-width: 150px;
  margin-top: 10px;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-size: 10px;
}
.single-category dt {
  width: 80px;
}
.single-category dt:after {
  content: ':';
  padding: 0 5px;
}
.single-category dd {
  max-width: 170px;
  line-height: 2;
  min-width: 60px;
}
.single-category ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.single-category ul li {
  margin-right: 5px;
}
.single-category ul li:last-child {
  margin-right: 0;
}
.single-category ul li a {
  display: block;
  padding-left: 8px;
  position: relative;
}
.single-category ul li a:before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  /* Safari用 */
  transform: translateY(-50%);
  z-index: 10;
  left: 0;
  content: '#';
}
.single-category ul li a:hover {
  background: #ccc;
}

/*==========================================
お問い合わせ
===========================================*/
#contact .contact-form {
  margin-bottom: 20px;
}
#contact .contact-form dl dt {
  padding: 0 15px;
  width: 340px !important;
  position: relative;
  vertical-align: top;
}
#contact .contact-form dl dt em {
  position: absolute;
  top: 0;
  right: 10px;
  color: #007634;
  background: #fff;
  font-weight: 500;
  padding: 3px;
  font-size: 11px;
}
#contact .contact-form dl dd {
  padding: 0 15px;
}
#contact .contact-form dl dd li {
  list-style: none;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
#contact .contact-form dl dd li:last-child {
  margin-right: 0;
}
#contact .contact-form .txtarea {
  width: 640px;
  font-size: 16px;
  border: none;
  background: #fff;
  padding: 5px 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}
#contact .contact-form select {
  padding: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 16px;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  color: #333;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 0;
}
#contact .contact-form #post01,
#contact .contact-form #post02 {
  width: 150px;
}
#contact .contact-form #addr21 {
  margin-top: 15px;
}
#contact .contact-form textarea {
  height: 260px;
  line-height: 1.8;
}
#contact .contact-form .error-text {
  color: #ff0000;
  margin-bottom: 5px;
}
#contact .contact-form .upload-item-wrap #file01 {
  margin-bottom: 10px;
}
#contact .contact-form .upload-item-wrap .thumb {
  width: 200px;
  margin-right: 25px;
}
#contact .contact-form .upload-item-wrap .thumb img {
  max-width: 100%;
}
#contact .contact-form .upload-item-wrap .ancion-btn-wrap {
  width: 130px;
}
#contact .contact-form .upload-item-wrap .ancion-btn-wrap .ancion-btn,
#contact .contact-form .upload-item-wrap .ancion-btn-wrap .upload-button {
  width: 100%;
  border-radius: 5px;
  color: #fff;
  font-size: 13px;
  text-align: center;
  padding: 5px;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  -webkit-transition: all .3s;
  transition: all .3s;
}
#contact .contact-form .upload-item-wrap .ancion-btn-wrap .ancion-btn:hover,
#contact .contact-form .upload-item-wrap .ancion-btn-wrap .upload-button:hover {
  filter: alpha(opacity=60);
  opacity: .6;
}
#contact .contact-form .upload-item-wrap .ancion-btn-wrap .upload-button {
  margin-bottom: 5px;
  background: #007634;
}
#contact .contact-form .upload-item-wrap .ancion-btn-wrap p {
  background: #004e22;
}
#contact .contact-form .upload-item-wrap .ancion-btn-wrap .select-file,
#contact .contact-form .upload-item-wrap .ancion-btn-wrap input {
  display: none !important;
}
#contact .contact-form .upload-item-wrap .ancion-btn-wrap input#file-upload-button {
  background: #004e22;
}
#contact .g-recaptcha div {
  margin: 0 auto;
  margin-bottom: 25px;
}
#contact input[type='button'][disabled],
#contact input[type='submit'][disabled] {
  opacity: .7;
  pointer-events: none;
}
#contact input[type='button'],
#contact input[type='submit'],
#contact .contact-submits-wrap button {
  font-weight: 500;
  letter-spacing: 2px;
  font-size: 16px;
  color: #fff;
  background: #fff;
  padding: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  -webkit-transition: all .3s;
  transition: all .3s;
  border: 1px solid #007634;
  color: #007634;
  border-radius: 0;
}
#contact input[type='button']:hover,
#contact input[type='submit']:hover,
#contact .contact-submits-wrap button:hover {
  background: #007634;
  cursor: pointer;
  color: #fff;
  filter: alpha(opacity=100);
  opacity: 1;
}
#contact .check-btn {
  width: 260px;
  margin: 0 auto;
  margin-top: 20px;
}
#contact .back-btn {
  width: 270px;
  margin: 0 auto;
  margin-right: 40px;
}
#contact .contact-submits-wrap {
  margin-top: 20px;
}
#contact .send-btn {
  width: 240px;
  margin: 0 auto;
}
#contact .privacy-agree {
  color: -webkit-link;
  text-decoration: underline;
}

/*==========================================
プライバシーポリシー
===========================================*/
#privacy .privacy-box {
  margin-bottom: 40px;
  text-align: left;
}
#privacy .privacy-box:last-child {
  margin-bottom: 0;
}
#privacy .privacy-box p {
  margin-bottom: 25px;
}
#privacy .privacy-box p:last-child {
  margin-bottom: 0;
}
#privacy .privacy-box ul {
  margin-top: 25px;
}

/*==========================================
404.php
===========================================*/
#err-cont .txt-blc a {
  text-decoration: underline;
}
