@charset "UTF-8";
/* reset */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
html {
  height: 100%;
  min-height: 100%;
  font-size: 10px;
  scroll-behavior: smooth;
}
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
figure,
figcaption,
input,
p,
blockquote,
hr,
header,
footer,
nav,
aside,
section {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  font-size: 100%;
}
address,
caption,
cite,
code,
dfn,
h1,
h2,
h3,
h4,
th,
var {
  font-style: normal;
  font-weight: normal;
}
fieldset,
img,
abbr {
  border: 0;
}
img {
  width: 100%;
  vertical-align: top;
}
ol,
ul {
  list-style: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
  margin: 0 auto;
}
th,
td {
  margin: 0;
  padding: 0;
}
th,
td {
  text-align: left;
  vertical-align: top;
}
caption,
th {
  text-align: left;
  margin: auto;
}
object,
embed {
  vertical-align: top;
}
legend {
  display: none;
}
a {
  text-decoration: none;
  color: #333;
}
a:hover img {
  text-decoration: none;
  border: none;
  outline: none;
}
a:hover {
  text-decoration: none;
}

/* ======================================

	COMMON

====================================== */
body {
  position: relative;
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 300;
  font-style: normal;
  color: #000;
  font-size: 2rem;
  line-height: 1.4;
}
a {
  -webkit-tap-highlight-color: transparent;
}
main {
  display: block;
  width: 100%;
}
	@media screen and (max-width: 1024px) {
		.open main {
		  margin-right: 300px;
		}
	}
h2 {
	width: 100%;
	height: 210px;
	padding: 30px 0;
	overflow-x: hidden;
}
	@media screen and (max-width: 750px) {
		h2 {
			height: auto;
		}
	}
h2 ul {
	display: flex;
	align-items: center;	
	color: transparent;
	width: 100%;
	animation: loop-slide 20s infinite linear .1s both;
}
h2 ul li {
	font-family: "Archivo", sans-serif;
	font-optical-sizing: auto;
	font-size: 5.4vw;
	font-size: 90px;
	font-weight: bold;
	line-height: 1;	
	-webkit-text-stroke: 1px #fff;
	text-stroke: 1px #fff;
	padding: 20px 10px 0;
}
	@media screen and (max-width: 750px) {
		h2 ul li {
			font-size: 36px;
			padding: 10px 10px 0;
		}
	}
h2 ul li:nth-child(3n) {
	-webkit-text-stroke: 0;
	text-stroke: 0;
}
h2 span {
	display: inline-block;
	width: 100%;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
}
	@media screen and (max-width: 750px) {
		h2 span {
			font-size: 16px;
		}
	}
	@keyframes loop-slide {
		0% { transform: translateX(0); }
		50% { transform: translateX(-50%); }
		100% { transform: translateX(0); }
	}
.pc_view {
	display: block;
}
.sp_view {
	display: none;
}
	@media screen and (max-width: 1024px) {
		.pc_view {
		  display: none;
		}
		.sp_view {
		  display: block;
		}
	}
.mq750 {
	display: block;
}
	@media screen and (max-width: 750px) {
		.mq750 {
		  display: none;
		}
	}
.bound {	
	animation: bound 1.2s infinite;
}
	@keyframes bound {
		0% { transform:translateY(0) }
		50% { transform:translateY(-10px) }
		100% { transform:translateY(0) }
	}
.fadein {
	opacity: 0;
	transform: translate(0, 30px);
	transition: 1.5s all;
}
.fadein.scrollin {
	opacity: 1 !important;
	transform: translate(0, 0) !important;
}


/* ======================================

	HEADER

====================================== */
.header {	
	position: sticky;
	top: 0;
	width: 100%;
	height: 0;
	z-index: 1000;
}
	@media screen and (max-width: 1024px) {
		.header {
			height: auto;
		}
	}
.header_inner {	
	display: flex;
	justify-content: space-between;
	width: 100%;
	height: 120px;
	background-color: transparent;
	transition: background-color 0.3s ease;
	padding-left: 20px;
}
	@media screen and (max-width: 768px) {
		.header_inner {
			height: 100px;
		}
	}
	@media screen and (max-width: 750px) {
		.header_inner {
			height: 55px;
		}
	}
h1.logo a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 120px;
}
	@media screen and (max-width: 768px) {
		h1.logo a {
			height: 100px;
		}
	}
	@media screen and (max-width: 750px) {
		h1.logo a {
			height: 55px;
		}
	}
h1.logo a img {
	height: 58px;
	filter: invert(100%) sepia(93%) saturate(79%) hue-rotate(171deg) brightness(120%) contrast(101%);
}
	@media screen and (max-width: 1024px) {
		h1.logo a img {
			width: calc(200 / 1024 * 100vw);
			filter: invert(0%) sepia(99%) saturate(20%) hue-rotate(6deg) brightness(102%) contrast(100%);
		}
	}
h1.logo a:hover img {
	filter: invert(0%) sepia(99%) saturate(20%) hue-rotate(6deg) brightness(102%) contrast(100%);
	transition: 0.5s all;
}
	@media screen and (max-width: 1024px) {
		h1.logo a:hover img {
			filter: invert(100%) sepia(93%) saturate(79%) hue-rotate(171deg) 
		}
	}
h1.logo a span {
	color: #fff;
	font-size: calc(28 / 1920 * 100vw);
	text-align: center;
	white-space: nowrap;
	padding-left: 8%;
}
	@media screen and (max-width: 1024px) {
		h1.logo a span {
			color: #000;
			font-size: calc(28 / 1024 * 100vw);
			padding-left: 10px;
		}
	}
