@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: #0a0000;
  line-height: 1.8;
  text-align: center;
  letter-spacing: .08em;
  font-size: 1.7rem;
  word-break: break-all;
}

#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: #bc1010;
}
div .bread li:after {
  content: " > ";
  padding: 0 2px;
  color: #999;
}
div .bread li:last-child:after {
  content: "";
}
div .bread li a {
  color: #999;
}

/*==========================================
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 {
  background: #eaeaea;
  padding: 15px 20px 15px 25px;
}
#header .hd-right {
  width: 630px;
}
#header .hd-right .hd-contact {
  width: 315px;
  margin: 0 0 10px auto;
}

/*==========================================
nav
===========================================*/
nav li {
  font-weight: 900;
  position: relative;
}
nav li:after {
  position: absolute;
  content: '';
  width: 1px;
  height: 17px;
  background: #6b6767;
  margin: auto 0;
  right: 0;
  top: 0;
  bottom: 0;
}
nav li a {
  padding: 0 22px;
  display: block;
}
nav li:first-child a {
  padding-left: 0;
}
nav li:last-child:after {
  background: none;
}
nav li:last-child a {
  padding-right: 0;
}
nav .current a {
  color: #bc1010;
}

/*==========================================
メインビジュアル
===========================================*/
#mv {
  position: relative;
  height: 41.666vw;
  max-height: 800px;
  min-height: 490px;
  z-index: 1;
}
#mv:before {
  width: 100%;
  height: 145px;
  position: absolute;
  content: '';
  background: #f7f7f7;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
#mv .mv-inner {
  position: relative;
  width: 100%;
  height: 100%;
  background: url(../img/top/mv/mv-left_deco.png) left 7.97916% bottom 9.85vw/7.76041% no-repeat, url(../img/top/mv/mv-right_deco.png) right 13.54166% top 3.5vw/18.48958% no-repeat, url(../img/top/mv/mv-left_img.png) left 16.6666% top 1.9vw/23.80208% no-repeat, url(../img/top/mv/mv-right_img.png) right 11.71875% bottom/41.6666% no-repeat;
}
#mv .mv-inner:before {
  width: 14.89583%;
  height: 17vw;
  background: url(../img/top/mv/mv-character.png) center/contain no-repeat;
  position: absolute;
  content: '';
  right: 33.59375%;
  bottom: 8.75vw;
  z-index: 10;
}
#mv h2 {
  width: 30.20833%;
  position: absolute;
  left: 24.4791%;
  top: 9.9vw;
}
#mv p {
  width: 54.6875%;
  min-width: 700px;
  position: absolute;
  left: 0;
  top: 1.9vw;
  font-weight: 700;
  background: #bc1010;
  text-align: right;
  color: #fff;
  font-size: 3.6rem;
  letter-spacing: .4em;
  padding: 5px 35px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/*==========================================
共通ブロック・要素
===========================================*/
.txt-blc {
  text-align: left;
}
.txt-blc p {
  margin-bottom: 25px;
  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%;
}

.mail-btn {
  width: 250px;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 12px 30px 12px 5px;
  color: #fff;
  font-weight: 700;
  background: url(../img/common/mail_icon.png) right 25px center no-repeat, #bc1010;
}

.more-btn {
  width: 250px;
  display: block;
  color: #fff;
  font-weight: 700;
  background: #0a0000;
  padding: 12px 30px 12px 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
}
.more-btn span {
  position: relative;
}
.more-btn span:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: auto;
  right: 0;
  margin: auto;
  content: '';
  vertical-align: middle;
  width: 5px;
  height: 5px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.more-btn span {
  display: block;
}

/*==========================================
テーブルレイアウト
===========================================*/
.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: 15px 10px;
  width: 210px;
  vertical-align: top;
  border-bottom: 1px solid #818181;
}
.com-dl > dl > dd {
  width: 870px;
  padding: 15px 20px;
  border-bottom: 1px solid #d4d4d4;
}
.com-dl > dl > dd a[href^="mailto:"] {
  text-decoration: underline;
}

/*==========================================
トップページ
===========================================*/
/*--------------------------------
愛知県半田市にある
金属加工業者
和光マシニング
--------------------------------*/
#wakou-machining {
  padding: 150px 0 95px 0;
  background: url(../img/top/wakou-machining-left_deco.png) left 8.59375% bottom 275px/9.166% no-repeat, url(../img/top/wakou-machining-right_deco.png) right 10.4166% bottom 150px/7.9166% no-repeat, url(../img/top/wakou-machining.png) top left/87.2916% no-repeat, #f7f7f7;
}
#wakou-machining .txt-blc {
  width: 500px;
}
#wakou-machining .txt-blc h3 {
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: .35em;
  margin-bottom: 35px;
}
#wakou-machining .txt-blc .more-btn {
  margin-top: 45px;
}

