@charset "utf-8";

/* PC、SP表示切り替え
------------------------------------------------------------------------------------ */
.dNoSp {
	display: block;
}
.dNoPc {
	display: none;
}


/* header
------------------------------------------------------------------------------------ */
header {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	background: transparent;
	padding:20px 30px 0 30px;
	z-index: 4;
	transition: all 0.3s ease;
}
header h1 {
	width:115px;
}
header h1 a {
	transition: all 0.3s ease;
}
header h1 a:hover {
	opacity: 0.7;
}


/* ハンバーガーメニュー
------------------------------------------------------------------------------------ */
.hamburger {
	display : block;
	position: fixed;
	right: 30px;
	top: 20px;
	width: 72px;
	height: 72px;
	cursor: pointer;
	text-align: center;
	z-index: 999;
	background-color: #BB1D1E;
	border-radius:36px;
	transition: all 0.3s ease;
}
.hamburger span,
.hamburger span:before,
.hamburger span:after {
	display : block;
	position: absolute;
	height: 2px;
	background-color: #FFF;
	border-radius:1px;
	transition: 0.3s ease-in-out;
}
.hamburger span {
	top: 25px;
	left: 21px;
	width: 30px;
}
.hamburger span:before {
	content: "";
	top: 9px;
	left: 0;
	width: 20px;
}
.hamburger span:after {
	content: "";
	top: 18px;
	left: 0;
	width: 30px;
}
/* ナビ開いてる時のボタン */
.hamburger.active {
	background-color: #FFF;
	transition: all 0.3s ease-in-out;
}
.hamburger.active span {
	width: 0px;
	background : #BB1D1E;
}
.hamburger.active span:before,
.hamburger.active span:after {
	left: 50%;
	top: 9px;
	width: 30px;
	height: 3px;
	border-radius:1.5px;
	background: #BB1D1E;
}
.hamburger.active span:before {
	transform: rotate(45deg);
}
.hamburger.active span:after {
	transform: rotate(-45deg);
}

div#gnavWrapper nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	min-height: 100vh;
	background-color:#BB1D1E;
	text-align: left;
	z-index: 998;
	overflow: auto;
	box-sizing: border-box;
	transition: all 0.5s;
	opacity: 0;
	visibility: hidden;
}
div#gnavWrapper nav div#gnavWrapperInner {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 80%;
	box-sizing: border-box;
	transform: translate(-50%,-50%);
	transition: all 0.5s;
	opacity: 0;
	visibility: hidden;
}
div#gnavWrapper nav div h2 {
	width:150px;
}
div#gnavWrapper nav div h2 a {
	transition: all 0.3s ease;
}
div#gnavWrapper nav div h2 a:hover {
	opacity: 0.75;
}
div#gnavWrapper nav div div#gnav {
	display: flex;
	margin-top:50px;
}
div#gnavWrapper nav div div#gnav > ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
div#gnavWrapper nav div div#gnav > ul > li {
	width:47.5%;
	margin-top:40px;
}
div#gnavWrapper nav div div#gnav > ul > li:first-child,
div#gnavWrapper nav div div#gnav > ul > li:nth-child(2) {
	margin-top:0;
}
div#gnavWrapper nav div div#gnav > ul > li.gnavSmall {
	width:100%;
}
div#gnavWrapper nav div div#gnav ul li a {
	color:#FFF;
	text-decoration:none;
}
div#gnavWrapper nav div div#gnav ul > li > a span.gnavE {
	position: relative;
}
div#gnavWrapper nav div div#gnav ul > li > a span.gnavE:before {
	display: block;
	content: '';
	position: absolute;
	left: 0;
	bottom: -5px;
	width: 0;
	height: 1px;
	background-color: #FFF;
	transition: all 0.3s ease;
}
div#gnavWrapper nav div div#gnav ul > li > a span.gnavE:hover:before {
	width: 100%;
}
div#gnavWrapper nav div div#gnav > ul > li.gnavSmall a {
	transition: all 0.3s ease;
}
div#gnavWrapper nav div div#gnav > ul > li.gnavSmall a:hover {
	opacity: 0.75;
}
div#gnavWrapper nav div div#gnav ul li a span.gnavJ {
	line-height: 100%;
	font-weight:700;
}
div#gnavWrapper nav div div#gnav ul li a span.gnavE {
	display: block;
	font-family: "Arvo", serif;
	font-size: 3.375em;
	line-height: 100%;
	font-weight:700;
	letter-spacing: 0;
}
div#gnavWrapper nav div div#gnav ul li a span.gnavE i {
	position: relative;
	top: -2px;
	font-size: 0.296em;
	line-height: 100%;
	margin-left:10px;
}
div#gnavWrapper nav div div#gnav ul li ul {
	margin-top:20px;
	padding-left:20px;
}
div#gnavWrapper nav div div#gnav ul li ul li {
}
div#gnavWrapper nav div div#gnav ul li ul li a {
	position: relative;
	font-size: 1.125em;
	line-height: 100%;
	padding-left: 20px;
	transition: all 0.3s ease;
}
div#gnavWrapper nav div div#gnav ul li ul li a:hover {
	opacity: 0.75;
}
div#gnavWrapper nav div div#gnav ul li ul li a:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	width: 10px;
	height: 1px;
	background-color: #FFF;
	transform: translateY(-50%);
}

