@charset "UTF-8";

img {
    max-width: 100%;
    height: auto;
    /*高さ自動*/
    vertical-align: top;
}

a {
    display: block;
    text-decoration-line: none;
    color: #333;
}

a:hover {
    opacity: 80%;
}

ul {
    list-style: none;
}

/* 全体の設定
–––––––––––––––––––––––––––––––––––––––––––––––––– */
html {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    font-size: 62.5%;
}

body {
    color: #333;
    font-family: 'Zen Kaku Gothic New', 'Hiragino Sans', 'ヒラギノ角ゴシック';
    background: #d5ccbc;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    letter-spacing: 0.1em;
}

.wrap {
    overflow: hidden;
}

/* グリッド
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.container {
    margin: 0 auto;
    max-width: 1200px;
    width: 80%;
    /* padding: 0 2.0rem; */
    position: relative;
}

.container {
    margin: 0 auto;
    max-width: 1200px;
    width: 100%;
    position: relative;
}

@media (max-width : 1030px) {
    .top_padding {
        padding: 0 15px;
    }

    .voice_main {
        padding: 0 15px;
    }

    .recruit_section {
        padding: 0 15px;
    }
}

/*-- PC版表示CSS  --*/
.pc {
    display: block;
}

.sp {
    display: none;
}


/*-- スマホ版表示CSS  --*/
@media screen and (max-width: 768px) {
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }
}

/*-- ヘッダー用PC版表示CSS  --*/
.pc-header {
    display: block;
}

.sp-header {
    display: none;
}


/*-- ヘッダー用スマホ版表示CSS  --*/
@media screen and (max-width: 1420px) {
    .pc-header {
        display: none;
    }

    .sp-header {
        display: block;
    }


}

/* -------- ヘッダー ------------------------------- */
.header {
    height: 50px;
    position: fixed;
    top: 0px;
    /* opacity: 0; */
    z-index: 5;
    padding: 20px 28px;
    width: 100%;
}

.header_section {
    display: flex;
    justify-content: space-between;
}

.header_section_left {
    display: flex;
}

.header-logo {
    max-width: 262px;
    margin-right: 120px;
}

.header-logo a {
    color: #333;
    display: block;

}

.header_nav {
    line-height: 60px;
}

.header_nav ul {
    display: flex;
}

.header_nav li {
    margin-right: 50px;
    font-size: 16px;
}

.header_nav_last {
    margin-right: 0 !important;
}

.header_section_right {
    max-width: 321px;

}

.header_section_right_contact {
    color: #17902C;
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: 0.12em;
    margin-left: 43px;
    font-weight: 600;
}

.header_section_right_contact_number {
    display: flex;
}

.header_section_right_contact_number img {
    width: 33px;
    height: 33px;
    margin: 0px 10px 0 0;
}

.header_section_right_contact_tel_number {
    color: #17902C;
    font-size: 34px;
    line-height: 1;
    height: 33px;
    letter-spacing: 0em;
    font-weight: 600;
}

/* 携帯ヘッダー */
.sp-header_section {
    position: fixed;
    top: 0px;
    z-index: 2;
}

.sp-header_logo {
    padding: 15px 0 0 15px;

}

.sp-header_logo a {
    max-width: 188px;
    max-height: 50px;
    width: 100%;
    height: 100%;
}


/*　ハンバーガーボタン　*/
.hamburger {
    display: block;
    position: fixed;
    z-index: 12;
    right: 5px;
    top: 5px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
}

.hamburger span {
    display: block;
    position: absolute;
    width: 27px;
    height: 3px;
    left: 10px;
    background: #17902C;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
    top: 10px;
}

.hamburger span:nth-child(2) {
    top: 18px;
}