h1.logo a:hover span {
	color: #000;
	transition: 0.5s all;
}
	@media screen and (max-width: 1024px) {
		h1.logo a:hover span {
			color: #fff;
		}
	}


/* -----------------------------
	Nav
----------------------------- */
#navArea {
	position: relative;
	display: flex;
	justify-content: flex-end;
}
nav {
	display: flex;
	justify-content: flex-end;
}
	@media screen and (max-width: 1024px) {
		nav {
			right: -220px;
			bottom: 0;	
			width: 220px;
			background: #fff;
			overflow-x: hidden;
			overflow-y: auto;
			-webkit-overflow-scrolling: touch;
			transition: .5s all;
			z-index: 3;
			opacity: 0;
		}	
		.open nav {
			position: relative;
			right: -240px;
			width: 300px;
			height: 460px;
			opacity: 1;
		}	
		nav .inner {
			position: relative;
			right: 120px;
			padding: 25px 0;
		}
	}
	@media screen and (max-width: 768px) {
		nav {
			width: 0;
		}	
		.open nav {
			position: relative;
			right: -100px;
			width: 300px;
			height: 460px;
			opacity: 1;
		}	
	}
	@media screen and (max-width: 750px) {
		.open nav {
			position: relative;
			right: 100px;
			width: 300px;
			height: 460px;
			opacity: 1;
		}	
	}
nav .inner ul {
	display: flex;
	justify-content: flex-end;
	/*padding: 12% 0; */
}
	@media screen and (max-width: 1024px) {		
		nav .inner ul {
			display: block;
			list-style: none;
			margin: 0;
		}
	}
nav .inner ul li {
	padding: 0 0 0 4%;
}
	@media screen and (max-width: 1024px) {		
		nav .inner ul li {
			position: relative;
			margin: 0;
		}
	}
nav .inner ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	width: auto;
	height: 120px;
	font-weight: bold;
}
	@media screen and (max-width: 1024px) {		
		nav .inner ul li a {
			display: block;
			color: #333;
			height: auto;
			font-size: 18px;
			padding: 1em;
			text-decoration: none;
			transition-duration: 0.2s;
		}
	}
nav .inner ul li a:hover {
	color: #000;
	transition: 0.5s all;
}
	@media screen and (max-width: 1024px) {
		nav .inner ul li a:hover {
			background: #e4e4e4;
		}
	}
nav .inner ul li a.pc_view {
	background: #000;
	color: #fff;
	font-weight: bold;
	width: 120px;
	height: 120px;
}
	@media screen and (max-width: 1024px) {		
		nav .inner ul li a.pc_view {
			height: auto;
			margin-top: 10px;
		}
	}
nav .inner ul li a.pc_view:hover {	
	background: #fff;
	color: #000;
	transition: 0.5s all;
}
	@media screen and (max-width: 1024px) {
		nav .inner ul li a.pc_view:hover {
		}
	}
.nav_btn a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #000;
	color: #fff;
	font-weight: bold;
	width: 120px;
	height: 120px;
}
	@media screen and (max-width: 768px) {
		.nav_btn a {
			width: 100px;
			height: 100px;
		}
	}
	@media screen and (max-width: 750px) {
		.nav_btn a {
			width: 55px;
			height: 55px;
			font-size: 13px;
		}
	}
.nav_btn a:hover {
	background: #fff;
	color: #000;
	transition: 0.5s all;
}


/* toggle
-------------------------- */
@media screen and (max-width: 1024px) {
	.toggle_wrap {
		width: 120px;
		min-height: 120px;
		background-color: #666;
	}
	.toggle_btn {
		display: block;
		position: fixed;
		top: 30px;
		right: 40px;
		width: 60px;
		height: 60px;
		transition: .5s all;
		cursor: pointer;
		z-index: 3;
	}
	.toggle_btn span {
		display: block;
		position: absolute;
		right: 0;
		width: 40px;
		height: 2px;
		background-color: #fff;
		transition: .5s all;
	}
	.toggle_btn span:nth-child(1) {
		top: 17px;
	}
	.toggle_btn span:nth-child(2) {
		top: 29px;
	}
	.toggle_btn span:nth-child(3) {
		bottom: 17px;
	}
}
@media screen and (max-width: 768px) {
	.toggle_wrap {
		width: 100px;
		height: 100px;
		min-height: auto;
	}
	.toggle_btn {
		top: 20px;
		right: 30px;
		width: 60px;
		height: 60px;
	}
}
@media screen and (max-width: 750px) {
	.toggle_wrap {
		width: 55px;
		height: 55px;
	}
	.toggle_btn {
		top: 18px;
		right: 16px;
		width: 20px;
		height: 20px;
	}
	.toggle_btn span {
		width: 20px;
	}
	.toggle_btn span:nth-child(1) {
		top: 16px;
	}
	.toggle_btn span:nth-child(2) {
		top: 9px;
	}
	.toggle_btn span:nth-child(3) {
		bottom: 16px;
	}
}
.open .toggle_btn span {
	background-color: #fff;
}
	@media screen and (max-width: 1024px) {
		.open .toggle_btn span {
			background-color: #fff;
		}
	}
	@media screen and (max-width: 750px) {
		.open .toggle_btn span {
			display: none;
		}
	}
.open .toggle_btn {
	-webkit-transform: rotate(360deg);
	transform: rotate(360deg);
}
	@media screen and (max-width: 1024px) {
		.open .toggle_btn {
			right: 330px;
			-webkit-transform: rotate(360deg);
			transform: rotate(360deg);
		}
	}
	@media screen and (max-width: 768px) {
		.open .toggle_btn {
			right: 420px;
		}
	}
