@charset "utf-8";
/* CSS Document */

/* Ryoetsu denki
-----------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&display=swap');
/* ==============================================
    universal reset
============================================== */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* ==============================================
    html,body and base
============================================== */
html,body {
	height:100%;
}

/* general params
------------------*/
table {
	empty-cells: show;
	font-size: 100%;
	border-collapse: collapse;
}

img {
	border: none;
	height: auto;
	vertical-align: top;
	max-width: 100%;
}

h1,h2,h3,h4,h5,h6 {
	font-weight: bold;
	font-size: 100%;
}

h1 img,h2 img,h3 img,h4 img,h5 img,h6 img {
}

ul {
	letter-spacing: -.40em;
}
ul li {
	letter-spacing: normal;
}
/* acronyms and abbreviations styles 
-------------------------------------*/
acronym,abbr {
	cursor: help;
}

/* ==============================================
    clear
============================================== */
.cbox {
	zoom: 100%;
}
.cbox:after {
	content: "";
	clear: both;
	height: 0;
	display: block;
}
.clear {
	clear: both;
	height: 1px;
	font-size: 1px;
}
.clear hr {
	display: none;
}

hr.clear {
	zoom: 1;
	clear: both;
	height: 0;
	border: none;
	font-size: 0;
}
*:first-child+html hr.clear {/* for IE7 */
	border-top: 1px solid;
} 

/* ==============================================
    body
============================================== */
body {
	text-align: center;
	line-height: 1.6;
	font-size: 16px;
	color: #2d2d2d;
	-webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 700px) {
	body {
		min-width: 300px;
		font-size: 14px;
	}
}
@media print {
	body {
		min-width: 950px;
	}
}
body,
input,
select,
textarea {
	font-family: 'Noto Sans JP', Meiryo,Arial,Roboto, sans-serif;
}
form input[type="submit"],
form input[type="reset"],
form input[type="button"] {
	-webkit-appearance: none;
}

/* ==============================================
    link
============================================== */
a {
	transition: all .4s;
	text-decoration: none;
	outline: none;
}
a:hover {
	/*text-decoration: underline;*/
}

@media screen and (min-width: 701px) {
	a:hover,
	#pagetop img:hover {
		opacity: 0.7;
		filter: alpha(opacity=70);
		-ms-filter: "alpha( opacity=70 )";
	}
	a img.rollover:hover {
		opacity: 1;
		filter: alpha(opacity=100);
		-ms-filter: "alpha( opacity=100 )";
	}
}

/* ==============================================
    
============================================== */
#container,
.inner {
	zoom: 1;
	margin: 0 auto;
	text-align: left;
}
#container:after {
	content: "";
	clear: both;
	height: 0;
	display: block;
}
.inner {
	width: 90%;
}

.tab,
.sp {
	display: none;
}
.switch {}
.call {}

@media screen and (max-width: 1000px) {
	.inner {
		width: 98%;
	}
}

@media screen and (max-width: 700px) {
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
}

/* ==============================================
    container
============================================== */
#container {
	position:relative;
	margin: 0 auto;
	overflow-x: hidden;
}

/* ==============================================
    header
============================================== */
header {
	position: fixed;
	width: 100%;
	margin: 0;
	padding: 0;
	background: rgba(255,255,255,0.85);
	display: flex;
	justify-content: space-between;
	z-index: 100;
}

header #header-logo {
	display: flex;
	align-items: center;
}
header #siteid {
	display: inline-block;
	padding: 10px;
	margin-right: 20px;
}
header #siteid img {
	width: 270px;
}
header #rec_year,
header #rec_year::before {
	width: 240px;
}

header #rec_year {
	position: relative;
	z-index: 1;
	font-size: 1.375em;
	font-weight: 700;
	letter-spacing: 0.1em;
	margin-left: -0.1em;
	color: #fff;
	line-height: 100px;
	text-align: center;
}
header #rec_year::before {
	content: "";
	display: block;
	position: absolute;
	top: 0; bottom: 0; left: 0; right: 0;
	z-index: -1;
	background: #0958a5;
	transform: skewX(-35deg);
	height: 100px;
}
header #rec_year a {
	color: #fff;
}

header nav#global-nav {
	display: flex;
	align-items: center;

}
header nav#global-nav ul {
	list-style: none;
	display: flex;
	margin-left: 30px;
}
header nav#global-nav ul#gnav li a {
	letter-spacing: 0.1em;
	margin-left: -0.1em;
}

header nav#global-nav ul#gnav li::after {
	content: "/";
	display: inline-block;
	margin: 0 20px;
}
header nav#global-nav ul#gnav li:last-child::after {
	display: none;
}
header nav#global-nav ul#gnav li a {
	color: #1d1d1d;
}