/*--------------------------------
OUR STRENGTHS
和光マシニングの強み
--------------------------------*/
#top-our-strengts {
  padding: 100px 0;
  background: url(../img/top/our-strengths-left_deco.png) left top/20.7291% no-repeat, url(../img/top/our-strengths-right_deco.png) right bottom/20.7291% no-repeat;
}
#top-our-strengts .inbox {
  max-width: 1720px;
  width: 89.58333%;
  min-width: 1300px;
  padding: 160px 0 115px 0;
  background: url(../img/top/our-strengths-bg.png) center/cover no-repeat;
  position: relative;
}
#top-our-strengts .inbox h3 {
  position: absolute;
  left: 0;
  right: 0;
  top: -30px;
}
#top-our-strengts .inbox h3 span {
  display: block;
  color: #bc1010;
  font-size: 2rem;
  margin-top: 15px;
  font-weight: 700;
}
#top-our-strengts .inbox .strengths-wrp {
  width: 1150px;
  margin: 0 auto 55px auto;
}
#top-our-strengts .inbox .strengths-wrp li {
  width: 360px;
  background: #fff;
  padding: 65px 35px 40px 35px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 0 0 8px rgba(10, 0, 0, 0.1);
          box-shadow: 0 0 8px rgba(10, 0, 0, 0.1);
  position: relative;
}
#top-our-strengts .inbox .strengths-wrp li:before, #top-our-strengts .inbox .strengths-wrp li:after {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
}
#top-our-strengts .inbox .strengths-wrp li:before {
  font-size: 8rem;
  font-family: 'Alata', sans-serif;
  top: -78px;
}
#top-our-strengts .inbox .strengths-wrp li:nth-child(1):before {
  content: "01";
}
#top-our-strengts .inbox .strengths-wrp li:nth-child(2):before {
  content: "02";
}
#top-our-strengts .inbox .strengths-wrp li:nth-child(3):before {
  content: "03";
}
#top-our-strengts .inbox .strengths-wrp li:nth-child(1) {
  margin-top: 65px;
}
#top-our-strengts .inbox .strengths-wrp li:nth-child(2) {
  margin-top: 30px;
}
#top-our-strengts .inbox .strengths-wrp li:after {
  content: '';
  width: 30px;
  height: 2px;
  background: #0a0000;
  top: 50px;
}
#top-our-strengts .inbox .strengths-wrp li dt {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 2.8rem;
  letter-spacing: .1em;
}
#top-our-strengts .inbox .strengths-wrp li dt span {
  color: #bc1010;
}
#top-our-strengts .inbox .strengths-wrp li dd {
  text-align: left;
}
#top-our-strengts .inbox .merit-wrp {
  width: 870px;
  margin: 0 auto;
  background: #fff;
  position: relative;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#top-our-strengts .inbox .merit-wrp:before {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 16px 27px 16px;
  border-color: transparent transparent #fff transparent;
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  top: -27px;
  margin: 0 auto;
}
#top-our-strengts .inbox .merit-wrp .merit-frame {
  border: 1px solid #0a0000;
  padding: 35px 35px 45px 35px;
  position: relative;
}
#top-our-strengts .inbox .merit-wrp .merit-frame:before {
  position: absolute;
  content: '';
  background: url('../img/top/our-strengths-arr.png.png?1683699928');
  width: 18px;
  height: 17px;
  background-size: 100%;
  top: -17px;
  right: 0;
  bottom: auto;
  left: 0;
  background-repeat: no-repeat;
  -webkit-transition: all .3s;
  transition: all .3s;
  margin: 0 auto;
}
#top-our-strengts .inbox .merit-wrp .merit-frame h4 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 25px;
}
#top-our-strengts .inbox .merit-wrp .merit-frame h4 span {
  background: #bc1010;
  color: #fff;
  padding: 5px 20px;
  margin-left: 15px;
}
#top-our-strengts .inbox .merit-wrp .merit-frame .merit-lists li {
  text-align: left;
  border-bottom: 1px solid rgba(40, 40, 40, 0.5);
  padding: 10px 0;
}
#top-our-strengts .inbox .merit-wrp .merit-frame .merit-lists li:last-child {
  border-bottom: none;
}
#top-our-strengts .inbox .merit-wrp .merit-frame .merit-lists li dt {
  text-align: left;
  font-weight: 700;
  padding-left: 30px;
  background: url(../img/top/our-strengths-check_icon.png) left center no-repeat;
  margin-bottom: 10px;
  font-size: 2rem;
}
#top-our-strengts .inbox .merit-wrp .merit-frame .more-btn {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -30px;
  margin: 0 auto;
}

/*--------------------------------
加工事例
--------------------------------*/
#machining-example {
  padding: 100px 0;
  position: relative;
}
#machining-example .inbox {
  width: 1280px;
  background: #f7f7f7;
  padding: 45px 0;
  position: relative;
  z-index: 1;
}
#machining-example .inbox:before {
  width: 1217px;
  height: 94px;
  background: url(../img/top/machining-example.png) center/100% no-repeat;
  left: 0;
  right: 0;
  top: -30px;
  position: absolute;
  content: '';
  margin: 0 auto;
  z-index: -1;
}
#machining-example .inbox:after {
  background: #f7f7f7;
  width: 320px;
  height: 100%;
  position: absolute;
  content: '';
  left: calc(50% - 960px);
  top: 0;
  bottom: 0;
}
#machining-example .machining-example-wrp {
  width: 1080px;
  margin: 0 auto;
}
#machining-example h3 {
  font-size: 2.8rem;
  font-weight: 700;
}
#machining-example h3 span {
  padding-bottom: 10px;
  border-bottom: 4px solid;
}
#machining-example .machining-example-lists {
  width: 730px;
}
#machining-example .machining-example-lists li {
  width: 230px;
  margin-right: 20px;
}
#machining-example .machining-example-lists li:last-child {
  margin-right: 0;
}
#machining-example .machining-example-lists li .com-img {
  width: 100%;
  height: 160px;
  margin-bottom: 5px;
}
#machining-example .machining-example-lists li h4 {
  text-align: left;
  border-left: 2px solid #bc1010;
  padding-left: 10px;
  font-weight: 700;
}
#machining-example .more-btn {
  position: absolute;
  left: 100px;
  bottom: 45px;
}