.open .toggle_btn span:nth-child(1),
.open .toggle_btn span:nth-child(3) {
	width: 16px;
}
.open .toggle_btn span:nth-child(1) {
	-webkit-transform: translate(-1px,4px) rotate(45deg);
	transform: translate(1px,4px) rotate(45deg);
}
	@media screen and (max-width: 1024px) {
		.open .toggle_btn span:nth-child(1) {
			-webkit-transform: translate(-1px,4px) rotate(45deg);
			transform: translate(1px,4px) rotate(45deg);
		}
	}
.open .toggle_btn span:nth-child(3) {
	-webkit-transform: translate(-1px,-4px) rotate(-45deg);
	transform: translate(1px,-4px) rotate(-45deg);
}
	@media screen and (max-width: 1024px) {
		.open .toggle_btn span:nth-child(3) {
			-webkit-transform: translate(-1px,-4px) rotate(-45deg);
			transform: translate(1px,-4px) rotate(-45deg);
		}
	}

#mask {
}
	@media screen and (max-width: 1024px) {
		#mask {
			display: none;
			transition: .5s all;
		}
	}
.open #mask {
}
	@media screen and (max-width: 1024px) {
		.open #mask {
			display: block;
			position: fixed;
			top: 0;
			right: 0;
			width: 100%;
			height: 100%;
			background: #000;
			opacity: .8;
			z-index: 2;
			cursor: pointer;
		}
	}


/* scroll
-------------------------- */
.header.scrolled .header_inner {
	background-color: #fff;
}
.header.scrolled h1.logo a img {
	filter: invert(0%) sepia(99%) saturate(20%) hue-rotate(6deg) brightness(102%) contrast(100%);
}
.header.scrolled h1.logo a span {
	color: #000;
}
.header.scrolled a:hover {
	opacity: .5;
	transition: .5s all;
}
.header.scrolled nav .inner ul li a {
	color: #000;
}
.header.scrolled nav .inner ul li a.pc_view {
	color: #fff;
}
.header.scrolled nav .inner ul li a.pc_view:hover {
	color: #000;
}


/* ======================================

	MAIN

====================================== */
/* ===================================
	MV
=================================== */
.mv {
	position: relative;
	background: linear-gradient(rgba(52,58,83,0.27), rgba(52,58,83,0.27)), url("../img/mv.jpg") no-repeat top center;
	background-size: cover;
	width: 100%;
	height: 946px;
}
	@media screen and (max-width: 750px) {
		.mv {
			background: linear-gradient(rgba(52,58,83,0.27), rgba(52,58,83,0.27)), url("../img/mv_sp.jpg") no-repeat top center;
			background-size: cover;
			height: 612px;
		}
	}
.mv p {
	display: flex;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	justify-content: center;
	color: transparent;
	width: 100%;
	height: 100%;
	font-family: "Archivo", sans-serif;
	font-optical-sizing: auto;
	font-size: 5.4vw;
	font-style: normal;
	font-weight: bold;
	text-align: center;
	line-height: 1.2;
	-webkit-text-stroke: 1px #fff;
	padding-top: 20%;
}
	@media screen and (max-width: 1024px) {
		.mv p {
			font-size: 6.4vw;
			padding-top: 40%;
		}
	}
	@media screen and (max-width: 768px) {
		.mv p {
			font-size: 8vw;
		}
	}
	@media screen and (max-width: 750px) {
		.mv p {
			padding-top: 78%;
		}
	}
.mv p.slidein {
    clip-path: inset(0 100% 0 0);
    animation: textanimation 2s forwards;
    margin: 0;
}
	@keyframes textanimation {
		0% { clip-path: inset(0 100% 0 0) }
		100% { clip-path: inset(0) }
	}
.mv p span {
	width: 100%;
}
.mv p span.sub {
	display: inline-block;
	color: #fff;
	font-size: 2.4vw;
	-webkit-text-stroke: 0;
	padding-top: 20px;
}
	@media screen and (max-width: 768px) {
		.mv p span.sub {
			font-size: 4vw;
		}
	}
.mv p span b {	
	color: #fff;
	-webkit-text-stroke: 0;
}
.mv_arrow {
	position: absolute;
	left: -30px;
	bottom: 0;
	width: 230px;
	height: 300px;
	filter: invert(100%) sepia(93%) saturate(79%) hue-rotate(171deg) brightness(120%) contrast(101%);
}


/* ===================================
	Message
=================================== */
.message {
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(rgba(52,58,83,0.65), rgba(52,58,83,0.65)), url("../img/message.jpg") no-repeat center 0;
	background-size: cover;
	width: 100%;
	height: 952px;
}
	@media screen and (max-width: 1024px) {
		.message {
			height: 600px;
		}
	}
	@media screen and (max-width: 768px) {
		.message {
			height: 500px;
		}
	}
	@media screen and (max-width: 750px) {
		.message {
			background: linear-gradient(rgba(61,58,55,0.65), rgba(61,58,55,0.65)), url("../img/message_sp.jpg") no-repeat center 0;
			background-size: cover;
			height: 610px;
		}
	}
.message p {
	color: #fff;
	font-family: "Archivo", sans-serif;
	font-size: 24px;
	font-style: normal;
	font-weight: bold;
	margin: 0 auto 30px;
}
	@media screen and (max-width: 768px) {
		.message p {
			font-size: 20px;
		}
	}
	@media screen and (max-width: 750px) {
		.message p {
			width: 92%;
			font-size: 16px;
			font-weight: normal;
		}
	}
