@charset "UTF-8";

/* font */

.a1min {
    /*font-family: A1 Mincho*/
    font-family: yu-mincho-pr6, sans-serif;
    font-weight: 400;
    font-style: normal;
}

/* flexbox */

.flex {
    display: -webkit-flex;
    display: flex;
    display: -webkit-inline-flex;
    display: inline-flex;
    width: 100%
}

.flex.column {
    width: auto;
}

.column {
    flex-direction: column;
    -webkit-flex-direction: column;
}

.j-c {
    justify-content: center;
    -webkit-justify-content: center
}

.j-sb {
    justify-content: space-between;
    -webkit-justify-content: space-between
}

.j-sa {
    justify-content: space-around;
    -webkit-justify-content: space-around
}

.j-en {
    justify-content: flex-end;
    -webkit-justify-content: flex-end
}

.j-st {
    justify-content: flex-start;
    -webkit-justify-content: flex-start;
}

.a-c {
    align-items: center;
    -webkit-align-items: center;
}

.a-en {
    align-items: flex-end;
    -webkit-align-items: flex-end;
}

.wrap {
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
}

/* common */

.mainimg {
    width: 100%;
    background-size: 100% auto !important;
    position: relative
}

#introduction {
    background: #EBE5DA;
    text-align: center;
    padding-bottom: 50px;
    color: #595757;
}

#introduction h1 {
    max-width: 500px;
    width: 100%;
    margin: 50px auto 15px;
}



ul,
li {
    list-style: none;
    margin: 0;
    padding: 0;
}

a:hover {
    opacity: 0.5
}

@media screen and (max-width:414px) {
    #introduction h1 {
        width: 80%;
        margin: 15px auto;
    }

    #introduction p {
        padding: 0 15px;
        text-align: left;
    }
}

/* recruit */

#top {
    overflow: hidden;
    margin-top: 90px
}

#recruit-page #message .mainimg {
    background: url('../img/recruit/mainimg-message@2x.png') 0 0 no-repeat;
    padding-bottom: calc(100%*1001/3200);
}

#recruit-page #message {
    background: #E5E5DB;
    text-align: center;
}

#recruit-page #message h2 {
    margin: 30px 0;
    padding: 0 !important;
}

#recruit-page #message h3 {
    margin-bottom: 35px;
}

#recruit-page #message .desc p {
    color: #595757;
}

#recruit-page #message .desc {
    margin-bottom: 70px;
}

#recruit-page #recruit-menu {
    padding: 170px 0;
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
}

#recruit-page #recruit-menu figure {
    margin-bottom: 110px;
}


#recruit-page #recruit .mainimg {
    background: url('../img/recruit/recruit-bg@2x.png') 0 0 no-repeat;
    padding-bottom: calc(100%*800/3200);
}


#recruit-page #recruit .mainimg h1 {
    position: absolute;
    bottom: 40px;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-bottom: 1px solid #fff;
    padding-bottom: 15px;
}

.w1170 {
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
}

#recruit .w1170 {
    padding: 60px 0;
}

#recruit {
    background: #E5E5E5;
}

#recruit h2,
#recruit h3 {
    color: #808080;
    border-bottom: 1px solid #808080;
    padding-bottom: 5px;
    font-weight: normal;
    margin-bottom: 35px;
}

#recruit h2 + .flex p {
    margin: 0 0 0 15px;
    color: #595757;
}

#recruit h2 + .flex figure {
    flex-shrink: 0;
    flex-grow: 0;
    flex-basis: 480px;
}

#recruit #summary .flex {
    border-bottom: 1px solid #ABABAC;
    padding-bottom: 40px;
    margin-bottom: 45px;
}

/* app.css Reset */

input[type=radio] + label {
    background: none;
    border-radius: 0;
    padding: 0;
    height: auto;
    width: auto;
    line-height: 0;
    margin: 0;
    display: inline-block;
    border: none;
    color: #fff;
    -webkit-transition: none;
    transition: none;
}

input[type=radio]:checked + label {
    background: none;
    border: none;
    color: #fff;
}

/* reset-end */

.tabs {
    width: 100%;
    margin-bottom: 40px;
}