/*--------------------------------
設備紹介
--------------------------------*/
#top-facilities {
  padding: 100px 0;
  position: relative;
}
#top-facilities:before {
  background: url(../img/top/equipment-introduction.png) center/100% no-repeat;
  width: 45.20833%;
  height: 11.093vw;
  position: absolute;
  content: '';
  right: 0;
  top: 20px;
  z-index: 1;
}
#top-facilities .inbox {
  background: #f7f7f7;
  position: relative;
  padding: 85px 0 105px 0;
}
#top-facilities .inbox:before {
  width: 420px;
  height: 100%;
  position: absolute;
  content: '';
  right: calc(50% - 960px);
  top: 0;
  bottom: 0;
  background: #f7f7f7;
}
#top-facilities .txt-blc {
  width: 540px;
  margin-left: auto;
}
#top-facilities .txt-blc h3 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 40px;
}
#top-facilities .txt-blc h3 span {
  padding-bottom: 10px;
  border-bottom: 4px solid;
}
#top-facilities .img-left {
  position: absolute;
  left: calc(50% - 715px);
  top: 0;
  z-index: 10;
}
#top-facilities .img-right {
  right: calc(50% - 765px);
  top: 50px;
  position: absolute;
  z-index: 10;
}

/*--------------------------------
求人情報/会社概要
--------------------------------*/
#recruit-info {
  padding-bottom: 100px;
}
#recruit-info .inbox {
  width: 66.6666%;
  max-width: 1280px;
  min-width: 1080px;
}
#recruit-info li {
  width: 48.4375%;
}
#recruit-info li a {
  padding: 20px;
  width: 100%;
  display: block;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 22.656vw;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
}
#recruit-info li a span {
  width: 100%;
  height: 100%;
  border: 1px solid #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  font-weight: 700;
  letter-spacing: .1em;
  font-size: 2.8rem;
  padding: 0 65px;
}
#recruit-info li:first-child a {
  background: url(../img/top/recruit.png) left 20% bottom/12.7419% no-repeat, url(../img/top/recruit-img.png) right center/70% 100% no-repeat, #bc1010;
}
#recruit-info li:last-child {
  margin-top: 30px;
}
#recruit-info li:last-child a {
  background: url(../img/top/information.png) left 20% bottom/12.7419% no-repeat, url(../img/top/information-img.png) right center/70% 100% no-repeat, #bc1010;
}

/*--------------------------------
CONTACT
ご依頼・お問合せ
--------------------------------*/
#top-contact {
  padding: 40px;
  width: 88.54166%;
  margin: 0 auto 85px auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: url(../img/top/contact-left_deco.png) left top no-repeat, url(../img/top/contact-right_deco.png) right bottom no-repeat;
  min-width: 1280px;
}
#top-contact .inbox {
  width: 100%;
  background: url(../img/top/contact-bg_txt.png) bottom center/100% no-repeat, #f7f7f7;
  padding: 75px 0 80px 0;
}
#top-contact h3 {
  margin-bottom: 35px;
}
#top-contact h3 span {
  display: block;
  font-size: 2rem;
  color: #bc1010;
  font-weight: 700;
  margin-top: 15px;
  letter-spacing: .2em;
}
#top-contact .mail-btn {
  margin: 45px auto 0 auto;
}

/*--------------------------------
NEWS
お知らせ
--------------------------------*/
#top-news {
  padding-bottom: 90px;
}
#top-news .inbox {
  position: relative;
  min-height: 250px;
}
#top-news h3 {
  text-align: left;
}
#top-news h3 span {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: .2em;
  margin-top: 15px;
}
#top-news .news-lists {
  width: 650px;
}
#top-news .news-lists article {
  text-align: left;
  font-weight: 700;
  border-bottom: 1px solid rgba(10, 0, 0, 0.4);
}
#top-news .news-lists article:last-child {
  border-bottom: none;
}
#top-news .news-lists article a {
  padding: 15px 0;
}
#top-news .news-lists article time {
  width: 105px;
  color: #8a8a8a;
}
#top-news .news-lists article .category-label {
  width: 535px;
}
#top-news .news-lists article .category-label li {
  position: relative;
  padding: 0 10px;
}
#top-news .news-lists article .category-label li:before {
  position: absolute;
  content: '';
  background: #6f6b6b;
  width: 1px;
  height: 17px;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
#top-news .news-lists article .category-label li:nth-child(1) {
  padding-left: 0;
}
#top-news .news-lists article .category-label li:nth-child(1):before {
  background: none;
}
#top-news .news-lists article h4 {
  margin-top: 10px;
  width: 100%;
}
#top-news .more-btn {
  position: absolute;
  left: 0;
  bottom: 0;
}

/*==========================================
footer
===========================================*/
#footer {
  background: #f7f7f7;
}
#footer .ft-wrp {
  padding: 95px 0;
}
#footer .ft-wrp .ft-left {
  text-align: left;
  width: 365px;
}
#footer .ft-wrp .ft-left .ft-logo {
  margin-bottom: 40px;
}
#footer .ft-wrp .ft-right {
  width: 550px;
}
#footer .ft-wrp .ft-right .ft-contact {
  width: 390px;
  margin: 0 0 35px auto;
}
#footer .ft-wrp .ft-right .ft-contact .sns {
  width: 110px;
}
#footer .ft-wrp .ft-right .ft-nav li {
  font-weight: 700;
}
#footer .ft-wrp .ft-right .ft-nav li a:hover {
  opacity: 1;
  color: #bc1010;
}
#footer .ft-bottom {
  background: #0a0000;
  padding: 10px 0;
}
#footer .ft-bottom .ft-bottom_inner {
  width: 1080px;
  margin: 0 auto;
}
#footer .ft-bottom ul {
  width: 330px;
  font-weight: 700;
  font-size: 1rem;
}
#footer .ft-bottom ul a {
  color: #fff;
}