/* このクラスを、jQueryで付与・削除する */
body.active div#gnavWrapper nav,
body.active div#gnavWrapper nav div#gnavWrapperInner {
	opacity: 1;
	visibility: visible;
}

/* ハンバーガーメニュー展開時に背景をスクロールさせない */
body.active {
	height: 100%;
	overflow: hidden;
}


/* contents
------------------------------------------------------------------------------------ */
div#contents {
	margin-top:160px;
}
div#contents div.sectionInner {
	width:90%;
	margin:0 auto;
}


/* footer
------------------------------------------------------------------------------------ */
footer {
	padding:100px 0;
	background-color:#BB1D1E;
}
footer div.footerInner {
	display: flex;
	justify-content: space-between;
	width:90%;
	margin:0 auto;
}
footer div.footerInner div#footerLeft {
}
footer div.footerInner div#footerLeft h2 {
	width:115px;
}
footer div.footerInner div#footerLeft h2 a {
	transition: all 0.3s ease;
}
footer div.footerInner div#footerLeft h2 a:hover {
	opacity: 0.7;
}
footer div.footerInner div#footerLeft p#copyright {
	color: #FFF;
	font-size: 0.875em;
	line-height: 100%;
	letter-spacing: 0;
	margin-top:30px;
}
footer div.footerInner div#footerRight {
	display: flex;
	flex-wrap: wrap;
}
footer div.footerInner div#footerRight ul.footerNav {
	line-height: 100%;
}
footer div.footerInner div#footerRight ul#footerNav01 {
	margin-right:80px;
}
footer div.footerInner div#footerRight ul#footerNav02 {
	margin-right:80px;
}
footer div.footerInner div#footerRight ul#footerNav03 {
}
footer div.footerInner div#footerRight ul.footerNav li {
	margin-top:20px;
}
footer div.footerInner div#footerRight ul.footerNav li:first-child {
	margin-top:0;
}
footer div.footerInner div#footerRight ul.footerNav li a {
	position: relative;
	color: #FFF;
	font-weight:700;
	text-decoration:none;
}
footer div.footerInner div#footerRight ul.footerNav li a:before {
	display: block;
	content: '';
	position: absolute;
	left: 0;
	bottom: -8px;
	width: 0;
	height: 1px;
	background-color: #FFF;
	transition: all 0.3s ease;
}
footer div.footerInner div#footerRight ul.footerNav li a:hover:before {
	width: 100%;
}
footer div.footerInner div#footerRight ul.footerNav li.footerNavSmall a {
	font-size: 0.875em;
	line-height: 100%;
	font-weight:400;
}
footer div.footerInner div#footerRight ul.footerNav li a i {
	margin-left:5px;
}
footer div.footerInner div#footerRight ul.footerNav li ul {
	margin-top:20px;
}
footer div.footerInner div#footerRight ul.footerNav li ul li {
}
footer div.footerInner div#footerRight ul.footerNav li ul li a {
	font-weight:400;
}
footer div.footerInner div#footerRight p#copyright {
	display: none;
}