header nav#global-nav ul#entry-btn li {

}

header nav#global-nav ul#entry-btn li a {
	color: #fff;
	font-size: 1.125em;
	font-weight: 700;
	line-height: 1;
	padding: 10px;
	width: 100px;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}
header nav#global-nav ul#entry-btn li a span {
	display: block;
	text-align: center;
	width: 100%;
	padding: 3px;
	border: 1px solid #fff;
	letter-spacing: 0;
	margin: 0;
}

header nav#global-nav ul#entry-btn li.btn_graduates a {
	background: #db0f21;
}
header nav#global-nav ul#entry-btn li.btn_career a {
	background: #0958a5;
}

header nav#global-nav ul#sp-nav {
	display: none;
}

@media screen and (max-width: 1200px) {
	header #siteid img {
		width: 220px;
	}
	header #rec_year,
	header #rec_year::before {
		width: 200px;
	}
	header #rec_year {
		font-size: 1.250em;
	}
	header nav#global-nav ul {
		margin-left: 10px;
	}
}
@media screen and (max-width: 1100px) {
	#header-logo {
		width: 40%;
	}
	header #siteid {
		width: 100%;
	}
	header #siteid img {
		width: 100%;
	}
	header #rec_year,
	header #rec_year::before {
		width: 100%;
	}
	
	header #rec_year {
		height: 100px;
		font-size: 1em;
		line-height: 1.2;
		padding-top: 30px;
	}
	header #rec_year span {
		display: block;
	}
	header nav#global-nav ul#gnav {
		flex-wrap: wrap;
		justify-content: center;
	}
	header nav#global-nav ul#gnav li::after {
		margin: 0 5px;
	}
	header nav#global-nav ul#gnav li a {
		font-size: 0.875em;
	}
}



@media screen and (max-width: 700px) {

	
	header #header-logo {
		width: 100%;
	}
	header #siteid {
		padding: 0 10px;
		width: 50%;
		margin-right: 5px;
	}
	header #siteid img {
		height: 45px;
		width: auto;
	}
	header #rec_year {
		height: inherit;
		width: 50%;
		line-height: 50px;
		padding-top: 0px;
		padding-left: 10px;
		text-align: left;
	}
	header #rec_year span {
		display: inline;
	}
	header #rec_year::before {
		height: 50px;
	}
	
	header nav#global-nav {
		display: block;
		position: fixed;
		z-index: 99;
		width: 100%;
		height: 100vh;
		background: rgba(0,0,0,0.7);
		padding-top: 50px;
	}
	header nav#global-nav ul {
		margin-left: 0;
	}
	header nav#global-nav ul#gnav {
		display: block;
	}
	header nav#global-nav ul#gnav li {
		border-bottom: 1px solid #494949;
	}
	header nav#global-nav ul#gnav li:last-child {
		border-bottom: none;
	}
	header nav#global-nav ul#gnav li a {
		font-size: 1.250em;
		color: #fff;
		text-align: center;
		display: block;
		background: rgba(44,44,44,0.6);
		padding: 15px 0;
	}
	header nav#global-nav ul#gnav li::after {
		display: none;
	}
	header nav#global-nav ul#entry-btn li {
		width: 50%;
	}
	header nav#global-nav ul#entry-btn li a {
		font-size: 1.125em;
		font-weight: 700;
		line-height: 1.2;
		padding: 15px;
		width: 100%;
		height: inherit;
	}
	header nav#global-nav ul#entry-btn li a span {
		margin-top: 10px;
	}
	
	
	header nav#global-nav ul#sp-nav {
		display: block;
	}
	header nav#global-nav ul#sp-nav li {
		border-bottom: 1px solid #494949;
	}
	header nav#global-nav ul#sp-nav li:last-child {
		border-bottom: none;
	}
	header nav#global-nav ul#sp-nav li a {
		font-size: 1.125em;
		color: #fff;
		text-align: center;
		display: block;
		background: rgba(44,44,44,0.6);
		padding: 15px 0;
	}
	
	header nav#global-nav {
		transform: translateX(110vw);
		transition: .2s;
	}
	header nav#global-nav.active {
		transform: translateX(0);
	}
	
	
	
	
}


/* ==============================================
    menuBtn span
============================================== */
#menuBtn {
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	width: 60px;
	height: 60px;
	background: #000;
	text-indent: -10000px;
	overflow: hidden;
	cursor: pointer;
	z-index: 101;
}
#menuBtn span,
#menuBtn:before,
#menuBtn:after {
	display: block;
	position: absolute;
	width: 20px;
	height: 2px;
	margin-left: -10px;
	background: #fff;
	top: 30px;
	left: 30px;
	transition: all .4s;
	opacity: 1;
}
#menuBtn span {
	margin-top: -1px;
	transition: opacity 150ms 50ms;
}

