
body {
	font-family: source-han-sans-japanese, sans-serif;
	font-weight: 400;
	letter-spacing: 1px;
	-webkit-text-size-adjust: 100%; /* iphone横向き 文字拡大防止 */
}
img {
	display: block;
	width: 100%;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}
a {
	text-decoration: none;
	color: #000;
	transition: all .3s;
}
p {
	line-height: 2;
}
/* デフォルトの装飾を削除 */
input, textarea {
	-webkit-appearance: none;
}
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active  {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}
:focus {
    outline: -webkit-focus-ring-color none;
}

/* select を div で囲む */
.select {
	width: 100%;
	position: relative;
}
.select::before {
	content: "";
	display: block;
    width: 0;
    height: 0;
    border-right: 3px solid transparent;
    border-left: 3px solid transparent;
    border-bottom: 5px solid transparent;
    border-top: 5px solid #000;
	position: absolute;
	top: 50%;
	right: 16px;
	margin-top: -3px;
}
select {
	-webkit-appearance: none;
	width: 100%;
	height: 36px;
	background: transparent;
	padding: 0 10px;
	font-size: 16px;
	cursor: pointer;
}
select::-ms-expand {
    display: none;
}


/*==================================================================================
ヘッダー
==================================================================================*/
header {
	width: 100%;
	z-index: 9999!important;
}
header .row {
	padding: 20px;
}
header .row .row {
	padding: 0;
}
header .logo {
	display: block;
	width: 360px;
}
header .logo:hover {
	opacity: 0.7;
}
header .tel {
	margin-right: 20px;
}
header .btn_contact {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 240px;
	height: 46px;
	background: #E70012;
	position: relative;
}
header .btn_contact::before {
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	background: url("../img/icon_mail.png") center center / contain no-repeat;
	position: absolute;
	top: 50%;
	left: 20px;
	transform: translateY(-50%);
}
header .btn_contact span {
	padding: 0 0 5px 20px;
	color: #fff;
	font-size: 18px;
	position: relative;
}
header .btn_contact:hover {
	background: #FF1326;
}
/* INDEX -------------------------------*/
header.index {
	width: calc(100% - 40px);
	padding: 20px!important;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 9999;
}
header.index .side_fix {
	position: fixed;
	top: 20%;
	right: 0;
}
header.index .side_fix .btn_contact {
	width: 46px;
	height: 240px;
}
header.index .side_fix .btn_contact::before {
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
}
header.index .side_fix .btn_contact span {
	padding: 20px 0 0;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
}

/* PC メニュー ---------------------------*/
nav.head_nav ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: 100%;
	padding: 25px 0;
	background: #EDEDED;
	border-bottom: 5px #002D4F solid;
}
nav.head_nav ul li {
	margin: 0 40px;
}
nav.head_nav ul li a:hover {
	opacity: 0.5;
}

/* スマホ版 メニュー -----------------------*/
nav.sp_nav {
    width: 100%;
	height: 100%;
    background: rgba(239,239,239,0.98);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 8888;
}
nav.sp_nav ul {
    width: calc(100% - 40px);
	max-width: 360px;
	margin: auto;
    padding: 40px 20px 0;
}
nav.sp_nav ul li {
    width: 100%;
    border-bottom: 1px dotted #ccc;
}
nav.sp_nav ul li:nth-last-child(3) {
    margin-bottom: 20px;
}
nav.sp_nav ul li:nth-last-child(2) {
    border-bottom: none;
}
nav.sp_nav ul li a {
    display: block;
	padding: 20px 0;
	color: #595959;
	font-size: 14px;
	text-align: center;
}
nav.sp_nav ul li:nth-last-child(2) a {
	padding: 15px;
	background: #777777;
	color: #fff;
	text-align: center;
	position: relative;
}
nav.sp_nav ul li:nth-last-child(2) a::before {
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	background: url("../img/icon_mail.png") center center / contain no-repeat;
	position: absolute;
	top: 50%;
	left: 20px;
	transform: translateY(-50%);
}
nav.sp_nav ul li:last-child {
    border-bottom: none;
}
nav.sp_nav ul li:last-child p {
	padding: 15px 0;
    border-bottom: none;
	text-align: center;
	color: #595959;
	font-size: 18px;
	line-height: 1;
}
nav.sp_nav ul li:last-child p a {
	display: inline-block;
	padding: 0;
	color: #595959;
	font-size: 18px;
}

.navToggle {
    z-index: 9999;
    display: block;
    width: 36px;
    height: 36px;
    text-align: center;
    cursor: pointer;
    position: fixed;    /* bodyに対しての絶対位置指定 */
    right: 20px;
    top: 14px;
}
.navToggle span {
    display: block;
    width: 100%;
    border-bottom: 4px solid #E70012;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
    position: absolute;    /* .navToggleに対して */
    left: 0;
}
.navToggle span:nth-child(1) {
    top: 5px;
}
.navToggle span:nth-child(2) {
    top: 16px;
}
.navToggle span:nth-child(3) {
    top: 27px;
}

