@charset "UTF-8";
/*******************************

recruitCss

*******************************/
.bg-wh{
	padding-top: 100px;
}
/*==== mobile スマフォ横〜用css ===*/
@media screen and (max-width: 896px) {
	.bg-wh{
		padding-top: 50px;
	}
}

/*-----------------------------
メインタイトル
-----------------------------*/
.page .mainimg h2 {
    width: 90%;
    max-width: 988px;
    margin: 0 auto;
    padding: 0;
    text-align: right;
}

.page .mainimg h2 .inner br {
    display: none;
}

.page .mainimg h2 .top {
    font-size: 350%;
    padding-right: 30px;
    letter-spacing: .03em;
}

.page .mainimg h2 .bottom {
    font-size: 150%;
    letter-spacing: .08em;
}

/*==== tablet タブレット用css ===*/
@media screen and (max-width: 1024px) {
    .page .mainimg {
        padding: 150px 0;
    }
}

/*==== mobile スマフォ横〜用css ===*/
@media screen and (max-width: 896px) {
    .page .mainimg {
        padding: 50px 0 0 0;
    }

    .page .mainimg h2 {
        width: 100%;
        padding: 0 3%;
        text-align: center;
    }

    .page .mainimg h2 .inner br {
        display: inline;
    }

    .page .mainimg h2 .top {
        font-size: 200%;
        padding: 0;
    }
    .page .mainimg h2 .bottom {
        font-size: 130%;
    }
}

/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px) {
    .page .mainimg {
        padding: 25px 0;
    }

    .page .mainimg h2 {
        padding: 0 5%;
    }
    .page .mainimg h2 .top {
        font-size: 180%;
    }
}

/*-----------------------------
page-link
-----------------------------*/
.page-link {
    background: #000;
}

.page-link ul {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 20px 0;
}

.page-link ul li {
    font-size: 110%;
}

.page-link ul li:not(:last-child) {
    border-right: 1px solid #fff;
}

.page-link a {
    display: block;
    color: #fff;
    padding: 0 15px;
}

.page-link a:hover {
    text-decoration: underline;
}

/*-----------------------------
section
-----------------------------*/
section {
    padding: 100px 0;
}

section .h200 {
    font-size: 200%;
    letter-spacing: .2em;
    text-align: left;
    margin-bottom: 25px;
    line-height: 2;
}

section .h200 span {
    display: block;
    font-size: 80%;
    letter-spacing: .05em;
    margin-bottom: 10px;
    color: #a0a0a0;
}

/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px) {
    section {
        padding: 50px 0;
    }

    section .h200 {
    font-size: 180%;
    letter-spacing: .05em;
    margin-bottom: 15px;
    }

    section .h200 span {
        margin-bottom: 0px;
    }
}

/*-----------------------------
sec01
-----------------------------*/
section .txt-wrap100 {
    width: 100%;
    overflow: hidden;
}

section .txt-wrap100 p {
    margin-bottom: 25px;
}

.sec01 .txt-wrap100 p.sign {
    margin-bottom: 0;
    font-weight: bold;
    float: right;
}

.sec01 .txt-wrap100 p.sign span.f-mincho {
    padding-right: 30px;
}

/*-----------------------------
sec02
-----------------------------*/
.sec02 {
    background: #f0f0ee;
}

a.form {
    display: block;
    background: #1b8cdb;
    padding: 15px;
    max-width: 400px;
    margin: 0 auto;
    font-size: 120%;
    color: #fff;
    position: relative;
}

a.form:after {
    content: "\f105";
    font-family: FontAwesome;
    margin-left: 10px;
    display: inline-block;
}

/*--tab--*/
.tab-label {
    text-align: center;
    padding: 15px .5em;
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    position: relative;
    z-index: 1;
    cursor: pointer;
    width: 33.4%;
    letter-spacing: 2px;
    -webkit-transition: all 300ms 0s ease;
    transition: all 300ms 0s ease;
    border: 1px solid #000;
    margin-left: -1px;
    margin-top: -1px;
    background: #fff;
    font-size: 110%;
}

.tab-content {
    width: 100%;
    height: 0;
    overflow: hidden;
    opacity: 0;
    background: #fff;
    padding: 0 8%;
}

/* アクティブなタブ */
.tab-switch:checked + .tab-label {
    color: #fff;
    background: #000;
}

.tab-switch:checked + .tab-label + .tab-content {
    height: auto;
    overflow: auto;
    padding: 70px 8%;
    opacity: 1;
    -webkit-transition: all 300ms 0s ease;
    transition: all 300ms 0s ease;
}

/* ラジオボタン非表示 */
.tab-switch {
    display: none;
}

/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px) {
    .tab-content {
        padding: 0 5%;
    }
    .tab-switch:checked + .tab-label + .tab-content {
        padding: 20px 5%;
    }
    .tab-label {
        padding: 10px .5em;
        width: 100%;
    }
}

/*-----------------------------
sec03
-----------------------------*/
.sec03 ul {
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.sec03 ul li {
    width: 30%;
    text-align: center;
    margin-bottom: 80px;
}

.sec03 ul li figure {
    margin: 0;
}

.sec03 ul li dl {
    max-width: 225px;
    margin: 20px auto 0;
    line-height: 1.8;
}

.sec03 ul li dt {
    margin-bottom: 15px;
}

.sec03 ul li dd {
    text-align: left;
    font-size: 90%;
}

/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px) {
    .sec03 ul {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .sec03 ul li {
        width: 48%;
        margin-bottom: 30px;
    }
}

/*-----------------------------
bg
-----------------------------*/
.bg{
	height: 80vh;
	max-height: 560px;
	background: url("../img/bg.jpg") no-repeat;
	background-attachment: fixed;
    background-size: 100%;
}