/* 共通パーツ
------------------------------------------------------------------------------------ */
.pageTitle {
	margin-bottom:100px;
}
.pageTitle span.pageTitleJ {
	display: block;
	color: #BB1D1E;
	font-size: 1.25em;
	line-height: 100%;
	font-weight:700;
}
.pageTitle span.pageTitleE {
	display: block;
	position: relative;
	font-family: "Arvo", serif;
	font-size: 6.5em;
	line-height: 100%;
	font-weight:700;
	letter-spacing: 0;
	margin-top:5px;
}
.pageTitle span.pageTitleE:before {
	content: '';
	position: absolute;
	bottom: 5px;
	left: 0;
	width: 100px;
	height: 20px;
	background-color: #BB1D1E;
	z-index: -1;
}

.title01 {
	margin-bottom:50px;
}
.title01 span.title01j {
	display: block;
	position: relative;
	font-size: 1.125em;
	line-height: 100%;
	font-weight:700;
	padding-left:30px;
}
.title01 span.title01j:before {
	content: '';
	position: absolute;
	top: 8px;
	left: 0;
	width: 20px;
	height: 2px;
	background-color: #BB1D1E;
}
.title01 span.title01e {
	display: block;
	font-family: "Arvo", serif;
	font-size: 3.6em;
	line-height: 100%;
	font-weight:700;
	letter-spacing: 0;
	margin-top:5px;
}
.title02 {
	color: #BB1D1E;
	font-size: 1.625em;
	line-height: 175%;
	font-weight:700;
	margin:50px 0 20px 0;
}
.title03 {
	font-size: 1.25em;
	line-height: 175%;
	font-weight:700;
	margin:30px 0 15px 0;
}
.title04 {
	margin-bottom:30px;
}
.title04 p {
	color: #BB1D1E;
	font-family: "Arvo", serif;
	font-size: 1.25em;
	line-height: 100%;
	font-weight:700;
	margin-bottom:20px;
	padding-bottom:10px;
	border-bottom: 1px solid #BB1D1E;
}
.title04 h3 {
	font-size: 2em;
	line-height: 150%;
	font-weight:700;
}

.linkBtn a {
	position: relative;
	display: block;
	width:100%;
	max-width:360px;
	color: #FFF;
	line-height: 100%;
	text-align: left;
	font-weight:700;
	text-decoration:none;
	margin-top: 50px;
	padding: 25px 30px;
	background-color: #BB1D1E;
	border-radius:50px;
	overflow: hidden;
	box-sizing: border-box;
	transition: all 0.3s ease;
}
.linkBtn a:hover {
	color: #FFF;
}
.linkBtn a:before {
	position: absolute;
	top: 50%;
	right: 30px;
	content: '\f061';
	font-family: fontAwesome;
	font-style: normal;
	color: #FFF;
	font-size: 1em;
	line-height: 100%;
	z-index: 3;
	transform: translateY(-50%);
}
.linkBtn a:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	z-index: 2;
	transition: transform 0.5s cubic-bezier(0.8, 0, 0.2, 1) 0s;
	transform: scale(0, 1);
	transform-origin: right top;
}
.linkBtn a:hover:after{
	transform-origin:left top;
	transform:scale(1, 1);
}
.linkBtn a span {
	position: relative;
	font-weight:700;
	z-index: 3;
}
.linkBtn a i {
	position: relative;
	top: -2px;
	font-size: 0.89em;
	line-height: 100%;
	margin-left:10px;
}

.linkBtnList {
	margin-top: 50px;
}
.linkBtnList .linkBtn a {
	margin-top: 20px;
}
.linkBtnList .linkBtn:first-child a {
	margin-top: 0;
}

