
body {
	font-family: "noto-sans-cjk-jp", sans-serif;
	font-weight: 400;
	position: relative;
    left: 0;
    overflow-x: hidden;
	-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;
}
a:hover {
	filter: brightness(1.1);
}
p {
	font-size: 16px;
	line-height: 1.8;
}

/*==================================================================================
ヘッダー
==================================================================================*/
header {
	width: 100%;
	padding: 20px 0 0!important;
	z-index: 9999!important;
	position: relative;
}
header.index {
	animation: main_nav 1.5s!important;
}
header .logo {
	display: block;
	width: 340px;
}
/* バーガー メニュー -----------------------*/
nav.gnav {
    z-index: 999;
    width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.8);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s;
    position: fixed;
    top: 0;
    left: 0;
}
nav.gnav.active {
    opacity: 1;
	visibility: visible;
}
nav.gnav .close {
    width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
nav.gnav .boad {
	display: flex;
	align-items: center;
    width: calc(100% - 190px);
	max-width: 1200px;
	height: 100%;
	box-sizing: border-box;
	padding: 40px 60px;
    background: #fff;
	transition: all .3s;
	transform: translateX(-100%);
	opacity: 0;
	position: relative;
	z-index: 2;
}
nav.gnav.active .boad {
	transform: translateX(0);
	opacity: 1;
}
nav.gnav ul {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	align-content: center;
    width: 100%;
	height: 780px;
}
nav.gnav ul li.parent {
	width: 40%;
    border-bottom: 1px dotted #ccc;
}
nav.gnav ul li.parent:nth-child(n+1):nth-child(-n+5) {
    width: 50%;
    margin-right: 40px;
}
nav.gnav ul li.parent:first-child {
	margin-bottom: 30px;
	border-bottom: none;
}
nav.gnav ul li.parent:nth-child(2) {
    border-top: 1px dotted #ccc;
}
nav.gnav ul li.parent:nth-child(6) {
	margin-top: 95px;
    border-top: 1px dotted #ccc;
}
nav.gnav ul li.parent:last-child {
    border-bottom: none;
}
nav.gnav ul li.parent a {
    display: block;
	padding: 25px 0;
	font-weight: 900;
	position: relative;
}
nav.gnav ul li.parent:first-child a {
	display: inline-block;
	padding: 20px 40px;
	border: 1px #000 solid;
}
nav.gnav ul li.parent:last-child a {
	font-weight: 500;
}
nav.gnav ul li.parent a:hover {
	color: #ff0000;
}
/* お問い合わせ */
nav.gnav ul li.parent:nth-child(7) {
	margin-bottom: 10px;
	padding-top: 30px;
	border-bottom: none;
}
nav.gnav ul li.parent:nth-child(7) a.btn {
	display: flex;
	width: 100%;
	max-width: 300px;
	height: 70px;
	padding: 0 60px 0 35px;
}
nav.gnav ul li.parent:nth-child(7) a.btn:hover {
	color: #000;
}
/* エントリー */
nav.gnav ul li.parent:nth-child(8) {
	border-bottom: none;
}
nav.gnav ul li.parent:nth-child(8) a.btn.red {
	display: flex;
	width: 100%;
	max-width: 300px;
	height: 70px;
	padding: 0 60px 0 35px;
}
/* 下層メニュー */
nav.gnav ul li.parent ul {
	display: block;
    width: 100%;
	height: auto;
	padding: 0 0 25px;
}
nav.gnav ul li.parent ul li {
	width: 100%;
	margin-bottom: 15px;
	position: relative;
}
nav.gnav ul li.parent ul li:last-child {
	margin-bottom: 0;
}
nav.gnav ul li.parent ul li a {
	padding: 0 0 0 20px;
	font-weight: 500;
	position: relative;
}
nav.gnav ul li.parent ul li:first-child a {
	display: block;
	padding: 0 0 0 20px;
	border: none;
}
nav.gnav ul li.parent ul li a::before {
	content: "";
	display: block;
	width: 10px;
	border-bottom: 1px #000 solid;
	position: absolute;
	top: 50%;
	left: 0;
}
nav.gnav ul li.parent ul li a:hover,
nav.gnav ul li.parent ul li a:hover .gray {
	color: #ff0000;
}
nav.gnav ul li.parent ul li a .gray {
	transition: all .3s;
}
nav.gnav ul li.parent ul li ul {
	display: flex;
	flex-wrap: wrap;
    flex-direction: row;
	justify-content: flex-start;
	padding: 0 0 0 20px;
}
nav.gnav ul li.parent ul li ul li {
	width: auto;
	margin-right: 10px;
	padding-right: 10px;
	border-right: 1px #000 solid;
}
nav.gnav ul li.parent ul li ul li:last-child {
	margin-right: 0;
	padding-right: 0;
	border-right: none;
}
nav.gnav ul li.parent ul li ul li a,
nav.gnav ul li.parent ul li ul li a:first-child {
	padding: 0;
}
nav.gnav ul li.parent ul li ul li a::before {
	display: none;
}
.gnavToggle {
    z-index: 9999;
    display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: center;
	align-content: center;
    width: 100px;
    height: 100px;
	box-sizing: border-box;
	border: 1px #000 solid;
    background: rgba(255,255,255,0.3);
	border-radius: 50%;
    text-align: center;
    cursor: pointer;
    position: fixed;
    right: 40px;
    top: 20px;
	transition: background .3s;
}
.gnavToggle:hover {
	background: #000;
	color: #fff;
}
.gnavToggle span {
    display: block;
    width: 60%;
    border-bottom: 1px #fff solid;
	opacity: 0;
    transition: all .3s;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%);
}
.gnavToggle span:last-child {
	width: 100%;
	margin-bottom: 0;
    border: none;
    font-size: 14px;
	position: relative;
	top: 0;
	left: 0;
	transform: none;
	opacity: 1;
}
.gnavToggle.active {
	border: none;
	background: none;
}
.gnavToggle.active span:nth-child(1) {
	opacity: 1;
    transform: translateX(-50%) rotate(-30deg);
}
.gnavToggle.active span:nth-child(2) {
	opacity: 1;
    transform: translateX(-50%) rotate(30deg);
}
.gnavToggle.active span:last-child {
	opacity: 0;
	visibility: hidden;
}

/*==================================================================================
共通
==================================================================================*/
/* レイアウト */
section {
	padding: 80px 0!important;
	position: relative;
}
.container {
	width: calc(100% - 80px);
	padding: 0 40px;
	margin: auto;
	position: relative;
}
.max680 {
	max-width: 680px;
	margin: auto;
}
.max1000 {
	max-width: 1000px;
	margin: auto;
}
.max1200 {
	max-width: 1200px;
	margin: auto;
}
.max1400 {
	max-width: 1400px;
	margin: auto;
}
.row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.row.align_center {
	align-items: center;
}
.row.align_end {
	align-items: flex-end;
}
.row.just_center {
	justify-content: center;
}
.row.just_start {
	justify-content: flex-start;
}
.col2 {
	width: calc(50% - 25px);
}

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

.border {
	border-bottom: 1px #000 solid;
	transform-origin: left center;
}
.border.animated {
	animation: border .3s linear;
}
@keyframes border {
	0% {transform: scaleX(0);}
	100% {transform: scaleX(1);}
}
.border.double {
	height: 4px;
	border-top: 1px #000 solid;
	border-bottom: 1px #000 solid;
	transform-origin: right center;
}

