
body {
	font-family: heisei-kaku-gothic-std, sans-serif;
	font-weight: 300;
	position: relative;
    left: 0;
    overflow-x: hidden;
	-webkit-text-size-adjust: 100%; /* iphone横向き 文字拡大防止 */
}
img {
	display: block;
	width: 100%;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}
a {
	text-decoration: none;
	color: #000;
	transition: all .3s;
}
a:hover {
	filter: brightness(1.1);
}
p {
	font-size: 16px;
	line-height: 1.8;
}

/*==================================================================================
ヘッダー
==================================================================================*/
header {
	width: calc(100% - 130px);
	padding: 0 100px 0 30px!important;
	border-bottom: 1px #0b244f solid!important;
	background: rgba(255,255,255,0.9);
	position: relative;
	z-index: 9999;
}
.logo {
	width: 200px;
}
.sitename {
	padding: 10px 15px 5px;
	border: 1px #0049a0 solid;
	background: #fff;
	color: #0049a0;
	font-size: 24px;
	line-height: 1;	
}
header .btn_entry {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 240px;
	height: 100px;
	background: #0049a0;
	color: #fff;
}
header .btn_entry span {
	display: inline-block;
	padding-right: 30px;
	color: #fff;
	font-size: 30px;
	letter-spacing: 0.1em;
	position: relative;
}
header .btn_entry span::after {
	content: "";
	display: block;
	width: 12px;
	height: 12px;
	border-top: 4px #fff solid;
	border-right: 4px #fff solid;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%) rotate(45deg);
	transition: all .3s;
}
header .btn_entry:hover span::after {
	transform: translateX(5px) translateY(-50%) rotate(45deg);
}
/* ヘッダー固定 */
header.fix {
	width: calc(100% - 100px);
	padding: 0 70px 0 30px!important;
	position: fixed;
	top: 0;
	left: 0;
}
header.fix.active {
	background: #fff;
}
header.fix .logo {
	width: 140px;
}
header.fix .sitename {
	font-size: 20px;
}
header.fix .btn_entry {
	height: 70px;
}
header.fix .btn_entry span {
	font-size: 20px;
}
header.fix .btn_entry span::after {
	width: 8px;
	height: 8px;
	border-top: 3px #fff solid;
	border-right: 3px #fff solid;
}
header.fix nav.gnav_sp  {
    top: 70px;
}
header.fix .gnavToggle {
    width: 70px;
    height: 70px;
}

/* メニュー -----------------------*/
nav.gnav_sp {
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
    width: 100%;
	height: 100vh;
	background: rgba(0,0,0,0.8);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s;
    position: absolute;
    top: 100px;
    left: 0;
    z-index: 888;
	overflow: hidden;
}
nav.gnav_sp.active {
    opacity: 1;
	visibility: visible;
}
nav.gnav_sp ul {
	display: inline-block;
	width: calc(100% - 120px);
	max-width: calc(460px - 120px);
	height: calc(100vh - 120px);
	padding: 60px;
    background: #f2f2f2;
	opacity: 0;
	transition: all 0.3s;
	transform: translateX(100%);
}
nav.gnav_sp.active ul {
    opacity: 1;
	transform: translateX(0);
}
nav.gnav_sp ul li {
    width: 100%;
    border-bottom: 1px dotted #ccc;
}
nav.gnav_sp ul li a {
    display: block;
	padding: 20px 0;
	font-size: 16px;
	letter-spacing: 0.05em;
}
nav.gnav_sp ul li:last-child {
	display: none;
	padding-top: 20px;
    padding-bottom: 0;
    border-bottom: none;
}
nav.gnav_sp ul li:last-child a.btn_entry {
	display: flex;
	width: 100%;
	height: 80px;
	padding: 0;
}
nav.gnav_sp ul li:last-child a.btn_entry span {
	font-size: 24px;
}
nav.gnav_sp ul li:last-child a.btn_entry span::after {
	width: 8px;
	height: 8px;
	border-top: 3px #fff solid;
	border-right: 3px #fff solid;
}

.gnavToggle {
    display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: center;
	align-items: center;
    width: 100px;
    height: 100px;
    text-align: center;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 999;
}
.gnavToggle span {
    display: block;
    width: 40px;
	margin-bottom: 10px;
    border-bottom: solid 1px #0049a0;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
	position: relative;
}
.gnavToggle span:nth-child(3) {
	width: 100%;
	margin-bottom: 0;
    border: none;
    color: #0049a0;
	font-size: 14px;
	text-align: center;
}
/* spanをマイナス20度に */
.gnavToggle.active span:nth-child(1) {
	margin-bottom: 0;
    -webkit-transform: rotate(-20deg);
    -moz-transform: rotate(-20deg);
    transform: rotate(-20deg);
}
.gnavToggle.active span:nth-child(2) {
	margin-bottom: 0;
	margin-top: -1px;
    -webkit-transform: rotate(20deg);
    -moz-transform: rotate(20deg);
    transform: rotate(20deg);
}
.gnavToggle.active span:nth-child(3) {
	margin-top: 10px;
}