table.table01 {
	width:100%;
	border-collapse:collapse;
	border-spacing: 0;
}
table.table01 tr {
}
table.table01 tr th {
	white-space: nowrap;
	font-weight: bold;
	padding: 30px 30px 30px 50px;
}
table.table01 tr td {
	width:100%;
	padding: 30px 50px 30px 0;
}
table.table01 tr:last-child th,
table.table01 tr:last-child td {
	border-bottom: none;
}
table.table01 tr:nth-child(odd) th,
table.table01 tr:nth-child(odd) td {
	background-color: #FFF;
}
table.table01 tr:nth-child(even) th,
table.table01 tr:nth-child(even) td {
	background-color: #f8f8f8;
}


/* パンくずリスト
------------------------------------------------------------------------------------ */
div#breadcrumb {
	margin-bottom: 50px;
}
div#breadcrumb ul {
	display:flex;
	justify-content: flex-end;
	font-family: "Arvo", serif;
	font-size: 0.875em;
	line-height: 100%;
	font-weight:700;
	letter-spacing: 0;
}
div#breadcrumb ul li {
	position: relative;
	padding-left: 30px;
}
div#breadcrumb ul li:first-child {
	padding-left: 0;
}
div#breadcrumb ul li:before {
	display: block;
	content: '';
	position: absolute;
	left: 10px;
	top: 50%;
	width: 10px;
	height: 1px;
	background-color: #666;
	transform: translateY(-50%);
}
div#breadcrumb ul li:first-child:before {
	display: none;
}
div#breadcrumb ul li a {
	position: relative;
	text-decoration:none;
}
div#breadcrumb ul li a {
}
div#breadcrumb ul li a:before {
	display: block;
	content: '';
	position: absolute;
	left: 0;
	bottom: -3px;
	width: 0;
	height: 1px;
	background-color: #BB1D1E;
	transition: all 0.3s ease;
}
div#breadcrumb ul li a:hover:before {
	width: 100%;
}


/* BannerList
------------------------------------------------------------------------------------ */
section#BannerList {
	margin-top: 150px;
}
section#BannerList ul {
	display:flex;
}
section#BannerList ul li {
	position: relative;
	width:50%;
	color:#FFF;
	padding:150px 100px;
	background-color:rgba(0,0,0,0.75);
	box-sizing: border-box;
}
section#BannerList ul li:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}
section#BannerList ul li#BannerListRecruit:before {
	background: url("../images/banner-list_recruit.jpg") 50% 50% no-repeat;
	background-size: cover;
}
section#BannerList ul li#BannerListContact:before {
	background: url("../images/banner-list_contact.jpg") 50% 50% no-repeat;
	background-size: cover;
}
section#BannerList ul li p {
}
section#BannerList ul li h4 {
	font-weight: 700;
	margin-bottom:5px;
}
section#BannerList ul li h3 {
	font-family: "Arvo", serif;
	font-size: 3.375em;
	line-height: 100%;
	font-weight: 700;
	letter-spacing: 0;
}
section#BannerList ul li h3 i {
	position: relative;
	top: -6px;
	font-size: 0.7em;
	line-height: 100%;
	margin-right:10px;
}
section#BannerList ul li h3 a {
	color:#FFF;
	text-decoration:none;
}



