@charset "UTF-8";

/****************
    フェードイン
    共通
    パンくず
    TOPへ戻るボタン
    トップページ共通部分
    写真が無い場合
    お問い合わせ
    企業情報
*****************/

/*****************************************************************
    フェードイン
******************************************************************/

.fadeInDown {
    -webkit-animation-fill-mode:both;
    -ms-animation-fill-mode:both;
    animation-fill-mode:both;
    -webkit-animation-duration:1s;
    -ms-animation-duration:1s;
    animation-duration:1s;
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    visibility: visible !important;
}
@-webkit-keyframes fadeInDown {
    0% { opacity: 0; -webkit-transform: translateY(100px); }
    100% { opacity: 1; -webkit-transform: translateY(0); }
}
@keyframes fadeInDown {
    0% { opacity: 0; -webkit-transform: translateY(100px); -ms-transform: translateY(100px); transform: translateY(100px); }
    100% { opacity: 1; -webkit-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); }
}


/*****************************************************************
    共通
******************************************************************/
.pc {
    display: block;
}

.sp {
    display: none;
}

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

body {
	color: #000;
}

.main {
	padding-top: 70px;
	color: #000;
	font-size: 17px;
    z-index: -1;
}

img {
    max-width: 100%;
}

img.ofi {
    object-fit: contain;
    object-position: center;
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
}

.btn {
	border-radius: 0;
}

.btn.focus, .btn:focus {
	outline: initial;
	box-shadow: initial;
}

.navbar-toggler:focus {
	outline: initial;
}

.title {
	background-color: #dee2e6;
	padding: 3rem 0;
	margin-bottom: 2rem;
	text-align: center;
}

.title h1 {
	font-size: 33px;
	font-weight: 500;
}

.title h2 {
	width: 40rem;
	margin: auto;
    font-size: 22px;
}

.pager-box {
    margin: 0 auto 25px;
    width: 100%;
    text-align: center;
}

.link,
.inquiry-link,
.jobstar-link {
    color: #285893;
}

.slick-prev,
.slick-next {
    z-index: 1;
}

.slick-prev:before,
.slick-next:before {
    color: #000;
}

@media screen and ( max-width:991px ) {
	.pager-box {
        font-size: 13px;
    }
    .slick-prev {
        left: 0;
    }
    .slick-next {
        right: 0;
    }
}

@media screen and ( max-width:768px ) {
	.title {
		padding: 3vw 0;
	}
	.title h2 {
		width: 66vw;
	    font-size: 18px;
	}
}

@media screen and ( max-width:414px ) {
    .title h1 {
    	font-size: 6vw;
    }
    .title h2 {
    	width: 80vw;
    	font-size: 15px;
    }
}

/****************************************************
    @ パンくずリスト breadcrumb
****************************************************/

.breadcrumb {
	background-color: #fff;
	margin-bottom: 0;
    padding: 12px;
}

.breadcrumb-item {
    display: inline-block;
}

.breadcrumb-item.active{
    color: #000;
}

.breadcrumb-item a{
	color: #000;
}

/*************************************************
    @ topへ戻るボタン
**************************************************/
#page-top {
    position: fixed;
    bottom: 60px;
    right: 14px;
    font-size: 70%;
    z-index: 1;
    width: initial;
}