/*==================================================================================
共通
==================================================================================*/
/* レイアウト */
main.mt {
	margin-top: 71px;
}
section {
	padding: 160px 0 0!important;
}
.container {
	width: calc(100% - 100px);
	max-width: 1200px;
	padding: 0 50px;
	margin: auto;
}
.max1600 {
	max-width: 1600px;
	margin: auto;
}
.max1400 {
	max-width: 1400px;
	margin: auto;
}
.max960 {
	max-width: 960px;
	margin: auto;
}
.row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.row.align_center {
	align-items: center;
}
.row.just_center {
	justify-content: center;
}
.row.just_start {
	justify-content: flex-start;
}
.col2 {
	width: calc(50% - 40px);
}
.col3 {
	width: calc(100% / 3 - 40px);
}
.col3_2 {
	width: calc((100% / 3 - 20px) * 2);
}
.col4 {
	width: calc(100% / 4 - 20px);
}

.mb_10 {
	margin-bottom: 10px;
}
.mb_20 {
	margin-bottom: 20px;
}
.mb_30 {
	margin-bottom: 30px;
}
.mb_60 {
	margin-bottom: 60px;
}
.mb_120 {
	margin-bottom: 120px;
}
.mr_20 {
	margin-right: 20px;
}

.z2 {
	position: relative;
	z-index: 2;
}
.wrap {
	display: inline-block;
}

/* フォント */
h1 {
	color: #cdd8e8;
	font-size: 20px;
	line-height: 1;
	letter-spacing: 0.2em;
	position: relative;
}
h1::before {
	content: "";
	display: block;
	width: 40px;
	height: 40px;
	background: url("../img/h1.gif") center center / contain no-repeat;
	position: absolute;
	top: 0;
	left: -50px;
}
h1 span {
	display: block;
	font-size: 130px;
	line-height: 0.7;
	letter-spacing: 0;
}
.font_12 {
	font-size: 12px;
}
.font_20 {
	font-size: 20px;
	line-height: 1.6;
}
.font_24 {
	font-size: 24px;
	line-height: 1.6;
}
.font_30 {
	font-size: 30px;
	line-height: 1.6;
}
.font_40 {
	font-size: 40px;
	line-height: 1.6;
}
.font_50 {
	font-size: 50px;
	line-height: 1.4;
}
.txt_center {
	text-align: center;
}
.medium {
	font-weight: 700;
}
.bold {
	font-weight: 900;
}
.eng {
	font-family: futura-pt, sans-serif;
	font-weight: 700;
}
.eng.bold {
	font-weight: 800;
}
.blue {
	color: #0049a0;
}
.navy {
	color: #0b244f;
}
.indent {
	padding-left: 1em;
	text-indent: -1em;
}

/* ボタン */
.btn {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 300px;
	height: 60px;
	border: 1px #0b244f solid;
	background: #fff;
	box-shadow: 5px 5px 0 #0b244f;
	position: relative;
	transition: all .1s;
}
.btn::after {
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	border-top: 3px #0b244f solid;
	border-right: 3px #0b244f solid;
	position: absolute;
	top: 50%;
	right: 30px;
	transform: translateY(-50%) rotate(45deg);
}
.btn:hover {
	filter: none;
	border: 1px #0049a0 solid;
	box-shadow: none;
	transform: translate(4px,4px);
}
.btn:hover::after {
	border-top: 3px #0049a0 solid;
	border-right: 3px #0049a0 solid;
}
.btn:hover span {
	color: #0049a0;
}

/* アニメーション -----------*/
.animated.fadeinup {
	animation: fadeinup .6s;
}
@keyframes fadeinup {
	0% {opacity: 0; transform: translateY(30px);}
	100% {opacity: 1; transform: translateY(0);}
}
.animated.fadeinup.second {
	animation: fadeinup_2nd 1.2s;
}
@keyframes fadeinup_2nd {
	0% {opacity: 0; transform: translateY(30px);}
	50% {opacity: 0; transform: translateY(30px);}
	100% {opacity: 1; transform: translateY(0);}
}
.animated.fadeinright {
	animation: fadeinright .6s;
}
@keyframes fadeinright {
	0% {opacity: 0; transform: translateX(30px);}
	100% {opacity: 1; transform: translateX(0);}
}
.animated.fadeinright.second {
	animation: fadeinright_2nd 1.2s;
}
@keyframes fadeinright_2nd {
	0% {opacity: 0; transform: translateX(30px);}
	50% {opacity: 0; transform: translateX(30px);}
	100% {opacity: 1; transform: translateX(0);}
}