@media screen and (min-width:769px) and (max-width:1280px) {
	/* PC、SP表示切り替え
	------------------------------------------------------------------------------------ */
	.dNoSp {
		display: none;
	}
	.dNoPc {
		display: block;
	}

	/* header
	------------------------------------------------------------------------------------ */
	header h1 {
		width:115px;
	}

	/* ハンバーガーメニュー
	------------------------------------------------------------------------------------ */
	.hamburger {
		right: 15px;
		top: 15px;
	}
	div#gnavWrapper nav div#gnavWrapperInner {
		width: 90%;
	}
	div#gnavWrapper nav div h2 {
		width:115px;
	}
	div#gnavWrapper nav div div#gnav > ul > li {
		margin-top:30px;
	}
	div#gnavWrapper nav div div#gnav > ul > li:nth-child(odd) {
		width:40%;
	}
	div#gnavWrapper nav div div#gnav > ul > li:nth-child(even) {
		width:55%;
	}
	div#gnavWrapper nav div div#gnav ul li a span.gnavE {
		font-size: 2.5em;
		line-height: 100%;
	}
	div#gnavWrapper nav div div#gnav ul li a span.gnavE i {
		font-size: 0.4em;
		line-height: 100%;
	}
	div#gnavWrapper nav div div#gnav > ul > li.gnavSmall {
		width:100%;
	}

	/* contents
	------------------------------------------------------------------------------------ */
	div#contents {
		margin-top:131px;
	}

	/* footer
	------------------------------------------------------------------------------------ */
	footer div.footerInner {
		display: block;
	}
	footer div.footerInner div#footerLeft h2 {
		width:115px;
	}
	footer div.footerInner div#footerLeft p#copyright {
		display: none;
	}
	footer div.footerInner div#footerRight {
		margin-top:50px;
	}
	footer div.footerInner div#footerRight p#copyright {
		display: block;
		width: 100%;
		color: #FFF;
		font-family: "Arvo", serif;
		font-size: 0.875em;
		line-height: 100%;
		letter-spacing: 0;
		margin-top:30px;
	}

	/* 共通パーツ
	------------------------------------------------------------------------------------ */
	.pageTitle span.pageTitleJ {
		font-size: 1em;
		line-height: 100%;
	}
	.pageTitle span.pageTitleE {
		font-size: 5.25em;
		line-height: 100%;
	}
	.title02 {
		font-size: 1.5em;
		line-height: 175%;
	}
	.title03 {
		font-size: 1.125em;
		line-height: 175%;
	}
	.title04 {
	}

	table.table01 tr th {
		padding-left: 30px;
	}
	table.table01 tr td {
		padding-right: 30px;
	}

	/* BannerList
	------------------------------------------------------------------------------------ */
	section#BannerList ul {
		display:block;
	}
	section#BannerList ul li {
		width:100%;
		padding:100px 5%;
	}
}



