@charset "UTF-8";


/*------------------------------------------------
 変数
------------------------------------------------*/
:root {
	--key-color: #333;
	--key-color-50: #757575;
	--key-color-10: #908a94;
	--grey-color: #f7f8fc;
	--navy-color: #223670;
}


/*------------------------------------------------
 Base style
------------------------------------------------*/
html{
	/*ページ読み込み時のウインドウの高さを基準とする*/
	height: 100%;
	/* スムーズスクロール */
	scroll-behavior: smooth;
	/* スマホでスムーズスクロール */
	-webkit-overflow-scrolling: touch;
	/* ページ内リンクずれ解消 */
	scroll-padding-top: 70px;
}
body {
  	background-color: #fff;
	color: #1c1c1c;  
}
html, body {
  width: 100%;
	-webkit-text-size-adjust: 100%; /* または none; */
  text-size-adjust: none;

}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video,
input,textarea {
	font-size: 16px;
  font-family: -apple-system, BlinkMacSystemFont, Roboto, 'Noto Sans JP',"游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", Verdana, "メイリオ", Meiryo, sans-serif;
	font-feature-settings: "palt";/* 文字間自動調整 */
	font-optical-sizing: auto;
  line-height: 1.7;
	letter-spacing: 0.05rem;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 100px 15px;
  box-sizing: border-box;
}
img {
	display: block;
  max-width: 100%;
  height: auto;
}
p {
  line-height: 2;
	color: #333;
}
small {
  font-size: 80%;
}
.big{
  font-size: 120%;
}
a{
  text-decoration: none;
  color: #1c1c1c;
}
a:hover{
  transition: all .5s;
}
/* PCとスマホで表示切り替え PC=表示、SP=非表示 */
.pc {
  display: block !important;
}
.sp {
  display: none !important;
}
/* PCとスマホで改行切り替え pc_br=表示、SP=非表示 */
.pc_br {
  display: block;
}
.tb_br {
	display: none;
}
.sp_br {
  display: none;
}
.inner_1140 {
	margin: 0 auto;
	padding: 60px 0 100px 0;
	max-width: 1140px;
}
.inner_1000 {
	margin: 0 auto;
	padding: 60px 0 100px 0;
	max-width: 1000px;
}
.inner_960 {
	margin: 0 auto;
	padding: 60px 0 100px 0;
	width: 960px;
}
.inner_800 {
	margin: 0 auto;
	padding: 60px 0 100px 0;
	width: 800px;
}
.inner_100p {
	margin: 0 auto;
	width: 100%;
}
.inner_90p {
	margin: 0 auto;
	width: 90%;
	max-width: 1140px;
}
.inner_80p {
	margin: 0 auto;
	width: 80%;
	max-width: 1140px;
}
.inner_70p {
	margin: 0 auto;
	width: 70%;
	max-width: 1140px;
}
.narrow {
	letter-spacing: -0.02em;
}
/* PCのときは電話番号をクリックさせない */
a[href^="tel"] { 
	pointer-events: none;
}
@media screen and (max-width: 1140px) {
  .container{
		max-width: none;
    padding: 70px 30px;
  }
	.inner_1140 {
		width: auto;
		padding: 40px 15px 30px 15px;
	}
	.inner_1000 {
		width: auto;
		padding: 40px 15px 30px 15px;
	}
	.inner_960 {
		width: auto;
		padding: 40px 15px 30px 15px;
	}
	.inner_800 {
		width: auto;
		padding: 40px 15px 30px 15px;
	}
	.inner_80p {
		width: 90%;
	}
	.inner_70p {
		width: 90%;
	}
	.tb_br {
		display: block;
	}
}
@media screen and (max-width: 480px) {
	html, body, div, span, applet, object, iframe,
	h1, h2, h3, h4, h5, h6, p, blockquote, pre,
	a, abbr, acronym, address, big, cite, code,
	del, dfn, em, img, ins, kbd, q, s, samp,
	small, strike, strong, sub, sup, tt, var,
	b, u, i, center,
	dl, dt, dd, ol, ul, li,
	fieldset, form, label, legend,
	table, caption, tbody, tfoot, thead, tr, th, td,
	article, aside, canvas, details, embed,
	figure, figcaption, footer, header, hgroup,
	menu, nav, output, ruby, section, summary,
	time, mark, audio, video,
	input,textarea {
		font-size: 14px;
	}
	p {
		line-height: 1.7;
	}
	.pc_br {
		display: none;
	}
	.sp_br {
		display: block;
	}
	
	/* スマホの時にはクリックできるように */
	a[href^="tel"] {
		pointer-events: auto;
		text-decoration: underline;
	}
}
/*トップへ戻るボタン*/
#pageTop {
  position:fixed; /*固定*/
  bottom:50px; /*場所を右下に移動*/
  right:20px; /*場所を右下に移動*/
  display:block; /*aタグをblock要素に変更*/
  z-index: 8000;
}
#pageTop:hover {
  opacity:.7;
  transition: all .4s;
}
@media screen and (max-width: 1024px) {
  /* PCとスマホで表示切り替え PC=非表示、SP=表示 */
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
@media screen and (max-width: 768px) {
  html{
    font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
	/*トップへ戻るボタン*/
	#pageTop {
		bottom: 20px; /*場所を右下に移動*/
		right: 10px; /*場所を右下に移動*/
	}
}


/*------------------------------------------------
 ライトボックス
------------------------------------------------*/
.lightbox .lb-image {
	border: none !important;
	border-radius: 0 !important;
}
.lb-outerContainer {
	border-radius: 0 !important;
	background-color: transparent !important;
}



/*------------------------------------------------
 アニメーション　その場でふわっ
------------------------------------------------*/
.fadeIn {
  animation-name:fadeInAnime;
  animation-duration: 3s;
  animation-fill-mode:forwards;
  opacity:0;
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
	.fadeInTrigger {
			opacity: 0;
}
@keyframes fadeInAnime{
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/*------------------------------------------------
 アニメーション　画像スライド表示
------------------------------------------------*/
.photo_inner{
  width: 100%;
  height: auto;
}
.photo img {
  width: 100%;
  height: 100%;
}
.animation {
  position: relative;
  overflow: hidden;
}
.animation::before {
  content: '';
  display: block;
  position: absolute;
  top:0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
	background-color: var(--key-color-10);
  transform: translatex(-100%);
}
@keyframes showMask {
  0% {
  	transform: translateX(-100%);
  }
  45%,50% {
    transform: translate(0%);
  }
  100% {
    transform: translateX(100%);
  }
}
.animation.show::before {
  animation: showMask 1s forwards;
}
.animation .photo_inner {
  opacity: 0;
}
@keyframes showElements {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.animation.show .photo_inner {
	animation: showElements .01s .6s forwards;
}




/*------------------------------------------------
マージン・パディング
------------------------------------------------*/
.mb_120 { margin-bottom: 120px !important; }
.mb_100 { margin-bottom: 100px !important; }
.mb_80 { margin-bottom: 80px !important; }
.mb_60 { margin-bottom: 60px !important; }
.mb_40 { margin-bottom: 40px !important; }
.mb_20 { margin-bottom: 20px !important; }
@media screen and (max-width:768px) {	
	.mb_120 { margin-bottom: 40px !important; }
	.mb_100 { margin-bottom: 40px !important; }
	.mb_80 { margin-bottom: 30px !important; }
	.mb_60 { margin-bottom: 20px !important; }
	.mb_40 { margin-bottom: 20px !important; }
	.mb_20 { margin-bottom: 15px !important; }
}



/*------------------------------------------------
 サブページ共通
------------------------------------------------*/
.sub .content {
	 margin-top: 60px;
}
.sub .main {
	margin-top: 5rem;
}
.sub_midashi_02 {
	margin-bottom: 2rem;
	font-family: "Poppins", sans-serif;
	letter-spacing: 0.35rem;
	text-align: center;
}
.sub_midashi_02 span {
	display: block;
	font-family: "Poppins", sans-serif;
	font-weight: 300;
	font-size: 30px;
	letter-spacing: 0.2rem;
}
.sub_midashi_03 {
	margin-bottom: 1rem;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 15px;
	color: var(--key-color-50);
}
.sub_midashi_03::before {
	display: inline-block;
	content: "";
	width: 12px;
	height: 12px;
	margin-right: 0.5rem;
	background-color: var(--key-color);
	border-radius: 50%;
}
.sub_midashi_03 span:first-of-type {
	margin-right: 1rem;
	font-size: 28px;
	font-family: "Poppins", sans-serif;
	font-weight: 200;
	color: #1c1c1c;
	vertical-align: sub;
}

.midashi_deco {
	display: flex;
	align-items: flex-start;
	justify-content: center;
}
.midashi_deco::before,
.midashi_deco::after {
	background: #000;
  content: "";
  height: 1px; /* 横線の高さ */
  width: 60px; /* 横線の長さ */
	margin-top: 25px;
}
.midashi_deco::before {
  margin-right: 25px; /* 文字との余白 */
}
.midashi_deco::after {
  margin-left: 25px; /* 文字との余白 */
}
@media screen and (max-width:1140px) {
	.sub .content {
		margin-top: 0;
	}
	.sub_midashi_02 span {
		font-size: 36px;
	}
}
@media screen and (max-width:960px) {

	.sub_midashi_02 span {
		font-size: 30px;
	}
}
@media screen and (max-width:768px) {
	.sub .main {
		margin-top: 3rem;
	}
	.sub_midashi_02  {
		margin-bottom: 1.5rem;
	}
	.sub_midashi_02 span {
		line-height: 1.4;
	}
	.sub_midashi_03 span:first-of-type {
		font-size: 24px;
	}
	.sub_midashi_03 span:nth-of-type(2) {
		line-height: 1.0;
		vertical-align: text-bottom;
	}
}
@media screen and (max-width:640px) {
	.sub .main {
		margin-top: 2rem;
	}
	.sub_midashi_02 span {
		font-size: 24px;
	}
	.midashi_deco::before,
	.midashi_deco::after {
		width: 40px;
		margin-top: 15px;
	}
}
@media screen and (max-width:480px) {
	.sub_midashi_02 span {
		line-height: 1.4;
	}
}
/*------------- .sub_head ----------------*/
.sub_head {
	height: 200px;
	display: flex;
	justify-content: center;
	text-align: center;
	align-items: center;
	background-image: linear-gradient(0deg, #4162c2, #223670);
}
.sub_head h1.sub_midashi_01 {
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.2rem;
	color: #fff;
}
.sub_head h1.sub_midashi_01 span {
	display: block;
	font-family: "Poppins", sans-serif;
	font-weight: 300;
	font-size: 32px;
	color: #fff;
}
.sub_head .img_box {
	width: 80%;	
}
#production .sub_head .img_box {
	width: 78%;
}
#manufacture .sub_head .img_box {
	width: 78%;
}
.sub_head .img_box img {
	object-fit: cover;	
	width: 100%; 
	height: 200px;
}
@media screen and (max-width:1040px) {
	.sub_head h1.sub_midashi_01 span {
		font-size: 35px;
	}
	.sub_head .img_box {
		width: 70%;	
	}
}
@media screen and (max-width:960px) {
	.sub_head {
		height: 100px;
	}
	.sub_head .img_box {
		height: 100%;	
	}
	.sub_head .img_box img {
		height: 100%;
	}
	.sub_head h1.sub_midashi_01 span {
		font-size: 30px;
		line-height: 1.2;
	}
}
@media screen and (max-width:640px) {
	.sub_head {
		flex-direction: column;
	}
	#manufacture .sub_head,
	#production .sub_head {
		padding-left: 0;
	}
	.sub_head h1.sub_midashi_01 {
		width: 100%;
		text-align: center;
	}
	.sub_head .img_box {
		width: 100%;	
		height: 100px;
	}
	#production .sub_head .img_box,
	#manufacture .sub_head .img_box {
		width: 100%;
	}
	.sub_head .img_box img {
		height: 100%;
	}
	.sub_head h1.sub_midashi_01 span {
		font-size: 25px;
	}
}
@media screen and (max-width:480px) {
	.sub_head h1.sub_midashi_01 span {
		font-size: 22px;
	}
}

/*------------- table.table_01 ---------------*/
table.table_01 {
	border-spacing : 8px 0;
  	border-collapse : separate;
	margin: 0 auto;
}
table.table_01 th {
  	width: 22%;
  	border-bottom: 1px solid var(--key-color);
  	padding: 1rem 1.5rem;
  	vertical-align: middle;
  	font-weight: 500;
}
table.table_01 td {
	padding: 1rem 1.5rem;
  	border-bottom: 1px solid #e0e0e0;
  	vertical-align: top;
  	text-align: left;
}
@media screen and (max-width:640px) {
	table.table_01 {
		border-spacing : 0;
	}
	table.table_01 th {
		background-color: var(--grey-color);
	}
  	table.table_01 th, 
	table.table_01 td {
    	display: block;
    	width: 100%;
		padding: 1rem;
		border: 1px solid var(--grey-color);
		border-bottom: none;
  	}
  	table.table_01 tr:last-child td:last-child {
		border-bottom: 1px solid var(--grey-color);
  	}
}


/*------------------------------------------------
 背景つきbox　.bg_box
------------------------------------------------*/
.bg_box {
	padding: 2.5rem;
	background-color: #f7f8fc;
}
@media screen and (max-width:480px) {
	.bg_box {
		padding: 1.5rem 0;
	}
}


/*------------------------------------------------
 ボタン　.btn_maru
------------------------------------------------*/
.btn_maru { 
}	
.btn_maru a {
	display: flex;
	align-items: center; 
}
.btn_maru a:hover {
	color: var(--key-color-50);
}
.btn_maru a:before {
	display: inline-block;
	content: '';
	margin-right: 1rem;
  width: 3.0rem;
  height: 3.0rem;
  background-image: url("../img/common/btn_arrow_color.svg");
	background-repeat: no-repeat;
	background-size: cover;
}
.btn_maru.wh a {
	color: #fff;
}
.btn_maru.wh a:hover {
	color: #666;
}
.btn_maru.wh a:before {
  background-image: url("../img/common/btn_arrow_wh.svg");
}
.btn_maru a span {
	font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
	font-size: 1.2rem;
	font-weight: 200;
}
@media screen and (max-width:1140px) {
	.btn_maru a span {
		font-size: 1.0rem;
	}
	.btn_maru a:before {
		margin-right: 1rem;
		width: 2.5rem;
		height: 2.5rem;
	}
}


/*------------------------------------------------
 会社案内　#company
------------------------------------------------*/
#company .message .flex_box {
	display: flex;
	justify-content: space-between;
}
#company .message .flex_box .text_box {
	width: 48%;
}
#company .message .flex_box img {
	margin-right: 30px;
}
#company .message .flex_box 
.text_box .catch {
	font-size: 24px;
	font-family: serif;
	line-height: 1.6;
	margin-bottom: 1rem;
}
#company .message .flex_box 
.text_box .name_box .position {
	font-size: 1.0rem;
	letter-spacing: 0.1rem;
	color: #333;
}
#company .message .flex_box 
.text_box .name_box .name {
	font-size: 1.7rem;
	font-family: serif;
	letter-spacing: 0.15rem;
}
#company .message .bg_box .box {
	padding-left: 1.5rem;
	border-left: 2px solid var(--navy-color);
	width: 72%;
}
#company .message .bg_box .title {
	margin-bottom: 1rem;
	font-size: 20px;
	color: var(--navy-color);
}
#company .message .bg_box .title span {
	margin-left: 1rem;
	font-family: "Poppins", sans-serif;
	font-size: 14px;
	color: #999;
}
#company .message .bg_box p {
	color: var(--navy-color);
	font-size: 16px;
}
@media (max-width:640px) {
	#company .message .flex_box {
		flex-direction: column;
		padding: 2rem 1.5rem;
	}
	#company .message .flex_box img {
		width: 60%;
    	margin: 10px auto 20px;
	}
	#company .message .bg_box .box {
		border: none;
		padding-left: 0;
		width: 100%;
	}
	#company .message .bg_box .title {
		text-align: center;
		font-size: 18px;
	}
}