#menuBtn:before,
#menuBtn:after {
	content: "";
}
#menuBtn:before {
	transform: translate(0, -8px);
}
#menuBtn:after {
	transform: translate(0, 6px);
}

#menuBtn.active span {
	opacity: 0;
}
#menuBtn.active:before  {
	transform: rotate(45deg);
}
#menuBtn.active:after  {
	transform: rotate(-45deg);
}
@media screen and (max-width: 700px) {
	#menuBtn {
		display: block;
		width: 50px;
		height: 50px;
	}
	#menuBtn span,
	#menuBtn:before,
	#menuBtn:after {
		top: 25px;
		left: 25px;
	}
}

/* ==============================================
    breadcrumb
============================================== */

#breadcrumb {
	padding: 30px 0;
	background: #fff;
}

#breadcrumb ol {
	list-style: none;
}
#breadcrumb li {
	display: inline-block;
	font-size: 0.875em;
}

#breadcrumb li a {
	color: #0958a5;
	text-decoration: none;
}
#breadcrumb li a:hover {
	text-decoration: none;
}

#breadcrumb li::after {
	content: "／";
	display: inline-block;
	padding: 0 5px;
}
#breadcrumb li:last-child::after {
	display: none;
}

#breadcrumb li:first-child a {
	/*display: inline-block;
	text-indent: -99999px;
	background: url("image/icon_home.png") no-repeat 0 0;
	background-size: contain;
	width: 15px;
	height: 15px;
	margin-right: 5px;*/
}

@media screen and (max-width: 700px) {
	#breadcrumb {
		/*margin: 0;
		padding: 60px 0 20px;*/
	}
}

/* ==============================================
    contents
============================================== */
#contents {

}


.pdf a,
a.pdf {
	position: relative;
	display: inline-block;
	margin-left: 25px;
}
.pdf a::before,
a.pdf::before {
	position: absolute;
	content: "";
	display: inline-block;
	background: url("image/file_pdf.svg") no-repeat 0 0;
	background-size: contain;
	width: 20px;
	height: 20px;
	margin-left: -25px;
}



/* Youtube レスポンシブ用 */
.movie_wrap {
	position: relative;
	padding-top: 56.25%;
	height: 0;
	overflow: hidden;
}
.movie_wrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


@media screen and (max-width: 700px) {
	table.scroll {
		overflow: auto;
		white-space: nowrap;
		display: block;
		width: auto;
	}
	table.scroll tbody {
		width: 100%;
	}
	table.scroll::-webkit-scrollbar {
		height: 5px;
	}
	table.scroll::-webkit-scrollbar-track {
		background: #f1f1f1;
	}
	table.scroll::-webkit-scrollbar-thumb {
		background: #bcbcbc;
	}
}


/* ==============================================
    pagetop
============================================== */
#pagetop {
    position: fixed;
    bottom: 85px;
    right: 0;
    display: none;
	line-height: 0;
	z-index: 6;
}
#pagetop span {
	display: block;
	background: #323232 url("image/btn_pagetop.svg") no-repeat;
	background-position: 50% 50%;
	background-size: 15px 15px;
	width: 85px;
	height: 85px;
	cursor: pointer;
	transition: .2s;
}
@media screen and (min-width: 701px) {
	#pagetop span:hover {
		transform: translateY(-10px);
	}
}

@media screen and (max-width: 700px) {
	#pagetop {
		bottom: 60px;
	}
	#pagetop span {
		width: 50px;
		height: 50px;
	}
}
/* ==============================================
    footer-sitemap
============================================== */
#footer-sitemap {
	background: #f4f4f4;
	padding: 70px 0 50px;
}

#footer-sitemap ul {
	list-style: none;
	margin-bottom: 30px;
}

#footer-sitemap nav#page-sitemap {
	margin-bottom: 40px;
}
#footer-sitemap nav#page-sitemap ul {
	display: flex;
	justify-content: space-between;
}
#footer-sitemap nav#page-sitemap li ul {
	display: block;
	margin-top: 10px;
	margin-left: 1em;
}

#footer-sitemap nav#page-sitemap li a {
	font-size: 1.125em;
	font-weight: 700;
	color: #0958a5;
}
#footer-sitemap nav#page-sitemap li a::before {
	content: "■";
}