#copyright {
  font-size: 10px;
  word-break: normal;
  color: #fff;
}
#copyright a {
  color: #fff;
}

/*==========================================
サブビジュアル
===========================================*/
.lower-sv {
  position: relative;
  height: 320px;
  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;
}
.lower-sv h2 {
  font-size: 3.6rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: .4em;
}
.lower-sv h2 span {
  background: #0a0000;
  padding: 15px 30px;
}

#about-sv {
  background: url(../img/sv/about-sv.png) center/cover no-repeat;
}

#case-sv {
  background: url(../img/sv/case-sv.png) center/cover no-repeat;
}

#recruit-sv {
  background: url(../img/sv/recruit-sv.png) center/cover no-repeat;
}

#company-sv {
  background: url(../img/sv/company-sv.png) center/cover no-repeat;
}

#news-sv {
  background: url(../img/sv/news-sv.png) center/cover no-repeat;
}

#contact-sv {
  background: url(../img/sv/contact-sv.png) center/cover no-repeat;
}

#complete-sv {
  background: url(../img/sv/complete-sv.png) center/cover no-repeat;
}

#privacy-sv {
  background: url(../img/sv/privacy-sv.png) center/cover no-repeat;
}

#site-sv {
  background: url(../img/sv/site-sv.png) center/cover no-repeat;
}

#e404-sv {
  background: url(../img/sv/e404-sv.png) center/cover no-repeat;
}

/*==========================================
共通タイトル
===========================================*/
.ttl01 {
  font-size: 3.6rem;
  letter-spacing: .2em;
  font-weight: 900;
  margin-bottom: 55px;
}

.ttl02 {
  border-left: 3px solid #bc1010;
  padding-left: 10px;
  font-weight: 700;
  text-align: left;
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.ttl03 {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: .1em;
  margin-bottom: 45px;
}
.ttl03 span {
  border-bottom: 4px solid;
  padding-bottom: 10px;
}

/*==========================================
事業内容
===========================================*/
/*--------------------------
事業内容一覧
---------------------------*/
#business {
  background: #f7f7f7;
}
#business .inbox {
  width: 1360px;
}
#business li {
  padding: 40px;
  background: url(../img/about/business-left_deco.png) left top no-repeat, url(../img/about/business-right_deco.png) right bottom no-repeat;
}
#business li .flex {
  background: #fff;
  padding: 30px 100px;
  width: 1280px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#business li .txt-blc {
  width: 620px;
}
#business li .txt-blc h3 {
  font-size: 3.8rem;
  font-weight: 900;
  letter-spacing: .25em;
  margin-bottom: 40px;
}
#business li .txt-blc h3 span {
  border-bottom: 4px solid;
  padding-bottom: 10px;
}

/*--------------------------
3Dスキャナ型3次元測定器でできること
---------------------------*/
#threeD-scana {
  background: #eaeaea;
}
#threeD-scana .inbox {
  width: 1120px;
}
#threeD-scana h3 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 35px;
  letter-spacing: .1em;
}
#threeD-scana h3 span {
  background: #bc1010;
  color: #fff;
  padding: 0 15px;
  margin-right: 10px;
}
#threeD-scana .lead-txt {
  margin-bottom: 70px;
}
#threeD-scana .scana-wrp {
  margin-bottom: 40px;
}
#threeD-scana .scana-wrp li {
  width: 360px;
  background: #fff;
  padding: 45px 40px 40px 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}
#threeD-scana .scana-wrp li dt {
  font-size: 2rem;
  font-weight: 700;
  padding-bottom: 15px;
  margin-bottom: 15px;
  position: relative;
}
#threeD-scana .scana-wrp li dt:after {
  width: 30px;
  height: 2px;
  position: absolute;
  content: '';
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: 0;
  background: #0a0000;
}
#threeD-scana .scana-wrp li dd {
  text-align: left;
}
#threeD-scana .model-wrp {
  width: 935px;
  margin: 0 auto;
}
#threeD-scana .model-wrp figure {
  position: relative;
  background: #fff;
}
#threeD-scana .model-wrp figure:before {
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  content: '';
}
#threeD-scana .model-wrp figure figcaption {
  background: #0a0000;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  padding: 5px 0;
}
#threeD-scana .model-wrp .real-scan {
  width: 255px;
}
#threeD-scana .model-wrp .real-scan figure {
  margin-bottom: 80px;
}
#threeD-scana .model-wrp .real-scan figure:first-child:before {
  border-width: 16px 16px 0 16px;
  border-color: #0a0000 transparent transparent transparent;
  left: 0;
  right: 0;
  bottom: -45px;
  margin: 0 auto;
}
#threeD-scana .model-wrp .real-scan figure:last-child {
  margin-bottom: 0;
}
#threeD-scana .model-wrp .real-scan figure:last-child:before {
  border-width: 16px 0 16px 16px;
  border-color: transparent transparent transparent #0a0000;
  right: -30px;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
