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

　CSS構成

　//絶対に変更しないCSS
　- reset.css           全てのブラウザ固有CSSをリセットするCSS。基本触らないこと。
　- bootstrap.min.css   Bootstrapコンポーネントを利用するためのCSS。基本触らないこと。
　- all.min.css         Font Awesome を利用するためのCSS。基本触らないこと。
　- aos.css             AOSを利用するためのCSS。基本触らないこと。

　//基本的には変更しないCSS
　- base.css            基本の文字設定や、Webフォントの読み込みなど。基本触らなくてもOK。

　//メインで利用しているCSS
　- common.css          ヘッダー、フッター、下層ページのタイトルなど、共通ページレイアウトを記載したCSS
　- stlye.css           各ページ固有のレイアウトを記載したCSS

　//補助的に利用しているCSS
　- module.css          見出しやリスト、テーブルなど、共通利用できるパーツをまとめたCSS
　- utility.css         マージンやパディング、文字サイズや文字色など、補助的に利用できるCSS

====================================================================================================*/



/*/////////////////////////////////////////////////////////////////
  index.html
/////////////////////////////////////////////////////////////////*/

/*------------------------------------------------------------------
  home-hero
------------------------------------------------------------------*/

/*  home-hero
------------------------------------------------------------------*/
.home-hero{
    position: relative;
    background: url(../images/common/bg-black.jpg) repeat;
    overflow: hidden;
    z-index: 1;
}
/*  home-hero-slider
------------------------------------------------------------------*/
.home-hero-slider{
    padding-left: 2.6vw;
}
.home-hero-slider .swiper-slide{
    background: #333;
    overflow: hidden;
}
.home-hero-slider .swiper-slide::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #333;
    opacity: .5;
    content: "";
    z-index: 1;
}
.home-hero-slider .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width:991px){
    .home-hero-slider .swiper-slide{
        aspect-ratio: 3 / 2;
    }
}
@media screen and (max-width:575px){
    .home-hero-slider{
        padding-left: 0;
    }
    .home-hero-slider .swiper-slide{
        aspect-ratio: 3 / 4;
    }
}
/*  home-hero-slider-image
------------------------------------------------------------------*/
.home-hero-slider-image{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    opacity: 0;
    animation: homeHeroSlide 1s ease-out forwards;
}
@keyframes homeHeroSlide {
    from{
        opacity: 0;
        transform: scale(1.1);
    }
    to{
        opacity: 1;
        transform: scale(1);
    }
}
/*  home-hero-detail
------------------------------------------------------------------*/
.home-hero-detail{
    position: absolute;
    bottom: 0;
    left: 0;
    padding-left: 5.2vw;
    z-index: 2;
}
.home-hero-detail::after{
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 80%;
    background: url(../images/common/bg-black.jpg) repeat;
    content: "";
    z-index: -1;
}
@media screen and (max-width:575px){
    .home-hero-detail{
        padding-left: 6vw;
    }
}
/*  home-hero-title-en
------------------------------------------------------------------*/
.home-hero-title{
    margin-bottom: .5em;
    font-size: 5vw;
    color: #fff;
    line-height: 1.3;
    --letter-spacing: 0;
}
.home-hero-title .wrap{
    display: block;
    width: fit-content;
    overflow: hidden;
}
.home-hero-title .inner{
    display: block;
    transform: translateY(100%);
    animation: homeHeroTitle .5s forwards .4s ease-out;
}
@keyframes homeHeroTitle {
    from{
        transform: translateY(100%);
    }
    to{
        transform: translateY(0);
    }
}
@media screen and (max-width:991px){
    .home-hero-title{
        font-size: 7vw;
    }
}
@media screen and (max-width:575px){
    .home-hero-title{
        font-size: 8.5vw;
    }
}
/*  home-hero-text
------------------------------------------------------------------*/
.home-hero-text{
    opacity: 0;
    font-size: 1.666vw;
    color: var(--accent-color);
    line-height: 1.3;
    animation: homeHeroText .8s forwards .4s ease-out;
}
.home-hero-text::after{
    display: inline-block;
    margin-bottom: .35em;
    margin-left: .6em;
    width: 2.5em;
    height: 1px;
    background: var(--accent-color);
    content: "";
}
@keyframes homeHeroText {
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}
@media screen and (max-width:991px){
    .home-hero-text{
        font-size: 2.5vw;
    }
}
@media screen and (max-width:575px){
    .home-hero-text{
        font-size: 4vw;
    }
}