/*タブのスタイル*/
.tab_item {
    float: left;
    width: 180px !important;
    height: 50px !important;
    border-radius: 0 !important;
    line-height: 50px !important;
    padding: 0 !important;
    font-weight: normal;
    border: 1px solid #ABABAC !important;
    background: none !important;
    color: #727171 !important;
    margin: 0 15px 15px 0 !important;
}

.tab_item:hover {
    opacity: 0.75;
}

/*ラジオボタンを全て消す*/
input[name="tab_item"] {
    display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
    display: none;
    clear: both;
    overflow: hidden;
    background: #fff;
    padding: 50px 60px;
    color: #595757;
}

.tab_content p,
.tab_content dl,
.tab_content dt,
.tab_content dd,
.tab_content ul,
.tab_content li {
    font-weight: normal;
}

.tab_content_description .flex div {
    flex-basis: 45%;
    flex-shrink: 0;
    flex-grow: 0;
}


/*選択されているタブのコンテンツのみを表示*/
#type01:checked ~ #type01_content,
#type02:checked ~ #type02_content,
#type03:checked ~ #type03_content {
    display: block;
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item {
    background: #948049 !important;
    color: #fff !important;
    border: 1px solid #948049 !important;
}

.tab_content dl {
    font-size: 0.9rem;
}

.tab_content_description dt,
.tab_content_description dd {
    margin: 0 !important;
    font-weight: normal
}

#recruit h3 + p {
    margin: 0;
    color: #595757;
}

.rec-nav {
    background: #fff;
    padding: 95px 0 85px 0;
}

.rec-nav li:nth-child(1),
.rec-nav li:nth-child(2) {
    margin-right: 45px;
}

@media screen and (max-width:414px) {
    #recruit-page #recruit-menu {
        padding: 15px;
    }

    #recruit-menu .flex li a img {
        width: 100%;
    }

    #recruit-page #recruit-menu figure {
        margin-bottom: 15px;
    }

    #recruit .w1170 {
        padding: 15px;
    }

    .tab_item {
        width: 100% !important;
        margin: 0 !important;
        margin-bottom: 5px !important;
        height: 80px !important;
        line-height: 80px !important;
        font-size: 1.8rem;
    }

    #recruit #summary .flex {
        display: block;
    }

    #recruit h2 + .flex figure,
    #recruit h2 + .flex figure img {
        width: 100%;
    }

    #recruit h2 + .flex p {
        margin: 15px 0;
        text-align: center;
    }

    p,
    dl,
    ul,
    li {
        font-size: 1rem;
    }

    #recruit-page #message .desc p {
        padding: 0 20px;
        text-align: left;
    }

    #recruit-page #message .desc p:last-child {
        text-align: right;
    }

    .tab_content .flex {
        display: block;
    }

    .rec-nav .flex {
        display: block;
        margin: 0 auto;
    }

    .rec-nav .flex img {
        width: 100%;
    }

    .rec-nav {
        padding: 15px;
    }

    .rec-nav li:nth-child(1),
    .rec-nav li:nth-child(2) {
        margin-right: 0;
        margin-bottom: 5px;
    }

    #recruit-page #message h2 {
        width: 50%;
        margin: 30px auto;
    }

    #recruit-page #message h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    #recruit-page #recruit .mainimg h1 {
        width: 130px;
        bottom: 0;
        padding-bottom: 5px;
    }

    .tab_content {
        padding: 15px;
    }

    #recruit h2,
    #recruit h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    #recruit h2 + .flex p {
        text-align: left;
    }

    #recruit #summary .flex {
        border: none;
        padding-bottom: 0;
        margin-bottom: 15px;
    }
}

#flow-page .mainimg {
    background: url('../img/recruit/mainimg-flow@2x.png') 0 0 no-repeat;
    padding-bottom: calc(100%*1004/3200);
}


/* flow */

