@charset "UTF-8";
html {
    font-size: 62.5%;
    color: #474645;
    line-height: 2;
}

body {
    width: 100%;
    margin: 0 auto;
    font-size: 1.5rem;
    font-family: "Noto Sans JP", sans-serif;
}

.clearfix::after {
    display: block;
    clear: both;
    content: "";
}

/*-----------------------------------------
header
-----------------------------------------*/

.header-top {
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    background-color: #ffffff;
}

.h-logo {
    line-height: 1.1;
}

.header-nav {
    font-size: 1.5rem;
    line-height: 1.1;
}

.header-nav ul {
    display: flex;
}

.header-nav ul li {
    margin-right: 30px;
    text-align: center;
    line-height: 1.1;
}

.header-nav ul:last-child {
    margin-right: 0;
}

.header-nav ul .nav-list-small {
    font-size: 1.4rem;
}

.header-nav ul a {
    color: #474645;
    text-decoration: none;
    display: block;
}

.header-nav ul a:hover {
    color: #a5242a;
}

.header-nav-sm {
    display: none;
}

@media screen and (max-width: 640px) {
    .header-top {
        width: 100%;
        height: 60px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 15px;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        position: fixed;
        top: 0;
        left: 0;
        position: relative;
        z-index: 2;
    }
    .h-logo img {
        width: 80%;
        height: auto;
    }
}

/*-----------------------------------------
toggle ハンバーガーメニュー
-----------------------------------------*/

@media screen and (max-width: 1023px) {
    .header-nav {
        display: none;
    }
    .header-nav-sm {
        display: block;
        position: relative;
    }
    #sm-toggle {
        opacity: 0;
        position: fixed;
    }
    label .toggle-line {
        position: fixed;
        top: 1.8rem;
        right: 1.4rem;
        z-index: 3;
        width: 2.4rem;
        height: 2.4rem;
    }
    label .toggle-line::before,
    label .toggle-line::after,
    label .toggle-line .bar {
        position: absolute;
        right: 0;
        width: 100%;
        height: 3px;
        border-radius: 5px;
        background-color: #a5242a;
        content: "";
        -webkit-transition: all 0.5s;
        transition: all 0.5s;
    }
    label .toggle-line::before {
        top: 0;
        -webkit-transform-origin: top right;
        transform-origin: top right;
    }
    label .toggle-line::after {
        bottom: 0;
        -webkit-transform-origin: bottom right;
        transform-origin: bottom right;
    }
    label .toggle-line .bar {
        top: 45%;
    }
    #menu {
        position: fixed;
        top: 10%;
        left: 0;
        bottom: 0;
        z-index: 2;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        -webkit-transition: 0.5s;
        transition: 0.5s;
        width: 100%;
    }
    #menu p {
        width: 90%;
        margin: 0 auto;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        border-bottom: 1px solid #d2d4d6;
        padding: 10px 0;
    }
    #menu::before {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        z-index: -1;
        width: 100rem;
        background-color: #f5f7f9;
        content: "";
        -webkit-transform: translateY(-200%);
        transform: translateY(-200%);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-transition: -webkit-transform 0.3s;
        transition: -webkit-transform 0.3s;
        transition: transform 0.3s;
        transition: transform 0.3s, -webkit-transform 0.3s;
    }
    #menu a {
        margin: 0.4rem 0;
        padding: 0.2rem 3rem;
        font-size: 1.8rem;
        line-height: inherit;
        color: #474645;
        text-decoration: none;
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
        -webkit-transition: all 0.15s, -webkit-transform 0.5s;
        transition: all 0.15s, -webkit-transform 0.5s;
        transition: all 0.15s, transform 0.5s;
        transition: all 0.15s, transform 0.5s, -webkit-transform 0.5s;
    }
    #menu .flex-colum a {
        line-height: 1.5;
    }
    #sm-toggle:checked + label .toggle-line::before,
    #sm-toggle:checked + label .toggle-line::after {
        width: 130%;
        background-color: #a5242a;
    }
    #sm-toggle:checked + label .toggle-line::before {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    #sm-toggle:checked + label .toggle-line::after {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    #sm-toggle:checked + label .toggle-line .bar {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    #sm-toggle:checked ~ #menu {
        opacity: 1;
        visibility: visible;
    }
    #sm-toggle:checked ~ #menu::before {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    #sm-toggle:checked ~ #menu a {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

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

