@charset "UTF-8";

/*
Theme Name: beecraft
Description: 有限会社ビークラフト
Version: 1.0
*/

/* General Settings
------------------------------------------ */

* {
	box-sizing: border-box;
}
html {
	font-size: 62.5%;
}
body {
	position: relative;
	color: #333333;
	background: #f2f2f2;
	/* font-size: 16px;
	font-size: 1.6rem; */
	font-size: 20px;
	font-size: 2.0rem;
	line-height: 2.0;
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", 'メイリオ', Meiryo, sans-serif;
	font-weight: 400;
	margin: 0;
	padding: 0;
}
main {
	position: relative;
	padding-top: 80px;
}
#index main {
	padding-top: 0;
}

h1,h2,h3,h4,h5,h6 {
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	font-weight: 700;
	margin: 0 0 1em;
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}
ul, ol {
	margin: 0;
	padding: 0;
}
ul li, ol li {
	list-style-type: none;
}

dl, dt, dd, figure {
	margin: 0;
	padding: 0;
}
p {
	word-wrap: break-word;
}
a {
	text-decoration: none;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
a:hover {
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
a[href*="tel:"] {
	pointer-events: none;
}
.alignl {
	text-align: left;
}
.alignc {
	text-align: center;
}
.alignr {
	text-align: right;
}
/*-------------------------------------
 for block editor
 --------------------------------------*/
.aligncenter,
.aligncenter img {
	margin-left: auto;
	margin-right: auto;
}
.wp-block-button__link {
	border-radius: 0;
}
.wp-block-buttons .wp-block-button {
	display: block;
	margin: 0 auto 60px;
}
.wp-block-buttons .wp-block-button:last-child {
	margin-right: auto;
}

/*-------------------------------------
 common
--------------------------------------*/
.sp-nav {
	display: none;
}
.pc-mode {
	display: block;
}
.sp-mode {
	display: none;
}
.btn {
	max-width: 280px;
	width: 100%;
	height: 60px;
}
.btn a {
	position: relative;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	border: 2px solid #333333;
	color: #333333;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	border-radius: 30px;
}
.btn a::after {
	content: '';
	position: absolute;
	right: 1.5em;
	top: 50%;
	transform: translateY(-50%);
	display: block;
	width: 21px;
	height: 6px;
	background-image: url(../images/arrow.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	transition: all .3s ease;
}
.btn a:hover::after {
	right: .8em;
}
.half-wrap {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: justify;
	justify-content: space-between;
}
/*------------------------ フェードインアニメーション */
.fadeinUp {
	
}
.fadeinUp, .fadeinL, .fadeinR {
	
}
.fadeUp {
	animation: fadeUpAnime .5s forwards;
	
}
@keyframes fadeUpAnime {
  from {
    
	transform: translateY( 150px );
  }
  to {
    opacity: 1;
	transform: translateY( 0 );
  }
}

.fadeLeft {
	animation: fadeLeftAnime 1s forwards;
	
}
@keyframes fadeLeftAnime {
  from {
    
	transform: translateX( -150px );
  }
  to {
    opacity: 1;
	transform: translateX( 0 );
  }
}

.fadeRight {
	animation: fadeRightAnime .5s forwards;
	
}
@keyframes fadeRightAnime {
  from {
    
	transform: translateX(150px);
  }
  to {
    opacity: 1;
	transform: translateX(0);
  }
}
.mt100 {
	margin-top: 100px!important;
}
/*-------------------------------------
 header
--------------------------------------*/
header {
	position: fixed;
	/* position: absolute; */
	left: 0;
	top: 0;
	z-index: 10;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: justify;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 80px;
	background-color: #FFF;
	font-size: 1.8rem;
}
#index header {
	background-color: transparent;
}
#index header.fixed {
	background-color: #FFF;
}
header .logo {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	flex-direction: column;
	max-width: 283px;
	width: 100%;
	height: 100%;
	padding-left: 2.5%;
	margin: 0;
}
header .logo a {
	display: flex;
}
header .logo .white {
	display: none;
}
#index header .logo .white {
	display: block;
}
#index header.fixed .logo .white {
	display: none;
}
header .logo .black {
	display: block;
}
#index header .logo .black {
	display: none;
}
#index header.fixed .logo .black {
	display: inline;
}
header .btn-contact {
	max-width: 140px;
	width: 100%;
	height: 40px;
	margin-right: 1%;
}
.gnav {
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	align-items: center;
	width: calc( 100% - 600px );
	height: 80px;
}
.gnav ul {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	align-items: center;
}
.gnav li {
	margin: 0 1.5em;
}
.gnav a {
	position: relative;
	font-family: 'Montserrat', "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	font-weight: 700;
	color: #333333;
	padding: .2em 0;
}
#index header .gnav a {
	color: #FFF;
}
#index header.fixed .gnav a {
	color: #333;
}
.gnav a::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	display: block;
	width: 100%;
	height: 1px;
	background-color: #333333;
	transform: scale(0, 1);
	transition: all .3s ease;
}
#index .gnav a::after {
	background-color: #FFF;
}
.gnav a:hover::after {
	transform: scale(1, 1);
}
.btn-contact {
	width: 140px;
	height: 40px;
}
.btn-contact a {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	font-family: 'Montserrat', "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	font-weight: 700;
	font-size: 1.6rem;
	line-height: 1;
	letter-spacing: .075em;
	border-radius: 20px;
	color: #333333;
	border: 2px solid #333333;
}
.btn-contact a:hover {
	background-color: #333;
	color: #FFF;
}
#index header .btn-contact a {
	border: 2px solid #FFF;
	color: #FFF;
}
#index header .btn-contact a:hover {
	background-color: #FFF;
	color: #333;
}
#index header.fixed .btn-contact a {
	border: 2px solid #333;
	color: #333;
}
#index header.fixed .btn-contact a:hover {
	background-color: #333;
	color: #FFF;
}
/*　下に下がる動き　*/
header.DownMove{
	animation: DownAnime 1s forwards;
}
@keyframes DownAnime{
  from {
  	
	transform: translateY(-80px);
  }
  to {
  	opacity: 1;
	transform: translateY(0);
  }
}