.navToggle.active span {
    border-bottom: 4px solid #595959;
}
/* 最初のspanをマイナス45度に */
.navToggle.active span:nth-child(1) {
    top: 16px;
    left: 0;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
/* 2番目と3番目のspanを45度に */
.navToggle.active span:nth-child(2),
.navToggle.active span:nth-child(3) {
    top: 16px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}


/*==================================================================================
共通
==================================================================================*/
/* レイアウト */
main {
	padding-bottom: 120px!important;
	overflow: hidden;
	position: relative;
	z-index: 1;
}
section {
	padding: 60px 0!important;
}
.container {
	width: calc(100% - 40px);
	max-width: 1200px;
	padding: 0 20px;
	margin: auto;
}
.max680 {
	max-width: 680px;
	margin: auto;
}
.max980 {
	max-width: 980px;
	margin: auto;
}
.row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.row.just_start {
	justify-content: flex-start;
}
.row.just_center {
	justify-content: center;
}
.row.align_center {
	align-items: center;
}
.row.align_end {
	align-items: flex-end;
}
.row.align_start {
	align-items: flex-start;
}
.col2 {
	width: 48%;
}
.col3 {
	width: calc(100% / 3 - 2%);
}

.mb_10 {
	margin-bottom: 10px;
}
.mb_20 {
	margin-bottom: 20px;
}
.mb_40 {
	margin-bottom: 40px;
}
.mb_60 {
	margin-bottom: 60px;
}
.mb_120 {
	margin-bottom: 120px;
}

/* フォント */
main#fixed_page h1 {
	padding: 20px 30px!important;
	background: #000!important;
	color: #fff;
	line-height: 1;
}
main#fixed_page h2 {
	text-align: center;
}
main#fixed_page h2 span {
	display: inline-block;
	padding-bottom: 15px;
	font-weight: 400;
	line-height: 1;
	position: relative;
}
main#fixed_page h2 span::after {
	content: "";
	display: block;
	width: 100%;
	height: 5px;
	background: #E70012;
	position: absolute;
	left: 0;
	bottom: -5px;
}
main#fixed_page h2.animated span::after {
	animation: h2_border 1s ease;
}
@keyframes h2_border {
	0% {width: 0;}
	100% {width: 100%;}
}
main#fixed_page h3 span {
	display: inline-block;
	padding-bottom: 10px;
	border-bottom: 3px #E70012 solid;
	font-weight: 400;
	line-height: 1;
}
main#fixed_page h4 {
	padding-bottom: 10px!important;
}
main#fixed_page h4 span {
	display: block;
	position: relative;
}
main#fixed_page h4 span::after {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background: #000;
	position: absolute;
	left: 0;
	bottom: -10px;
}
main#fixed_page h4 span.animated::after {
	animation: h4_border 5s linear;
}
@keyframes h4_border {
	0% {width: 0;}
	100% {width: 100%;}
}

.font_14 {
	font-size: 14px;
}
.font_18 {
	font-size: 18px;
}
.font_24 {
	font-size: 24px;
}
.font_28 {
	font-size: 28px;
}
.font_36 {
	font-size: 36px;
	line-height: 1.6;
}
.font_46 {
	font-size: 46px;
	line-height: 1;
}

.txt_center {
	text-align: center;
}
.txt_right {
	text-align: right;
}
.bold {
	font-weight: 700;
}
.light {
	font-weight: 200;
}
.gray {
	color: #595959;
}
.red {
	color: #E70012;
}
.navy {
	color: #002D4F;
}

/* ボタン */
.btn_detail {
	display: block;
	width: 320px;
	padding: 15px 0;
	text-align: center;
	position: relative;
}
.btn_detail::before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: #fff;
	border: 1px #E70012 solid;
	box-sizing: border-box;
	position: absolute;
	top: 0;
	left: 0;
	transition: all .3s;
}
.btn_detail.animated::before {
	animation: btn_detail 1.2s ease;
}
@keyframes btn_detail {
	0% {width: 0; height: 0; opacity: 0;}
	20% {width: 0; height: 0; opacity: 1;}
	70% {width: 100%; height: 0;}
	100% {width: 100%; height: 100%;}
}
.btn_detail.right {
	margin: 0 0 0 auto;
}
.btn_detail span {
	display: inline-block;
	padding-right: 40px;
	padding-bottom: 5px;
	color: #E70012;
	letter-spacing: 2px;
	position: relative;
}
.btn_detail span::after {
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	border-top: 2px #E70012 solid;
	border-right: 2px #E70012 solid;
	transform: rotate(45deg);
	position: absolute;
	top: 50%;
	right: 0;
	margin-top: -5px;
	transition: all .3s;
}
.btn_detail:hover::before {
	background: #E70012;
}
.btn_detail:hover span {
	color: #fff;
}
.btn_detail:hover span::after {
	border-top: 2px #fff solid;
	border-right: 2px #fff solid;
	transform: translateX(5px) rotate(45deg);
}

.btn_detail_2nd {
	display: block;
	width: calc(280px - 4px);
	padding: 10px 0;
	background: #fff;
	border: 1px #002D4F solid;
	text-align: center;
}
.btn_detail_2nd span {
	display: inline-block;
	padding-right: 40px;
	padding-bottom: 5px;
	color: #002D4F;
	letter-spacing: 2px;
	position: relative;
}
.btn_detail_2nd span::after {
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	border-top: 2px #002D4F solid;
	border-right: 2px #002D4F solid;
	transform: rotate(45deg);
	position: absolute;
	top: 50%;
	right: 0;
	margin-top: -5px;
	transition: all .3s;
}
.btn_detail_2nd:hover {
	background: #002D4F;
}
.btn_detail_2nd:hover span {
	color: #fff;
}
.btn_detail_2nd:hover span::after {
	border-top: 2px #fff solid;
	border-right: 2px #fff solid;
	transform: translateX(5px) rotate(45deg);
}