#threeD-scana .model-wrp .threeD-data {
  width: 640px;
}

/*--------------------------
基本的な作業の流れ
---------------------------*/
#steps .ttl03 {
  margin-bottom: 140px;
}
#steps .ttl03 em {
  color: #bc1010;
}
#steps .steps-wrp li {
  width: 530px;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 90px 50px 65px 50px;
  box-sizing: border-box;
  height: 545px;
}
#steps .steps-wrp li:nth-child(2n+1):nth-last-child(-n+2), #steps .steps-wrp li:nth-child(2n+1):nth-last-child(-n+2) ~ li {
  margin-bottom: 0;
}
#steps .steps-wrp li:nth-child(even) {
  margin-top: 50px;
}
#steps .steps-wrp li dt {
  font-size: 8rem;
  position: absolute;
  left: 0;
  right: 0;
  top: -40px;
  line-height: 1;
  padding-bottom: 15px;
}
#steps .steps-wrp li dt:after {
  width: 30px;
  height: 2px;
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  bottom: 0;
  background: #0a0000;
  margin: 0 auto;
}
#steps .steps-wrp li dd .img-blc {
  margin-bottom: 15px;
}
#steps .steps-wrp li dd p {
  text-align: left;
}

/*--------------------------
協力会社様と共に以下の施工も可能です
---------------------------*/
#partner {
  background: url(../img/about/partner-bg.png) center/cover no-repeat;
}
#partner .ttl03 {
  margin-bottom: 50px;
}
#partner li {
  width: 255px;
}
#partner li figcaption {
  background: #bc1010;
  color: #fff;
  font-size: 2rem;
  padding: 5px 0;
  font-weight: 700;
}

/*--------------------------
対応可能素材
---------------------------*/
#material {
  padding: 95px 0;
}
#material .inbox {
  width: 1280px;
  background: #f7f7f7;
  padding: 40px 0 50px 0;
  position: relative;
  z-index: 1;
}
#material .inbox:before {
  position: absolute;
  content: '';
  background: url('../img/about/material.png?1683699909');
  width: 550px;
  height: 91px;
  background-size: 100%;
  top: -30px;
  right: 0;
  bottom: auto;
  left: 0;
  background-repeat: no-repeat;
  -webkit-transition: all .3s;
  transition: all .3s;
  margin: 0 auto;
  z-index: -1;
}
#material .material-wrp {
  width: 980px;
  margin: 0 auto 25px auto;
  position: relative;
}
#material .material-wrp li {
  width: 230px;
  height: 230px;
  border-radius: 50%;
  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;
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  background: #0a0000;
}
#material .material-wrp .etc {
  position: absolute;
  right: -50px;
  bottom: 0;
  font-size: 2rem;
  font-weight: 700;
}
#material .mail-btn {
  margin: 45px auto 0 auto;
}

/*==========================================
加工事例・設備紹介
===========================================*/
/*--------------------------
一覧ページ
---------------------------*/
.case-pagenav {
  width: 540px;
  margin: 0 auto;
}
.case-pagenav li {
  width: 250px;
}
.case-pagenav li a {
  background: #0a0000;
  color: #fff;
  padding: 12px 30px 12px 5px;
  font-weight: 700;
  display: block;
}
.case-pagenav li a span {
  position: relative;
}
.case-pagenav li a span:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: auto;
  right: 0;
  margin: auto;
  content: '';
  vertical-align: middle;
  width: 5px;
  height: 5px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.case-pagenav li a span {
  display: block;
}

.case-sec {
  position: relative;
  padding: 55px 0;
  z-index: 1;
}
.case-sec:before {
  position: absolute;
  content: '';
  top: 1.4vw;
  left: 16.6666%;
  z-index: 1;
}
.case-sec .inbox {
  width: 1280px;
  padding: 45px 0;
  background: #f7f7f7;
  position: relative;
}
.case-sec .inbox:before {
  position: absolute;
  content: '';
  width: 320px;
  height: 100%;
  background: #f7f7f7;
  left: calc(50% - 960px);
  top: 0;
  bottom: 0;
  z-index: -1;
}
.case-sec .case-wrp {
  width: 1080px;
  margin: 0 auto;
}
.case-sec .case-right_blc {
  width: 865px;
}
.case-sec .case-right_blc p {
  text-align: left;
  margin-bottom: 40px;
}
.case-sec .case-right_blc .gallery-wrp li {
  width: 275px;
  margin: 0 20px 25px 0;
}
.case-sec .case-right_blc .gallery-wrp li:nth-child(3n+1):nth-last-child(-n+3), .case-sec .case-right_blc .gallery-wrp li:nth-child(3n+1):nth-last-child(-n+3) ~ li {
  margin-bottom: 0;
}
.case-sec .case-right_blc .gallery-wrp li:nth-child(3n), .case-sec .case-right_blc .gallery-wrp li:last-child {
  margin-right: 0;
}
.case-sec .case-right_blc .gallery-wrp a {
  display: block;
}
.case-sec .case-right_blc .gallery-wrp .com-img {
  width: 100%;
  height: 195px;
  margin-bottom: 10px;
}
.case-sec .case-right_blc .gallery-wrp figcaption {
  text-align: left;
  padding-left: 10px;
  border-left: 2px solid #bc1010;
  font-weight: 700;
}

#processing:before {
  width: 63.3854%;
  height: 4.8958vw;
  background: url(../img/case/machining-example.png) center/100% no-repeat;
}

