@charset "UTF-8";

/*===================
ALL
===================*/

body {
    /* font-famiry:;フォントを入れてください */
    width: 100vw;
    margin: 0 auto;
}

main {
    width: 90%;
    margin: 10% auto;
}


/*===================
ALL(header)
===================*/

header ul {
    display: flex;
    justify-content: flex-end;
    background-color: #e8e6e6;
    padding: 2% 7%;
    margin: 2% 4%;
}

header ul li {
    margin-left: 1em;
    margin-right: 1em;
}

header ul li:hover {
    opacity: 0.5;
}

header a {
    color: black;
    /* 13~16px */
    font-size: clamp(0.813rem, 0.737rem + 0.35vw, 1rem);
}

.inc_logo {
    display: none;
}


/*===================
ハンバーガー
===================*/

@media only screen and (max-width: 599px) {
    .nav {
        position: fixed;
        right: -320px;
        /* 右から出てくる */
        top: 0;
        width: 300px;
        /* スマホに収まるサイズ */
        height: 100vh;
        padding-top: 10%;
        background-color: #fff;
        transition: all .6s;
        z-index: 200;
        overflow-y: auto;
        /* メニューが多くなったらスクロールできるように */
    }
    .hamburger {
        position: absolute;
        right: 3px;
        top: 3px;
        width: 40px;
        /* クリックしやすい幅 */
        height: 40px;
        /* クリックしやすい高さ */
        cursor: pointer;
        z-index: 300;
        background-color: rgb(255, 255, 255, 0.3);
    }
    .nav_list {
        display: block;
        margin: 0;
        padding: 0;
        list-style: none;
        background-color: #fff;
    }
    .nav_item {
        text-align: center;
        padding: 0 14px;
    }
    .nav_item a {
        display: block;
        padding: 1.5em 0;
        border-bottom: 1px solid #e8e6e6;
        text-decoration: none;
    }
    .nav_item a:hover {
        background-color: #eee;
    }
    .inc_logo {
        display: flex;
        justify-content: center;
        margin-top: 10%;
    }
    .inc_logo img {
        width: 8%;
        margin-right: 3%;
    }
    .inc_logo p {
        font-size: 120%;
        letter-spacing: 0.3em;
        font-family: 'Barlow', sans-serif;
    }
    .hamburger_border {
        position: absolute;
        left: 11px;
        width: 18px;
        height: 2px;
        background-color: #333;
        transition: all .6s;
    }
    .hamburger_border_top {
        top: 14px;
    }
    .hamburger_border_center {
        top: 20px;
    }
    .hamburger_border_bottom {
        top: 26px;
    }
    .black_bg {
        position: fixed;
        left: 0;
        top: 0;
        width: 100vw;
        height: 100vh;
        z-index: 100;
        background-color: #333;
        opacity: 0;
        visibility: hidden;
        transition: all .6s;
        cursor: pointer;
    }
    /* 表示された時用のCSS */
    .nav-open .nav {
        right: 0;
    }
    .nav-open .black_bg {
        opacity: .8;
        visibility: visible;
    }
    .nav-open .hamburger_border_top {
        transform: rotate(45deg);
        top: 20px;
    }
    .nav-open .hamburger_border_center {
        width: 0;
        left: 50%;
    }
    .nav-open .hamburger_border_bottom {
        transform: rotate(-45deg);
        top: 20px;
    }
}


/*===================
ALL(footer)
===================*/

.footer {
    text-align: center;
    background-color: #ff9700;
    padding: 1% 0;
}


/*===================
Homeページ
===================*/


/*-------------------
TOP画像（RINTEC）
-------------------*/

.home_top_img {
    text-align: center;
}

video {
    width: 70%;
}


/*-------------------
メンバースライダー
-------------------*/