.btn_entry {
	display: block;
	width: 340px;
	padding: 20px 0;
	text-align: center;
	position: relative;
}
.btn_entry::before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: #E70012;
	border: 1px #E70012 solid;
	box-sizing: border-box;
	position: absolute;
	top: 0;
	left: 0;
	transition: all .3s;
}
.btn_entry.animated::before {
	animation: btn_entry 1.2s ease;
}
@keyframes btn_entry {
	0% {width: 0; height: 0; opacity: 0; background: #fff;}
	20% {width: 0; height: 0; opacity: 1;}
	70% {width: 100%; height: 0;}
	100% {width: 100%; height: 100%; background: #E70012;}
}
.btn_entry span {
	padding-bottom: 5px;
	color: #fff;
	letter-spacing: 2px;
	position: relative;
}
.btn_entry:hover::before {
	background: #FF1326;
	animation: btn_entry_hv .3s ease-in;
}
@keyframes btn_entry_hv {
	0% {width: 0;}
	100% {width: 100%;}
}

.anker {
	padding-top: 60px;
	margin-top: -60px;
}


/* 下層ページ共通 -----------------------------------------------------------------*/
.top_2nd {
	padding: 80px 0;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
.top_2nd.company {
	background-image: url("../img/company_top.jpg");
}
.top_2nd.works {
	background-image: url("../img/works_top.jpg");
}
.top_2nd.machine {
	background-image: url("../img/machine_top.jpg");
}
.top_2nd.recruit,
.top_2nd.voice01,
.top_2nd.voice02 {
	background-image: url("../img/recruit_top.jpg");
}
.top_2nd.products {
	background-image: url("../img/products_top.jpg");
}
.top_2nd.contact,
.top_2nd.comp {
	background-image: url("../img/contact_top.jpg");
}
.top_2nd.news {
	background-image: url("../img/news_top.jpg");
}
.top_2nd .ttl {
	width: calc(340px - 60px);
	padding: 20px 30px;
	background: #000;
	color: #fff;
	line-height: 1;
	letter-spacing: 3px;
}

/*==================================================================================
INDEX
==================================================================================*/
.main {
	width: 100%;
	padding: 15% 0;
	position: relative;
	overflow: hidden;
}
.main .fade_img {
	width: 100%;
	height: 100%;
	background-image: url("../img/main01.jpg");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	animation: main_fadeImg 18s linear infinite;
}
.main .fade_img:nth-child(2) {
	background-image: url("../img/main02.jpg");
	animation-delay: 6s;
}
.main .fade_img:nth-child(3) {
	background-image: url("../img/main05.jpg");
	animation-delay: 12s;
}

.main .fade_img:nth-child(4) {
	background-image: url("../img/main04.jpg");
	animation-delay: 18s;
}

@keyframes main_fadeImg {
  	0% {opacity: 0; transform: scale(1.3);}
    6% {opacity: 1;}
    32% {opacity: 1;}
    40% {opacity: 0;}
    70% {transform: scale(1);}
    100% {opacity: 0;}
}
.main .container {
	position: relative;
	z-index: 10;
}
.main p {
	line-height: 1;
}
.main p span {
	display: inline-block;
	margin-bottom: 25px;
	padding: 25px 40px;
	background: #000;
	color: #fff;
}
/* お知らせ ---------------------------------*/
section#index_news {
	padding: 60px 0 0!important;
}
section#index_news .ttl {
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	line-height: 1;
	padding-bottom: 5px;
	position: relative;
}
section#index_news .ttl::after {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background: #000;
	position: absolute;
	left: 0;
	bottom: 0;
}
section#index_news .ttl.animated::after {
	animation: ttl_border 5s linear;
}
@keyframes ttl_border {
	0% {width: 0;}
	100% {width: 100%;}
}
section#index_news .date {
	display: inline-block;
	margin-right: 20px;
	padding: 5px 20px;
	background: #E70012;
	color: #fff;
	font-size: 10px;
}
section#index_news a {
	display: block;
}
section#index_news a:hover {
	opacity: 0.7;
}
/* ごあいさつ ---------------------------------*/
section#index_greeting {
	position: relative;
}
section#index_greeting .tryangle {
	display: block;
	width: 100%;
	max-width: 1600px;
	position: absolute;
	top: -60px;
	right: 0;
	z-index: -1;
}
section#index_greeting .photo {
	display: flex;
	justify-content: center;
	align-items: center;
	max-height: 400px;
	overflow: hidden;
}
section#index_greeting .photo img {
	width: 100%;
	height: 100%;
	min-height: 314px;
	object-fit: cover;
}
/* 一貫した社内加工 ---------------------------*/
section#index_processing {
	padding: 0!important;
	background: #000;
	color: #fff;
}
section#index_processing .ttl {
	width: 100%;
	padding: 120px 0;
	background: url("../img/index02_bg.jpg") center center / cover no-repeat;
	text-align: center;
}
section#index_processing .ttl span {
	display: inline-block;
	padding-bottom: 20px;
	color: #fff;
	letter-spacing: 8px;
	position: relative;
}
section#index_processing .ttl span::after {
	content: "";
	display: block;
	width: 100%;
	height: 5px;
	background: #fff;
	position: absolute;
	left: 0;
	bottom: -5px;
}
section#index_processing .ttl.animated span::after {
	animation: h2_border 1s ease;
}
/* 拠点紹介 ---------------------------------*/
section#index_base {
	padding: 0 0 90px!important;
	position: relative;
}
section#index_base .tryangle {
	display: block;
	width: 100%;
	position: absolute;
	left: 0;
	bottom: -12%;
	z-index: -2;
}
@media screen and (max-width : 1680px) {
	section#index_base .tryangle {
		min-width: 1360px;
		bottom: 0;
	}
}
section#index_base .photo {
	display: flex;
	justify-content: center;
	align-items: center;
	max-height: 400px;
	overflow: hidden;
}
section#index_base .photo img {
	width: 100%;
	height: 100%;
	min-height: 314px;
	object-fit: cover;
}
section#index_base .photo_r {
	position: relative;
}
section#index_base .photo_r .right {
	position: absolute;
	top: 0;
	right: 0;
}
/* 求人情報 ---------------------------------*/
section#index_recruit .photo {
	width: 460px;
	overflow: hidden;
}
section#index_recruit .photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
section#index_recruit .bg_brue {
	width: calc(100% - 460px - 40px);
	padding: 20px;
	background: #D7EBFF;
}