@media screen and (min-width:971px) {


    #flow-map figure {
        margin: 0 auto;
        display: block;
        text-align: center;
    }

    #flow-map {
        padding: 90px 0;
        position: relative;
        width: 100%;
        max-width: 970px;
        margin: 0 auto;
    }

    #flow-map dl {
        position: absolute;
        width: 238px;
        color: #595757
    }

    #flow-map dl dd {
        font-size: 15px;
        margin: 0;
    }

    #flow-map dl dt {
        font-size: 24px;
        font-weight: normal;
    }

    #flow-map dl dt:before {
        content: "□";
    }

    dl.flow01 {
        top: 70px;
        left: 50px;
    }

    dl.flow02 {
        left: 50px;
        top: 467px;
    }

    dl.flow03 {
        left: 50px;
        top: 970px;
    }

    dl.flow04 {
        right: 50px;
        top: 197px;
    }

    dl.flow05 {
        right: 50px;
        top: 716px;
    }

    #flow-map p {
        font-size: 28px;
        text-align: center;
        color: #595757;
        margin: 30px auto 0;
        border: 1px solid #595757;
        max-width: 950px;
        height: 50px;
    }

    .smp-view {
        display: none
    }
}

@media screen and (max-width:970px) {
    .pc-view {
        display: none
    }

    .smp-view {
        display: block
    }

    #flow-map {
        padding: 30px;
    }

    #flow-map figure,
    #flow-map figure img {
        text-align: center;
    }

    #flow-map dl {
        border: 1px solid #ddd;
        padding: 15px;
        width: 500px;
        margin: 30px auto;
        position: relative;
        background: #fff;
        box-shadow: 1px 1px 3px #ddd;
        color: #333;
        font-size: 1.4rem;
    }

    #flow-map dt {
        font-weight: normal;
    }

    #flow-map dt:before {
        content: "□";
    }

    #flow-map dd {
        margin: 0;
    }

    #flow-map .flow01:after {
        content: "";
        display: block;
        position: absolute;
        border-left: 10px dotted #ddd;
        height: 2500px;
        top: -50px;
        left: 50%;
        z-index: -2;
    }

    #flow-map dl:before {
        top: 0;
    }

    #flow-map p {
        text-align: center;
        border: 1px solid #ABABAC;
        background: #fff;
        font-size: 2rem;
        color: #333;
        height: 60px;
    }
}

@media screen and (max-width:414px) {
    #flow-map dl {
        width: 100%;
        font-size: 1rem;
    }

    #flow-map p {
        font-size: 1.2rem;
        height: auto;
    }

    #flow-map .flow01:after {
        height: 2150px;
    }

}

/* interview */

#interview-page .mainimg {
    background: url('../img/recruit/mainimg-staffinterview@2x.png') 0 0 no-repeat;
    padding-bottom: calc(100%*1004/3200);
}

#interview-wrapper {
    padding: 150px 0;
}

.staff-box .prof {
    flex-basis: 570px;
    flex-shrink: 0;
    flex-grow: 0;
}

.staff-box h2,
.staff-box h3 {
    color: #595757;
    font-size: 1.8rem;
}

.staff-box:nth-child(odd) .prof {
    margin-right: 30px;
}

.staff-box:nth-child(even) .prof {
    margin-left: 30px;
}

.prof dl {
    border: 1px solid #948049;
    color: #948049;
}

.prof dt {
    background: #948049;
    color: #fff;
    font-size: 0.8rem;
    padding: 5px 15px;
}

.prof dd {
    margin: 0;
    padding: 5px 15px;
}

.prof dd .roma {
    font-weight: bold;
    display: block;
    font-size: 1rem;
}

.prof dd p {
    font-size: 2rem;
    margin: 0;
    padding: 0;
}

.prof dd p span:last-child {
    font-size: 1rem;
    vertical-align: middle;
    margin-left: 15px;
    display: inline-block;
    font-weight: bold;
}

.cont dl {
    font-size: 1rem;
}

.cont dd {
    margin: 0;
    color: #595757;
}

.cont .flex div:first-child {
    flex-basis: 570px;
    flex-grow: 0;
    flex-shrink: 0;
}


dt.flex.a-c:before {
    content: "";
    width: 20px;
    height: 1px;
    background: #948049;
    margin-right: 5px;
}

dt.flex.a-c {
    color: #948049;
}

.staff-box:last-child .large-img {
    margin-right: 30px;
}

#staff01 {
    margin-bottom: 100px
}