/*------------------------------------------------------------------
  home-about
------------------------------------------------------------------*/

/*  home-about
------------------------------------------------------------------*/
.home-about{
    position: relative;
    padding: 200px 0 350px;
    background: url(../images/common/bg-black.jpg) repeat;
    overflow: hidden;
    z-index: 1;
}
@media screen and (max-width:1399px){
    .home-about{
        padding: 150px 0 250px;
    }
}
@media screen and (max-width:991px){
    .home-about{
        padding: 120px 0;
    }
}
@media screen and (max-width:767px){
    .home-about{
        padding: 80px 0 60px;
    }
}
/*  home-about-image
------------------------------------------------------------------*/
.home-about-image{
    position: absolute;
    bottom: 200px;
    left: 0;
    width: 1000px;
    overflow: hidden;
    z-index: -1;
}
.home-about-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width:1399px){
    .home-about-image{
        bottom: 150px;
        width: 800px;
    }
}
@media screen and (max-width:991px){
    .home-about-image{
        position: relative;
        bottom: initial;
        width: 100%;
        height: 300px;
        margin-bottom: 60px;
    }
}
@media screen and (max-width:575px){
    .home-about-image{
        height: auto;
        aspect-ratio: 16 / 9;
    }
}
/*  home-about-detail
------------------------------------------------------------------*/
.home-about-detail{
    flex-shrink: 0;
    width: 780px;
    padding: 0 0 90px 90px;
    margin-left: auto;
    background: url(../images/common/bg-black.jpg) repeat;
}
@media screen and (max-width:1399px){
    .home-about-detail{
        width: 680px;
        padding: 0 0 60px 60px;
    }
}
@media screen and (max-width:991px){
    .home-about-detail{
        padding: 0;
        width: 100%;
    }
}
/*  home-about-text
------------------------------------------------------------------*/
.home-about-text{
    margin-bottom: 2.5em;
    font-size: 1.125rem;
    color: #fff;
    --letter-spacing: .1em;
}
.home-about-text:last-of-type{
    margin-bottom: 0;
}
@media screen and (max-width:1399px){
    .home-about-text{
        font-size: 1rem;
        --letter-spacing: .05em;
    }
}
@media screen and (max-width:991px){
    .home-about-text{
        font-size: .875rem;
    }
}

/*------------------------------------------------------------------
  home-recruit
------------------------------------------------------------------*/