.message p:last-child {
	margin-bottom: 0;
}


/* ===================================
	WORKS
=================================== */
.works h2 {
	background: #000;
}
.works h2 ul li {
	-webkit-text-stroke: 1px #fff;
}
.works h2 ul li:nth-child(3n) {
	color: #fff;
}
.works h2 span {
	color: #fff;
}
.works_flex {
	display: flex;
	position: sticky;
	top: 0;
}
	@media screen and (max-width: 750px) {
		.works_flex {
			flex-wrap: wrap;
			position: relative;
		}
	}
.works_img {
	width: 48%;
}
	@media screen and (max-width: 750px) {
		.works_img {
			width: 100%;
			order: 2;
		}
	}
.works_section {
	width: 52%;
	overflow: hidden;
}
	@media screen and (max-width: 750px) {
		.works_section {
			width: 100%;
			order: 1;
		}
		.works_section.works_section_last {
			order: 2;
		}
	}
.works_section_ttl {
	background: url("../img/metal.jpg") no-repeat 0 0;
	background-size: cover;
	width: 100%;
	padding: 40px 50px 30px;
}
	@media screen and (max-width: 768px) {
		.works_section_ttl {
			padding: 20px 20px;
		}
	}
.works_section_ttl h3 {
	position: relative;
	top: 0;
	width: 14.6em;
	white-space: nowrap;
	padding: 0.8em;
}
	@media screen and (max-width: 768px) {
		.works_section_ttl h3 {
			width: 9.2em;
			padding: 0.5em;
		}
	}
	@media screen and (max-width: 750px) {
		.works_section_ttl h3 {
			width: 69%;
		}
	}
	@media screen and (max-width: 375px) {
		.works_section_ttl h3 {
			width: 77%;
		}
	}
	@media screen and (max-width: 320px) {
		.works_section_ttl h3 {
			width: 92%;
		}
	}
.works_section_ttl h3 span {
	display: inline-block;
	background: #fff;
	font-size: 40px;
	font-weight: bold;
	padding: 10px;
}
	@media screen and (max-width: 768px) {
		.works_section_ttl h3 span {
			font-size: 24px;
		}
	}
	@media screen and (max-width: 750px) {
		.works_section_ttl h3 span {
			font-size: 36px;
			padding: 0 10px;
		}
	}
.works_section_ttl h3 span:before,
.works_section_ttl h3 span:after { 
	content:'';
	position: absolute;
	display: inline-block;
	width: 30px;
	height: 30px;
}
	@media screen and (max-width: 768px) {
		.works_section_ttl h3 span:before,
		.works_section_ttl h3 span:after {
			width: 15px;
			height: 15px;
		}
	}
.works_section_ttl h3 span:before {
	top: 0;
	left: 0;
	border-left: solid 2px #fff;
	border-top: solid 2px #fff;
}
.works_section_ttl h3 span:after {
	bottom: 0;
	right: 0;
	border-right: solid 2px #fff;
	border-bottom: solid 2px #fff;
}
.works_section_ttl h3 span em {
	display: inline-block;
	font-style: normal;
}
.works_section_ttl h3 span em:before,
.works_section_ttl h3 span em:after { 
	content:'';
	position: absolute;
	display: inline-block;
	width: 30px;
	height: 30px;
}
	@media screen and (max-width: 768px) {
		.works_section_ttl h3 span em:before,
		.works_section_ttl h3 span em:after {
			width: 15px;
			height: 15px;
		}
	}
.works_section_ttl h3 span em:before {
	top: 0;
	right: 0;
	border-right: solid 2px #fff;
	border-top: solid 2px #fff;
}
.works_section_ttl h3 span em:after {
	bottom: 0;
	left: 0;
	border-left: solid 2px #fff;
	border-bottom: solid 2px #fff;
}
.works_section_ttl p {
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	margin-top: 10px;
}
	@media screen and (max-width: 768px) {
		.works_section_ttl p {
			font-size: 16px;
		}
	}
	@media screen and (max-width: 750px) {
		.works_section_ttl p {
			font-size: 14px;
		}
	}
.works_section_cont {
	background: #fff;
	height: 100%;
	padding: 30px 46px;
}
	@media screen and (max-width: 768px) {
		.works_section_cont {
			padding: 20px 25px;
		}
	}
.works_section_cont.works_section_cont_img {
	padding: 0;
}
.works_section_cont_box {
	margin-top: 20px;
}
.works_section_cont_box h4 {
	font-size: 106%;
}
	@media screen and (max-width: 768px) {
		.works_section_cont h4 {
			font-size: 18px;
		}
	}
	@media screen and (max-width: 750px) {
		.works_section_cont h4 {
			font-size: 16px;
		}
	}
.works_section_cont p {
	margin-bottom: 10px;
}
	@media screen and (max-width: 768px) {
		.works_section_cont p {
			font-size: 16px;
		}
	}
	@media screen and (max-width: 750px) {
		.works_section_cont p {
			font-size: 15px;
			margin-bottom: 5px;
		}
	}
.works_section_cont_img {
	height: 100%;
}
.works_section_cont_img figure {
	position: relative;
	height: 50%;
}
.works_section_cont_img figure img {
	height: 100%;
	object-fit: cover;
}
.works_section_cont_img figure figcaption {
	position: absolute;
	bottom: 0;
	background: linear-gradient(rgba(52,58,83,0.82), rgba(52,58,83,0.82));
	color: #fff;
	width: 100%;
	height: 8%;
	font-size: 16px;
	padding: 2px 1rem 0;
}
	@media screen and (max-width: 750px) {
		.works_section_cont_img figure figcaption {
			height: 14%;
			font-size: 14px;
		}
	}