/* フォント */
h1 {
	font-weight: 700;
	letter-spacing: 0.05em;
}
h1 div {
	display: inline-block;
	padding: 15px 20px;
	font-size: 100px;
	position: relative;
}
h1 div::before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.05);
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: -1;
}
h1.animated div::before {
	animation: ttl_bg .9s;
}
@keyframes ttl_bg {
	0% {opacity: 0; transform: translate(-10px,-10px);}
	66.6% {opacity: 0; transform: translate(-10px,-10px);}
	100% {opacity: 1; transform: translate(0,0);}
}
h1 div::after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	border: 1px #000 solid;
	position: absolute;
	top: 0;
	left: 0;
	transform-origin: left top;
}
h1.animated div::after {
	animation: ttl_wire .6s;
}
@keyframes ttl_wire {
	0% {height: 0; border-top: none; transform: scaleX(0);}
	50% {height: 0; border-top: none; transform: scaleX(1);}
	100% {height: 100%; border-top: 1px #000 solid; transform: scaleX(1);}
}
h1 div span {
	display: inline-block;
}
h1.animated div span {
	animation: ttl_txt .9s;
}
@keyframes ttl_txt {
	0% {opacity: 0;}
	66.6% {opacity: 0;}
	100% {opacity: 1;}
}
h1 p {
	line-height: 1;
}
h1.animated p {
	animation: ttl_txt .9s;
}
h2 {
	font-size: 46px;
	font-weight: 700;
}
h2 span.eng {
	display: inline-block;
	margin-bottom: 20px;
	padding-left: 30px;
	font-size: 24px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.05em;
	position: relative;
}
h2 span.eng::before {
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	background: url("../img/icon_dia.png") center center / contain no-repeat;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
h2.another {
	font-size: 20px;
	font-weight: 500;
	line-height: 1;
}
h2.another span.eng {
	margin-bottom: 10px;
	padding-left: 0;
	color: #C2C2C2;
	font-size: 160px;
	letter-spacing: 0;
	position: relative;
}
h2.another span.eng::before {
	width: 0;
	height: 100%;
	background: #C2C2C2;
	position: absolute;
	top: 0;
	left: auto;
	right: 0;
	transform: none;
}
h2.another.animated span.eng::before {
	animation: h2eng_bg .3s;
}
@keyframes h2eng_bg {
	0% {width: 100%;}
	100% {width: 0;}
}
h2 div {
	display: inline-block;
	padding: 15px 25px;
	position: relative;
}
h2 div::before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.05);
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: -1;
}
h2.animated div::before {
	animation: ttl_bg .9s;
}
h2 div::after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	border: 1px #000 solid;
	position: absolute;
	top: 0;
	left: 0;
	transform-origin: left top;
}
h2.animated div::after {
	animation: ttl_wire .6s;
}
h2 div p {
	font-size: 46px;
	line-height: 1.4;
}
h2.animated p {
	animation: ttl_txt .9s;
}
h3 span {
	display: inline-block;
	margin-bottom: 15px;
	padding-bottom: 10px;
	font-size: 60px;
	font-weight: 700;
	line-height: 1.2;
	position: relative;
}
h3 span::after {
	content: "";
	display: block;
	width: 100%;
	border-bottom: 1px #000 solid;
	position: absolute;
	bottom: 0;
	left: 0;
	transform-origin: left center;
}
/*
h3.animated span::after {
	animation: border 1s linear;
}
*/
h4 {
	font-size: 46px;
	font-weight: 700;
	line-height: 1.4;
}
h4 span.eng {
	display: block;
	padding-left: 50px;
	color: #FF0000;
	font-size: 16px;
	letter-spacing: 0.05em;
	position: relative;
}
h4 span.eng::before {
	content: "";
	display: block;
	width: 40px;
	border-bottom: 1px #FF0000 solid;
	position: absolute;
	top: 50%;
	left: 0;
}
h4 div {
	display: inline-block;
	padding: 15px 25px;
	position: relative;
}
h4 div::before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.05);
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: -1;
}
h4.animated div::before {
	animation: ttl_bg .9s;
}
h4 div::after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	border: 1px #000 solid;
	position: absolute;
	top: 0;
	left: 0;
	transform-origin: left top;
}
h4.animated div::after {
	animation: ttl_wire .6s;
}
h4 div p {
	font-size: 46px;
	line-height: 1.4;
}
h4.animated p {
	animation: ttl_txt .9s;
}
h5 {
	padding: 15px 20px!important;
	background: #efefef;
	font-size: 24px;
	font-weight: 500;
}
h5 span {
	display: inline-block;
	padding-left: 20px;
	position: relative;
}
h5 span::before {
	content: "";
	display: block;
	height: 24px;
	border-left: 6px #000 solid;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
.font_12 {
	font-size: 12px;
}
.font_14 {
	font-size: 14px;
}
.font_20 {
	font-size: 20px;
}
.font_24 {
	font-size: 24px;
}
.font_30 {
	font-size: 30px;
}
.font_46 {
	font-size: 46px;
	line-height: 1.2;
}
.font_50 {
	font-size: 50px;
	line-height: 1.2;
}
.txt_center {
	text-align: center;
}
.medium {
	font-weight: 500;
}
.bold {
	font-weight: 700;
}
.black {
	font-weight: 900;
}
.eng {
	font-family: "gill-sans-nova", sans-serif;
	font-weight: 400;
}
.eng.bold {
	font-weight: 700;
}
.line1_4 {
	line-height: 1.4;
}
.line2_2 {
	line-height: 2.2;
}
.red {
	color: #ff0000;
}
.gray {
	color: #999;
}
.white {
	color: #fff;
}
.indent {
	padding-left: 1em;
	text-indent: -1em;
}

/* ボタン */
.btn {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: 360px;
	height: 80px;
	box-sizing: border-box;
	padding: 0 60px 0 35px;
	border-radius: 60px;
	border: 1px #000 solid;
	background: #000 url("../img/icon_arrow.png") right 25px center / 30px no-repeat;
	color: #fff;
	font-size: 20px;
	font-weight: 500;
}
.btn.white {
	border: 1px #fff solid;
	background-color: rgba(0,0,0,0.5);
}
.btn.red {
	border: 1px #ff0000 solid;
	background-color: #ff0000;
}
.btn:hover {
	background-color: #fff;
	background-image: url("../img/icon_arrow_bl.png");
	background-position: right 20px center;
	color: #000;
}
.btn.white:hover {
	background-color: #fff;
	color: #000;
}
.btn.red:hover {
	background-color: #fff;
	background-image: url("../img/icon_arrow_red.png");
	color: #ff0000;
}
section.fix_bg {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 300px;
	padding: 0!important;
	overflow: hidden;
	position: relative;
}
section.fix_bg img {
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	z-index: -1;
}
section.fix_bg .btn {
	width: 460px;
	margin: auto;
}
.link {
	display: inline-block;
	padding-bottom: 8px;
	line-height: 1.4;
	position: relative;
}
.link::after {
	content: "";
	display: block;
	width: 100%;
	border-bottom: 1px #000 solid;
	position: absolute;
	left: 0;
	bottom: 0;
	transform-origin: left center;
}
.link:hover {
	color: #ff0000;
}
.link:hover::after {
	border-color: #ff0000;
	animation: border .3s;
}
.btn_anker {
	display: inline-block;
	padding: 10px 35px 10px 20px;
	border: 1px #000 solid;
	border-radius: 50px;
	position: relative;
}
.btn_anker::after {
	content: "";
	display: block;
	width: 6px;
	height: 6px;
	box-sizing: border-box;
	border-right: 2px #000 solid;
	border-bottom: 2px #000 solid;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%) rotate(45deg);
	transition: all .3s;
}
.btn_anker:hover {
	background: #dbdbdb;
}

/* アニメーション -----------*/
.animated.fadeinup {
	animation: fadeinup .6s;
}
@keyframes fadeinup {
	0% {opacity: 0; transform: translateY(30px);}
	100% {opacity: 1; transform: translateY(0);}
}
.animated.fadeinup.second {
	animation: fadeinup_2nd 1.2s;
}
@keyframes fadeinup_2nd {
	0% {opacity: 0; transform: translateY(30px);}
	50% {opacity: 0; transform: translateY(30px);}
	100% {opacity: 1; transform: translateY(0);}
}
.animated.fadeinright {
	animation: fadeinright .6s;
}
@keyframes fadeinright {
	0% {opacity: 0; transform: translateX(30px);}
	100% {opacity: 1; transform: translateX(0);}
}
.animated.fadeinright.second {
	animation: fadeinright_2nd 1.2s;
}
@keyframes fadeinright_2nd {
	0% {opacity: 0; transform: translateX(30px);}
	50% {opacity: 0; transform: translateX(30px);}
	100% {opacity: 1; transform: translateX(0);}
}
/* イメージ -----------------*/
.animated .img_zoomout {
	animation: img_zoomout .6s;
}
@keyframes img_zoomout {
	0% {opacity: 0; transform: scale(1.1);}
	100% {opacity: 1; transform: scale(1);}
}
/* ホバー */
.hv_img img {
	transition: transform .6s;
}
a:hover .hv_img img {
	transform: scale(1.1);
}
/*==================================================================================
INDEX
==================================================================================*/
section#main {
	padding: 20px 0 0!important;
}
section#main ul {
	display: flex;
	flex-wrap: wrap;
}
section#main.animated ul {
	animation: main_nav 1.5s;
}
@keyframes main_nav {
	0% {opacity: 0;}
	80% {opacity: 0;}
	100% {opacity: 1;}
}
section#main ul li {
	margin-right: 20px;
}
section#main ul li a {
	display: block;
}
section#main ul li a:hover {
	color: #ff0000;
}
section#main .movie {
	width: 100%;
	height: 100vh;
	min-height: 680px;
	overflow: hidden;
	position: relative;
}
section#main .movie::after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: #fff;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	opacity: 0;
	visibility: hidden;
}
section#main.animated .movie::after {
	animation: main_mov 1.5s;
}
@keyframes main_mov {
	0% {opacity: 1; visibility: visible;}
	80% {opacity: 1; visibility: visible;}
	100% {opacity: 0; visibility: hidden;}
}
section#main .movie img {
	height: 100%;
	object-fit: cover;
	position: relative;
}
/* NEWS */
section#main .news {
	padding: 25px 0;
	background: #000;
	color: #fff;
}
section#main .news .ttl {
	width: 110px;
}
section#main .news .txt {
	display: block;
	width: calc(100% - 110px);
	color: #fff;
}
section#main .news .txt:hover {
	filter: none;
	opacity: .8;
}
/* WP-pagenavi */
section#news .wp-pagenavi {
	display: flex;
	justify-content: center;
	align-items: center;
}
section#news .wp-pagenavi a,
section#news .wp-pagenavi span {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	margin: 0 10px;
	border: 1px #2F3739 solid;
	box-sizing: border-box;
	color: #2F3739;
	font-size: 14px;
	text-decoration: none!important;
}
section#news .wp-pagenavi span.current {
	background: #2F3739;
	color: #fff;
}
section#news .wp-pagenavi span.extend {
	width: auto;
	border: none;
}
section#news .wp-pagenavi a:hover {
	background: rgba(0,0,0,0.10);
}
/* OUR MESSAGE -------------------------------------------------------------------*/
section#top_message .btn:nth-child(1) {
	margin-right: 20px;
}
/* OUR PRODUCTS ------------------------------------------------------------------*/
section#top_products h2 em {
	font-style: normal;
	font-size: 110%;
}
section#top_products .txt {
	width: calc(100% - 580px - 60px);
	max-width: 480px;
}
section#top_products .img {
	width: calc(50% - 1px);
	overflow: hidden;
}
section#top_products .btn {
	width: calc(100% / 4 - 15px);
}
/* OUR COMPANY -------------------------------------------------------------------*/
section#top_company .btn {
	position: relative;
	z-index: 3;
}
section#top_company .map {
	margin-top: -30%;
	position: relative;
}
section#top_company .map a {
	display: inline-block;
	position: absolute;
}
section#top_company .map a.pin01 {
	width: 13%;
	left: 0.6%;
	bottom: 42%;
}
section#top_company .map a.pin01 img.name {
	left: 1%;
}
section#top_company .map a.pin02 {
	width: 13%;
	left: 34%;
	bottom: 25%;
}
section#top_company .map a.pin03 {
	width: 24%;
	top: 36%;
	right: 40%;
}
section#top_company .map a.pin04 {
	width: 29%;
	right: 17.5%;
	bottom: 32.7%;
}
section#top_company .map a.pin05 {
	width: 24%;
	right: 23%;
	bottom: 46.5%;
}
section#top_company .map a.pin06 {
	width: 24%;
	top: 39%;
	right: 12.5%;
}
/* 場所名 */
section#top_company .map a img.name {
	position: relative;
}
section#top_company .map a.pin01.animated img.name {
	animation: map_pinname_top 1s;
}
section#top_company .map a.pin02.animated img.name {
	animation: map_pinname_btm 1s;
}
section#top_company .map a.pin03.animated img.name {
	animation: map_pinname_l 1s;
}
section#top_company .map a.pin04.animated img.name,
section#top_company .map a.pin05.animated img.name,
section#top_company .map a.pin06.animated img.name {
	animation: map_pinname_r 1s;
}
@keyframes map_pinname_top {
	0% {opacity: 0; transform: translateY(40px);}
	50% {opacity: 0; transform: translateY(40px);}
	100% {opacity: 1; transform: translateY(0);}
}
@keyframes map_pinname_btm {
	0% {opacity: 0; transform: translateY(-40px);}
	50% {opacity: 0; transform: translateY(-40px);}
	100% {opacity: 1; transform: translateY(0);}
}
@keyframes map_pinname_l {
	0% {opacity: 0; transform: translateX(40px);}
	50% {opacity: 0; transform: translateX(40px);}
	100% {opacity: 1; transform: translateX(0);}
}
@keyframes map_pinname_r {
	0% {opacity: 0; transform: translateX(-40px);}
	50% {opacity: 0; transform: translateX(-40px);}
	100% {opacity: 1; transform: translateX(0);}
}
/* 赤丸 */
section#top_company .map a img.marker {
	width: 50%;
	position: absolute;
}
section#top_company .map a.pin01 img.marker {
	right: 2.5%;
	bottom: -18%;
}
section#top_company .map a.pin02 img.marker {
	top: -19%;
	left: -9.5%;
}
section#top_company .map a.pin03 img.marker {
	width: 27.3%;
	top: 4%;
	right: -9%;
}
section#top_company .map a.pin04 img.marker {
	width: 22.5%;
	top: -18%;
	left: -11%;
}
section#top_company .map a.pin05 img.marker {
	width: 27.3%;
	top: 5%;
	left: -12%;
}
section#top_company .map a.pin06 img.marker {
	width: 27.3%;
	top: 5%;
	left: -15%;
}
section#top_company .map a.animated img.marker {
	animation: map_pin_mark .5s;
}
@keyframes map_pin_mark {
	0% {opacity: 0; transform: scale(0);}
	100% {opacity: 1; transform: scale(1);}
}
section#top_company .map a:hover img.marker {
	animation: map_pin_mark2nd .5s;
}
@keyframes map_pin_mark2nd {
	0% {opacity: 0; transform: scale(0);}
	100% {opacity: 1; transform: scale(1);}
}
/* 住所 */
section#top_company ul {
	border-right: 1px #000 solid;
	border-left: 1px #000 solid;
}
section#top_company ul li {
	width: calc(100% / 6 - 3px);
	box-sizing: border-box;
	position: relative;
}
section#top_company ul li::after {
	content: "";
	display: block;
	height: 100%;
	border-right: 1px #000 solid;
	position: absolute;
	right: -2px;
	bottom: 0;
}
section#top_company ul li:last-child::after {
	display: none;
}
section#top_company ul li a {
	display: block;
}
section#top_company ul li a .img {
	display: block;
	width: 100%;
	overflow: hidden;
}
section#top_company ul li a .img img {
	height: 100%;
	object-fit: cover;
	transition: all .3s;
}
section#top_company ul li a:hover .img img {
	transform: scale(1.1);
}
section#top_company ul li .inner {
	height: calc(100% - 30px);
	padding: 15px;
	position: relative;
}
section#top_company ul li .inner .font_20 {
	transition: all .3s;
}
section#top_company ul li a:hover .inner .font_20 {
	color: #FF0000;
}
/* OUR MEMBER --------------------------------------------------------------------*/
section#top_member {
	padding: 0!important;
}
section#top_member .bg_img {
	display: flex;
	flex-wrap: wrap;
	align-content: flex-end;
	width: 100%;
	height: 100vh;
	min-height: 680px;
	box-sizing: border-box;
	padding-bottom: 6%;
	overflow: hidden;
	color: #fff;
	position: relative;
}
section#top_member .bg_img::after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.1);
	position: absolute;
	top: 0;
	left: 0;
}
section#top_member .bg_img img {
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
}
section#top_member .bg_img .container {
	position: relative;
	z-index: 2;
}
section#top_member .bg_img h2 {
	color: #fff;
}
section#top_member .bg_img h2 div::after {
	border-color: #fff;
}
section#top_member .bg_img h2.animated div::after {
	animation: ttl_wire2 .6s;
}
@keyframes ttl_wire2 {
	0% {height: 0; border-top: none; transform: scaleX(0);}
	50% {height: 0; border-top: none; transform: scaleX(1);}
	100% {height: 100%; border-top: 1px #fff solid; transform: scaleX(1);}
}
section#top_member .bg_img h2 div p {
	font-size: 70px;
}
/* 求める人物像 */
section#top_member .bg_black {
	padding: 80px 0;
	background: #2f3739;
	color: #fff;
}
section#top_member .bg_black .img {
	width: calc(50% - (50% - 50vw));
	height: 100%;
	overflow: hidden;
	position: absolute;
	top: 0;
	left: calc(50% - 50vw);
}
section#top_member .bg_black .txt {
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	width: calc(50% - 80px);
	min-height: 600px;
	margin: 0 0 0 auto;
}
section#top_member .bg_black .txt h4 div::after {
	border-color: #fff;
}
section#top_member .bg_black .txt h4.animated div::after {
	animation: ttl_wire2 .6s;
}
section#top_member .bg_black .btn.white {
	background-color: transparent;
}
section#top_member .bg_black .btn.white:hover {
	background-color: #fff;
}
/* INTERVIEW ---------------------------------------------------------------------*/
section#top_interview {
	padding-bottom: 0!important;
}
section#top_interview .row a {
	display: block;
	width: calc(100% / 4);
	box-sizing: border-box;
	padding: 20px 20px 80px;
	border-right: 1px #000 solid;
	position: relative;
}
section#top_interview .row a::after {
	content: "";
	display: block;
	width: 50px;
	height: 50px;
	box-sizing: border-box;
	border-radius: 50%;
	border: 1px #2f3739 solid;
	background: #2f3739 url("../img/icon_arrow.png") center center / 40% no-repeat;
	position: absolute;
	right: 20px;
	bottom: 20px;
}
section#top_interview .row a:hover::after {
	background-color: transparent;
	background-image: url("../img/icon_arrow_bl.png");
}
section#top_interview .row a:last-child {
	border-right: none;
}
section#top_interview .row a .img {
	width: 100%;
	height: 300px;
	overflow: hidden;
}
section#top_interview .row a .ttl {
	position: relative;
}
section#top_interview .row a .ttl::after {
	content: "";
	display: block;
	width: 0;
	border-bottom: 1px #000 solid;
	position: absolute;
	bottom: -5px;
	left: 0;
	opacity: 0;
	transition: all .3s;
}
section#top_interview .row a:hover .ttl::after {
	width: 100%;
	opacity: 1;
}
/* 募集要項はこちら -----------------------------------------------------------------*/
section#top_recruit a {
	display: flex;
	align-items: center;
	width: 100%;
	height: 200px;
	box-sizing: border-box;
	padding-left: 10%;
	background: url("../img/bana_recruit.jpg") center center / cover no-repeat;
}
section#top_recruit a .btn {
	transition: all .3s;
	position: relative;
	z-index: 2;
}
section#top_recruit a:hover .btn {
	background-color: #fff;
	background-image: url("../img/icon_arrow_bl.png");
	background-position: right 20px center;
	color: #000;
}

