@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Zen+Kaku+Gothic+New&display=swap');

/*******************************************/
/** 変数宣言                               **/
/*******************************************/
:root {
    --main_color: #1143A2;
    --main_color_rgb: 17 67 162;
    --main_fontcolor: #404040;
    --color_white: #fff;
    --color_white_rgb: 255 255 255;
    --color_gray: #707070;
    --color_lightgray: #F2F2F2;
    --color_th: #7792C4;
    --color_td: #F2F2F2;
    --font_small: 0.8rem;
}

/*******************************************/
/** 全体設定                               **/
/*******************************************/
* {
    font-size: 16px;
    color: var(--main_fontcolor);
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: var(--color_white);
}

a {
    color: var(--main_color);
}

a.underline {
    text-decoration: underline;
}

.font_white {
    color: var(--color_white);
}

::placeholder {
    color: var(--color_gray);
}

h2 {
    color: var(--color_white);
    font-size: 40px;
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.h2_toptitle {
    font-size: 84px;
}

.h2_title {
    letter-spacing: 0.5rem;
    margin-top: 36px;
    margin-bottom: 60px;
    text-shadow: 2px 2px 5px #000;
}

.h2_right {
    text-align: right;
}

h3,
.bis_right_box h3 span,
.bis_left_box h3 span {
    color: var(--main_color);
    font-size: 30px;
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    line-height: 3rem;
}

h4 {
    font-size: 1.4rem;
    font-family: "Noto Serif JP", serif;
    line-height: 3rem;
    display: block;
    margin-top: 100px;
    margin-bottom: 40px;
}

h5 {
    font-weight: 700;
    color: var(--main_color);
}

.inner_main {
    width: 100%;
    max-width: 1088px;
    margin-inline: auto;
}

.btn_white {
    font-size: 18px;
    background-color: rgba(var(--color_white_rgb) / 30%);
    color: var(--color_white);
    border: 1px solid var(--color_white);
    display: inline-block;
    cursor: pointer;
    line-height: 1.5;
    transition: all 0.3s;
    text-align: center;
    vertical-align: middle;
    padding: 1rem 4rem;
    position: relative;
}

.btn_white::before {
    content: "";
    display: block;
    position: absolute;
    top: 24px;
    right: 40px;
    width: 10px;
    height: 10px;
    border-top: 2px double var(--color_white);
    border-right: 2px double var(--color_white);
    transform: rotate(45deg);
    transition: 0.3s ease-in-out;
}

.btn_form.btn_white::before {
    top: 32px;
}

.btn_white:hover {
    background-color: var(--main_color);
    color: #fff;
    font-weight: 700;
}

.btn_white:hover::before {
    right: 30px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}

.right {
    text-align: right;
}

.fadein {
    opacity: 0;
    transform: translate(0, 100px);
}

.fadein.active {
    opacity: 1;
    transform: translate(0, 0);
    transition: 1s;
}

.fadein.active.box_002 {
    transition-delay: 0.4s;
}

.fadein.active.box_003 {
    transition-delay: 0.8s;
}

.pc_none,
.sp_photo_bs_1,
.sp_photo_bs_2 {
    display: none;
}

/*******************************************/
/** header                                **/
/*******************************************/
header {
    position: fixed;
    z-index: 100;
    width: 100%;
    height: 105.5px;
    background: url(../img/top_border.png) repeat-x, url(../img/top_under.png) left 60px no-repeat;
    background-color: rgba(var(--color_white_rgb) / 80%);
}

.header_nav_btn {
    display: none;
}

#TOP {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

#TOP .logo {
    color: var(--main_color);
    font-size: 3rem;
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    text-shadow: 1px 1px 2px #808080;
}

#TOP nav ul {
    display: flex;
}

#TOP nav ul li {
    margin: 0 15px;
}

#TOP nav ul li a {
    position: relative;
    color: var(--main_fontcolor);
}

#TOP nav ul li a::after {
    content: "";
    position: absolute;
    background-color: var(--main_fontcolor);
    top: 30px;
    left: -10%;
    width: 120%;
    height: 1px;
    bottom: 0;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform 0.3s;
}

#TOP nav ul li a:hover::after {
    transform: scale(1, 1);
}