/* ===================================
	INTERVIEW
=================================== */
.interview h2 {
	margin-bottom: 30px;
}
.interview h2 ul li {
	-webkit-text-stroke: 1px #000;
	text-stroke: 1px #000;
}
.interview h2 ul li:nth-child(3n) {
	color: #000;
}
.interview_flex {
	display: flex;
	flex-wrap: wrap;
	width: 88%;
	margin: 0 auto;
}
	@media screen and (max-width: 1024px) {
		.interview_flex {
			display: block;
		}
	}
.interview_box {
	position: relative;
	width: 40%;	
	border: 4px solid #000;
	margin: 0 5% 10%;
}
	@media screen and (max-width: 1024px) {
		.interview_box {
			width: 80%;
			margin: 0 auto 14%;
		}
	}
	@media screen and (max-width: 750px) {
		.interview_box {
			width: 97%;
			border: 5px solid #000;
			margin-bottom: 25%;
		}
	}
.interview_box:before,
.interview_box:after { 
	content:'';
	position: absolute;
	display: inline-block;
	width: 30px;
	height: 30px;
	padding: 10px;
}
	@media screen and (max-width: 750px) {
		.interview_box:before,
		.interview_box:after {
			width: 6px;
			height: 6px;
		}
	}
.interview_box:before {
	top: -25px;
	left: -25px;
	border-left: solid 4px #000;
	border-top: solid 4px #000;
}
	@media screen and (max-width: 750px) {
		.interview_box:before {
			top: -18px;
			left: -18px;
			border-left: solid 5px #000;
			border-top: solid 5px #000;
		}
	}
.interview_box:after {
	bottom: -25px;
	right: -25px;
	border-right: solid 4px #000;
	border-bottom: solid 4px #000;
}
	@media screen and (max-width: 750px) {
		.interview_box:after {
			bottom: -18px;
			right: -18px;
			border-right: solid 5px #000;
			border-bottom: solid 5px #000;
		}
	}
.interview_line {
	position: relative;
	width: 100%;
	height: 100%;
}
.interview_line {
	display: inline-block;
	font-style: normal;
}
.interview_line:before,
.interview_line:after { 
	content:'';
	position: absolute;
	display: inline-block;
	width: 50px;
	height: 50px;
}
	@media screen and (max-width: 750px) {
		.interview_line:before,
		.interview_line:after {
			width: 25px;
			height: 25px;
		}
	}
.interview_line:before {
	top: -25px;
	right: -25px;
	border-right: solid 4px #000;
	border-top: solid 4px #000;
}
	@media screen and (max-width: 750px) {
		.interview_line:before {
			top: -18px;
			right: -18px;
			border-right: solid 5px #000;
			border-top: solid 5px #000;
		}
	}
.interview_line:after {
	bottom: -25px;
	left: -20px;
	border-left: solid 4px #000;
	border-bottom: solid 4px #000;
}
	@media screen and (max-width: 750px) {
		.interview_line:after {
			bottom: -18px;
			left: -18px;
			border-left: solid 5px #000;
			border-bottom: solid 5px #000;
		}
	}
.interview h3 {
	position: absolute;
	top: -42px;
	left: calc( 50% - 60px);
	font-family: "Archivo", sans-serif;
	font-optical-sizing: auto;
	font-size: 60px;
	font-weight: bold;
}
	@media screen and (max-width: 1024px) {
		.interview h3 {
			top: -62px;
			font-size: 80px;
		}
	}
	@media screen and (max-width: 750px) {
		.interview h3 {
			top: -46px;
			font-size: 60px;
		}
	}
.interview_box img {
	display: inline-block;
	padding: 10px;
}
.interview_cont {
	padding: 20px 30px;
}
	@media screen and (max-width: 750px) {
		.interview_cont {
			padding: 10px 15px;
		}
	}
.interview_profile {
	display: flex;
	margin-bottom: 10px;
}
	@media screen and (max-width: 750px) {
		.interview_profile {
			display: block;
		}
	}
.interview_profile p {
	/* font-size: 34px; */
	font-size: 30px;
	font-weight: bold;
	white-space: nowrap;
}
	@media screen and (max-width: 750px) {
		.interview_profile p {
			font-size: 30px;
			margin-bottom: 10px;
		}
	}
.interview_profile dl {
	display: flex;
	flex-wrap: wrap;
	font-size: 14px;
	margin-left: 20px;
}
	@media screen and (max-width: 750px) {
		.interview_profile dl {
			margin-left: 0;
		}
	}
.interview_profile dl dt {
	background: #000;
	color: #fff;
	width: 25%;
	text-align: center;	
	margin-bottom: 5px;
}
	@media screen and (max-width: 750px) {
		.interview_profile dl dt {
			font-size: 12px;
		}
	}
.interview_profile dl dd {
	width: 75%;
	font-weight: bold;
	margin-bottom: 5px;
	padding-left: 6px;
}
	@media screen and (max-width: 750px) {
		.interview_profile dl dd {
			font-size: 12px;
		}
	}
.interview_cont > p {
	font-weight: bold;
	font-size: 12px;
	margin-bottom: 20px;
}
.interview_txt {
	margin-bottom: 30px;
}
	@media screen and (max-width: 750px) {
		.interview_txt {
			font-size: 15px;
			line-height: 1.6;
		}
	}