/*  home-recruit
------------------------------------------------------------------*/
.home-recruit{
    position: relative;
    padding-top: 100px;
    background: url(../images/common/bg-black.jpg) repeat;
    z-index: 2;
}
@media screen and (max-width:767px){
    .home-recruit{
        padding-top: 0;
        background: var(--primary-color);
    }
}
/*  home-recruit-image
------------------------------------------------------------------*/
.home-recruit-image{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}
.home-recruit-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width:767px){
    .home-recruit-image{
        position: relative;
        height: auto;
        aspect-ratio: 2 / 1;
    }
}
/*  home-recruit-detail
------------------------------------------------------------------*/
.home-recruit-detail{
    position: relative;
    top: 70px;
    width: 950px;
    padding: 0 140px 80px 0;
    z-index: 1;
}
.home-recruit-detail::after{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100vw;
    height: calc(100% - 30px);
    background: var(--primary-color);
    content: "";
    z-index: -1;
}
@media screen and (max-width:1399px){
    .home-recruit-detail{
        width: 800px;
        padding: 0 80px 80px 0;
    }
    .home-recruit-detail::after{
        height: calc(100% - 24px);
    }
}
@media screen and (max-width:991px){
    .home-recruit-detail{
        width: 700px;
        padding: 0 60px 60px 0;
    }
    .home-recruit-detail::after{
        height: calc(100% - 24px);
    }
}
@media screen and (max-width:767px){
    .home-recruit-detail{
        top: -20px;
        width: 100%;
        padding: 0 0 60px 0;
    }
    .home-recruit-detail::after{
        right: -6vw;
        height: calc(100% - 20px);
    }
}
/*  home-recruit-text
------------------------------------------------------------------*/
.home-recruit-text{
    margin-bottom: 2.5em;
    font-size: 1.125rem;
    color: #fff;
    --letter-spacing: .1em;
}
@media screen and (max-width:1399px){
    .home-recruit-text{
        font-size: 1rem;
        --letter-spacing: .05em;
    }
}
@media screen and (max-width:991px){
    .home-recruit-text{
        font-size: .875rem;
    }
}

/*------------------------------------------------------------------
  home-works
------------------------------------------------------------------*/

/*  home-works
------------------------------------------------------------------*/
.home-works{
    position: relative;
    padding: 400px 0;
    overflow: hidden;
    z-index: 1;
}
.home-works::after{
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    height: 100%;
    background: url(../images/common/bg-gray.jpg) repeat;
    content: "";
    z-index: -1;
}
.home-works .container{
    position: relative;
    z-index: 2;
}
@media screen and (max-width:1399px){
    .home-works{
        padding: 240px 0 360px;
    }
}
@media screen and (max-width:991px){
    .home-works{
        padding: 180px 0 200px;
    }
}
@media screen and (max-width:767px){
    .home-works{
        padding: 90px 0 160px;
    }
}
@media screen and (max-width:575px){
    .home-works{
        padding: 0 0 60px;
    }
    .home-works::after{
        width: 100%;
    }
}
/*  home-works-image
------------------------------------------------------------------*/
.home-works-image{
    position: absolute;
    top: 400px;
    left: 0;
    width: 1000px;
    overflow: hidden;
    z-index: 1;
}
.home-works-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width:1399px){
    .home-works-image{
        top: 240px;
        width: 800px;
    }
}
@media screen and (max-width:991px){
    .home-works-image{
        top: 180px;
        width: 600px;
    }
}
@media screen and (max-width:767px){
    .home-works-image{
        top: 90px;
        width: 520px;
    }
}
@media screen and (max-width:575px){
    .home-works-image{
        position: relative;
        top: initial;
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        margin-bottom: 60px;
    }
}
@media screen and (max-width:575px){
    .home-works-image{
    }
}
/*  home-works-detail
------------------------------------------------------------------*/
.home-works-detail{
    flex-shrink: 0;
    width: 730px;
    padding: 0 0 100px 100px;
    margin-left: auto;
    background: url(../images/common/bg-gray.jpg) repeat;
}
@media screen and (max-width:1399px){
    .home-works-detail{
        width: 600px;
        padding: 0 0 60px 60px;
    }
}
@media screen and (max-width:991px){
    .home-works-detail{
        width: 400px;
        padding: 0 0 50px 50px;
    }
}
@media screen and (max-width:575px){
    .home-works-detail{
        padding: 0;
        width: 100%;
    }
}
/*  home-works-text
------------------------------------------------------------------*/
.home-works-text{
    margin-bottom: 3em;
    font-size: 1.125rem;
    --letter-spacing: .1em;
}
@media screen and (max-width:1399px){
    .home-works-text{
        font-size: 1rem;
        --letter-spacing: .05em;
    }
}
@media screen and (max-width:991px){
    .home-works-text{
        font-size: .875rem;
    }
}