/*==================================================================================
下層ページ共通
==================================================================================*/
section#main_2nd {
	padding: 20px 0 40px!important;
	border-bottom: 5px #000 solid;
}
section#main_2nd h2.another span.eng {
	font-size: 8vw;
}
section#main_2nd ul.pannav {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
	position: absolute;
	right: 40px;
	bottom: -10px;
}
section#main_2nd ul.pannav li {
	padding-left: 40px;
	position: relative;
}
section#main_2nd ul.pannav li::before {
	content: "";
	display: block;
	width: 30px;
	border-bottom: 1px #000 solid;
	position: absolute;
	top: 50%;
	left: 5px;
}
section#main_2nd ul.pannav li:first-child {
	padding-left: 0;
}
section#main_2nd ul.pannav li:first-child::before {
	display: none;
}
section#main_2nd ul.pannav li a:hover {
	filter: none;
	opacity: .8;
}

/*==================================================================================
社員インタビュー
==================================================================================*/
section#interview_index .row a {
	display: block;
	width: 50%;
	height: 80vh;
	box-sizing: border-box;
	border-bottom: 1px #000 solid;
	padding: 40px;
	color: #fff;
	position: relative;
}
section#interview_index .row a:nth-child(odd) {
	border-right: 1px #000 solid;
}
section#interview_index .row a::after {
	content: "";
	display: block;
	width: 70px;
	height: 70px;
	box-sizing: border-box;
	border: 1px #fff solid;
	border-radius: 50%;
	background: url("../img/icon_arrow.png") center center / 40% no-repeat;
	position: absolute;
	right: 70px;
	bottom: 70px;
	z-index: 2;
	transition: all .3s;
}
section#interview_index .row a:hover::after {
	background-color: #fff;
	background-image: url("../img/icon_arrow_bl.png");
}
section#interview_index .row a .inner {
	display: flex;
	flex-wrap: wrap;
	align-content: flex-end;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	padding: 0 40px 40px;
	position: relative;
}
section#interview_index .row a .img,
section#interview_main .img {
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
}
section#interview_index .row a .img::after,
section#interview_main .img::after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.1);
	position: absolute;
	top: 0;
	left: 0;
}
section#interview_index .row a p,
section#interview_main p {
	width: 100%;
	position: relative;
	z-index: 2;
}
section#interview_index .row a p.ttl {
	font-size: 40px;
	position: relative;
}
section#interview_index .row a p.ttl::after {
	content: "";
	display: block;
	width: 0;
	border-bottom: 1px #fff solid;
	position: absolute;
	bottom: -5px;
	left: 0;
	opacity: 0;
	transition: all .3s;
}
section#interview_index .row a:hover .ttl::after {
	width: 100%;
	opacity: 1;
}
section#interview_index .border.double {
	border-top: none;
}
.int_name {
	display: inline-block;
	padding: 0 0 15px 15px;
	position: relative;
	z-index: 2;
}
.int_name::before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	border-left: 1px #fff solid;
	border-bottom: 1px #fff solid;
	position: absolute;
	top: 0;
	left: 0;
	transform-origin: left top;
}
.int_name.animated::before {
	animation: ttl_wire3 .6s;
}
@keyframes ttl_wire3 {
	0% {height: 0; width: 0;}
	50% {height: 100%; width: 0;}
	100% {height: 100%; width: 100%;}
}