#facilities:before {
  width: 45.20833%;
  height: 11.093vw;
  background: url(../img/case/equipment-introduction.png) center/100% no-repeat;
}

/*--------------------------
詳細ページ
---------------------------*/
#case {
  background: #f7f7f7;
  margin: 45px 0;
  position: relative;
}
#case .inbox {
  width: 1180px;
}
#case .case-wrp {
  background: #fff;
  padding: 50px;
}
#case .case-wrp .hero {
  width: 525px;
  height: 370px;
}
#case .case-wrp .txt-blc {
  width: 525px;
}
#case .case-wrp .txt-blc h3 {
  font-size: 2rem;
  font-weight: 700;
  border-left: 2px solid #bc1010;
  margin-bottom: 15px;
  padding-left: 10px;
}
#case .case-wrp .txt-blc .com-dl dt {
  width: 130px;
}
#case .case-wrp .txt-blc .com-dl dd {
  width: 395px;
}
#case .case-wrp .gallery-wrp {
  margin-top: 35px;
  padding: 30px;
  background: #f7f7f7;
}
#case .case-wrp .gallery-wrp li {
  width: 495px;
  height: 350px;
  margin-bottom: 25px;
}
#case .case-wrp .gallery-wrp li:nth-child(2n+1):nth-last-child(-n+2), #case .case-wrp .gallery-wrp li:nth-child(2n+1):nth-last-child(-n+2) ~ li {
  margin-bottom: 0;
}

/*==========================================
求人情報
===========================================*/
/*--------------------------
OUR CULTURE
求めている人材
---------------------------*/
#our-culture {
  width: 88.28125%;
  max-width: 1695px;
  min-width: 1280px;
  margin: 85px auto;
  padding: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: url(../img/top/contact-left_deco.png) left top no-repeat, url(../img/top/contact-right_deco.png) right bottom no-repeat;
}
#our-culture .inbox {
  width: 100%;
}
#our-culture .culture-hd {
  background: url(../img/recruit/our-culture-man.png) bottom center no-repeat, url(../img/recruit/our-culture-bg_txt.png) bottom center/100% no-repeat, #f7f7f7;
  position: relative;
  padding: 130px 0 295px 0;
}
#our-culture .culture-hd h3 {
  position: absolute;
  left: 0;
  right: 0;
  top: -30px;
}
#our-culture .culture-hd h3 span {
  font-weight: 700;
  display: block;
  font-size: 2rem;
  color: #bc1010;
  margin-top: 15px;
}
#our-culture .culture-hd p {
  width: 465px;
  margin: 0 auto;
  position: relative;
  color: #fff;
  background: #bc1010;
  font-size: 2.8rem;
  font-weight: 700;
  padding: 15px 0;
  letter-spacing: .1em;
}
#our-culture .culture-hd p:before {
  position: absolute;
  content: '';
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: -12px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 12.5px 0 12.5px;
  border-color: #bc1010 transparent transparent transparent;
}
#our-culture .culture-bottom {
  background: #eaeaea;
  padding: 60px 0;
}
#our-culture .culture-bottom dt {
  width: 41.6666%;
  color: #fff;
  font-size: 2.8rem;
  font-weight: 700;
  text-align: right;
  background: #0a0000;
  letter-spacing: .1em;
  padding: 10px 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#our-culture .culture-bottom dd {
  width: 52.469%;
}
#our-culture .culture-bottom dd .check-wrp {
  font-size: 2.8rem;
  font-weight: 700;
}
#our-culture .culture-bottom dd .check-wrp li {
  padding-left: 30px;
  margin-right: 25px;
  background: url(../img/recruit/check_icon.png) left center no-repeat;
}
#our-culture .culture-bottom dd .check-wrp li:last-child {
  margin-right: 0;
}

/*--------------------------
和光マシニングで働くメリット
---------------------------*/
#rec-merit {
  margin-bottom: 100px;
}
#rec-merit .inbox {
  width: 1280px;
  padding: 40px 0 45px 0;
  background: #f7f7f7;
  position: relative;
}
#rec-merit .inbox:before {
  position: absolute;
  content: '';
  width: 420px;
  height: 100%;
  background: #f7f7f7;
  left: calc(50% - 960px);
  top: 0;
  bottom: 0;
}
#rec-merit .ttl03 {
  margin-bottom: 80px;
}
#rec-merit .ttl03 em {
  color: #bc1010;
}
#rec-merit .merit-wrp {
  width: 1080px;
  margin: 0 auto;
}
#rec-merit .merit-wrp li {
  width: 340px;
  background: #fff;
  font-size: 2.8rem;
  font-weight: 700;
  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;
  height: 200px;
  position: relative;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}
#rec-merit .merit-wrp li em {
  color: #bc1010;
}
#rec-merit .merit-wrp li:nth-child(2) {
  margin-top: 30px;
}
#rec-merit .merit-wrp li:nth-child(3) {
  margin-top: 60px;
}
#rec-merit .merit-wrp li:before {
  position: absolute;
  left: 0;
  right: 0;
  top: -55px;
  font-size: 8rem;
  line-height: 1;
  font-family: 'Alata', sans-serif;
}
#rec-merit .merit-wrp li:after {
  width: 30px;
  height: 2px;
  position: absolute;
  content: '';
  background: #0a0000;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: 35px;
}
#rec-merit .merit-wrp li:nth-child(1):before {
  content: "01";
}
#rec-merit .merit-wrp li:nth-child(2):before {
  content: "02";
}
#rec-merit .merit-wrp li:nth-child(3):before {
  content: "03";
}