.g-footer__btm__anchor a {
    display: block;
    position: relative;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #666;
    -webkit-transition: background .3s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: background .3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.g-footer__btm__anchor a:before {
    content: '^';
    position: absolute;
    top: 6px;
    right: 0;
    left: 0;
    margin: auto;
    font-size: 31px;
    color: #fff;
    text-align: center;
}

.g-footer__btm__anchor a:hover {
    opacity: .5;
}

@media screen and (max-width: 441px) {
	.g-footer__btm__anchor a {
		width: 38px;
	    height: 38px;
	}
	.g-footer__btm__anchor a:before {
		top:0;
	}
}

/***************************************
    @ トップページ共通部分
****************************************/
section {
    position: relative;
}

/****表示位置****/
.top,
.middle,
.bottom {
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
}

.top {
    top: 0;
    margin-top: 3vw;
}

.middle {
    top: 50%;
    transform: translateY(-50%);
    -webkit- transform: translateY(-50%);
}

.bottom {
    bottom: 0;
    margin-bottom: 3vw;
}

.main_text.big,
.main_text.normal,
.main_text.small,
.sub_text.big,
.sub_text.normal,
.sub_text.small {
    display: block;
    margin-bottom: 0;
    text-shadow: #fff 1px 1px;
}

/****メインタイトルサイズ****/
.main_text.big {
    font-size: 6vw;
}

.main_text.normal {
    font-size: 3vw;
}

.main_text.small {
    font-size: 2vw;
}

/**サブタイトルサイズ***/
.sub_text.big {
    font-size: 3.5vw;
}

.sub_text.normal {
    font-size: 2vw;
}

.sub_text.small {
    font-size: 1.5vw;
}

@media screen and (max-width: 1150px) {
    .main_text.small {
        font-size: 21px;
    }
    .sub_text.small {
        font-size: 17px;
    }
}
@media screen and (max-width: 768px) {
    .main_text.normal {
        font-size: 4vw;
    }
    .sub_text.normal {
        font-size: 3vw;
    }
}
@media screen and (max-width: 414px) {
    .main_text.normal {
        font-size: 16px;
    }
    .sub_text.big,
    .sub_text.normal,
    .sub_text.small {
        font-size: 3.7vw;
    }
}
/***************************************
    @ 写真が無い場合
****************************************/
.fp-photo-box {
    position: relative;
}

.fp-photo-box p {
    font-size: 2vw;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: -.5em auto 0;
    text-align: center;
    color: #c5c5c5;
}
/***************************************
    @ お問い合わせ
****************************************/
.inquiry-form-wrap {
    margin: 0 auto 50px;
    max-width: 800px;
}

.inquiry-form-box {
    border-top:1px solid #bfbfbf;
    border-left:1px solid #bfbfbf;
    border-right:1px solid #bfbfbf;
    padding: 0 15px;
}

.inquiry-confi-form{
    border-top:1px solid #bfbfbf;
    border-left:1px solid #bfbfbf;
    border-right:1px solid #bfbfbf;
    padding: 0 15px
}

.inquiry-confi-form .form-label-bg{
    background:#f2f2f2;
    border-bottom:1px solid #bfbfbf;
}

.inquiry-confi-form .form-label-bg2{
    border-bottom:1px solid #bfbfbf;
}

.inquiry-form-box .form-label-bg{
    background:#e5ebec;
}

.inquiry-form-box .form-label-bg,
.inquiry-form-box .inquiry-form {
    border-bottom: 1px solid #bfbfbf;
}

.inquiry-form-box .form-label-bg label{
    margin-top:6px;
}

.inquiry-form-box .form-label-bg .badge{
    margin: 8px 0 0;
}

.inquiry-form-box .inquiry-form .form-control{
    border-radius: 0;
}

.inquiry-form .inquiry-btn-box .btn-default {
    display: inline-block;
    margin: 5px 0;
    padding: 0.5rem 0;
    width: 180px;
    background: #ccc;
    color: #000;
    border: 1px solid #ccc;
    text-decoration: none;
}

.inquiry-btn-box {
    margin: 15px 0;
    text-align: center;
}

.inquiry-form .apply-btn-box {
    margin: 15px 0 50px;
    padding: 15px 0 5px;
    text-align: center;
}

.inquiry-form .inquiry-btn-box .inquiry-btn {
    display: inline-block;
    margin: 0;
    padding: 0.5rem 0;
    width: 180px;
    background: #4e7280;
    color: #fff;
}

.inquiry-form .inquiry-btn-box .inquiry-btn:hover {
    opacity: 0.65;
}

.inquiry-text {
    margin: 0 auto;
    max-width: 27em;
}

.inquiry-text--confirm {
    max-width: 576px;
}

.inquiry-text--thank {
    max-width: 576px;
}

.inquiry-text-strong {
    font-weight: 700;
    color: #fe0000;
}

@media screen and (max-width:991px) {
    .inquiry-form-box{
        border-top: none;
        border-left: none;
        border-right: none;
    }
    .inquiry-form-box .form-label-bg, .inquiry-form-box .inquiry-form {
        border-bottom: none;
    }
    .inquiry-confi-form{
        border-top: none;
        border-left: none;
        border-right: none;
    }
    .inquiry-confi-form .form-label-bg,
    .inquiry-confi-form .form-label-bg2,
    .inquiry-confi-form .inquiry-form {
        border-bottom: none;
    }
}

/*********************************************
    @ 企業情報
**********************************************/

.company-table {
    margin: 0 auto 50px;
    padding: 0;
    width: 100%;
	max-width: 850px;
    border: 1px solid #dee2e6;
}

.company-table th,
.company-table td {
    padding: 0.5em 1em;
}

.company-table th {
    width: 30%;
    background: #e9ecef;
}

.company-table .post-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.company-table .post-list .post {
    display: inline-block;
    width: 8em;
    font-weight: bold;
}

.company-table .list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.company-table .list li {
    position: relative;
    margin: 0 0 0 1em;
    padding: 0;
}

.company-table .list li::before {
    content: "・";
    position: absolute;
    top: 0;
    left: -1em;
}

@media screen and (max-width:991px) {
    .company-table {
        font-size: 14px;
    }
    .company-table th,
    .company-table td {
        display: block;
        width: 100%;
    }
}
/*************************************************
    @ 利用規約
**************************************************/
.sub {
    background: #ececec;
    padding: 1rem;
}

.privacy-main h2 {
    font-size: 16px;
    font-weight: bold;
    border-bottom: 1px dotted #999;
    padding-bottom: 5px;
    margin: 0;
}

.privacy-main h2 {
    border-bottom: 1px dotted #999;
}

.privacy-main p {
    margin-bottom: 2rem;
}

.pri_btn {
    text-align: center;
}

/******確同意チェック*****/
.pri_btn {
    text-align: center;
}
.pri_btn a {
    color: #007bff;
}