/*------------------------------------------------------------------
  home-news
------------------------------------------------------------------*/

/*  home-news
------------------------------------------------------------------*/
.home-news{
    padding: 200px 0;
}
@media screen and (max-width:1399px){
    .home-news{
        padding: 150px 0;
    }
}
@media screen and (max-width:991px){
    .home-news{
        padding: 100px 0;
    }
}
@media screen and (max-width:575px){
    .home-news{
        padding: 60px 0;
    }
}
/*  home-news-wrapper
------------------------------------------------------------------*/
.home-news-wrapper{
    display: flex;
    justify-content: space-between;
    column-gap: 60px;
}
@media screen and (max-width:1199px){
    .home-news-wrapper{
        display: block;
    }
}
/*  home-news-box
------------------------------------------------------------------*/
.home-news-box{
    max-width: 960px;
    max-height: 420px;
    overflow: auto;
}
.home-news-box::-webkit-scrollbar{
    width: 5px;
}
.home-news-box::-webkit-scrollbar-track{
    background: #fff;
}
.home-news-box::-webkit-scrollbar-thumb{
    background: #d9d9d9;
}
@media screen and (max-width:1199px){
    .home-news-box{
        max-width: initial;
    }
}
/*  home-news-item
------------------------------------------------------------------*/
.home-news-item{
    position: relative;
    display: grid;
    align-items: flex-start;
    grid-template-columns: 180px 1fr;
    column-gap: 24px;
    padding: 30px 45px 30px 0;
    border-bottom: 1px solid #fff;
    line-height: 1.8;
}
.home-news-item .head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 12px;
}
.home-news-item .head .date{
    letter-spacing: 0;
}
.home-news-item .head .new{
    color: var(--accent-color);
    letter-spacing: .05em;
}
.home-news-item .title{
    margin-bottom: .5em;
    font-weight: bold;
    color: #000;
}
@media screen and (max-width:1199px){
    .home-news-item{
        display: block;
        padding: 20px 0;
    }
    .home-news-item:first-of-type{
        padding-top: 0;
    }
    .home-news-item .head{
        justify-content: initial;
        margin-bottom: .5em;
    }
}


/*  home-news-modal-area
------------------------------------------------------------------*/
.home-news-modal-area .head{
    display: flex;
    align-items: center;
    column-gap: 12px;
    margin-bottom: 12px;
}
.home-news-modal-area .head .new{
    font-family: var(--en-font);
    color: var(--red-color);
    letter-spacing: 0;
    line-height: 1;
}
.home-news-modal-area .head .date{
    font-family: var(--en-font);
    letter-spacing: 0;
    line-height: 1;
}
.home-news-modal-area .head .category{
    padding: .5em 1.5em;
    background: var(--primary-color);
    color: #fff;
    font-size: .75rem;
    line-height: 1;
}
.home-news-modal-area .title{
    padding-bottom: .5em;
    margin-bottom: .5em;
    border-bottom: 1px solid #ccc;
    font-size: 1.375rem;
    font-weight: bold;
    line-height: 1.5;
}
.home-news-modal-area .detail{
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 30px;
}
@media screen and (max-width:991px){
    .home-news-modal-area .head{
        column-gap: 8px;
        margin-bottom: 8px;
    }
    .home-news-modal-area .title{
        font-size: 1.125rem;
    }
}


/*/////////////////////////////////////////////////////////////////
  recruit.html
/////////////////////////////////////////////////////////////////*/

/*  recruit-event
------------------------------------------------------------------*/
.recruit-event{
    padding: 150px 0;
    background: url(../images/recruit-event-bg.jpg) no-repeat center / cover;
}
@media screen and (max-width:991px){
    .recruit-event{
        padding: 100px 0;
    }
}
@media screen and (max-width:767px){ 
    .recruit-event{
        padding: 80px 0;
    }
}

