@charset 'UTF-8';

/*==================================
--------------------------------
	Common
--------------------------------
MainColor   : #004086
AccentColor : #000;

--------------------------------
	Table of Content
--------------------------------
00.Reset
01.Common
    01-1. Layout
    01-2. FlexBox
    01-3. Width
    01-4. Fonts
    01-5. Links
03.Header
04.Main
    04-1. TopPage
	04-2. LowerPage
		   Ⅰ. 共通
	       Ⅱ. 企業情報
	           i. 会社概要
	           ⅱ. 営業所情報
	           ⅲ. 沿革
	           ⅳ. 財務情報
	           ⅴ. 一般事業主行動行動計画
	           ⅵ. 持続可能性
	           ⅶ. マザックニシカワ株式会社
	       Ⅲ. 商品情報
	       Ⅳ. イベントカレンダー
	       Ⅴ.  採用情報
	       Ⅵ. 社員ブログ
==================================*/





/*==========================================

　00. Reset

==========================================*/
* {
	box-sizing: border-box;
}

body {
	color: #000;
	font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", meiryo, "メイリオ", "ms pgothic", sans-serif;
	font-size: 13px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
img {
	max-width: 100%;
	vertical-align: bottom;
}
ul, ol {
	margin:0;
	padding:0;
}
li {
	list-style-type: none;
}
p {
	margin:0;
	padding:0;
}
a {
	color: #000;
	text-decoration: none;
}
a, a:hover, button, button:hover, img, article, input, textarea {
  text-decoration:none;
  -webkit-transition: .2s;
  -moz-transition: .2s;
  -o-transition: .2s;
  -ms-transition: .2s;  
  transition: .2s;
}
h1, h2, h3, h4, h5, h6 {
	font-size: 1em;
	margin:0;
	padding:0;
}
dl, dt, dd {
	margin:0;
	padding:0;
}
input:focus, textarea:focus {
  outline:none;
}
input, textarea, button {
	border: none;
	background: none;
}
button {
	cursor: pointer;
	display: block;
	width: 100%;
}
*:focus {
	outline: none;
}


/*==========================================

　01. Common

==========================================*/

/*———————————–———————————–——————
  01-1. Layout -- Boxレイアウト
———————————–———————————–————————*/
#wrapper {
	overflow: hidden;
	width: 100%;
}
.container {
	box-sizing: border-box;
	padding: 0 15px;
}
.outer {
	margin: 0 auto;
	max-width: 1120px;
	width: 100%;
}
.inner {
	margin: 0 auto;
	max-width: 960px;
	width: 100%;
}
.float_wrap {overflow: hidden;}
.left_clm   {float: left;}
.right_clm  {float: right;}


/*———————————–———————————–——————
  01-2. FlexBox -- Flexコンテンツ
———————————–———————————–————————*/
.flexBox {
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
}
.jc-space {
	-webkit-justify-content: space-between;
		-ms-justify-content: space-between;
		    justify-content: space-between;
}
.jc-center {
	-webkit-justify-content: center;
		-ms-justify-content: center;
		    justify-content: center;
}
.jc-start {
	-webkit-justify-content: flex-start;
		-ms-justify-content: flex-start;
		    justify-content: flex-start;
}
.jc-end {
	-webkit-justify-content: flex-end;
		-ms-justify-content: flex-end;
		    justify-content: flex-end;
}
.ai-center {
	-webkit-align-items: center;
		-ms-align-items: center;
		    align-items: center;
}
.ai-stretch {
	-webkit-align-items: stretch;
		-ms-align-items: stretch;
		    align-items: stretch;
}
.ai-start {
	-webkit-align-items: flex-start;
		-ms-align-items: flex-start;
		    align-items: flex-start;
}
.ai-end {
	-webkit-align-items: flex-end;
		-ms-align-items: flex-end;
		    align-items: flex-end;
}


/*———————————–———————————–——————
  01-3. Width -- 横幅の指定
———————————–———————————–————————*/
.w10 { width: 10%; }
.w15 { width: 15%; }
.w20 { width: 20%; }
.w25 { width: 25%; }
.w30 { width: 30%; }
.w35 { width: 35%; }
.w40 { width: 40%; }
.w45 { width: 45%; }
.w50 { width: 50%; }
.w55 { width: 55%; }
.w60 { width: 60%; }
.w65 { width: 65%; }
.w70 { width: 70%; }
.w75 { width: 75%; }
.w80 { width: 80%; }
.w85 { width: 85%; }
.w90 { width: 90%; }
.w95 { width: 95%; }
.w100 { width: 100%; }


/*———————————–———————————–——————
  01-4. Fonts -- 書式の指定
———————————–———————————–————————*/
.eng       {font-family: 'Prompt', sans-serif; font-weight: bold;}
.txt       {line-height: 1.7;}
.font-bold {font-weight: bold;}
.font-nml  {font-weight: normal;}


/*———————————–———————————–——————
  01-5. Links -- リンクの指定
———————————–———————————–————————*/
.txtLink,
.txtLink-hover:hover { text-decoration: underline; }
.hyperlink       {color:#006FE6;}
.hyperlink:hover {text-decoration: underline;}
.gaibu {
	padding-right: 17px;
	background: url('img/gaibu_ico.png') no-repeat right center / 10px;
}





/*==========================================

　03. Header

==========================================*/
#load {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: 99999999999;
	background: #fff;
}
#logomark {
	width: 80px;
	position: fixed;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	   -moz-transform: translate(-50%,-50%);
	    -ms-transform: translate(-50%,-50%);
	     -o-transform: translate(-50%,-50%);
	        transform: translate(-50%,-50%);
}
#header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: #fff;
	z-index: 9999999999;
}
.header__logo_wrap {
	height: 100%;
	max-width: 288px;
}
.header__logo_wrap .logomark {
	background: #004086;
	width: 100px;
	height: 100px;
	transition: .2s;
}
.header__logo_wrap .logotxt {
	width: calc(100% - 100px);
	padding-left: 20px;
}
#gnav {
	margin-right: 40px;
}
#gnav ul li {
	font-weight: bold;
}
#gnav ul li:not(:last-child) {
	margin-right: 30px;
}

/* 20231004  ボタン追加と調整*/
@media screen and (max-width: 1280px) {
  #header .jc-space {
    display: block;
  }
}

@media screen and (max-width: 1280px) {
  #gnav {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (max-width: 1020px) {
  #gnav ul {
    width: 100%;
  }
}

.search-form-wrap {
  margin-left: 0;
}
@media screen and (max-width: 767px) {
  .search-form-wrap {
    margin: 0 auto;
  }
}