/* 共通 ---------------------------------------------------------------------------*/
section#interview_main {
	display: flex;
	flex-wrap: wrap;
	align-content: flex-end;
	width: 100%;
	height: 800px;
	color: #fff;
}
section#interview_main .ttl {
	font-size: 60px;
}
section#interview_main .int_name {
	padding: 0 0 20px 30px;
}
/* Give a yell! */
section#yell .container::before {
	content: "";
	display: block;
	width: 160px;
	border-bottom: 5px #000 solid;
	position: absolute;
	top: 0;
	left: 80px;
}
section#yell .frame {
	padding: 30px 40px;
	border: 1px #000 solid;
	position: relative;
}
section#yell .frame::before {
	content: "";
	display: block;
	width: calc(-50% + 50vw - 1px);
	height: 80px;
	border-right: 1px #000 solid;
	border-bottom: 1px #000 solid;
	position: absolute;
	top: -81px;
	left: calc(50% - 50vw);
	transform-origin: right bottom;
}
section#yell .frame.animated::before {
	animation: frame_edge .5s;
}
section#yell .frame::after {
	content: "";
	display: block;
	width: calc(-50% + 50vw - 1px);
	height: 80px;
	border-left: 1px #000 solid;
	border-top: 1px #000 solid;
	position: absolute;
	bottom: -81px;
	right: calc(50% - 50vw);
	transform-origin: left top;
}
section#yell .frame.animated::after {
	animation: frame_edge .5s;
}
@keyframes frame_edge {
	0% {transform: scale(0,0);}
	100% {transform: scale(1,1);}
}
section#yell .frame .txt {
	width: calc(100% - 300px - 60px);
}
section#yell .frame .ttl span {
	display: block;
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px #000 solid;
	font-size: 70px;
	line-height: 1;
	position: relative;
}
section#yell .frame .img {
	width: 300px;
	height: calc(100% + 40px);
	overflow: hidden;
	position: absolute;
	right: 40px;
	bottom: 30px;
}
section#yell .frame .img img {
	height: 100%;
	object-fit: cover;
}
/* その他のインタビュー */
section#interview_other h2.another span.eng {
	font-size: 110px;
}
section#interview_other .row {
	border: 1px #000 solid;
}
section#interview_other .row a {
	display: flex;
	flex-wrap: wrap;
	width: calc(100% / 3);
	box-sizing: border-box;
	padding: 20px;
	border-right: 1px #000 solid;
}
section#interview_other .row a:last-child {
	border-right: none;
}
section#interview_other .row a .img {
	width: calc(50% - 20px);
	height: 100%;
	overflow: hidden;
}
section#interview_other .row a .img img {
	height: 100%;
	object-fit: cover;
}
section#interview_other .row a .txt {
	width: 50%;
	height: 200px;
	padding-left: 20px;
	position: relative;
}
section#interview_other .row a .txt::after {
	content: "";
	display: block;
	width: 50px;
	height: 50px;
	box-sizing: border-box;
	border-radius: 50%;
	border: 1px #000 solid;
	background: url("../img/icon_arrow_bl.png") center center / 40% no-repeat;
	position: absolute;
	right: 0;
	bottom: 0;
	transition: all .3s;
}
section#interview_other .row a:hover .txt::after {
	background-color: #000;
	background-image: url("../img/icon_arrow.png");
}
img.h100 {
	height: 100%;
	object-fit: cover;
}
/* エントリーバナー */
section#entry_bana.fix_bg {
	height: 400px;
}

/* Interview01 -------------------------------------------------------------------*/
section#interview01_01 .txt {
	width: 50%;
}
section#interview01_01 .img01 {
	width: calc(50% - (50% - 50vw) - 80px);
	height: 680px;
	overflow: hidden;
	position: absolute;
	top: 0;
	right: calc(50% - 50vw);
}
section#interview01_01 .img02 {
	width: 30%;
	position: absolute;
	top: calc(680px + 40px);
	right: calc((50% - 50vw) + 40px);
}
section#interview01_02 {
	padding-bottom: 0!important;
}
section#interview01_02 .img01 {
	width: calc(50% - (50% - 50vw) - 80px);
	height: calc(100% - 80px);
	overflow: hidden;
	position: absolute;
	top: 0;
	left: calc(50% - 50vw);
}
section#interview01_02 .txt {
	width: 50%;
	margin: 0 0 80px auto;
}
section#interview01_03 .img01 {
	width: calc(50% + 80px);
	height: 460px;
	overflow: hidden;
}
section#interview01_03 .img02 {
	width: calc(50% - 120px);
	height: 460px;
	overflow: hidden;
}
/* Interview02 -------------------------------------------------------------------*/
section#interview02_01 .txt {
	width: 50%;
	min-height: 560px;
}
section#interview02_01 .img {
	width: calc(50% - (50% - 50vw) - 80px);
	height: calc(100% - 80px);
	overflow: hidden;
	position: absolute;
	top: 0;
	right: calc(50% - 50vw);
}
section#interview02_02,
section#interview02_03,
section#interview02_04 {
	padding-top: 0!important;
}
section#interview02_03 .img {
	width: calc(50% - (50% - 50vw) - 80px);
	height: calc(100% - 80px);
	overflow: hidden;
	position: absolute;
	top: 0;
	left: calc(50% - 50vw);
}
section#interview02_03 .txt {
	width: 50%;
	margin: 0 0 80px auto;
}
/* Interview03 -------------------------------------------------------------------*/
section#interview03_01 .txt {
	width: 50%;
}
section#interview03_01 .img01 {
	width: calc(50% - (50% - 50vw) - 80px);
	height: 560px;
	overflow: hidden;
	position: absolute;
	top: 0;
	right: calc(50% - 50vw);
}
section#interview03_01 .img02 {
	width: 30%;
	position: absolute;
	top: calc(560px + 40px);
	right: calc((50% - 50vw) + 40px);
}
section#interview03_02 .img {
	width: calc(50% - (50% - 50vw) - 80px);
	height: calc(100% - 80px);
	overflow: hidden;
	position: absolute;
	top: 0;
	left: calc(50% - 50vw);
}
section#interview03_02 .txt {
	width: 50%;
	margin: 0 0 80px auto;
}
section#interview03_03 {
	padding-top: 0!important;
}
/* Interview04 -------------------------------------------------------------------*/
section#interview04_01 .txt {
	width: 50%;
}
section#interview04_01 .img {
	width: calc(50% - (50% - 50vw) - 80px);
	height: calc(100% - 80px);
	overflow: hidden;
	position: absolute;
	top: 0;
	right: calc(50% - 50vw);
}
section#interview04_02 {
	padding-top: 0!important;
}
section#interview04_02 .txt {
	width: 50%;
	min-height: 1000px;
	margin: 0 0 0 auto;
}
section#interview04_02 .img01 {
	width: calc(50% - (50% - 50vw) - 80px);
	height: 560px;
	overflow: hidden;
	position: absolute;
	top: 0;
	left: calc(50% - 50vw);
}
section#interview04_02 .img02 {
	width: 25%;
	position: absolute;
	top: calc(560px + 40px);
	left: 40px;
}
section#interview04_03 {
	padding-top: 40px!important;
}

/*==================================================================================
企業理念と強み
==================================================================================*/
section#mission_main {
	padding-top: 0!important;
}
section#mission_main .img {
	height: 800px;
	overflow: hidden;
}
section#mission {
	background: #2F3739;
	color: #fff;
}
section#mission .container {
	position: relative;
}
section#mission h2 span.eng span,
section#strength h2 span.eng span {
	margin-bottom: 0;
	padding-left: 10px;
	font-size: 14px;
}
section#mission h2.animated div::after {
	border-color: #fff;
}
section#mission h2.animated div::after {
	animation: ttl_wire2 .6s;
}
section#mission .name {
	width: 50%;
	min-width: 550px;
	padding-bottom: 10px;
	position: relative;
}
section#mission .name::after {
	content: "";
	display: block;
	width: 100%;
	border-bottom: 1px #fff solid;
	position: absolute;
	left: 0;
	bottom: 0;
	transform-origin: left center;
}
section#mission .name.animated::after {
	animation: border .3s!important;
}
section#mission .name span:nth-child(1) {
	display: inline-block;
	margin-right: 15px;
	padding: 8px 10px;
	background: rgba(0,0,0,0.3);
}
section#mission .name span:nth-child(2) {
	display: inline-block;
	margin-right: 10px;
}
section#mission .img {
	width: calc(100% - 670px);
	max-width: 650px;
	height: calc(100% + 180px);
	position: absolute;
	right: 40px;
	bottom: 0;
}
/* 強み */
section#strength .img {
	width: calc(50% - 40px);
}
section#strength .txt {
	width: calc(50% - 40px);
}
/* インタビューバナー */
section#bana_recruit a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: center;
	width: 100%;
	height: 600px;
	position: relative;
}
section#bana_recruit a::after {
	content: "";
	display: block;
	width: 70px;
	height: 70px;
	box-sizing: border-box;
	border-radius: 50%;
	border: 1px #fff solid;
	background: url("../img/icon_arrow.png") center center / 40% no-repeat;
	position: absolute;
	right: 60px;
	bottom: 60px;
	z-index: 4;
}
section#bana_recruit a:hover::after {
	background-color: #fff;
	background-image: url("../img/icon_arrow_bl.png");
}
section#bana_recruit a .img {
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
}
section#bana_recruit a .img::before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.4);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}
section#bana_recruit a .img::after {
	content: "";
	display: block;
	width: calc(100% - 60px);
	height: calc(100% - 60px);
	box-sizing: border-box;
	border: 1px #fff solid;
	position: absolute;
	top: 30px;
	left: 30px;
	z-index: 3;
}
section#bana_recruit a .img img {
	height: 100%;
	object-fit: cover;
	position: relative;
}
section#bana_recruit a h2 {
	color: #fff;
	font-size: 20px;
	text-align: center;
	position: relative;
	z-index: 4;
}
section#bana_recruit a h2.another span.eng {
	color: rgba(255,255,255,0.4);
	font-size: 170px;
}
section#bana_recruit a h3 {
	color: #fff;
	position: relative;
	z-index: 4;
}
section#bana_recruit a h3 span {
	border-color: #fff;
	font-size: 40px;
}