/*--------------------------
1日のスケジュール
---------------------------*/
#schedule .inbox {
  padding: 40px 0;
  background: #f7f7f7;
  position: relative;
}
#schedule .inbox:before {
  position: absolute;
  content: '';
  width: 420px;
  height: 100%;
  background: #f7f7f7;
  right: calc(50% - 960px);
  top: 0;
  bottom: 0;
}
#schedule .ttl03 {
  margin-bottom: 10px;
}
#schedule .attention {
  font-size: 1.6rem;
  margin-bottom: 40px;
}
#schedule .schedule-wrp {
  position: relative;
}
#schedule .schedule-wrp:before {
  width: 4px;
  height: 100%;
  background: #bc1010;
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  top: 0;
  margin: 0 auto;
}
#schedule .schedule-wrp li {
  position: relative;
  margin-bottom: 50px;
}
#schedule .schedule-wrp li:last-child {
  margin-bottom: 0;
}
#schedule .schedule-wrp li:before {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  background: #bc1010;
  margin: auto;
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  top: 8px;
}
#schedule .schedule-wrp li dt {
  width: 540px;
  font-size: 2.8rem;
  font-weight: 700;
  text-align: right;
  padding: 0 60px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#schedule .schedule-wrp li .work-inner {
  padding: 0 10px 0 60px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
  width: 540px;
  margin-left: auto;
}
#schedule .schedule-wrp li .work-inner span {
  display: block;
  color: #bc1010;
  font-size: 2.8rem;
  font-weight: 700;
}
#schedule .schedule-wrp .work {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  font-size: 2.8rem;
  background: #bc1010;
  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;
  margin: 0 auto 50px auto;
  letter-spacing: .1em;
}
#schedule .schedule-wrp .work:before {
  background: none;
}

/*--------------------------
募集要項
---------------------------*/
#requirements {
  width: 88.28125%;
  max-width: 1695px;
  min-width: 1280px;
  margin: 85px auto;
  padding: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: url(../img/top/contact-left_deco.png) left top no-repeat, url(../img/top/contact-right_deco.png) right bottom no-repeat;
}
#requirements .inbox {
  width: 100%;
  background: #f7f7f7;
  padding: 75px 0;
}
#requirements h3 {
  margin-bottom: 35px;
}
#requirements h3 span {
  display: block;
  color: #bc1010;
  font-size: 2rem;
  margin-top: 15px;
  font-weight: 700;
}
#requirements .rec-wrp {
  width: 1080px;
  margin: 0 auto 65px auto;
}
#requirements .rec-wrp:last-child {
  margin-bottom: 0;
}
#requirements .rec-wrp h4 {
  text-align: left;
  font-size: 2rem;
  font-weight: 700;
  border-left: 3px solid;
  padding-left: 15px;
  margin-bottom: 15px;
}

/*--------------------------
和光マシニング
LINE公式アカウント
---------------------------*/
#line-bnr .inbox {
  width: 615px;
  margin: 0 auto;
  background: #0a0000;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  color: #fff;
  -webkit-box-shadow: 0 0 8px rgba(10, 0, 0, 0.25);
          box-shadow: 0 0 8px rgba(10, 0, 0, 0.25);
}
#line-bnr .inbox:before {
  position: absolute;
  content: '';
  background: url('../img/recruit/line-account_character.png?1683699913');
  width: 205px;
  height: 238px;
  background-size: 100%;
  top: auto;
  right: -92px;
  bottom: -40px;
  left: auto;
  background-repeat: no-repeat;
  -webkit-transition: all .3s;
  transition: all .3s;
  z-index: 1;
}
#line-bnr .inbox .bnr-frame {
  border: 1px solid #fff;
  padding: 20px 105px 30px 105px;
  position: relative;
}
#line-bnr .inbox .circle {
  width: 176px;
  height: 176px;
  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;
  background: #bc1010;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  border-radius: 50%;
  position: absolute;
  left: -70px;
  top: -70px;
}
#line-bnr .inbox .ttl03 em {
  display: block;
  font-size: 2rem;
}
#line-bnr .inbox .more-btn {
  background: #bc1010;
  margin: 25px auto 0 auto;
}

/*==========================================
会社概要
===========================================*/
/*--------------------------
代表挨拶
---------------------------*/
#message {
  background: url(../img/company/message-right_deco.png) right 15.1041% bottom 185px/9.53125% no-repeat, url(../img/company/message.png) left top 45px/63.90625% no-repeat, #f7f7f7;
}
#message .inbox {
  position: relative;
  background: url(../img/company/message-character.png) right 75px bottom no-repeat;
}
#message .inbox:before {
  position: absolute;
  content: '';
  background: url('../img/company/message-left_deco.png?1683699912');
  width: 280px;
  height: 402px;
  background-size: 100%;
  top: -25px;
  right: auto;
  bottom: auto;
  left: -165px;
  background-repeat: no-repeat;
  -webkit-transition: all .3s;
  transition: all .3s;
  z-index: 1;
}
#message .txt-blc {
  width: 575px;
  margin-left: 85px;
  background: #0a0000;
  color: #fff;
  padding: 40px;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#message .txt-blc:before {
  position: absolute;
  content: '';
  right: -28px;
  bottom: 75px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 28px 0 28px 28px;
  border-color: transparent transparent transparent #0a0000;
}
#message .txt-blc h3 {
  font-size: 4rem;
  letter-spacing: .4em;
  font-weight: 900;
  margin-bottom: 30px;
  text-align: center;
}
#message .txt-blc p {
  margin-bottom: 10px;
}
#message .txt-blc .name {
  margin-bottom: 0;
  text-align: right;
}