.mazak_btn {
  margin-right: 0 !important;
}
.mazak_btn button {
  text-align: left;
  padding: 0 36px 0 18px;
  color: #fff;
  font-weight: bold;
  height: 38px;
  line-height: 38px;
  background: #F47E00;
  margin: 0 auto;
  position: relative;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .mazak_btn button {
    padding: 25px 20px;
    height: auto;
    line-height: 1;
  }
}
.mazak_btn button:after {
  content: "";
  width: 12px;
  height: 12px;
  border: 1px solid #fff;
  border-radius: 50px;
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.mazak_btn button:before {
  content: "";
  width: 4px;
  height: 4px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  position: absolute;
  right: 17px;
  top: 50%;
  -webkit-transform: translate(0, -50%) rotate(45deg);
          transform: translate(0, -50%) rotate(45deg);
}
.mazak_btn button:hover {
  background-color: #F4AA5A;
}



/*==========================================

　04. Main

==========================================*/

/*———————————–———————————–——————
  04-1. TopPage -- トップページ
———————————–———————————–————————*/
#topMv {
	height: 640px;
	background: url('img/top_mv_bg.jpg') no-repeat center center / cover;
	position: relative;
	overflow: hidden;
	padding: 0 20px;
}
#topMv:after {
	content: "";
	width: 477px;
	height: 924px;
	/* background: url('img/building.png') no-repeat center center / 100%; */
	position: absolute;
	top: 50%;
	right: 0;
	-webkit-transform: translateY(-50%);
	   -moz-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	     -o-transform: translateY(-50%);
	        transform: translateY(-50%);
}
#topMv .inner {
	position: relative;
	height: 100%;
}
.topMv__inner {
	position: absolute;
	top: 50%;
	left: 0;
	color: #fff;
	-webkit-transform: translateY(-50%);
	   -moz-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	     -o-transform: translateY(-50%);
	        transform: translateY(-50%);
}
.topMv__catch {
	font-size: 47px;
	font-weight: bold;
	letter-spacing: 5px;
	line-height: 1.4;
	margin-bottom: 20px;
	text-shadow: 0 0 8px rgba(0,0,0,.8);
}
.topMv__txt {
	text-shadow: 0 0 8px rgba(0,0,0,.8);
	font-size: 20px;
}
#topMv .scroll {
	position: absolute;
	bottom: 20px;
	left: 50%;
	color: #fff;
	letter-spacing: 2px;
	font-size: 10px;
	display: inline-block;
	-webkit-transform: translateX(-50%);
	   -moz-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	     -o-transform: translateX(-50%);
	        transform: translateX(-50%);
}
#topMv .scroll span {
	height: 40px;
	width: 3px;
	position: absolute;
	bottom: 100%;
	left: 50%;
	overflow: hidden;
	margin-bottom: 10px;
	-webkit-transform: translateX(-50%);
	   -moz-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	     -o-transform: translateX(-50%);
	        transform: translateX(-50%);
}
#topMv .scroll span:before {
	content: "";
	width: 1px;
	height: 40px;
	position: absolute;
	top: 0;
	left: 0;
	background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 59%, rgba(255,255,255,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 59%,rgba(255,255,255,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 59%,rgba(255,255,255,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	animation: fullexpand 2s infinite;
    -moz-animation: fullexpand 2s infinite;
    -webkit-animation: fullexpand 2s infinite;
}
@keyframes fullexpand {
	0% { left:50%; transform:translateY(-50px); opacity: 1;}
	50%{ left:50%; transform:translateY(50px); opacity: 1;}
	100%{ left:51%; transform:translateY(50px); opacity: 1;}
}
@-webkit-keyframes fullexpand{
	0% { left:50%; transform:translateY(-50px); opacity: 1;}
	50%{ left:50%; transform:translateY(50px); opacity: 1;}
	100%{ left:51%; transform:translateY(50px); opacity: 1;}
}
@-moz-keyframes fullexpand {
	0% { left:50%; transform:translateY(-50px); opacity: 1;}
	50%{ left:50%; transform:translateY(50px); opacity: 1;}
	100%{ left:51%; transform:translateY(50px); opacity: 1;}
}

.top__carousel_wrap {
	background: #f4f7f9;
	position: relative;
	padding: 20px 0;
}
.slickSlider {
	max-width: 1130px;
	width: 100%;
	margin: 0 auto;
}
.slickSlider li {
	margin: 0 5px;
	border: 3px solid #fff;
}
.slickSlider li img {
	height: auto;
}
.slickSlider li a {
	display: block;
}
.slickSlider li a:hover {
	opacity: .6;
}
.slickSlider .slick-arrow,
.topNews__slider_inner .slick-arrow {
	padding: 0;
	width: 48px;
	height: 48px;
	background: #000;
	border-radius: 0 5px 5px 0;
	position: absolute;
	top: 50%;
	font-size: 10px;
	overflow: hidden;
	color: transparent;
	transition: .2s;
	z-index: 999;
}
.slickSlider .slick-arrow:hover,
.topNews__slider_inner .slick-arrow:hover {
	background: #004086;
	transition: .2s;
}
.slickSlider .slick-arrow:before,
.slickSlider .slick-arrow:after,
.topNews__slider_inner .slick-arrow:before,
.topNews__slider_inner .slick-arrow:after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
}
.slickSlider .slick-arrow:before,
.topNews__slider_inner .slick-arrow:before {
	width: 10px;
	height: 1px;
	background: #fff;
	-webkit-transform: translate(-50%,-50%);
	   -moz-transform: translate(-50%,-50%);
	    -ms-transform: translate(-50%,-50%);
	     -o-transform: translate(-50%,-50%);
	        transform: translate(-50%,-50%);
}
.slickSlider .slick-arrow:after,
.topNews__slider_inner .slick-arrow:after {
	width: 4px;
	height: 4px;
	border-top: 1px solid #fff;
	border-left: 1px solid #fff;
	-webkit-transform: translate(-5px,-50%) rotate(-45deg);
	   -moz-transform: translate(-5px,-50%) rotate(-45deg);
	    -ms-transform: translate(-5px,-50%) rotate(-45deg);
	     -o-transform: translate(-5px,-50%) rotate(-45deg);
	        transform: translate(-5px,-50%) rotate(-45deg);
}
.slickSlider .slick-arrow.slick-prev,
.topNews__slider_inner .slick-arrow.slick-prev {
	left: -80px;
	-webkit-transform: translateY(-50%);
	   -moz-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	     -o-transform: translateY(-50%);
	        transform: translateY(-50%);
}
.slickSlider .slick-arrow.slick-next,
.topNews__slider_inner .slick-arrow.slick-next {
	right: -80px;
	-webkit-transform: translateY(-50%) scale(-1,1);
	   -moz-transform: translateY(-50%) scale(-1,1);
	    -ms-transform: translateY(-50%) scale(-1,1);
	     -o-transform: translateY(-50%) scale(-1,1);
	        transform: translateY(-50%) scale(-1,1);
}
#topAbout {
	color: #fff;
	background: url('img/bg_topAbout.jpg') no-repeat center center / cover;
}
.topSc {
	padding: 70px 20px;
}
.topSc__ttl {
	margin-bottom: 30px;
	text-align: center;
}
.topSc__ttl.left {
	text-align: left;
}
.topSc__ttl .ja {
	font-size: 32px;
	font-weight: bold;
	letter-spacing: 4px;
	display: block;
}
.topSc__ttl .eng {
	font-size: 12px;
	letter-spacing: 1px;
	display: block;
	color: #004086;
	margin-top: 10px;
}
.topSc__ttl.white .ja,
.topSc__ttl.white .eng {
	color: #fff;
}
.btnWrap {
	max-width: 245px;
	width: 100%;
	border-radius: 5px;
	border: 1px solid rgba(255,255,255,.32);
	overflow: hidden;
	transition: .2s;
}
.btnWrap:hover {
	border-color: #fff;
}
.btnWrap .btn {
	display: block;
	padding: 20px;
	background: #004086;
	color: #fff;
	text-align: center;
	font-weight: bold;
	transition: .2s;
}
.btnWrap .btn:hover {
	background: #0a6ad4;
}
.btnWrap.white {
	border-color: #e8e8e8;
}
.btnWrap.white .btn {
	background: #fff;
	color: #000;
}
.btnWrap.white .btn:hover {
	background: #eeeff6;
}
#topAbout .leftClm {
	width: calc(100% - 245px);
	padding-right: 40px;
	text-shadow: 0 0 8px rgba(0,0,0,.7);
}
#topNews {
	padding: 70px 0;
	background: url('img/top_news_bg.jpg') no-repeat center center / cover;
}
.topNews__slider {
	position: relative;
}
.topNews__slider_inner {
	max-width: 1140px;
	width: 100%;
	margin: 0 auto;
}
.topNews__slider_inner .slider_box {
	margin: 0 20px;
	position: relative;
}
.topNews__slider_inner .new {
	position: absolute;
	top: 0;
	left: 0;
}
.topNews__slider_inner .slider_box .thumb {
	border: 1px solid #EEEFF6;
    overflow: hidden;
    margin-bottom: 15px;
    background: #fff;
}
.topNews__slider_inner .slider_box .thumb img {
	object-fit: contain;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}