/*==================================================================================
INDEX
==================================================================================*/
section#main {
	height: calc(60vh - 100px);
	min-height: calc(640px - 100px);
	padding: 100px 0 0!important;
	background: #f0f4f7;
	position: relative;
	z-index: 2;
}
section#main .main_img {
	width: 80%;
	max-width: 1340px;
	min-width: 1260px;
	height: 100%;
	overflow: hidden;
	position: absolute;
	top: 0;
	right: 0;
}
section#main .main_img img {
	position: absolute;
	right: 0;
	top: 45%;
	transform: translateY(-50%);
}
section#main .container {
	max-width: 1600px;
}
section#main p {
	text-shadow: 0 0 20px #fff, 0 0 20px #fff, 0 0 20px #fff;
}
@media screen and (min-width: 1600px) {
	section#main p {
		font-size: 20px;
	}
	section#main p.font_30 {
		font-size: 46px;
		line-height: 1.8;
	}
	section#main p span.font_50 {
		font-size: 70px;
	}
}
@media screen and (max-width: 1600px) {
	section#main {
		height: calc(45vh - 60px);
		min-height: calc(600px - 60px);
		padding: 60px 0 0!important;
	}
	section#main .main_img {
		max-width: 1120px;
		min-width: 970px;
	}
	section#main .main_img img {
		top: auto;
		bottom: 0;
		transform: none;
	}
	section#main .container {
		max-width: 1400px;
	}
}
/* Service -----------------------------------------------------------------------*/
section#service .img,
section#training .img {
	height: 540px;
	overflow: hidden;
}
section#service .img img,
section#training .img img {
	height: 100%;
	object-fit: cover;
}
section#service .txt,
section#training .txt {
	padding-top: 60px;
}
/* Training ----------------------------------------------------------------------*/
section#training {
	overflow-x: hidden;
}
section#training .bg_gray {
	margin-top: -60px;
	padding: 30px 0;
	background: #f9f9f9;
	position: relative;
}
section#training .bg_gray::before {
	content: "";
	display: block;
	width: calc(100%  + 200px);
	height: 100%;
	background: #f9f9f9;
	position: absolute;
	top: 0;
	left: -100px;
}
section#training .exam {
	display: inline-block;
	padding: 12px 20px 8px;
	border: 1px #0b244f solid;
	background: #fff;
	line-height: 1;
	position: relative;
}
section#training .exam::before {
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	border-right: 1px #0b244f solid;
	border-bottom: 1px #0b244f solid;
	background: #fff;
	position: absolute;
	left: 25px;
	bottom: -6px;
	transform: rotate(45deg);
}
section#training .ttl {
	padding: 20px 0 20px 20px;
	line-height: 1;
	position: relative;
}
section#training .ttl::before {
	content: "";
	display: block;
	border: 30px transparent solid;
	border-top: 30px #dae3ef solid;
	border-left: 30px #dae3ef solid;
	position: absolute;
	top: 0;
	left: 0;
}
/* Intervew ----------------------------------------------------------------------*/
section#top_interview {
	position: relative;
}
section#top_interview::before {
	content: "";
	display: block;
	width: 100%;
	height: 280px;
	background: #f0f4f7;
	position: absolute;
	top: 190px;
	left: 0;
}
section#top_interview h1::before {
	display: none;
}
section#top_interview h1 span {
	font-size: 80px;
}
section#top_interview .img {
	overflow: hidden;
}
section#top_interview .img img {
	transition: all .3s;
}
.viewmore {
	text-align: right;
	padding: 0 50px 0 0;
	position: relative;
}
.viewmore::before {
	content: "";
	display: block;
	width: 36px;
	height: 36px;
	background: #0b244f;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%) rotate(45deg);
	transition: all .3s;
}
.viewmore::after {
	content: "";
	display: block;
	width: 5px;
	height: 5px;
	border-top: 2px #fff solid;
	border-right: 2px #fff solid;
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%) rotate(45deg);
	transition: all .3s;
}
.viewmore span {
	display: inline-block;
	border-bottom: 1px #0b244f solid;
}
.year {
	display: inline-block;
	margin-right: 5px;
	padding: 4px;
	background: #0b244f;
	color: #fff;
	line-height: 1;
}
section#top_interview a:hover {
	filter: brightness(1.05);
}
section#top_interview a:hover .img img {
	transform: scale(1.1);
}
section#top_interview a:hover .viewmore::before {
	transform: translateX(5px) translateY(-50%) rotate(45deg);
	background: #0049a0;
}
section#top_interview a:hover .viewmore::after {
	transform: translateX(5px) translateY(-50%) rotate(45deg);
}
section#top_interview a:hover .viewmore span {
	color: #0049a0;
}
/* Guidelines --------------------------------------------------------------------*/
section#top_guidelines .bg {
	padding: 80px 20px;
	background: url("../img/top_guidelines_bg.png") center center / cover no-repeat;
	color: #fff;
	text-align: center;
}
section#top_guidelines h1 {
	color: #fff;
	font-size: 50px;
	line-height: 1.2;
	letter-spacing: 0.1em;
}
section#top_guidelines h1::before {
	display: none;
}
section#top_guidelines h1 span {
	font-size: 20px;
	line-height: 1;
}
section#top_guidelines .btn {
	border: 1px #fff solid;
	background: none;
	box-shadow: none;
	color: #fff;
}
section#top_guidelines .btn::after {
	border-top: 3px #fff solid;
	border-right: 3px #fff solid;
}
section#top_guidelines .btn:hover {
	background: #fff;
	transform: none;
}
section#top_guidelines .btn:hover::after {
	border-top: 3px #0049a0 solid;
	border-right: 3px #0049a0 solid;
}
/* FAQ --------------------------------------------------------------------------*/
dl.accordion dl {
	width: 100%;
}
dl.accordion dt {
	padding: 20px 50px 20px 65px;
	border-right: 2px #0b244f solid;
	border-bottom: 2px #0b244f solid;
	cursor: pointer;
	position: relative;
}
dl.accordion dt::after {
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	border-right: 3px #0b244f solid;
	border-bottom: 3px #0b244f solid;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%) rotate(45deg);
}
dl.accordion dt p {
	line-height: 1.4;
}
dl.accordion dt span {
	position: absolute;
	top: 3px;
	left: 0;
}
dl.accordion dd {
	display: none;
	padding: 30px;
	background: #f0f4f7;
}