/*==================================================================================
製品情報
==================================================================================*/
section#products_main {
	padding-top: 0!important;
}
section#products_main .img {
	height: 800px;
	overflow: hidden;
}
section#products_main ul.row {
	border: 1px #000 solid;
}
section#products_main ul.row li {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: calc(100% / 3);
	box-sizing: border-box;
	padding: 40px;
	border-right: 1px #000 solid;
}
section#products_main ul.row li:last-child {
	border-right: none;
}
section#products_main ul.row li p,
section#products_main ul.row li img {
	width: 100%;
}
/* ISO9001認証取得 */
section#iso9001 .frame {
	padding: 30px 40px;
	border: 1px #000 solid;
	position: relative;
}
section#iso9001 .frame::before {
	content: "";
	display: block;
	width: calc(-50% + 50vw - 1px);
	height: 80px;
	border-right: 1px #000 solid;
	border-bottom: 1px #000 solid;
	position: absolute;
	top: -81px;
	left: calc(50% - 50vw);
	transform-origin: right bottom;
}
section#iso9001 .frame.animated::before {
	animation: frame_edge .5s;
}
section#iso9001 .frame::after {
	content: "";
	display: block;
	width: calc(-50% + 50vw - 1px);
	height: 80px;
	border-left: 1px #000 solid;
	border-top: 1px #000 solid;
	position: absolute;
	bottom: -81px;
	right: calc(50% - 50vw);
	transform-origin: left top;
}
section#iso9001 .frame.animated::after {
	animation: frame_edge .5s;
}
section#iso9001 .frame p {
	font-size: 50px;
	line-height: 1;
}
section#iso9001 .frame p::before {
	content: "";
	display: block;
	width: 160px;
	border-bottom: 5px #000 solid;
	position: absolute;
	top: 0;
	left: 40px;
}
section#iso9001 table {
	width: 100%;
	border: 1px #000 solid;
}
section#iso9001 table tr {
	position: relative;
}
section#iso9001 table tr::after {
	content: "";
	display: block;
	width: calc(100% - 40px);
	border-bottom: 1px #000 solid;
	position: absolute;
	left: 20px;
	bottom: 0;
}
section#iso9001 table tr:last-child::after {
	display: none;
}
section#iso9001 table th {
	padding: 20px 40px;
	text-align: left;
	font-weight: 500;
}
section#iso9001 table th p {
	position: relative;
}
section#iso9001 table th p::after {
	content: "";
	display: block;
	height: 100%;
	border-right: 1px #000 solid;
	position: absolute;
	top: 0;
	right: 0;
}
section#iso9001 table td {
	padding: 20px 40px;
}
/* Contact Us --------------------------------------------------------------------*/
section#contact_us h3 span {
	font-size: 46px;
}
.icon_tel {
	display: inline-block;
	padding-left: 50px;
	font-size: 60px;
	line-height: 1;
	position: relative;
}
.icon_tel::before {
	content: "";
	display: block;
	width: 40px;
	height: 40px;
	background: url("../img/icon_tel.png") center center / contain no-repeat;
	position: absolute;
	left: 0;
	bottom: 0;
}

/*==================================================================================
採用情報
==================================================================================*/
section#recruit_message .name {
	display: inline-block;
	padding-bottom: 10px;
	border-bottom: 1px #000 solid;
}
section#recruit_message .row {
	position: relative;
}
section#recruit_message .txt {
	width: calc(50% - 40px);
}
section#recruit_message .img {
	width: calc(50% - 40px);
	overflow: hidden;
}
/* 募集要項 -----------------------------------------------------------------------*/
table.table.th_bg th {
	background: #efefef;
}
.icon_check {
	display: inline-block;
	margin-right: 20px;
	padding-left: 25px;
	line-height: 1;
	position: relative;
}
.icon_check::before {
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	box-sizing: border-box;
	border: 1px #000 solid;
	position: absolute;
	top: -2px;
	left: 0;
}
.icon_check::after {
	content: "";
	display: block;
	width: 6px;
	height: 12px;
	border-right: 4px #FF0000 solid;
	border-bottom: 4px #FF0000 solid;
	position: absolute;
	top: -3px;
	left: 5px;
	transform: rotate(45deg);
}

/*==================================================================================
会社概要
==================================================================================*/
section#company_profile {
	padding-top: 0!important;
}
section#company_profile .img {
	height: 800px;
	overflow: hidden;
}
table.table {
	width: 100%;
}
table.table tr {
	border-bottom: 1px #000 solid;
}
table.table th {
	width: 200px;
	box-sizing: border-box;
	padding: 20px 30px;
	text-align: left;
	font-weight: 500;
	position: relative;
}
table.table th::after {
	content: "";
	display: block;
	height: calc(100% - 40px);
	border-right: 1px #000 solid;
	position: absolute;
	top: 20px;
	right: 0;
}
table.table td {
	padding: 20px 30px;
}
/* 会社沿革 -----------------------------------------------------------------------*/
.bg_gray {
	padding: 40px;
	background: #efefef;
}
section#company_history table {
	width: 100%;
}
section#company_history table tr {
	border-bottom: 1px #ccc solid;
}
section#company_history table tr:last-child {
	border-bottom: none;
}
section#company_history table th {
	width: 160px;
	box-sizing: border-box;
	padding: 15px 20px;
	text-align: left;
}
section#company_history table td {
	padding: 15px 20px;
}

/*==================================================================================
お問い合わせ
==================================================================================*/
/* 電話でお問い合わせ */
section#contact_info table.table th {
	vertical-align: middle;
}

/*==================================================================================
フッター
==================================================================================*/
footer {
	padding: 40px 0!important;
	background: #2F3739;
	color: #fff;
}
footer .logo {
	width: 200px;
}
footer ul.foot_nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-content: flex-start;
	width: calc(100% - 360px);
}
footer ul.foot_nav li {
	margin: 0 0 20px 30px;
}
footer ul.foot_nav li.dummy {
	width: 100%;
	margin: 0;
}
footer ul.foot_nav li:first-child {
	margin: 0 0 20px;
}
footer ul.foot_nav li a {
	color: #fff;
}


/* ページトップへ戻るボタン */
.btn_pagetop {
	display: block;
	width: calc(50px - 2px);
	height: calc(50px - 2px);
	border: 1px #000 solid;
	border-radius: 50%;
	position: fixed;
	right: 40px;
	bottom: 40px;
	z-index: 100;
}
.btn_pagetop span {
	display: block;
	width: 8px;
	height: 8px;
	border-top: 1px #000 solid;
	border-right: 1px #000 solid;
	transform: translateX(-50%) rotate(-45deg);
	position: absolute;
	top: 45%;
	left: 50%;
}



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


@media screen and (max-width : 1280px) {
	/*==================================================================================
	共通
	==================================================================================*/
	/* フォント */
	h3 span {
		font-size: 50px;
	}
	/*==================================================================================
	社員インタビュー
	==================================================================================*/
	section#interview_index .row a {
		padding: 30px;
	}
	section#interview_index .row a::after {
		width: 50px;
		height: 50px;
		right: 50px;
		bottom: 50px;
	}
	section#interview_index .row a .inner {
		padding: 0 30px 30px;
	}
	section#interview_index .row a p.ttl {
		font-size: 30px;
	}
	/*==================================================================================
	製品情報
	==================================================================================*/
	section#products_main ul.row li {
		padding: 20px;
	}
	/*==================================================================================
	フッター
	==================================================================================*/
	footer ul.foot_nav li {
		margin-left: 20px;
	}
}


