@charset "UTF-8";

/* -------------------------------
スタイルの初期化 */
html {
	font-size: 62.5%;
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
	margin:0;
	padding:0;
	border:0;
	outline:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
}

body{
	font-family: 'Noto Sans JP','メイリオ','Meiryo','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック',sans-serif;
	font-weight: 400;
	font-size:14px;
	color: var(--black);
	line-height: 1.65;
	letter-spacing: .025em;
	text-autospace:ideograph-alpha;
	font-feature-settings: 'palt';
	min-width: 1200px;
}
body *,
:before,
:after{
	box-sizing: border-box;
}
a{
	transition: all .3s ease 0s;
	text-decoration:none;
	color:var(--black);
	display: block;
	box-sizing: border-box;
}
a img {	border:0;
	outline:none;}
img,svg {	vertical-align:top;}
img{	max-width: 100%;
		height: auto;}
ul, ol {	list-style-type:none;}
sup {
	position: relative;
	vertical-align: baseline;
	top: -0.9em;
	font-size: 0.5em;
}
hr {	display: none;}
h1,h2,h3,h4,h5,h6 {	font-size: 100%;}
th, caption{
	text-align: left;
	font-weight: normal;
}
th,td {	empty-cells:show;}

input[type="text"] , 
input[type="email"] , 
input[type="tel"] , 
input[type="password"] ,
textarea {
	-webkit-appearance: none;
	appearance: none;
	border-radius: 0;
	padding: 12px;
	border: 1px solid #ceccca;
	width: 90%;
	box-sizing: border-box;
	font-size: 15px;
	border-radius: 5px;
}
input[type="date"] {
	border: 1px solid #ceccca;
	width: 40%;
	font-size: 15px;
	border-radius: 5px;
	padding: 12px;
	cursor: pointer;
}
input[type="checkbox"] {
	margin-right:0.2em;
	vertical-align: -2px;
}
input[type="radio"] {
	margin-right:0.2em;
	vertical-align: -2px;
}
::placeholder {
	color: #c9c9c9;
}
table {
	width: 100%;
	border-collapse: collapse;
	box-sizing: border-box;
}
textarea {
	width: 90%;
	height: 10em;
	font-size: 15px;
	font-family: 'Noto Sans JP','メイリオ','Meiryo','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック',sans-serif;
}
select{	
	padding: 12px;
	border: 1px solid #ceccca;
	font-size: 15px;
}
optgroup {	font-style:normal;}
option {	padding-right:10px;}
*:focus {
outline: none;
}
em{	font-style: normal;}
input[type="submit"] {
	display: block;
	width: 420px;
	height: 60px;
	margin: auto;
	background: var(--black);
	color: #fff;
	font-size: 18px;
	text-align: center;
	font-family: 'Noto Sans JP';
	transition: all .3s ease 0s;
	border-radius: 5px;
	cursor: pointer;
}

/*------------------------
共通指定デザイン
------------------------*/
/* 共通 */
:root{
	--navy:#263246;
	--red:#d83a3a;
	--black: #111111;
	--bg_gray:#f1f1f1;
}
.wf{
	font-family: "Noto Serif JP", serif;
}
.wf_en{
	font-family: "Amiri", serif;
	font-weight: 400;
	font-style: normal;
}

.flex-box {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}
.red , 
.must {
	color: var(--red);
}
.image img{
	width: 100%;
	height: 100%;
}
.textarea{
	text-align: justify;
}
/*sp*/
.sp{
	display: none;
}
.pc {
	display: block;
}
span.sample{
	color: var(--red);
}

/*------------------------
header
------------------------*/
header {
	position: sticky;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
}
header .inner {
	padding: 0 0px 0 40px;
	box-shadow: 5px 5px 10px 0px rgba(201, 201, 201, 0.5);
	display: flex;
	justify-content: space-between;
	align-items: center;
	min-width: 1200px;
	background: rgba(255, 255, 255, 0.75);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}
header .logo a{
	width: 280px;
	height: auto;
}
header .logo a:hover{
	opacity: .6;
}

/*------------------------
ナビ 
------------------------*/
.g-nav {
	display: flex;
	align-items: center;
}
.g-nav .nav-inner{
	display: flex;
	align-items: center;
	margin-right: 20px;
}
.g-nav .nav-inner > li{
	font-size: 16px;
	letter-spacing: .05em;
	padding: 0 20px;
	font-weight: 500;
	position: relative;
}
.g-nav .nav-inner > li a:hover{
	color: var(--red);
}
/* btn */
.g-nav .btn a{
	width: 240px;
	height: 80px;
	background: var(--navy);
	color: #fff;
	font-size: 24px;
	letter-spacing: 0.05em;
	display: flex;
	align-items: center;
	justify-content: center;
}
.g-nav .btn a::after{
	content: "";
	background: #fff;
	width: 37px;
	height: 1px;
	margin: 0 0 6px 8px;
}