#TOP nav ul li a.nav_now::after {
    content: "";
    position: absolute;
    background-color: var(--main_fontcolor);
    top: 30px;
    left: -10%;
    width: 120%;
    height: 1px;
    bottom: 0;
    transform: scale(1, 1);
    transform-origin: left top;
    transition: transform 0.3s;
}

/*******************************************/
/** main mv                               **/
/*******************************************/
.mv {
    background-image: url(../img/mainvisual.jpg);
    background-size: cover;
    width: 100%;
    height: 766px;
    position: relative;
}

#maincopy::before {
    content: "";
    position: absolute;
    width: 630px;
    height: 3px;
    top: 140px;
    left: 0;
    background-color: var(--main_color);
    z-index: 1;
}

#maincopy::after {
    content: "";
    position: absolute;
    top: -15px;
    left: -15px;
    width: 663px;
    height: 286px;
    border: solid 3px var(--main_color);
}

.mv .maincopy {
    background-color: rgba(var(--color_white_rgb) / 80%);
    width: 660px;
    height: 283px;
    position: absolute;
    inset: 0;
    margin: 300px auto auto;
    padding-top: 15px;
    display: flex;
    justify-content: center;
}

.mv .maincopy p {
    color: #fff;
    font-size: 5rem;
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    text-shadow: 1px 3px 6px var(--main_fontcolor);

}

/*******************************************/
/** main content                          **/
/*******************************************/
.content {
    margin: 100px auto;
}

.content ul {
    display: flex;
    justify-content: space-between;

}

.content ul li {
    position: relative;
}

.content ul li img {
    width: 352px;
    height: 213px;
    object-fit: cover;
}

.content a {
    display: block;
    transition: all .3s ease-in-out;
}

.content a:hover {
    opacity: .6;
}

.content ul li h2 {
    position: absolute;
    top: 10%;
    left: 23%;
}

.content ul li span {
    position: absolute;
    display: inline-block;
    width: 250px;
    height: 30px;
    color: var(--color_white);
    background: linear-gradient(90deg, rgba(var(--main_color_rgb)/0%), rgba(var(--main_color_rgb)/ 100%), rgba(var(--main_color_rgb)/100%), rgba(var(--main_color_rgb)/0%));
    top: 60%;
    left: 15%;
    padding-left: 21%;
    font-size: 20px;
}

.content .span_business {
    padding-left: 22%;
}

.content .span_recruit {
    padding-left: 24%;
}

/*******************************************/
/** main greeting                         **/
/*******************************************/
.greeting {
    width: 100%;
    background-color: var(--main_color);
    background-image: url(../img/bg_greeting.png);
    padding-top: 53px;
    padding-bottom: 100px;
    margin-top: 150px;
    margin-bottom: 100px;
    transition: .6s;
}

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

.greeting_text p {
    display: inline-block;
    margin-left: 73px;
    margin-bottom: 30px;
}

.greeting_text a {
    margin-left: 73px;
}

.greeting_img {
    margin-top: 100px;
}

.slider__mainvisual {
    width: 50%;
    object-fit: cover;
    line-height: 0;
    font-size: 0;
}

/*******************************************/
/** main business                         **/
/*******************************************/
.business {
    width: 100%;
    background-image: url(../img/bg_business.jpg);
    background-position: right 0;
    margin-bottom: 100px;
    padding-top: 53px;
    padding-bottom: 100px;
}

.business p {
    display: inline-block;
    margin-left: 92px;
    margin-bottom: 60px;
    line-height: 1.8;
}

/*******************************************/
/** main recruit                          **/
/*******************************************/
.recruit {
    width: 100%;
    height: 700px;
    background-image: url(../img/bg_recruit.png);
    background-position: center top;
}

.recruit h2 {
    color: var(--main_color);
    text-align: center;
    padding-top: 75px;
    margin-bottom: 78px;
}

.recruit_text p {
    margin-bottom: 80px;
}

.recruit .btn_white {
    background-color: rgba(var(--main_color_rgb) / 50%);
    border: 1px solid var(--main_color);
}

.recruit .recruit_img {
    position: relative;
    width: 100%;
}

.recruit .recruit_img img {
    position: absolute;
    width: min(50%, 480px);
}