@media screen and (max-width:768px) {
	/* PC、SP表示切り替え
	------------------------------------------------------------------------------------ */
	.dNoSp {
		display: none;
	}
	.dNoPc {
		display: block;
	}
	body {
		font-size:14px;
		line-height:175%;
	}

	/* header
	------------------------------------------------------------------------------------ */
	header {
		padding:15px 15px 0 15px;
	}
	header h1 {
		width:80px;
	}

	/* ハンバーガーメニュー
	------------------------------------------------------------------------------------ */
	.hamburger {
		right: 15px;
		top: 10px;
		width: 54px;
		height: 54px;
	}
	.hamburger span {
		top: 17px;
		left: 12px;
	}
	div#gnavWrapper nav div#gnavWrapperInner {
		width: 90%;
	}
	div#gnavWrapper nav div h2 {
		width:110px;
	}
	div#gnavWrapper nav div div#gnav {
		margin-top:30px;
	}
	div#gnavWrapper nav div div#gnav > ul {
		display: block;
	}
	div#gnavWrapper nav div div#gnav > ul > li {
		margin-top:15px;
	}
	div#gnavWrapper nav div div#gnav > ul > li:nth-child(2) {
		margin-top:15px;
	}
	div#gnavWrapper nav div div#gnav > ul > li {
		width:100%;
	}
	div#gnavWrapper nav div div#gnav ul li a span.gnavE {
		font-size: 2em;
		line-height: 100%;
		margin-top:3px;
	}
	div#gnavWrapper nav div div#gnav ul li a span.gnavE i {
		font-size: 0.5em;
		line-height: 100%;
	}
	div#gnavWrapper nav div div#gnav > ul > li.gnavSmall {
		width:100%;
	}
	div#gnavWrapper nav div div#gnav ul li ul {
		margin-top:10px;
		padding-left:15px;
	}
	div#gnavWrapper nav div div#gnav ul li ul li a {
		font-size: 1em;
		line-height: 100%;
		padding-left: 15px;
	}

	/* contents
	------------------------------------------------------------------------------------ */
	div#contents {
		margin-top:105px;
	}

	/* footer
	------------------------------------------------------------------------------------ */
	footer {
		padding-top:50px;
		padding-bottom:50px;
	}
	footer div.footerInner {
		display: block;
	}
	footer div.footerInner div#footerLeft h2 {
		width:80px;
	}
	footer div.footerInner div#footerLeft p#copyright {
		display: none;
	}
	footer div.footerInner div#footerRight {
		display: block;
		margin-top:30px;
	}
	footer div.footerInner div#footerRight ul.footerNav {
		line-height: 100%;
	}
	footer div.footerInner div#footerRight ul#footerNav01 {
		margin-right:0;
	}
	footer div.footerInner div#footerRight ul#footerNav02 {
		margin-top:15px;
		margin-right:0;
	}
	footer div.footerInner div#footerRight ul#footerNav03 {
		margin-top:15px;
	}
	footer div.footerInner div#footerRight ul.footerNav li {
		margin-top:15px;
	}
	footer div.footerInner div#footerRight ul.footerNav li ul {
		padding-left:15px;
	}
	footer div.footerInner div#footerRight ul.footerNav li ul {
		margin-top:15px;
	}
	footer div.footerInner div#footerRight p#copyright {
		display: block;
		width: 100%;
		color: #FFF;
		font-family: "Arvo", serif;
		font-size: 0.875em;
		line-height: 100%;
		letter-spacing: 0;
		margin-top:30px;
	}

	/* 共通パーツ
	------------------------------------------------------------------------------------ */
	.pageTitle {
	margin-bottom:50px;
	}
	.pageTitle span.pageTitleJ {
	font-size: 1em;
	line-height: 100%;
	}
	.pageTitle span.pageTitleE {
	font-size: 3em;
	line-height: 100%;
	}
	.pageTitle span.pageTitleE:before {
		bottom: 0;
		width: 55px;
		height: 10px;
	}

	.title01 {
		margin-bottom:30px;
	}
	.title01 span.title01j {
		font-size: 1em;
		line-height: 100%;
		padding-left:25px;
	}
	.title01 span.title01j:before {
		top: 5px;
		width: 15px;
	}
	.title01 span.title01e {
		font-size: 3em;
		line-height: 100%;
	}
	.title02 {
		font-size: 1.428em;
		line-height: 175%;
		margin-top:30px;
		margin-bottom:15px;
	}
	.title03 {
		font-size: 1.142em;
		line-height: 175%;
		margin-top:20px;
		margin-bottom:10px;
	}
	.title04 {
	}
	.title04 p {
		font-size: 1em;
		line-height: 100%;
		margin-bottom:20px;
		padding-bottom:10px;
	}
	.title04 h3 {
		font-size: 1.714em;
		line-height: 150%;
		font-weight:700;
	}

	.linkBtn a {
		margin-top: 30px;
	}
	.linkBtnList {
		margin-top: 30px;
	}

	table.table01 tr th {
		display:block;
		width: 100%;
		padding: 20px 20px 0 20px;
		box-sizing: border-box;
	}
	table.table01 tr td {
		display:block;
		width: 100%;
		padding: 15px 20px 20px 20px;
		box-sizing: border-box;
	}

	/* パンくずリスト
	------------------------------------------------------------------------------------ */
	div#breadcrumb {
		margin-bottom: 30px;
	}
	div#breadcrumb ul {
		font-size: 0.857em;
		line-height: 100%;
	}
	div#breadcrumb ul li {
		padding-left: 15px;
	}
	div#breadcrumb ul li:before {
		width: 7px;
		left: 4px;
	}

	/* BannerList
	------------------------------------------------------------------------------------ */
	section#BannerList {
		margin-top: 50px;
	}
	section#BannerList ul {
		display:block;
	}
	section#BannerList ul li {
		width:100%;
		padding:50px 5%;
	}
	section#BannerList ul li h3 {
		font-size: 2.714em;
		line-height: 100%;
	}
	section#BannerList ul li h3 i {
		top: -5px;
		font-size: 0.7em;
		line-height: 100%;
	}
}