/*==================================================================================
社員インタビュー	
==================================================================================*/
section#interview_list {
	padding: 80px 0!important;
	position: relative;
}
section#interview_list::before {
	content: "";
	display: block;
	width: 100%;
	height: calc(100% - 80px - 20px);
	background: #f0f4f7;
	position: absolute;
	left: 0;
	bottom: 0;
}
section#interview_list h1::before {
	display: none;
}
section#interview_list h1 span {
	font-size: 80px;
}
section#interview_list .boad {
	width: calc(50% - 15px - 40px);
	padding: 20px;
	background: #fff;
	position: relative;
}
section#interview_list .boad .img {
	width: 160px;
	height: 100%;
	overflow: hidden;
}
section#interview_list .boad .img img {
	height: 100%;
	object-fit: cover;
	transition: all .3s;
}
section#interview_list .boad .txt {
	width: calc(100% - 160px - 20px);
	padding-bottom: 40px;
}
section#interview_list .viewmore {
	position: absolute;
	right: 20px;
	bottom: 20px;
}
section#interview_list .viewmore::after {
	content: "";
	transform: translateY(-50%) rotate(135deg);
	transition: all .3s;
}
section#interview_list a:hover .img img {
	transform: scale(1.1);
}
section#interview_list a:hover .viewmore::before {
	background: #0049a0;
	transform: translateY(5px) translateY(-50%) rotate(45deg);
}
section#interview_list a:hover .viewmore::after {
	transform: translateY(5px) translateY(-50%) rotate(135deg);
}
section#interview_list a:hover .viewmore span {
	color: #0049a0;
}

section.interview .main {
	position: relative;
}
section.interview .main .txt {
	padding: 30px;
	background: #fff;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 2;
}
section.interview .question {
	padding: 10px 0 0 100px;
	line-height: 1.4;
	position: relative;
}
section.interview .question span {
	line-height: 1;
	position: absolute;
	top: 2px;
	left: 0;
}
section.interview .sepa {
	border-bottom: 1px #ccc solid;
}

/*==================================================================================
募集要項, 会社概要
==================================================================================*/
section#guidelines,
section#company {
	padding: 80px 0!important;
	background: #f9f9f9;
	position: relative;
}
.info_page .col2 {
	width: calc(50% - 30px);
}
section#guidelines.info_page .col2:first-child {
	padding-top: 80px;
}
.info_page h1 {
	font-size: 50px;
	line-height: 1.2;
	letter-spacing: 0.1em;
}
.info_page h1::before {
	display: none;
}
.info_page h1 span {
	font-size: 20px;
	line-height: 1;
}
.info_page .term {
	position: relative;
}
.info_page .term::after {
	content: "";
	display: block;
	width: calc(100% - 200px - 20px);
	border-bottom: 1px #0049a0 solid;
	position: absolute;
	top: 50%;
	right: 0;
}
.info_page .img {
	width: 100%;
	height: 570px;
	overflow: hidden;
}
.info_page .img img {
	height: 100%;
	object-fit: cover;
}
.info_page .boad {
	margin-top: -60px;
	padding: 120px 60px;
	background: #fff;
}
.info_page .boad.mt_non {
	margin-top: 0;
}
section#company.info_page .boad {
	margin-top: -100px;
	padding: 200px 60px 60px;
}
section#company.info_page .boad.mt_non {
	margin-top: 0;
	padding: 60px;
}
.info_page table {
	width: 100%;
}
.info_page table tr {
	border-bottom: 1px #ccc solid;
}
.info_page table th {
	width: 200px;
	padding: 20px 0;
	color: #999;
	font-weight: 700;
	text-align: left;
	letter-spacing: 0.05em;
	vertical-align: middle;
}
.info_page table td {
	width: calc(100% - 200px);
	padding: 20px 0;
	vertical-align: middle;
}