/*-------------------------------------
 footer
--------------------------------------*/
footer {
	background-color: #242424;
	color: #FFF;
}
footer .inner {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: justify;
	justify-content: space-between;
	max-width: 1400px;
	width: 100%;
	margin: 0 auto;
	padding: 80px 0 94px;
	/* font-size: 1.5rem; */
	font-size: 1.6rem;
}
footer .txt-blk {
	width: 43%;
}
footer .map {
	position: relative;
	display: inline-block;
	margin-top: 2em;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	letter-spacing: .025em;
	color: #FFF;
	font-size: 1.8rem;
}
footer .map::before {
	content: '';
	display: inline-block;
	width: 15px;
	height: 16px;
	background: url(../images/icon-map-wa.svg) no-repeat center center;
	background-size: contain;
	margin-right: .5em;
}
footer .nav-blk {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: justify;
	justify-content: space-between;
	flex-direction: column;
	width: 55%;
	padding-top: 60px;
}
footer .nav-blk ul {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: end;
	justify-content: flex-end;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	letter-spacing: .025em;
}
footer .nav-blk li {
	margin-left: 2em;
}
footer .nav-blk li:first-of-type {
	margin-left: 0;
}
footer .nav-blk a {
	position: relative;
	padding: .2em 0;
	color: #FFF;
}
footer .nav-blk a::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	display: block;
	width: 0;
	height: 1px;
	background-color: #FFF;
	transition: all .3s ease;
	z-index: 0;
}
footer .nav-blk a:hover::after {
	width: 100%;
}
.copy {
	font-family: 'Montserrat', "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	font-weight: 400;
	font-size: 1.3rem;
	text-align: right;
	margin-top: 3em;
}
.sns-wrap {
	position: fixed;
	right: 20px;
	top: 50%;
	z-index: 5;
	transform: translateY(-50%);
	
	width: 58px;
}
.sns-wrap h3 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	font-size: 1.4rem;
	line-height: 1;
	letter-spacing: .2em;
	transform: rotate(90deg);
	margin: 0 0 1.5em;
}
#index .sns-wrap h3 {
	color: #FFF;
}
/* .sns-wrap ul {
	padding-top: 20px;
} */
.sns-wrap ul li {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	margin-bottom: 20px;
}
.sns-wrap ul li:last-child {
	margin-bottom: 0;
}
.sns-wrap a {
	display: block;
	width: 58px;
	height: 58px;
}
.sns-wrap a:hover svg {
	transition: all .3s ease;
}
.sns-wrap a:hover svg {
	opacity: .7;
}
.slide-in2 {
	-webkit-animation: slideIN2 .75s cubic-bezier(.4, 0, .2, 1) .5s forwards;
	animation: slideIN2 .75s cubic-bezier(.4, 0, .2, 1) .5s forwards;
}
@-webkit-keyframes slideIN2 {
	0% { transform: translateX( 150% ); }
	100% { 
		opacity: 1;
		transform: translateX( 0% );
	}
}
@keyframes slideIN2 {
	0% { transform: translateX( 150% ); }
	100% { 
		opacity: 1;
		transform: translateX( 0% );
	}
}
/*------------------------------------------
 top
--------------------------------------------*/

/*----------------------------------- mv */
#mv {
	position: relative;
}
#mv .scroll {
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translate(-50%);
	z-index: 3;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	align-items: center;
	width: 140px;
	height: 70px;
	padding-top: 1em;
	border-radius: 70px 70px 0 0;
	border: 1px solid #FFF;
	border-bottom: 0;
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	font-size: 1.4rem;
	line-height: 1;
	letter-spacing: .075em;
	color: #FFF;
}
#mv .scroll:hover {
	background-color: #FFF;
	color: #333333;
}
#mv .catch {
	position: absolute;
	bottom: 15%;
	left: 2.5%;
	z-index: 2;
	width: 95%;
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	font-weight: 700;
	font-size: 2.9vw;
	line-height: 1.8;
	letter-spacing: .075em;
	color: #FFF;
	
}
#mv .slide {
	position: relative;
	width: 100%;
	height: 100vh;
	height: calc(var(--vh, 1vh) * 100 );
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
}
#mv .slide::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.25);
}
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15); /* 拡大率 */
  }
}
.add-animation {
  animation: zoomUp 10s linear 0s normal both;
}
/*----------------------------------- top-about */
#top-about {
	position: relative;
	padding: 300px 0 170px;
	overflow: hidden;
}
#aboutus-txt {
	position: absolute;
	top: 100px;
	right: 0;
	/* width: 72.8%; */
	width: 100%;
	
}
#aboutus-txt p {
	font-family: 'Montserrat', sans-serif;
	font-weight: 900;
	font-style: italic;
	font-size: 12vw;
	line-height: 1;
	letter-spacing: .05em;
	color: #333333;
	text-align: right;
	margin: 0;
}
.slide-in {
	-webkit-animation: slideIN .5s cubic-bezier(.4, 0, .2, 1) forwards;
	animation: slideIN .5s cubic-bezier(.4, 0, .2, 1) forwards;
}
@-webkit-keyframes slideIN {
	0% { transform: translateX( 150% ); }
	100% { 
		opacity: 1;
		transform: translateX( 0% );
	}
}
@keyframes slideIN {
	0% { transform: translateX( 150% ); }
	100% { 
		opacity: 1;
		transform: translateX( 0% );
	}
}
#top-about .txt-grp {
	position: relative;
	max-width: 1400px;
	width: 100%;
	margin: 0 auto 120px;
}
#top-about .txt-grp .ttl-blk,
#top-about .txt-grp .txt-blk {
	position: relative;
	width: 50%;
}
#top-about .txt-grp .ttl-blk {
	padding-right: 7%;
}
#top-about .txt-grp .txt-blk {
	padding-top: 2em;
	/* font-size: 1.8rem; */
	font-size: 2.2rem;
	letter-spacing: .025em ;
}
#top-about h3 {
	line-height: 1.3;
	margin-bottom: 80px;
}
#top-about h3 .subttl {
	position: relative;
	display: block;
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
	/* font-size: 6.0rem; */
	font-size: 7.2rem;
	letter-spacing: .075em;
	margin-left: -4rem;
	padding-left: 34px;
	margin-bottom: .3em;
}
#top-about h3 .subttl::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	display: block;
	width: 24px;
	height: 4px;
	background-color: #333;
}
#top-about h3 .catch {
	display: block;
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	font-weight: 700;
	font-size: 6.0rem;
	letter-spacing: .1em;
}
#top-about .img-grp .img1 {
	width: 50%;
	border-radius: 0 10px 10px 0;
	overflow: hidden;
}
#top-about .img-grp .img2 {
	margin-top: 100px;
	width: 50%;
	text-align: center;
}
#top-about .img-grp .img2 img {
	width: 48.5%;
	border-radius: 10px;
}
/*----------------------------------- top-works */
#top-works {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: justify;
	justify-content: space-between;
	padding-bottom: 160px;
	background: linear-gradient(180deg, transparent 0, transparent 56%, #e8e8e8 56%, #e8e8e8 100%);
}
#top-works .txt-grp {
	width: 50%;
	padding: 0 5% 0 15%;
	/* font-size: 1.8rem; */
}
#top-works .img-grp {
	width: 50%;
	counter-reset: num;
}
#top-works .img-grp .half-wrap {
	flex-wrap: wrap;
}
#top-works .img-grp dl {
	position: relative;
	width: 49%;
	margin-bottom: 20px;
}
#top-works .img-grp dt {
	position: absolute;
	left: 0;
	bottom: .5em;
	z-index: 2;
	color: #FFF;
	font-size: 1.5rem;
	letter-spacing: .05em;
	padding-left: 60px;
	margin-left: .5em;
}
#top-works .img-grp dt::before {
	counter-increment: num;
	content: counter(num, decimal-leading-zero);
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: 2px solid #FFF;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 2.4rem;
	letter-spacing: normal;
}
#top-works .img-grp dt .subttl {
	display: block;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 3.0rem;
	line-height: 1;
}
#top-works .img-grp dd {
	display: block;
}
#top-works .img-grp dd::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.35);
	border-radius: 10px;
	z-index: 1;
}
#top-works .img-grp figure img {
	border-radius: 10px;
}
#top-works h3 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
	/* font-size: 6.0rem; */
	font-size: 7.2rem;
	letter-spacing: .075em;
	line-height: 1.3;
	margin-left: -1.2em;
	margin-bottom: 60px;
}
#top-works h3 .subttl {
	position: relative;
	display: block;
	padding-left: 4rem;
	margin-bottom: .3em;
}
#top-works h3 .subttl::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	display: block;
	width: 24px;
	height: 4px;
	background-color: #333;
}
#top-works h3 .mainttl {
	display: block;
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	font-weight: 700;
	font-size: 2.0rem;
	letter-spacing: .1em;
	padding-left: 4rem;
}
#top-works .txt-grp .top-btn {
	margin-top: 60px;
}
/*----------------------------------- top-recruit */
#top-recruit {
	position: relative;
	width: 100%;
	height: 700px;
	/* margin-bottom: 160px; */
}
#top-recruit .txt-blk {
	position: absolute;
	left: 15%;
	top: 50%;
	transform: translateY(-50%);
	color: #FFF;
	z-index: 2;
	width: 70%;
	/* font-size: 1.8rem; */
	/* font-size: 2.0rem; */
}
#top-recruit h3 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
	/* font-size: 6.0rem; */
	font-size: 7.2rem;
	letter-spacing: .075em;
	line-height: 1.3;
	margin-bottom: 60px;
}
#top-recruit h3 .subttl {
	position: relative;
	display: block;
	padding-left: 4rem;
	margin-bottom: .3em;
}
#top-recruit h3 .subttl::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	display: block;
	width: 24px;
	height: 4px;
	background-color: #FFF;
}
#top-recruit h3 .mainttl {
	display: block;
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	font-weight: 700;
	font-size: 2.0rem;
	letter-spacing: .1em;
	padding-left: 4rem;
}
#top-recruit .half-wrap {
	-webkit-box-pack: start;
	justify-content: flex-start;
	width: 85%;
	margin: 0 auto;
}
#top-recruit .half-wrap p {
	width: 50%;
}
#top-recruit .top-btn {
	margin-left: 15%;
}
#top-recruit .top-btn a {
	color: #FFF;
	border-color: #FFF;
}
#top-recruit .top-btn a::after {
	background-image: url(../images/top-arrow-w.svg);
}
#top-recruit .img-grp {
	position: relative;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: start;
	justify-content: flex-start;
	width: 100%;
	height: 100%;
}
#top-recruit .img-grp2 {
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
#top-recruit .img-grp::after,
#top-recruit .img-grp2::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	display: block;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.35);
}
#top-recruit .img-grp figure {
	width: 25%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