.topNews__slider_inner .slider_box .thumb a {
	width: 100%;
    height: 100%;
    padding-top: 100%;
    position: relative;
    display: block;
}
.topNews__slider_inner .slider_box .thumb a:hover img {
	-webkit-transform: translate(-50%,-50%) scale(1.1,1.1);
	   -moz-transform: translate(-50%,-50%) scale(1.1,1.1);
	    -ms-transform: translate(-50%,-50%) scale(1.1,1.1);
	     -o-transform: translate(-50%,-50%) scale(1.1,1.1);
	        transform: translate(-50%,-50%) scale(1.1,1.1);
}
.topNews__slider_inner .slider_box .title {
	font-size: 14px;
	font-weight: bold;
	line-height: 1.6;
	margin-bottom: 30px;
	height: 44px;
}
.topNews__slider_inner .slider_box .title a:hover {
	color: #004086;
}
.cat_wrap {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.cat_wrap .cat,.new {
	margin-right: 10px;
}
.cat {
	display: inline-block;
	border: 1px solid #004086;
	border-radius: 3px;
	overflow: hidden;
}
.new {
	display: inline-block;
	border: 1px solid #ff0000;
	border-radius:0;
	overflow: hidden;
}
#topNews .cat span,
.cat a {
	display: block;
	background: #004086;
	color: #fff;
	font-size: 10px;
	font-weight: bold;
	padding: 5px 10px;
}
.cat a:hover {
	background: #fff;
	color: #004086;
}
#topNews .new span,
.new a {
	display: block;
	background: #ff0000;
	color: #fff;
	font-size: 10px;
	font-weight: bold;
	padding: 5px 10px;
}
#topReport .new span,
.new a {
	display: block;
	background: #ff0000;
	color: #fff;
	font-size: 10px;
	font-weight: bold;
	padding: 5px 10px;
}
.cat a:hover {
	background: #fff;
	color: #004086;
}
.datetime {
	letter-spacing: 1px;
	color: #004086;
	font-size: 12px;
}
.bgGray {
	background: #f8f9fa;
}
.order__list li {
	width: 48.21%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	border-bottom: 1px solid #e8e8e8;
	padding: 30px 0;
}
.order__list li:nth-child(-n+2) {
	padding-top: 0;
}
.order__list li:nth-child(odd) {
	margin-right: 3.58%;
}
.order__list .thumb {
	width: 100px;
	overflow: hidden;
}
.order__list .thumb img {
	height: auto;
}
.order__list .thumb a {
	display: block;
}
.order__list .thumb a:hover img {
	-webkit-transform: scale(1.1,1.1);
	   -moz-transform: scale(1.1,1.1);
	    -ms-transform: scale(1.1,1.1);
	     -o-transform: scale(1.1,1.1);
	        transform: scale(1.1,1.1);
}
.order__list .content {
	width: calc(100% - 100px);
	padding-left: 30px;
}
.order__list .content .title {
	font-weight: bold;
	font-size: 14px;
	line-height: 1.6;
}
.order__list .content .title a:hover {
	color: #004086;
}
.order__list .content .cat_wrap {
	margin-top: 30px;
}
#topReport .arrow_link {
	text-align: center;
	margin-top: 60px;
}
.arrow_link a {
	font-weight: bold;
	text-decoration: underline;
	padding-left: 15px;
	position: relative;
}
.arrow_link a:hover {
	text-decoration: none;
}
.arrow_link a:before {
	content: ">";
	position: absolute;
	top: 0;
	left: 0;
}




/*———————————–———————————–——————
  04-2. LowerPage -- 下層ページ
———————————–———————————–————————*/

/*　共通
￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣*/
#wrapper.lower {
	background: #fbfbfd;
	padding-bottom: 80px;
}
#lwTitle__wrap {
	height: 320px;
	position: relative;
}
#lwTitle__wrap.about    { background: url('img/bg_topAbout.jpg') no-repeat center center / cover; }
#lwTitle__wrap.engineer { background: url('img/bg_topEngineer.jpg') no-repeat center center / cover; }
#lwTitle__wrap.blog     { background: url('img/bg_topBlog.jpg') no-repeat center center / cover; }
#lwTitle__wrap.recruit  { background: url('img/bg_topRecruit.jpg') no-repeat center center / cover; }
#lwTitle__wrap.product  { background: url('img/bg_topProduct.jpg') no-repeat center center / cover; }
#lwTitle__wrap.event    { background: url('img/bg_topEvent.jpg') no-repeat center center / cover; }

#lwTitle__wrap .lwTitle {
	padding: 80px;
	text-shadow: 0 0 8px rgba(0,0,0,.7);
}
#lwTitle__wrap .lwTitle .ja,
#lwTitle__wrap .lwTitle .eng {
	color: #fff;
}
#lwTitle__wrap .lwTitle .ja {
	font-size: 32px;
	font-weight: bold;
	letter-spacing: 4px;
	display: block;
}
#lwTitle__wrap .lwTitle .eng {
	font-size: 12px;
	letter-spacing: 1px;
	margin-top: 20px;
	display: block;
}
#lwSection {
	z-index: 10;
	margin-top: -84px;
}
#bread {
	position: absolute;
	bottom: 80px;
	left: 50%;
	color: #fff;
	font-size: 11px;
	margin-bottom: 20px;
	line-height: 1.5;
	text-shadow: 0 0 5px rgba(0,0,0,.5);
	-webkit-transform: translateX(-50%);
	   -moz-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	     -o-transform: translateX(-50%);
	        transform: translateX(-50%);
}
#bread li:not(:last-child) {
	padding-right: 20px;
	position: relative;
}
#bread li:not(:last-child):after {
	content: ">";
	color: #fff;
	position: absolute;
	top: 0;
	right: 7px;
}
#bread li a {
	color: #fff;
}
#bread li a:hover {
	text-decoration: underline;
}
#main {
	background: #fff;
	width:78.58%;
	position: relative;
	box-shadow: 0 0 16px rgba(0,0,0,.16);
	padding: 80px 0;
	z-index: 11;
}
#main:before {
	content: "";
	width: calc(calc(100vw - 1120px) / 2);
	position: absolute;
	top: 0;
	left: 100%;
	height: 100%;
	background: #fff url('img/lw_logo.png') no-repeat top 80px right -2px / 75px;
	box-shadow: 0 16px 16px -16px rgba(0,0,0,.16);
	z-index: 0;
}
#side {
	width: 21.42%;
	z-index: 10;
}
#sideNav ul li:not(:first-child) {
	margin-top: 5px;
}
#sideNav ul li > a {
	display: block;
	padding: 33px 45px 33px 30px;
	background: #eeeff6;
	font-weight: bold;
	position: relative;
	line-height: 1.4;
}
#sideNav ul li > a:hover,
#sideNav ul li.current > a {
	background: #004086;
	color: #fff;
}
#sideNav ul li > a:before,
#sideNav ul li > a:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 30px;
	transition: .2s;
}
#sideNav ul li > a:before {
	width: 10px;
	height: 1px;
	background: #afbad9;
	-webkit-transform: translateY(-50%);
	   -moz-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	     -o-transform: translateY(-50%);
	        transform: translateY(-50%);
}
#sideNav ul li > a:after {
	content: "";
	width: 4px;
	height: 4px;
	border-top: 1px solid #afbad9;
	border-right: 1px solid #afbad9;
	-webkit-transform: translateY(-50%) rotate(45deg);
	   -moz-transform: translateY(-50%) rotate(45deg);
	    -ms-transform: translateY(-50%) rotate(45deg);
	     -o-transform: translateY(-50%) rotate(45deg);
	        transform: translateY(-50%) rotate(45deg);
}
#sideNav ul li.current > a:before,
#sideNav ul li > a:hover:before {
	background: #fff;
	transition: .2s;
}
#sideNav ul li.current > a:after,
#sideNav ul li > a:hover:after {
	border-color: #fff;
}
.lwSc {
	padding: 0 80px;
}
.lwSc:not(:first-child) {
	margin-top: 60px;
}
.lwSc__ttl {
	font-size: 24px;
	letter-spacing: 2px;
	font-weight: bold;
	padding-bottom: 20px;
	border-bottom: 2px solid #eeeff6;
	position: relative;
	margin-bottom: 20px;
}
.lwSc__ttl:after {
	content: "";
	width: 240px;
	height: 2px;
	background: #004086;
	position: absolute;
	bottom: -2px;
	left: 0;
}
.main__txt {
	font-size: 17px;
	line-height: 1.8;
}
.grayBox {
	background: #eeeff6;
	border-radius: 5px;
	padding: 30px;
	margin-top: 30px;
}
.tb {
	width: 100%;
	border-collapse: collapse;
}
.tb th,
.tb td {
	padding: 20px;
	line-height: 1.7;
	border-bottom: 1px solid #e8e8e8;
	text-align: left;
}
.tb tr:last-child th,
.tb tr:last-child td {
	border-bottom: none;
	padding-bottom: 0;
}
.tb th {
	width: 23%;
	vertical-align: top;
}