.interview_bottom ul {
	display: flex;
}
	@media screen and (max-width: 750px) {
		.interview_bottom ul {
			flex-wrap: wrap;
		}
		.interview_bottom ul li {
			width: 50%;
		}
	}


/* ===================================
	RECRUIT
=================================== */
.recruit {
	display: flex;
	justify-content: flex-end;
	background: #000;
	padding: 100px 0;
}
	@media screen and (max-width: 750px) {
		.recruit {
			background: #fff;
			width: 96%;
			margin: 0 auto;
			padding: 20px 0;
		}
	}
.recruit_wrap {
	display: flex;
	justify-content: flex-start;
	width: calc( 100% - 100px);
	background: #fff;
	padding: 7% 5%;
}
	@media screen and (max-width: 768px) {
		.recruit_wrap {
			display: block;
		}
	}
	@media screen and (max-width: 750px) {
		.recruit_wrap {
			width: 100%;
		}
	}
.recruit_wrap h2 {
	width: 25%;
	font-family: "Archivo", sans-serif;
	font-optical-sizing: auto;
	font-size: 4vw;
	font-weight: bold;
	line-height: .8;
	white-space: nowrap;
	margin-left: 50px;
	padding: 10px 0;
}
	@media screen and (max-width: 768px) {
		.recruit_wrap h2 {
			width: 100%;
			height: auto;
			font-size: 7vw;
			margin-bottom: 20px;
			margin-left: 0;
		}
	}
	@media screen and (max-width: 750px) {
		.recruit_wrap h2 {
			font-size: 12vw;
			line-height: .5;
		}
	}
.recruit_wrap h2 span {
	display: inline;	
	font-family: noto-sans-cjk-jp, sans-serif;
	font-size: 1.6vw;
}
	@media screen and (max-width: 768px) {
		.recruit_wrap h2 span {
			font-size: 2.6vw;
		}
	}
	@media screen and (max-width: 750px) {
		.recruit_wrap h2 span {
			font-size: 3.5vw;
		}
	}
table.recruit_tbl {
	width: 60%;
	max-width: 700px;
}
	@media screen and (max-width: 768px) {
		table.recruit_tbl {
			width: 100%;
		}
	}
table.recruit_tbl tr {
	border-bottom: 1px solid #000;
}
table.recruit_tbl th {
	font-size: 15px;
	text-align: center;
	white-space: nowrap;
}
	@media screen and (max-width: 750px) {
		table.recruit_tbl th {
			font-size: 13px;
		}
	}
table.recruit_tbl th span {
	display: inline-block;
	background: #000;
	color: #fff;
	width: 100%;
	margin: 10px 0;
	padding: 10px;
}
table.recruit_tbl td {
	font-size: 15px;
	vertical-align: middle;
	padding: 10px 20px;
}
table.recruit_tbl .tbl_mini {
	margin: 0;
}
table.recruit_tbl .tbl_mini tr {
	border: none;
}
table.recruit_tbl .tbl_mini td.ttl {
	text-align: left;
	white-space: nowrap;
}
table.recruit_tbl .tbl_mini td {
	vertical-align: top;
	margin: 0;
	padding: 0;
	padding-right: 15px;
}


/* ===================================
	COMPANY
=================================== */
.company {
	background: #000;
	color: #fff;
	margin-bottom: 20px;
}
.company h2 ul li {
	-webkit-text-stroke: 1px #fff;
}
.company h2 ul li:nth-child(3n) {
	color: #fff;
}
.company_lead {
	text-align: center;
}
.company_lead h3 {
	font-size: 33px;
	font-weight: bold;
	margin-bottom: 5px;
}
	@media screen and (max-width: 750px) {
		.company_lead h3 {
			font-size: 26px;
		}
	}
.company_lead p {
	font-size: 18px;
}
	@media screen and (max-width: 750px) {
		.company_lead p {
			font-size: 15px;
		}
	}
.company_branch {
	margin-top: 30px;
}
.company_profile {
	display: flex;
	align-items: center;
	margin-left: 4em;
}
	@media screen and (max-width: 768px) {
		.company_profile {
			margin-left: 2em;
		}
	}
	@media screen and (max-width: 750px) {
		.company_profile {
			display: block;
			margin-left: 0;
		}
	}
.company_profile h3 {
	font-size: 30px;
	font-weight: bold;
	margin-bottom: 15px;
	margin-right: 1em;
}
	@media screen and (max-width: 768px) {
		.company_profile h3 {
			font-size: 22px;
		}
		.company_profile p {
			margin-bottom: 15px;
		}
	}
	@media screen and (max-width: 750px) {
		.company_profile h3 {
			font-size: 20px;
			text-align: center;
			margin-right: 0;
		}
		.company_profile p {
			font-size: 13px;
			text-align: center;
		}
	}
.company_visual {
	display: flex;
}
	@media screen and (max-width: 750px) {
		.company_visual {
			display: block;
		}
	}
.company_visual img,
.company_visual iframe {
	width: 50%;
}
	@media screen and (max-width: 750px) {
		.company_visual img,
		.company_visual iframe {
			width: 100%;
		}
		.company_visual iframe {
			height: 180px;
		}
	}


/* ===================================
	FAQ
=================================== */
.faq h2 {
	margin-bottom: 30px;
}
	@media screen and (max-width: 750px) {
		.faq h2 {
			margin-bottom: 10px;
		}
	}