/*------　行動指針 .guidelines　------*/
#company .guidelines ul.flex_box {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 2rem;
}
#company .guidelines ul.flex_box li {
	width: 30%;
	text-align: center;
	margin-bottom: 20px;
}
#company .guidelines ul.flex_box li .img_box {
	background-color: #e8ecf8;
	padding: 40px 0;
	margin: 0 auto;
	width: 150px;
	border-radius: 50%;
}
#company .guidelines ul.flex_box li img {
	height: 70px;
	margin: 0px auto;
}
#company .guidelines ul.flex_box li .title {
	text-align: center;
	font-size: 16px;
	font-weight: 500;
	padding: 10px 0;
}
@media (max-width:640px){
	#company .guidelines ul.flex_box {
		gap: 1rem;
	}
	#company .guidelines ul.flex_box li {
		width: 45%;
	}
	#company .guidelines ul.flex_box li .img_box {
		width: 100px;
		padding: 25px 0;
	}
	#company .guidelines ul.flex_box li img {
		height: 50px;
	}
}
/*------　会社概要 .outline　------*/
#company .outline .partners ul.flex_box {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem 3rem;
	margin-left: 1.2rem;
}
#company .outline .partners ul.flex_box li {
	white-space: nowrap;
}

/*------　外観写真 .factory_img　------*/
#company .factory_img_pc img {
	height: 400px;
	width: 100%;
	object-fit: cover;
	object-position: center;
}
#company .factory_img_sp {
	display: none;
}
@media (max-width:1140px) {
	#company .factory_img_pc {
		display: none;
	}
	#company .factory_img_sp {
		display: block;
	}
}