@media screen and (max-width:1170px) {
    #interview-wrapper {
        padding: 15px;
    }

    #staff01 > .flex {
        flex-direction: column;
    }

    #staff02 > .flex {
        flex-direction: column-reverse;
    }

    .prof dd.flex {
        flex-direction: row;
        padding: 5px;
    }

    .prof {
        width: 100%;
        display: -webkit-flex;
        display: flex;
        display: -webkit-inline-flex;
        display: inline-flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 30px !important;
        flex-direction: column-reverse;
    }

    .prof dl {
        width: 100%;
    }

    .staff-box h2 br,
    .staff-box h3 br {
        display: none;
    }

    .staff-box {
        border: 1px solid #ddd;
        padding: 30px;
        margin-bottom: 50px;
    }


    .staff-box:nth-child(even) .prof {
        margin-left: 0;
    }

    .cont .flex.j-sb {
        flex-direction: column-reverse;
    }

    .cont .flex.j-sb img {
        width: 100%;
    }

    .cont .flex div:first-child {
        flex-basis: auto;
    }

    .staff-box:last-child .large-img {
        margin: 0;
    }
}

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

    .prof dd .roma {
        font-size: 0.8rem;
    }

    .prof .a1min {
        font-size: 1.5rem;
    }

    .prof dd p span:last-child {
        font-size: 0.5rem;
    }

    .prof dd p + img {
        max-width: 30px;
        margin-left: 15px;
    }

    .prof dd.flex {
        justify-content: center;
    }

    .prof dd p,
    .staff-box h2,
    .staff-box h3 {
        font-size: 0.8rem;
    }

    .prof dl {
        margin: 0 0 15px 0;
    }

    .staff-box:nth-child(odd) .prof {
        margin: 0;
    }

    .staff-box:nth-child(even) .prof {
        margin: 0;
    }

    .staff-box .prof {
        flex-basis: auto;
    }

    dt.flex.a-c:before {
        display: none;
    }

    dt.flex.a-c {
        font-size: 0.8rem;
        justify-content: center;
    }

    .staff-box {
        padding: 15px
    }


    .prof dd {
        padding: 5px 0;
    }

    .prof dd p,
    .staff-box h2,
    .staff-box h3 {
        font-size: 1rem;
    }

}

/* customhome-page */

#customhome-page #contents-wrapper {
    background: url(../img/customhome/bg@2x.png);
    background-repeat: repeat-y;
    background-size: 40%;
    background-position: left;
}

#customhome-page .mainimg {
    background: url('../img/customhome/mainimg@2x.png') 0 0 no-repeat;
    padding-bottom: calc(100%*1201/3200);
}

#customhome-page .inner {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    color: #595757;
    padding: 120px 0;
}

#customhome-page .inner:before {
    top: 0;
    left: 50%;
    width: 50%;
    height: 100%;
    content: '';
    position: absolute;
    background: #000;
    z-index: -2;
}

#customhome-page .inner .contBox {
    width: 100%;
    max-width: 1170px;
    margin: auto;
}

#customhome-page .inner .contBox .flex dl {
    flex-basis: 50%;
}

#customhome-page .inner .contBox .headline01,
#customhome-page .inner-smp .contBox .headline01 {
    border-left: 5px solid #595757;
    padding-left: 10px;
}

#customhome-page .inner .contBox .flex dd,
#customhome-page .inner-smp .contBox .flex dd {
    margin: 0;
    font-size: 1rem;
}

#customhome-page .inner .contBox .flex .left {
    padding-right: 30px;
}

#customhome-page .inner .contBox .flex .right {
    padding-left: 30px;
    color: #fff;
}

#customhome-page .inner .contBox div {
    margin: 30px 0;
}

#customhome-page .inner .contBox .vr-menu {
    display: block;
    margin: 150px 0 0;
}

#customhome-page .inner #line01 .right {
    margin-top: 50px;
}

#customhome-page .inner .contBox .headline01 span,
#customhome-page .inner-smp .contBox .headline01 span {
    font-size: 0.8rem;
    display: inline-block;
    background: #E05514;
    color: #fff;
    width: 80px;
    text-align: center;
    line-height: 30px;
    height: 30px;
    margin-right: 10px;
}

#customhome-page .rec-nav {
    background: none
}