.faq h2 ul li {
	-webkit-text-stroke: 1px #000;
	text-stroke: 1px #000;
}
.faq h2 ul li:nth-child(3n) {
	color: #000;
}
.faq_wrap {
	width: 55%;
	max-width: 700px;
	margin: 0 auto 80px;
}
	@media screen and (max-width: 768px) {
		.faq_wrap {
			width: 78%;
		}
	}
	@media screen and (max-width: 750px) {
		.faq_wrap {
			width: 94%;
		}
	}


/* アコーディオン
-------------------------- */
.details {
	border: 2px solid #000;	
	margin-bottom: 20px;
}
	@media screen and (max-width: 750px) {
		.details {
			border: 3px solid #000;	
		}
	}
.details:last-of-type {
	border-bottom: 2px solid #000;
} 
.details-summary {
	position: relative;
	display: block;
	font-size: 18px;
	font-weight: bold;
}
	@media screen and (max-width: 750px) {
		.details-summary {
			font-size: 12px;
		}
	}
.details.open .details-summary {	
	background: #000;
	color: #fff;
	transition: .5s all;
}
.details-summary span.number {
	display: inline-block;
	background: #000;
	color: #fff;
	width: 2.5em;
	height: 100%;	
	font-family: "Archivo", sans-serif;
	font-size: 30px;
	text-align: center;
	line-height: 2.4;
	margin-right: .75em;
}
	@media screen and (max-width: 750px) {
		.details-summary span.number {
			font-size: 22px;
		}
	}
.details-summary:hover {
	cursor: pointer;
}
.details-summary .btn {
	position: absolute;
	top: 37%;
	right: 20px;
	width: 18px;
	height: 18px;
	transform-origin: center center;
	transition-duration: 0.2s;
}
.details-summary .btn:before,
.details-summary .btn:after {
	content: "";
	background-color: #000;
	width: 18px;
	height: 4px;
	position: absolute;
	top: 7px;
	right: 0;
	transform-origin: center center;
}
.details-summary .btn:before {
	width: 4px;
	height: 18px;
	top: 0;
	left: 7px;
}
.details-summary.is-active .btn:after {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	background-color: #fff;
}
.details-summary.is-active .btn:before {
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
	background-color: #fff;
}/*
.details-summary.is-active .btn:before {
	content: none;
} */
.details-summary::-webkit-details-marker {
	display: none;
}
.details-content {
	padding: 30px 50px;
}
	@media screen and (max-width: 750px) {
		.details-content {
			padding: 20px;
		}
	}
.details-content p {
	font-size: 18px;
	line-height: 1.6;
}
	@media screen and (max-width: 750px) {
		.details-content p {
			font-size: 16px;
		}
	}
.details-content p:last-of-type {
	margin: 0 0 0;
}


/* ===================================
	ENTRY
=================================== */
.entry {
	position: relative;
	display: flex;
	overflow: hidden;
	margin-bottom: 100px;
}
	@media screen and (max-width: 750px) {
		.entry {
			display: block;
		}
	}
.entry_ttl {
	width: 58%;
	font-weight: bold;
}
	@media screen and (max-width: 750px) {
		.entry_ttl {
			position: relative;
			width: 100%;
			height: 220px;
		}
	}
	@media screen and (max-width: 320px) {
		.entry_ttl {
			height: 190px;
		}
	}
#entryImg.entry_arrow {
	position: absolute;
	bottom: 40px;
	left: 38%;
	width: 296px;
	opacity: 0;
}
	@media screen and (max-width: 1024px) {
		#entryImg.entry_arrow {
			left: 25%;
			width: 200px;
		}
	}
	@media screen and (max-width: 768px) {
		#entryImg.entry_arrow {
			left: 15%;
			bottom: 0;
			width: 80px;
		}
	}
	@media screen and (max-width: 750px) {
		#entryImg.entry_arrow {
			left: auto;
			right: -70px;
			bottom: auto;
			width: 100%;
			transform: rotate(90deg);
		}
	}
#entryImg.show {
	opacity: 1;
	animation: slideinLeft 2.2s 1;
}
	@keyframes slideinLeft {
		0% { transform: translateX(-1000px) }
		100% { transform: translateX(0) }
	}
	@media screen and (max-width: 750px) {
		#entryImg.show {
			transform: rotate(90deg);
			animation: none;
		}
	}
.entry_ttl .entry_arrow img {
	position: absolute;
	bottom: 40px;
	left: 38%;
	width: 296px;
	animation: bound2 .6s infinite;
}
	@keyframes bound2 {
		0% { transform:translateX(0) }
		50% { transform:translateX(-15px) }
		100% { transform:translateX(0) }
	}
	@media screen and (max-width: 750px) {
		.entry_ttl .entry_arrow img {
			left: auto;
			right: 0;
			bottom: 0;
			width: 120px;
		}
	}
#entryTxt1.entry_txt1 {
	position: absolute;
	top: -10px;
	left: 0;
	font-size: 100px;
	opacity: 0;
}
	@media screen and (max-width: 1024px) {
		#entryTxt1.entry_txt1 {
			font-size: 80px;
		}
	}
	@media screen and (max-width: 768px) {
		#entryTxt1.entry_txt1 {
			font-size: 64px;
		}
	}
	@media screen and (max-width: 750px) {
		#entryTxt1.entry_txt1 {
			font-size: 50px;
		}
	}
	@media screen and (max-width: 320px) {
		#entryTxt1.entry_txt1 {
			font-size: 40px;
		}
	}
#entryTxt1.show1 {
	opacity: 1;
	transition: .3s all;	
	animation: slideinTop 1.25s 1;
}
	@keyframes slideinTop {
		0% { transform: translateY(-2000px); }
		70% { transform: translateY(0); }
	}