.slider {
    position: relative;
    z-index: 1;
    /*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
}


/*　背景画像設定　*/

.slider-item01 {
    background: url(../img/home_top_img1.png);
}

.slider-item02 {
    background: url(../img/home_top_img2.png);
}

.slider-item03 {
    background: url(../img/home_top_img3.png);
}

.slider-item04 {
    background: url(../img/home_top_img4.png);
}

.slider-item05 {
    background: url(../img/home_top_img5.png);
}

.slider-item {
    width: 100vw;
    /*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
    height: 60vh;
    /*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
    background-repeat: no-repeat;
    /*背景画像をリピートしない*/
    background-position: center;
    /*背景画像の位置を中央に*/
    background-size: cover;
    /*背景画像が.slider-item全体を覆い表示*/
}


/*矢印の設定*/


/*戻る、次へ矢印の位置*/

.slick-prev,
.slick-next {
    position: absolute;
    /*絶対配置にする*/
    z-index: 3;
    top: 65%;
    cursor: pointer;
    /*マウスカーソルを指マークに*/
    outline: none;
    /*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #fff;
    /*矢印の色*/
    border-right: 2px solid #fff;
    /*矢印の色*/
    height: 15px;
    width: 15px;
}

.slick-prev {
    /*戻る矢印の位置と形状*/
    left: 2.5%;
    transform: rotate(-135deg);
}

.slick-next {
    /*次へ矢印の位置と形状*/
    right: 2.5%;
    transform: rotate(45deg);
}


/*ドットナビゲーションの設定*/

.slick-dots {
    position: relative;
    z-index: 3;
    text-align: center;
    margin: -3% 0 0 0;
}

.slick-dots li {
    display: inline-block;
    margin: 0 5px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width: 8px;
    /*ドットボタンのサイズ*/
    height: 8px;
    /*ドットボタンのサイズ*/
    display: block;
    border-radius: 50%;
    background: #ccc;
    /*ドットボタンの色*/
}

.slick-dots .slick-active button {
    background: #333;
    /*ドットボタンの現在地表示の色*/
}

@media(max-width:999px) {
    .slider-item {
        width: 100vw;
        /*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
        height: 40vh;
        /*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
        background-repeat: no-repeat;
        /*背景画像をリピートしない*/
        background-position: center;
        /*背景画像の位置を中央に*/
        background-size: cover;
        /*背景画像が.slider-item全体を覆い表示*/
    }
}

@media(max-width:799px) {
    .slider-item {
        width: 100vw;
        /*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
        height: 30vh;
        /*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
        background-repeat: no-repeat;
        /*背景画像をリピートしない*/
        background-position: center;
        /*背景画像の位置を中央に*/
        background-size: cover;
        /*背景画像が.slider-item全体を覆い表示*/
    }
}

@media(max-width:599px) {
    .slider-item {
        width: 100vw;
        /*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
        height: 25vh;
        /*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
        background-repeat: no-repeat;
        /*背景画像をリピートしない*/
        background-position: center;
        /*背景画像の位置を中央に*/
        background-size: 100vw;
        /*背景画像が.slider-item全体を覆い表示*/
    }
}


/*-------------------
企業理念
-------------------*/

.home_rinen video {
    width: 100%;
    margin-bottom: 5%;
}


/*-------------------
イメージPV
-------------------*/

.video_box {
    width: 100%;
    display: block;
    margin-bottom: 10%;
    text-align: center;
}

.video_box video {
    width: 60%;
    margin: 0 auto;
}

@media(max-width:599px) {
    .video_box video {
        width: 90%;
    }
}


/*-------------------
事業部
-------------------*/

.jigyoubu video {
    width: 45%;
    margin-top: 5%;
}

.jigyoubu_cad,
.jigyoubu_marketing {
    width: 100%;
    display: flex;
    padding: 5% 0 4% 12%;
}

.jigyoubu_marketing {
    border-bottom: 1px solid black;
}

.jigyoubu_cad_title,
.jigyou_marketing_title {
    width: 50%;
    /* 24〜28px */
    font-size: clamp(1.5rem, 1.4rem + 0.47vw, 1.75rem);
    font-weight: bold;
}

.jigyoubu_cad_list_1 {
    padding-right: 10%;
}

.jigyoubu_cad_list li,
.jigyoubu_marketing_list li {
    list-style: disc;
    margin-bottom: 5%;
    /* 16〜18px */
    font-size: clamp(1rem, 0.95rem + 0.23vw, 1.125rem);
}

li::marker {
    font-size: 50%;
}

.jigyoubu_marketing_list a {
    text-decoration: underline;
}

.marketing_ip {
    display: none;
}

@media(max-width:755px) {
    .jigyoubu video {
        width: 55%;
        margin-top: 5%;
    }
    .jigyoubu_cad {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        padding: 5% 0 4% 15%;
    }
    .jigyoubu_marketing {
        width: 100%;
        display: flex;
        flex-direction: column;
        padding: 6% 0 2% 15%;
    }
    .jigyoubu_cad_title,
    .jigyou_marketing_title {
        width: 80%;
        /* 16~24px */
        font-size: clamp(1rem, 0.8rem + 0.93vw, 1.5rem);
        font-weight: bold;
        margin-bottom: 5%;
    }
    .jigyoubu_cad_list,
    .jigyoubu_marketing_list {
        margin-left: 15%;
    }
    .cad_list2 {
        margin-left: 5%;
    }
    .jigyoubu_cad_list li {
        margin-bottom: 20%;
    }
    .marketing_cp {
        display: none;
    }
    .marketing_ip {
        display: block;
    }
}

@media(max-width:555px) {
    .jigyoubu video {
        width: 65%;
        margin-top: 5%;
    }
}

@media(max-width:455px) {
    .jigyoubu video {
        width: 70%;
        margin-top: 5%;
    }
    .jigyoubu_cad,
    .jigyoubu_marketing {
        padding: 6% 0 2% 20%;
    }
}


/*-------------------
本社・支店
-------------------*/

.team_title {
    /*36〜44px */
    font-size: clamp(2.25rem, 2.05rem + 0.93vw, 2.75rem);
    position: relative;
    text-align: center;
    margin: 15% 0 10% 0;
}

.team_title:before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -15px;
    /*線の上下位置*/
    width: 5%;
    /*線の長さ*/
    height: 3px;
    /*線の太さ*/
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    /*位置調整*/
    background-color: black;
    /*線の色*/
}