/*  recruit-member-list
------------------------------------------------------------------*/
.recruit-member-list{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}
@media screen and (max-width:991px){
    .recruit-member-list{
        gap: 12px;
    }
}
@media screen and (max-width:767px){
    .recruit-member-list{
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
/*  recruit-member-card
------------------------------------------------------------------*/
.recruit-member-card{
    padding: 30px;
    background: #fff;
}
.recruit-member-card .image{
    width: 120px;
    aspect-ratio: 5 / 4;
    margin: 0 auto 20px;
}
.recruit-member-card .image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.recruit-member-card .title{
    margin-bottom: 16px;
    font-size: 1.5rem;
    color: var(--accent-color);
    text-align: center;
    line-height: 1.5;
}
.recruit-member-card .text{
    line-height: 1.8;
}
@media screen and (max-width:991px){
    .recruit-member-card{
        padding: 28px 20px 20px;
    }
    .recruit-member-card .image{
        width: 80px;
        margin-bottom: 12px;
    }
    .recruit-member-card .title{
        margin-bottom: 8px;
        font-size: 1.25rem;
    }
}

/*/////////////////////////////////////////////////////////////////
  works.html
/////////////////////////////////////////////////////////////////*/

/*  works-list
------------------------------------------------------------------*/
.works-list{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    column-gap: 30px;
    row-gap: 60px;
    margin-bottom: 60px;
}
@media screen and (max-width:1399px){
    .works-list{
        column-gap: 20px;
        row-gap: 50px;
    }
}
@media screen and (max-width:1199px){
    .works-list{
        grid-template-columns: repeat(3,1fr);
    }
}
@media screen and (max-width:767px){
    .works-list{
        grid-template-columns: repeat(2,1fr);
        row-gap: 40px;
    }
}
@media screen and (max-width:575px){
    .works-list{
        grid-template-columns: 1fr;
    }
}
/*  works-list-item
------------------------------------------------------------------*/
.works-list-item{
    display: block;
}
.works-list-item .image{
    aspect-ratio: 3 / 2;
    margin-bottom: 20px;
    overflow: hidden;
}
.works-list-item .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .2s ease-out;
}
.works-list-item .title{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-bottom: 4px;
    font-weight: bold;
    color: #000;
    line-height: 1.5;
    transition: .2s ease-out;
}
.works-list-item .text{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    color: #666;
    line-height: 1.5;
    transition: .2s ease-out;
}
.works-list-item .new{
    margin-top: .5em;
    font-size: .875rem;
    color: var(--red-color);
    line-height: 1;
}
/* ホバー時動作 */
@media (hover:hover) {
    .works-list-item:hover .image img{
        transform: scale(1.1);
        filter: brightness(.5);
    }
    .works-list-item:hover .title,
    .works-list-item:hover .text{
        color: var(--accent-color);
    }
}


/*  works-container
------------------------------------------------------------------*/
.works-container{
    max-width: 1000px;
    padding: 0 60px;
    margin: 0 auto;
}
@media screen and (max-width:991px){
     .works-container{
        padding: 0 6vw;
    }
}

/*  works-page
------------------------------------------------------------------*/
.works-page{
    padding: 120px 0;
}
@media screen and (max-width:991px){
    .works-page{
        padding: 80px 0;
    }
}
@media screen and (max-width:575px){
    .works-page{
        padding: 60px 0;
    }
}
/*  works-slider
------------------------------------------------------------------*/
.works-slider{
    position: relative;
    margin-bottom: 10px;
    z-index: 1;
}
.works-slider .swiper-slide{
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    background: #fff;
}
.works-slider .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/*  works-thumb-slider
------------------------------------------------------------------*/
.works-thumb-slider{
    position: relative;
    margin-bottom: 40px;
    overflow: hidden;
    z-index: 1;
}
.works-thumb-slider .swiper-wrapper{
    justify-content: center;
}
.works-thumb-slider .swiper-slide{
    width: 80px;
    aspect-ratio: 1 / 1;
    filter: brightness(0.3);
    cursor: pointer;
}
.works-thumb-slider .swiper-slide.swiper-slide-thumb-active{
    filter: brightness(1);
}
.works-thumb-slider .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width:991px){
    .works-thumb-slider .swiper-slide{
        width: 70px;
    }
}
@media screen and (max-width:767px){
    .works-thumb-slider .swiper-slide{
        width: 60px;
    }
    .works-thumb-slider .swiper-wrapper{
        justify-content: flex-start;
    }
}
/*  works-slider-button
------------------------------------------------------------------*/
.works-slider-button-prev,
.works-slider-button-next{
    position: absolute;
    top: 50%;
    width: 36px;
    aspect-ratio: 1 / 1;
    background: #fff;
    border: 1px solid #333;
    border-radius: 50%;
    transform: translateY(-50%);
    color: #333;
    transition: .2s ease-out;
    z-index: 2;
}
.works-slider-button-prev.swiper-button-disabled,
.works-slider-button-next.swiper-button-disabled{
    border-color: #ccc;
    color: #ccc;
    pointer-events: none;
}
.works-slider-button-prev{
    left: -18px;
}
.works-slider-button-prev::after{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: "\f104";
    font-family: "Font Awesome 6 Free";
    font-size: 0.75rem;
    font-weight: bold;
}
.works-slider-button-next{
    right: -18px;
}
.works-slider-button-next::after{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-size: 0.75rem;
    font-weight: bold;
}
/* ホバー時動作 */
@media (hover:hover) {
    .works-slider-button-prev:hover,
    .works-slider-button-next:hover,
    .works-slider-button-prev:active,
    .works-slider-button-next:active{
        background: var(--primary-color);
        border-color: var(--primary-color);
        color: #fff;
    }
    .works-slider-button-prev:active,
    .works-slider-button-next:active{
        transform: scale(0.8) translateY(-50%);
    }
}
@media (hover:none) {
    .works-slider-button-prev:active,
    .works-slider-button-next:active{
        background: var(--primary-color);
        border-color: var(--primary-color);
        color: #fff;
        transform: scale(0.8) translateY(-50%);
    }
}