@media screen and (max-width : 960px) {
	.pc {display: none;}
	.tb {display: inline;}
	
	p { font-size: 14px; }
	
	/*==================================================================================
	ヘッダー
	==================================================================================*/
	header {
		padding: 10px 0 0!important;
	}
	header .logo {
		width: 200px;
	}
	nav.gnav .boad {
	    width: calc(100% - 120px);
		align-items: flex-start;
		padding: 60px 20px 20px;
	}
	nav.gnav ul {
		display: block;
		max-width: 500px;
		height: auto;
		margin: 0 auto;
		position: relative;
	}
	nav.gnav ul li.parent {
		width: calc(50% - 10px);
		box-sizing: border-box;
		padding: 20px 0;
	}
	nav.gnav ul li.parent:nth-child(n+1):nth-child(-n+5) {
		width: calc(50% - 10px);
	    margin-right: 0;
	}
	nav.gnav ul li.parent:first-child {
		margin-bottom: 20px;
		padding: 0;
	}
	nav.gnav ul li.parent:nth-child(6) {
		margin-top: 0;
		border-top: none;
	}
	nav.gnav ul li.parent a {
		display: inline-block;
		padding: 0;
		font-weight: 700;
	}
	nav.gnav ul li.parent:first-child a {
		padding: 15px 30px;
	}
	nav.gnav ul li.parent:last-child {
		padding: 20px 0 20px 20px;
		position: absolute;
		top: 180px;
		right: 0;
	}
	nav.gnav ul li.parent:last-child a {
		padding: 0;
		font-size: 12px;
	}
	/* お問い合わせ */
	nav.gnav ul li.parent:nth-child(7) {
		margin-bottom: 0;
		padding: 0;
		position: absolute;
		top: 72px;
		right: 0;
	}
	nav.gnav ul li.parent:nth-child(7) a.btn {
		height: 50px;
		padding: 0 40px 0 20px;
		background-size: 20px;
		background-position: right 15px center;
	}
	/* エントリー */
	nav.gnav ul li.parent:nth-child(8) {
		padding: 0;
		position: absolute;
		top: 130px;
		right: 0;
	}
	nav.gnav ul li.parent:nth-child(8) a.btn.red {
		height: 50px;
		padding: 0 40px 0 20px;
		background-size: 20px;
		background-position: right 15px center;
	}
	/* 下層メニュー */
	nav.gnav ul li.parent ul {
		display: none;
		padding: 25px 0 0;
		transition: none;
	}
	nav.gnav ul li.parent ul li {
		margin-bottom: 15px;
	}
	nav.gnav ul li.parent ul li a {
		padding-left: 10px;
	}
	nav.gnav ul li.parent ul li:first-child a {
		padding-left: 10px;
	}
	nav.gnav ul li.parent ul li a::before {
		width: 6px;
	}
	nav.gnav ul li.parent ul li ul {
		display: block;
		padding: 0 0 0 10px;
	}
	nav.gnav ul li.parent ul li ul li {
		margin-right: 0;
		margin-bottom: 12px;
		padding-right: 0;
		border-right: none;
	}
	nav.gnav ul li.parent ul li ul li a,
	nav.gnav ul li.parent ul li ul li a:first-child {
		padding-left: 1em;
		line-height: 1.3;
		position: relative;
	}
	nav.gnav ul li.parent ul li ul li a::before {
		content: "\030fb";
		display: inline-block;
		width: auto;
		border-bottom: none;
		position: absolute;
		top: 0;
		left: 0;
	}
	/* アコーディオン */
	nav.gnav ul li.parent.sp_accordion {
		cursor: pointer;
		position: relative;
	}
	nav.gnav ul li.parent.sp_accordion::before {
		content: "";
		display: block;
		width: 4px;
		height: 4px;
		border-right: 2px #000 solid;
		border-bottom: 2px #000 solid;
		position: absolute;
		top: 27px;
		right: 15px;
		transform: rotate(45deg);
		transition: all .3s;
	}
	nav.gnav ul li.parent.sp_accordion.open::before {
		transform: rotate(225deg);
	}
	nav.gnav ul li.parent:nth-child(5).open {
		margin-bottom: 0;
	}
	.gnavToggle {
	    width: 80px;
	    height: 80px;
		right: 20px;
	    top: 15px;
	}
	.gnavToggle span:last-child {
		font-size: 10px;
		letter-spacing: 0.1em;
	}
	/*==================================================================================
	共通
	==================================================================================*/
	/* レイアウト */
	main {
		overflow: hidden;
	}
	section {
		padding: 40px 0!important;
	}
	.container {
		width: calc(100% - 40px);
		padding: 0 20px;
	}
	.max680 {
		max-width: 460px;
	}
	.max1200 {
		max-width: 960px;
	}
	.col2 {
		width: calc(50% - 10px);
	}
	.mb_10 {
		margin-bottom: 5px;
	}
	.mb_20 {
		margin-bottom: 15px;
	}
	.mb_30 {
		margin-bottom: 20px;
	}
	.mb_40 {
		margin-bottom: 30px;
	}
	.mb_60 {
		margin-bottom: 40px;
	}
	.mb_80 {
		margin-bottom: 40px;
	}
	.mb_120 {
		margin-bottom: 80px;
	}
	/* フォント */
	h1 {
		letter-spacing: 0;
	}
	h1 div {
		padding: 10px 15px;
		font-size: 56px;
	}
	h1 div::before {
		top: 8px;
		left: 8px;
	}
	h2 {
		font-size: 30px;
	}
	h2 span.eng {
		padding-left: 20px;
		font-size: 20px;
	}
	h2 span.eng::before {
		width: 15px;
		height: 15px;
	}
	h2.another {
		font-size: 16px;
	}
	h2.another span.eng {
		font-size: 80px;
	}
	h2 div {
		padding: 10px 15px;
	}
	h2 div::before {
		top: 8px;
		left: 8px;
	}
	h2 div p {
		font-size: 28px;
	}
	h3 span {
		margin-bottom: 10px;
		padding-bottom: 10px;
		font-size: 36px;
	}
	h4 {
		font-size: 30px;
	}
	h4 span.eng {
		padding-left: 30px;
		font-size: 14px;
	}
	h4 span.eng::before {
		width: 20px;
	}
	h4 div {
		padding: 10px 15px;
	}
	h4 p::before {
		top: 8px;
		left: 8px;
	}
	h4 div p {
		font-size: 28px;
	}
	h5 {
		font-size: 20px;
	}
	h5 span {
		padding-left: 15px;
	}
	h5 span::before {
		height: 20px;
		border-left: 4px #000 solid;
	}
	.font_12 {
		font-size: 10px;
	}
	.font_14 {
		font-size: 12px;
	}
	.font_20 {
		font-size: 16px;
	}
	.font_24 {
		font-size: 20px;
	}
	.font_30 {
		font-size: 20px;
	}
	.font_46 {
		font-size: 30px;
	}
	.font_50 {
		font-size: 36px;
	}
	/* ボタン */
	.btn {
		width: calc(100% - 60px);
		max-width: 360px;
		height: 75px;
		padding: 0 60px 0 30px;
		background-size: 25px;
		font-size: 18px;
	}
	section.fix_bg {
		height: 160px;
	}
	section.fix_bg .btn {
		width: 100%;
		max-width: 400px;
	}
	.link {
		padding-bottom: 4px;
	}
	.btn_anker {
		padding: 6px 25px 6px 15px;
		line-height: 1.3;
	}
	.btn_anker::after {
		right: 15px;
	}
	/*==================================================================================
	INDEX
	==================================================================================*/
	section#main {
		padding: 60px 0 0!important;
	}
	section#main ul {
		display: none;
	}
	section#main .movie {
		width: 100%;
		height: 40vh;
		min-height: 0;
	}
	/* NEWS */
	section#main .news {
		padding: 10px 0;
	}
	section#main .news .ttl {
		width: 90px;
	}
	section#main .news .txt {
		width: calc(100% - 90px);
	}
	/* WP-pagenavi */
	section#news .wp-pagenavi a,
	section#news .wp-pagenavi span {
		width: 30px;
		height: 30px;
		margin: 0 2px;
		font-size: 12px;
	}
	/* OUR MESSAGE -------------------------------------------------------------------*/
	section#top_message .row {
		display: block;
	}
	section#top_message .btn {
		margin: auto;
	}
	section#top_message .btn:nth-child(1) {
		margin: 0 auto 10px;
	}
	/* OUR PRODUCTS ------------------------------------------------------------------*/
	section#top_products h2 {
		width: 100%;
	}
	section#top_products .txt {
		width: 100%;
		max-width: 100%;
	}
	section#top_products .max1400 {
		max-width: 680px;
	}
	section#top_products .btn {
		width: calc(100% / 2 - 5px);
		margin-bottom: 10px;
	}
	/* OUR COMPANY -------------------------------------------------------------------*/
	section#top_company .btn {
		margin-bottom: 10px;
	}
	section#top_company .map {
		width: calc(100% + 40px);
		margin-top: -20%;
		position: relative;
		left: -20px;
	}
	/* 住所 */
	section#top_company ul li {
		width: calc(100% / 3 - 2px);
		margin-bottom: 4px;
	}
	section#top_company ul li .inner {
		height: calc(100% - 20px);
		padding: 10px;
	}
	section#top_company ul li:nth-child(3)::after,
	section#top_company ul li:last-child::after {
		display: none;
	}
	/* OUR MEMBER --------------------------------------------------------------------*/
	section#top_member .bg_img {
		height: 460px;
		min-height: 0;
		padding-bottom: 20px;
	}
	section#top_member .bg_img h2 div p {
		font-size: 40px;
	}
	/* 求める人物像 */
	section#top_member .bg_black {
		padding: 40px 0;
	}
	section#top_member .bg_black .container{
		max-width: 680px;
	}
	section#top_member .bg_black .img {
		width: 100%;
		height: 400px;
		margin-bottom: 30px;
		position: relative;
		top: 0;
		left: 0;
	}
	section#top_member .bg_black .txt {
		display: block;
		width: 100%;
		min-height: 0;
	}
	/* INTERVIEW ---------------------------------------------------------------------*/
	section#top_interview .row a {
		width: calc(100% / 2);
		padding: 15px 15px 60px;
	}
	section#top_interview .row a:nth-child(1),
	section#top_interview .row a:nth-child(2) {
		border-bottom: 1px #000 solid;
	}
	section#top_interview .row a::after {
		width: 40px;
		height: 40px;
		right: 15px;
		bottom: 15px;
	}
	section#top_interview .row a:nth-child(2),
	section#top_interview .row a:last-child {
		border-right: none;
	}
	section#top_interview .row a .img {
		height: 260px;
	}
	/* 募集要項はこちら -----------------------------------------------------------------*/
	section#top_recruit .container {
		max-width: 680px;
	}
	section#top_recruit a {
		height: 160px;
		padding-left: 5%;
	}
	/*==================================================================================
	下層ページ共通
	==================================================================================*/
	section#main_2nd {
		padding: 60px 0 40px!important;
		border-bottom: 4px #000 solid;
	}
	section#main_2nd ul.pannav {
		right: 20px;
		bottom: -25px;
	}
	section#main_2nd ul.pannav li {
		padding-left: 30px;
	}
	section#main_2nd ul.pannav li::before {
		width: 20px;
	}
	section#main_2nd ul.pannav li a {
		font-size: 12px;
	}
	/*==================================================================================
	社員インタビューINDEX
	==================================================================================*/
	section#interview_index .row a {
		height: 400px;
		padding: 20px;
	}
	section#interview_index .row a::after {
		width: 50px;
		height: 50px;
		right: 40px;
		bottom: 40px;
	}
	section#interview_index .row a .inner {
		padding: 0 20px 20px;
	}
	section#interview_index .row a p.ttl {
		margin-bottom: 15px;
		font-size: 20px;
	}
	.int_name {
		padding: 0 0 10px 10px;
	}
	.int_name p {
		line-height: 1.6;
	}
	/* 共通 ---------------------------------------------------------------------------*/
	section#interview_main {
		height: 460px;
	}
	section#interview_main .ttl {
		font-size: 40px;
	}
	section#interview_main .int_name {
		padding: 0 0 15px 15px;
	}
	/* Give a yell! */
	section#yell .container::before {
		width: 100px;
		border-bottom: 4px #000 solid;
		left: 40px;
	}
	section#yell .frame {
		padding: 15px 20px;
	}
	section#yell .frame::before {
		height: 40px;
		top: -41px;
	}
	section#yell .frame::after {
		height: 40px;
		bottom: -41px;
	}
	section#yell .frame .txt {
		width: calc(100% - 200px - 20px);
	}
	section#yell .frame .txt p {
		line-height: 1.8;
	}
	section#yell .frame .ttl span {
		margin-bottom: 6px;
		padding-bottom: 6px;
		font-size: 50px;
	}
	section#yell .frame .img {
		width: 200px;
		height: calc(100% + 20px);
		right: 15px;
		bottom: 15px;
	}
	/* その他のインタビュー */
	section#interview_other h2.another span.eng {
		font-size: 50px;
	}
	section#interview_other .row {
		max-width: 460px;
		margin: auto;
	}
	section#interview_other .row a {
		width: 100%;
		padding: 10px;
		border-right: none;
		border-bottom: 1px #000 solid;
	}
	section#interview_other .row a:last-child {
		border-bottom: none;
	}
	section#interview_other .row a .img {
		width: calc(45% - 20px);
	}
	section#interview_other .row a .txt {
		width: 55%;
		height: 150px;
	}
	section#interview_other .row a .txt::after {
		width: 40px;
		height: 40px;
	}
	/* エントリーバナー */
	section#entry_bana.fix_bg {
		height: 260px;
	}
	/* Interview01 -------------------------------------------------------------------*/
	section[id^="interview0"] .container {
		max-width: 680px;
	}
	section#interview01_01 {
		margin-bottom: 0;
	}
	section#interview01_01 .txt {
		width: 100%;
	}
	section#interview01_01 .img01 {
		width: calc(55% - (50% - 50vw));
		height: auto;
		margin: 0 0 0 auto;
		position: relative;
		top: 0;
	}
	section#interview01_01 .img02 {
		width: 40%;
		top: auto;
		bottom: 0;
		right: auto;
		left: 20px;
	}
	section[id^="interview0"] .border {
		display: none;
	}
	section#interview01_02 {
		padding-bottom: 40px!important;
	}
	section#interview01_02 .img01 {
		width: calc(100% - (50% - 50vw));
		height: 460px;
		position: relative;
		top: 0;
		left: calc(50% - 50vw);
	}
	section#interview01_02 .txt {
		width: 100%;
		margin: 0 auto 40px;
	}
	section#interview01_03 .img01 {
		width: 60%;
		height: 240px;
	}
	section#interview01_03 .img02 {
		width: calc(40% - 10px);
		height: 240px;
	}
	/* Interview02 -------------------------------------------------------------------*/
	section#interview02_01 .txt {
		width: 100%;
		min-height: 0;
	}
	section#interview02_01 .img {
		width: calc(100% - (50% - 50vw));
		margin: 0 0 0 auto;
		position: relative;
		top: 0;
		right: 0;
	}
	section#interview02_02 .container {
		display: flex;
		flex-wrap: wrap;
	}
	section#interview02_02 .img {
		width: calc(100% - (50% - 50vw));
		margin-bottom: 0;
		position: relative;
		left: calc(50% - 50vw);
		order: 2;
	}
	section#interview02_03 .img {
		width: 100%;
		height: 360px;
		position: relative;
		top: 0;
		left: auto;
	}
	section#interview02_03 .txt {
		width: 100%;
		margin: 0 auto 40px;
	}
	/* Interview03 -------------------------------------------------------------------*/
	section#interview03_01 .txt {
		width: 100%;
	}
	section#interview03_01 .img01 {
		width: calc(55% - (50% - 50vw));
		height: auto;
		margin: 0 0 0 auto;
		position: relative;
		top: 0;
	}
	section#interview03_01 .img02 {
		width: 40%;
		top: auto;
		bottom: 0;
		right: auto;
		left: 20px;
	}
	section#interview03_02 .img {
		width: calc(100% - (50% - 50vw));
		height: 460px;
		position: relative;
		top: 0;
		left: calc(50% - 50vw);
	}
	section#interview03_02 .txt {
		width: 100%;
		margin: 0 auto 40px;
	}
	/* Interview04 -------------------------------------------------------------------*/
	section#interview04_01 .txt {
		width: 100%;
	}
	section#interview04_01 .img {
		width: calc(100% - (50% - 50vw));
		margin: 0 0 0 auto;
		position: relative;
		top: 0;
		right: 0;
	}
	section#interview04_02 .txt {
		width: 100%;
		min-height: 0;
		margin: 0 auto 40px;
	}
	section#interview04_02 .img01 {
		width: calc(55% - (50% - 50vw));
		height: 360px;
		position: relative;
		top: 0;
	}
	section#interview04_02 .img02 {
		width: 40%;
		height: 360px;
		top: auto;
		bottom: 0;
		left: auto;
		right: 20px;
	}
	section#interview04_03 {
		padding-top: 0!important;
	}
	/*==================================================================================
	企業理念と強み
	==================================================================================*/
	section#mission_main .container {
		max-width: 680px;
	}
	section#mission_main .img {
		height: 460px;
	}
	section#mission .container {
		max-width: 680px;
	}
	section#mission h2 span.eng span,
	section#strength h2 span.eng span {
		font-size: 12px;
	}
	section#mission .name {
		width: 100%;
		max-width: 100%;
		padding-bottom: 6px;
	}
	section#mission .name span:nth-child(1) {
		margin-right: 10px;
		padding: 6px 8px;
	}
	section#mission .name span:nth-child(2) {
		margin-right: 6px;
	}
	section#mission .img {
		width: 100%;
		max-width: 100%;
		height: 500px;
		margin: 0 0 30px auto;
		position: relative;
		right: 0;
	}
	/* 強み */
	section#strength .container {
		max-width: 680px;
	}
	section#strength .img {
		width: 100%;
		height: 360px;
		margin-bottom: 30px;
		order: 2;
	}
	section#strength .txt {
		width: 100%;
		margin-bottom: 30px;
	}
	/* インタビューバナー */
	section#bana_recruit .max1000 {
		max-width: 680px;
	}
	section#bana_recruit a {
		height: 400px;
	}
	section#bana_recruit a::after {
		width: 40px;
		height: 40px;
		right: 40px;
		bottom: 40px;
	}
	section#bana_recruit a .img::after {
		width: calc(100% - 40px);
		height: calc(100% - 40px);
		top: 20px;
		left: 20px;
	}
	section#bana_recruit a h2.another {
		width: 100%;
		font-size: 16px;
	}
	section#bana_recruit a h2.another span.eng {
		font-size: 12vw;
	}
	section#bana_recruit a h3 span {
		font-size: 24px;
	}
	/*==================================================================================
	製品情報
	==================================================================================*/
	section#products_main .img {
		height: 460px;
	}
	section#products_main ul.row {
		max-width: 460px;
		margin: auto;
	}
	section#products_main ul.row li {
		width: 100%;
		border-right: none;
		border-bottom: 1px #000 solid;
	}
	section#products_main ul.row li:last-child {
		border-bottom: none;
	}
	section#products_main ul.row li .btn {
		width: 100%;
	}
	/* ISO9001認証取得 */
	section#iso9001 .frame {
		padding: 20px;
	}
	section#iso9001 .frame::before {
		height: 40px;
		top: -41px;
	}
	section#iso9001 .frame::after {
		height: 40px;
		bottom: -41px;
	}
	section#iso9001 .frame p {
		font-size: 34px;
	}
	section#iso9001 .frame p::before {
		width: 100px;
		border-bottom: 4px #000 solid;
		left: 20px;
	}
	section#iso9001 table tr::after {
		width: calc(100% - 20px);
		left: 10px;
	}
	section#iso9001 table th {
		width: 100px;
		padding: 10px 0 10px 10px;
	}
	section#iso9001 table td {
		padding: 10px 20px;
	}
	/* Contact Us --------------------------------------------------------------------*/
	section#contact_us h2.another span.eng {
		font-size: 70px;
	}
	section#contact_us h3 span {
		font-size: 30px;
	}
	.icon_tel {
		padding-left: 40px;
		font-size: 46px;
	}
	.icon_tel::before {
		width: 30px;
		height: 30px;
	}
	/*==================================================================================
	採用情報
	==================================================================================*/
	section#recruit_message .name {
		padding-bottom: 6px;
	}
	section#recruit_message .txt {
		width: 50%;
	}
	section#recruit_message .img {
		width: calc(50% - 20px);
	}
	/* 募集要項 -----------------------------------------------------------------------*/
	section#recruit_info table.table th,
	section[id^="job0"] table.table th {
		display: block;
		width: 100%;
		box-sizing: border-box;
		background: #efefef;
	}
	section[id^="job0"] table.table th {
		padding: 5px 10px;
	}
	section#recruit_info table.table th::after,
	section[id^="job0"] table.table th::after {
		display: none;
	}
	section#recruit_info table.table th p.font_20 {
		line-height: 1;
	}
	section#recruit_info table.table td,
	section[id^="job0"] table.table td {
		display: block;
		width: 100%;
		box-sizing: border-box;
		padding: 15px 0;
	}
	section#recruit_info table.table td span {
		
		display: inline;
	}
	section#recruit_info table.table td span.sp {
		display: none;
	}
	.icon_check {
		margin-bottom: 10px;
		padding-left: 20px;
	}
	.icon_check::before {
		width: 16px;
		height: 16px;
		top: 0;
	}
	.icon_check::after {
		width: 4px;
		height: 10px;
		border-right: 3px #FF0000 solid;
		border-bottom: 3px #FF0000 solid;
		top: -1px;
	}
	section#recruit_message .btn,
	section[id^="job0"] .btn {
		width: calc(100% - 40px);
	}
	/*==================================================================================
	会社概要
	==================================================================================*/
	section#company_profile .container {
		max-width: 680px;
	}
	section#company_profile .img {
		height: 460px;
	}
	table.table th {
		width: 120px;
		padding: 10px;
	}
	table.table th::after {
		height: calc(100% - 20px);
		top: 10px;
	}
	table.table td {
		padding: 10px 20px;
	}
	table.table td span {
		display: inline-block;
	}
	/* 会社沿革 -----------------------------------------------------------------------*/
	section#company_history .container {
		max-width: 680px;
	}
	.bg_gray {
		padding: 20px;
	}
	section#company_history table th {
		width: auto;
		white-space: nowrap;
		padding: 10px;
	}
	section#company_history table td {
		padding: 10px 20px;
	}
	/*==================================================================================
	フッター
	==================================================================================*/
	footer {
		padding: 40px 0 20px!important;
	}
	footer .logo {
		width: 200px;
	}
	footer .info a {
		color: #fff;
	}
	footer ul.foot_nav {
		width: 100%;
		justify-content: flex-start;
		margin-bottom: 20px;
	}
	footer ul.foot_nav li {
		margin: 0 15px 10px 0;
	}
	footer ul.foot_nav li:first-child {
		margin: 0 15px 10px 0;
	}
	footer ul.foot_nav li a {
		color: #999;
	}
	footer .info {
		order: 2;
	}
	/* ページトップへ戻るボタン */
	.btn_pagetop {
		width: calc(30px - 2px);
		height: calc(30px - 2px);
		right: 20px;
		bottom: 20px;
	}
	.btn_pagetop span {
		width: 4px;
		height: 4px;
	}
}