/*　企業情報
￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣*/
/* ▼ 西川産業について ▼ */
#lwPolicy .grayBox .name {
	font-weight: bold;
	text-align: right;
	margin-top: 30px;
}

.hinshitu_image_box{
	margin-top:0px;
}

/* ▼ 会社概要 ▼ */

/* ▼ 営業所情報 ▼ */
.tab__select li {
	padding: 5px 25px;
	border-radius: 50px;
	text-align: center;
	background: #EEEFF6;
	font-size: 12px;
	font-weight: bold;
	margin-right: 5px;
	margin-top: 10px;
	line-height: 1.7;
	display: inline-block;
	cursor: pointer;
	transition: .2s;
}
.tab__select li:hover,
.tab__select li.select {
	background: #004086;
	color: #fff;
	transition: .2s;
}
.office__box {
	margin-top: 40px;
}
.tabContent__box.hide {
	display: none;
}
.office__box li {
	display: flex;
	justify-content: flex-start;
	padding: 30px 0;
	border-bottom: 1px solid #E8E8E8;
}
.office__box li:first-child {
	padding-top: 0;
}
.office__box li:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}
.office__image {
	width: 34.7222%;
	overflow: hidden;
}
.office__image a {
	display: block;
}
.office__image a:hover img {
	-webkit-transform: scale(1.1,1.1);
	   -moz-transform: scale(1.1,1.1);
	    -ms-transform: scale(1.1,1.1);
	     -o-transform: scale(1.1,1.1);
	        transform: scale(1.1,1.1);
}
.office__image img {
	height: auto;
}
.office__content {
	width: 65.2778%;
	padding-left: 30px;
}
.office__title {
	font-size: 17px;
	font-weight: bold;
	line-height: 1.7;
	margin-bottom: 10px;
}
.office__title a:hover {
	color: #004086;
	text-decoration: underline;
}
.office__btnWrap {
	margin-top: 40px;
}
.office__btn {
	display: inline-block;
	border-radius: 50px;
	overflow: hidden;
}
.office__btn:not(:last-child) {
	margin-right: 10px;
}
.office__btn a {
	display: block;
	padding: 5px 25px;
	background: #004086;
	color: #fff;
	font-weight: bold;
	font-size: 12px;
	line-height: 1.7;
}
.office__btn a:hover {
	background: #EEEFF6;
	color: #000;
}
.office__btn a .member {
	padding-left: 25px;
	background: url('img/member_ico.png') no-repeat left center / 20px;
}
.office__btn a:hover .member {
	background: url('img/member_ico_o.png') no-repeat left center / 20px;
}
.office__btn a .blog {
	padding-left: 20px;
	background: url('img/pencil_ico.png') no-repeat left center / 12px;
}
.office__btn a:hover .blog {
	background: url('img/pencil_ico_o.png') no-repeat left center / 12px;
}

/* ▼ 沿革 ▼ */
.history__wrap {
	flex-direction: row-reverse;
	line-height: 1.7;
	position: relative;
	margin-top: 40px;
}
.history__wrap:after {
	content: "";
	position: absolute;
	top: 10px;
	left: 50%;
	width: 2px;
	height: calc(100% - 20px);
	background: rgb(0,64,134); /* Old browsers */
	background: -moz-linear-gradient(top, rgba(0,64,134,1) 70%, rgba(255,255,255,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(0,64,134,1) 70%,rgba(255,255,255,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(0,64,134,1) 70%,rgba(255,255,255,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	-webkit-transform: translateX(-50%);
	   -moz-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	     -o-transform: translateX(-50%);
	        transform: translateX(-50%);
}
.history__box {
	width: 50%;
	padding-bottom: 25px;
}
.history__box:nth-child(odd) {
	padding-left: 30px;
}
.history__box:nth-child(even) {
	padding-right: 30px;
}
.history__title {
	font-size: 14px;
	font-weight: bold;
	color: #004086;
	position: relative;
}
.history__title:before,
.history__title:after {
	content: "";
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	   -moz-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	     -o-transform: translateY(-50%);
	        transform: translateY(-50%);
}
.history__title:before {
	width: calc(100% + 30px);
	height: 2px;
	background: #004086;
}
.history__title:after {
	width: 20px;
	height: 20px;
	background: #004086;
	border-radius: 50%;
}
.history__box:nth-child(odd) .history__title:before {
	right: 0;
}
.history__box:nth-child(odd) .history__title:after {
	left: -30px;
	-webkit-transform: translate(-50%,-50%);
	   -moz-transform: translate(-50%,-50%);
	    -ms-transform: translate(-50%,-50%);
	     -o-transform: translate(-50%,-50%);
	        transform: translate(-50%,-50%);
}
.history__box:nth-child(even) .history__title:before {
	left: 0;
}
.history__box:nth-child(even) .history__title:after {
	right: -30px;
	-webkit-transform: translate(50%,-50%);
	   -moz-transform: translate(50%,-50%);
	    -ms-transform: translate(50%,-50%);
	     -o-transform: translate(50%,-50%);
	        transform: translate(50%,-50%);
}
.history__box:nth-child(odd) .history__title {
	text-align: right;
}
.history__title span {
	background: #fff;
	z-index: 1;
	position: relative;
}
.history__box:nth-child(odd) .history__title span {
	padding-left: 10px;
}
.history__box:nth-child(even) .history__title span {
	padding-right: 10px;
}
.history__box dl {
	margin-top: 20px;
	font-size: 13px;
}
.history__box dl:first-of-type {
	margin-top: 30px;
}
.history__box dt {
	font-weight: bold;
}
.history__box#y1960 {
	margin-top: 120px;
	padding-bottom: 90px;
}
.history__box#y1970 {
	margin-top: -40px;
}
.history__box#y1990 {
	margin-top: -190px;
}
.history__box#y2010 {
	margin-top: -470px;
}

/* ▼ 財務情報 ▼ */
.table__wrap {
	position: relative;
}
.table__content {
	width: 100%;
	height: 500px;
	position: relative;
}