.hamburger span:nth-child(3) {
    top: 26px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
    top: 16px;
    /* left: 6px; */
    background: #17902C;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
    top: 16px;
    background: #17902C;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}

nav.globalMenuSp {
    position: fixed;
    z-index: 11;
    top: 0;
    left: 0;
    color: #fff;
    background: #fff;
    text-align: center;
    width: 100%;
    opacity: 0;
    transition: opacity .6s ease, visibility .6s ease;
    padding-top: 70px;
    height: 668px;
    visibility: hidden;
}

nav.globalMenuSp ul {
    margin: 0 auto;
    padding: 0;
    width: 100%;
}

nav.globalMenuSp ul li {
    list-style-type: none;
    padding: 0;
    width: 100%;
    transition: .4s all;
}

nav.globalMenuSp ul li:last-child {
    padding-bottom: 0;
}

nav.globalMenuSp ul li:hover {
    /* background: #ddd; */
}

nav.globalMenuSp ul li a {
    display: block;
    color: #333;
    padding: 25px 0;
    text-decoration: none;
    font-weight: 600;
    line-height: 1.8;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
    opacity: 100;
    visibility: visible;
}

.header_tel {
    max-width: 250px;

}


/* メイン スライダー */
main {
    width: 100%;
    max-width: 70vw;
    margin: 10vh auto 0;
}

.main_img {
    z-index: -1;
    position: relative;

}

.main_img img {
    width: 100%;
}

/* トップ会社概要---------------------- */
.top_company {
    padding: 0 15px;
}

.top_company_section {
    display: flex;
    justify-content: space-between;
}

.top_company_table {
    max-width: 1200px;
    width: 100%;
}

.top_company_table_title{
    margin: 50px auto 30px;
}

.top_company_table_title span{
    font-size: 12px;
}

.top_company_title {
    max-width: 152px;
}


/* トップ会社概要テーブル */
#table01 {
    border-collapse: collapse;
    text-align: left;
    width: 100%;
}

#table01 tr {
    border-bottom: 1px solid #b1a58d !important;
}

.table_1 {
    border-top: 1px solid #b1a58d !important;
}

#table01 th,
#table01 td {
    padding: 24px 0;
    border: none;
}

#table01 th {
    width: 30%;
}

/* sp */
@media only screen and (max-width: 520px) {

    #table01 {
        border-collapse: collapse;
        text-align: left;
        width: 100%;
        font-size: 14px;
    }

    #table01 th,
    #table01 td {
        width: 100%;
        padding: 25px 0;
    }

    #table01 th {
        width: 20%;
    }
}

.top_recruit{
    padding: 0 15px;
}

.recruit_btn{
    max-width: 650px;
    margin: 3em auto;
    padding: 1.5em;
    background-color: #000;
    border-radius: 100vmax;
    text-align: center;
}

.recruit_btn p{
    font-size: 18px;
    letter-spacing: 0.1em;
    color: #fff;
}

.map {
    height: 0;
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    margin-top: 50px;
}

.map iframe {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

/* 980px以下の表示 */
@media (max-width : 980px) {

    .top_company_section {
        display: flex;
        justify-content: center;
        flex-direction: column-reverse;
    }

    .top_company_title {
        max-width: 152px;
        margin: 20px auto 50px;
    }
}

/* 520px以下の表示 */
@media (max-width : 520px) {
    .top_company_section {
        display: flex;
        justify-content: center;
        flex-direction: column-reverse;
    }
}

/* ------- フッター ------------------------- */
footer {
    background-color: #000;
    width: 100%;
    height: auto;
    padding: 10px 0;
    margin-top: 100px;

}

.footer_address {
    color: #fff;
    line-height: 1.8;
}

.footer_tel_section {
    display: flex;
}

.footer_tel {
    color: #fff;
    line-height: 1.8;
    margin-right: 30px;
    font-size: 24px;
}

.copy_right {
    color: #fff;
    font-size: 10px;
    letter-spacing: 0.08em;
    text-align: center;
}

/* pagetop戻るボタン */
#pagetop {
    position: fixed;
    right: 20px;
    bottom: 20px;
    cursor: pointer;
    z-index: 10;
    max-width: 114.5px;
    /* opacity: 1 !important; */
}

/* 980px以下の表示 */
@media (max-width : 980px) {
    footer {
        background-color: #000;
        width: 100%;
        height: auto;
        padding: 10px 0;

    }

    .footer_address {
        color: #fff;
        line-height: 1.8;
        letter-spacing: 0.048em;
        margin: 0 auto;
        max-width: 262px;
    }

    .footer_tel_section {
        display: flex;
        flex-direction: column;
        margin: 0 auto;
        max-width: 262px;
    }

    .footer_tel {
        color: #fff;
        line-height: 1.8;
        letter-spacing: 0.048em;
        margin-right: 30px;
        

    }

    /* pagetop戻るボタン */
    #pagetop {
        position: fixed;
        right: 20px;
        bottom: 20px;
        cursor: pointer;
        z-index: 10;
        max-width: 85px;
        /* opacity: 1 !important; */
    }
}