#footer-sitemap nav#page-sitemap li li a {
	font-size:1em;
	font-weight: 400;
	color: #2d2d2d;
}
#footer-sitemap nav#page-sitemap li li a::before {
	display: none;
}


#footer-sitemap nav#btn-inquiry ul {
	display: flex;
	justify-content: center;
}
#footer-sitemap nav#btn-inquiry li {
	margin: 0 1px;
}
#footer-sitemap nav#btn-inquiry li.btn_contact {
	margin-left: 35px;
}

#footer-sitemap nav#btn-inquiry li a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 220px;
	height: 50px;
	padding: 0 15px;
	font-weight: 700;
	font-size: 1.125em;
}
#footer-sitemap nav#btn-inquiry li a::before {
	content: "";
	display: inline-block;
	background-repeat: no-repeat;
	background-position: 0 0;
	background-size: contain;
	width: 24px;
	height: 24px;
	margin-right: 15px;
	vertical-align: middle;
	transition: .2s;
}

#footer-sitemap nav#btn-inquiry li.btn_entry a {
	color: #fff;
}
#footer-sitemap nav#btn-inquiry li.btn_entry a::before {
	background-image: url("image/arrow3_w.svg");
}

#footer-sitemap nav#btn-inquiry li.btn_contact a {
	border: 1px solid #2d2d2d;
	color: #0958a5;
}
#footer-sitemap nav#btn-inquiry li.btn_contact a::before {
	background-image: url("image/icon_mail.png");
}

#footer-sitemap nav#btn-inquiry li.btn_graduates a {
	background: #db0f21;
}
#footer-sitemap nav#btn-inquiry li.btn_career a {
	background: #0958a5;
}

#footer-sitemap nav#btn-inquiry li a:hover {
	text-decoration: none;
	opacity: 1;
}

@media screen and (min-width: 701px) {
	#footer-sitemap nav#btn-inquiry li.btn_entry a:hover::before {
		transform: translateX(2px);
	}
	#footer-sitemap nav#btn-inquiry li.btn_contact a:hover::before {
		transform: translateY(2px);
	}
}

@media screen and (max-width: 1000px) {
	#footer-sitemap nav#page-sitemap ul {
		flex-wrap: wrap;
	}
	#footer-sitemap nav#page-sitemap li {
		width: 30%;
	}
	#footer-sitemap nav#page-sitemap li ul {
		display: block;
	}
	#footer-sitemap nav#page-sitemap li ul li {
		width: auto;
	}
	
	#footer-sitemap nav#btn-inquiry ul {
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
	}
	#footer-sitemap nav#btn-inquiry li {
		width: 48%;
		margin: 10px 1px !important;
	}
	#footer-sitemap nav#btn-inquiry li a {
		width: 100%;
	}
	
}

@media screen and (max-width: 700px) {
	#footer-sitemap {
		padding: 30px 0;
	}
	#footer-sitemap nav#page-sitemap {
		display: none;
	}
}

/* ==============================================
    footer
============================================== */
footer {
	background: #fff;
	padding: 50px 0 30px;
}
footer .f-info {
	text-align: center;
}
footer .f-info strong {
	display: block;
	margin-bottom: 10px;
}
footer .f-info strong img {
	width: 270px;
}
footer .f-info address {
	font-style: normal;
	display: inline-block;
	font-size: 0.875em;
}
footer .f-info a#btn_corporate_site {
	display: inline-block;
	border: 1px solid #2d2d2d;
	color: #323232;
	font-size: 0.875em;
	font-weight: 500;
	line-height: 1.2;
	padding: 8px 30px;
	margin-left: 30px;
}
footer .f-info a#btn_corporate_site:hover {
	text-decoration: none;
}

footer .f-foot {
	display: flex;
	justify-content: space-between;
}

footer .f-foot nav {
	order: 2;
}
footer .f-foot nav ul {
	list-style: none;
	display: flex;
	justify-content: flex-end;
}
footer .f-foot nav li {
	margin-left: 20px;
}
footer .f-foot nav li a {
	color: #323232;
	font-size: 0.875em;
}
footer .f-foot nav li a::before {
	content: "";
	display: inline-block;
	background: url("image/arrow1_r.svg") no-repeat 0 0;
	background-size: contain;
	width: 12px;
	height: 12px;
	vertical-align: middle;
	margin-right: 5px;
}


#copyright {
	order: 1;
	font-size: 0.875em;
}


@media screen and (max-width: 1000px) {

}

@media screen and (max-width: 700px) {
	footer {
		padding: 20px 0;
	}
	footer .f-info strong img {
		width: 200px;
	}
	footer .f-info a#btn_corporate_site {
		display: block;
		margin: 10px auto;
		width: 40%;
	}
	footer .f-foot {
		display: block;
	}
	footer .f-foot nav ul {
		justify-content: center;
		margin-top: 20px;
	}
	#copyright {
		text-align: center;
		margin-top: 20px;
	}
}


