@charset "utf-8";
/*
Theme Name: 基本テーマ
Theme URI:
Description:
Version: 1.00
Author: WordPressマスター
Author URI: https://coconala.com/users/15338
License:
License URI:
Tags:
*/

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

ul,ol {list-style: none; margin: 0; padding: 0;}

a {text-decoration: none; color: #000; word-break: break-all;}
img{
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}

body {
font-family: Arial,"Hiragino Sans","ヒラギノ角ゴ ProN","Hiragino Kaku Gothic ProN","游ゴシック",YuGothic,"メイリオ",Meiryo,sans-serif;
}



.syasyutsu_seikeiki_001 {
background: linear-gradient(45deg, #f2f2f2 0%, #f2f2f2 50%, #ccc 50%, #ccc 100%);
margin-bottom: 20px;
}

.plant_img {
background: linear-gradient(45deg, #f2f2f2 0%, #f2f2f2 50%, #ccc 50%, #ccc 100%);
}




.manga {
	width: 100%;
	max-width: 740px;
	margin: 0 auto;
}


/** 機械情報の各詳細ページ **/



.archiv_product_p {
text-align: center;
	margin-bottom: 50px;
}

/** サイトマップ（固定） **/
.site_map {}
.site_map ul {}
.site_map li {
	padding: 10px 0;
	border-bottom: 1px solid #ccc;
}
.site_map ul ul {margin-left: 30px;}
.site_map ul ul li {list-style: disc;}
.site_map ul ul li:last-child {border: none; padding: 10px 0 0 0;}


/** その他 **/
.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}




/** ヘッダー **/
#header {
	border-bottom: 1px solid #f2f2f2;
	box-shadow: 0px 6px 3px -6px #cccccc;
}
.header_out {
	width: 100%;
	background: #333;
	color: #fff;
	text-align: center;
	font-size: 90%;
	padding: 5px 0;
	border-bottom: 3px solid #D0A900;
}
.header {
	width: 100%;
	max-width: 1240px;
	margin: 0 auto;
	padding: 30px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header_logo {width: 200px;}
.header_contact {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.header_contact li {margin-right: 15px;}
.header_contact li a {
  border: 1px solid #eee;
  padding: 10px 40px;
  position: relative;
}
.header_contact li:last-child a {
	background: #333;
	color: #fff;
	margin: 0;
}
.header_contact li:last-child a:hover {
	background: #fff;
	color: #333;
	margin: 0;
}

/** ハンバーガー **/
.change-border01::after,
.change-border01::before,
.change-border01__inner::after,
.change-border01__inner::before {
  background-color: #D0A900;
  content: '';
  display: block;
  position: absolute;
  z-index: 10;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
}
/* 左上へ配置 */
.change-border01::after {
    width: 0px;
    height: 2px;
    top: -1px;
    left: -1px;
}
/* 右下へ配置 */
.change-border01::before {
    width: 0px;
    height: 2px;
    right: -1px;
    bottom: -1px;
}
/* 左下へ配置 */
.change-border01__inner::after {
    width: 2px;
    height: 0px;
    left: -1px;
    bottom: -1px;
}
/* 右上へ配置 */
.change-border01__inner::before {
    width: 2px;
    height: 0px;
    top: -1px;
    right: -1px;
}
/* hover */
.change-border01:hover::after,
.change-border01:hover::before {
  width: 100%;
  width: calc(100% + 1px);
}
.change-border01:hover .change-border01__inner::after,
.change-border01:hover .change-border01__inner::before {
  height: 100%;
  height: calc(100% + 1px);
}






/** 開閉式メニュー **/
.hamburger-overlay {display: none;}

/** グローバルメニュー **/
.g_menu_out {
	width: 100%;
	background: #fff;
	position: relative;
}
.g_menu_in {
	width: 100%;
	max-width: 1240px;
	margin: 0 auto 7px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.g_menu_logo {display: none; width: 200px;}
.sp_menu {width: 100%;}
.sp_logo {display: none; width: 200px;}
.g_menu {
	list-style: none;
	width: 100%;
	max-width: 1240px;
	margin: 0 auto 7px;
	display: flex;
	justify-content: space-between;
	font-size: 90%;
}
.g_menu li {
	width: 20%;
	border-left: 1px solid #ccc;
	padding: 0 15px;
	position: relative;
}
.g_menu li:last-child {border-right: 1px solid #ccc; position: relative;}
.g_menu li a {
	text-align: center;
	display: block;
	padding: 3px 0;
	position: relative;
}
.g_menu li a::after {
position: absolute;
left: 0;
content: '';
width: 100%;
height: 2px;
background: #D0A900;
bottom: -1px;
transform: scale(0, 1);
transform-origin: center top;
transition: transform 0.3s;
}
.g_menu li a:hover::after {transform: scale(1, 1);}
.g_menu li .sub-menu {
	position: absolute;
	top: 35px;
	left: 0;
	overflow: hidden;
	width: 250px;
	height: 0
	transition: .8s;
	transform: translateY(-8%);
	opacity: 0;
}
.g_menu li:hover .sub-menu {
    height: auto;
    transform: translateY(0);
    opacity: 1;
}
.g_menu .sub-menu li {
    display: block;
    margin-left: 0;
    padding: 0;
	border: none;
    border-bottom: 1px solid #ddd;
    background-color: rgb(255 255 255 / 100%);
	width: 100%;
  }
.g_menu .menu-item-has-children:nth-last-child(1) .sub-menu,
.g_menu .menu-item-has-children:nth-last-child(2) .sub-menu {
    right: 0;
    left: auto;
}
.g_menu .sub-menu li a {
    padding: 1em;
	width: 100%;
}
.fixed{
position: fixed;
top: 0;
left: 0;
	z-index: 100;
}
.g_menu_out.fixed {
    border-bottom: 1px solid #f2f2f2;
    box-shadow: 0px 6px 3px -6px #cccccc;
}
.g_menu_out.fixed .g_menu_logo {display: block;}
.g_menu_out.fixed .sp_menu {width: 70%;}
.g_menu_out.fixed .g_menu {
    justify-content: flex-end;
	align-items: center;
    margin: 0;
}
.sp_contact {display: none;}
.sp_sns {display: none;}



/** メインビジュアル **/
.mv {
width: 100%;
background: linear-gradient(rgba(51, 51, 51, .7), rgba(0, 0, 0, .7)), url(/wp-content/uploads/2025/06/main-scaled.jpeg) center center;
background-attachment: fixed;
text-align: center;
}
.mv_in {
	width: 100%;
	max-width: 1240px;
	margin: 0 auto;
	padding: 180px 0;
    display: table;
    table-layout: fixed;
	margin: 0 auto;
}
.mv_ch {
    font-size: clamp(20px,3vw,40px);
    color: #FFFFFF;
	line-height: 1.6;
	margin: 0 0 30px 0;
    font-weight: 500;
	text-align: center;
}
.mv_ch span {font-size: 130%;}
.mv_ch_sub {
	color: #fff;
    font-size: clamp(14px,3vw,20px);
}
.mv_under {
width: 100%;
background: linear-gradient(rgba(51, 51, 51, .7), rgba(0, 0, 0, .7)), url(/wp-content/uploads/2025/04/006.jpg) center center;
background-attachment: fixed;
text-align: center;
}
.mv_under_in {
	width: 100%;
	max-width: 1240px;
	margin: 0 auto;
	padding: 80px 0;
    display: table;
    table-layout: fixed;
	margin: 0 auto;
}
.mv_under_ch {
    font-size: 40px;
    color: #FFFFFF;
	line-height: 1.6;
	margin: 0 0 10px 0;
    font-weight: 500;
}
.mv_undermv_ch_sub {color: #fff;}


/** パンくず **/
.o_breadcrumbs {
	padding: 10px 0;
	border-bottom: 1px solid #f2f2f2;
	font-size: 90%;
}
.o_breadcrumbs ul {
list-style-type: none;
display: flex;
	flex-wrap: wrap;
	width: 100%;
	max-width: 1240px;
	margin: 0 auto;
}
.o_breadcrumbs li {
	position: relative;
    display: inline-block;
    margin-right: 25px;
}
.o_breadcrumbs li:after {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    right: -15px;
    margin-top: -4px;
    width: 6px;
    height: 6px;
    border-right: 1px solid #aaaaaa;
    border-bottom: 1px solid #aaaaaa;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.o_breadcrumbs li:last-child:after {content: none;}



/** コンテナ **/
.container {
	width: 100%;
	margin: 0 auto;
}

/** 要素（共通） **/
.block_out {
	width: 100%;
	padding: 80px 0;
}
.block_out:nth-child(even) {background: #f2f2f2;}
.block {
	width: 100%;
	max-width: 1240px;
	margin: 0 auto;
}
.block h2 {
font-size: 46px;
    margin-bottom: 50px;
    text-align: center;
    font-weight: normal;
}
.block h2 span {
	display: block;
	margin-top: 5px;
	font-size: 16px;
}

/** 固定ページ **/
.page {}
.page h2 {
	font-size: 36px;
	margin-bottom: 50px;
	position: relative;
	text-align: center;
}
.page h2:before {
  position: absolute;
  bottom: -10px;
  left: calc(50% - 30px);
  width: 60px;
  height: 3px;
  content: '';
  border-radius: 3px;
  background: #000;
}
.page h3 {
  background-color: #333;
  color: #fff;
  font-weight: bold;
  position: relative;
  padding: 0.3em 0.5em;
  text-align: center;
	margin: 50px 0 30px;
}
.page h3::before, .page h3::after {
  position: absolute;
  bottom: 30px;
  width: 20%;
  height: 7px;
  background: transparent;
  box-shadow: 0 25px 20px rgba(0, 0, 0, .8);
  content: "";
  z-index: -1;
}
.page h3::before {
  transform: rotate(-5deg);
  left: 5px;
}
.page h3::after {
  transform: rotate(5deg);
  right: 5px;
}
.page h4 {
  background-image: linear-gradient(#84dfef 50%, #3a7c9d 50%);
  background-size: 8px 100%;
  background-repeat: no-repeat;
  padding-left: 18px;
	margin: 40px 0 15px;
}
.page p {margin-bottom: 20px;}






/** ページトップ **/
.page_top {
	position:fixed;
	bottom: 30px;
	right: 30px;
	width: 50px;
	height: 50px;
	line-height: 50px;
	border-radius: 50%;
	z-index: 10;
	font-size:20px;
	text-decoration:none;
	text-align: center;
	border: 1px solid #ccc;
	background: #fff;
	box-shadow: 0 2px 10px -6px rgba(0,0,0,.5), 0 3px 10px -4px rgba(0,0,0,.2);
}
.page_top:hover {
	background:#333;
	color: #fff;
}

/** お問い合わせ（フッター） **/
.footer_contact {
width: 100%;
background: linear-gradient(rgba(51, 51, 51, .7), rgba(0, 0, 0, .7)), url(https://www.msc-co.jp/images/footer_contact.jpg) center center;
background-attachment: fixed;
text-align: center;
padding: 50px 0;
}
.footer_contact h2 {
    font-size: 200%;
    margin-bottom: 30px;
    text-align: center;
	color: #fff;
	margin-bottom: 30px;
}
.footer_contact_in {
	width: 100%;
	max-width: 1240px;
	margin: 0 auto;	
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	text-align: center;
}
.footer_contact_in li {
	width: 32%;
	background: rgba(255,255,255,.8);
	padding: 30px;
	border-radius: 15px;
}
.footer_contact_in p {margin-bottom: 10px;}
.footer_contact_title {font-size: 24px;}
.footer_contact_btn {
    width: 100%;
	max-width: 300px;
	padding: 15px 0;
    position: relative;
    display: block;
    font-weight: bold;
    color: #fff;
    border-radius: 0.2em;
    border: none;
    text-shadow: 0 1px 1px rgb(0 0 0 / 9%);
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    text-align: center;
    text-decoration: none;
    font-size: 90%;
background: linear-gradient(90deg, rgb(22, 135, 237), rgb(20, 55, 90));
    box-shadow: 0 4px 0 rgb(64 139 221);
	margin: 30px auto 0;
}
.footer_contact_btn:hover {
    -webkit-transform: translateY(3px);
    transform: translateY(3px);
	box-shadow: none;
}


/** フッター **/
footer {}
.footer {
	width: 100%;
	max-width: 1240px;
	margin: 0 auto;
	padding: 30px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.footer_logo {
	width: 100%;
	max-width: 230px;
}
.f_menu {
width: calc(100% - 250px);
	list-style: none;
	display: flex;
	justify-content: flex-end;
	font-size: 90%;
	margin: 0;
}
.f_menu li {
	width: 20%;
	border-left: 1px solid #ccc;
}
.f_menu li:last-child {border-right: 1px solid #ccc;}
.f_menu li a {
	text-align: center;
	display: block;
	padding: 3px 0;
}
.footer_sns {
	width: 100%;
	max-width: 1240px;
	margin: 0 auto 20px;
	font-size: 200%;
	text-align: right;
}
.footer_copy {
	width: 100%;
	background: #333;
	color: #fff;
	text-align: center;
	font-size: 90%;
	padding: 20px 0;
	border-top: 3px solid #D0A900;
}


/** トップページ **/
/***************************/

/** ボタン **/
.top_btn {
    width: 100%;
	max-width: 400px;
	padding: 20px 10px;
    position: relative;
    display: block;
    font-weight: bold;
    color: #fff;
    border-radius: 0.2em;
    text-shadow: 0 1px 1px rgb(0 0 0 / 9%);
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    text-align: center;
    text-decoration: none;
    font-size: 90%;
    background: #333;
    box-shadow: 0 6px 0 rgb(208 169 0);
	margin: 0 auto;
}
.top_btn:hover {
    -webkit-transform: translateY(3px);
    transform: translateY(3px);
	box-shadow: none;
}


/** MSCとは（トップ） **/
.top_about {text-align: center;}
.top_about_text {margin: 70px 0;}
.top_about_ch {text-align: center; font-size: 30px; margin-bottom: 30px;}
.top_about_ch p {}
.top_about_list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin: 30px 0;
}
.top_about_list li {
	width: 33%;
	margin-bottom: 0.5%;
   display: block;
 overflow: hidden;
   position: relative;
}
.top_about_list li .figcaption{
   transition: all .3s;
   background: rgba(0,0,0,0.7);
    position: absolute;
 top: 0;
 left: 0;
    width: 100%;
    height: 100%;
   display: block;
 color: #fff;
transform: translateY(79%);
	padding: 20px;
	font-size: 180%;
}
.top_about_list li .figcaption span {font-size: 70%;}
.top_about_list li:hover .figcaption{
    transform: translateY(0);
   opacity: 0.8;
}
.top_about_list li img {
    height: 500px;
    object-fit: cover;
}
.wrap-img-hover-05 a .figcaption p{}
.top_about_list_link {
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
.top_about_list_link i {font-size: 60%;}


/** ニュース一覧（トップ） **/
.top_news {
	background: #f2f2f2;
    border-radius: 10px;
    padding: 15px 45px;
    border: 1px solid #ccc;
	background: #fff;
	margin-bottom: 40px;
}
.top_news_in {
	display: flex;
	align-items: center;
    padding: 20px 0 20px 0;
	border-bottom: 1px solid #ccc;
}
.top_news:last-child {border: none;}
.top_news a {
	display: flex;
	align-items: center;
    padding: 0 30px 0 0;
	position: relative;
	width: 100%;
}
.top_news .top_news_in:last-child {border: none;}
.top_news a:hover {
	transition: all .3s;
	opacity: 0.5;
  filter: alpha(opacity=50);
  -ms-filter: "alpha(opacity=50)";
}
.top_news .time {
	width: 130px;
	margin-right: 30px;
}
.top_news .content {width:calc( 100% - 130px );}
.top_news .content a {display: inline;}
.top_news h3 {
	font-size: 100%;
	font-weight: normal;
	flex: 1;
}
.top_news a:after {
display: block;
content: "";
position: absolute;
top: 50%;
right: 10px;
width: 6px;
height: 6px;
margin: -4px 0 0 0;
border-top: solid 2px #D0A900;
border-right: solid 2px #D0A900;
-webkit-transform: rotate(45deg);
        transform: rotate(45deg);
}
.top_news p a {display: inline;}
.top_news p a:after {display: none;}
.top_news p a i {margin-right: 10px;}
.top_news .content a:after {display: none;}



/** ブログ一覧（トップ） **/
.top_blog {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 30px;
}
.top_blog::after{
content:"";
display: block;
width: 32%;
}
.top_blog_in {
	position: relative;
	width: 32%;
	margin-bottom: 2%;
}
.top_blog_in:hover {
	transition: all .3s;
	opacity: 0.5;
  filter: alpha(opacity=50);
  -ms-filter: "alpha(opacity=50)";
}
.top_blog_img {
	width: 100%;
	margin-bottom: 5px;
	overflow:hidden;
}
.top_blog_img img:hover {
	transition: all .3s;
	transform:scale(1.2,1.2);
}
.top_blog_cat {
	position: absolute;
	top: 0;
	left: 0;
	background: #000;
	color: #fff;
	padding: 5px 10px;
	font-size: 90%;
}
.top_blog_time {margin-bottom: 5px; text-align: right;}
.top_blog_in h3 {}
.top_blog_cat a {color: #fff;}

/** 機械情報（トップ） **/
.top_product {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 0 1%;
	margin-bottom: 30px;
}
.top_product::after{
content:"";
display: block;
width: 32%;
}
.top_product_machine {
	width: 32%;
	margin-bottom: 2%;
background: linear-gradient(45deg, #f2f2f2 0%, #f2f2f2 50%, #ccc 50%, #ccc 100%);
    border: 1px solid #ccc;
}
.top_product_machine a {
	position: relative;
	overflow: hidden;
	display: block;
	width: 100%;
}
.top_product_machine a span {
	position: absolute;
	bottom: 0;
	left: 0;
	opacity: 0.7;
   background: rgba(0,0,0,0.8);
	color: #fff;
	display: block;
	padding: 10px;
	width: 100%;
}
.top_product_machine a::before {
  position: absolute;
  content: "";
  top: 0;
  left: -120%;
  width: 100%;
  height: 100%;
  transform: skewX(-30deg);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 100%);
}
.top_product_machine a:hover:before {
  animation: shine .4s linear;
transform:scale(1.2,1.2);
}
@keyframes shine {100% {left: 100%;}}

/** 動画（トップ） **/
.top_movie {margin-bottom: 40px;}
.swiper-pagination-bullet-active {
	background: #D0A900 !important;
}
.swiper-button-prev, .swiper-button-next {display: none !important;}



/** アーカイブ **/
/*****************************/

/** ブログ（アーカイブ） **/
.archiv_blog {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 30px;
}
.archiv_blog::after{
content:"";
display: block;
width: 32%;
}
.archiv_blog_in {
	position: relative;
	width: 32%;
	margin-bottom: 2%;
}
.archiv_blog_in:hover {
	transition: all .3s;
	opacity: 0.5;
  filter: alpha(opacity=50);
  -ms-filter: "alpha(opacity=50)";
}
.archiv_blog_img {margin-bottom: 5px;}
.archiv_blog_cat {
	position: absolute;
	top: 0;
	left: 0;
	background: #000;
	color: #fff;
	padding: 5px 10px;
	font-size: 90%;
}
.archiv_blog_cat a {color: #fff;}
.archiv_blog_time {margin-bottom: 5px; text-align: right;}
.archiv_blog_in h3 {}

/** ニュース（アーカイブ） **/
.news h1 {
	text-align: center;
	margin-bottom: 50px;
}
.archiv_news {
	width: 100%;
	background: #f2f2f2;
    border-radius: 10px;
    padding: 15px 45px;
    border: 1px solid #ccc;
	background: #fff;
	margin-bottom: 40px;
}
.archiv_news_in {
	display: flex;
	align-items: center;
    padding: 20px 0 20px 0;
	border-bottom: 1px solid #ccc;
}
.archiv_news a {
	display: flex;
	align-items: center;
    padding: 0 30px 0 0;
	position: relative;
    width: 100%;
}
.archiv_news a:after {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    width: 6px;
    height: 6px;
    margin: -4px 0 0 0;
    border-top: solid 2px #D0A900;
    border-right: solid 2px #D0A900;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.archiv_news .archiv_news_in:last-child {border: none;}
.archiv_news .time {
    width: 130px;
    margin-right: 30px;
}
.archiv_news .content {flex: 1;}
.archiv_news h3 {font-size: 100%; font-weight: normal;}
.archiv_news .content a {display: inline;}
.archiv_news .content a:after {display: none;}
.archiv_news .content a i {margin-right: 10px;}
.top_news .content a:after {display: none;}


/** 機械情報（アーカイブ） **/
.archiv_product {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 0 1%;
	margin-bottom: 30px;
}
.archiv_product::after{
content:"";
display: block;
width: 32%;
}
.archiv_product_machine {
	width: 32%;
	margin-bottom: 2%;
	background: linear-gradient(45deg, #f2f2f2 0%, #f2f2f2 50%, #ccc 50%, #ccc 100%);
}
.archiv_product_machine a {
	  position: relative;
  overflow: hidden;
	display: block;
	width: 100%;
}
.archiv_product_machine a span {
	position: absolute;
	bottom: 0;
	left: 0;
	    opacity: 0.7;
   background: rgba(0,0,0,0.7);
	color: #fff;
	display: block;
	padding: 10px;
	width: 100%;
}
.archiv_product_machine a::before {
  position: absolute;
  content: "";
  top: 0;
  left: -120%;
  width: 100%;
  height: 100%;
  transform: skewX(-30deg);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 100%);
}
.archiv_product_machine a:hover:before {
  animation: shine .4s linear;
transform:scale(1.2,1.2);
}
@keyframes shine {100% {left: 100%;}}
.product_cat {margin-bottom: 50px;}
.product_cat:last-child {margin: 0;}


/** ページネーション **/
#pagination {
	color: #2583ad;
	margin: 30px auto;
	line-height:2em;
}
a.page-numbers, #pagination .current {
	color: #00019b;
	padding: 10px;
	border:solid 1px #ccc;
	text-decoration:none;
	font-size:smaller;
	background:white;
}
a.page-numbers:hover {
	color:white;
	background: #333;
}
#pagination .current {
	color: white;
	background: #333;
	border: #32A8C7;
	font-weight:bold;
}
.next,
.prev {
	border:0 none;
	background:transparent;
	font-weight:bold;
}



/** 詳細ページ **/
/*******************************/

/** ブログ、ニュース（詳細ページ） **/
.single {
	width: 100%;
	max-width: 1240px;
	margin: 80px auto;	
	display: flex;
	justify-content: space-between;
}

.single .main {
	width: 100%;
	max-width: 860px;
}
.single .side {
	width: 100%;
	max-width: 300px;
}
.single {}
.single h1 {margin-bottom: 15px;}
.single_data {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	margin-bottom: 20px;
}
.single_data_time {margin-right: 20px;}
.single_data_cat {}
.single_thumbnails {margin-bottom: 40px;}
.single_content {line-height: 1.75;}
.single .main p {margin-bottom: 20px;}
.single .main img {margin-bottom: 20px;}
.single .main h2 {margin: 50px 0 20px;}
.single .main h3 {margin: 30px 0 20px;}
.single .main ul {list-style: disc; margin: 0 0 20px 20px;}
.single .main ol {list-style: decimal; margin: 0 0 20px 20px;}
.single .main li {}
.single .side_in {margin-bottom: 30px;}
.single .side h3 {
	background: #333;
	color: #fff;
	padding: 15px;
	font-size: 100%;
	    display: flex;
    align-items: center;
}
.single .side h3:before {
    display: inline-block;
    width: 5px;
    height: 1.2em;
    margin-right: .5em;
    background-color: #D0A900;
    content: '';
}
.single .side ul {
	list-style: none;
	margin: 0;
}
.single .side li {
	border: 1px solid #ddd;
	border-top: none;
}
.single .side li a {
	display: block;
	width: 100%;
	padding: 15px;
	position: relative;
}
.single .side li a:after {
display: block;
content: "";
position: absolute;
top: 50%;
right: 10px;
width: 6px;
height: 6px;
margin: -4px 0 0 0;
border-top: solid 2px #D0A900;
border-right: solid 2px #D0A900;
-webkit-transform: rotate(45deg);
        transform: rotate(45deg);
}
.single .side p {}

/** 機械情報（詳細ページ） **/
.product {}
.product h1 {
	    font-size: 36px;
    margin-bottom: 80px;
    position: relative;
    text-align: center;
}
.product h1:before {
    position: absolute;
    bottom: -10px;
    left: calc(50% - 30px);
    width: 60px;
    height: 3px;
    content: '';
    border-radius: 3px;
    background: #000;
}
.block h2.h2_001 {
	border-top: 1px solid #ccc;
	margin-top: 100px;
	padding-top: 100px;
}
.block h2.h2_002 {
  background-color: #333;
  color: #fff;
  font-weight: bold;
  position: relative;
  padding: 0.3em 0.5em;
  text-align: center;
	margin: 50px 0 30px;
	    font-size: 120%;
}
.block h2.h2_002::before, .page h3::after {
  position: absolute;
  bottom: 30px;
  width: 20%;
  height: 7px;
  background: transparent;
  box-shadow: 0 25px 20px rgba(0, 0, 0, .8);
  content: "";
  z-index: -1;
}
.block h2.h2_002::before {
  transform: rotate(-5deg);
  left: 5px;
}
.block h2.h2_002::after {
  transform: rotate(5deg);
  right: 5px;
}
.block h2.h2_003 {
	padding: 0.2em 1em;
    margin: 0 0 10px 0;
    color: #fff;
    background: #000;
    text-align: center;
    font-size: 1.2em;
}
.block h2.h2_004 {
    font-size: 36px;
    margin: 80px 0;
    position: relative;
    text-align: center;
}
.block h2.h2_004:before {
    position: absolute;
    bottom: -10px;
    left: calc(50% - 30px);
    width: 60px;
    height: 3px;
    content: '';
    border-radius: 3px;
    background: #000;
}
.product_block_001 {
display: flex;
    justify-content: space-between;
}
.product_block_001_img {
text-align: center;
	margin-right: 50px;
    width: 500px;
	text-align: center;
	border-right: 1px dotted #ccc;
background: linear-gradient(45deg, #f2f2f2 0%, #f2f2f2 50%, #ccc 50%, #ccc 100%);
}
.product_block_001_content {flex: 1;}
.product_block_002 {
	display: flex;
    justify-content: space-between;
	flex-wrap: wrap;
}
.product_block_002_img {
text-align: center;
	margin-left: 50px;
    width: 100%;
	max-width: 500px;
	text-align: center;
	order: 2;
background: linear-gradient(45deg, #f2f2f2 0%, #f2f2f2 50%, #ccc 50%, #ccc 100%);
}
.product_block_002_content {flex: 1; order: 1;}
.product_block_002_content p {margin-bottom: 10px;}
.box_point {
    position: relative;
    margin: 30px 0 0 0;
    padding: 25px 10px 7px;
    border: solid 1px #000;
}
.box_point .box-title {
    position: absolute;
    display: inline-block;
    top: -1px;
    left: -1px;
    padding: 0 9px;
    height: 25px;
    line-height: 25px;
    background: #000;
    color: #fff;
}
.box_point p {
    margin: 0; 
    padding: 0;
}
.hosoku {font-size: 90%;}
.plant_list {
	display: flex;
    justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 30px;
}
.plant_list ul {width: 49.5%;}
.plant_list li {
	background: #777;
	color: #fff;
	padding: 5px 10px;
	margin-bottom: 2%;
}
.product .link a {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 30px auto ;
    max-width: 450px;
    padding: 10px 25px;
    color: #FFF;
    transition: 0.3s ease-in-out;
    font-weight: 600;
    background: #333;
    filter: drop-shadow(0px 2px 4px #ccc);
    border-radius: 50px;
	border: 3px solid #D0A900;
}
.product .link a:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgb(0 0 0 / 15%), 0 0 5px rgb(0 0 0 / 10%);
}
.product .link a:after {
    position: absolute;
    top: 50%;
    right: 20px;
    transition: 0.2s ease-in-out;
    content: "\f0da";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    transform: translateY(-54%);
}
.m_cat_description {
	text-align: center;
	margin: -40px 0 80px;
}
.konbea_list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.konbea_list_in {
	width: 48%;
	margin-bottom: 2%;
}
.text_001 {font-size: 150%; text-align: center; margin-top: 20px;}
.marker_001 {background:linear-gradient(transparent 60%, #ff6 60%);}

.kemipura {}
.kemipura p {margin-bottom: 20px;}
.kemipura_001 {
	display: flex;
    justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 30px;
}
.kemipura_001_img {
	text-align: center;
	margin-left: 50px;
    width: 100%;
	max-width: 500px;
	text-align: center;
	 order: 2;
background: linear-gradient(45deg, #f2f2f2 0%, #f2f2f2 50%, #ccc 50%, #ccc 100%);
}
.kemipura_001_content {flex: 1; order: 1;}
.kemipura_002_in {
	display: flex;
    justify-content: space-between;
	flex-wrap: wrap;
	flex-wrap: wrap;
	align-items: center;
	 background: #f2f2f2;
}
.kemipura_002_img {
	width: 50%;
	padding: 50px;
	text-align: center;
	border: 1px solid #ccc;
	background: #fff;
}
.kemipura_002_content {width: 50%; padding: 50px;}
.kemipura_002_in.right .kemipura_002_img {order: 2;}
.kemipura_002_in.right .kemipura_002_content {order: 1;}

.kemipura_003 {
	display: flex;
    justify-content: space-between;
	flex-wrap: wrap;
	border-bottom: 1px solid #ccc;
	padding-bottom: 30px;
	margin-bottom: 30px;
}
.kemipura_003_text {flex: 1; text-align: center;}
.kemipura_003_img {
	position: relative;
	width: 100%;
	max-width: 450px;
	text-align: center;
	margin-right: 10px;
background: linear-gradient(45deg, #f2f2f2 0%, #f2f2f2 50%, #ccc 50%, #ccc 100%);
}
.kemipura_003_img:last-child {margin: 0;}
.kemipura_003_img span {
	position: absolute;
	top: 0;
	left: 0;
	padding: 3px 5px;
	background: #333;
	color: #fff;
}
.hasaiki_ichijiku {}
.hasaiki_ichijiku p {text-align: center;}
.hasaiki_ichijiku_001 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 50px;
}
.hasaiki_ichijiku_001_in {
	width: 49%;
	margin-bottom: 2%;
	text-align: center;
}
.hasaiki_ichijiku_001_in .title {
	padding: 10px;
	background: #333;
	margin-top: 10px;
	color: #fff;
}
.hasaiki_nijiku {}
.hasaiki_nijiku_001 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.hasaiki_nijiku_001_in {
	width: 49%;
	margin-bottom: 2%;
	text-align: center;
}
.hasaiki_shijiku {}
.hasaiki_shijiku_001 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 50px;
}
.hasaiki_shijiku_001_in {
	width: 49%;
	margin-bottom: 2%;
	text-align: center;
}
.hasaiki_twin_001 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 50px;
}
.hasaiki_twin_001_in {
	width: 49%;
	margin-bottom: 2%;
	text-align: center;
}
.hasaiki_twin_001_in .title {
	padding: 10px;
	background: #333;
	margin-top: 10px;
	color: #fff;
}
.oshidashiki_001 {
	background: linear-gradient(45deg, #f2f2f2 0%, #f2f2f2 50%, #ccc 50%, #ccc 100%);
	margin-bottom: 30px;
}


/** メールフォーム **/
.o_form_list {margin: 20px 0 40px;}
.o_form_list li {padding: 5px;}
.o_form_list p {margin: 0;}
.o_form {
  width: 100%;
  border-collapse: collapse;
	margin: 30px 0;
}
.o_form tr{border-bottom: solid 1px #ccc;}
.o_form tr:first-child{border-top: solid 1px #ccc;}
.o_form th{
	position: relative;
  width: 20%;
  text-align: right;
  padding: 15px 30px 15px 40px;
}
table th:after{
  display: block;
  content: "";
  width: 30px;
  height: 2px;
  background-color: #333;
  position: absolute;
  top:calc(50% - 1px);
  right:-15px;
}
.o_form td{
	text-align: left;
	width: 70%;
	padding: 15px 0 15px 30px;
}
span.hissu {
	position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
	background: #ff0000;
	color: #fff;
	font-size: 80%;
	padding: 3px 6px;
	display: inline-block;
	border-radius: 3px;
}
span.nini {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
	background: #337ab7;
	color: #fff;
	font-size: 80%;
	padding: 3px 6px;
display: inline-block;
	    border-radius: 3px;
}
span.s_text {
	display: block;
	font-size: 80%;
	color: #3377ff;
}
.o_form td .text01 {
    width: 100%;
    background: #f2f2f2;
    border-radius: 10px;
    padding: 15px;
    border: 1px solid #ccc;
}
.o_form td .text02 {
    width: 100%;
	max-width: 300px;
    background: #f2f2f2;
    border-radius: 10px;
    padding: 15px;
    border: 1px solid #ccc;
}
.o_form td textarea {
    width: 100%;
	height: 100px;
    background: #f2f2f2;
    border-radius: 10px;
    padding: 15px;
    border: 1px solid #ccc;
}
.form_pp {
	width: 100%;
	height: 250px;
	overflow-y: scroll;
	padding: 20px;
	margin: 30px 0;
	border: 1px solid #f2f2f2;
}
.form_select {
    width: 100%;
	max-width: 300px;
    background: #f2f2f2;
    border-radius: 10px;
    padding: 15px;
    border: 1px solid #ccc;
}
.contact_block_out input[type="submit"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
    width: 100%;
	max-width: 400px;
	padding: 20px 10px;
    position: relative;
    display: block;
    font-weight: bold;
    color: #fff;
    border-radius: 0.2em;
    text-shadow: 0 1px 1px rgb(0 0 0 / 9%);
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    text-align: center;
    text-decoration: none;
    font-size: 90%;
    background: #333;
    box-shadow: 0 6px 0 rgb(0 0 0);
	margin: 0 auto;
}
.contact_block_out input[type="submit"]:hover {
    -webkit-transform: translateY(3px);
    transform: translateY(3px);
	box-shadow: none;
}
span.wpcf7-spinner {display: none;}
.contact_block_out {
	width: 100%;
	max-width: 1240px;
	margin: 80px auto;
}

/** 確認ページ（メールフォーム） **/
#wpcf7cpcnf table {
	width: 100%;
	max-width: 1240px;
	margin: 0 auto;
border: 1px #ccc solid;
border-collapse: collapse;
}
#wpcf7cpcnf table th {
	width: 20%;
	border: 1px #ccc solid;
text-align: left;
vertical-align: top;
	padding: 10px;
	background: #f2f2f2;
}
#wpcf7cpcnf table td {
	width: 80%;
	border: 1px #ccc solid;
text-align: left;
	padding: 10px;
}
#wpcf7cpcnf p {margin: 0;}
#wpcf7cpcnf table th:after {display: none;}

.wpcf7cp-btns {
	display: flex;
    justify-content: center;
	align-items: flex-end;
}
.wpcf7-submit {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
    width: 100%;
	max-width: 400px;
	padding: 20px 10px;
    position: relative;
    display: block;
    font-weight: bold;
    color: #fff;
    border-radius: 0.2em;
    text-shadow: 0 1px 1px rgb(0 0 0 / 9%);
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    text-align: center;
    text-decoration: none;
    font-size: 90%;
    background: #333;
    box-shadow: 0 6px 0 rgb(0 0 0);
}
.wpcf7-submit:hover {
    -webkit-transform: translateY(3px);
    transform: translateY(3px);
	box-shadow: none;
}
button.wpcf7cp-cfm-edit-btn {
	width: 100px;
	height: 40px;
}



/** 固定ページ **/
/*****************************/

/** リサイクルページ（固定） **/
.recycle_001 {
    display: flex;
    justify-content: space-between;
}
.recycle_001_img {
	    text-align: center;
    margin-right: 50px;
    width: 600px;
}
.recycle_001_content {flex: 1;}
.recycle_002 {text-align: center;}
.recycle_btn {
	margin-top: 50px;
	text-align: center;
}
.recycle_btn .btn_text {
    margin-bottom: 20px;
    font-weight: 600;
    color: #D0A900;
    letter-spacing: 0.04rem;
    display: inline-block;
    position: relative;
}
.recycle_btn .btn_text:before, .recycle_btn .btn_text:after {
    display: inline-block;
    position: absolute;
    top: 45%;
    width: 20px;
    height: 3px;
    border-radius: 5px;
    background-color: #D0A900;
    content: "";
}
.recycle_btn .btn_text:before {
    left: -30px;
    -webkit-transform: rotate( 50deg );
    transform: rotate( 50deg );
}
.recycle_btn .btn_text:after {
    right: -30px;
    -webkit-transform: rotate( -50deg );
    transform: rotate( -50deg );
}
.recycle_btn a {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 450px;
    padding: 10px 25px;
    color: #FFF;
    transition: 0.3s ease-in-out;
    font-weight: 600;
    background: #333;
    filter: drop-shadow(0px 2px 4px #ccc);
    border-radius: 50px;
	border: 3px solid #D0A900;
}
.recycle_btn a:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgb(0 0 0 / 15%), 0 0 5px rgb(0 0 0 / 10%);
}
.recycle_btn a:after {
    position: absolute;
    top: 50%;
    right: 20px;
    transition: 0.2s ease-in-out;
    content: "\f0da";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    transform: translateY(-54%);
}

/** 技術開発ページ（固定） **/
.development {
		display: flex;
	justify-content: space-between;
}
.development_img {
	text-align: center;
	margin-right: 50px;
	width: 500px;
}
.development_img img {margin-bottom: 20px;}
.development_content {flex: 1;}
.development_002 {
    display: flex;
    justify-content: space-between;
	flex-wrap: wrap;
}
.development_002_in {
	width: 32%;
	margin-bottom: 2%;
}
.development_002_in:nth-last-child(-n+2) {width: 100%;}
.development_003 {
    display: flex;
    justify-content: space-between;
	flex-wrap: wrap;
}
.development_003_in {width: 48%;}


/** 動画ページ（固定） **/
.p_library .page {text-align: center;}
.library_block {margin-bottom: 50px;}
.p_library .page ul {
	width: 100%;
	max-width: 900px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 40px auto 0;
}
.p_library .page ul::after{
content:"";
display: block;
width: 32%;
}
.p_library .page li {
	width: 32%;
	margin-bottom: 2%;
}

/** 企業情報（固定） **/
.company_info_about {
	width: 100%;
	margin-bottom: 50px;
}
.company_info_table {width: 100%;}
.company_info_table td {
padding: 10px 10px;
text-align: left;
vertical-align: top;
  border-bottom: 2px solid #c1c7c6;
  padding: 1em;
}
.company_info_table th {
	width: 200px;
  padding: 1em;
text-align: left;
vertical-align: top;
  border-bottom: 2px solid #4d9bc1;;
  font-weight: bold;
  text-align: center;
  width: 20%;
  min-width: 4em;
}
.company_info_table th.top {border-top: 2px solid #4d9bc1;}
.company_info_table td.top {border-top: 2px solid #c1c7c6;}
.company_info_img {margin-bottom: 50px;}
.company_info_ex {}
.representative {
		display: flex;
	justify-content: space-between;
}
.representative_img {
	text-align: center;
	margin-right: 50px;
	width: 500px;
}
.representative_img img {margin-bottom: 20px;}
.representative_content {flex: 1;}
.effort {
	font-size: 250%;
	margin-bottom: 15px;
}
.representative_block_r {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.representative_block_r_img {
	width: 500px;
	margin-left: 50px;
	order: 2;
}
.representative_block_r_content {flex: 1; order: 1;}
.representative_block_l {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.representative_block_l_img {
	width: 100%;
	max-width: 500px;
	margin-right: 50px;
}
.representative_block_l_content {flex: 1;}
.margin10 img {margin-bottom: 10px;}
.education_system {
	padding: 50px 0;
	background: #333;
	color: #fff;
	margin: 50px 0 0 0;
}
.education_system h3 {margin: 0 0 30px 0;}
.education_system_img {
	width: 100%;
	max-width: 500px;
	margin: 0 auto 50px;
}
.education_system_content {
	width: 100%;
	max-width: 500px;
	margin: 0 auto;
}












@media (max-width: 768px) {

/** 画像横スクロール **/
.mobile_scroll {
	width: 100%;
	overflow-x: scroll;
	margin-bottom: 20px;
}
.mobile_scroll_in {width: 200%;}

/** 確認ページ **/
#wpcf7cpcnf table th,
#wpcf7cpcnf table td {
	display: block;
	width: 100%;
	}


/** メールフォーム **/
.contact_block_out {width: 94%;}
.o_form th,
.o_form td {
	display: block;
	width: 100%;
}
.o_form th {
	text-align: left;
	padding: 15px 0 15px 50px;
}
.o_form td {padding: 15px 0;}
table th:after{display: none;}



/** 機械情報（詳細ページ） **/
.product {}
.product h1 {
	    font-size: 36px;
    margin-bottom: 80px;
    position: relative;
    text-align: center;
}
.product h1:before {
    position: absolute;
    bottom: -10px;
    left: calc(50% - 30px);
    width: 60px;
    height: 3px;
    content: '';
    border-radius: 3px;
    background: #000;
}
.block h2.h2_001 {
	font-size: 120%;
	margin: 50px 0;
	padding-top: 50px;
}
.block h2.h2_002 {
  background-color: #333;
  color: #fff;
  font-weight: bold;
  position: relative;
  padding: 0.3em 0.5em;
  text-align: center;
	margin: 50px 0 30px;
	    font-size: 120%;
}
.block h2.h2_002::before, .page h3::after {
  position: absolute;
  bottom: 30px;
  width: 20%;
  height: 7px;
  background: transparent;
  box-shadow: 0 25px 20px rgba(0, 0, 0, .8);
  content: "";
  z-index: -1;
}
.block h2.h2_002::before {
  transform: rotate(-5deg);
  left: 5px;
}
.block h2.h2_002::after {
  transform: rotate(5deg);
  right: 5px;
}
.block h2.h2_003 {
	padding: 0.2em 1em;
    margin: 0 0 10px 0;
    color: #fff;
    background: #000;
    text-align: center;
    font-size: 1.2em;
}
.block h2.h2_004 {
    font-size: 36px;
    margin: 80px 0;
    position: relative;
    text-align: center;
}
.block h2.h2_004:before {
    position: absolute;
    bottom: -10px;
    left: calc(50% - 30px);
    width: 60px;
    height: 3px;
    content: '';
    border-radius: 3px;
    background: #000;
}
.product_block_001 {
	display: block;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px dotted #ccc;
}
.product_block_001_img {
text-align: center;
	margin: 0 0 20px 0;
	padding-bottom: 20px;
    width: 100%;
	border: none;
}
.product_block_001_content {flex: 1;}
.product_block_002 {}
.product_block_002_img {order: 1; border: none; margin: 0 0 30px 0;}
.product_block_002_content {order: 2;}
.product_block_002_content p {}
.box_point {
    position: relative;
    margin: 30px 0 0 0;
    padding: 25px 10px 7px;
    border: solid 1px #000;
}
.box_point .box-title {
    position: absolute;
    display: inline-block;
    top: -1px;
    left: -1px;
    padding: 0 9px;
    height: 25px;
    line-height: 25px;
    background: #000;
    color: #fff;
}
.box_point p {
    margin: 0; 
    padding: 0;
}
.hosoku {font-size: 90%;}
.plant_list {}
.plant_list ul {width: 100%;}
.plant_list li {}
.product .link a {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 30px auto ;
    max-width: 450px;
    padding: 10px 25px;
    color: #FFF;
    transition: 0.3s ease-in-out;
    font-weight: 600;
    background: #333;
    filter: drop-shadow(0px 2px 4px #ccc);
    border-radius: 50px;
	border: 3px solid #D0A900;
}
.product .link a:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgb(0 0 0 / 15%), 0 0 5px rgb(0 0 0 / 10%);
}
.product .link a:after {
    position: absolute;
    top: 50%;
    right: 20px;
    transition: 0.2s ease-in-out;
    content: "\f0da";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    transform: translateY(-54%);
}
.m_cat_description {
	text-align: center;
	margin: -40px 0 80px;
}
.konbea_list {}
.konbea_list_in {}
.text_001 {font-size: 100%;}
.marker_001 {}

.kemipura {}
.kemipura p {margin-bottom: 20px;}
.kemipura_001 {display: block;}
.kemipura_001_img {order: 1; margin: 0 auto 20px; background: none; text-align: center;}
.kemipura_001_content {order: 2;}
.kemipura_002_in {}
.kemipura_002_img {width: 100%;}
.kemipura_002_content {width: 100%;}
.kemipura_002_in.right .kemipura_002_img {order: 1;}
.kemipura_002_in.right .kemipura_002_content {order: 2;}

.kemipura_003 {display: block;}
.kemipura_003_text {text-align: center; margin-bottom: 20px;}
.kemipura_003_img {margin: 0 auto 20px;}
.kemipura_003_img:last-child {margin: 0 auto;}
.kemipura_003_img span {}

.hasaiki_ichijiku {}
.hasaiki_ichijiku p {text-align: center;}
.hasaiki_ichijiku_001 {}
.hasaiki_ichijiku_001_in {
	width: 100%;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px dotted #ccc;
}
.hasaiki_ichijiku_001_in:last-child {border: none;}
.hasaiki_ichijiku_001_in .title {margin: 0;}

.hasaiki_nijiku {}
.hasaiki_nijiku_001 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.hasaiki_nijiku_001_in {
	width: 49%;
	margin-bottom: 2%;
	text-align: center;
}
.hasaiki_shijiku {}
.hasaiki_shijiku_001 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 50px;
}
.hasaiki_shijiku_001_in {
	width: 49%;
	margin-bottom: 2%;
	text-align: center;
}
.hasaiki_twin_001 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 50px;
}
.hasaiki_twin_001_in {
	width: 49%;
	margin-bottom: 2%;
	text-align: center;
}
.hasaiki_twin_001_in .title {
	padding: 10px;
	background: #333;
	margin-top: 10px;
	color: #fff;
}






/** ヘッダー **/
.header_contact {display: none;}
.header {padding: 10px 0;}






/** 要素（共通） **/
.block {width: 94%; margin: 0 auto;}
.block h2 {font-size: 30px;}
.block h2 span {font-size: 14px;}




/** 開閉式メニュー **/
.hamburger-overlay {
	display: block;
  position: absolute;
  top: -60px;
  right: 0;
  z-index: 1000;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  cursor: pointer;
}
.g_menu_out.fixed .hamburger-overlay {
  top: 15px;
}
.hamburger-overlay.active {
  top: -130px;
}
.hamburger-overlay__line {
  position: absolute;
  left: 11px;
  width: 26px;
  height: 2px;
  background-color: #333;
  transition: all .6s;
}

.hamburger-overlay__line:nth-of-type(1) { top: 14px; }
.hamburger-overlay__line:nth-of-type(2) { top: 23px; }
.hamburger-overlay__line:nth-of-type(3) { top: 32px; }

.hamburger-overlay.active .hamburger-overlay__line {
  background-color: #fff;
}

.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(2) {
  opacity: 0;
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(3) {
  transform: translateY(-9px) rotate(45deg);
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  visibility: hidden;
  opacity: 0;
  transition: all .6s;
  z-index: 900;
	overflow-y: auto;
}

.nav-overlay.active {
  visibility: visible;
  opacity: 1;

}

.nav-overlay__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.nav-overlay__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-overlay__item {
  opacity: 0;
  transform: translateY(20px);
  transition: all .6s;
}

.nav-overlay.active .nav-overlay__item {
  opacity: 1;
  transform: translateY(0);
}

.nav-overlay.active .nav-overlay__item:nth-child(1) { transition-delay: 0.1s; }
.nav-overlay.active .nav-overlay__item:nth-child(2) { transition-delay: 0.2s; }
.nav-overlay.active .nav-overlay__item:nth-child(3) { transition-delay: 0.3s; }
.nav-overlay.active .nav-overlay__item:nth-child(4) { transition-delay: 0.4s; }

.nav-overlay__link {
  display: inline-block;
  padding: 20px;
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  transition: color .3s;
}

.nav-overlay__link:hover {
  color: #4a90e2;
}

/** グローバルメニュー **/
.g_menu_out.fixed .sp_menu {width: 100%;}
.sp_menu {padding: 10px 0 80px;}
.sp_logo {display: block; margin-bottom: 20px; text-align: center;}
.g_menu {
	width: 94%;
	margin: 0 auto;
	display: block;
	font-size: 100%;
	border-bottom: 1px dotted #fff;
}

.fixed .g_menu {margin: 0 auto;}
.g_menu li {
	width: 100%;
	border: none;
	border-top: 1px dotted #fff;
	padding: 0;
	position: relative;
}
.g_menu li:last-child {border-right: none;}

.g_menu li a {
	text-align: left;
	padding: 10px;
	position: relative;
	color: #fff;
}
.g_menu li a::after {
display: block;
content: "";
position: absolute;
    left: auto;
top: 50%;
right: 10px !important;
width: 6px;
height: 6px;
margin: -4px 0 0 0;
border-top: solid 2px #D0A900;
border-right: solid 2px #D0A900;
-webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    background: transparent;
}

.g_menu li a:hover::after {
display: none;
}

.g_menu li .sub-menu {
	position: static;
	width: 100%;
	transition: 0;
	transform: translateY(0);
	opacity: 1;
  }
 
.g_menu li:hover .sub-menu {
    height: auto;
    transform: translateY(0);
    opacity: 1;
  }
 
.g_menu .sub-menu li {
    display: block;
    margin-left: 0;
    padding: 0;
	border: none;
	border-top: 1px dotted #fff;
    background-color: transparent;
	width: 100%;
  }
 
.g_menu .menu-item-has-children:nth-last-child(1) .sub-menu,
.g_menu .menu-item-has-children:nth-last-child(2) .sub-menu {
    right: 0;
    left: auto;
  }
 
.g_menu .sub-menu li a {
    padding: 10px 30px;
	width: 100%;
	color: #fff;
  }

.sp_contact {display: block; margin: 40px 0;}
.sp_contact li {margin-bottom: 20px;}
.sp_contact li a {
	color: #fff;
	display: block;
	width: 94%;
	max-width: 350px;
	padding: 15px;
	text-align: center;	
	border: #fff 1px solid;
	margin: 0 auto;
}

.sp_sns {
	display: block;
	color: #fff;
	text-align: center;
}
.sp_sns a {
    color: #fff;
    font-size: 200%;
}






/** ニュース **/
.top_news_in {display: block;}
	.top_news .content {width: 100%;}
.top_news {padding: 15px;}
.top_news a {
	display: block;
	padding: 20px 30px 20px 0;
}
.top_news .time {
    width: 100%;
    margin: 0 0 10px 0;
}


/** 機械情報（トップ） **/
.top_product_machine {width: 48%;}



/** 動画 **/



/** ブログ **/
.top_blog_in {width: 48%;}



/** お問い合わせ（フッター） **/
.footer_contact {}
.footer_contact_in {width: 94%;}
.footer_contact_in li {
	width: 100%;
	margin-bottom: 10px;
}
.footer_contact_in li:last-child {margin: 0;}
.footer_contact_in p {
}
.footer_contact_title {font-size: 24px;}

.footer_contact_btn {
    width: 100%;
	max-width: 300px;
	padding: 15px 0;
    position: relative;
    display: block;
    font-weight: bold;
    color: #fff;
    border-radius: 0.2em;
    border: none;
    text-shadow: 0 1px 1px rgb(0 0 0 / 9%);
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    text-align: center;
    text-decoration: none;
    font-size: 90%;
background: linear-gradient(90deg, rgb(22, 135, 237), rgb(20, 55, 90));
    box-shadow: 0 4px 0 rgb(64 139 221);
	margin: 30px auto 0;
}
.footer_contact_btn:hover {
    -webkit-transform: translateY(3px);
    transform: translateY(3px);
	box-shadow: none;
}





/** フッター **/
footer {	padding-bottom: 40px;}
.footer {
	width: 94%;
	margin: 0 auto;
	display: block;
}

.footer_logo {
	max-width: 100%;
    text-align: center;
	margin: 0 0 30px 0;
}

.f_menu {
width: calc(100%);
	display: block;
}
.f_menu li {
	width: 100%;
	border: none;
	border-bottom: 1px dotted #ccc;
}
.f_menu li:last-child {border-right: none;}
.f_menu li a {
	text-align: left;
	display: block;
	padding: 10px 30px 10px 0;
	position: relative;
}
.f_menu li a:after {
display: block;
content: "";
position: absolute;
top: 50%;
right: 10px;
width: 6px;
height: 6px;
margin: -4px 0 0 0;
border-top: solid 2px #D0A900;
border-right: solid 2px #D0A900;
-webkit-transform: rotate(45deg);
        transform: rotate(45deg);
}


.footer_sns {
	width: 94%;
	max-width: 1240px;
	margin: 0 auto 20px;
	font-size: 200%;
	text-align: right;
}
.footer_copy {
	width: 100%;
	background: #333;
	color: #fff;
	text-align: center;
	font-size: 90%;
	padding: 20px 0;
	border-top: 3px solid #D0A900;
}



/** ページトップ **/
.page_top {
	position:fixed;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 40px;
	line-height: 40px;
	border-radius: 0;
	font-size:20px;
	text-decoration:none;
	text-align: center;
	border: none;
	border-top: 1px solid #ccc;
	background: #fff;
	box-shadow: 0 2px 10px -6px rgba(0,0,0,.5), 0 3px 10px -4px rgba(0,0,0,.2);
}
.page_top:hover {
	background:#fff;
	color: #333;
}



/** アーカイブ **/
/*****************************/

/** ブログ（アーカイブ） **/
.archiv_blog::after{display: none;}
.archiv_blog_in {width: 48%;}

/** ニュース（アーカイブ） **/
.archiv_news_in {display: block;}
.archiv_news a {display: block;}
.archiv_news .time {
	width: 100%;
    margin: 0 0 10px 0;
}

/** 機械情報（アーカイブ） **/
.archiv_product::after{display: none;}
.archiv_product_machine {width: 49%;}



/** 詳細ページ（ブログ、ニュース、固定ページ共通） **/
.single {display: block;}
.single .main {
	width: 94%;
	max-width: 100%;
	margin: 0 auto;
}
.single .side {
	width: 94%;
	max-width: 100%;
	margin: 50px auto 0;
	padding-top: 50px;
	border-top: 1px dotted #ccc;
}
.single {}
.single h1 {margin-bottom: 15px;}
.single_data {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	margin-bottom: 20px;
}
.single_data_time {margin-right: 20px;}
.single_data_cat {}
.single_thumbnails {margin-bottom: 40px;}
.single_content {line-height: 1.75;}
.single .main p {margin-bottom: 20px;}
.single .main img {margin-bottom: 20px;}
.single .main h2 {margin: 50px 0 20px;}
.single .main h3 {margin: 30px 0 20px;}
.single .main ul {list-style: disc; margin: 0 0 20px 20px;}
.single .main ol {list-style: decimal; margin: 0 0 20px 20px;}
.single .main li {}
.single .side_in {margin-bottom: 30px;}
.single .side h3 {
	background: #333;
	color: #fff;
	padding: 15px;
	font-size: 100%;
	    display: flex;
    align-items: center;
}
.single .side h3:before {
    display: inline-block;
    width: 5px;
    height: 1.2em;
    margin-right: .5em;
    background-color: #D0A900;
    content: '';
}
.single .side ul {
	list-style: none;
	margin: 0;
}
.single .side li {
	border: 1px solid #ddd;
	border-top: none;
}
.single .side li a {
	display: block;
	width: 100%;
	padding: 15px;
	position: relative;
}
.single .side li a:after {
display: block;
content: "";
position: absolute;
top: 50%;
right: 10px;
width: 6px;
height: 6px;
margin: -4px 0 0 0;
border-top: solid 2px #D0A900;
border-right: solid 2px #D0A900;
-webkit-transform: rotate(45deg);
        transform: rotate(45deg);
}
.single .side p {}






/** パンくず **/
.o_breadcrumbs ul {
	width: 94%;
	flex-wrap: nowrap;
    overflow-x: scroll;
    word-break: keep-all;
    white-space: nowrap;
}



/** MSCとは **/
.top_about {}
.top_about_text {}
.top_about_ch {text-align: center; font-size: 30px; margin-bottom: 30px;}
.top_about_ch p {}
.top_about_list {
	display: block;
	justify-content: space-between;
	flex-wrap: wrap;
	margin: 30px 0;
}
.top_about_list li {
	width: 100%;
	margin-bottom: 0.5%;
   display: block;

}
.top_about_list li .figcaption{
transform: translateY(0);
height: fit-content;
	bottom: 0;
	top: auto;
}
.top_about_list li .figcaption span {font-size: 70%;}
.top_about_list li:hover .figcaption{
    transform: translateY(0);
   opacity: 0.8;
}
.top_about_list li img {
	width: 100%;
    height: auto;
    object-fit: cover;
}
.wrap-img-hover-05 a .figcaption p{}
.top_about_list_link {
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
.top_about_list_link i {display: none;}




/** 固定ページ **/
/*****************************/

/** リサイクルページ（固定） **/
.recycle_001 {display: block;}
.recycle_001_img {
    margin: 0 0 30px 0;
    width: 100%;
}

/** 技術開発ページ（固定） **/
.development {display: block;}
.development_img {
	margin: 0 0 30px 0;
	width: 100%;
}
.development_img img {margin-bottom: 20px;}
.development_content {flex: 1;}
.development_002 {
    display: flex;
    justify-content: space-between;
	flex-wrap: wrap;
}
.development_002_in {
	width: 32%;
	margin-bottom: 2%;
}
.development_002_in:nth-last-child(-n+2) {width: 100%;}
.development_003 {
    display: block;
	text-align: center;
}
.development_003_in {width: 100%; margin-bottom: 30px;}
.development_003_in:last-child {margin: 0;}
	
/** 動画ページ（固定） **/
.p_library .page ul::after{display: none;}
.p_library .page li {width: 49%;}

/** 企業情報（固定） **/
.company_info_about {}
.company_info_table th, .company_info_table td {display: block;}
.company_info_table {width: 100%;}
.company_info_table td {border: none;}
.company_info_table th {
	width: 100%;
	border: none;
	text-align: left;
	min-width: auto;
	background: #333;
	color: #fff;
}
.company_info_table th.top {border:none;}
.company_info_table td.top {border:none;}

.company_info_img {margin-bottom: 50px;}
.company_info_ex {}
.representative {
		display: block;
}
.representative_img {
	margin: 0 0 30px 0;
	width: 100%;
}
.representative_img img {margin-bottom: 20px;}
.representative_content {flex: 1;}
.effort {
	font-size: 250%;
	margin-bottom: 15px;
}
.representative_block_r {display: block;}
.representative_block_r_img {
	width: 100%;
	margin: 0 0 30px 0;
	order: 1;
	text-align: center;
}
.representative_block_r_content {flex: 1; order: 2;}

.representative_block_l {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.representative_block_l_img {}
.representative_block_l_content {flex: 1;}
.margin10 img {margin-bottom: 10px;}
.education_system {padding: 30px;}
.education_system h3 {margin: 0 0 30px 0;}
.education_system_img {}
.education_system_content {}
	
	
	
}