.team_list .team_container {
    display: flex;
    flex-wrap: wrap;
}

.team_list article {
    flex: 1 1 30%;
    display: flex;
}

.team_list .team_name {
    /* 16〜20px */
    font-size: clamp(1rem, 0.9rem + 0.47vw, 1.25rem);
    margin-bottom: 15%;
}

.team_list p {
    /* 12〜14px */
    font-size: clamp(0.75rem, 0.7rem + 0.23vw, 0.875rem);
}

.team_adress {
    margin-bottom: 2.5%;
}

.team_list .team_photo1,
.team_list .team_photo {
    min-height: 300px;
    background-position: center;
    background-size: cover;
}

.team_list .team_item {
    flex: 1;
    margin: 10px;
    display: block;
    background-color: #e8e6e6;
    color: inherit;
    text-decoration: none;
}

iframe {
    width: 100%;
    height: 100%;
}

.team_list .team_text {
    margin: 8%;
}

@media(max-width:999px) {
    .team_list .team_photo1 {
        min-height: 250px;
        background-position: top;
        background-size: cover;
    }
    .team_list .team_photo {
        min-height: 250px;
        background-position: center;
        background-size: cover;
    }
    .team_list article {
        flex: 1 1 300px;
        display: flex;
    }
}

@media(max-width:666px) {
    iframe {
        width: 100%;
        height: 50vh;
    }
}


/*===================
採用情報ページ
===================*/


/*-------------------
タイトル画像(会社概要ページと共通)
-------------------*/

.title_img {
    width: 100%;
}

.reqruit_title {
    font-weight: bolder;
    /* 24~32px */
    font-size: clamp(1.5rem, 1.3rem + 0.93vw, 2rem);
}


/*-------------------
Table
-------------------*/

.item_container {
    overflow-x: auto !important;
    white-space: nowrap;
    display: inline-block;
    width: 90vw;
}

.item {
    width: 98%;
    margin: 3em auto 0%;
    line-height: 2;
}

.item td {
    border-top: 1px solid #ff9700;
    border-bottom: 1px solid #ff9700;
    vertical-align: top;
    padding: 1.5em 0.5em;
}

.item .td_title {
    font-weight: bold;
    /* 16~18px */
    font-size: clamp(1rem, 0.95rem + 0.23vw, 1.125rem);
}

.company_top_img {
    width: 100vw;
    height: 100vh;
}

.company_top_txt {
    text-align: center;
    /* 18~24px */
    font-size: clamp(1.125rem, 0.989rem + 0.68vw, 1.5rem);
    line-height: 2;
}

.company_top_txt span {
    font-weight: bold;
    /* 24~28px */
    font-size: clamp(1.5rem, 1.409rem + 0.45vw, 1.75rem);
}

.br_sp {
    display: none;
}

@media(max-width:599px) {
    .br_sp {
        display: block;
    }
}


/*===================
会社概要ページ
===================*/


/*-------------------
社長自己紹介
-------------------*/

.hayashi_profile_box {
    display: flex;
    justify-content: center;
    margin: 8% auto;
    gap: 5%;
}

.hayashi_img {
    max-width: 40%;
    width: 45%;
    height: 45%;
}

.goaisatsu {
    font-weight: bolder;
    margin: 5% 0;
    /*28~36px */
    font-size: clamp(1.75rem, 1.55rem + 0.93vw, 2.25rem);
}

.ceo_txt {
    line-height: 2;
}

.ceo_name {
    text-align: right;
    margin-top: 7%;
    font-weight: bold;
    /* 24~32px */
    font-size: clamp(1.5rem, 1.3rem + 0.93vw, 2rem);
}