/*------------------------
section共通
------------------------*/
section .inner{
	width: 1200px;
	margin: 0 auto;
	position: relative;
}
section .inner h2{
	font-size: 44px;    
	font-weight: 600;
	letter-spacing: 0.05em;
	text-align: center;
	line-height: 1;
}

/*------------------------
後続共通
------------------------*/
#top-ttl {
    position: relative;
    background: url(/career-opportunities/pc/img/topttl.jpg) no-repeat center;
    background-size: cover;
    margin-top: -80px;
    padding-top: 80px;
}
#top-ttl .inner{
	width: 1200px;
	margin: 0 auto;
}
#top-ttl .page-ttl{
    padding-bottom: 110px;
}
#top-ttl h1{
    font-size: 46px;
    line-height: 1;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}
#top-ttl .sub{
    display: flex;
    align-items: center;
    font-size: 24px;
    color: #fff;
    letter-spacing: 0.05em;
}
#top-ttl .sub::before{
	content: "";
	width: 25px;
	height: 1px;
	background: #fff;
	margin-right: 8px;
}

/*パンくず*/
.breadcrumb-wrap{
    width: 1200px;
    margin: 10px auto 90px;
}
#breadcrumb {
	overflow: hidden;
	z-index: 100;
	position: relative;
}
#breadcrumb li{
	float: left;
}
#breadcrumb li a {
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.05em;
}
#breadcrumb li a:hover{
	color: var(--red);
}
#breadcrumb li::before{
	content: '';
	width: 6px;
	height: 6px;
	display: inline-block;
	border-bottom: 1px solid #fff;
	border-right: 1px solid #fff;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	margin: auto 10px 0 10px;
	vertical-align: 1px;
}
#breadcrumb li:first-child::before{
	content:none;
}


/*------------------------
pageトップ
------------------------*/
#page-top {
	opacity: 0;
	visibility: hidden;
	-webkit-transition: 0.2s opacity ease-in-out, 0.2s visibility ease-in-out;
	transition: 0.2s opacity ease-in-out, 0.2s visibility ease-in-out;
	text-align: right;
	position: sticky;
	z-index: 100;
	opacity: 0;
	width: 70px;
	height: 70px;
	bottom: 100px;
	margin: 0 40px -40px auto;
}
#page-top a {
	width: 100%;
	height: 100%;
	position: relative;
	background: var(--red);
	display: flex;
	align-items: center;
	justify-content: center;
}
#page-top a:hover{
	transform: translateY(4px);
}
#page-top a:after {
	position: absolute;
	content: '';
	top: 5px;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	vertical-align: middle;
	border-top: 3px solid #fff;
	border-right: 3px solid #fff;
	transform: rotate(-45deg);
	width: 14px;
	height: 14px;
}
#page-top.show {
	opacity: 1;
	visibility: visible;
}


/*------------------------
フッター
------------------------*/
footer {
	background: #333333;
}
footer .inner{
	width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	padding: 60px 0;
}
footer .left{
	flex: 1;
}
footer .left ul {
	display: flex;
	margin-bottom: 35px;
}
footer .left ul li a {
	color: #fff;
	font-size: 16px;
	margin-right: 30px;
	letter-spacing: 0.05em;
}
footer .left ul li a:hover{
	color: var(--red);
}
footer .left .logo a{
	width: 260px;
}
footer .left .logo a:hover{
	opacity: 0.8;
}
footer .btn a {
	width: 260px;
	height: 70px;
	color: #fff;
	border: 1px solid #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	letter-spacing: 0.05em;
}
footer .btn a::after{
	content: "";
	background: #fff;
	width: 37px;
	height: 1px;
	margin: 0 0 6px 8px;
}
footer .btn a:hover{
	background: rgba(255, 255, 255, 0.3);
}

/* コピー */
#copy{
	text-align: center;
	padding: 0 10px 15px;
	font-size: 12px;
	background: #333333;
	color: #fff;
}

/*------------------------
エフェクト
------------------------*/
.fadein {
	opacity : 0;
	transform : translate(0, 30px);
	transition: all 800ms;
}
.fadein.scrollin {
	opacity : 1;
	transform : translate(0, 0);
}
.fadein.scrollin:nth-of-type(2) {
	-moz-transition-delay:200ms;
	-webkit-transition-delay:200ms;
	-o-transition-delay:200ms;
	-ms-transition-delay:200ms;
}
.fadein.scrollin:nth-of-type(3) {
	-moz-transition-delay:400ms;
	-webkit-transition-delay:400ms;
	-o-transition-delay:400ms;
	-ms-transition-delay:400ms;
}
.fadein.scrollin:nth-of-type(4) {
	-moz-transition-delay:600ms;
	-webkit-transition-delay:600ms;
	-o-transition-delay:600ms;
	-ms-transition-delay:600ms;
}
.img-animation {
	overflow: hidden;
	position: relative;
}
.img-animation.active::before {
	animation: img-animation 1.5s cubic-bezier(.4, 0, .2, 1) forwards;
	background: #fff;
	content: '';
	pointer-events: none;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1;
}
@keyframes img-animation {
	100% {
		transform: translateX(100%);
	}
}