.finance_tb {
	border: 1px solid #E8E8E8;
	width: 100%;
	display: block;
}
.finance_tb thead,
.finance_tb tbody {
	display: block;
}
.finance_tb thead {
	position: absolute;
	top: 1px;
	left: 1px;
	width: calc(100% - 2px);
	z-index: 2;
    background: #fff;
}
.finance_tb tbody {
	height: 400px;
	overflow-y: scroll;
	margin-top: 85px;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
.finance_tb tbody::-webkit-scrollbar {
	display:none;
}
.finance_tb tr {
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	width: 100%;
}
.finance_tb th,
.finance_tb td {
	padding: 10px;
	border-right: 1px solid #E8E8E8;
	border-bottom: 1px solid #E8E8E8;
	text-align: center;
	vertical-align: middle;
	line-height: 1.7;
	display: block;
	width: 12.5%;
	min-height: 65px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
.finance_tb tbody th {
	justify-content: flex-start;
}
.finance_tb th:last-child,
.finance_tb td:last-child {
	border-right: none;
}
.finance_tb tbody tr:last-child th,
.finance_tb tbody tr:last-child td {
	border-bottom: none;
}
.finance_tb tbody tr:nth-child(odd) th,
.finance_tb tbody tr:nth-child(odd) td {
	background: #EEEFF6;
}
.finance_tb th {
	font-weight: bold;
}
.finance_tb thead th {
	height: 85px;
	background: #fff;
	z-index: 1;
}
.finance_tb tbody th {
	text-align: left;
}
.finance_tb small {
	font-size: 10px;
	line-height: 1.3;
	font-weight: normal;
	display: inline-block;
}



/* ▼ 一般事業主行動計画 ▼ */
#lwAction .tb {
	border-top: 1px solid #e8e8e8;
	margin-top: 30px;
}
.tb.v-center th {
	vertical-align: middle;
}
.tb tr th.bdr_btm,
.tb tr td.bdr_btm {
	border-bottom: 1px solid #e8e8e8;
	padding-bottom: 20px;
}
.tb tr th.bdr_right,
.tb tr td.bdr_right {
	border-right: 1px solid #e8e8e8;
}



/* ▼ 持続可能性 ▼ */
.cat__list li {
	border-radius: 50px;
	overflow: hidden;
	display: inline-block;
	margin-right: 5px;
    margin-top: 10px;
}
.cat__list li a {
	display: block;
	padding: 5px 25px;
    text-align: center;
    background: #EEEFF6;
    font-size: 12px;
    font-weight: bold;
    line-height: 1.7;
    transition: .2s;
}
.cat__list li a:hover {
	background: #004086;
    color: #fff;
}
.activity__list .cat_wrap {
	margin-top: 25px;
}
.pager__wrap {
	margin: 60px auto 0;
	width: 100%;
	font-family: 'Prompt', sans-serif;
    font-weight: bold;
}
.pager__wrap .page-numbers {
	display: flex;
	justify-content: center;
	align-items: center;
}
.pager__wrap ul.page-numbers li {
	width: 47px;
	height: 47px;
	border: 1px solid #E8E8E8;
	border-left: none;
	overflow: hidden;
}
.pager__wrap ul.page-numbers li:first-child {
	border-left: 1px solid #E8E8E8;
	border-radius: 4px 0 0 4px;
}
.pager__wrap ul.page-numbers li:last-child {
	border-radius: 0 4px 4px 0;
}
.pager__wrap ul li .page-numbers {
	position: relative;
}
.pager__wrap ul li span.page-numbers,
.pager__wrap ul li a.page-numbers {
	text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}
.pager__wrap ul li .page-numbers.current,
.pager__wrap ul li .page-numbers:hover {
	background: #004086;
	color: #fff;
}
.pager__wrap ul li .page-numbers.prev:before,
.pager__wrap ul li .page-numbers.next:before {
	content: "";
	width: 4px;
	height: 4px;
	border-top: 1px solid #AFBAD9;
	border-left: 1px solid #AFBAD9;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%) rotate(-45deg);
	   -moz-transform: translate(-50%,-50%) rotate(-45deg);
	    -ms-transform: translate(-50%,-50%) rotate(-45deg);
	     -o-transform: translate(-50%,-50%) rotate(-45deg);
	        transform: translate(-50%,-50%) rotate(-45deg);
}
.pager__wrap ul li a.page-numbers.next {
	-webkit-transform: scale(-1,1);
	   -moz-transform: scale(-1,1);
	    -ms-transform: scale(-1,1);
	     -o-transform: scale(-1,1);
	        transform: scale(-1,1);
}
.single__wrap,
.product__single {
	line-height: 1.7;
	margin-top: 50px;
}
.single__wrap p a,
.product__single p a {
	text-decoration: underline;
	color: #006FE6;
}
.single__wrap p a:hover,
.product__single p a:hover {
	text-decoration: none;
}
.single__wrap p:not(:first-child),
.product__single p:not(:first-child) {
	margin-top: 30px;
}
.single__wrap h3:not(.block__ttl) {
	font-size: 17px;
	font-weight: bold;
	padding-left: 10px;
	border-left: 2px solid #004086;
	margin-bottom: 20px;
	margin-top: 50px;
}
.single__wrap h3:first-child:not(.block__ttl) {
	margin-top: 0;
}
.single__wrap h3 + p:not(:first-child),
.product__single h3 + p:not(:first-child) {
	margin-top: 0;
}
.single__wrap + .btnWrap {
	max-width: none;
	margin-top: 80px;
	width: 100%;
}
.single__wrap img {
	height: auto;
}

#lwActivity .new span {
	display: block;
	background: #ff0000;
	color: #fff;
	font-size: 10px;
	font-weight: bold;
	padding: 5px 10px;
}


/* ▼ マザックニシカワ株式会社 ▼ */
.tag__listWrap {
	overflow-x: scroll;
}
#MazakFinance .tag__list {
	width: 900px;
}
#MazakFinance .tabContent__wrap {
	margin-top: 40px;
}
#MazakFinance .table__content {
    width: 100%;
}




/*　商品情報
￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣*/
/* ▼ おすすめ商品情報 ▼ */
.products__list {
	margin-top: 30px;
}
.cat__list + .products__list {
	margin-top: 0;
}
.products__list li {
	width: 29.629%;
	margin-right: 5.5565%;
	margin-top: 40px;
}
.products__list li:nth-child(-n+3) {
	margin-top: 0;
}
.products__list li:nth-child(3n) {
	margin-right: 0;
}
.products__list .thumb {
	border: 1px solid #EEEFF6;
	overflow: hidden;
	margin-bottom: 15px;
}
.products__list .thumb a {
	width: 100%;
    height: 100%;
    padding-top: 100%;
    max-width: 221px;
    position: relative;
    display: block;
}
.products__list .thumb img {
	object-fit: contain;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}
.products__list .thumb a:hover {
	-webkit-transform: scale(1.1,1.1);
	   -moz-transform: scale(1.1,1.1);
	    -ms-transform: scale(1.1,1.1);
	     -o-transform: scale(1.1,1.1);
	        transform: scale(1.1,1.1);
}
.products__list .title {
	font-weight: bold;
	font-size: 14px;
	padding-bottom: 10px;
	position: relative;
	margin-bottom: 15px;
	line-height: 1.7;
}
.products__list .title:after {
	content: "";
	width: 100%;
	height: 1px;
	background: url('img/dot_line_yoko.png') repeat-x left center / 4px;
	position: absolute;
	bottom: 0;
	left: 0;
}
.products__list .title a {
	transition: none;
}
.products__list .title a:hover {
	color: #004086;
	text-decoration: underline;
	transition: none;
}
.products__list .description {
	font-size: 11px;
	line-height: 1.8;
}
.products__list .datetime {
	margin-top: 20px;
}
.products__list .new {
	margin-top: 20px;
}
#lwProducts .new span {
	display: block;
	background: #ff0000;
	color: #fff;
	font-size: 10px;
	font-weight: bold;
	padding: 5px 10px;
}
#lwProducts .image {
	text-align: center;
	margin-top: 40px;
}
#lwProducts .pager__wrap .btnWrap {
	width: 48.611%;
}
.order__thumb  {
	text-align: center;
	margin-top: 50px;
}
.product__single img {
	height: auto;
}