/*==================================================================================
会社概要
==================================================================================*/
/* 想い --------------------------------------*/
section#message {
	padding: 60px 0 0!important;
	border-bottom: 1px #000 solid;
}
section#message .bg_gray {
	padding: 60px 0;
	background: #EDEDED;
}
/* 会社概要 -----------------------------------*/
section#company {
	border-bottom: 1px #000 solid;
}
section#company .photo {
    margin-top: 150px;
	width: 30%;
	overflow: hidden;
}
section#company .photo img {
	height: 100%;
	object-fit: cover;
}
section#company .contents {
	width: calc(70% - 160px);
	padding: 80px;
}
section#company .contents h2 {
	text-align: left;
}
section#company .contents table {
	width: 100%;
}
section#company .contents table p {
	line-height: 1.6;
}
section#company .contents table th {
	width: 200px;
	padding: 10px 0 10px 0;
	font-weight: 400;
	text-align: left;
}
section#company .contents table td {
	padding: 10px 0 10px 0;
}
/* 沿革 -------------------------------------*/
section#history table {
	width: 100%;
}
section#history table tr {
	border-bottom: 1px #000 solid;
}
section#history table th {
	width: calc(200px - 20px);
	padding: 10px 0 10px 20px;
	font-weight: 400;
	text-align: left;
}
section#history table td {
	padding: 10px 20px 10px 0;
}
/* 拠点 -------------------------------------*/
section#base .info {
	width: 30%;
}
section#base .map {
	width: calc(70% - 60px);
}

/*==================================================================================
事業内容
==================================================================================*/
section#works .bg_black {
	padding: 120px 0 60px;
	background: #000;
	color: #fff;
}
section#works_other .bg_gray {
	padding: 120px 0;
	background: #EDEDED;
}
section#works_other .sp-horizontal .sp-arrows {
    margin-top: -20px;
}
section#works_other .sp-arrow {
    width: 5px;
    height: 40px;
}
section#works_other .sp-horizontal .sp-previous-arrow {
    left: -30px;
}
section#works_other .sp-horizontal .sp-next-arrow {
    right: -30px;
}
section#works_other .sp-next-arrow:after,
section#works_other .sp-next-arrow:before,
section#works_other .sp-previous-arrow:after,
section#works_other .sp-previous-arrow:before {
    background-color: #595959;
}

/*==================================================================================
求人情報
==================================================================================*/
.bnr_voice {
	display: block;
	width: calc(49% - 300px);
	height: calc(180px - 40px);
	padding: 20px 20px 20px 280px;
	background: #002D4F;
	color: #fff;
	position: relative;
}
.bnr_voice:hover {
	opacity: 0.8;
}
.bnr_voice::before {
	content: "";
	display: block;
	width: 280px;
	height: 100%;
	background-position: right center;
	background-size: cover;
	background-repeat: no-repeat;
	position: absolute;
	top: 0;
	left: 0;
}
.bnr_voice.voice01::before {
	background-image: url("../img/recruit_bana01.jpg");
}
.bnr_voice.voice02::before {
	background-image: url("../img/recruit_bana02.jpg");
}
.bnr_voice::after {
	content: "";
	display: block;
	width: calc(100% - 22px);
	height: calc(100% - 22px);
	border: 1px #fff solid;
	position: absolute;
	top: 10px;
	left: 10px;
}
.bnr_voice p {
	line-height: 1.2;
}
.bnr_voice .ttl {
	padding: 10px 15px;
	background: rgba(0,0,0,0.20);
	line-height: 1;
}
section#recruit table {
	width: 100%;
	background: #fff;
}
section#recruit table tr {
	border-bottom: 1px #000 solid;
}
section#recruit table th {
	padding: 15px 20px;
	background: #EDEDED;
	font-weight: 400;
	text-align: left;
	white-space: nowrap;
}
section#recruit table td {
	padding: 15px 20px;
}

/*==================================================================================
先輩の声
==================================================================================*/
section#voice .photo {
	width: 48%;
	min-height: 340px;
}
section#voice .photo img {
	height: 100%;
	object-fit: cover;
}
section#voice .copy {
	width: 48%;
	position: relative;
}
section#voice .copy .font_36 {
	line-height: 1.8;
}
section#voice .copy .profile {
	position: absolute;
	left: 0;
	bottom: 0;
}
section#voice .schedule {
	width: 360px;
}
section#voice .schedule .bg_gray {
	padding: 20px;
	background: #f7f7f7;
}
section#voice .schedule table {
	width: 100%;
}
section#voice .schedule table th {
	padding: 10px 0;
	font-weight: 400;
	text-align: left;
}
section#voice .schedule table th.arrow {
	width: 100%;
	padding: 10px 0;
	color: #DFDFDF;
	text-align: center;
}
section#voice .schedule table th span {
	display: block;
	width: 90px;
	padding: 8px 0;
	background: #DFDFDF;
	border-radius: 30px;
	text-align: center;
}
section#voice .schedule table td {
	padding: 10px 0 10px 20px;
}
section#voice .faq {
	width: calc(100% - 360px - 60px);
}
section#voice .faq p {
	padding-left: 40px;
	position: relative;
}
section#voice .faq p.question {
	color: #002D4F;
}
section#voice .faq p span {
	display: block;
	color: #fff;
	line-height: 1;
	position: absolute;
	top: 2px;
	left: 0;
}
section#voice .faq p.question span {
	color: #002D4F;
}
section#voice .faq p.anser span {
	color: #E70012;
	left: 3px;
}