/*-----------------------------------------
トップページ
-----------------------------------------*/

.mv-wrap {
    background-image: url(../img/top_kv_pc.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    text-align: center;
    height: 120vh;
    position: relative;
    z-index: 0;
}

.mv-heading {
    font-size: 4rem;
    line-height: 1.7;
    font-weight: bold;
    letter-spacing: 0.1em;
    margin-bottom: 60px;
}

.mv-txt-wrap {
    position: absolute;
    top: 48%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.mv-txt {
    font-size: 1.7rem;
    line-height: 1.8;
    margin-bottom: 80px;
}

.sp {
    display: none;
}

.mv-logo img {
    width: 200px;
    height: auto;
}

.scroll-sign {
    width: 1040px;
    position: absolute;
    bottom: 400px;
    right: -300px;
}

.top-campany-group {
    margin-top: -15vh;
    position: relative;
}

.top-cont-ttl {
    font-family: "Roboto", sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    line-height: 0.9;
    margin-bottom: 30px;
    text-align: center;
}

.top-cont-ttl span {
    font-size: 1.8rem;
    font-weight: bold;
}

.news-list {
    margin-bottom: 60px;
}

.news-list li {
    border-bottom: 1px solid #d2d4d6;
}

.news-list li a {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    color: #474645;
    text-decoration: none;
}

.news-list li a:hover {
    color: #a5242a;
}

.news-list .news-list-date {
    margin-right: 40px;
}

.news-list .news-list-ttl {
    font-weight: bold;
    font-size: 1.8rem;
}

.contact-wrap {
    background-image: url(../img/top_contact_bg_pc.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 0;
}

.contact-txt {
    text-align: center;
    margin-bottom: 20px;
}

/*-----------------------------------------
ページ
-----------------------------------------*/

.phil-bg {
    padding: 40px 0 60px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../img/company_rinenn_bg_pc.jpg);
}

.cont-phil-lead {
    font-size: 3rem;
    margin-bottom: 30px;
    text-align: center;
}

.cont-phil-txt {
    font-size: 1.8rem;
    line-height: 2;
    text-align: center;
}

.messe-wrap {
    width: 100%;
    padding: 60px 140px;
    background-color: #f3f5f7;
    /* box-shadow: 0 0 50px rgb(0 0 0 / 10%); */
}

.messe-txt {
    font-size: 1.5rem;
    margin-top: 10px;
}

.sign-img {
    text-align: right;
    margin-top: 20px;
}

.sign-img img {
    width: 15%;
    height: auto;
}

.company-table tr {
    border-bottom: 1px solid #d2d4d6;
}

.company-table tr:last-child {
    border-bottom: none;
}

.company-table tr th {
    width: 25%;
    font-weight: bold;
    padding: 20px 20px 20px 20px;
}

.company-table tr td {
    padding: 20px 20px 20px 0;
}

.complahoiku tr {
    border: 1px solid #d2d4d6 !important;
    padding: 20px 40px;
}

.complahoiku th {
    border: 1px solid #d2d4d6 !important;
    border-right: none !important;
    padding: 20px 40px;
}

.compla-txt {
    text-align: left;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 16px;
}

.map iframe {
    width: 100%;
    height: 400px;
}

.group-card {
    background-color: #ffffff;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
    margin-bottom: 80px;
}

.group-card:last-of-type {
    margin-bottom: 120px;
}

.group-card-link {
    display: block;
    padding: 40px 80px;
}

.group-card:hover {
    background-color: #ffffff;
    box-shadow: 0 0 30px rgba(0, 0, 0, 4%);
}

.group-card-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.group-card-logo {
    width: 40%;
    text-align: left;
    /* margin-left: 40px; */
}

.group-card-logo img {
    width: 80%;
}

.group-card-ttl {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 25px;
    position: relative;
}

.group-card-ttl::after {
    content: "";
    width: 40px;
    height: 3px;
    background-color: #a5242a;
    position: absolute;
    top: 45px;
    left: 0px;
}

.group-card-right-content {
    width: 60%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.group-card-txt {
    padding-right: 40px;
    line-height: 1.8;
}

.group-card-txt span {
    font-size: 1.3rem;
}

.recruit-info-wrap {
    background-color: #ffffff;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
    padding: 80px 0;
}

.recruit-info-logo {
    text-align: center;
    margin-bottom: 40px;
}

.recruit-ttl-wrap {
    text-align: center;
}

.recruit-ttl {
    font-size: 2rem;
    font-weight: bold;
    display: inline-block;
    position: relative;
    margin-bottom: 60px;
}

.recruit-ttl::before {
    content: "";
    width: 100%;
    height: 2px;
    background-color: #a5242a;
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.recruit-ttl-wrap-multi {
    text-align: center;
}

.recruit-ttl-multi {
    font-size: 2rem;
    font-weight: bold;
    display: inline-block;
    position: relative;
    margin-bottom: 60px;
}

.recruit-ttl-multi::before {
    content: "";
    width: 100%;
    height: 2px;
    background-color: #a5242a;
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.recruit-txt-multi {
    display: block;
    width: 64%;
    margin-inline: auto;
    font-size: 1.5rem;
    text-align: left;
    margin-bottom: 60px;
}

.notyet-recruit {
    font-size: 1.8rem;
    text-align: center;
    margin-top: -20px;
}

.recruit-group-card-wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.recruit-group-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    width: 45%;
    margin-bottom: 60px;
}

.recruit-group-card:hover {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    box-shadow: 0 0 30px rgba(0, 0, 0, 4%);
    width: 45%;
}

.label {
    display: flex;
    align-items: center;
}

.label-item {
    background-color: #a3a3a3;
    color: #ffffff;
    border-radius: 4px;
    padding: 0 10px;
    margin-right: 10px;
    margin-bottom: 15px;
}

.recruit-group-ttl {
    font-size: 2rem;
    font-weight: bold;
}

.recruit-card-link {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 30px 40px;
}

.news-item-wrap {
    padding: 0 0 40px;
    margin-bottom: 60px;
    border-bottom: #474645 1px solid;
}

.news-item-ttl {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.news-pastall {
    margin-bottom: 80px;
}

.news-item-past {
    font-size: 1.8rem;
    padding-bottom: 10px;
    border-bottom: #474645 1px solid;
    text-decoration: none;
    color: #474645;
}

.news-item-past:hover {
    color: #a5242a;
    border-bottom: #a5242a 1px solid;
}

.nwes-age {
    font-size: 3rem;
    margin-bottom: 60px;
}

/*-----------------------------------------
トップに戻る
-----------------------------------------*/

#back-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
}

/*-----------------------------------------
フォーム
-----------------------------------------*/

.form-wrap {
    font-size: 1.8rem;
}

.form-check table tr {
    border-bottom: 1px solid #a3a3a3;
}

input,
button,
textarea,
select {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input[type="text"] {
    border: 1px solid #a3a3a3;
    padding: 15px 0 15px 10px;
    width: 100%;
}

input[type="radio"] {
    display: none;
}

.form-wrap label {
    position: relative;
    display: inline-block;
    padding: 3px 3px 3px 20px;
    cursor: pointer;
}

.form-wrap label::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    width: 14px;
    height: 14px;
    margin-top: -8px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 100%;
}

input[type="radio"]:checked + label::after {
    position: absolute;
    content: "";
    top: 45%;
    left: 3px;
    width: 8px;
    height: 8px;
    margin-top: -4px;
    background: #a5242a;
    border-radius: 100%;
}

input[type="reset"],
button {
    border-bottom: 1px solid #a3a3a3;
    padding: 4px 40px;
    border-radius: 0;
}

input[type="submit"] {
    background-color: #a5242a;
    border: 1px solid #a5242a;
    border-radius: 3px;
    color: #fff;
    padding: 4px 40px;
}

input[type="submit"]:hover {
    background-color: #ffffff;
    border: 1px solid #a5242a;
    border-radius: 3px;
    color: #b19db5;
    padding: 4px 40px;
}

textarea {
    border: 1px solid #a3a3a3;
    padding: 15px 0 15px 10px;
    width: 100%;
}

textarea[type="hidden"] {
    display: none;
}

.form-wrap table {
    width: 100%;
    table-layout: fixed;
    margin-bottom: 40px;
}

.form-wrap table tr {
    display: flex;
    padding: 20px 0;
}

.form-wrap table tr th {
    width: 25%;
    text-align: left;
    display: flex;
    align-items: center;
    font-weight: normal;
}

.form-wrap table tr td {
    width: 75%;
    margin-left: 30px;
}

.formbtn {
    width: 60%;
    margin: 60px auto;
    display: flex;
    justify-content: space-around;
}

@media screen and (max-width: 770px) {
    .input,
    button,
    textarea,
    select {
        margin: 0;
        padding: 0;
        background: none;
        border: none;
        border-radius: 0;
        outline: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }
    input[type="text"] {
        border: 1px solid #a3a3a3;
        padding: 15px 0 15px 10px;
    }
    input[type="radio"] {
        display: none;
    }
    .form-wrap label {
        position: relative;
        display: inline-block;
        padding: 3px 3px 3px 20px;
        cursor: pointer;
    }
    .form-wrap label::before {
        position: absolute;
        content: "";
        top: 50%;
        left: 0;
        width: 14px;
        height: 14px;
        margin-top: -8px;
        background: #fff;
        border: 1px solid #ccc;
        border-radius: 100%;
    }
    input[type="radio"]:checked + label::after {
        position: absolute;
        content: "";
        top: 45%;
        left: 3px;
        width: 8px;
        height: 8px;
        margin-top: -4px;
        background: #a5242a;
        border-radius: 100%;
    }
    input[type="reset"],
    button {
        border-bottom: 1px solid #707070;
        padding: 4px 0px;
        font-size: 1.3rem;
    }
    input[type="submit"] {
        background-color: #a5242a;
        border: 1px solid #a5242a;
        border-radius: 3px;
        color: #fff;
        padding: 4px 20px;
    }
    textarea {
        border: 1px solid #a3a3a3;
        padding: 15px 0 15px 10px;
        width: 100%;
        text-align-last: left;
    }
    textarea[type="hidden"] {
        display: none;
    }
    .form-wrap table {
        width: 100%;
    }
    .form-wrap table tr {
        display: block;
        padding: 0px 0 20px;
    }
    .form-wrap table tr th {
        width: 100%;
        text-align: center;
        display: block;
    }
    .form-wrap table tr td {
        width: 100%;
        margin-left: 20px;
    }
    .formbtn {
        width: 60%;
        margin: 40px auto;
        display: flex;
        justify-content: space-around;
    }
    /* table tr {
        display: block;
        padding: 20px 0;
        width: 100%;
    } */
    .form-wrap table tr th {
        display: block;
        width: 100%;
        text-align: left;
        padding: 0px 0 8px;
        margin-bottom: 0;
        font-size: 1.5rem;
    }
    .form-wrap table tr td {
        display: block;
        width: 100%;
        text-align: left;
        margin: 0;
    }
    .formbtn {
        width: 100%;
        display: flex;
        justify-content: space-around;
    }
}

.thanks-wrap {
    height: 46vh;
}

.form-cont-ttl {
    position: relative;
    display: block;
    font-size: 3.2rem;
    text-align: center;
    margin: 0 auto 60px;
}

.thanks-txt {
    margin-top: 60px;
    text-align: center;
    font-size: 2rem;
}

.back-btn {
    width: 250px;
    margin: 80px auto 0;
}

.back-btn a {
    background-color: #d2d4d6;
    border: 1px solid #d2d4d6;
    color: #474645;
    display: flex;
    justify-content: space-around;
    align-items: baseline;
    padding: 10px 40px;
}

.back-btn a:hover {
    background-color: #ffffff;
    color: #474645;
    display: flex;
    justify-content: space-around;
    align-items: baseline;
    padding: 10px 40px;
    border: 1px solid #d2d4d6;
}

/*---------------------------------------------
UI kit
---------------------------------------------*/

section {
    margin: 120px 0 0;
}

section:first-child {
    margin-top: 150px;
}

.last-section {
    margin-bottom: 150px;
}

.inner-l {
    width: 1040px;
    height: auto;
    margin: 0 auto;
}

.inner-s {
    width: 760px;
    height: auto;
    margin: 0 auto;
}

.page-ttl {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1;
    text-align: center;
    position: relative;
    display: block;
    margin: 60px 0 120px;
}

.page-ttl span {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
}

.page-ttl::before {
    content: "";
    width: 150px;
    height: 6px;
    border-radius: 4px;
    background: -moz-linear-gradient(right, #ffec00, #dc000c);
    background: -webkit-linear-gradient(right, #ffec00, #dc000c);
    background: linear-gradient(to right, #ffec00, #dc000c);
    position: absolute;
    top: 75px;
    left: 50%;
    transform: translateX(-50%);
}

.page-lead {
    margin-bottom: 20px;
}

.cont-ttl-wrap {
    text-align: center;
}

.cont-ttl {
    font-size: 2rem;
    font-weight: bold;
    line-height: 2;
    text-align: center;
    display: inline-block;
    border-bottom: 3px solid #a5242a;
    margin-bottom: 30px;
}

.btn {
    width: 250px;
    height: 50px;
    font-size: 1.8rem;
    padding: 4px 40px;
}

.btn_more {
    border: 2px solid #a5242a;
    background-color: #ffffff;
    color: #a5242a;
    margin: 0 auto;
}

.btn_more a {
    font-family: "Roboto", sans-serif;
    display: flex;
    justify-content: space-around;
    letter-spacing: 0.1em;
}

.btn_more a span {
    padding-left: 20px;
}

.btn_more:hover {
    border: 1px solid #a5242a;
    background-color: #a5242a;
    color: #ffffff;
}

.btn-card-l-more {
    float: left;
}

.btn_contact {
    border: 2px solid #a5242a;
    background-color: #a5242a;
    color: #ffffff;
    margin: 0 auto;
}

.btn_contact a {
    display: flex;
    justify-content: space-around;
    padding-left: 20px;
}

.btn_contact:hover {
    border: 2px solid #a5242a;
    background-color: #ffffff;
    color: #a5242a;
}

.card-l {
    background-color: #ffffff;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
    padding: 40px 80px;
    margin-bottom: 80px;
}

.card-l-ttl {
    font-family: "Roboto", sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    letter-spacing: 1px;
    line-height: 0.9;
    margin-bottom: 20px;
    width: 40%;
    float: left;
}

.card-l-txt {
    margin-bottom: 20px;
    width: 40%;
    float: left;
}

.card-l-ttl span {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.card-l-img {
    width: 50%;
    float: right;
}

.card-l-img img {
    width: 100%;
    height: auto;
}

.card-s {
    background-color: #ffffff;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.card-s-img {
    width: 37%;
    margin-right: 40px;
    float: left;
}

.card-s-img img {
    width: 100%;
    height: auto;
}

.card-s-wrap {
    width: 85%;
}

.card-s-ttl {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 0.9;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    float: right;
    padding-top: 40px;
    width: 55%;
}

.card-s-ttl span {
    font-size: 1.5rem;
}

.card-s-txt {
    line-height: 1.5;
    padding-right: 40px;
    float: right;
    width: 55%;
    padding-bottom: 30px;
}

.card-s-arrow {
    width: 5%;
    text-align: center;
    margin-right: 40px;
    font-size: 2rem;
}

.top-card-link {
    display: block;
}

.red {
    color: #a5242a;
}

.last-child {
    margin-bottom: 0;
}

.arrow {
    position: relative;
    display: inline-block;
    padding-left: 20px;
}

.arrow::before {
    content: "";
    width: 22px;
    height: 22px;
    border: 0px;
    border-top: solid 2px #a5242a;
    border-right: solid 2px #a5242a;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 45%;
    left: 0;
    margin-top: -4px;
}

.notyet {
    height: 50vh;
    font-size: 2rem;
    text-align: center;
}

.privacy-table-list li {
    list-style-type: disc;
    margin-left: 2rem;
}

.hidden {
    overflow: hidden;
}

.mb20 {
    margin-bottom: 20px;
}

.mb80 {
    margin-bottom: 80px;
}

/*-----------------------------------------
footer
-----------------------------------------*/

footer {
    background-color: #f5f7f9;
}

.footer-top {
    padding: 40px 0;
    border-bottom: 1px solid #d2d4d6;
}

.footer-nav-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.footer-nav-list a:hover {
    color: #a5242a;
}

.footer-mid {
    padding: 40px 0;
    border-bottom: 1px solid #d2d4d6;
}

.footer-mid-item-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-bottom {
    padding: 20px 80px 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/*-----------------------------------------
タブレット
-----------------------------------------*/

@media screen and (max-width: 1024px) {
    section {
        margin: 100px 0 0;
    }
    section:first-of-type {
        margin: 130px 0 0;
    }
    .inner-l {
        width: 90%;
        height: auto;
        margin: 0 auto;
    }
    .inner-s {
        width: 90%;
        height: auto;
        margin: 0 auto;
    }
    .scroll-sign {
        width: 100%;
        position: absolute;
        bottom: 250px;
        right: -250px;
    }
    .mv-heading {
        font-size: 4.5rem;
        line-height: 1.7;
        font-weight: bold;
        letter-spacing: 3px;
        margin-bottom: 60px;
    }
    .mv-logo img {
        width: 70%;
        height: auto;
    }
    .btn-card-l-more {
        margin: 0 auto;
        clear: both;
    }
    .messe-wrap {
        padding: 60px;
    }
    .group-card {
        background-color: #ffffff;
        box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
        margin-bottom: 80px;
    }
    .group-card-link {
        display: block;
        padding: 40px 100px;
    }
    .group-card-wrap {
        display: block;
    }
    .group-card-txt {
        padding-right: 40px;
    }
    .group-card-logo {
        width: 100%;
        text-align: center;
        margin-bottom: 40px;
        margin-left: 0;
    }
    .group-card-right-content {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .group-card-txt {
        padding-right: 20px;
    }
    .recruit-card-link {
        padding: 30px;
    }
    .recruit-group-ttl {
        font-size: 1.8rem;
    }
}

/*-----------------------------------------
スマホ
-----------------------------------------*/

@media screen and (max-width: 639px) {
    .btn {
        width: 200px;
        height: 40px;
        font-size: 1.5rem;
    }
    section {
        margin: 80px 0 0;
    }
    section:first-of-type {
        margin: 60px 0 0;
    }
    .last-section {
        margin-bottom: 80px;
    }
    .inner-l {
        width: 90%;
        height: auto;
        margin: 0 auto;
    }
    .inner-s {
        width: 90%;
        height: auto;
        margin: 0 auto;
    }
    .mv-wrap {
        background-image: url(../img/top_kv_sp.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        text-align: center;
        height: 100vh;
        position: relative;
    }
    .mv-txt-wrap {
        position: absolute;
        top: 40%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
    }
    .scroll-sign {
        width: 100%;
        position: absolute;
        bottom: 20%;
        right: -120px;
    }
    .scroll-sign img {
        width: 10px;
        height: auto;
    }
    .mv-heading {
        font-size: 3rem;
        line-height: 1.7;
        font-weight: bold;
        letter-spacing: 3px;
        margin-bottom: 40px;
    }
    .mv-txt {
        font-size: 1.6rem;
        line-height: 1.7;
        margin-bottom: 60px;
    }
    .sp {
        display: block;
    }
    .mv-logo img {
        width: 50%;
        height: auto;
    }
    .top-campany-group {
        margin-top: -12vh !important;
        position: relative;
    }
    .card-l {
        background-color: #ffffff;
        box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
        padding: 40px 30px;
        margin: 0 0 60px;
    }
    .card-l-ttl {
        font-size: 2.2rem;
        font-weight: bold;
        letter-spacing: 1px;
        line-height: 1;
        margin-bottom: 30px;
        width: 100%;
        display: block;
    }
    .card-l-txt {
        margin-bottom: 20px;
        width: 100%;
        display: block;
    }
    .card-l-img {
        width: 100%;
        display: block;
        margin-bottom: 30px;
    }
    .btn {
        padding: 4px 20px;
    }
    .btn-card-l-more {
        margin: 0 auto;
        display: block;
        float: none;
    }
    .top-cont-ttl {
        font-size: 2.2rem;
        line-height: 1;
        margin-bottom: 20px;
    }
    .card-s {
        background-color: #ffffff;
        box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 0 0 40px;
        font-size: 1.3rem;
    }
    .card-s-img {
        width: 33%;
        margin: 0 15px;
        float: left;
        clear: both;
    }
    .card-s-img img {
        width: 100%;
        height: auto;
    }
    .card-s-wrap {
        width: 90%;
    }
    .card-s-ttl {
        font-size: 2.2rem;
        font-weight: bold;
        line-height: 0.9;
        margin-bottom: 15px;
        display: block;
        padding-top: 20px;
        width: 100%;
        text-align: center;
    }
    .card-s-ttl span {
        font-size: 1.5rem;
    }
    .card-s-txt {
        line-height: 1.5;
        padding-right: 0;
        float: left;
        width: 55%;
        padding-bottom: 30px;
    }
    .card-s-arrow {
        width: 5%;
        text-align: center;
        margin-right: 15px;
        font-size: 2rem;
    }
    .news-list li a {
        display: block;
        padding: 0 10px 10px;
    }
    .news-list {
        margin-bottom: 40px;
    }
    .news-list .news-list-date {
        font-size: 1.3rem;
    }
    .news-list .news-list-ttl {
        font-size: 1.5rem;
    }
    .page-ttl {
        font-size: 2.2rem;
        font-weight: bold;
        line-height: 1;
        text-align: center;
        position: relative;
        display: block;
        margin: 40px 0 80px;
    }
    .page-ttl::before {
        content: "";
        width: 120px;
        height: 4px;
        top: 65px;
        left: 50%;
        transform: translateX(-50%);
    }
    .cont-ttl {
        font-size: 1.8rem;
        font-weight: bold;
        line-height: 2;
        text-align: center;
        display: inline-block;
        border-bottom: 2px solid #a5242a;
        margin-bottom: 30px;
    }
    .phil-bg {
        padding: 40px 0 40px;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-image: url(../img/company_rinenn_bg_sp.jpg);
    }
    .cont-phil-lead {
        font-size: 2rem;
        font-weight: normal;
        text-align: left;
        width: 100%;
        margin: 0 auto 30px;
        line-height: 1.5;
    }
    .cont-phil-txt {
        font-size: 1.5rem;
        line-height: 2;
        text-align: left;
        font-weight: normal;
        width: 100%;
        margin: 0 auto;
    }
    .messe-wrap {
        width: 100%;
        padding: 20px;
        font-size: 1.8rem;
        background-color: #f4f7f9;
    }
    .sign-img {
        font-size: 1.5rem;
        text-align: right;
        margin-top: 20px;
    }
    .sign-img img {
        width: 35%;
        height: auto;
    }
    .company-table tr {
        border-bottom: 1px solid #d2d4d6;
    }
    .company-table tr:last-child {
        border-bottom: none;
    }
    .company-table tr th {
        width: 100%;
        font-weight: bold;
        padding: 15px 0px 0px !important;
        display: block;
        font-size: 1.3rem;
    }
    .company-table tr:first-of-type th {
        padding-top: 0;
    }
    .company-table tr td {
        padding: 0px 0px 15px;
        display: block;
        line-height: 1.8;
        font-size: 1.3rem;
    }
    .company-table tr:last-of-type td {
        padding-bottom: 0;
    }
    .complahoiku tr,
    th {
        border-right: none !important;
        border-left: none !important;
        border-top: 1px solid #d2d4d6;
        border-bottom: none;
        padding: 20px 10px 10px !important;
    }
    .complahoiku th {
        border-right: none;
        border-bottom: none !important;
    }
    .complahoiku td {
        padding: 10px 10px 20px !important;
    }
    .compla-txt {
        font-size: 1.8rem;
    }
    .group-card {
        background-color: #ffffff;
        box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
        margin-bottom: 80px;
    }
    .group-card-link {
        display: block;
        padding: 40px;
    }
    .group-card-wrap {
        display: block;
    }
    .group-card-logo {
        width: 100%;
        text-align: center;
        margin-bottom: 30px;
    }
    .group-card-logo img {
        width: 100%;
    }
    .group-card-right-content {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .arrow::before {
        width: 16px;
        height: 16px;
        left: 15px;
    }
    .group-card-txt {
        padding-right: 20px;
        font-size: 1.3rem;
    }
    .group-card-ttl {
        font-size: 1.5rem;
        font-weight: bold;
        margin-bottom: 20px;
        position: relative;
    }
    .group-card-ttl::after {
        content: "";
        width: 30px;
        height: 2px;
        top: 38px;
        left: 0px;
    }
    .page-lead {
        margin-bottom: 30px;
    }
    .recruit-ttl-wrap {
        text-align: center;
        width: 90%;
        margin: 0 auto;
        padding: 0 20px;
    }
    .recruit-ttl {
        font-size: 1.8rem;
        font-weight: bold;
        display: inline-block;
        position: relative;
        margin-bottom: 40px;
        line-height: 1.5;
    }
    .recruit-ttl::before {
        content: "";
        width: 100%;
        height: 2px;
        background-color: #a5242a;
        position: absolute;
        top: 40px;
        left: 50%;
        transform: translateX(-50%);
    }
    .recruit-ttl-wrap-multi {
        text-align: left;
        width: 100%;
        margin: 0 auto;
        padding: 0 20px;
    }
    .recruit-ttl-multi {
        font-size: 1.8rem;
        font-weight: bold;
        display: block;
        position: relative;
        margin-bottom: 40px;
        line-height: 1.5;
    }
    .notyet-recruit {
        font-size: 1.5rem;
        text-align: left;
    }
    .recruit-ttl-multi::before {
        content: "";
        width: 100%;
        height: 2px;
        background-color: #a5242a;
        position: absolute;
        top: 70px;
        left: 50%;
        transform: translateX(-50%);
    }
    .recruit-txt-multi {
        font-size: 1.3rem;
        width: 100%;
        margin-bottom: 30px;
    }
    .recruit-group-card-wrap {
        display: block;
    }
    .recruit-group-card {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: #ffffff;
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
        width: 100%;
        margin: 0 auto 30px;
    }
    .recruit-group-card:hover {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: #ffffff;
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
        width: 90%;
    }
    .recruit-group-ttl {
        font-size: 1.8rem;
        font-weight: bold;
        line-height: 1.6;
    }
    .recruit-card-link {
        width: 100%;
        display: flex;
        justify-content: space-between;
        padding: 20px 30px;
    }
    .label-item {
        font-size: 1.3rem;
        margin-bottom: 5px;
    }
    .footer-top {
        padding: 40px 0 20px;
        border-bottom: 1px solid #d2d4d6;
    }
    .footer-nav-list {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        align-items: flex-start;
        width: 90%;
        margin: 0 auto;
    }
    .footer-nav-list li {
        margin-right: 15px;
        margin-bottom: 20px;
    }
    .footer-nav-list li:last-of-type {
        margin-bottom: 0px;
    }
    .footer-mid {
        padding: 20px;
    }
    .footer-mid-item-wrap {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        flex-wrap: wrap;
        align-items: flex-start;
        height: 170px;
    }
    .footer-mid-item {
        margin-bottom: 10px;
    }
    .footer-mid-item-last {
        margin-top: 15px;
    }
    .footer-bottom {
        padding: 20px 30px;
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        align-items: center;
    }
    .footer-bottom .footer-logo img {
        width: 100%;
        height: auto;
    }
    .notyet {
        height: 50vh;
        font-size: 2rem;
        text-align: center;
    }
}

/*-----------------------------------------
ユーティリティ
-----------------------------------------*/
.hp-txt-bold {
    font-weight: bold;
}

.hp-tac {
    text-align: center;
}