/*------　工場紹介 .factory　------*/
#company .factory.wrapper {
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	gap: 2rem;
	padding-top: 25px;
}
#company .factory.wrapper .text_box {
	width: 30%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background-color: #fff;
}
#company .factory.wrapper .img_box {
	width: 70%;
}
#company .factory.wrapper .img_box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#company .factory.wrapper table.table_01 {
	border-spacing : 0;
	margin-bottom: 20px;
}
#company .factory.wrapper table.table_01 th {
	background-image: linear-gradient(0deg, #4162c2, #223670);
	width: 40%;
	color: #fff;
}
#company .factory.wrapper table.table_01 td {
	background-color: #fff;
	color: var(--navy-color);
}
#company .factory.wrapper table.table_01 th, 
#company .factory.wrapper table.table_01 td {
	padding: 1rem 0.75rem;
	border: 1px solid var(--navy-color);
	border-bottom: none;
}
#company .factory.wrapper table.table_01 th {
	border-bottom: 1px solid #fff;
	font-size: 15px;
}
#company .factory.wrapper table.table_01 tr:last-child th {
	border-bottom: none;
}
#company .factory.wrapper table.table_01 tr:last-child td:last-child {
	 border-bottom: 1px solid var(--navy-color);
 }
@media screen and (max-width:1140px) {
	#company .factory.wrapper .text_box {
		max-width: none;
	}
}
@media screen and (max-width:1140px) {
	#company .factory.wrapper .catch {
		margin-bottom: 15px;
	}
	#company .factory.wrapper table.table_01 {
		border-spacing : 0;
	}
	#company .factory.wrapper {
		position: static;
 		display: block;
		width: 100%;
		margin-bottom: 0 !important;
		padding-top: 0;
  }
  #company .factory.wrapper .text_box {
    	width: 90%;
	  	margin: 0 auto;
	  	position: static;
		height: auto;
  }
	#company .factory.wrapper .img_box {
    	width: 90%;
		margin: 0 auto 50px;
		height: auto;
  }
	#company .factory.wrapper table.table_01 th {
		width: 20%;
	}
}
@media (max-width:640px) {
	  #company .factory.wrapper table.table_01 th, #company .factory.wrapper table.table_01 td {
			display: block;
			border-bottom: none;
	  }
	#company .factory.wrapper table.table_01 {
		margin-bottom: 10px;
	}
	#company .factory.wrapper table.table_01 th {
		width: 100%;
		border-bottom: none;
	}
}