/*==================================================================================
主要設備
==================================================================================*/
section#machine .bg_black {
	padding: 60px 0;
	background: #000;
	color: #fff;
}
section#machine .bg_black a {
	display: block;
	color: #fff;
	text-align: center;
}
section#machine .bg_black a span {
	display: inline-block;
	padding-right: 30px;
	padding-bottom: 5px;
	letter-spacing: 2px;
	position: relative;
}
section#machine .bg_black a .photo {
	background: #fff;
}
section#machine .bg_black a span::after {
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	border-right: 2px #fff solid;
	border-bottom: 2px #fff solid;
	transform: rotate(45deg);
	position: absolute;
	top: 50%;
	right: 0;
	margin-top: -9px;
	transition: all .3s;
}
section#machine .bg_black a:hover .photo img {
	opacity: 0.8;
}
section#machine .bg_black a:hover span::after {
	margin-top: -6px;
}
table.machine {
	width: 100%;
	background: #fff;
	border: 1px #ccc solid;
}
table.machine p {
	line-height: 1;
}
table.machine tr {
	border-bottom: 1px #ccc solid;
}
table.machine tr:hover {
	background: #FFFBFB;
}
table.machine th {
	padding: 8px 10px;
	background: #595959;
	border-right: 1px #ccc solid;
	color: #fff;
	font-weight: 400;
}
table.machine td {
	padding: 10px;
	border-right: 1px #ccc solid;
	text-align: center;
}
table.machine td:nth-child(1) {
	vertical-align: middle;
}
section#machine02 {
	position: relative;
}
section#machine02 .tryangle {
	display: block;
	width: 100%;
	position: absolute;
	left: 0;
	bottom: -12%;
	z-index: -2;
}
@media screen and (max-width : 1680px) {
	section#machine02 .tryangle {
		min-width: 1360px;
		bottom: 0;
	}
}

/*==================================================================================
生産製品
==================================================================================*/
section#products .font_14 {
	line-height: 1.6;
}
section#products .bg_gray {
	padding: 60px 0;
	background: #EDEDED;
}
section#products .bg_gray .col3_2 {
	width: calc((100% / 3) * 2 - 1%);
}
section#products .bg_gray .col3_2 h2 {
	text-align: left;
}

/*==================================================================================
お問い合わせ
==================================================================================*/
form {
	padding: 30px!important;
	background: #EDEDED;
}
form .item {
	width: 200px;
	position: relative;
}
form .item::after {
	content: "任意";
	display: inline-block;
	padding: 0 5px;
	background: #999999;
	color: #fff;
	font-size: 14px;
	position: absolute;
	top: 0;
	right: 0;
}
form .item.required::after {
	content: "必須";
	background: #E70012 ;
}
form .form_wrap {
	width: calc(100% - 230px);
	padding-left: 30px;
}
form .separation {
	border-bottom: 1px #BABABA solid;
	margin: 30px 0;
}
form input,
form button,
form textarea {
	width: calc(100% - 22px);
	padding: 10px;
	background: #fff;
	border: 1px #BABABA solid;
	font-size: 16px;
}
/* 郵便番号 */
form input[name="zip"] {
	width: 160px;
}
/* 確認ボタン */
input[type="button"] {
	width: auto;
	padding: 10px 60px;
	background: #002D4F;
	border: 1px #002D4F solid;
	color: #fff;
	letter-spacing: 2px;
	cursor: pointer;
	transition: all .3s;
}
input[type="button"]:hover {
	background: #005799;
}
input#btn_back {
	margin-right: 20px;
	background: #fff;
	border: 1px #002D4F solid;
	color: #002D4F;
}
input#btn_back:hover {
	background: #ECF6FF;
}


/*==================================================================================
フッター
==================================================================================*/
footer .bg {
	width: 100%;
	padding: 40px 0;
	background: url("../img/footer_bg.jpg") center center / cover no-repeat;
	border-bottom: 30px #E70012 solid;
}
footer nav.foot_nav ul {
	display: flex;
	flex-wrap: wrap;
	width: 360px;
}
footer nav.foot_nav ul li {
	margin: 0 40px 20px 0;
}
footer nav.foot_nav ul li:nth-child(3) {
	width: 100%;
	margin: 0;
}
footer nav.foot_nav ul li a {
	display: block;
	color: #fff;
}
footer nav.foot_nav ul li a:hover {
	opacity: 0.7;
}
footer p {
	color: #fff;
	line-height: 1.6;
}
footer .copy {
	padding: 30px 0;
	background: #303030;
}
footer .copy .container {
	position: relative;
}
footer .copy p {
	font-size: 12px;
	line-height: 1;
}
footer .copy .btn_pagetop {
	display: block;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	right: 60px;
	transform: translateY(-50%);
}
footer .copy .btn_pagetop::before {
	content: "";
	display: block;
	width: 12px;
	height: 12px;
	border-top: 3px #E70012 solid;
	border-right: 3px #E70012 solid;
	position: absolute;
	top: 16px;
	left: 50%;
	transform: translateX(-50%) rotate(-45deg);
}
footer .copy .btn_pagetop:hover {
	background: rgba(255,255,255,0.10);
}