#customhome-page .inner-smp {
    display: none
}

/* VRコンテンツは指示あるまで非表示 */

#customhome-page #line03,
#customhome-page #line04 {
    display: none;
}

@media screen and (max-width:1170px) {
    #customhome-page .inner {
        padding: 5% 3%;
    }

    #customhome-page #line02 figure {
        max-width: 490px;
    }
}

@media screen and (max-width:768px) {
    #customhome-page #line02 figure {
        max-width: 390px;
    }
}

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

    #customhome-page .inner {
        display: none
    }

    #customhome-page .inner-smp {
        display: block
    }

    #customhome-page .inner-smp .flex {
        flex-direction: column;
        -webkit-flex-direction: column;
    }

    #customhome-page .inner-smp {
        padding: 5%;
    }

    #customhome-page #contents-wrapper {
        background-size: 100%;
        background-position: center;
    }

    #customhome-page .inner-smp .right {
        padding: 3%;
        margin: 0 0 50px 0;
    }

    #customhome-page .inner-smp #line01 .right {
        background: #000;
        color: #fff;
    }
}

/* built-page */


#built-page .mainimg {
    background: url('../img/built/mainimg@2x.png') 0 0 no-repeat;
    padding-bottom: calc(100%*1201/3201);
}

#built-page #contents-wrapper {
    background: url(../img/built/bg@2x.png);
    background-repeat: repeat-y;
    background-size: 100%;
    padding: 120px 0
}


#built-page #contents-wrapper .headline01 {
    border-left: 5px solid #595757;
    padding-left: 10px;
    margin-bottom: 15px
}

#built-page #contents-wrapper dd {
    margin: 0;
    font-size: 1rem;
}

#built-page #contents-wrapper #line01 figure,
#built-page #contents-wrapper #line02 div {
    flex-basis: auto;
    width: 570px;
    flex-shrink: 0;
    flex-grow: 0;
    margin-right: 30px;
}

#built-page #contents-wrapper #line01 figure img,
#built-page #contents-wrapper #line02 figure img {
    width: 100%;
}

#built-page #contents-wrapper #line01 dl,
#built-page #contents-wrapper #line02 figure {
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: auto;
}

#built-page #contents-wrapper #line01 {
    margin-bottom: 180px;
}

#built-page #contents-wrapper #line02 div dl {
    margin-bottom: 130px !important;
    line-height: 1.8;
}


#built-page #contents-wrapper #line02 {
    align-items: flex-end;
    -webkit-align-items: flex-end;
}

#built-page #contents-wrapper #line04 {
    background: #E5E5E5;
    padding: 3% 0;
}

#built-page #contents-wrapper dl {
    margin: 0;
}

div#line04 .flex dd {
    flex-basis: 48%;
}

#built-page #contents-wrapper .vr-menu {
    display: block;
    margin: 150px 0 70px 0;
}

#built-page .rec-nav {
    background: none
}

/* VRコンテンツは指示あるまで非表示 */

#built-page #line03,
#built-page #line04 {
    display: none !important;
}


@media screen and (max-width:1170px) {
    #built-page #contents-wrapper {
        padding: 5% 3%;
    }
}

@media screen and (max-width:768px) {
    #built-page #contents-wrapper {
        padding: 5% 3%;
    }

    #built-page #contents-wrapper .flex {
        flex-direction: column;
        -webkit-flex-direction: column;
    }

    #built-page #contents-wrapper #line01 figure,
    #built-page #contents-wrapper #line02 div {
        width: 100%;
        margin-right: 0;
    }

    #built-page #contents-wrapper #line01 figure {
        margin-bottom: 30px;
    }

    #built-page #contents-wrapper #line01 {
        margin-bottom: 50px;
    }

    #built-page #contents-wrapper #line02 div dl {
        margin-bottom: 30px !important;
    }

    #built-page #contents-wrapper #line02 figure {
        margin-bottom: 15px;
        width: 100%;
    }

    #built-page .rec-nav {
        text-align: center;
    }

    #built-page #contents-wrapper .vr-menu {
        margin: 30px 0;
    }

    #built-page #contents-wrapper #line04 {
        padding: 5%;
        margin-bottom: 15px;
    }
}