/* ▼ 取り扱いメーカー ▼ */
.block__ttl,
.product__single h3 {
	border-bottom: 1px solid #004086;
	padding-bottom: 15px;
	line-height: 1.6;
	padding-left: 25px;
	position: relative;
	margin-bottom: 20px;
	font-size: 16px;
	font-weight: bold;
	margin-top: 50px;
}
.block__ttl:before,
.product__single h3:before {
	content: "";
	width: 10px;
	height: 10px;
	background: #004086;
	position: absolute;
	top: 8px;
	left: 0;
}
.maker__list li {
	padding: 10px 15px;
	line-height: 1.7;
	border: 1px solid #E8E8E8;
	font-weight: bold;
	display: inline-block;
	margin: 5px;
}
.cat__list li.current a {
	background: #004086;
    color: #fff;
}


/* ▼ 嬉しかった受注 ▼ */
#lwOrderReport .cat__list {
	width: 1300px;
}
.tag__listWrap + .products__list {
	margin-top: 50px;
}
.order__tb {
	width: 100%;
	border-collapse: collapse;
	border: 1px solid #e8e8e8;
	margin-top: 50px;
}
.order__tb th,
.order__tb td {
	padding: 30px;
	vertical-align: middle;
	line-height: 1.7;
	border-bottom: 1px solid #e8e8e8;
}
.order__tb tr:last-child th,
.order__tb tr:last-child td {
	border-bottom: none;
}
.order__tb th {
	border-right: 1px solid #e8e8e8;
	width: 25%;
}
.order__tb img {
	width: 75px;
	vertical-align: middle;
	margin-right: 10px;
	border-radius: 50%;
}
#lwOrder .single__wrap + .btnWrap {
	margin-top: 40px;
}
#lwOrderReport .new span {
	display: block;
	background: #ff0000;
	color: #fff;
	font-size: 10px;
	font-weight: bold;
	padding: 5px 10px;
}


/* ▼ エンジニアリング情報 ▼ */
#lwEngineer .products__list .title {
	padding-bottom: 0;
}
#lwEngineer .products__list .title:after {
	display: none;
}
#lwEngineer .products__list .datetime {
	margin-top: 0;
}
#lwEngineer .pager__wrap .btnWrap {
    width: 48.611%;
}
#lwEngineer .new span {
	display: block;
	background: #ff0000;
	color: #fff;
	font-size: 10px;
	font-weight: bold;
	padding: 5px 5px;
}
#lwEngineer .products__list .new {
	margin-top: 0;
}




/*　イベントカレンダー
￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣*/
#lwCalendar .image {
	margin-top: 30px;
}
#lwCalendar .personnel__blog_list .title {
	padding-left: 0;
	border: none;
}
.calendar__wrap {
    background: #eeeff6;
    padding: 30px 20px;
    text-align: center;
}
.calendar_table {
	margin: 0 auto;
	border-collapse: collapse;
	border: 1px solid #AFBAD9;
	background: #fff;
}
.calendar_table th,
.calendar_table td {
	padding: 5px;
	border: 1px solid #AFBAD9;
	font-size: 12px;
}
.calendar_table td.month {
	padding: 7px;
	background: #004086;
	color: #fff;
	font-weight: bold;
	font-size: 13px;
}
.calendar_table .calendar_week td {
	font-weight: bold;
	background: #eeeff6;
}
.calendar_table .Holiday {
	background: #FFDDDD;
    color: #F00;
}
.calendar_table .Event {
	text-decoration: underline;
	font-weight: bold;
}
.calendar_table .EventHoliday {
	background: #FFDDDD;
	color: #F00;
	text-decoration: underline;
	font-weight: bold;
}
.calendar_table .EventToday {
	background: #004086;
	font-weight: bold;
	color: #fff;
	text-decoration: underline;
}
.calendar_table span.red {
	color: #F00;
}
.calendar_table .Event:hover {
	text-decoration: none;
}



/*　採用情報
￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣*/
#lwRecruit .image {
	text-align: center;
	margin-top: 20px;
}
.recruit__point {
	counter-reset: section;
}
.recruit__point li {
	padding: 20px 0;
	padding-left: 70px;
	line-height: 1.7;
	position: relative;
	border-bottom: 1px dotted #004086;
}
.recruit__point li:last-child {
	border-bottom: none;
}
.recruit__point li:before {
	counter-increment: section;
	content: counter(section);
	width: 37px;
	height: 32px;
	padding: 5px 17px 0 10px;
	box-sizing: border-box;
	background: url('img/fuki_bg.png') no-repeat center center / 100%;
	position: absolute;
	top: 50%;
	left: 0;
	text-align: center;
	font-size: 13px;
	font-family: 'Prompt', sans-serif; font-weight: bold;
	font-style: italic;
	color: #fff;
	-webkit-transform: translateY(-50%);
	   -moz-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	     -o-transform: translateY(-50%);
	        transform: translateY(-50%);
}
#lwWelfare .personnel__blog_list {
	margin-top: 30px;
}
#lwWelfare .personnel__blog_list .title {
	padding-left: 0;
	border-left: 0;
}
.welfare__box {
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
}
.welfare__box .welfare__image {
	width: 34.7222%;
}
.welfare__box .welfare__content {
	width: 65.2778%;
	padding-left: 30px;
	padding-bottom: 40px;
	position: relative;
}
.welfare__box .welfare__content .office__btn {
	position: absolute;
	bottom: 0;
	left: 30px;
}
#lwWelfare .txt + .office__btn {
	margin-top: 20px;
}
.faq__wrap dl {
	border: 1px solid #E8E8E8;
	border-radius: 5px;
	padding: 0 20px;
	margin-top: 10px;
	line-height: 1.7;
	transition: .2s;
}
.faq__wrap dl.open {
	border-color: #004086;
	transition: .2s;
}
.faq__wrap dt {
	font-weight: bold;
	position: relative;
	cursor: pointer;
	padding: 20px 0;
	padding-right: 20px;
}
.faq__wrap dt:before {
	content: "Q.";
	font-weight: bold;
	color: #004086;
}
.faq__wrap dt:after {
	content: "";
	width: 4px;
	height: 4px;
	border-right: 1px solid #AFBAD9;
	border-bottom: 1px solid #AFBAD9;
	position: absolute;
	top: 50%;
	right: 0;
	transition: .2s;
	-webkit-transform: translateY(-50%) rotate(45deg);
	   -moz-transform: translateY(-50%) rotate(45deg);
	    -ms-transform: translateY(-50%) rotate(45deg);
	     -o-transform: translateY(-50%) rotate(45deg);
	        transform: translateY(-50%) rotate(45deg);
}
.faq__wrap dt.open:after {
	transition: .2s;
	border-right: 1px solid #004086;
	border-bottom: 1px solid #004086;
	-webkit-transform: translateY(-50%) rotate(-135deg);
	   -moz-transform: translateY(-50%) rotate(-135deg);
	    -ms-transform: translateY(-50%) rotate(-135deg);
	     -o-transform: translateY(-50%) rotate(-135deg);
	        transform: translateY(-50%) rotate(-135deg);
}
.faq__wrap dt.open {
	padding-bottom: 20px;
	border-bottom: 1px dotted #004086;
}
.faq__wrap dd {
	padding: 20px 0;
	display: none;
}
#lwWelfare .btnWrap {
	max-width: none;
}
#lwWelfare .product__single + .btnWrap {
	margin-top: 50px;
}



/*　社員ブログ
￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣*/
/* ▼ 記事を探す ▼ */
.office__list li {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding: 30px 0;
	border-bottom: 1px solid #E8E8E8;
}
.office__list li:last-child {
	padding-bottom: 0;
	border-bottom: none;
}
.office__list .office__name {
	font-size: 17px;
	margin-bottom: 10px;
}
.office__list .office__info {
	width: calc(100% - 200px);
	padding-right: 40px;
}
.office__list .btnWrap {
	max-width: 200px;
}