/* ==============================================
    interview-archive
============================================== */

.interview-archive ul {
	list-style: none;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 55px;
}
.interview-archive li {
	width: 49%;
	margin-bottom: 50px;
}
body.interview .interview-archive li {
	margin-bottom: 80px;
}
.interview-archive li:nth-child(2n+1) {
	margin-top: 50px;
}
.interview-archive li .catch {
	background: #0958a5;
	padding: 35px 40px 65px;
	color: #fff;
	font-size: 1.875em;
	font-weight: 900;
	line-height: 1.4;
}
.interview-archive li .box {
	background: #fff;
	width: 80%;
	margin: -45px auto 0 auto;
	box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.2);
	position: relative;
}
.interview-archive li .box figure {
	height: 300px;
	overflow: hidden;
}
.interview-archive li a figure img {
	transition: .2s;
}
.interview-archive li .box .name {
	padding: 30px;
	font-size: 1.125em;
}
.interview-archive li a {
	color: #2e2e2e;
	position: relative;
	display: inline-block;
}
.interview-archive li a::after {
	content: "";
	display: block;
	background: url("image/arrow2_b.svg") no-repeat 0 0 / contain;
	width: 14px;
	height: 14px;
	position: absolute;
	bottom: 20px;
	right: 20px;
	transition: .2s;
	
}

@media screen and (min-width: 701px) {
	.interview-archive li a:hover figure img {
		transform: scale(1.1);
	}
}

@media screen and (max-width: 1300px) {
	.interview-archive li .box figure {
		height: 23vw;
	}
}

@media screen and (max-width: 1000px) {
	.interview-archive li .catch {
		font-size: 1.375em;
	}
}
@media screen and (max-width: 700px) {
	.interview-archive ul {
		display: block;
	}
	.interview-archive li {
		margin-bottom: 50px;
		width: 100%;
	}
	.interview-archive li:nth-child(2n+1) {
		margin-top: 0;
	}
	.interview-archive li .box figure {
		height: auto;
	}
}


/* ==============================================
    スクロールアニメーション
============================================== */
.scrollin {}
.fadein {}
.slidein {}

.scrollin.fadein {
	opacity : 0;
	visibility: hidden;
	transition: 0.5s;
	transform: translateY(100px);
}
.scrollin.fadein.active {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.scrollin.slidein {
	opacity : 0;
	visibility: hidden;
	transition: 0.5s;
	transform: translateX(300px);
}
.scrollin.slidein.active {
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
}

/* ==============================================
    editor font size
============================================== */
.has-x-small-font-size,
.font-ss {
  font-size: 0.750em !important;/*12px  10px*/
}
 
.has-small-font-size,
.font-s {
  font-size: 0.875em !important;/*14px  13px*/
}
 
.has-regular-font-size {
  font-size: 1.000em !important;/*16px*/
}
 
.has-large-font-size,
.font-l {
  font-size: 1.500em !important;/*24px  24px*/
}
 
.has-x-large-font-size,
.font-ll {
  font-size: 1.875em !important;/*30px  36px*/
}
 
.has-huge-font-size,
.font-xl {
  font-size: 2.250em !important;/*36px  50px*/
}

/* ==============================================
    custom color
============================================== */

.has-custom-blue-color {
	color: #0958a5;
}
.has-custom-red-color {
	color: #db0f22;
}
.has-custom-yellow-color {
	color: #ffcc00;
}
.has-custom-gray-color {
	color: #f1f4f6;
}
.has-custom-skyblue-color {
	color: #5088bf;
}
.has-custom-lightblue-color {
	color: #bedcf0;
}
.has-custom-white-color {
	color: #ffffff;
}
.has-custom-dardgray-color {
	color: #555555;
}
.has-custom-black-color {
	color: #000000;
}

.has-custom-blue-background-color {
	background-color: #0958a5;
}
.has-custom-red-background-color {
	background-color: #db0f22;
}
.has-custom-yellow-background-color {
	background-color: #ffcc00;
}
.has-custom-gray-background-color {
	background-color: #f1f4f6;
}
.has-custom-skyblue-background-color {
	background-color: #5088bf;
}
.has-custom-lightblue-background-color {
	background-color: #bedcf0;
}
.has-custom-white-background-color {
	background-color: #ffffff;
}
.has-custom-dardgray-background-color {
	background-color: #555555;
}
.has-custom-black-background-color {
	background-color: #000000;
}