/*==================================================================================
フッター
==================================================================================*/
footer .btn_entry {
	display: flex;
	align-items: center;
	width: calc(100% - 240px);
	height: 240px;
	padding: 0 120px;
	background: #0049a0;
	color: #fff;
	position: relative;
}
footer .btn_entry::before {
	content: "";
	display: block;
	width: 120px;
	border-bottom: 3px #fff solid;
	position: absolute;
	top: 50%;
	right: 60px;
	transform: translateY(-50%);
	transition: all .3s;
}
footer .btn_entry::after {
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	border-top: 3px #fff solid;
	border-right: 3px #fff solid;
	position: absolute;
	top: 50%;
	right: 60px;
	transform: translateY(-50%) rotate(45deg);
	transition: all .3s;
}
footer .btn_entry p {
	color: rgba(255,255,255,0.3);
	line-height: 1.2;
	letter-spacing: 0.1em;
}
footer .btn_entry span {
	color: #fff;
	font-size: 80px;
	letter-spacing: 0.05em;
}
footer .btn_entry:hover::before {
	transform: translateX(10px) translateY(-50%);
}
footer .btn_entry:hover::after {
	transform: translateX(10px) translateY(-50%) rotate(45deg);
}

footer .bg {
	padding: 60px 0;
	background: #f0f4f7;
	color: #0b244f;
	position: relative;
}
footer .bg::before {
	content: "";
	display: block;
	width: 100%;
	height: 60px;
	background: #f0f4f7;
	position: absolute;
	top: -60px;
	left: 0;
}
footer .logo img {
	width: 200px;
}
footer nav.foot_nav {
	width: calc(100% - 400px - 40px);
}
footer nav.foot_nav ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
}
footer nav.foot_nav ul li {
	margin-left: 30px;
}
footer nav.foot_nav ul li a {
	color: #0b244f;
	font-size: 14px;
}
footer .sitename {
	padding: 12px 50px 10px;
	border: 1px #0b244f solid;
	background: none;
	color: #0b244f;
	font-size: 16px;
	position: absolute;
	right: 50px;
	bottom: 0;
}
footer .sitename::after {
	content: "";
	display: block;
	width: 6px;
	height: 6px;
	border-top: 2px #0b244f solid;
	border-right: 2px #0b244f solid;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%) rotate(45deg);
}
footer .copy {
	padding: 20px;
	background: #0b244f;
	color: #fff;
	font-size: 12px;
	text-align: center;
}


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



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