@media(max-width:599px) {
    .hayashi_profile_box {
        flex-direction: column;
        align-items: normal;
        gap: 0%;
    }
    .hayashi_img {
        max-width: none;
        width: 100%;
    }
    .goaisatsu {
        margin: 10% 0 5%;
    }
    .ceo_txt {
        margin-left: 10%;
    }
}


/*-------------------
会社概要内容
-------------------*/

.kaisyagaiyo_box {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 8% auto;
}

.inc_img {
    max-width: 40%;
    height: 45%;
}

.kaisyagaiyo {
    font-weight: bolder;
    margin: 5% 0;
    /*28~36px */
    font-size: clamp(1.75rem, 1.55rem + 0.93vw, 2.25rem);
}

.k_txtbox {
    width: 30%;
    line-height: 2;
    white-space: nowrap;
}

td:first-child {
    width: 23%;
}

@media(max-width:700px) {
    .kaisyagaiyo_box {
        flex-direction: column;
    }
    .kaisyagaiyo_box {
        flex-direction: column;
        align-items: center;
        gap: 0%;
    }
    .kaisyagaiyo {
        margin: 10% 0 5%;
    }
    .inc_img {
        margin-top: 5%;
        width: 100%;
        max-width: none;
    }
    .k_txtbox {
        width: 100%;
    }
    .kaisyagaiyo_txt {
        margin-left: 10%;
    }
    td:first-child {
        width: 40%;
    }
}


/*===================
プロジェクトページ
===================*/

.project_box {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid black;
    padding: 5% 0;
}

.pro_box_img {
    width: 40%;
}

.pro_box_txt {
    width: 40%;
    padding: 1% 0 0 10%;
}

.pro_box_txt_r {
    width: 40%;
    padding: 1% 10% 0 0;
}

.pro_name {
    /* 20〜28px */
    font-size: clamp(1.25rem, 1.05rem + 0.93vw, 1.75rem);
    margin: 3% 0;
}

.pro_number {
    font-family: 'Syne', sans-serif;
    /* 20〜28px */
    font-size: clamp(1.25rem, 1.05rem + 0.93vw, 1.75rem);
    margin-bottom: 3%;
}

.pro_subname,
.pro_title {
    /* 12〜20px */
    font-size: clamp(0.75rem, 0.55rem + 0.93vw, 1.25rem);
    margin-bottom: 3%;
}

.cad1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10%;
    line-height: 2.5;
    margin-top: 10%;
}

.cad2 {
    display: flex;
    margin-top: 5%;
}

.cad_item {
    color: black;
    text-decoration: underline;
}

@media(max-width:700px) {
    .project_box {
        flex-direction: column;
        align-items: center;
        padding: 15% 0;
    }
    .project_box_r {
        flex-direction: column-reverse;
        align-items: center;
    }
    .pro_box_img {
        width: 100%;
    }
    .pro_box_txt,
    .pro_box_txt_r {
        width: 100%;
        padding: 5% 10% 0 0;
    }
    .cad1 {
        gap: 10%;
        line-height: 2;
        margin-top: 0;
    }
}


/*===================
人材紹介トページ
===================*/


/*-------------------
人材紹介内容
-------------------*/

.personal_main h1 {
    text-align: center;
    letter-spacing: 0.5vw;
    /*36〜44px */
    font-size: clamp(2.25rem, 2.05rem + 0.93vw, 2.75rem);
    margin-bottom: 5%;
}

.personal_box {
    border: 1px solid black;
}

.personal_box1,
.personal_box2,
.personal_box3 {
    width: 100%;
    display: flex;
}

.box_item,
.box_cp_item {
    width: 50%;
}

.box_sp_item,
.pe_sp_img {
    display: none;
}

.pe_cp_img {
    width: 100%;
}

.hellowork_box {
    display: flex;
    justify-content: center;
    gap: 5%;
    margin: 0 auto;
}

.hellowork_box img {
    width: 40%;
    height: auto;
}

.hellowork_box video {
    width: 50%;
    height: auto;
    display: block;
}

@media(max-width:599px) {
    .personal_box1,
    .personal_box3 {
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    .personal_box2 {
        width: 100%;
        display: flex;
        flex-direction: column-reverse;
    }
    .box_item,
    .box_sp_item,
    .pe_sp_img {
        width: 100%;
        display: block;
    }
    .box_cp_item,
    .pe_cp_img {
        display: none;
    }
    .hellowork_box {
        justify-content: unset;
        flex-direction: column;
        gap: 5%;
    }
    .hellowork_box img {
        display: none;
    }
    .hellowork_box video {
        width: 100%;
        height: auto;
        display: block;
        margin-top: 10%;
    }
}


/*-------------------
ハローワーク画像
-------------------*/

.pe4_img {
    width: 100%;
}