@media screen and (max-width : 680px) {
	/*==================================================================================
	ヘッダー
	==================================================================================*/
	nav.gnav .boad {
		width: 100%;
		padding: 30px 20px 20px;
	}
	nav.gnav ul {
		max-width: 540px;
	}
	nav.gnav ul li.parent {
		padding: 15px 0;
	}
	nav.gnav ul li.parent:last-child {
		padding: 15px 0 15px 15px;
		top: 170px;
	}
	nav.gnav ul li.parent a.font_24 {
		font-size: 16px;
	}
	/* お問い合わせ */
	/* エントリー */
	nav.gnav ul li.parent:nth-child(7) {
		top: 68px;
	}
	nav.gnav ul li.parent:nth-child(8) {
		top: 120px;
	}
	nav.gnav ul li.parent:nth-child(7) a.btn,
	nav.gnav ul li.parent:nth-child(8) a.btn.red {
		height: 46px;
		padding: 0 35px 0 15px;
		background-size: 15px;
		font-size: 14px;
	}
	/* 下層メニュー */
	nav.gnav ul li.parent ul {
		display: none;
		padding: 20px 0 0;
	}
	nav.gnav ul li.parent ul li {
		margin-bottom: 10px;
	}
	/* アコーディオン */
	nav.gnav ul li.parent.sp_accordion::before {
		width: 3px;
		height: 3px;
		top: 20px;
		right: 0;
	}
	.gnavToggle span {
		border-color: #000;
	}
	/*==================================================================================
	共通
	==================================================================================*/
	/* フォント */
	h3 span {
		margin-bottom: 6px;
		padding-bottom: 6px;
		font-size: 30px;
	}
	/*==================================================================================
	INDEX
	==================================================================================*/
	/* OUR COMPANY -------------------------------------------------------------------*/
	section#top_company .map {
		margin-top: 20px;
	}
	/*==================================================================================
	社員インタビューINDEX
	==================================================================================*/
	section#interview_index .row a {
		width: 100%;
		height: 360px;
		padding: 10px;
	}
	section#interview_index .row a:nth-child(odd) {
		border-right: none;
	}
	section#interview_index .row a::after {
		width: 40px;
		height: 40px;
		right: 30px;
		bottom: 30px;
	}
	.int_name {
		padding: 0 0 8px 8px;
	}
	/* 共通 ---------------------------------------------------------------------------*/
	/* Give a yell! */
	section#yell .frame .txt {
		width: 100%;
		margin-bottom: 20px;
	}
	section#yell .frame .ttl span {
		font-size: 46px;
	}
	section#yell .frame .img {
		width: 100%;
		height: 360px;
		position: relative;
		top: 0;
		left: 0;
	}
	/*==================================================================================
	企業理念と強み
	==================================================================================*/
	/* インタビューバナー */
	section#bana_recruit a::after {
		right: 20px;
		bottom: 20px;
	}
	section#bana_recruit a .img::after {
		width: calc(100% - 20px);
		height: calc(100% - 20px);
		top: 10px;
		left: 10px;
	}
	section#bana_recruit a h2.another {
		font-size: 14px;
	}
	section#bana_recruit a h2.another span.eng {
		font-size: 16vw;
	}
	/*==================================================================================
	採用情報
	==================================================================================*/
	section#recruit_message .txt {
		width: 100%;
	}
	section#recruit_message .img {
		width: 100%;
		order: 2;
	}
}