@media screen and (max-width : 960px) {
	.pc {display: none;}
	.tb {display: inline;}
	
	p { font-size: 14px; }
	
	/*==================================================================================
	ヘッダー
	==================================================================================*/
	header {
		width: calc(100% - 30px);
		padding: 0 10px 0 20px!important;
	}
	.logo {
		width: 140px;
	}
	.sitename {
		padding: 6px 10px;
		font-size: 18px;
	}
	header .btn_entry {
		display: none;
	}
	/* ヘッダー固定 */
	header.fix {
		width: calc(100% - 30px);
		padding: 0 10px 0 20px!important;
	}
	header.fix .logo {
		width: 120px;
	}
	header.fix .sitename {
		font-size: 14px;
	}
	header.fix nav.gnav_sp  {
	    top: 50px;
	}
	header.fix .gnavToggle {
	    width: 50px;
	    height: calc(50px - 10px);
		padding-top: 10px;
	}
	header.fix .gnavToggle span {
		margin-bottom: 6px;
	}
	/* メニュー -----------------------*/
	nav.gnav_sp {
	    top: 60px;
	}
	nav.gnav_sp ul {
		display: inline-block;
		width: calc(100% - 60px);
		max-width: calc(360px - 60px);
		height: calc(100vh - 60px);
		padding: 30px;
	}
	nav.gnav_sp ul li a {
		font-size: 14px;
	}
	nav.gnav_sp ul li:last-child {
		display: flex;
	}
	nav.gnav_sp ul li:last-child a.btn_entry {
		display: flex;
		width: 100%;
		height: 60px;
		padding: 0;
	}
	nav.gnav_sp ul li:last-child a.btn_entry span {
		font-size: 20px;
	}
	nav.gnav_sp ul li:last-child a.btn_entry span::after {
		width: 6px;
		height: 6px;
		border-top: 2px #fff solid;
		border-right: 2px #fff solid;
	}
	.gnavToggle {
	    width: 60px;
	    height: 60px;
	    position: relative;
	}
	.gnavToggle span {
	    width: 35px;
		margin-bottom: 8px;
	}
	.gnavToggle span:nth-child(3) {
		font-size: 12px;
	}
	/*==================================================================================
	共通
	==================================================================================*/
	/* レイアウト */
	main.mt {
		margin-top: 51px;
	}
	section {
		padding: 80px 0 0!important;
	}
	.container {
		width: calc(100% - 40px);
		max-width: 680px;
		padding: 0 20px;
	}
	.col2 {
		width: 100%;
		margin-bottom: 20px;
	}
	.col2.sp100 {
		width: calc(50% - 10px);
	}
	.col3 {
		width: 100%;
		max-width: 460px;
		margin: auto;
	}
	.col3_2 {
		width: 100%;
	}
	.col4 {
		width: 100%;
		max-width: 460px;
		margin: auto;
	}
	.mb_10 {
		margin-bottom: 5px;
	}
	.mb_20 {
		margin-bottom: 15px;
	}
	.mb_30 {
		margin-bottom: 20px;
	}
	.mb_60 {
		margin-bottom: 40px;
	}
	.mb_120 {
		margin-bottom: 80px;
	}

	/* フォント */
	h1 {
		padding-left: 25px!important;
		font-size: 16px;
	}
	h1::before {
		width: 20px;
		height: 20px;
		left: 0;
	}
	h1 span {
		font-size: 70px;
	}
	.font_20 {
		font-size: 18px;
		line-height: 1.6;
	}
	.font_24 {
		font-size: 20px;
	}
	.font_30 {
		font-size: 24px;
	}
	.font_40 {
		font-size: 28px;
	}
	.font_50 {
		font-size: 34px;
	}
	/* ボタン */
	.btn {
		width: 240px;
		height: 50px;
		box-shadow: 3px 3px 0 #0b244f;
	}
	.btn::after {
		width: 6px;
		height: 6px;
		border-top: 2px #0b244f solid;
		border-right: 2px #0b244f solid;
	}
	.btn:hover::after {
		border-top: 2px #0049a0 solid;
		border-right: 2px #0049a0 solid;
	}
	/*==================================================================================
	INDEX
	==================================================================================*/
	section#main {
		height: auto;
		min-height: 0;
		padding: 0 0 80px!important;
	}
	section#main .main_img {
		width: 100%;
		max-width: 100%;
		min-width: 0;
		height: auto;
		overflow: hidden;
		position: relative;
	}
	section#main .main_img img {
		position: relative;
	}
	section#main .container {
		max-width: 680px;
		margin-top: -60px;
	}
	section#main .boad {
		padding: 30px;
		background: rgba(255,255,255,0.9);
	}
	section#main p {
		text-shadow: none;
	}
	section#main p.font_30 {
		font-size: 28px;
		line-height: 2.2;
	}
	section#main p span.font_50 {
		font-size: 40px;
	}
	/* Service -----------------------------------------------------------------------*/
	section#service .img,
	section#training .img {
		height: 460px;
		position: relative;
	}
	section#service .txt,
	section#training .txt {
		margin-top: 30px;
		padding-top: 0;
	}
	.order2 {
		order: 2;
	}
	/* Training ----------------------------------------------------------------------*/
	section#training .bg_gray {
		margin-top: 30px;
		padding: 20px 0;
	}
	section#training .bg_gray::before {
		width: calc(100%  + 120px);
		left: -60px;
	}
	section#training .exam {
		padding: 10px 10px 6px;
	}
	section#training .ttl {
		padding: 15px 0 10px 10px;
	}
	section#training .ttl::before {
		border: 20px transparent solid;
		border-top: 20px #dae3ef solid;
		border-left: 20px #dae3ef solid;
	}
	/* Intervew ----------------------------------------------------------------------*/
	section#top_interview::before {
		height: 360px;
		top: 100px;
	}
	section#top_interview h1 {
		padding-left: 0!important;
	}
	section#top_interview h1 span {
		font-size: 50px;
	}
	section#top_interview .col4 {
		margin-bottom: 60px;
	}
	section#top_interview .col4:last-child {
		margin-bottom: 0;
	}
	.viewmore {
		padding: 0 35px 0 0;
	}
	.viewmore::before {
		width: 25px;
		height: 25px;
	}
	.viewmore::after {
		width: 4px;
		height: 4px;
		border-top: 2px #fff solid;
		border-right: 2px #fff solid;
		right: 10px;
	}
	section#top_interview .font_20 {
		font-size: 20px;
	}
	section#top_interview .btn .font_20 {
		font-size: 16px;
	}
	/* Guidelines --------------------------------------------------------------------*/
	section#top_guidelines .container {
		max-width: calc(100% - 40px);
	}
	section#top_guidelines .bg {
		padding: 60px 20px;
	}
	section#top_guidelines h1 {
		padding-left: 0!important;
		font-size: 36px;
	}
	section#top_guidelines h1 span {
		font-size: 18px;
	}
	section#top_guidelines .btn::after {
		border-top: 2px #fff solid;
		border-right: 2px #fff solid;
	}
	section#top_guidelines .btn:hover::after {
		border-top: 2px #0049a0 solid;
		border-right: 2px #0049a0 solid;
	}
	/* FAQ --------------------------------------------------------------------------*/
	dl.accordion dt {
		padding: 15px 50px 15px 50px;
		border-right: 1px #0b244f solid;
		border-bottom: 1px #0b244f solid;
	}
	dl.accordion dt::after {
		width: 6px;
		height: 6px;
		border-right: 2px #0b244f solid;
		border-bottom: 2px #0b244f solid;
	}
	dl.accordion dd {
		padding: 20px;
	}
	/*==================================================================================
	社員インタビュー	
	==================================================================================*/
	section#interview_list {
		padding: 40px 0!important;
	}
	section#interview_list::before {
		height: calc(100% - 40px - 20px);
	}
	section#interview_list h1 {
		padding-left: 0!important;
	}
	section#interview_list h1 span {
		font-size: 50px;
	}
	section#interview_list .boad {
		width: calc(100% - 40px);
	}
	section#interview_list .boad .img {
		width: 140px;
	}
	section#interview_list .boad .txt {
		width: calc(100% - 140px - 20px);
		padding-bottom: 0;
	}
	section#interview_list .viewmore {
		position: relative;
		right: auto;
		bottom: auto;
	}
	section.interview .main {
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-end;
	}
	section.interview .main .img {
		width: 100%;
		height: 240px;
		overflow: hidden;
		position: relative;
	}
	section.interview .main .img img {
		width: auto;
		height: 100%;
		position: relative;
		top: 0;
		left: 0;
	}
	section.interview .main .txt {
		display: inline-block;
		max-width: calc(100% - 40px - 20px);
		margin-top: -60px;
		padding: 20px;
		background: rgba(255,255,255,0.9);
		position: relative;
	}
	section.interview .question {
		padding: 6px 0 0 70px;
	}
	section.interview .question span {
		top: 0;
	}
	/*==================================================================================
	募集要項, 会社概要
	==================================================================================*/
	section#guidelines,
	section#company {
		padding: 80px 0!important;
	}
	.info_page .col2 {
		width: 100%;
		margin: auto;
	}
	.info_page .col2.sp100 {
		width: calc(50% - 10px);
		margin: 0!important;
	}
	section#guidelines.info_page .col2:first-child {
		margin-bottom: 30px;
		padding-top: 0;
	}
	.info_page h1 {
		padding: 0!important;
		font-size: 36px;
	}
	.info_page h1 span {
		font-size: 18px;
	}
	.info_page .term::after {
		width: calc(100% - 180px - 20px);
	}
	.info_page .img {
		height: 300px;
		margin: auto;
	}
	.info_page .container.max1400 {
		width: 100%;
		max-width: 960px;
		padding: 0;
	}
	.info_page .boad {
		margin-top: -40px;
		padding: 80px 20px;
	}
	section#company.info_page .boad {
		margin-top: -60px;
		padding: 120px 20px 60px;
	}
	section#company.info_page .boad.mt_non {
		padding: 20px;
	}
	.info_page table {
		max-width: 680px;
	}
	.info_page table th {
		width: 120px;
		padding: 20px 0;
	}
	.info_page table td {
		width: calc(100% - 120px);
		padding: 20px 0;
	}
	section#company.info_page table td table th {
		display: block;
		width: 100%;
		padding: 15px 0 5px;
	}
	section#company.info_page table td table tr:first-child th{
		padding: 0 0 5px;
	}
	section#company.info_page table td table td {
		display: block;
		width: 100%;
		padding: 0 0 15px;
	}
	section#company .col3 {
		max-width: 680px;
		order: 2;
	}
	section#company .col3 img {
		max-width: 460px;
	}
	section#company .col3_2 {
		max-width: 680px;
		margin: 0 auto 40px;
	}

	/*==================================================================================
	フッター
	==================================================================================*/
	footer .btn_entry {
		width: calc(100% - 80px);
		height: 120px;
		padding: 0 40px;
	}
	footer .btn_entry::before {
		width: 60px;
		border-bottom: 2px #fff solid;
		right: 40px;
	}
	footer .btn_entry::after {
		width: 12px;
		height: 12px;
		border-top: 2px #fff solid;
		border-right: 2px #fff solid;
		right: 40px;
	}
	footer .btn_entry span {
		font-size: 40px;
	}
	footer .bg {
		padding: 40px 0;
	}
	footer .bg::before {
		height: 60px;
		top: -60px;
	}
	footer .info {
		width: 100%;
		margin-bottom: 20px;
	}
	footer .logo {
		width: 100%;
	}
	footer .logo img {
		margin: auto;
	}
	footer .info p {
		font-size: 12px;
		text-align: center;
	}
	footer .info p.font_20 {
		font-size: 14px;
	}
	footer nav.foot_nav {
		display: none;
	}
	footer .sitename {
		padding: 10px 60px;
		position: relative;
		right: auto;
		bottom: auto;
		left: 50%;
		transform: translateX(-50%);
	}
	footer .sitename::after {
		width: 4px;
		height: 4px;
	}
	footer .copy {
		padding: 10px;
		font-size: 10px;
	}
	/* ページトップへ戻るボタン */
	.btn_pagetop {
		display: none!important;
		opacity: 0!important;
	}
}