.tb {display: none;}
.pc {display: inline;}
.sp {display: none;}

@media screen and (max-width : 980px) {
	.pc {display: none;}
	.tb {display: inline;}
	
	p {font-size: 14px;}

	/*==================================================================================
	ヘッダー
	==================================================================================*/
	header .row {
		padding: 10px 20px;
	}
	header .logo {
		width: 240px;
	}
	header .tel {
		display: none;
	}
	header .btn_contact {
		width: 180px;
		height: 36px;
		margin-right: 50px;
	}
	header .btn_contact::before {
		width: 18px;
		height: 18px;
	}
	header .btn_contact span {
		font-size: 14px;
	}
	/* INDEX -------------------------------*/
	header.index {
		padding: 10px 20px!important;
	}
	header.index .side_fix .btn_contact {
		width: 42px;
		height: 220px;
		margin-right: 0;
	}
	/* PC メニュー ---------------------------*/
	nav.head_nav {
		display: none;
	}

	/*==================================================================================
	共通
	==================================================================================*/
	/* レイアウト */
	main {
		padding-bottom: 120px!important;
	}
	section {
		padding: 50px 0!important;
	}
	.container {
		max-width: 680px;
	}
	.max680 {
		max-width: 460px;
	}

	.mb_10 {
		margin-bottom: 8px;
	}
	.mb_20 {
		margin-bottom: 15px;
	}
	.mb_40 {
		margin-bottom: 30px;
	}
	.mb_60 {
		margin-bottom: 50px;
	}
	.mb_120 {
		margin-bottom: 80px;
	}

	/* フォント */
	main#fixed_page h1 {
		padding: 15px 20px!important;
	}
	main#fixed_page h2 span {
		padding-bottom: 10px;
	}
	main#fixed_page h2 span::after {
		height: 4px;
	}
	main#fixed_page h3 span {
		padding-bottom: 8px;
		border-bottom: 2px #E70012 solid;
	}
	.font_14 {
		font-size: 12px;
	}
	.font_18 {
		font-size: 16px;
	}
	.font_24 {
		font-size: 20px;
	}
	.font_28 {
		font-size: 24px;
	}
	.font_36 {
		font-size: 28px;
	}
	.font_46 {
		font-size: 34px;
	}

	/* ボタン */
	.btn_detail {
		width: 280px;
		padding: 12px 0;
	}
	.btn_detail span {
		padding-right: 30px;
	}
	.btn_detail span::after {
		margin-top: -6px;
	}
	.btn_detail_2nd {
		width: calc(240px - 4px);
	}
	.btn_detail_2nd span {
		padding-right: 30px;
	}
	.btn_detail_2nd span::after {
		margin-top: -6px;
	}

	/* 下層ページ共通 -----------------------------------------------------------------*/
	.top_2nd {
		padding: 60px 0;
	}
	.top_2nd .ttl {
		width: calc(240px - 40px);
		padding: 10px 20px;
		letter-spacing: 2px;
	}
	
	/*==================================================================================
	INDEX
	==================================================================================*/
	.main {
		padding: 140px 0 100px;
	}
	.main p span {
		margin-bottom: 10px;
		padding: 10px;
	}
	/* お知らせ ---------------------------------*/
	section#index_news {
		padding: 50px 0 0!important;
	}
	section#index_news .date {
		margin-right: 15px;
		padding: 5px 10px;
	}
	/* ごあいさつ ---------------------------------*/
	section#index_greeting .tryangle {
		top: auto;
		bottom: -50px;
	}
	/* 一貫した社内加工 ---------------------------*/
	section#index_processing .ttl {
		width: 100%;
		padding: 80px 0;
	}
	section#index_processing .ttl span {
		padding-bottom: 10px;
		letter-spacing: 5px;
	}
	section#index_processing .ttl span::after {
		height: 3px;
	}
	/* 拠点紹介 ---------------------------------*/
	section#index_base .tryangle {
		min-width: 1160px;
		bottom: 0;
	}
	/* 求人情報 ---------------------------------*/
	section#index_recruit .photo {
		width: 100%;
		max-width: 540px;
		margin: auto;
	}
	section#index_recruit .bg_brue {
		width: calc(100% - 30px);
		max-width: calc(540px - 30px);
		margin: auto;
		padding: 15px;
	}
	/*==================================================================================
	会社概要
	==================================================================================*/
	/* 想い --------------------------------------*/
	section#message {
		padding: 30px 0 0!important;
	}
	section#message .bg_gray {
		padding: 30px 0;
	}
	section#message .bg_gray .txt_center {
		text-align: left;
	}
	section#message .bg_gray .font_46 {
		text-align: center;
	}
	/* 会社概要 -----------------------------------*/
	section#company .photo {
		width: 40%;
	}
	section#company .contents {
		width: calc(60% - 60px);
		padding: 30px;
	}
	section#company .contents table th {
		width: 100px;
		padding: 8px 0 8px 0;
	}
	section#company .contents table th {
		padding: 8px 0 8px 0;
	}
	/* 沿革 -------------------------------------*/
	section#history table p {
		line-height: 1.6;
	}
	section#history table th {
		width: calc(100px - 15px);
		padding: 8px 0 8px 15px;
	}
	section#history table td {
		padding: 8px 15px 8px 0;
	}
	section#history .col2 {
		width: 48%;
	}
	/* 拠点 -------------------------------------*/
	section#base .info {
		width: 45%;
	}
	section#base .map {
		width: calc(55% - 30px);
	}
	/*==================================================================================
	事業内容
	==================================================================================*/
	section#works_other .sp-arrow {
	    width: 4px;
	    height: 30px;
	}
	/*==================================================================================
	求人情報
	==================================================================================*/
	.bnr_voice {
		display: block;
		width: calc(100% - 260px);
		max-width: calc(460px - 260px);
		height: calc(160px - 40px);
		margin: 0 auto 15px;
		padding: 20px 20px 20px 240px;
	}
	.bnr_voice::before {
		width: 240px;
	}
	section#recruit table th {
		padding: 15px;
		white-space: nowrap;
	}
	section#recruit table td {
		padding: 15px;
	}
	/*==================================================================================
	先輩の声
	==================================================================================*/
	section#voice .photo {
		width: 100%;
		min-height: 0;
		max-width: 460px;
		margin: 0 auto 30px;
	}
	section#voice .copy {
		width: 100%;
		max-width: 460px;
		margin: auto;
	}
	section#voice .copy .profile {
		position: relative;
	}
	section#voice .schedule {
		width: 100%;
		max-width: 460px;
		margin: auto;
		order: 2;
	}
	section#voice .schedule .font_14 {
		font-size: 14px;
	}
	section#voice .faq {
		width: 100%;
		max-width: 460px;
		margin: 0 auto 50px;
	}
	section#voice .faq p {
		padding-left: 30px;
	}
	section#voice .faq p.anser span {
		left: 2px;
	}
	/*==================================================================================
	主要設備
	==================================================================================*/
	section#machine .bg_black {
		padding: 30px 0;
	}
	section#machine .bg_black a span {
		padding-right: 20px;
	}
	section#machine .bg_black a .font_24 {
		font-size: 16px;
		letter-spacing: 0;
	}
	table.machine {
		min-width: 740px;
	}
	/* スクロール */
	.scroll {
		display: block;
	  	overflow-x: scroll;
	  	white-space: nowrap;
	  	-webkit-overflow-scrolling: touch;
		padding: 0 0 10px;
		margin-bottom: 20px;
	}
	.scroll::-webkit-scrollbar {
	  height: 8px;
	}
	.scroll::-webkit-scrollbar-track {
	  margin: 0 2px;
	  background: #ccc;
	  border-radius: 5px;
	}
	.scroll::-webkit-scrollbar-thumb {
	  border-radius: 5px;
	  background: #666;
	}

	section#machine02 .tryangle {
		min-width: 1160px;
		bottom: 0;
	}
	/*==================================================================================
	生産製品
	==================================================================================*/
	section#products h2 span {
		line-height: 1.2;
	}
	section#products .col3 {
		width: 48%;
	}
	section#products .bg_gray {
		padding: 30px 0;
	}
	section#products .bg_gray .col3_2 {
		width: 100%;
	}
	section#products .bg_gray .col3_2 h2 {
		text-align: center;
	}
	section#products .bg_gray h2 + p {
		text-align: center;
	}
	section#products .bg_gray .row {
		justify-content: center;
	}
	/*==================================================================================
	お問い合わせ
	==================================================================================*/
	form {
		padding: 20px!important;
	}
	form p {
		font-size: 14px;
	}
	form .item {
		width: auto;
		margin-bottom: 10px;
	}
	form .item::after {
		right: -50px;
	}
	form .form_wrap {
		width: 100%;
		padding-left: 0;
	}
	form .separation {
		margin: 20px 0;
	}
	form .separation2 {
		margin: 20px 0;
	}

	/* 確認ボタン */
	input[type="button"] {
		padding: 10px 40px;
	}
	input#btn_back {
		margin-right: 10px;
	}

}