/*------　アクセス .access　------*/
#company .access .address {
	text-align: center;
}
#company .access .address p.name {
	margin-bottom: 1rem;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	font-size: 1.1rem;
}
#company .access .address p:not(.name) {
	margin-bottom: 2rem;
}
#company .access iframe {
	width: 100%;
}
#company .access img {
	height: 450px;
	width: 100%;
	object-fit: cover;
}
@media (max-width:768px) {
	#company .access img {
		height: 350px;
	} 
}
@media (max-width:640px) {
	#company .access img {
		height: 100%;
	}
	#company .access .address p:not(.name) {
		font-size: 14px;
		margin-bottom: 1rem;
	}
}


/*------------------------------------------------
治具・生産システムの一貫製作  #production
------------------------------------------------*/
#production #intro {
	text-align: center;
}
#production #intro .catch {
	margin-bottom: 30px;
	font-size: 18px;
	line-height: 1.6;
	letter-spacing: 0.05rem;
	text-align: center;
}
#production #intro .catch span {
	color: var(--navy-color);
	font-weight: 500;
	font-size: 25px;
	line-height: 2;
	letter-spacing: 0.05rem;
}
#production #intro p {
	margin-bottom: 1.5rem;
	font-size: 20px;
	line-height: 1.6;
	letter-spacing: 0.05rem;
	text-align: center;
}
@media (max-width:1140px) {
	#production #intro .pc_br {
		display: none;
	}
}
@media (max-width:480px) {
	#production #intro .catch {
		line-height: 1;
	}
	#production #intro .catch span {
		font-size: 16px;
		line-height: 1.7;
	}
	#production #intro p {
		font-size: 14px;
	}
}
/*------　サービスの流れ・特徴 .step　------*/
#production #step img {
	width: 80%;
	margin: 25px auto;
}
#production #step .contents p {
	text-align: left;
}
#production #step .contents .title {
	font-size: 17px;
	font-weight: 500;
	margin-bottom: 10px;
}
#production #step .contents .title span {
	color: var(--navy-color);
	font-family: "Poppins", sans-serif;
	font-weight: 300;
	font-size: 20px;
}
#production #step .contents .flex_box {
	margin-bottom: 25px;
	display: flex;
	align-items: center;
	gap: 3rem;
}
#production #step .contents .flex_box img {
	width: 30%;
}
#production #step .contents .flex_box .text_box {
	width: 70%;
}
@media (min-width:1600px) {
	#production #step img {
		width: 90%;
	}
}
@media (max-width:640px) {
	#production #step img {
		width: 100%;
	}
	#production #step .contents .flex_box {
		flex-direction: column;
		gap: 0;
		margin-bottom: 20px;
	}
	#production #step .contents .flex_box img {
		width: 100%;
		margin: 10px;
	}
	#production #step .contents .flex_box .text_box {
		width: 100%;
	}
	#production #step .contents .title {
		margin-bottom: 5px;
	}
}
/*------　製品情報 .product　------*/
#production .product {
	padding: 50px 0;
}
#production .product ul {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	justify-content: center;
}
#production .product ul li {
	width: 30%;
	text-align: center;
	margin-bottom: 20px;
}
#production .product ul li .img_box {
	background-color: #fff;
	padding: 65px 0;
	margin: 0 auto;
	width: 200px;
	border-radius: 50%;
}
#production .product ul li img {
	height: 70px;
	margin: 0px auto;
}
#production .product ul li p {
	text-align: center;
	font-size: 16px;
	font-weight: 500;
	padding: 10px 0;
	color: var(--navy-color);
}
@media (max-width:480px) {
	#production .product ul li {
		width: 45%;
		margin-bottom: 0;
	}
	#production .product ul li .img_box {
		width: 120px;
		padding: 35px 0;
	}
	#production .product ul li img {
		height: 50px;
	}
	#production .product ul li p {
		font-size: 14px;
	}
}