.recruit .recruit_img :nth-child(1) {
    z-index: 1;
    margin-top: 200px;
    margin-left: -20%;
}

.recruit .recruit_img :nth-child(2) {
    z-index: 2;
    margin-left: 10%;
}

/*******************************************/
/** footer contact                        **/
/*******************************************/
.footer_contact {
    width: 100%;
    height: 369px;
    background-image: url(../img/bg_footer_contact.jpg);
    background-size: cover;
    background-position: center center;
    margin-top: 200px;
}

.footer_contact h2 {
    display: none;
}

.footer_contact .inner_main {
    display: flex;
    justify-content: center;
}

.footer_contact p {
    color: var(--color_white);
    width: 322px;
    margin: 0 auto;
}

.footer_contact p.number {
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 50px;
    line-height: 50px;
}

.footer_contact_tel p.number {
    position: relative;
}

.footer_contact_tel :nth-child(1 of .number)::before {
    content: "";
    position: absolute;
    width: 37px;
    height: 37px;
    top: 10px;
    left: -37px;
    background-image: url(../img/img_tel.png);
    background-size: cover;
}

.footer_contact_tel :nth-child(2 of .number)::before {
    content: "";
    position: absolute;
    width: 31px;
    height: 31px;
    top: 15px;
    left: -35px;
    background-image: url(../img/img_fax.png);
    background-size: cover;
}

.footer_contact_tel .time {
    margin-top: 10px;
}

.footer_contact .inner_main .footer_contact_tel,
.footer_contact .inner_main .footer_contact_mail {
    width: 50%;
    text-align: center;
    margin: 80px auto auto;
}

.footer_contact span.white_bar {
    display: block;
    width: 108px;
    height: 5px;
    background-color: var(--color_white);
    margin: 37.5px auto 27.5px;
}

.footer_contact_center {
    width: 2px;
    height: 264px;
    background-color: var(--color_white);
    margin: 52.5px auto;
}

.footer_contact_mail .btn_white {
    font-size: 29px;
    padding-left: 20px;
    position: relative;
}

.footer_contact_mail .btn_white::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
}

/*******************************************/
/** footer                                **/
/*******************************************/
footer {
    width: 100%;
    height: 232px;
    background-color: var(--main_color);
    text-align: center;
}

footer h2 {
    font-size: 30px;
    text-shadow: 1px 1px 2px var(--main_fontcolor);
}

footer * {
    color: var(--color_white);
}

footer .inner_main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-top: 50px;
    text-align: left;
}

footer .inner_main .footer_company p {
    margin-top: 10px;
    margin-bottom: 7px;
}

footer .inner_main .footer_company span {
    display: inline-block;
    width: 200px;
}

footer .inner_main .footer_nav ul {
    display: flex;
    justify-content: space-around;
}

footer .inner_main .footer_nav ul li {
    margin-left: 22px;
    margin-right: 22px;
}

footer .inner_main .footer_nav ul li a {
    position: relative;
}

footer .inner_main .footer_nav ul li a::after {
    content: "";
    position: absolute;
    background-color: var(--color_white);
    top: 30px;
    left: -10%;
    width: 120%;
    height: 1px;
    bottom: 0;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform 0.3s;
}

footer .inner_main .footer_nav ul li a:hover::after {
    transform: scale(1, 1);
}

footer .inner_main .footer_nav ul li a.nav_now::after {
    content: "";
    position: absolute;
    background-color: var(--color_white);
    top: 30px;
    left: -10%;
    width: 120%;
    height: 1px;
    bottom: 0;
    transform: scale(1, 1);
    transform-origin: left top;
    transition: transform 0.3s;
}

/*******************************************/
/** 下層ページ基本設定                       **/
/*******************************************/
.sub_mv {
    background-size: cover;
    width: 100%;
    height: 500px;
    position: relative;
    margin-bottom: 16px;
}

.sub_title {
    margin: 0 auto;

}

.h2_toptitle {
    padding-top: 240px;
    text-align: center;
    letter-spacing: 1rem;
    text-shadow: 2px 2px 5px #000;
}

.sub_toptitle {
    display: block;
    color: var(--color_white);
    text-align: center;
}