/* ▼ 営業所アカウントのブログ用 ▼ */
.office__blog li,
.office__blog .office__blog_inner {
	/* display: flex; */
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	margin-top: 40px;
}
.office__blog .office__inner {
	overflow-y: scroll;
	height: 220px;
	padding: 18px;
}
.office__blog_inner img{
	width:100vw;
	height: auto;
}
.office__blog_content {
	border: 1px solid #E8E8E8;
	border-radius: 5px;
	position: relative;
}
.office__blog .office__blog_content pre {
	margin: 0;
	line-height: 1.7;
	font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", meiryo, "メイリオ", "ms pgothic", sans-serif;
    font-size: 13px;
    white-space: pre-wrap;
}
.office__blog_inner .thumb {
	padding-bottom: 20px;
}
.office__blog_inner .office__btn{
	margin-top:20px;
}

/* ▼ 営業所の社員を選ぶ ▼ */
.person__blog li,
.person__blog .person__blog_inner {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	margin-top: 40px;
}
.person__blog .thumb {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	position: relative;
}
.person__blog .thumb img {
	height: auto;
	min-height: 150px;
	width: 100%;
}
.person__blog .thumb a {
	display: block;
	border-radius: 50%;
	overflow: hidden;
	height: 100%;
}
.person__blog .thumb a:hover img {
	-webkit-transform: scale(1.1,1.1);
	   -moz-transform: scale(1.1,1.1);
	    -ms-transform: scale(1.1,1.1);
	     -o-transform: scale(1.1,1.1);
	        transform: scale(1.1,1.1);
}
.person__blog .thumb .number {
	position: absolute;
	top: 0;
	right: 0;
	background: #da0f16;
	color: #fff;
	padding: 10px;
	border-radius: 50px;
	text-align: center;
	z-index: 3;
	font-size: 12px;
}
.person__blog .thumb .new {
	font-size: 10px;
	font-weight: bold;
	color: #bd0303;
	position: absolute;
	top: 10px;
	left: 100%;
	letter-spacing: 0.5px;
	-webkit-transform: translateX(5px);
	   -moz-transform: translateX(5px);
	    -ms-transform: translateX(5px);
	     -o-transform: translateX(5px);
	        transform: translateX(5px);
}
.person__blog .person__info {
	width: 130px;
	text-align: center;
	padding: 0 10px;
}
.person__blog .person__content {
	width: calc(100% - 280px);
}
.person__blog .person__content pre {
	margin: 0;
	line-height: 1.7;
	font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", meiryo, "メイリオ", "ms pgothic", sans-serif;
    font-size: 13px;
    white-space: pre-wrap;
}
.person__blog .person__inner {
	overflow-y: scroll;
	height: 128px;
	padding: 30px;
}
.person__office {
	font-size: 11px;
	font-weight: bold;
	padding: 5px 10px;
	background: #004086;
	border-radius: 3px;
	color: #fff;
	margin-bottom: 10px;
	display: inline-block;
}
.person__position {
	font-size: 11px;
	font-weight: bold;
	color: #004086;
	margin: 5px 0;
}
.person__name {
	font-size: 17px;
	font-weight: bold;
}
.person__content {
	border: 1px solid #E8E8E8;
	border-radius: 5px;
	position: relative;
}
.person__content:before {
	content: "";
	width: 15px;
	height: 15px;
	border-top: 1px solid #E8E8E8;
	border-left: 1px solid #E8E8E8;
	background: #fff;
	position: absolute;
	top: 50%;
	left: 0;
	border-radius: 3px 0 0 0;
	-webkit-transform: translate(-50%,-50%) rotate(-45deg);
	   -moz-transform: translate(-50%,-50%) rotate(-45deg);
	    -ms-transform: translate(-50%,-50%) rotate(-45deg);
	     -o-transform: translate(-50%,-50%) rotate(-45deg);
	        transform: translate(-50%,-50%) rotate(-45deg);
}
.person__content:after {
	content: "";
	width: 100%;
    height: 40px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    border-radius: 0 0 5px 5px;
    background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 1%, rgba(255,255,255,1) 64%, rgba(255,255,255,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,0) 1%,rgba(255,255,255,1) 64%,rgba(255,255,255,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,0) 1%,rgba(255,255,255,1) 64%,rgba(255,255,255,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}



/* ▼ 社員の記事一覧 ▼ */
.personnel__blog_title {
	color: #004086;
	font-size: 16px;
	font-weight: bold;
	padding-left: 15px;
	background: url('img/pencil_ico02.png') no-repeat center left / 12px;
	margin: 60px 0 15px;
}
.personnel__blog_list {
	border: 1px solid #e8e8e8;
	padding: 10px 30px;
	border-radius: 5px;
}
.personnel__blog_list li {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding: 20px 0;
	position: relative;
}
.personnel__blog_list li .new {
	color: #fff;
	font-size: 10px;
	font-family: 'Prompt', sans-serif;
	background: #ff0000;
	padding: 3px 5px;
}
.personnel__blog_list li:not(:last-child):after {
	content: "";
	width: 100%;
	height: 1px;
	position: absolute;
	bottom: 0;
	left: 0;
	font-weight: bold;
	background: url('img/dot_line_yoko.png') repeat-x center left / 4px;
}
.personnel__blog_list .datetime {
	width: 100px;
}
.personnel__blog_list .title {
	width: calc(100% - 100px);
	border-left: 1px solid #000;
	padding-left: 15px;
	font-weight: bold;
	line-height: 1.7;
}
.personnel__blog_list .title a:hover {
	color: #004086;
	text-decoration: underline;
}
.personnel__blog_list + .pager__wrap {
	margin-top: 40px;
}
#lwPrBlogArchive .person__blog .thumb {
	overflow: hidden;
}




/* ▼ 社員の記事詳細 ▼ */
#lwPrBlogSingle .person__blog .thumb {
	overflow: hidden;
}
.personnel__blog_single {
	margin-bottom: 80px;
}
.personnel__blog_single p {
	margin-top: 30px;
	line-height: 1.7;
}
.personnel__blog_single p[style="padding-left: 40px;"] {
	padding-left: 15px!important;
}
.personnel__blog_single p[style="padding-left: 80px;"] {
	padding-left: 30px!important;
}
.personnel__blog_single p[style="padding-left: 120px;"] {
	padding-left: 45px!important;
}
.personnel__blog_single p a {
	text-decoration: underline;
	color: #006FE6;
}
.personnel__blog_single p a:hover {
	text-decoration: none;
}
.personnel__blog_single h3 {
	font-size: 16px;
	font-weight: bold;
	padding-left: 20px;
	padding-bottom: 10px;
	border-bottom: 1px solid #004086;
	margin-bottom: 15px;
	position: relative;
	margin-top: 30px;
	line-height: 1.7;
}
.personnel__blog_single h3:before {
	content: "";
	width: 10px;
	height: 10px;
	background: #004086;
	position: absolute;
	top: 8px;
	left: 0;
}
.personnel__blog_single h3 + p {
	margin-top: 0;
}
#lwPrBlogSingle .personnel__blog_list_wrap {
	position: relative;
}
#lwPrBlogSingle .personnel__blog_list_wrap:before {
	content: "";
	width: calc(100% - 2px);
	height: 120px;
	position: absolute;
	bottom: 1px;
	left: 1px;
	z-index: 1;
	border-radius: 0 0 5px 5px;
	background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 90%, rgba(255,255,255,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 90%,rgba(255,255,255,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 90%,rgba(255,255,255,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
#lwPrBlogSingle .personnel__blog_list {
	height: 320px;
	overflow-y: scroll;
	padding-bottom: 120px;
}
#lwPrBlogSingle .personnel__blog_list .arrow_link {
	margin: 20px 0;
	text-align: right;
}
.pager__wrap .btnWrap {
	width: 31.48%;
	max-width: none;
	margin-right: 2.78%;
}
.pager__wrap .btnWrap:last-child {
	margin-right: 0;
}


/*　お問い合わせ
￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣*/
.form__tb {
	width: 100%;
	border-collapse: collapse;
}
.form__tb th,
.form__tb td {
	border-bottom: 1px solid #E8E8E8;
	padding: 20px 0;
	text-align: left;
	font-size: 14px;
}
.form__tb th {
	font-weight: bold;
}
.form__tb input,
.form__tb textarea {
	background: #EEEFF6;
	padding: 15px;
	border-radius: 5px;
}
#lwContact input[type="radio"],
#lwContact input[type="checkbox"] {
	display: none;
}
#lwContact  label {
	cursor: pointer;
}
#lwContact .wpcf7-list-item-label {
	position: relative;
	padding-left: 24px;
}
#lwContact .wpcf7-list-item-label:before,
#lwContact .wpcf7-list-item-label:after {
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	display: inline-block;
	width: 16px;
	height: 16px;
	background: #EEEFF6;
	border-radius:3px;
	content: "";
}
#lwContact .wpcf7-list-item-label:after {
	width: 16px;
	height: 16px;
}
#lwContact label input[type="radio"]:checked + .wpcf7-list-item-label:after,
#lwContact label input[type="checkbox"]:checked + .wpcf7-list-item-label:after {
	background: url('img/check_ico.png') no-repeat center center / 10px;
}
#lwContact span.wpcf7-list-item {
	margin-left: 0;
	display: block;
	margin-top: 15px;
}
#lwContact span.wpcf7-list-item.first {
	margin-top: 0;
}
.form__tb th span {
	color: #FF0000;
}
.form__tb + .policy_check {
	margin-top: 40px;
	text-align: center;
}
#lwContact .btnWrap {
	margin-top: 40px;
	max-width: none;
}
span.wpcf7-not-valid-tip {
	font-size: 12px;
	margin-top: 10px;
}
div.wpcf7-validation-errors, div.wpcf7-acceptance-missing {
	border: none!important;
	background: #FF0000!important;
	font-weight: bold!important;
	text-align: center!important;
	padding: 30px!important;
	color: #fff!important;
}
.wpcf7-not-valid {
	background: #ffeff3!important;
}