/*--------------------------
趣味のギャラリー
---------------------------*/
#gallery .inbox {
  width: 1280px;
  background: #f7f7f7;
  padding: 45px 0;
  position: relative;
  z-index: 1;
}
#gallery .inbox:before {
  position: absolute;
  content: '';
  background: url('../img/company/gallery.png?1683699912');
  width: 474px;
  height: 94px;
  background-size: 100%;
  top: -40px;
  right: 0;
  bottom: auto;
  left: 0;
  background-repeat: no-repeat;
  -webkit-transition: all .3s;
  transition: all .3s;
  margin: 0 auto;
  z-index: -1;
}
#gallery .gallery-wrp {
  width: 1080px;
  margin: 0 auto;
}
#gallery .gallery-wrp li {
  width: 345px;
  margin: 0 22.5px 25px 0;
}
#gallery .gallery-wrp li:nth-child(3n+1):nth-last-child(-n+3), #gallery .gallery-wrp li:nth-child(3n+1):nth-last-child(-n+3) ~ li {
  margin-bottom: 0;
}
#gallery .gallery-wrp li:nth-child(3n), #gallery .gallery-wrp li:last-child {
  margin-right: 0;
}
#gallery .gallery-wrp li a {
  display: block;
}
#gallery .gallery-wrp li .com-img {
  width: 100%;
  height: 245px;
  margin-bottom: 10px;
}
#gallery .gallery-wrp li figcaption {
  text-align: left;
  font-weight: 700;
  border-left: 3px solid #bc1010;
  padding-left: 10px;
}

/*--------------------------
詳細ページ
---------------------------*/
#hobby-gallery .inbox {
  width: 1280px;
  background: #f7f7f7;
  padding: 55px 100px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}
#hobby-gallery .inbox:before {
  position: absolute;
  content: '';
  background: url('../img/company/gallery.png?1683699912');
  width: 474px;
  height: 94px;
  background-size: 100%;
  top: -15px;
  right: 0;
  bottom: auto;
  left: 0;
  background-repeat: no-repeat;
  -webkit-transition: all .3s;
  transition: all .3s;
  margin: 0 auto;
}
#hobby-gallery .hero {
  margin-bottom: 10px;
}
#hobby-gallery h4 {
  text-align: left;
  font-weight: 700;
  border-left: 3px solid #bc1010;
  font-size: 2.8rem;
  padding-left: 10px;
}

/*--------------------------
OUTLINE
会社概要
---------------------------*/
#outline {
  width: 88.28125%;
  max-width: 1695px;
  min-width: 1280px;
  margin: 85px auto;
  padding: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: url(../img/top/contact-left_deco.png) left top no-repeat, url(../img/top/contact-right_deco.png) right bottom no-repeat;
}
#outline .inbox {
  width: 100%;
  background: #f7f7f7;
  padding: 75px 0;
}
#outline h3 {
  margin-bottom: 35px;
}
#outline h3 span {
  font-weight: 700;
  display: block;
  font-size: 2rem;
  color: #bc1010;
  margin-top: 15px;
}
#outline .com-dl {
  width: 1080px;
  margin: 0 auto;
}

/*==========================================
一覧ぺージ用カテゴリ(セレクトボックス)
===========================================*/
.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: #bc1010;
}
.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: #bc1010;
  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 #bc1010;
  color: #fff;
  background: #bc1010;
  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: #bc1010;
  border: 1px solid #bc1010;
  -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 #bc1010;
  color: #bc1010;
  padding: 3px 10px;
  border-radius: 25px;
  display: block;
}
.single-meta .category-label li a:hover {
  opacity: 1;
  color: #fff;
  background: #bc1010;
}

/*----------------------------------
詳細ページのカテゴリー表示(テキストエリア下部)
----------------------------------*/
.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 {
  width: 350px !important;
  position: relative;
  vertical-align: top;
}
#contact .contact-form dl dt em {
  position: absolute;
  top: 20px;
  right: 10px;
  color: #bc1010;
  font-weight: 500;
  font-size: 11px;
}
#contact .contact-form dl dt small {
  display: block;
}
#contact .contact-form dl dd {
  width: 730px;
}
#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: 1px solid #ccc;
  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: #0a0000;
  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 {
  border-bottom: 1px solid #f2f2f2;
  padding: 10px 0;
}
#contact .contact-form .upload-item-wrap #file01 {
  margin-bottom: 10px;
}
#contact .contact-form .upload-item-wrap .thumb {
  width: 200px;
  margin: 15px 0;
}
#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: #bc1010;
}
#contact .contact-form .upload-item-wrap .ancion-btn-wrap p {
  background: #0a0000;
}
#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: #0a0000;
}
#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 #bc1010;
  color: #bc1010;
  border-radius: 0;
}
#contact input[type='button']:hover,
#contact input[type='submit']:hover,
#contact .contact-submits-wrap button:hover {
  background: #bc1010;
  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 {
  text-decoration: underline;
  color: -webkit-link;
}

/*==========================================
プライバシーポリシー
===========================================*/
#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;
}

/*==========================================
プライバシーポリシー(LPフレーム時)
===========================================*/
/*==========================================
404.php
===========================================*/
#err-cont .txt-blc a {
  text-decoration: underline;
}