#entryTxt2.entry_txt2 {
	position: absolute;
	top: 58px;
	left: 180px;
	color: transparent;
	-webkit-text-stroke: 1px #000;
	text-stroke: 1px #000;
	font-size: 100px;
	opacity: 0;
}
	@media screen and (max-width: 1024px) {
		#entryTxt2.entry_txt2 {
			font-size: 80px;
		}
	}
	@media screen and (max-width: 768px) {
		#entryTxt2.entry_txt2 {
			left: 100px;
			font-size: 64px;
		}
	}
	@media screen and (max-width: 750px) {
		#entryTxt2.entry_txt2 {
			top: 24px;
			left: 100px;
			font-size: 50px;
		}
	}
	@media screen and (max-width: 320px) {
		#entryTxt2.entry_txt2 {
			top: 24px;
			left: 100px;
			font-size: 40px;
		}
	}
#entryTxt2.show2 {
	opacity: 1;
	transition: .3s all;	
	animation: slideinRight 1s 1;
}
	@keyframes slideinRight {
		0% { transform: translateX(1000px); }
		50% { transform: translateX(0); }
	}
#entryTxt3.entry_txt3 {
	position: absolute;
	bottom: -40px;
	left: 200px;
	font-size: 165px;
	opacity: 0;
}
	@media screen and (max-width: 1024px) {
		#entryTxt3.entry_txt3 {
			bottom: 0;
			left: 150px;
			font-size: 120px;
		}
	}
	@media screen and (max-width: 768px) {
		#entryTxt3.entry_txt3 {
			bottom: -10px;
			left: 30px;
			font-size: 120px;
		}
	}
	@media screen and (max-width: 750px) {
		#entryTxt3.entry_txt3 {
			left: auto;
			right: 20px;
			bottom: 0;
			font-size: 90px;
		}
	}
	@media screen and (max-width: 320px) {
		#entryTxt3.entry_txt3 {
			font-size: 80px;
		}
	}
#entryTxt3.show3 {
	opacity: 1;
	transition: .3s all;	
	animation: slideinBottom 1.8s 1;
}
	@keyframes slideinBottom {
		0% { transform: translateY(1000px); }
		90% { transform: translateY(0); }
	}
.entry_btn {
	width: 42%;
	text-align: center;
}
	@media screen and (max-width: 750px) {
		.entry_btn {
			width: 86%;
			margin: 0 auto;
		}
	}
.entry_btn a {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #000;
	width: 80%;
	font-size: 48px;
	font-weight: bold;
	line-height: 3;
	border: 4px solid #000;
	margin: 0 auto 20px;
}
	@media screen and (max-width: 768px) {
		.entry_btn a {
			font-size: 34px;
		}
	}
	@media screen and (max-width: 750px) {
		.entry_btn a {
			width: 100%;
			font-size: 34px;
		}
	}
.entry_btn a img {
	width: 90px;
	padding-right: 30px;
}
	@media screen and (max-width: 768px) {
		.entry_btn a img {
			width: 60px;
			padding-right: 10px;
		}
	}
.entry_btn p {
	font-weight: bold;
}


/* ======================================

	FOOTER

====================================== */
.footer {
	position: relative;
	background: #000;
	overflow: hidden;
	padding: 50px 0;
}
.footer_innr {
	display: flex;
	justify-content: space-between;
	width: 730px;
	margin: 0 auto;
}
	@media screen and (max-width: 750px) {
		.footer_innr {
			display: block;
			width: 90%;
		}
	}
.footer_innr a {
	color: #fff;
	font-family: "Archivo", sans-serif;
	font-weight: bold;
}
.footer_innr a:hover {
	opacity: .7;
	transition: .5s all;
}
.footer_company {
	width: 25%;
}
	@media screen and (max-width: 750px) {
		.footer_company {
			width: 100%;
			margin-bottom: 40px;
		}
	}
.footer_company a img {
	display: inline-block;
	width: 280px;
	filter: invert(100%) sepia(93%) saturate(79%) hue-rotate(171deg) brightness(120%) contrast(101%);
	padding-bottom: 10px;
}
	@media screen and (max-width: 768px) {
		.footer_company a img {
			width: 180px;
		}
	}
.footer_nav {
	width: 48%;
}
	@media screen and (max-width: 768px) {
		.footer_nav {
			width: 60%;
		}
	}
	@media screen and (max-width: 750px) {
		.footer_nav {
			width: 100%;
		}
	}
.footer_nav li a {
	display: flex;
	align-items: center;
	font-size: 36px;
}
	@media screen and (max-width: 750px) {
		.footer_nav li a {
			font-size: 28px;
		}
	}
.footer_nav li a:hover {
	opacity: .7;
	transition: .5s all;
}
.footer_nav li a span {
	font-size: 13px;
}
	@media screen and (max-width: 750px) {
		.footer_nav li a span {
			font-size: 11px;
			font-weight: normal;
		}
	}
.footer_pagetop {
	position: absolute;
	top: 15px;
	right: -20px;
	width: 256px;
	z-index: 100;
	filter: invert(100%) sepia(93%) saturate(79%) hue-rotate(171deg) brightness(120%) contrast(101%);
	transform: rotate(180deg);
}
	@media screen and (max-width: 750px) {
		.footer_pagetop {
			display: none;
		}
	}
.footer_pagetop a {
	display: block;
	animation: bound 2s infinite;
}
.footer_pagetop a:hover {
	opacity: .8;
	transition: .5s all;
}