/*　サイトマップ
￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣*/
.sitemap__wrap .sitemap__box {
	width: 47%;
}
.sitemap__wrap .sitemap__box:nth-child(-n+2) h3 {
	margin-top: 0;
}
.sitemap__wrap .sitemap__box:nth-child(odd) {
	margin-right: 6%;
}
.sitemap__list li {
	padding-left: 15px;
	position: relative;
	margin-top: 10px;
}
.sitemap__list li:first-child {
	margin-top: 0;
}
.sitemap__list li:before {
	content: "";
	width: 4px;
	height: 4px;
	border-top: 1px solid #004086;
	border-right: 1px solid #004086;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%) rotate(45deg);
	   -moz-transform: translateY(-50%) rotate(45deg);
	    -ms-transform: translateY(-50%) rotate(45deg);
	     -o-transform: translateY(-50%) rotate(45deg);
	        transform: translateY(-50%) rotate(45deg);
}
.sitemap__list li a:hover {
	text-decoration: underline;
}



/*==========================================

　05. Footer

==========================================*/
#bottomRecruit {
	color: #fff;
	background: url('img/bg_topRecruit.jpg') no-repeat center center / cover;
}
#bottomRecruit .leftClm {
	width: calc(100% - 260px);
	padding-right: 40px;
	text-shadow: 0 0 8px rgba(0,0,0,.7);
}
#bottomRecruit .banner__wrap {
	width: 260px;
}
#bottomRecruit .banner__wrap .banner {
	border: 3px solid #fff;
	margin-bottom: 10px;
	background: #fff;
}
#bottomRecruit .banner__wrap .banner:last-child {
	margin-bottom: 0;
}
#bottomRecruit .banner__wrap .banner a {
	display: block;
}
#bottomRecruit .banner__wrap .banner a:hover {
	opacity: .6;
}
.footer__nav_wrap .outer {
	padding: 80px 0;
}
.footer__nav_wrap {
	padding: 0 20px;
}
.footer__nav_box {
	padding: 0 40px;
	border-right: 1px solid #e8e8e8;
}
.footer__nav_box:first-child {
	padding-left: 0;
}
.footer__nav_box:last-child {
	padding-right: 0;
	border-right: none;
}
.footer__nav_ttl {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 20px;
}
.footer__nav_list li {
	margin-top: 10px;
}
.footer__nav_list li:first-child {
	margin-top: 0;
}
.footer__nav_list li a:hover {
	text-decoration: underline;
}
.footer__bottom {
	padding: 0 20px;
	border-top: 1px solid #e8e8e8;
}
.footer__logo {
	margin-right: 25px;
}
.arrow_list li:not(:last-child) {
	margin-right: 20px;
}
.arrow_list a {
	padding-left: 13px;
	position: relative;
}
.arrow_list a:before {
	content: ">";
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	   -moz-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	     -o-transform: translateY(-50%);
	        transform: translateY(-50%);
}
.arrow_list a:hover {
	text-decoration: underline;
}
.copy small {
	font-size: 13px;
	letter-spacing: 2px;
}
#footer .footer__bottom .outer {
	padding: 40px 0;
}







/* 191118追記 */
.calendar_table td.month {
	position: relative;
}
.calendar_table td.month a {
	position: absolute;
	color: #fff;
	top: 50%;
	-webkit-transform: translateY(-50%);
	   -moz-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	     -o-transform: translateY(-50%);
	        transform: translateY(-50%);
}
.calendar_table td.month a.prev {
	left: 10px;
}
.calendar_table td.month a.next {
	right: 10px;
}



/* 191206追記 */
#lwSearch .lwSc__ttl span {
	color: #ff0000;
	font-size: 18px;
}
#lwSearch .personnel__blog_list li {
	display: block;
}
#lwSearch .personnel__blog_list .title {
	font-size: 16px;
}
#lwSearch .personnel__blog_list .txt {
	padding-left: 18px;
	font-size: 11px;
	margin-top: 10px;
	color: #666;
}
.highlight {
	background: #feffb3;
	font-weight: bold;
}
.search-form-wrap {
	position: relative;
	margin-left: 30px;
	border-radius: 50px;
	overflow: hidden;
	width: 38px;
	transition: .2s;
	cursor: pointer;
}
.search-form-wrap.open {
	width: 240px;
	transition: .2s;
}
.search-form-wrap .search-form {
	background: #ededf4;
	padding: 12px 15px;
	padding-left: 30px;
	width: 100%;
}
.search-submit {
	width: 15px;
	height: 15px;
	position: absolute;
	left: 10px;
	top: 50%;
	padding: 0;
	cursor: pointer;
	z-index: 2;
	background: url('img/search_ico.png') no-repeat center center / 100%;
	-webkit-transform: translateY(-50%);
	   -moz-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	     -o-transform: translateY(-50%);
	        transform: translateY(-50%);
}

.about_information_wrapper{
	/* flex-direction: column; */
	flex-direction: column-reverse;
}

.about_information_col{
	width: 100%;
	padding-bottom: 40px;
}

.information_item{
	padding-top: 5px;
}

.information_item{
	padding-bottom: 5px;
}

.information_item:hover{
	color: #004086;
}

.information_item > p{
	padding-right: 10px;
	font-size: 14px;
	font-weight: bold;
}

.sp-only{
	display: block!important;
}

.pc-only{
	display: none!important;
}

.information_new{
	display: block;
    background: #ff0000;
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    padding: 5px;
	margin-right: 5px;
}

@media screen and (min-width:480px) {
	.about_information_wrapper{
		flex-direction: row!important;
		/* align-items: center!important; */
	}

	.about_information_col{
		width: 45%;
	}

	.about_heading_wrapper{
		display: flex;
		align-items: flex-end;
	}

	.information_new{
		display: block;
		background: #ff0000;
		color: #fff;
		font-size: 10px;
		font-weight: bold;
		padding: 5px;
		height: 70%;
	}

	.sp-only{
		display: none!important;
	}

	.pc-only{
		display: block!important;
	}

}