/*/////////////////////////////////////////////////////////////////
  contact.html
/////////////////////////////////////////////////////////////////*/

/*  contact-tel-box
------------------------------------------------------------------*/
.contact-tel-box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 30px 20px;
    background: url(../images/common/bg-gray.jpg) repeat;
    text-align: center;
}
.contact-tel-box .title{
    margin-bottom: 12px;
    font-size: 1.75rem;
    font-weight: bold;
    color: var(--accent-color);
    line-height: 1.4;
}
.contact-tel-box .num{
    margin-bottom: 12px;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    line-height: 1;
}
.contact-tel-box .num span{
    font-size: 1.75em;
    letter-spacing: 0;
}
.contact-tel-box .time{
    font-size: 0.875rem;
    line-height: 1.4;
}
@media screen and (max-width:991px){
    .contact-tel-box{
        padding: 24px 16px;
    }
    .contact-tel-box .title{
        font-size: 1.375rem;
    }
    .contact-tel-box .num{
        font-size: 1.375rem;
    }
}
@media screen and (max-width:575px){
    .contact-tel-box .title{
        font-size: 1.25rem;
    }
    .contact-tel-box .num{
        font-size: 1.25rem;
    }
    .contact-tel-box .time{
        font-size: 0.75rem;
    }
}

/*  form-recruit-view
------------------------------------------------------------------*/
.form-recruit-view{
    display: none;
}
.form-recruit-view.is-show{
    display: table-row;
}

/*  form-recruit-noview
------------------------------------------------------------------*/
.form-recruit-noview{
    display: table-row;
}
.form-recruit-noview.is-hide{
    display: none;
}