@media screen and (max-width : 680px) {
	/*==================================================================================
	INDEX
	==================================================================================*/
	section#main .container {
		margin-top: -40px;
	}
	section#main .boad {
		padding: 20px;
	}
	section#main p.font_30 {
		font-size: 24px;
	}
	section#main p span.font_50 {
		font-size: 34px;
	}
}


@media screen and (max-width : 460px) {
	.tb {display: none;}
	.sp {display: inline;}
	/*==================================================================================
	ヘッダー
	==================================================================================*/
	.logo {
		width: 120px;
		margin-right: 10px;
	}
	.sitename {
		font-size: 14px;
	}
	header .btn_entry {
		display: none;
	}
	/* ヘッダー固定 */
	header.fix {
		width: calc(100% - 30px);
		padding: 0 10px 0 20px!important;
	}
	header.fix .logo {
		width: 120px;
	}
	header.fix .sitename {
		font-size: 14px;
	}
	/* メニュー -----------------------*/
	nav.gnav_sp {
	    top: 50px;
	}
	nav.gnav_sp ul {
		max-width: calc(300px - 60px);
	}
	.gnavToggle {
	    width: 50px;
	    height: calc(50px - 10px);
		padding-top: 10px;
	}
	.gnavToggle span {
		margin-bottom: 6px;
	}
	.gnavToggle span:nth-child(3) {
	    margin-bottom: 6px;
	}
	/*==================================================================================
	共通
	==================================================================================*/
	.col2.sp100 {
		width: 100%;
	}
	/* フォント */
	.font_20 {
		font-size: 16px;
	}
	.font_24 {
		font-size: 18px;
	}
	.font_30 {
		font-size: 20px;
	}
	.font_40 {
		font-size: 24px;
	}
	.font_50 {
		font-size: 28px;
	}
	/*==================================================================================
	INDEX
	==================================================================================*/
	section#main .container {
		width: 100%;
		padding: 0;
	}
	section#main p.font_30 {
		font-size: 20px;
	}
	section#main p span.font_50 {
		font-size: 28px;
	}
	/* Service -----------------------------------------------------------------------*/
	section#service .img,
	section#training .img {
		height: 240px;
	}
	/* Guidelines --------------------------------------------------------------------*/
	section#top_guidelines .bg {
		background-position: right center;
	}
	/* FAQ --------------------------------------------------------------------------*/
	dl.accordion dt span.font_30 {
		font-size: 24px;
	}
	dl.accordion dd p {
		font-size: 12px;
	}
	/*==================================================================================
	社員インタビュー	
	==================================================================================*/
	section#interview_list .boad {
		width: calc(100% - 20px);
		padding: 10px;
	}
	section#interview_list .boad .img {
		width: 80px;
	}
	section#interview_list .boad .txt {
		width: calc(100% - 80px - 10px);
	}
	section#interview_list .boad .txt p.font_20 {
		font-size: 14px;
	}
	section#interview_list .boad .txt p.font_12 {
		font-size: 10px;
	}
	section#interview_list .viewmore {
		margin-top: 10px;
	}
	section.interview .main .img img {
		transform: translateX(-10%);
	}
	section#interview03.interview .main .img img {
		transform: translateX(-20%);
	}
	section#interview04.interview .main .img img {
		transform: translateX(-15%);
	}
	section.interview .main .txt {
		max-width: calc(100% - 30px - 20px);
		padding: 15px;
	}
	section.interview .main .txt .font_40 {
		font-size: 20px;
	}
	section.interview .question {
		padding: 2px 0 0 50px;
	}
	section.interview .question span.font_50 {
		font-size: 24px;
		top: 2px;
	}
	/*==================================================================================
	募集要項, 会社概要
	==================================================================================*/
	.info_page .col2.sp100 {
		width: 100%;
		margin-bottom: 20px!important;
	}
	.info_page .col2.sp100:last-child {
		margin-bottom: 0!important;
	}
	.info_page table th {
		width: 80px;
	}
	.info_page table th p {
		font-size: 12px;
	}
	.info_page table td {
		width: calc(100% - 80px);
	}
	.info_page .mynavi .col2 img {
		width: 80%;
		margin: auto;
	}
	section#company.info_page .boad {
		padding: 120px 20px 20px;
	}
	/*==================================================================================
	フッター
	==================================================================================*/
	footer .btn_entry {
		width: calc(100% - 60px);
		padding: 0 30px;
	}
	footer .btn_entry::before {
		right: 30px;
	}
	footer .btn_entry::after {
		right: 30px;
	}
}