@media screen and (max-width : 680px) {
	/*==================================================================================
	ヘッダー
	==================================================================================*/
	header .btn_contact {
		display: none;
	}
	/* INDEX -------------------------------*/
	header.index .side_fix .btn_contact {
		display: flex;
	}
	/*==================================================================================
	共通
	==================================================================================*/
	/* レイアウト */
	section {
		padding: 30px 0!important;
	}
	.col2 {
		width: 100%;
	}
	.order2 {
		order: 2;
	}
	/*==================================================================================
	INDEX
	==================================================================================*/
	/* ごあいさつ ---------------------------------*/
	section#index_greeting .photo {
		margin-bottom: 20px;
	}
	section#index_greeting .col2.sp_pd20 {
		width: calc(100% - 40px);
		padding: 0 20px;
	}
	section#index_greeting .photo img {
		min-height: 0;
	}
	/* 一貫した社内加工 ---------------------------*/
	section#index_processing .ttl {
		padding: 40px 0;
	}
	/* 拠点紹介 ---------------------------------*/
	section#index_base {
		padding: 0!important;
	}
	section#index_base .col2.sp_pd20 {
		width: calc(100% - 40px);
		padding: 0 20px;
	}
	section#index_base .photo {
		max-width: 90%;
		margin-bottom: 20px;
	}
	section#index_base .photo img {
		min-height: 0;
	}
	section#index_base .photo_r .right {
		position: relative;
	}
	section#index_base .photo_r .right .photo {
		margin: 0 0 20px auto;
	}
	section#index_base .photo_r .container .col2 {
		text-align: right;
	}
	section#index_base .photo_r .container .col2 .btn_detail {
		margin: 0 0 0 auto;
	}
	/*==================================================================================
	会社概要
	==================================================================================*/
	/* 想い -----------------------------------*/
	section#message {
		border-bottom: none;
	}
	/* 会社概要 -----------------------------------*/
	section#company {
		padding: 50px 0 0!important;
	}
	section#company .photo {
		width: 70%;
		max-width: 460px;
		margin: auto;
	}
	section#company .contents {
		width: 100%;
		max-width: 460px;
		margin: auto;
		padding: 30px 0;
	}
	/* 拠点 -------------------------------------*/
	section#base .container {
		max-width: 460px;
		margin: auto;
	}
	section#base .info {
		width: 100%;
		margin-bottom: 15px;
	}
	section#base .map {
		width: 100%;
	}
	/*==================================================================================
	事業内容
	==================================================================================*/
	section#works .bg_black {
		padding: 20px 0 0;
	}
	section#works .col2 {
		max-width: 460px;
		margin: 0 auto 30px;
	}
	section#works .col2.order2 {
		order: 2;
	}
	section#works_other .bg_gray {
		padding: 20px 0;
	}
	section#works_other .bg_gray .works_slide {
		width: 90%;
		max-width: 460px!important;
		margin: auto;
	}
	section#works_other .sp-arrow {
	    width: 3px;
	    height: 20px;
	}
	section#works_other .sp-horizontal .sp-previous-arrow {
	    left: -15px;
	}
	section#works_other .sp-horizontal .sp-next-arrow {
	    right: -15px;
	}


	/*==================================================================================
	フッター
	==================================================================================*/
	footer .bg {
		padding: 30px 0;
		border-bottom: 20px #E70012 solid;
	}
	footer nav.foot_nav ul {
		width: 300px;
		margin-bottom: 30px;
	}
	footer nav.foot_nav ul li {
		margin: 0 30px 20px 0;
	}
	footer nav.foot_nav ul li a {
		font-size: 14px;
	}
	footer .info {
		width: 100%;
	}
	footer .copy {
	padding: 20px 0;
	}
	footer .copy p {
		font-size: 10px;
	}
	footer .copy .btn_pagetop {
		width: 36px;
		height: 36px;
		right: 20px;
	}
	footer .copy .btn_pagetop::before {
		width: 8px;
		height: 8px;
	}
}