@media screen and (max-width : 460px) {
	.tb {display: none;}
	.sp {display: inline;}
	p {font-size: 12px;}
	/*==================================================================================
	ヘッダー
	==================================================================================*/
	header .logo {
		width: 160px;
	}
	nav.gnav ul li.parent {
		width: calc(100% - 150px - 20px);
	}
	nav.gnav ul li.parent:nth-child(n+1):nth-child(-n+5) {
		width: calc(100% - 150px - 20px);
	}
	nav.gnav ul li.parent a.font_24 {
		font-size: 14px;
	}
	/* お問い合わせ */
	/* エントリー */
	nav.gnav ul li.parent:nth-child(n+7) {
	    width: 150px;
	}
	nav.gnav ul li.parent:nth-child(7) {
		top: 66px;
	}
	/* 下層メニュー */
	nav.gnav ul li.parent ul li a,
	nav.gnav ul li.parent ul li:first-child a {
		padding-left: 0;
	}
	nav.gnav ul li.parent ul li a::before {
		display: none;
	}
	nav.gnav ul li.parent ul li ul {
		padding: 0;
	}
	nav.gnav ul li.parent ul li ul li {
		margin-bottom: 6px;
	}
	.gnavToggle {
	    width: 60px;
	    height: 60px;
	}
	/*==================================================================================
	共通
	==================================================================================*/
	.col2 {
		width: 100%;
	}
	/* フォント */
	h1 div {
		padding: 10px;
		font-size: 46px;
	}
	h1 .font_30 {
		font-size: 16px;
	}
	h2 {
		font-size: 24px;
		line-height: 1.6;
	}
	h2.another {
		font-size: 14px;
	}
	h2.another span.eng {
		font-size: 70px;
	}
	h2 div {
		display: block;
		padding: 10px;
	}
	h2 div p {
		font-size: 22px;
	}
	h4 {
		font-size: 22px;
	}
	h4 div {
		display: block;
		padding: 10px;
	}
	h4 div p {
		font-size: 24px;
	}
	h5 {
		padding: 10px 15px!important;
		font-size: 16px;
		line-height: 1.4;
	}
	h5 span::before {
		height: 18px;
	}
	.font_46 {
		font-size: 24px;
	}
	/* ボタン */
	.btn {
		margin: auto;
		font-size: 16px;
	}
	section.fix_bg .btn {
		font-size: 14px;
	}
	.btn_anker {
		display: block;
	}
	/*==================================================================================
	INDEX
	==================================================================================*/
	section#main .movie {
		height: 240px;
	}
	/* NEWS */
	section#main .news .ttl {
		width: 100%;
	}
	section#main .news .txt {
		width: 100%;
	}
	/* OUR PRODUCTS ------------------------------------------------------------------*/
	section#top_products .img {
		width: 100%;
	}
	section#top_products .btn {
		width: calc(100% - 60px);
		margin-bottom: 10px;
	}
	/* OUR COMPANY -------------------------------------------------------------------*/
	/* 住所 */
	section#top_company ul li {
		width: calc(100% / 2 - 2px);
	}
	section#top_company ul li:nth-child(3)::after {
		display: block;
	}
	section#top_company ul li:nth-child(2)::after,
	section#top_company ul li:nth-child(4)::after {
		display: none;
	}
	/* OUR MEMBER --------------------------------------------------------------------*/
	section#top_member .bg_img h2 div p {
		font-size: 24px;
	}
	/* 求める人物像 */
	section#top_member .bg_black .img {
		height: 240px;
	}
	/* INTERVIEW ---------------------------------------------------------------------*/
	section#top_interview .row a {
		width: 100%;
		padding: 10px 10px 60px;
		border-right: none;
		border-bottom: 1px #000 solid;
	}
	section#top_interview .row a:last-child {
		border-bottom: none;
	}
	section#top_interview .row a::after {
		right: 10px;
		bottom: 10px;
	}
	/* 募集要項はこちら -----------------------------------------------------------------*/
	section#top_recruit a {
		height: 160px;
		padding-left: 0;
	}
	/*==================================================================================
	下層ページ共通
	==================================================================================*/
	section#main_2nd h2.another span.eng {
		font-size: 10vw;
	}
	section#main_2nd ul.pannav li a {
		font-size: 10px;
	}
	/*==================================================================================
	社員インタビューINDEX
	==================================================================================*/
	section#interview_index .row a {
		height: 400px;
		padding: 10px;
	}
	.int_name p {
		font-size: 12px;
	}
	section#interview_index .int_name .font_24 {
		font-size: 16px;
	}
	/* 共通 ---------------------------------------------------------------------------*/
	section#interview_main {
		height: 360px;
	}
	section#interview_main .ttl {
		font-size: 26px;
	}
	section#interview_main .int_name p {
		font-size: 14px;
	}
	/* Give a yell! */
	section#yell .frame .img {
		height: 240px;
	}
	/* その他のインタビュー */
	section#interview_other h2.another {
		font-size: 14px;
	}
	section#interview_other h2.another span.eng {
		font-size: 40px;
	}
	/* Interview01 -------------------------------------------------------------------*/
	section#interview01_01 .img01 {
		width: calc(53% - (50% - 50vw));
	}
	section#interview01_02 .img01 {
		height: 300px;
	}
	section#interview01_03 .img01 {
		width: 55%;
		height: 140px;
	}
	section#interview01_03 .img02 {
		width: calc(45% - 5px);
		height: 140px;
	}
	/* Interview02 -------------------------------------------------------------------*/
	section#interview02_02 .img {
		width: calc(100% + 20px);
		left: -20px;
	}
	section#interview02_03 .img {
		height: 240px;
	}
	/* Interview03 -------------------------------------------------------------------*/
	section#interview03_01 .img01 {
		width: calc(53% - (50% - 50vw));
	}
	section#interview03_02 .img {
		height: 240px;
	}
	/* Interview04 -------------------------------------------------------------------*/
	section#interview04_02 .img01 {
		width: calc(53% - (50% - 50vw));
		height: 180px;
	}
	section#interview04_02 .img02 {
		height: 180px;
	}
	/*==================================================================================
	企業理念と強み
	==================================================================================*/
	section#mission_main .img {
		height: 240px;
	}
	section#mission .img {
		height: 360px;
	}
	/* 強み */
	section#strength .img {
		height: 240px;
	}
	/* インタビューバナー */
	section#bana_recruit a {
		height: 360px;
	}
	section#bana_recruit a h3 span {
		font-size: 20px;
	}
	/*==================================================================================
	採用情報
	==================================================================================*/
	/* 募集要項 -----------------------------------------------------------------------*/
	section#recruit_info table.table th {
		padding: 10px;
	}
	section#recruit_info table.table td span.sp {
		display: inline;
	}
	/*==================================================================================
	製品情報
	==================================================================================*/
	section#products_main .img{
		height: 240px;
	}
	section#products_main h3 span {
		font-size: 24px;
	}
	/* ISO9001認証取得 */
	section#iso9001 .frame p {
		font-size: 30px;
	}
	/* Contact Us --------------------------------------------------------------------*/
	section#contact_us h2.another span.eng {
		font-size: 60px;
	}
	section#contact_us h3 span {
		font-size: 24px;
	}
	.icon_tel {
		font-size: 40px;
	}
	/*==================================================================================
	会社概要
	==================================================================================*/
	section#company_profile .img {
		height: 240px;
	}
	table.table th {
		width: 80px;
		padding: 10px 0;
	}
	table.table td {
		padding: 10px;
	}
	/* 会社沿革 -----------------------------------------------------------------------*/
	section#company_history table th {
		padding: 10px 0;
	}
	section#company_history table td {
		padding: 10px;
	}
	/*==================================================================================
	フッター
	==================================================================================*/
	footer ul.foot_nav li.dummy {
		display: none;
	}
	/* ページトップへ戻るボタン */
	.btn_pagetop {
		display: none!important;
	}
}