/*----------------------------------- top-news */
#top-news {
	max-width: 1100px;
	width: 100%;
	margin: 160px auto 180px;
}
#top-news h3 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
	/* font-size: 6.0rem; */
	font-size: 7.2rem;
	letter-spacing: .075em;
	line-height: 1.3;
	margin-bottom: 60px;
	text-align: center;
}
#top-news h3 .subttl {
	position: relative;
	display: block;
	margin-bottom: .3em;
}
#top-news h3 .mainttl {
	display: block;
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	font-weight: 700;
	font-size: 2.0rem;
	letter-spacing: .1em;
}
#top-news ul {
	margin-bottom: 60px;
}
#top-news ul li {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: start;
	justify-content: flex-start;
	padding: 1.5em 2em;
	border-bottom: 1px solid #c4c4c4;
}
#top-news ul li:first-child {
	border-top: 1px solid #c4c4c4;
}
#top-news ul li time {
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
	letter-spacing: .075em;
	color: #808080;
	margin-right: 5%;
}
#top-news ul li a {
	color: #333;
}
#top-news ul li a:hover {
	opacity: .7;
}
#top-news .btn {
	margin: 0 auto;
}
/*----------------------------------- top共通 */
.top-btn {
	width: 120px;
	height: 120px;
}
.top-btn a {
	position: relative;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	border: 2px solid #333333;
	color: #333333;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 1.6rem;
	line-height: 1.6;
	letter-spacing: .025em;
}
.top-btn a::after {
	content: '';
	position: absolute;
	right: -21px;
	top: 50%;
	transform: translateY(-50%);
	display: block;
	width: 42px;
	height: 6px;
	background-image: url(../images/top-arrow.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	transition: all .3s ease;
}
.top-btn a:hover::after {
	right: -31px;
}
/*------------------------------------------
 contents
--------------------------------------------*/
#page-title {
	position: relative;
	width: 100%;
	height: 600px;
	background-color: #e8e8e8;
	padding-top: 90px;
	margin-bottom: 160px;
}
#page-title .title-blk {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	flex-direction: column;
	width: 45%;
	padding-left: 7.5%;
}
#page-title h1 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
	font-size: 7.2rem;
	line-height: 1.3;
	letter-spacing: .075em;
	margin: 0;
}
#page-title h1 .mainttl {
	display: block;
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	font-weight: 700;
	font-size: 2.4rem;
	letter-spacing: .1em;
}
#page-title figure {
	position: relative;
	width: 55%;
	height: 400px;
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
	border-radius: 20px 0 0 20px;
	overflow: hidden;
	
}
#page-title figure::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.25);
}
.slide-in3 {
	-webkit-animation: slideIN3 1s forwards;
	animation: slideIN3 1s forwards;
}
@-webkit-keyframes slideIN3 {
	0% { transform: translateY( 150px ); }
	100% { 
		opacity: 1;
		transform: translateX( 0 );
	}
}
@keyframes slideIN3 {
	0% { transform: translateY( 150px ); }
	100% { 
		opacity: 1;
		transform: translateX( 0 );
	}
}
.breadcrumbs {
	padding-left: 7.5%;
	font-family: 'Montserrat', "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", 'メイリオ', Meiryo, sans-serif;
	font-weight: 700;
	font-size: 1.4rem;
	line-height: 1.5;
	margin-top: 70px;
}
.breadcrumbs a {
	font-weight: 400;
	color: #333;
}
.breadcrumbs ul {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: start;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.breadcrumbs ul li {
	margin-right: .75em;
}
.breadcrumbs ul li::after {
	content: '/';
	margin-left: .75em;
	color: #b4b4b4;
}
.breadcrumbs ul li:last-child:after {
	display: none;
}
/*------------------------------------- content共通 */
.content-wrap {
	max-width: 1100px;
	width: 100%;
	margin: 0 auto 120px;
}
.content-wrap h2 {
	text-align: center;
	line-height: 1.5;
	margin-bottom: 50px;
}
.content-wrap h2 span {
	display: block;
}
.content-wrap h2 .subttl {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	/* font-size: 4.0rem; */
	font-size: 4.8rem;
	letter-spacing: .075em;
}
.content-wrap h2 .mainttl {
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	font-weight: 700;
	/* font-size: 2.0rem; */
	font-size: 2.4rem;
	letter-spacing: .1em;
}
.content-wrap h3 {
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	font-weight: 700;
	font-size: 2.0rem;
	line-height: 1.5;
	letter-spacing: .1em;
}
.content-wrap h3 span {
	position: relative;
	display: inline-block;
}
.content-wrap h3 span::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	display: block;
	width: 100%;
	height: 2px;
	background-color: #333;
}
.content-wrap table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 30px;
}
.content-wrap th,
.content-wrap td {
	padding: 1.5em 0;
	border-bottom: 1px solid #d4d4d4;
}
.content-wrap th {
	width: 20%;
	text-align: left;
	padding-left: 2em;
	padding-right: 1em;
}
.content-wrap td {
	width: 80%;
	padding-left: 1em;
	padding-right: 2em;
}
.content-wrap a {
	color: #333333;
	text-decoration: underline;
}
.content-wrap .btn a {
	text-decoration: none;
}
.content-wrap ul,
.about-wrap ul,
.works-wrap ul {
	margin-bottom: 1.5em;
}
.content-wrap ul li,
.about-wrap ul li,
.works-wrap ul li {
	position: relative;
	padding-left: 10px;
}
.content-wrap ul li::before,
.about-wrap ul li::before,
.works-wrap ul li::before {
	content: '';
	position: absolute;
	left: 0;
	top: .8em;
	display: block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: #333;
}
.content-wrap ol,
.about-wrap ol,
.works-wrap ol {
	margin-left: 1em;
}
.content-wrap ol li,
.about-wrap ol li,
.works-wrap ol li {
	list-style-type: decimal;
}
.gmap {
	position: relative;
	width: 100%;
	height: 0;
	padding-top: 45.28%;
}
.gmap iframe {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
/*------------------------------------- greeting */
#greeting {
	align-items: center;
	flex-direction: row-reverse;
	margin-bottom: 140px;
}
#greeting figure,
#greeting .txt-blk {
	width: 50%;
}
#greeting figure {
	border-radius: 0 20px 20px 0;
	overflow: hidden;
}
#greeting .txt-blk {
	/* font-size: 1.8rem; */
	padding: 0 15% 0 4%;
}
#greeting h2 {
	/* font-size: 4.0rem; */
	font-size: 3.6rem;
	line-height: 1.5;
	letter-spacing: .075em;
}
#greeting .sign {
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	font-weight: 700;
	font-size: 2.0rem;
	text-align: right;
}
.about-wrap {
	position: relative;
	background-color: #e8e8e8;
	padding: 100px 0 0;
	/* overflow-x: clip; */
	/* font-size: 1.8rem; */
	font-size: 2.2rem;
	z-index: 0;
}
.about-wrap .inner {
	position: relative;
	max-width: 1100px;
	margin: 0 auto;
	padding-bottom: 70px;
}
.about-wrap figure {
	width: 100%;
	height: 600px;
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
}
.about-wrap h2 {
	position: relative;
	margin-left: -8.5%;
	padding-left: 40px;
	line-height: 1.5;
}
.about-wrap h2::before {
	content: '';
	position: absolute;
	left: 0;;
	top: 1em;
	display: block;
	width: 24px;
	height: 2px;
	background-color: #333333;
}
.about-wrap h2 .subttl {
	display: block;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	/* font-size: 4.0rem; */
	font-size: 4.8rem;
	letter-spacing: .075em;
}
.about-wrap h2 .mainttl {
	display: block;
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	font-weight: 700;
	/* font-size: 2.0rem; */
	font-size: 2.4rem;
	letter-spacing: .1em;
}
.movetxt {
	position: absolute;
	right: 0;
	/* top: -3.25vw; */
	top: -4.25vw;
	z-index: 4;
	width: 100%;
	/* width: 50%; */
	/* opacity: .8; */
	
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	/* font-size: 6.5vw; */
	font-size: 8.5vw;
	font-style: italic;
	line-height: 1;
	text-transform: uppercase;
}
.movetxt p {
	margin: 0;
	color: #FFF;
	opacity: .8;
	text-align: right;
}
.works-wrap .movetxt p {
	color: #333333;
}
.movetxt.leftside {
	right: unset;
	left: 0;
}
.movetxt.leftside p {
	text-align: left;
}
.movetxt svg {
	opacity: .8;
}
.slide-in4 {
	-webkit-animation: slideIN4 1s forwards;
	animation: slideIN4 1s forwards;
}
@-webkit-keyframes slideIN4 {
	0% { transform: translateY( 150% ); }
	100% { 
		opacity: 1;
		transform: translateX( 0% );
	}
}
@keyframes slideIN4 {
	0% { transform: translateY( 150% ); }
	100% { 
		opacity: .8;
		transform: translateX( 0% );
	}
}
#vision {
	margin-bottom: 120px;
}