@media screen and (max-width : 460px) {
	.tb {display: none;}
	.sp {display: inline;}
	
	p {font-size: 12px;}

	/*==================================================================================
	ヘッダー
	==================================================================================*/
	header .logo {
		width: 180px;
	}
	header.index .side_fix {
		display: none!important;
	}
	.navToggle {
	    top: 10px;
	}
	/*==================================================================================
	共通
	==================================================================================*/
	/* レイアウト */
	main {
		padding-bottom: 80px!important;
	}
	.col3 {
		width: 100%;
	}
	/* フォント */
	main#fixed_page h1 {
		padding: 15px 20px!important;
	}
	main#fixed_page h3 span {
		padding-bottom: 8px;
		border-bottom: 2px #E70012 solid;
	}
	.font_14 {
		font-size: 12px;
	}
	.font_18 {
		font-size: 14px;
	}
	.font_24 {
		font-size: 18px;
	}
	.font_28 {
		font-size: 20px;
	}
	.font_36 {
		font-size: 24px;
	}
	/*==================================================================================
	INDEX
	==================================================================================*/
	.main p.font_28 {
		font-size: 18px;
	}
	section#index_news .row a {
		width: 100%;
	}	

	/*==================================================================================
	会社概要
	==================================================================================*/
	/* 沿革 -------------------------------------*/
	section#history table th {
		width: 80px;
		padding: 8px 0;
	}
	section#history table td {
		padding: 8px 0;
	}

	/*==================================================================================
	求人情報
	==================================================================================*/
	.bnr_voice {
		width: calc(100% - 180px);
		max-width: calc(460px - 180px);
		height: calc(140px - 40px);
		padding: 20px 20px 20px 160px;
	}
	.bnr_voice::before {
		width: 160px;
	}
	.bnr_voice .ttl {
	    padding: 8px 10px;
	}
	section#recruit table  {
		border-top: 1px #000 solid;
	}
	section#recruit table th {
		display: block;
		width: calc(100% - 20px);
		padding: 5px 10px;
	}
	section#recruit table td {
		display: block;
		width: calc(100% - 20px);
		padding: 10px;
	}
	/*==================================================================================
	先輩の声
	==================================================================================*/
	section#voice .schedule table th span {
		width: 70px;
	}
	section#voice .schedule .font_14 {
		font-size: 12px;
	}
	/*==================================================================================
	主要設備
	==================================================================================*/
	section#machine .col3 {
		margin-bottom: 15px;
	}
	section#machine .bg_black a .font_24 {
		font-size: 18px;
	}
	/*==================================================================================
	生産製品
	==================================================================================*/
	section#products .col3 {
		width: 100%;
	}
	/*==================================================================================
	お問い合わせ
	==================================================================================*/
	/* 確認ボタン */
	input[type="button"] {
		width: calc(100% - 82px);
		max-width: calc(340px - 82px);
		padding: 10px 40px;
	}
	input#btn_back {
		margin-right: 0;
		margin-bottom: 10px;
	}

	/*==================================================================================
	WP
	==================================================================================*/
	section#index_news .wp-pagenavi a,
	section#index_news .wp-pagenavi span {
		width: 30px;
		height: 30px;
		margin: 0 5px;
		font-size: 12px;
	}
}