/*------------------------------------------------
 各種機械部品の製造・調達 #manufacture
------------------------------------------------*/
#manufacture .intro {
	text-align: center;
}
#manufacture .intro .catch {
	margin-bottom: 2rem;
}
#manufacture .intro .catch span {
	font-size: 1.6rem;
	color: var(--navy-color);
	font-weight: 500;
}
#manufacture .intro p {
	font-size: 17px;
}
@media (max-width:480px) {
	#manufacture .intro .catch span {
		font-size: 16px;
	}
	#manufacture .intro p {
		font-size: 14px;
	}
}
/*------　選ばれる理由 .point　------*/
#manufacture #point {
	padding: 5rem 0;
	background-color: var(--grey-color);	
}
#manufacture #point ul {
	display: flex;
	justify-content: space-between;
}
#manufacture #point ul li {
	padding: 3rem 2rem 2rem 2rem;
	width: 30%;
	display: flex;
	flex-direction: column;
}
#manufacture #point ul li img {
	margin: 0 auto;
	width: 55%;
}
#manufacture #point ul li .title {
	margin-bottom: 20px;
	font-weight: 500;
	font-size: 1.2rem;
	text-align: center;
}
#manufacture #point .text_box {
	text-align: center;
}
#manufacture #point ul li:first-child p {
	padding: 25px 10px;
}
#manufacture #point ul li p {
	background-color: #fff;
	padding: 10px;
	border: 1px solid var(--navy-color);
	flex-grow: 1;
	font-size: 14px;
}
@media (max-width:1024px) {
	#manufacture #point ul li {
		padding: 3rem 0 2rem;
	}
}
@media (max-width:480px) {
	#manufacture #point {
		padding: 3rem 0 4rem;
	}
	#manufacture #point ul {
		flex-direction: column;
	}
	#manufacture #point ul li {
		width: 100%;
		padding: 3rem 2rem 0;
	}
	#manufacture #point ul li:first-child {
		padding-top: 20px;
	}
	#manufacture #point ul li:first-child p {
		padding: 10px;
	}
	#manufacture #point ul li img {
		margin-bottom: 0;
	}
	#manufacture #point ul li .title {
		margin-bottom: 10px;
		font-size: 15px;
	}
}
/*------　協力企業 .partner　------*/
#manufacture #partner .flex_box {
	display: flex;
	justify-content: flex-start;
	gap: 5rem;
	margin-left: 15px;
}
#manufacture #partner .flex_box ul:last-child {
	border: none;
}
#manufacture #partner .flex_box ul li {
	list-style: circle;
	margin-left: 25px;
	padding: 5px 0;
}
@media (max-width:768px) {
	#manufacture #partner .flex_box {
		gap: 3rem;
	}
}
@media (max-width:640px) {
	#manufacture #partner .flex_box {
		display: block;
		gap: 0;
	}
}
/*------　対応内容表 .factory　------*/
#manufacture table {
	table-layout: fixed;
	width: 100%;
	margin: 0 auto;
	background: #fff;
}
#manufacture table td, #manufacture table th {
	border: 1px solid #B6B6B6;
	padding: 10px 15px;
	word-break: break-all;
}
#manufacture table th {
	width: 200px;
	font-weight: 500;
}
#manufacture table td:nth-child(3){
	width: 100px;
	text-align: center;
}
#manufacture table td:nth-child(4){
	width: 200px;
}
#manufacture table td:nth-child(5){
	width: 250px;
}
#manufacture table .table_top th,
#manufacture table .table_top td {
	background-image: linear-gradient(0deg, #4162c2, #223670);
	color: #fff;
}
#manufacture #detail p.title {
	font-size: 18px;
	padding-bottom: 10px;
}
@media (max-width:640px) {
	#manufacture #detail p.title {
		font-size: 16px;
	}
	#manufacture table th {
		width: 90px;
	}
}
/*------　フロー（生産能力・調達地点 .flow　------*/
#manufacture .flow img {
	width: 80%;
	margin: 50px auto 0;
}
@media (max-width:1024px) {
	#manufacture .flow img {
		width: 90%;
	}
}
@media (max-width:768px) {
	#manufacture .flow img {
		margin-top: 20px;
	}	
}
@media (max-width:480px) {
	#manufacture .flow img {
		width: 100%;
		margin-top: 0;
	}
}
/*------　ギャラリー .gallery　------*/
#manufacture .gallery {
	padding-top: 50px;
}
#manufacture .gallery .btn_box {
	display: flex;
	justify-content: center;
	gap: 2rem;
	padding: 50px 0 100px;
}
#manufacture .gallery .btn_box div a {
	background-color: #fff;
	box-shadow: 0 10px 54px 6px rgba(0, 0, 0, .08);
	border-radius: 5px;
  	font-size: 15px;
	padding: 15px;
	width: 15rem;
  	position: relative;
	transition: .3s;
	text-align: left;
	color: var(--navy-color);
}
#manufacture .gallery .btn_box div a::before {
	background-image: url("../img/common/to_top_color.svg");
  	bottom: 0;
  	content: "";
  	height: 13px;
	background-size: 16px;
  	margin: auto;
  	position: absolute;
  	right: 20px;
  	top: 0px;
  	transform: rotate(180deg);
  	width: 25px;
}
#manufacture .gallery .btn_box div a:hover {
	color: var(--key-color-10);
	background-color: #fff;
}
#manufacture .gallery .flex_box {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 2rem;
	margin-top: 25px;
}
#manufacture .gallery .flex_box::after {
	content: "";
	width: 29%;
}
#manufacture .gallery .flex_box .contents {
	width: 29%;
	border-top: 3px solid var(--navy-color);
	padding: 25px 25px 0;
}
#manufacture .gallery .flex_box .contents .text_box {
	margin: 15px 0;
	padding-left: 5px;
}
#manufacture .gallery .flex_box .contents .text_box .title {
	font-size: 16px;
	font-weight: 500;
	padding-bottom: 5px;
}
@media (max-width:768px) {
	#manufacture .gallery .flex_box .contents {
		width: 47%;
	}
}
@media (max-width:480px) {
	#manufacture .gallery {
		padding-bottom: 0;
	}
	#manufacture .gallery .btn_box {
		display: block;
		padding: 25px 0;
	}
	#manufacture .gallery .btn_box div a {
		margin: 0 auto;
		font-size: 14px;
	}
	#manufacture .gallery .btn_box div a:first-child {
		margin-bottom: 15px;
	}
	#manufacture .gallery .flex_box .contents {
		width: 100%;
	}
	#manufacture .gallery #metal,
	#manufacture .gallery #resin {
		margin-bottom: 0!important;
	}
}