.sub_mv span.white_bar {
    display: block;
    width: 420px;
    height: 1px;
    background-color: var(--color_white);
    margin: 20px auto 20px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin-bottom: 50px;
}

.breadcrumb li:not(:last-of-type)::after {
    content: "＞";
    margin: 0 .6em;
    color: var(--color_gray);
}

/*******************************************/
/** 会社情報                               **/
/*******************************************/
#company .sub_mv {
    background-image: url(../img/sub_mv_company.jpg);
}

.about,
.access,
.group {
    width: 800px;
    margin: 0 auto;
}

#company table {
    border-spacing: 18px;
}

#company table tr th {
    width: 200px;
    background-color: var(--color_th);
    color: var(--color_white);
    text-align: left;
    padding: 16px 0px 16px 20px;
}

#company table tr td {
    width: 552px;
    background-color: var(--color_td);
    padding: 16px 1px 16px 70px;
}

#company iframe {
    width: 90%;
    height: 376px;
    margin: 18px auto;
}

#company main {
    margin-bottom: 226px;
}

/*******************************************/
/** 事業内容                               **/
/*******************************************/
#business .sub_mv {
    background-image: url(../img/sub_mv_business.jpg);
}

#business main {
    margin-bottom: 172px;
}

.bis_box {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 100px;
}

.bis_box h4 {
    margin: 38px auto 24px 0px;
}

.bis_left_box {
    width: 50%;
    position: relative;
}

.bis_left_box img,
.bis_right_box img {
    width: 512px;
    height: 384px;
    object-fit: cover;
}

.bis_right_box {
    width: 50%;
    position: relative;
}

#bis_bg_1 {
    position: absolute;
    top: 72px;
    left: -136px;
    z-index: -1;
}

#bis_bg_2 {
    position: absolute;
    top: 72px;
    right: -136px;
    z-index: -1;
}

.bis_right_box h3,
.bis_left_box h3 {
    position: relative;
    display: block;
    width: 100%;
}

.bis_right_box h3::before,
.bis_left_box h3::before {
    content: "";
    position: absolute;
    display: block;
    background-image: url(../img/bis_bg_title.png);
    width: 516px;
    height: 87px;
    top: 26px;
    right: -136px;
    z-index: -1;
}

.bis_left_box h3::before {
    transform: rotate(180deg);
    top: 26px;
    left: -136px;
}

.bis_right_box h3 span {
    display: block;
    margin-left: 116px;
}

.bis_right_box ul,
.bis_left_box ul {
    list-style-type: disc;
    display: block;
    margin-left: 50px;
}

/*******************************************/
/** 採用情報                               **/
/*******************************************/
#recruit .sub_mv {
    background-image: url(../img/sub_mv_recruit.jpg);
}

#recruit h4 {
    font-size: 1.3rem;
    font-family: "Noto Serif JP", serif;
    line-height: 3rem;
}

#recruit ul.recruit_ul {
    list-style-type: disc;
    display: block;
    margin-left: 50px;
}

#recruit main {
    margin-bottom: 200px;
}


/*******************************************/
/** お問い合わせ                            **/
/*******************************************/
#contact .sub_mv,
#contact_fin .sub_mv,
#privacypolicy .sub_mv {
    background-image: url(../img/sub_mv_contact.jpg);
}

#contact_attention {
    background-color: var(--color_lightgray);
    width: 100%;
    margin: 50px auto 50px;
    padding: 30px 289px 50px 249px;
    display: flex;
    justify-content: space-between;
}

#left_box {
    margin-top: 20px;
}

.number {
    font-size: 3rem;
    font-family: Arial, Helvetica, sans-serif;
}

.information {
    width: 80%;
    margin: 0 auto 50px;
}

#formWrap {
    width: 1000px;
    margin: 0 auto 200px;
    line-height: 120%;
    font-size: 90%;
}

table.formTable {
    width: 100%;
    margin: 0 auto;
}

table.formTable td,
table.formTable th {
    border: none;
    padding: 10px;
}

table.formTable th {
    width: 30%;
    font-weight: normal;
    text-align: left;
    line-height: 2.4;
}