/*------------------------------------- works */
#works {
	counter-reset: num2;
}
.works-wrap {
	position: relative;
	margin-bottom: 40px;
}
.works-wrap:nth-of-type(odd) {
	background-color: #e8e8e8;
	padding-top: 120px;
	margin-bottom: 120px;
}
.works-wrap:last-of-type {
	margin-bottom: 0;
}
/* .works-wrap .inner {
	max-width: 1400px;
	width: 100%;
	margin: 0 auto;
} */
.works-wrap h2 {
	position: relative;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 4.0rem;
	letter-spacing: .075em;
	text-align: center;
}
.works-wrap h2::before {
	counter-increment: num2;
	content: counter(num2, decimal-leading-zero);
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	align-items: center;
	width: 68px;
	height: 68px;
	font-weight: 600;
	font-size: 3.0rem;
	border-radius: 50%;
	border: 3px solid #333333;
	margin: 0 auto;
	box-sizing: border-box;
}
.works-wrap h2 .mainttl {
	display: block;
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	font-weight: 700;
	font-size: 2.0rem;
	letter-spacing: .1em;
}
.works-wrap .img-blk,
.works-wrap .img-blk-1,
.works-wrap .img-blk-2 {
	position: relative;
	max-width: 1400px;
	width: 100%;
	margin: 0 auto;
}
.works-wrap .img-blk::after,
.works-wrap .img-blk-1::after,
.works-wrap .img-blk-2::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.25);
	border-radius: 10px;
}
.works-wrap .img-blk-1,
.works-wrap .img-blk-2 {
	display: flex;
	-webkit-box-pack: justify;
	justify-content: space-between;
}
.works-wrap .img-blk-1 > div,
.works-wrap .img-blk-2 > figure {
	width: 50%;
}
.works-wrap .img-blk-1 .left-blk {
	border-radius: 10px 0 0 10px;
	overflow: hidden;
}
.works-wrap .img-blk-1 .right-blk {
	border-radius: 0 10px 10px 0;
	overflow: hidden;
}
.works-wrap .img-blk figure {
	border-radius: 10px;
	overflow: hidden;
}
.works-wrap .img-blk-2 figure:first-of-type {
	border-radius: 10px 0 0 10px;
	overflow: hidden;
}
.works-wrap .img-blk-2 figure:last-of-type {
	border-radius: 0 10px 10px 0;
	overflow: hidden;
}
.works-wrap .txt-blk {
	position: relative;
	width: 100%;
	margin: 0 auto;
	/* padding: 80px 20%; */
	padding: 80px 15%;
	font-size: 1.8rem;
}
/* .works-wrap svg {
	opacity: .8;
} */
.works-wrap .movetxt {
	/* top: -50px; */
	/* right: 0; */
	/* width: 45%; */
}
/* #txtdesign.movetxt {
	width: 38%;
	right: unset;
	left: 0;
} */
/* #txtcore.movetxt {
	width: 25%;
} */
/* #txtmodel.movetxt {
	right: unset;
	left: 0;
} */
/*------------------------------------- recruit */
.recruit-wrap {
	position: relative;
}
.recruit-wrap:nth-of-type(even) {
	background-color: #e8e8e8;
	margin-bottom: 120px;
	padding-top: 120px;
	padding-bottom: 1px;
}
.recruit-wrap:last-of-type {
	margin-bottom: 0;
}
.recruit-wrap .message-wrap {
	margin-bottom: 50px;
}
.recruit-wrap .inner {
	margin-bottom: 80px;
}
.recruit-wrap .inner:last-of-type {
	margin-bottom: 0;
}
.recruit-wrap h2 {
	position: relative;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 4.0rem;
	letter-spacing: .075em;
	text-align: center;
}
.recruit-wrap h2 .mainttl {
	display: block;
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	font-weight: 700;
	font-size: 2.0rem;
	letter-spacing: .1em;
}
.recruit-wrap h3 {
	position: relative;
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	font-weight: 700;
	font-size: 2.8rem;
	line-height: 1.3;
	letter-spacing: .1em;
	padding-left: .6em;
}
.recruit-wrap h3::before,
.recruit-wrap h3::after {
	content: '';
	position: absolute;
	left: 0;
	display: block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
}
.recruit-wrap h3::before {
	top: calc( 50% - 12px );
	background-color: #848484;
}
.recruit-wrap h3::after {
	top: calc( 50% + 2px );
	background-color: #333333;
}
.recruit-wrap .btn {
	margin: 50px auto 0;
}
/*------------------------------------- news */
.news-wrap {
	max-width: 1100px;
	width: 100%;
	margin: 0 auto 120px;
}
.news-wrap .news-list {
	border-top: 1px solid #d4d4d4;
}
.news-wrap .news-list li {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: start;
	justify-content: flex-start;
	padding: 1.5em 2em;
	border-bottom: 1px solid #d4d4d4;
}
.news-wrap time {
	font-family: 'Montserrat', "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	font-weight: 700;
	letter-spacing: .075em;
	color: #808080;
}
.news-wrap .news-list time {
	width: 8em;
}
.news-wrap .news-list a {
	color: #333333;
}
.news-wrap .news-list a:hover {
	opacity: .7;
}
.pagination {
	margin-top: 50px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 1.5rem;
}
.pagination ul {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
}
.pagination li {
	margin: 0 5px 0;
}
.pagination .current,
.pagination a {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	align-items: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid #333333;
}
.pagination .current {
	color: #FFF;
	background-color: #333333;
}
.pagination a {
	color: #333333;
}
.pagination a:hover {
	color: #FFF;
	background-color: #333333;
}
.pagination a.next,
.pagination a.prev {
	position: relative;
	width: 90px;
	border-radius: 18px;
}
.pagination a.next {
	-webkit-box-pack: start;
	justify-content: flex-start;
	padding-left: 1em;
}
.pagination a.next::after {
	content: '';
	position: absolute;
	right: .5em;
	top: 50%;
	transform: translateY(-50%);
	display: block;
	width: 22px;
	height: 5px;
	background: url(../images/arrow.svg) no-repeat center center;
	background-size: contain;
	transition: all .3s ease;
}
.pagination a.next:hover {
	background-color: transparent;
	color: #333333;
}
.pagination a.next:hover::after {
	right: .3em;
}
.pagination a.prev {
	-webkit-box-pack: end;
	justify-content: flex-end;
	padding-right: 1em;
}
.pagination a.prev::before {
	content: '';
	position: absolute;
	left: .5em;
	top: 50%;
	transform: translateY(-50%);
	display: block;
	width: 22px;
	height: 5px;
	background: url(../images/arrow-re.svg) no-repeat center center;
	background-size: contain;
	transition: all .3s ease;
}
.pagination a.prev:hover {
	background-color: transparent;
	color: #333333;
}
.pagination a.prev:hover::before {
	left: .3em;
}
.news-wrap h3 {
	position: relative;
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	font-weight: 700;
	font-size: 2.8rem;
	line-height: 1.3;
	letter-spacing: .1em;
	padding-left: .6em;
}
.news-wrap h3::before,
.news-wrap h3::after {
	content: '';
	position: absolute;
	left: 0;
	display: block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
}
.news-wrap h3::before {
	top: calc( 50% - 12px );
	background-color: #848484;
}
.news-wrap h3::after {
	top: calc( 50% + 2px );
	background-color: #333333;
}
.news-wrap .btn {
	margin: 50px auto 0;
}
/*------------------------------------- policy */
#policy #page-title h1 {
	font-size: 3.3vw;
}
.policy-wrap h2 {
	position: relative;
	font-size: 4.0rem;
	letter-spacing: .1em;
	text-align: left;
	padding-left: 40px;
	margin-left: -8.5%;
	line-height: 1.5;
	margin-top: 80px;
	margin-bottom: 50px;
}
.policy-wrap h2::before {
	content: '';
	position: absolute;
	left: 0;;
	top: 50%;
	display: block;
	width: 24px;
	height: 2px;
	background-color: #333333;
}
.policy-wrap h2:first-of-type {
	margin-top: 0;
}
.policy-wrap h3 {
	font-size: 2.8rem;
	border-bottom: 1px solid #333333;
}
/*------------------------------------- contact */
#contact .content-wrap h2 {
	position: relative;
	font-size: 4.0rem;
	letter-spacing: .1em;
	text-align: left;
	padding-left: 40px;
	margin-left: -8.5%;
	line-height: 1.5;
	margin-top: 80px;
	margin-bottom: 50px;
}
#contact .content-wrap h2::before {
	content: '';
	position: absolute;
	left: 0;;
	top: 50%;
	display: block;
	width: 24px;
	height: 2px;
	background-color: #333333;
}
#contact .content-wrap h3 {
	position: relative;
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	font-weight: 700;
	font-size: 2.8rem;
	line-height: 1.3;
	letter-spacing: .1em;
	padding-left: .6em;
	margin-top: 80px;
}
#contact .content-wrap h3::before,
#contact .content-wrap h3::after {
	content: '';
	position: absolute;
	left: 0;
	display: block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
}
#contact .content-wrap h3::before {
	top: calc( 50% - 12px );
	background-color: #848484;
}
#contact .content-wrap h3::after {
	top: calc( 50% + 2px );
	background-color: #333333;
}
.need {
	display: inline-block;
	margin-left: .5em;
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	font-weight: 700;
	font-size: 1.4rem;
	line-height: 1;
	background-color: #990000;
	color: #FFF;
	padding: .3em .5em;
}
.content-wrap form table th {
	width: 24%;
	padding-right: 0;
	vertical-align: top;
}
.content-wrap form table td {
	width: 76%;
}
input[type="text"],
input[type="email"],
textarea {
	width: 100%;
	padding: .4em;
	border: none;
	background-color: #FFF;
	border: none;
}
select {
	border: none;
	margin: 1em 0;
	padding: .4em;
}
.policy-blk {
	background-color: #e8e8e8;
	padding: 1.5em 2.5em;
}
.contact-btns {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	margin-top: 2.5em;
}
.submitconfirm {
	width: 280px;
	height: 60px;
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	font-weight: 700;
	letter-spacing: .025em;
	border-radius: 30px;
	margin: 0 2%;
	transition: all .3s ease;
}
.submitconfirm:hover {
	opacity: .7;
	cursor: pointer;
}
.back {
	width: 150px;
	height: 60px;
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	font-weight: 700;
	letter-spacing: .025em;
	border-radius: 30px;
	margin: 0 2%;
	transition: all .3s ease;
}
.back:hover {
	opacity: .7;
	cursor: pointer;
}
/*------------------------------------------
 responsive
--------------------------------------------*/
@media screen and (max-width: 1600px) {
	
}
@media screen and (max-width: 1500px) {
	#top-about .txt-grp,
	footer .inner {
		width: 90%;
	}
	#top-works .txt-grp {
		padding-left: 10%;
	}
	#page-title {
		height: 530px;
		padding-top: 70px;
	}
	#page-title .title-blk,
	#page-title figure {
		width: 50%;
	}
	#page-title figure {
		height: 360px;
	}
	#page-title .title-blk,
	.breadcrumbs {
		padding-left: 5%;
	}
	.breadcrumbs {
		margin-top: 60px;
	}
	.about-wrap h2 {
		margin-left: -6%;
	}
	#greeting .txt-blk {
		padding-right: 5%;
	}
	.works-wrap .img-blk,
	.works-wrap .img-blk-1,
	.works-wrap .img-blk-2 {
		width: 90%;
	}
	.works-wrap .txt-blk {
		padding: 80px 15%;
	}
	#policy #page-title h1 {
		font-size: 4.0vw;
	}
	.policy-wrap h2 {
		margin-left: -6%;
	}
}
@media screen and (max-width: 1400px) {
	header .logo {
		max-width: 240px;
	}
	#top-recruit .txt-blk {
		left: 5%;
		width: 90%;
	}
	/* .works-wrap .movetxt {
		width: 60%;
	} */
	#greeting h2 {
		font-size: 3.6rem;
	}
}	
@media screen and (max-width: 1300px) {
}
@media screen and (max-width: 1200px) {
	body {
		font-size: 15px;
		font-size: 1.5rem;
	}
	.sp-nav {
		display: block;
	}
	.gnav {
		display: none;
	}
	a[href^='tel:'] {
		pointer-events:initial;
	}
	header {
		height: 60px;
	}
	.btn-contact {
		display: none;
	}
	.drawer-nav {
		width: 100%;
		height: 100vh;
		padding: 80px 5%;
		background-color: #333333;
		color: #FFF;
		z-index: 11;
		text-align: center;
	}
	.drawer--right .drawer-nav {
		right: -100%;
	}
	.drawer-hamburger {
		width: 34px;
		z-index: 12;
		padding: 18px 0 30px;
	}
	.drawer--right .drawer-hamburger,
	.drawer--right.drawer-open .drawer-hamburger {
		right: 5px;
	}
	.drawer-hamburger-icon, 
	.drawer-hamburger-icon:after, 
	.drawer-hamburger-icon:before {
		background-color: #333;
	}
	.drawer-open .drawer-hamburger-icon, 
	.drawer-open .drawer-hamburger-icon:after, 
	.drawer-open .drawer-hamburger-icon:before {
		background-color: #FFF;
	}
	#index .fixed .drawer-hamburger-icon, 
	#index .fixed .drawer-hamburger-icon:after, 
	#index .fixed .drawer-hamburger-icon:before {
		background-color: #333;
	}
	#index.drawer-open  .fixed .drawer-hamburger-icon, 
	#index.drawer-open  .fixed .drawer-hamburger-icon:after, 
	#index.drawer-open  .fixed .drawer-hamburger-icon:before {
		background-color: #FFF;
	}
	#index .drawer-hamburger-icon, 
	#index .drawer-hamburger-icon:after, 
	#index .drawer-hamburger-icon:before {
		background-color: #FFF;
	}
	.drawer-open .drawer-hamburger-icon,
	#index.drawer-open .drawer-hamburger-icon,
	#index.drawer-open  .fixed .drawer-hamburger-icon {
		background-color: transparent;
	}
	.drawer-nav a {
		font-family: 'Montserrat', sans-serif;
		font-weight: 700;
		font-size: 1.8rem;
		letter-spacing: .05em;
		color: #FFF;
	}
	.drawer-menu li {
		padding: 1em;
	}
	main {
		padding-top: 60px;
	}
	#top-about .txt-grp,
	footer .inner {
		width: 94%;
	}
	footer .nav-blk ul {
		-webkit-box-pack: start;
    	justify-content: flex-start;
		flex-wrap: wrap;
	}
	footer .nav-blk li {
		margin: 0 2em 0 0;
	}
	footer .nav-blk li:first-child {
		margin-left: 0;
	}
	footer .nav-blk li:last-child {
		margin-right: 0;
	}
	.sns-wrap {
		right: 5px;
		width: 40px;
	}
	.sns-wrap a {
		width: 40px;
		height: 40px;
	}
	.sns-wrap ul li {
		margin-bottom: 10px;
	}
	#mv .catch {
		font-size: 3vw;
	}
	#top-about h3 .subttl,
	#top-about h3 .catch,
	#top-works h3 .subttl,
	#top-recruit h3,
	#top-news h3 {
		font-size: 5.4rem;
		margin-bottom: 0;
	}
	#top-works h3 .mainttl,
	#top-recruit h3 .mainttl,
	#top-news h3 .mainttl {
		font-size: 1.8rem;
	}
	#top-about {
		padding-top: 220px;
		padding-bottom: 130px;
	}
	#top-about .txt-grp .ttl-blk {
		padding-left: 2%;
		padding-right: 5%;
	}
	#top-about h3 {
		margin-bottom: 60px;
	}
	#top-works {
		padding-bottom: 120px;
	}
	#top-works .txt-grp {
		padding-left: 7%;
	}
	#top-works h3 {
		margin-left: -1em;
		margin-bottom: 40px;
	}
	#top-works .txt-grp .top-btn {
		margin-top: 40px;
	}
	#top-works .img-grp dt {
		font-size: 1.4rem;
		padding-left: 50px;
	}
	#top-works .img-grp dt .subttl {
		font-size: 2.4rem;
	}
	#top-works .img-grp dt::before {
		width: 44px;
		height: 44px;
		font-size: 2.0rem;
	}
	#top-recruit {
		height: 540px;
		margin-bottom: 120px;
	}
	#top-news {
		width: 94%;
		margin-bottom: 120px;
	}
	#top-news h3 {
		margin-bottom: 40px;
	}
	#top-news h3 .subttl {
		margin-bottom: 0;
	}
	.top-btn {
		width: 100px;
		height: 100px;
	}
	.top-btn a {
		font-size: 1.5rem;
	}
	.top-btn a::after {
		width: 36px;
		height: 5px;
		right: -18px;
	}
	#page-title {
		height: 450px;
		padding-top: 60px;
		margin-bottom: 120px;
	}
	#page-title figure {
		height: 300px;
	}
	.breadcrumbs {
		margin-top: 50px;
	}
	#page-title h1 {
		font-size: 5.4rem;
	}
	#page-title h1 .mainttl {
		font-size: 2.2rem;
	}
	#greeting {
		align-items: unset;
		margin-bottom: 120px;
	}
	#greeting .sign {
		font-size: 1.8rem;
	}
	.about-wrap .inner {
		width: 90%;
	}
	.content-wrap {
		width: 94%;
		margin-bottom: 100px;
	}
	.content-wrap h2 .subttl {
		font-size: 3.6rem;
	}
	.content-wrap h2 .mainttl {
		font-size: 1.8rem;
	}
	.content-wrap h3 {
		font-size: 1.8rem;
	}
	.content-wrap th {
		padding-left: 1.5em;
		padding-right: .5em;
	}
	.content-wrap td {
		padding-right: 1.5em;
	}
	#greeting h2 {
		font-size: 3.0rem;
	}
	.about-wrap {
		padding-top: 80px;
	}
	.about-wrap .inner {
		padding-bottom: 60px;
	}
	.about-wrap figure {
		height: 400px;
	}
	.about-wrap h2 {
		margin-left: -4%;
	}
	.about-wrap p {
		margin-left: 3%;
	}
	.movetxt {
		/* width: 60%; */
		top: -4.25vw;
		font-size: 8.5vw;
	}
	#vision {
		margin-bottom: 100px;
	}
	.works-wrap {
		margin-bottom: 20px;
	}
	.works-wrap:nth-of-type(odd) {
		padding-top: 100px;
		margin-bottom: 100px;
	}
	.works-wrap:last-of-type {
		margin-bottom: 0;
	}
	.works-wrap h2 {
		font-size: 3.6rem;
	}
	.works-wrap h2::before {
		width: 60px;
		height: 60px;
		font-size: 2.4rem;
	}
	.works-wrap h2 .mainttl {
		font-size: 1.8rem;
	}
	.recruit-wrap h2 {
		font-size: 3.6rem;
	}
	.recruit-wrap h2 .mainttl {
		font-size: 1.8rem;
	}
	.recruit-wrap h3,
	.news-wrap h3 {
		font-size: 2.4rem;
		letter-spacing: .05em;
	}
	.recruit-wrap h3::before,
	.recruit-wrap h3::after,
	.news-wrap h3::before,
	.news-wrap h3::after {
		width: 8px;
		height: 8px;
	}
	.recruit-wrap h3::before,
	.news-wrap h3::before {
		top: 6px;
	}
	.recruit-wrap h3::after,
	.news-wrap h3::after {
		top: 17px;
	}
	.policy-wrap .content-wrap {
		padding-left: 2%;
	}
	.policy-wrap h2 {
		margin-left: -4%;
	}
}
@media screen and (max-width: 1100px) {
	/* #mv .catch, .fadeinUp, .fadeinL, .fadeinR,#aboutus-txt,.sns-wrap {
		opacity: 1;
	} */
	/* .movetxt.show {
		opacity: .8;
	} */
	footer .inner {
		flex-wrap: wrap;
		padding: 60px 0 0;
	}
	footer .txt-blk {
		width: 100%;
		text-align: center;
		margin-bottom: 30px;
	}
	footer .map {
		margin-top: 0;
	}
	footer .nav-blk {
		width: 100%;
		padding-top: 0;
	}
	#top-about .txt-grp {
		flex-wrap: wrap;
		margin-bottom: 60px;
	}
	#top-about .txt-grp .ttl-blk,
	#top-about .txt-grp .txt-blk {
		width: 100%;
	}
	#top-about .txt-grp .ttl-blk {
		display: -webkit-box;
		display: flex;
		-webkit-box-pack: justify;
		justify-content: space-between;
		align-items: center;
		flex-wrap: wrap;
	}
	#top-about h3 {
		width: calc( 100% - 100px );
		margin-bottom: 40px;
	}
	#top-about .txt-grp .txt-blk {
		padding-top: 0;
	}
	#top-about .img-grp .img1 {
		width: 60%;
	}
	#top-about .img-grp .img2 {
		width: 40%;
	}
	#top-about .img-grp .img2 img {
		width: 60%;
	}
	#top-works {
		flex-wrap: wrap;
	}
	#top-works .txt-grp {
		width: 100%;
		padding-right: 7%;
		margin-bottom: 20px;
	}
	#top-works .img-grp {
		width: 90%;
		margin: 0 auto;
	}
	#top-works .inner {
		display: -webkit-box;
		display: flex;
		-webkit-box-pack: justify;
		justify-content: space-between;
		align-items: center;
		flex-wrap: wrap;
	}
	#top-works h3 {
		margin-bottom: 20px;
	}
	#top-works .inner p {
		width: calc( 100% - 120px );
	}
	#top-works .txt-grp .top-btn {
		margin: 0
	}
	#top-recruit .half-wrap {
		flex-wrap: wrap;
		width: 100%;
	}
	#top-recruit .half-wrap p {
		width: calc( 100% - 150px );
	}
	#top-recruit .top-btn {
		margin-left: 30px;
	}
	#greeting {
		flex-direction: column-reverse;
	}
	#greeting figure {
		width: 90%;
		margin: 0 auto 40px;
		border-radius: 10px;
	}
	#greeting .txt-blk {
		width: 90%;
		margin: 0 auto;
		padding: 0;
	}
	.works-wrap svg {
		opacity: 1;
	}
	.news-wrap .news-list li {
		flex-wrap: wrap;
	}
	.news-wrap .news-list time {
		width: 100%;
	}
}
@media screen and (max-width: 1000px) {
	
	
}
@media screen and (max-width: 900px) {
}
@media screen and (max-width: 844px) {
	.pc-mode {
		display: none;
	}
	.sp-mode {
		display: block;
	}
	#top-about h3 .subttl, #top-about h3 .catch, #top-works h3 .subttl, #top-recruit h3, #top-news h3 {
		font-size: 4.8rem;
	}
	#top-works h3 .mainttl, #top-recruit h3 .mainttl, #top-news h3 .mainttl {
		font-size: 1.6rem;
	}
	#top-works h3 {
		margin-left: -.7em;
	}
	#top-recruit {
		height: 480px;
	}
	#page-title {
		display: block;
		height: auto;
		padding: 0;
		margin-bottom: 100px;
	}
	#page-title figure {
		width: 100%;
		height: 300px;
		border-radius: 0;
	}
	#page-title .title-blk {
		position: absolute;
		left: 3%;
		top: 30%;
		/* transform: translateY(-50%); */
		z-index: 2;
		display: block;
		width: 94%;
		color: #FFF;
		padding: 0;
	}
	.breadcrumbs {
		margin: .5em 3%;
		padding: 0
	}
	#greeting figure {
		width: 100%;
		border-radius: 0;
	}
	#greeting .txt-blk {
		width: 94%;
	}
	.movetxt {
		/* width: 80%; */
		top: -5.25vw;
		font-size: 10.5vw;
	}
	#policy #page-title h1 {
		font-size: 5.4rem;
	}
}
@media screen and (max-width: 700px) {
	#top-about h3 .subttl, #top-about h3 .catch, #top-works h3 .subttl, #top-recruit h3, #top-news h3 {
		font-size: 4.0rem;
	}
	#top-about {
		padding-bottom: 80px;
	}
	#aboutus-txt {
		width: 80%;
	}
	#top-about .txt-grp .ttl-blk {
		padding-left: 5%;
	}
	#top-about .img-grp {
		flex-wrap: wrap;
	}
	#top-about .img-grp .img1 {
		width: 90%;
	}
	#top-about .img-grp .img2 {
		width: 80%;
		margin-left: auto;
		margin-top: 40px;
	}
	#top-about h3 {
		width: 100%;
		margin-bottom: 30px;
	}
	#top-about h3 .subttl {
		margin-left: -3rem;
		font-size: 4.0rem;
	}
	#top-works .inner p {
		width: 100%;
	}
	#top-recruit .half-wrap p {
		width: 100%;
	}
	#top-recruit .top-btn {
		margin-left: 0;
	}
	.top-btn {
		width: 80px;
		height: 80px;
	}
	.top-btn a {
		font-size: 1.2rem;
	}
	.top-btn a::after {
		width: 30px;
		height: 4px;
		right: -15px;
	}
	.content-wrap th,
	.content-wrap td {
		display: block;
		width: 100%;
		padding: 1em .5em;
	}
	.content-wrap th {
		border-bottom: none;
		padding-bottom: 0;
	}
	.content-wrap td {
		padding-top: 0;
	}
	.gmap {
		padding-top: 80%;
	}
	.movetxt {
		/* top: -30px; */
	}
	.works-wrap:nth-of-type(odd) {
		padding-top: 80px;
		margin-bottom: 80px;
	}
	.works-wrap:last-of-type {
		margin-bottom: 0;
	}
	.works-wrap .txt-blk {
		padding: 60px 7.5%;
	}
	/* .works-wrap .movetxt {
		width: 65%;
		top: -30px;
	} */
	/* #txtdesign.movetxt {
		width: 50%;
	} */
	/* #txtcore.movetxt {
		width: 40%;
	} */
	.recruit-wrap:nth-of-type(odd) {
		padding-top: 80px;
		margin-bottom: 80px;
	}
	#policy #page-title h1 {
		font-size: 4.4rem;
	}
	.content-wrap form table th,
	.content-wrap form table td {
		width: 100%;
	}
}
@media screen and (max-width: 600px) {
	
}
@media screen and (max-width: 480px) {
	#mv .catch {
		font-size: 2.4rem;
	}
	#top-about h3 .subttl, #top-about h3 .catch, #top-works h3 .subttl, #top-recruit h3, #top-news h3 {
		font-size: 3.6rem;
	}
	#top-works h3 .mainttl, #top-recruit h3 .mainttl, #top-news h3 .mainttl {
		font-size: 1.5rem;
	}
	#top-about {
		padding-top: 160px;
	}
	#top-about .txt-grp .txt-blk {
		font-size: 1.6rem;
	}
	#aboutus-txt {
		width: 90%;
	}
	#top-works {
		padding-bottom: 80px;
	}
	#top-works .txt-grp {
		width: 94%;
		margin: 0 auto 30px;
		padding: 0;
		font-size: 1.6rem;
	}
	#top-works .img-grp dl {
		width: 100%;
	}
	#top-works h3 {
		margin-bottom: 0;
		margin-left: 0;
	}
	#top-works h3 .subttl {
		padding-left: 28px;
	}
	#top-works h3 .subttl::before {
		width: 18px;
	}
	#top-recruit {
		margin-bottom: 80px;
	}
	#top-recruit .img-grp {
		flex-wrap: wrap;
	}
	#top-recruit .img-grp figure {
		width: 50%;
		height: 50%;
	}
	#top-recruit .txt-blk {
		font-size: 1.6rem;
	}
	#top-news ul li {
		flex-wrap: wrap;
		padding: 1.5em 1em;
	}
	#top-news ul li time {
		width: 100%;
	}
	#top-news ul li a {
		width: 100%;
	}
	.btn {
		max-width: initial;
	}
	#page-title {
		margin-bottom: 80px;
	}
	#page-title figure {
		height: 200px;
	}
	#page-title h1 {
		font-size: 4.0rem;
	}
	#page-title h1 .mainttl {
		font-size: 2.0rem;
		letter-spacing: .05em;
	}
	.content-wrap {
		margin-bottom: 80px;
	}
	.content-wrap h2 {
		margin-bottom: 40px;
	}
	.gmap {
		padding-top: 100%;
	}
	.about-wrap .inner {
		padding-bottom: 40px;
	}
	.about-wrap h2 {
		padding-left: 24px;
	}
	.about-wrap h2::before {
		width: 18px;
	}
	.about-wrap h2 .subttl {
		font-size: 3.2rem;
	}
	.about-wrap h2 .mainttl {
		font-size: 1.6rem;
	}
	.about-wrap p {
		margin-left: 0;
	}
	.about-wrap figure {
		height: 300px;
	}
	.about-wrap,
	#greeting .txt-blk,
	.works-wrap .txt-blk {
		font-size: 1.6rem;
	}
	.movetxt {
		/* width: 90%;
		top: -20px; */
		top: -6.25vw;
		font-size: 12.5vw;
	}
	#greeting h2 {
		font-size: 3.0rem;
	}
	#vision {
		margin-bottom: 80px;
	}
	.works-wrap {
		margin-bottom: 0;
	}
	.works-wrap .img-blk, .works-wrap .img-blk-1, .works-wrap .img-blk-2 {
		width: 94%;
	}
	.works-wrap .img-blk-1,
	.works-wrap .img-blk-2 {
		display: block;
	}
	.works-wrap .img-blk-1 .left-blk {
		width: 100%;
		border-radius: 10px 10px 0 0;
	}
	.works-wrap .img-blk-1 .right-blk {
		width: 100%;
		border-radius: 0 0 10px 10px;
	}
	.works-wrap .img-blk-1 > div, 
	.works-wrap .img-blk-2 > figure {
		width: 100%;
	}
	/* .works-wrap .movetxt {
		width: 90%;
		top: -20px;
	}
	#txtdesign.movetxt {
		width: 70%;
	}
	#txtcore.movetxt {
		width: 60%;
	} */
	#policy #page-title h1 {
		font-size: 3.4rem;
	}
	.policy-wrap .content-wrap {
		padding-left: 0;
	}
	.policy-wrap h2 {
		font-size: 3.2rem;
		letter-spacing: .05em;
		margin-left: -2%;
		padding-left: 24px;
		margin-top: 60px;
	}
	.policy-wrap h3 {
		font-size: 2.4rem;
	}
}
@media screen and (max-width: 400px) {
	#policy #page-title h1 {
		font-size: 3.2rem;
	}
}
@media screen and (max-width: 350px) {
	#policy #page-title h1 {
		font-size: 3.0rem;
	}
}
@media screen and (max-width: 320px) {
	#policy #page-title h1 {
		font-size: 2.8rem;
	}
}