.must {
    color: var(--color_white);
    background-color: var(--main_color);
    float: right;
    display: inline-block;
    width: 60px;
    height: 40px;
    text-align: center;
    font-weight: 600;
    line-height: 2.4;
}

.input_space {
    padding: 10px;
    margin-right: 10px;
}

#formWrap p {
    text-align: center;
}

.policy_check {
    display: block;
    margin: 30px auto 30px;
    line-height: 2rem;
}

.policy_check img {
    display: inline;
    width: 15px;
}

.btn_submit,
.btn_reset {
    background-color: var(--main_fontcolor);
    color: var(--color_white);
    padding: 22px 98px;
}

/*　レスポンシブ */
@media screen and (max-width:600px) {
    #formWrap {
        width: 95%;
        margin: 0 auto 100px;
    }

    table.formTable th,
    table.formTable td {
        width: auto;
        display: block;
    }

    table.formTable th {
        margin-top: 5px;
        border-bottom: 0;
    }

    form input[type="text"],
    form textarea {
        width: 100%;
        padding: 5px;
        font-size: 110%;
        display: block;
    }

    form input[type="submit"],
    form input[type="reset"],
    form input[type="button"] {
        display: block;
        width: 100%;
    }

    .must {
        float: none;
        margin-left: 0px;
        color: red;
        background-color: transparent;
        font-weight: normal;
    }

    .input_space {
        border: 1px var(--color_gray) solid;
        background-color: var(--color_lightgray);
        accent-color: var(--color_lightgray);
    }
}

/*******************************************/
/** 個人情報保護方針について                  **/
/*******************************************/
.policy_title {
    font-size: 1.2rem;
    margin-top: 30px;
    margin-bottom: 0px;
}

.policy_text {
    display: block;
    margin-left: 50px;
}

.information {
    margin-bottom: 100px;
}

.information ol {
    list-style-type: decimal;
    display: block;
    margin-left: 100px;
}


/*******************************************/
/** レスポンシブ設定     600以下で変更         **/
/*******************************************/
@media screen and (max-width:600px) {

    * {
        font-size: 1rem;
    }

    .none {
        display: none;
    }

    .pc_none {
        display: inline;
    }

    .inner_main {
        width: max(90%, 320px)
    }

    /* ハンバーガーメニュー */
    .header_nav_btn {
        display: block;
        position: fixed;
        cursor: pointer;
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        background-color: rgba(var(--color_white_rgb)/ 80%);
        border: 1px solid var(--main_fontcolor);
        z-index: 1000;
    }

    .header_nav_btn::after {
        content: "メニュー";
        color: var(--color_gray);
        position: absolute;
        display: block;
        top: 40px;
        left: 0px;
        font-size: 0.6rem;
        width: 60px;
    }

    .hum_top,
    .hum_middle,
    .hum_bottom {
        display: block;
        width: 30px;
        height: 1px;
        background-color: var(--main_fontcolor);
        margin-left: 5px;
        transition: all .6s;
    }

    .hum_top {
        transform: translateY(-10px)
    }

    .hum_bottom {
        transform: translateY(10px)
    }

    body.is_nav_open .header_nav_btn .hum_middle {
        transform: scaleX(0);
    }

    body.is_nav_open .header_nav_btn .hum_top {
        transform: translateY(1.5px) rotate(45deg);
    }

    body.is_nav_open .header_nav_btn .hum_bottom {
        transform: translateY(0) rotate(-45deg);
    }

    .btn_form.btn_white::before {
        top: 26px;
    }

    /* トップページ */
    header {
        position: relative;
        background: no-repeat left 0% top 70% /70% url(../img/top_under.png);
        background-color: rgba(var(--color_white_rgb) / 80%);
        height: 64px;
    }

    #TOP .logo {
        margin: 0;
        margin-left: 15px;
        padding: 0;
        padding-top: 15px;
        padding-bottom: 16px;
        font-size: 24px;
    }

    #TOP.inner_main {
        margin-top: 0px;
        width: 100%;
    }

    /* ヘッダーメニュー */
    #TOP {
        display: block;
        position: relative;
    }

    #TOP nav {
        position: fixed;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0px;
        padding-top: 100px;
        background-color: var(--color_white);
        opacity: .9;
        transform: translateX(-100%);
        transition: transform .6s;
    }

    body.is_nav_open #TOP nav {
        transform: translateX(0);
    }

    #TOP nav ul {
        display: block;
        position: fixed;
        width: 100%;
        background-color: rgba(var(--color_white_rgb) / 80%);
    }

    #TOP nav ul li {
        margin: 0;
        padding: 20px;
        text-align: center;
    }

    #TOP nav ul li a,
    #TOP nav ul li a::after,
    #TOP nav ul li a:hover::after,
    #TOP nav ul li a.nav_now::after {
        position: static;
    }

    #TOP nav ul li a {
        display: block;
        line-height: 2rem;
    }

    #TOP nav ul li:hover {
        display: block;
        background-color: rgba(var(--main_color_rgb) / 50%);
    }

    .right,
    .left {
        text-align: center;
    }

    .greeting_text a {
        margin-left: 0;
    }

    /* mv */
    .mv {
        height: 100vh;
        background-position: center;
    }

    #maincopy::before {
        width: 90%;
        top: 90px;
    }

    #maincopy::after {
        width: 100%;
        height: 200px;
    }

    .mv .maincopy {
        width: min(90%, 330px);
        height: 200px;
        margin-top: 35vh;
    }

    .mv .maincopy p {
        font-size: 2.4rem;
    }

    .maincopy_text {
        margin-top: -10px;
        display: block;
        line-height: 5rem;
    }

    /* content */
    .content {
        display: none;
    }

    /* greeting */
    #greeting {
        margin: 0 auto;
        padding-top: 70px;
        background-color: var(--main_color);
        background-image: url(../img/bg_greeting_sp.jpg);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }

    .greeting .inner_main {
        display: block;
    }

    .greeting_text h2 {
        text-align: center;
    }

    .greeting_text p {
        margin: 83px 10px 93px 10px;
    }

    .h2_title.h2_left {
        display: block;
        margin: 0 auto;
    }

    .slider__mainvisual {
        display: none;
    }

    /* business */

    .business {
        background-image: url(../img/bg_business_sp.jpg);
        background-position: right;
        margin-bottom: 0;
    }

    .h2_right {
        text-align: center;
    }

    .business .h2_title {
        margin-top: 7px;

    }

    .business p {
        margin: 3px 10px 60px 10px;
    }

    /* recruit */

    .recruit {
        height: auto;
        margin: 0 auto;
        background-image: url(../img/bg_recruit_sp.jpg);
        background-size: 120%;
        background-repeat: no-repeat;
        background-position: right 30% top 40%;
    }

    .recruit .inner_main {
        padding-bottom: 177px;
    }

    .recruit h2 {
        margin: 60px 0 83px 0;
        padding: 0;
    }

    .recruit p {
        text-align: left;
        margin: 0 10px 60px 10px;
    }

    /* footer contact */

    .footer_contact {
        height: auto;
        margin-top: 0;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .footer_contact .inner_main {
        display: block;
    }

    .footer_contact p {
        width: min(90%, 320px);
    }

    .footer_contact_center {
        width: 264px;
        height: 1px;
        margin: 20px auto;
    }

    .footer_contact .inner_main .footer_contact_tel,
    .footer_contact .inner_main .footer_contact_mail {
        width: 100%;
        margin: 0 auto;
    }

    .footer_contact p.number,
    .footer_contact p.number a {
        color: var(--color_white);
        font-size: 35px;
        line-height: 40px;
    }

    .footer_contact_tel :nth-child(1 of .number)::before {
        width: 25px;
        height: 25px;
        left: 0px;
    }

    .footer_contact_tel :nth-child(2 of .number)::before {
        width: 25px;
        height: 25px;
        top: 10px;
        left: 0px;
    }

    .footer_contact span.white_bar {
        margin: 20px auto;
    }

    .footer_contact_mail .btn_white {
        font-size: 20px;
    }

    /* footer */

    footer {
        height: auto;
        padding-bottom: 50px;
    }

    footer .inner_main {
        display: block;
        width: min(90%, 320px);
        margin-bottom: 20px;
    }

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

    footer .inner_main .footer_company span {
        width: 50%;
        display: inline-block;
        font-size: var(--font_small);
    }

    footer .inner_main .footer_nav ul {
        display: block;
        text-align: center;
        line-height: 30px;
        margin-top: 20px;
    }

    footer .inner_main .footer_nav ul li {
        display: inline-block;
        width: 30%;
        margin: 0;
        margin-bottom: 10px;
    }

    footer .inner_main .footer_nav ul li a::after {
        top: 20px;
    }

    footer .inner_main .footer_nav ul li a.nav_now::after {
        top: 20px;
    }

    /* conmapy_page */

    .sub_mv {
        height: 100px;
        background-position: bottom;
    }

    .h2_toptitle {
        font-size: 30px;
        padding-top: 30px;
    }

    .sub_mv span.white_bar {
        display: none;
    }

    .sub_toptitle,
    .inner_main .nav_hum {
        display: none;
    }

    h4 {
        margin: 30px auto 18px;
        text-align: center;
        line-height: 1rem;
    }

    .about h4,
    .group h4 {
        margin-top: 48px;
    }

    h5 {
        text-align: center;
        line-height: 1rem;
    }

    .about,
    .access,
    .group {
        width: 100%;
    }

    #company table {
        width: 100%;
        border-spacing: 0 18px;
    }

    #company table tr th {
        width: 30%;
        padding: 16px 0 16px 5px;
    }

    #company table tr td {
        width: 70%;
        padding: 16px 0px 16px 10px;
    }

    #company iframe {
        width: 100%;
        height: 300px;
    }

    #company main {
        margin-bottom: 100px;
    }

    .bis_box {
        flex-direction: column-reverse;
        margin-top: 50px;
    }

    .bis_right_box,
    .bis_left_box {
        width: 100%;
    }

    .bis_right_box h3::before,
    .bis_left_box h3::before {
        background-size: 90%;
        background-position: right 0;
        background-repeat: no-repeat;
        margin: 0;
        width: 100%;
        height: 53px;
        top: 18px;
        right: -20px;
    }

    .bis_right_box h3,
    .bis_right_box h3 span,
    .bis_left_box h3,
    .bis_left_box h3 span {
        font-size: clamp(20px, 1.8vw, 30px);
        text-wrap: nowrap;
        line-height: 2rem;
        text-shadow: 2px 2px 5px var(--color_white);
    }

    .bis_right_box h3 span {
        margin-left: 50px;
    }

    .bis_left_box h3 span {
        margin-left: 50px;
    }

    .sp_photo_bs_1,
    .sp_photo_bs_2 {
        display: flex;
        justify-content: flex-end;
        width: 100%;
        text-align: center;
        position: relative;
    }

    .sp_photo_bs_2 {
        justify-content: flex-start;
    }

    .sp_photo_bs_1 img,
    .sp_photo_bs_2 img {
        width: 70%;
        height: auto;
        object-fit: contain;
        margin-top: 40px;
        margin-bottom: 50px;
    }

    #bis_bg_1 {
        top: 50px;
        left: 0;
    }

    #bis_bg_2 {
        top: 50px;
        right: 0;
    }

    .bis_right_box ul {
        list-style-type: disc;
        display: block;
        width: 70%;
    }

    .bis_right_box ul li {
        margin: 0 auto;
    }

    .bis_left_box ul {
        list-style-type: disc;
        display: block;
        margin-left: 10%;
    }

    .bis_left_box p {
        line-height: 2rem;
    }

    #business main {
        margin-bottom: 100px;
    }

    .information {
        margin-top: 50px;
        margin-bottom: 0px;
    }

    #recruit main {
        margin-bottom: 100px;
    }

    #contact_attention {
        display: block;
        padding: 1px 20px 20px 20px;
        margin-bottom: 0;
        text-align: center;
    }

    #contact_attention .number a {
        color: var(--main_fontcolor);
        font-size: 3rem;
    }

    #contact_fin .information {
        margin-bottom: 100px;
    }

    /* privacypolicy */

    #pri_h2_toptitle {
        padding-top: 12px;
    }

    .policy_title {
        text-align: left;
        margin-bottom: 20px;
    }

    .policy_text {
        margin-left: 20px;
    }

    .information ol {
        margin-left: 50px;
    }

    #privacypolicy .information {
        width: 100%;
        margin-bottom: 100px;
    }
}